New Upstream Snapshot - apertium-hin

Ready changes

Summary

Merged new upstream version: 0.1.0+git20220801.1.c5912a8 (was: 0.1.0~r59158).

Diff

diff --git a/AUTHORS b/AUTHORS
index a7bd4b5..c483600 100644
--- a/AUTHORS
+++ b/AUTHORS
@@ -6,6 +6,7 @@
 
 Nikant Vokhra
 Abu Zaher Md. Faridee
+Raveesh Motlani
 
 Anusaaraka Lab, IIIT-Hyderabad:
 
diff --git a/INSTALL b/INSTALL
new file mode 100644
index 0000000..e82fd21
--- /dev/null
+++ b/INSTALL
@@ -0,0 +1,368 @@
+Installation Instructions
+*************************
+
+   Copyright (C) 1994-1996, 1999-2002, 2004-2017, 2020-2021 Free
+Software Foundation, Inc.
+
+   Copying and distribution of this file, with or without modification,
+are permitted in any medium without royalty provided the copyright
+notice and this notice are preserved.  This file is offered as-is,
+without warranty of any kind.
+
+Basic Installation
+==================
+
+   Briefly, the shell command './configure && make && make install'
+should configure, build, and install this package.  The following
+more-detailed instructions are generic; see the 'README' file for
+instructions specific to this package.  Some packages provide this
+'INSTALL' file but do not implement all of the features documented
+below.  The lack of an optional feature in a given package is not
+necessarily a bug.  More recommendations for GNU packages can be found
+in *note Makefile Conventions: (standards)Makefile Conventions.
+
+   The 'configure' shell script attempts to guess correct values for
+various system-dependent variables used during compilation.  It uses
+those values to create a 'Makefile' in each directory of the package.
+It may also create one or more '.h' files containing system-dependent
+definitions.  Finally, it creates a shell script 'config.status' that
+you can run in the future to recreate the current configuration, and a
+file 'config.log' containing compiler output (useful mainly for
+debugging 'configure').
+
+   It can also use an optional file (typically called 'config.cache' and
+enabled with '--cache-file=config.cache' or simply '-C') that saves the
+results of its tests to speed up reconfiguring.  Caching is disabled by
+default to prevent problems with accidental use of stale cache files.
+
+   If you need to do unusual things to compile the package, please try
+to figure out how 'configure' could check whether to do them, and mail
+diffs or instructions to the address given in the 'README' so they can
+be considered for the next release.  If you are using the cache, and at
+some point 'config.cache' contains results you don't want to keep, you
+may remove or edit it.
+
+   The file 'configure.ac' (or 'configure.in') is used to create
+'configure' by a program called 'autoconf'.  You need 'configure.ac' if
+you want to change it or regenerate 'configure' using a newer version of
+'autoconf'.
+
+   The simplest way to compile this package is:
+
+  1. 'cd' to the directory containing the package's source code and type
+     './configure' to configure the package for your system.
+
+     Running 'configure' might take a while.  While running, it prints
+     some messages telling which features it is checking for.
+
+  2. Type 'make' to compile the package.
+
+  3. Optionally, type 'make check' to run any self-tests that come with
+     the package, generally using the just-built uninstalled binaries.
+
+  4. Type 'make install' to install the programs and any data files and
+     documentation.  When installing into a prefix owned by root, it is
+     recommended that the package be configured and built as a regular
+     user, and only the 'make install' phase executed with root
+     privileges.
+
+  5. Optionally, type 'make installcheck' to repeat any self-tests, but
+     this time using the binaries in their final installed location.
+     This target does not install anything.  Running this target as a
+     regular user, particularly if the prior 'make install' required
+     root privileges, verifies that the installation completed
+     correctly.
+
+  6. You can remove the program binaries and object files from the
+     source code directory by typing 'make clean'.  To also remove the
+     files that 'configure' created (so you can compile the package for
+     a different kind of computer), type 'make distclean'.  There is
+     also a 'make maintainer-clean' target, but that is intended mainly
+     for the package's developers.  If you use it, you may have to get
+     all sorts of other programs in order to regenerate files that came
+     with the distribution.
+
+  7. Often, you can also type 'make uninstall' to remove the installed
+     files again.  In practice, not all packages have tested that
+     uninstallation works correctly, even though it is required by the
+     GNU Coding Standards.
+
+  8. Some packages, particularly those that use Automake, provide 'make
+     distcheck', which can by used by developers to test that all other
+     targets like 'make install' and 'make uninstall' work correctly.
+     This target is generally not run by end users.
+
+Compilers and Options
+=====================
+
+   Some systems require unusual options for compilation or linking that
+the 'configure' script does not know about.  Run './configure --help'
+for details on some of the pertinent environment variables.
+
+   You can give 'configure' initial values for configuration parameters
+by setting variables in the command line or in the environment.  Here is
+an example:
+
+     ./configure CC=c99 CFLAGS=-g LIBS=-lposix
+
+   *Note Defining Variables::, for more details.
+
+Compiling For Multiple Architectures
+====================================
+
+   You can compile the package for more than one kind of computer at the
+same time, by placing the object files for each architecture in their
+own directory.  To do this, you can use GNU 'make'.  'cd' to the
+directory where you want the object files and executables to go and run
+the 'configure' script.  'configure' automatically checks for the source
+code in the directory that 'configure' is in and in '..'.  This is known
+as a "VPATH" build.
+
+   With a non-GNU 'make', it is safer to compile the package for one
+architecture at a time in the source code directory.  After you have
+installed the package for one architecture, use 'make distclean' before
+reconfiguring for another architecture.
+
+   On MacOS X 10.5 and later systems, you can create libraries and
+executables that work on multiple system types--known as "fat" or
+"universal" binaries--by specifying multiple '-arch' options to the
+compiler but only a single '-arch' option to the preprocessor.  Like
+this:
+
+     ./configure CC="gcc -arch i386 -arch x86_64 -arch ppc -arch ppc64" \
+                 CXX="g++ -arch i386 -arch x86_64 -arch ppc -arch ppc64" \
+                 CPP="gcc -E" CXXCPP="g++ -E"
+
+   This is not guaranteed to produce working output in all cases, you
+may have to build one architecture at a time and combine the results
+using the 'lipo' tool if you have problems.
+
+Installation Names
+==================
+
+   By default, 'make install' installs the package's commands under
+'/usr/local/bin', include files under '/usr/local/include', etc.  You
+can specify an installation prefix other than '/usr/local' by giving
+'configure' the option '--prefix=PREFIX', where PREFIX must be an
+absolute file name.
+
+   You can specify separate installation prefixes for
+architecture-specific files and architecture-independent files.  If you
+pass the option '--exec-prefix=PREFIX' to 'configure', the package uses
+PREFIX as the prefix for installing programs and libraries.
+Documentation and other data files still use the regular prefix.
+
+   In addition, if you use an unusual directory layout you can give
+options like '--bindir=DIR' to specify different values for particular
+kinds of files.  Run 'configure --help' for a list of the directories
+you can set and what kinds of files go in them.  In general, the default
+for these options is expressed in terms of '${prefix}', so that
+specifying just '--prefix' will affect all of the other directory
+specifications that were not explicitly provided.
+
+   The most portable way to affect installation locations is to pass the
+correct locations to 'configure'; however, many packages provide one or
+both of the following shortcuts of passing variable assignments to the
+'make install' command line to change installation locations without
+having to reconfigure or recompile.
+
+   The first method involves providing an override variable for each
+affected directory.  For example, 'make install
+prefix=/alternate/directory' will choose an alternate location for all
+directory configuration variables that were expressed in terms of
+'${prefix}'.  Any directories that were specified during 'configure',
+but not in terms of '${prefix}', must each be overridden at install time
+for the entire installation to be relocated.  The approach of makefile
+variable overrides for each directory variable is required by the GNU
+Coding Standards, and ideally causes no recompilation.  However, some
+platforms have known limitations with the semantics of shared libraries
+that end up requiring recompilation when using this method, particularly
+noticeable in packages that use GNU Libtool.
+
+   The second method involves providing the 'DESTDIR' variable.  For
+example, 'make install DESTDIR=/alternate/directory' will prepend
+'/alternate/directory' before all installation names.  The approach of
+'DESTDIR' overrides is not required by the GNU Coding Standards, and
+does not work on platforms that have drive letters.  On the other hand,
+it does better at avoiding recompilation issues, and works well even
+when some directory options were not specified in terms of '${prefix}'
+at 'configure' time.
+
+Optional Features
+=================
+
+   If the package supports it, you can cause programs to be installed
+with an extra prefix or suffix on their names by giving 'configure' the
+option '--program-prefix=PREFIX' or '--program-suffix=SUFFIX'.
+
+   Some packages pay attention to '--enable-FEATURE' options to
+'configure', where FEATURE indicates an optional part of the package.
+They may also pay attention to '--with-PACKAGE' options, where PACKAGE
+is something like 'gnu-as' or 'x' (for the X Window System).  The
+'README' should mention any '--enable-' and '--with-' options that the
+package recognizes.
+
+   For packages that use the X Window System, 'configure' can usually
+find the X include and library files automatically, but if it doesn't,
+you can use the 'configure' options '--x-includes=DIR' and
+'--x-libraries=DIR' to specify their locations.
+
+   Some packages offer the ability to configure how verbose the
+execution of 'make' will be.  For these packages, running './configure
+--enable-silent-rules' sets the default to minimal output, which can be
+overridden with 'make V=1'; while running './configure
+--disable-silent-rules' sets the default to verbose, which can be
+overridden with 'make V=0'.
+
+Particular systems
+==================
+
+   On HP-UX, the default C compiler is not ANSI C compatible.  If GNU CC
+is not installed, it is recommended to use the following options in
+order to use an ANSI C compiler:
+
+     ./configure CC="cc -Ae -D_XOPEN_SOURCE=500"
+
+and if that doesn't work, install pre-built binaries of GCC for HP-UX.
+
+   HP-UX 'make' updates targets which have the same timestamps as their
+prerequisites, which makes it generally unusable when shipped generated
+files such as 'configure' are involved.  Use GNU 'make' instead.
+
+   On OSF/1 a.k.a. Tru64, some versions of the default C compiler cannot
+parse its '<wchar.h>' header file.  The option '-nodtk' can be used as a
+workaround.  If GNU CC is not installed, it is therefore recommended to
+try
+
+     ./configure CC="cc"
+
+and if that doesn't work, try
+
+     ./configure CC="cc -nodtk"
+
+   On Solaris, don't put '/usr/ucb' early in your 'PATH'.  This
+directory contains several dysfunctional programs; working variants of
+these programs are available in '/usr/bin'.  So, if you need '/usr/ucb'
+in your 'PATH', put it _after_ '/usr/bin'.
+
+   On Haiku, software installed for all users goes in '/boot/common',
+not '/usr/local'.  It is recommended to use the following options:
+
+     ./configure --prefix=/boot/common
+
+Specifying the System Type
+==========================
+
+   There may be some features 'configure' cannot figure out
+automatically, but needs to determine by the type of machine the package
+will run on.  Usually, assuming the package is built to be run on the
+_same_ architectures, 'configure' can figure that out, but if it prints
+a message saying it cannot guess the machine type, give it the
+'--build=TYPE' option.  TYPE can either be a short name for the system
+type, such as 'sun4', or a canonical name which has the form:
+
+     CPU-COMPANY-SYSTEM
+
+where SYSTEM can have one of these forms:
+
+     OS
+     KERNEL-OS
+
+   See the file 'config.sub' for the possible values of each field.  If
+'config.sub' isn't included in this package, then this package doesn't
+need to know the machine type.
+
+   If you are _building_ compiler tools for cross-compiling, you should
+use the option '--target=TYPE' to select the type of system they will
+produce code for.
+
+   If you want to _use_ a cross compiler, that generates code for a
+platform different from the build platform, you should specify the
+"host" platform (i.e., that on which the generated programs will
+eventually be run) with '--host=TYPE'.
+
+Sharing Defaults
+================
+
+   If you want to set default values for 'configure' scripts to share,
+you can create a site shell script called 'config.site' that gives
+default values for variables like 'CC', 'cache_file', and 'prefix'.
+'configure' looks for 'PREFIX/share/config.site' if it exists, then
+'PREFIX/etc/config.site' if it exists.  Or, you can set the
+'CONFIG_SITE' environment variable to the location of the site script.
+A warning: not all 'configure' scripts look for a site script.
+
+Defining Variables
+==================
+
+   Variables not defined in a site shell script can be set in the
+environment passed to 'configure'.  However, some packages may run
+configure again during the build, and the customized values of these
+variables may be lost.  In order to avoid this problem, you should set
+them in the 'configure' command line, using 'VAR=value'.  For example:
+
+     ./configure CC=/usr/local2/bin/gcc
+
+causes the specified 'gcc' to be used as the C compiler (unless it is
+overridden in the site shell script).
+
+Unfortunately, this technique does not work for 'CONFIG_SHELL' due to an
+Autoconf limitation.  Until the limitation is lifted, you can use this
+workaround:
+
+     CONFIG_SHELL=/bin/bash ./configure CONFIG_SHELL=/bin/bash
+
+'configure' Invocation
+======================
+
+   'configure' recognizes the following options to control how it
+operates.
+
+'--help'
+'-h'
+     Print a summary of all of the options to 'configure', and exit.
+
+'--help=short'
+'--help=recursive'
+     Print a summary of the options unique to this package's
+     'configure', and exit.  The 'short' variant lists options used only
+     in the top level, while the 'recursive' variant lists options also
+     present in any nested packages.
+
+'--version'
+'-V'
+     Print the version of Autoconf used to generate the 'configure'
+     script, and exit.
+
+'--cache-file=FILE'
+     Enable the cache: use and save the results of the tests in FILE,
+     traditionally 'config.cache'.  FILE defaults to '/dev/null' to
+     disable caching.
+
+'--config-cache'
+'-C'
+     Alias for '--cache-file=config.cache'.
+
+'--quiet'
+'--silent'
+'-q'
+     Do not print messages saying which checks are being made.  To
+     suppress all normal output, redirect it to '/dev/null' (any error
+     messages will still be shown).
+
+'--srcdir=DIR'
+     Look for the package's source code in directory DIR.  Usually
+     'configure' can determine that directory automatically.
+
+'--prefix=DIR'
+     Use DIR as the installation prefix.  *note Installation Names:: for
+     more details, including other options available for fine-tuning the
+     installation locations.
+
+'--no-create'
+'-n'
+     Run the configure checks, but stop before creating any output
+     files.
+
+'configure' also accepts some other, not widely useful, options.  Run
+'configure --help' for more details.
diff --git a/Makefile.am b/Makefile.am
index 3b6b0d8..338304f 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -2,14 +2,16 @@
 ## Makefile for apertium-hin
 ###############################################################################
 
-RELEASE=0.1
-VERSION=0.1.0
 LANG1=hin
 BASENAME=apertium-$(LANG1)
 
 TARGETS_COMMON = $(LANG1).automorf.bin $(LANG1).autogen.bin \
 	$(LANG1).automorf.att.gz $(LANG1).autogen.att.gz \
-        $(LANG1).rlx.bin
+        $(LANG1).rlx.bin $(LANG1).prob
+
+# This include defines goals for install-modes, .deps/.d and .mode files:
+@ap_include@
+
 
 ###############################################################################
 ## Hindi transducer
@@ -22,17 +24,62 @@ $(LANG1).automorf.bin: $(BASENAME).$(LANG1).dix
 	lt-comp lr $< $@ $(BASENAME).$(LANG1).acx
 
 $(LANG1).autogen.att.gz: $(LANG1).autogen.bin
-	lt-print $< | gzip -9 -c > $@
+	lt-print $< | gzip -9 -c -n > $@
 
 $(LANG1).automorf.att.gz: $(LANG1).automorf.bin
-	lt-print $< | gzip -9 -c > $@
+	lt-print $< | gzip -9 -c -n > $@
 
 ###############################################################################
 ## Disambiguation rules 
 ###############################################################################
 
-$(LANG1).rlx.bin: $(BASENAME).$(LANG1).rlx $(CGCOMP)
-	$(CGCOMP) $< $@
+$(LANG1).rlx.bin: $(BASENAME).$(LANG1).rlx
+	cg-comp $< $@
+
+$(LANG1).prob: $(BASENAME).$(LANG1).tagged
+	apertium-tagger -s 0 -u 2 $@ $<
+
+###############################################################################
+## Spell checker
+###############################################################################
+
+$(LANG1).zhfst: .deps/acceptor.default.hfst .deps/errmodel.default.hfst
+	rm -f $@
+	zip -Z store -j $@ .deps/acceptor.default.hfst .deps/errmodel.default.hfst speller/index.xml
+
+.deps/editdist.default.hfst: speller/editdist.default.txt .deps/acceptor.default.hfst
+	python dev/editdist.py -v -s -d 1 -e '@0@' -i $< -a .deps/acceptor.default.hfst >$@.txt
+	hfst-txt2fst -i $@.txt -e '@0@' -o $@
+	rm -f $@.txt
+
+.deps/editstrings.default.hfst: .deps/strings.default.hfst .deps/editdist.default.hfst
+	hfst-disjunct $^ | hfst-minimise | hfst-repeat -f 1 -t 2 -o $@
+
+.deps/errmodel.default.hfst: .deps/words.default.hfst .deps/editstrings.default.hfst
+	hfst-disjunct $^ | hfst-fst2fst -f olw -o $@
+
+.deps/words.default.hfst: speller/words.default.txt
+	grep -v -e "^#" -e "^$$" $< | hfst-strings2fst -j -o $@
+
+.deps/strings.default.hfst: speller/strings.default.txt .deps/anystar.hfst
+	grep -v -e "^#" -e "^$$" $< | hfst-strings2fst -j | hfst-concatenate .deps/anystar.hfst - | hfst-concatenate - .deps/anystar.hfst -o $@
+
+.deps/anystar.hfst:
+	echo "?*;" | hfst-regexp2fst -S -o $@
+
+.deps/acceptor.default.hfst: .deps/$(LANG1).autogen.bin 
+	lt-print .deps/$(LANG1).autogen.bin | sed 's/ε/@0@/g' | sed 's/ /@_SPACE_@/g' | hfst-txt2fst | hfst-fst2fst -t | hfst-project --project=lower | hfst-minimise |hfst-fst2fst -f olw -o $@ 
+
+.deps/$(LANG1).autogen.bin: .deps/$(BASENAME).$(LANG1).dix
+	lt-comp rl $< $@
+
+.deps/$(BASENAME).$(LANG1).dix: $(BASENAME).$(LANG1).dix .deps/.d
+	echo '<dictionary>' > $@
+	cat $< | xmllint  --xpath './/alphabet|.//sdefs|.//pardefs|.//section[@id="main"]' - >> $@
+	echo '</dictionary>' >> $@
+	cat .deps/$(BASENAME).$(LANG1).dix | xmllint --encode utf8 - > .deps/$(BASENAME).$(LANG1).dixtmp
+	mv .deps/$(BASENAME).$(LANG1).dixtmp $@
+
 
 ###############################################################################
 ## Distribution
@@ -52,24 +99,29 @@ EXTRA_DIST=$(BASENAME).$(LANG1).dix \
 apertium_hindir=$(prefix)/share/apertium/$(BASENAME)/
 apertium_hin_srcdir=$(prefix)/share/apertium/$(BASENAME)/
 
-apertium_hin_DATA=$(TARGETS_COMMON)
+
+EXTRA_TARGETS=
+
+if HAVE_HFSTOSPELL
+EXTRA_TARGETS += $(LANG1).zhfst
+endif # HAVE_HFSTOSPELL
+
+ 
+apertium_hin_DATA=$(TARGETS_COMMON) $(EXTRA_TARGETS)
 
 pkgconfigdir = $(prefix)/share/pkgconfig
 pkgconfig_DATA = $(BASENAME).pc
 
-# Modes are not installed since they're all just "debug modes". All
-# modes are created by this goal.
-modes/$(LANG1)-morph.mode: modes.xml
-	apertium-validate-modes modes.xml
-	apertium-gen-modes modes.xml
-
 noinst_DATA=modes/$(LANG1)-morph.mode
 
-install-data-local:
-	test -d $(DESTDIR)$(apertium_hin_srcdir) || mkdir -p $(DESTDIR)$(apertium_hin_srcdir)
+install-data-local: install-modes
+	$(INSTALL_DATA) $(LANG1).prob $(DESTDIR)$(apertium_hin_srcdir)
 	$(INSTALL_DATA) $(BASENAME).$(LANG1).dix $(DESTDIR)$(apertium_hin_srcdir)
 	$(INSTALL_DATA) $(BASENAME).$(LANG1).rlx $(DESTDIR)$(apertium_hin_srcdir)
 
 CLEANFILES = $(TARGETS_COMMON)
 clean-local:
 	-rm -rf .deps modes
+
+test: all
+	apertium-regtest test
diff --git a/Makefile.in b/Makefile.in
new file mode 100644
index 0000000..b2095e5
--- /dev/null
+++ b/Makefile.in
@@ -0,0 +1,761 @@
+# Makefile.in generated by automake 1.16.5 from Makefile.am.
+# @configure_input@
+
+# Copyright (C) 1994-2021 Free Software Foundation, Inc.
+
+# This Makefile.in is free software; the Free Software Foundation
+# gives unlimited permission to copy and/or distribute it,
+# with or without modifications, as long as this notice is preserved.
+
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY, to the extent permitted by law; without
+# even the implied warranty of MERCHANTABILITY or FITNESS FOR A
+# PARTICULAR PURPOSE.
+
+@SET_MAKE@
+
+###############################################################################
+###############################################################################
+
+VPATH = @srcdir@
+am__is_gnu_make = { \
+  if test -z '$(MAKELEVEL)'; then \
+    false; \
+  elif test -n '$(MAKE_HOST)'; then \
+    true; \
+  elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \
+    true; \
+  else \
+    false; \
+  fi; \
+}
+am__make_running_with_option = \
+  case $${target_option-} in \
+      ?) ;; \
+      *) echo "am__make_running_with_option: internal error: invalid" \
+              "target option '$${target_option-}' specified" >&2; \
+         exit 1;; \
+  esac; \
+  has_opt=no; \
+  sane_makeflags=$$MAKEFLAGS; \
+  if $(am__is_gnu_make); then \
+    sane_makeflags=$$MFLAGS; \
+  else \
+    case $$MAKEFLAGS in \
+      *\\[\ \	]*) \
+        bs=\\; \
+        sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \
+          | sed "s/$$bs$$bs[$$bs $$bs	]*//g"`;; \
+    esac; \
+  fi; \
+  skip_next=no; \
+  strip_trailopt () \
+  { \
+    flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \
+  }; \
+  for flg in $$sane_makeflags; do \
+    test $$skip_next = yes && { skip_next=no; continue; }; \
+    case $$flg in \
+      *=*|--*) continue;; \
+        -*I) strip_trailopt 'I'; skip_next=yes;; \
+      -*I?*) strip_trailopt 'I';; \
+        -*O) strip_trailopt 'O'; skip_next=yes;; \
+      -*O?*) strip_trailopt 'O';; \
+        -*l) strip_trailopt 'l'; skip_next=yes;; \
+      -*l?*) strip_trailopt 'l';; \
+      -[dEDm]) skip_next=yes;; \
+      -[JT]) skip_next=yes;; \
+    esac; \
+    case $$flg in \
+      *$$target_option*) has_opt=yes; break;; \
+    esac; \
+  done; \
+  test $$has_opt = yes
+am__make_dryrun = (target_option=n; $(am__make_running_with_option))
+am__make_keepgoing = (target_option=k; $(am__make_running_with_option))
+pkgdatadir = $(datadir)/@PACKAGE@
+pkgincludedir = $(includedir)/@PACKAGE@
+pkglibdir = $(libdir)/@PACKAGE@
+pkglibexecdir = $(libexecdir)/@PACKAGE@
+am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
+install_sh_DATA = $(install_sh) -c -m 644
+install_sh_PROGRAM = $(install_sh) -c
+install_sh_SCRIPT = $(install_sh) -c
+INSTALL_HEADER = $(INSTALL_DATA)
+transform = $(program_transform_name)
+NORMAL_INSTALL = :
+PRE_INSTALL = :
+POST_INSTALL = :
+NORMAL_UNINSTALL = :
+PRE_UNINSTALL = :
+POST_UNINSTALL = :
+@HAVE_HFSTOSPELL_TRUE@am__append_1 = $(LANG1).zhfst
+subdir = .
+ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
+am__aclocal_m4_deps = $(top_srcdir)/configure.ac
+am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
+	$(ACLOCAL_M4)
+DIST_COMMON = $(srcdir)/Makefile.am $(top_srcdir)/configure \
+	$(am__configure_deps) $(am__DIST_COMMON)
+am__CONFIG_DISTCLEAN_FILES = config.status config.cache config.log \
+ configure.lineno config.status.lineno
+mkinstalldirs = $(install_sh) -d
+CONFIG_CLEAN_FILES = apertium-hin.pc
+CONFIG_CLEAN_VPATH_FILES =
+AM_V_P = $(am__v_P_@AM_V@)
+am__v_P_ = $(am__v_P_@AM_DEFAULT_V@)
+am__v_P_0 = false
+am__v_P_1 = :
+AM_V_GEN = $(am__v_GEN_@AM_V@)
+am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@)
+am__v_GEN_0 = @echo "  GEN     " $@;
+am__v_GEN_1 = 
+AM_V_at = $(am__v_at_@AM_V@)
+am__v_at_ = $(am__v_at_@AM_DEFAULT_V@)
+am__v_at_0 = @
+am__v_at_1 = 
+SOURCES =
+DIST_SOURCES =
+am__can_run_installinfo = \
+  case $$AM_UPDATE_INFO_DIR in \
+    n|no|NO) false;; \
+    *) (install-info --version) >/dev/null 2>&1;; \
+  esac
+am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`;
+am__vpath_adj = case $$p in \
+    $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \
+    *) f=$$p;; \
+  esac;
+am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`;
+am__install_max = 40
+am__nobase_strip_setup = \
+  srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'`
+am__nobase_strip = \
+  for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||"
+am__nobase_list = $(am__nobase_strip_setup); \
+  for p in $$list; do echo "$$p $$p"; done | \
+  sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \
+  $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \
+    if (++n[$$2] == $(am__install_max)) \
+      { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \
+    END { for (dir in files) print dir, files[dir] }'
+am__base_list = \
+  sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \
+  sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g'
+am__uninstall_files_from_dir = { \
+  test -z "$$files" \
+    || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \
+    || { echo " ( cd '$$dir' && rm -f" $$files ")"; \
+         $(am__cd) "$$dir" && rm -f $$files; }; \
+  }
+am__installdirs = "$(DESTDIR)$(apertium_hindir)" \
+	"$(DESTDIR)$(pkgconfigdir)"
+DATA = $(apertium_hin_DATA) $(noinst_DATA) $(pkgconfig_DATA)
+am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP)
+am__DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/apertium-hin.pc.in \
+	AUTHORS COPYING ChangeLog INSTALL NEWS README install-sh \
+	missing
+DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
+distdir = $(PACKAGE)-$(VERSION)
+top_distdir = $(distdir)
+am__remove_distdir = \
+  if test -d "$(distdir)"; then \
+    find "$(distdir)" -type d ! -perm -200 -exec chmod u+w {} ';' \
+      && rm -rf "$(distdir)" \
+      || { sleep 5 && rm -rf "$(distdir)"; }; \
+  else :; fi
+am__post_remove_distdir = $(am__remove_distdir)
+DIST_ARCHIVES = $(distdir).tar.gz
+GZIP_ENV = --best
+DIST_TARGETS = dist-gzip
+# Exists only to be overridden by the user if desired.
+AM_DISTCHECK_DVI_TARGET = dvi
+distuninstallcheck_listfiles = find . -type f -print
+am__distuninstallcheck_listfiles = $(distuninstallcheck_listfiles) \
+  | sed 's|^\./|$(prefix)/|' | grep -v '$(infodir)/dir$$'
+distcleancheck_listfiles = find . -type f -print
+ACLOCAL = @ACLOCAL@
+AMTAR = @AMTAR@
+AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@
+APERTIUM_CFLAGS = @APERTIUM_CFLAGS@
+APERTIUM_LIBS = @APERTIUM_LIBS@
+AUTOCONF = @AUTOCONF@
+AUTOHEADER = @AUTOHEADER@
+AUTOMAKE = @AUTOMAKE@
+AWK = @AWK@
+CG3_CFLAGS = @CG3_CFLAGS@
+CG3_LIBS = @CG3_LIBS@
+CSCOPE = @CSCOPE@
+CTAGS = @CTAGS@
+CYGPATH_W = @CYGPATH_W@
+DEFS = @DEFS@
+ECHO_C = @ECHO_C@
+ECHO_N = @ECHO_N@
+ECHO_T = @ECHO_T@
+ETAGS = @ETAGS@
+HFSTOSPELL_CFLAGS = @HFSTOSPELL_CFLAGS@
+HFSTOSPELL_LIBS = @HFSTOSPELL_LIBS@
+INSTALL = @INSTALL@
+INSTALL_DATA = @INSTALL_DATA@
+INSTALL_PROGRAM = @INSTALL_PROGRAM@
+INSTALL_SCRIPT = @INSTALL_SCRIPT@
+INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
+LIBOBJS = @LIBOBJS@
+LIBS = @LIBS@
+LTLIBOBJS = @LTLIBOBJS@
+LTTOOLBOX_CFLAGS = @LTTOOLBOX_CFLAGS@
+LTTOOLBOX_LIBS = @LTTOOLBOX_LIBS@
+MAKEINFO = @MAKEINFO@
+MKDIR_P = @MKDIR_P@
+PACKAGE = @PACKAGE@
+PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
+PACKAGE_NAME = @PACKAGE_NAME@
+PACKAGE_STRING = @PACKAGE_STRING@
+PACKAGE_TARNAME = @PACKAGE_TARNAME@
+PACKAGE_URL = @PACKAGE_URL@
+PACKAGE_VERSION = @PACKAGE_VERSION@
+PATH_SEPARATOR = @PATH_SEPARATOR@
+PKG_CONFIG = @PKG_CONFIG@
+PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@
+PKG_CONFIG_PATH = @PKG_CONFIG_PATH@
+REGTEST_CFLAGS = @REGTEST_CFLAGS@
+REGTEST_LIBS = @REGTEST_LIBS@
+SET_MAKE = @SET_MAKE@
+SHELL = @SHELL@
+STRIP = @STRIP@
+VERSION = @VERSION@
+abs_builddir = @abs_builddir@
+abs_srcdir = @abs_srcdir@
+abs_top_builddir = @abs_top_builddir@
+abs_top_srcdir = @abs_top_srcdir@
+am__leading_dot = @am__leading_dot@
+am__tar = @am__tar@
+am__untar = @am__untar@
+bindir = @bindir@
+build_alias = @build_alias@
+builddir = @builddir@
+datadir = @datadir@
+datarootdir = @datarootdir@
+docdir = @docdir@
+dvidir = @dvidir@
+exec_prefix = @exec_prefix@
+host_alias = @host_alias@
+htmldir = @htmldir@
+includedir = @includedir@
+infodir = @infodir@
+install_sh = @install_sh@
+libdir = @libdir@
+libexecdir = @libexecdir@
+localedir = @localedir@
+localstatedir = @localstatedir@
+mandir = @mandir@
+mkdir_p = @mkdir_p@
+oldincludedir = @oldincludedir@
+pdfdir = @pdfdir@
+prefix = @prefix@
+program_transform_name = @program_transform_name@
+psdir = @psdir@
+runstatedir = @runstatedir@
+sbindir = @sbindir@
+sharedstatedir = @sharedstatedir@
+srcdir = @srcdir@
+sysconfdir = @sysconfdir@
+target_alias = @target_alias@
+top_build_prefix = @top_build_prefix@
+top_builddir = @top_builddir@
+top_srcdir = @top_srcdir@
+LANG1 = hin
+BASENAME = apertium-$(LANG1)
+TARGETS_COMMON = $(LANG1).automorf.bin $(LANG1).autogen.bin \
+	$(LANG1).automorf.att.gz $(LANG1).autogen.att.gz \
+        $(LANG1).rlx.bin $(LANG1).prob
+
+
+###############################################################################
+###############################################################################
+EXTRA_DIST = $(BASENAME).$(LANG1).dix \
+	   $(BASENAME).$(LANG1).rlx  \
+	   $(BASENAME).$(LANG1).acx \
+	   modes.xml
+
+
+###############################################################################
+###############################################################################
+#
+#   apertium_hin_dir: This is where the compiled binaries go
+#   apertium_hin_srcdir: This is where the source files go
+apertium_hindir = $(prefix)/share/apertium/$(BASENAME)/
+apertium_hin_srcdir = $(prefix)/share/apertium/$(BASENAME)/
+EXTRA_TARGETS = $(am__append_1)
+apertium_hin_DATA = $(TARGETS_COMMON) $(EXTRA_TARGETS)
+pkgconfigdir = $(prefix)/share/pkgconfig
+pkgconfig_DATA = $(BASENAME).pc
+noinst_DATA = modes/$(LANG1)-morph.mode
+CLEANFILES = $(TARGETS_COMMON)
+all: all-am
+
+.SUFFIXES:
+am--refresh: Makefile
+	@:
+$(srcdir)/Makefile.in:  $(srcdir)/Makefile.am  $(am__configure_deps)
+	@for dep in $?; do \
+	  case '$(am__configure_deps)' in \
+	    *$$dep*) \
+	      echo ' cd $(srcdir) && $(AUTOMAKE) --gnu'; \
+	      $(am__cd) $(srcdir) && $(AUTOMAKE) --gnu \
+		&& exit 0; \
+	      exit 1;; \
+	  esac; \
+	done; \
+	echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu Makefile'; \
+	$(am__cd) $(top_srcdir) && \
+	  $(AUTOMAKE) --gnu Makefile
+Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
+	@case '$?' in \
+	  *config.status*) \
+	    echo ' $(SHELL) ./config.status'; \
+	    $(SHELL) ./config.status;; \
+	  *) \
+	    echo ' cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__maybe_remake_depfiles)'; \
+	    cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__maybe_remake_depfiles);; \
+	esac;
+
+$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
+	$(SHELL) ./config.status --recheck
+
+$(top_srcdir)/configure:  $(am__configure_deps)
+	$(am__cd) $(srcdir) && $(AUTOCONF)
+$(ACLOCAL_M4):  $(am__aclocal_m4_deps)
+	$(am__cd) $(srcdir) && $(ACLOCAL) $(ACLOCAL_AMFLAGS)
+$(am__aclocal_m4_deps):
+apertium-hin.pc: $(top_builddir)/config.status $(srcdir)/apertium-hin.pc.in
+	cd $(top_builddir) && $(SHELL) ./config.status $@
+install-apertium_hinDATA: $(apertium_hin_DATA)
+	@$(NORMAL_INSTALL)
+	@list='$(apertium_hin_DATA)'; test -n "$(apertium_hindir)" || list=; \
+	if test -n "$$list"; then \
+	  echo " $(MKDIR_P) '$(DESTDIR)$(apertium_hindir)'"; \
+	  $(MKDIR_P) "$(DESTDIR)$(apertium_hindir)" || exit 1; \
+	fi; \
+	for p in $$list; do \
+	  if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
+	  echo "$$d$$p"; \
+	done | $(am__base_list) | \
+	while read files; do \
+	  echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(apertium_hindir)'"; \
+	  $(INSTALL_DATA) $$files "$(DESTDIR)$(apertium_hindir)" || exit $$?; \
+	done
+
+uninstall-apertium_hinDATA:
+	@$(NORMAL_UNINSTALL)
+	@list='$(apertium_hin_DATA)'; test -n "$(apertium_hindir)" || list=; \
+	files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
+	dir='$(DESTDIR)$(apertium_hindir)'; $(am__uninstall_files_from_dir)
+install-pkgconfigDATA: $(pkgconfig_DATA)
+	@$(NORMAL_INSTALL)
+	@list='$(pkgconfig_DATA)'; test -n "$(pkgconfigdir)" || list=; \
+	if test -n "$$list"; then \
+	  echo " $(MKDIR_P) '$(DESTDIR)$(pkgconfigdir)'"; \
+	  $(MKDIR_P) "$(DESTDIR)$(pkgconfigdir)" || exit 1; \
+	fi; \
+	for p in $$list; do \
+	  if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
+	  echo "$$d$$p"; \
+	done | $(am__base_list) | \
+	while read files; do \
+	  echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(pkgconfigdir)'"; \
+	  $(INSTALL_DATA) $$files "$(DESTDIR)$(pkgconfigdir)" || exit $$?; \
+	done
+
+uninstall-pkgconfigDATA:
+	@$(NORMAL_UNINSTALL)
+	@list='$(pkgconfig_DATA)'; test -n "$(pkgconfigdir)" || list=; \
+	files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
+	dir='$(DESTDIR)$(pkgconfigdir)'; $(am__uninstall_files_from_dir)
+tags TAGS:
+
+ctags CTAGS:
+
+cscope cscopelist:
+
+distdir: $(BUILT_SOURCES)
+	$(MAKE) $(AM_MAKEFLAGS) distdir-am
+
+distdir-am: $(DISTFILES)
+	$(am__remove_distdir)
+	test -d "$(distdir)" || mkdir "$(distdir)"
+	@srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
+	topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
+	list='$(DISTFILES)'; \
+	  dist_files=`for file in $$list; do echo $$file; done | \
+	  sed -e "s|^$$srcdirstrip/||;t" \
+	      -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \
+	case $$dist_files in \
+	  */*) $(MKDIR_P) `echo "$$dist_files" | \
+			   sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \
+			   sort -u` ;; \
+	esac; \
+	for file in $$dist_files; do \
+	  if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
+	  if test -d $$d/$$file; then \
+	    dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
+	    if test -d "$(distdir)/$$file"; then \
+	      find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
+	    fi; \
+	    if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
+	      cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \
+	      find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
+	    fi; \
+	    cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \
+	  else \
+	    test -f "$(distdir)/$$file" \
+	    || cp -p $$d/$$file "$(distdir)/$$file" \
+	    || exit 1; \
+	  fi; \
+	done
+	-test -n "$(am__skip_mode_fix)" \
+	|| find "$(distdir)" -type d ! -perm -755 \
+		-exec chmod u+rwx,go+rx {} \; -o \
+	  ! -type d ! -perm -444 -links 1 -exec chmod a+r {} \; -o \
+	  ! -type d ! -perm -400 -exec chmod a+r {} \; -o \
+	  ! -type d ! -perm -444 -exec $(install_sh) -c -m a+r {} {} \; \
+	|| chmod -R a+r "$(distdir)"
+dist-gzip: distdir
+	tardir=$(distdir) && $(am__tar) | eval GZIP= gzip $(GZIP_ENV) -c >$(distdir).tar.gz
+	$(am__post_remove_distdir)
+
+dist-bzip2: distdir
+	tardir=$(distdir) && $(am__tar) | BZIP2=$${BZIP2--9} bzip2 -c >$(distdir).tar.bz2
+	$(am__post_remove_distdir)
+
+dist-lzip: distdir
+	tardir=$(distdir) && $(am__tar) | lzip -c $${LZIP_OPT--9} >$(distdir).tar.lz
+	$(am__post_remove_distdir)
+
+dist-xz: distdir
+	tardir=$(distdir) && $(am__tar) | XZ_OPT=$${XZ_OPT--e} xz -c >$(distdir).tar.xz
+	$(am__post_remove_distdir)
+
+dist-zstd: distdir
+	tardir=$(distdir) && $(am__tar) | zstd -c $${ZSTD_CLEVEL-$${ZSTD_OPT--19}} >$(distdir).tar.zst
+	$(am__post_remove_distdir)
+
+dist-tarZ: distdir
+	@echo WARNING: "Support for distribution archives compressed with" \
+		       "legacy program 'compress' is deprecated." >&2
+	@echo WARNING: "It will be removed altogether in Automake 2.0" >&2
+	tardir=$(distdir) && $(am__tar) | compress -c >$(distdir).tar.Z
+	$(am__post_remove_distdir)
+
+dist-shar: distdir
+	@echo WARNING: "Support for shar distribution archives is" \
+	               "deprecated." >&2
+	@echo WARNING: "It will be removed altogether in Automake 2.0" >&2
+	shar $(distdir) | eval GZIP= gzip $(GZIP_ENV) -c >$(distdir).shar.gz
+	$(am__post_remove_distdir)
+
+dist-zip: distdir
+	-rm -f $(distdir).zip
+	zip -rq $(distdir).zip $(distdir)
+	$(am__post_remove_distdir)
+
+dist dist-all:
+	$(MAKE) $(AM_MAKEFLAGS) $(DIST_TARGETS) am__post_remove_distdir='@:'
+	$(am__post_remove_distdir)
+
+# This target untars the dist file and tries a VPATH configuration.  Then
+# it guarantees that the distribution is self-contained by making another
+# tarfile.
+distcheck: dist
+	case '$(DIST_ARCHIVES)' in \
+	*.tar.gz*) \
+	  eval GZIP= gzip $(GZIP_ENV) -dc $(distdir).tar.gz | $(am__untar) ;;\
+	*.tar.bz2*) \
+	  bzip2 -dc $(distdir).tar.bz2 | $(am__untar) ;;\
+	*.tar.lz*) \
+	  lzip -dc $(distdir).tar.lz | $(am__untar) ;;\
+	*.tar.xz*) \
+	  xz -dc $(distdir).tar.xz | $(am__untar) ;;\
+	*.tar.Z*) \
+	  uncompress -c $(distdir).tar.Z | $(am__untar) ;;\
+	*.shar.gz*) \
+	  eval GZIP= gzip $(GZIP_ENV) -dc $(distdir).shar.gz | unshar ;;\
+	*.zip*) \
+	  unzip $(distdir).zip ;;\
+	*.tar.zst*) \
+	  zstd -dc $(distdir).tar.zst | $(am__untar) ;;\
+	esac
+	chmod -R a-w $(distdir)
+	chmod u+w $(distdir)
+	mkdir $(distdir)/_build $(distdir)/_build/sub $(distdir)/_inst
+	chmod a-w $(distdir)
+	test -d $(distdir)/_build || exit 0; \
+	dc_install_base=`$(am__cd) $(distdir)/_inst && pwd | sed -e 's,^[^:\\/]:[\\/],/,'` \
+	  && dc_destdir="$${TMPDIR-/tmp}/am-dc-$$$$/" \
+	  && am__cwd=`pwd` \
+	  && $(am__cd) $(distdir)/_build/sub \
+	  && ../../configure \
+	    $(AM_DISTCHECK_CONFIGURE_FLAGS) \
+	    $(DISTCHECK_CONFIGURE_FLAGS) \
+	    --srcdir=../.. --prefix="$$dc_install_base" \
+	  && $(MAKE) $(AM_MAKEFLAGS) \
+	  && $(MAKE) $(AM_MAKEFLAGS) $(AM_DISTCHECK_DVI_TARGET) \
+	  && $(MAKE) $(AM_MAKEFLAGS) check \
+	  && $(MAKE) $(AM_MAKEFLAGS) install \
+	  && $(MAKE) $(AM_MAKEFLAGS) installcheck \
+	  && $(MAKE) $(AM_MAKEFLAGS) uninstall \
+	  && $(MAKE) $(AM_MAKEFLAGS) distuninstallcheck_dir="$$dc_install_base" \
+	        distuninstallcheck \
+	  && chmod -R a-w "$$dc_install_base" \
+	  && ({ \
+	       (cd ../.. && umask 077 && mkdir "$$dc_destdir") \
+	       && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" install \
+	       && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" uninstall \
+	       && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" \
+	            distuninstallcheck_dir="$$dc_destdir" distuninstallcheck; \
+	      } || { rm -rf "$$dc_destdir"; exit 1; }) \
+	  && rm -rf "$$dc_destdir" \
+	  && $(MAKE) $(AM_MAKEFLAGS) dist \
+	  && rm -rf $(DIST_ARCHIVES) \
+	  && $(MAKE) $(AM_MAKEFLAGS) distcleancheck \
+	  && cd "$$am__cwd" \
+	  || exit 1
+	$(am__post_remove_distdir)
+	@(echo "$(distdir) archives ready for distribution: "; \
+	  list='$(DIST_ARCHIVES)'; for i in $$list; do echo $$i; done) | \
+	  sed -e 1h -e 1s/./=/g -e 1p -e 1x -e '$$p' -e '$$x'
+distuninstallcheck:
+	@test -n '$(distuninstallcheck_dir)' || { \
+	  echo 'ERROR: trying to run $@ with an empty' \
+	       '$$(distuninstallcheck_dir)' >&2; \
+	  exit 1; \
+	}; \
+	$(am__cd) '$(distuninstallcheck_dir)' || { \
+	  echo 'ERROR: cannot chdir into $(distuninstallcheck_dir)' >&2; \
+	  exit 1; \
+	}; \
+	test `$(am__distuninstallcheck_listfiles) | wc -l` -eq 0 \
+	   || { echo "ERROR: files left after uninstall:" ; \
+	        if test -n "$(DESTDIR)"; then \
+	          echo "  (check DESTDIR support)"; \
+	        fi ; \
+	        $(distuninstallcheck_listfiles) ; \
+	        exit 1; } >&2
+distcleancheck: distclean
+	@if test '$(srcdir)' = . ; then \
+	  echo "ERROR: distcleancheck can only run from a VPATH build" ; \
+	  exit 1 ; \
+	fi
+	@test `$(distcleancheck_listfiles) | wc -l` -eq 0 \
+	  || { echo "ERROR: files left in build directory after distclean:" ; \
+	       $(distcleancheck_listfiles) ; \
+	       exit 1; } >&2
+check-am: all-am
+check: check-am
+all-am: Makefile $(DATA)
+installdirs:
+	for dir in "$(DESTDIR)$(apertium_hindir)" "$(DESTDIR)$(pkgconfigdir)"; do \
+	  test -z "$$dir" || $(MKDIR_P) "$$dir"; \
+	done
+install: install-am
+install-exec: install-exec-am
+install-data: install-data-am
+uninstall: uninstall-am
+
+install-am: all-am
+	@$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
+
+installcheck: installcheck-am
+install-strip:
+	if test -z '$(STRIP)'; then \
+	  $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
+	    install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
+	      install; \
+	else \
+	  $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
+	    install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
+	    "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \
+	fi
+mostlyclean-generic:
+
+clean-generic:
+	-test -z "$(CLEANFILES)" || rm -f $(CLEANFILES)
+
+distclean-generic:
+	-test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
+	-test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES)
+
+maintainer-clean-generic:
+	@echo "This command is intended for maintainers to use"
+	@echo "it deletes files that may require special tools to rebuild."
+clean: clean-am
+
+clean-am: clean-generic clean-local mostlyclean-am
+
+distclean: distclean-am
+	-rm -f $(am__CONFIG_DISTCLEAN_FILES)
+	-rm -f Makefile
+distclean-am: clean-am distclean-generic
+
+dvi: dvi-am
+
+dvi-am:
+
+html: html-am
+
+html-am:
+
+info: info-am
+
+info-am:
+
+install-data-am: install-apertium_hinDATA install-data-local \
+	install-pkgconfigDATA
+
+install-dvi: install-dvi-am
+
+install-dvi-am:
+
+install-exec-am:
+
+install-html: install-html-am
+
+install-html-am:
+
+install-info: install-info-am
+
+install-info-am:
+
+install-man:
+
+install-pdf: install-pdf-am
+
+install-pdf-am:
+
+install-ps: install-ps-am
+
+install-ps-am:
+
+installcheck-am:
+
+maintainer-clean: maintainer-clean-am
+	-rm -f $(am__CONFIG_DISTCLEAN_FILES)
+	-rm -rf $(top_srcdir)/autom4te.cache
+	-rm -f Makefile
+maintainer-clean-am: distclean-am maintainer-clean-generic
+
+mostlyclean: mostlyclean-am
+
+mostlyclean-am: mostlyclean-generic
+
+pdf: pdf-am
+
+pdf-am:
+
+ps: ps-am
+
+ps-am:
+
+uninstall-am: uninstall-apertium_hinDATA uninstall-pkgconfigDATA
+
+.MAKE: install-am install-strip
+
+.PHONY: all all-am am--refresh check check-am clean clean-generic \
+	clean-local cscopelist-am ctags-am dist dist-all dist-bzip2 \
+	dist-gzip dist-lzip dist-shar dist-tarZ dist-xz dist-zip \
+	dist-zstd distcheck distclean distclean-generic distcleancheck \
+	distdir distuninstallcheck dvi dvi-am html html-am info \
+	info-am install install-am install-apertium_hinDATA \
+	install-data install-data-am install-data-local install-dvi \
+	install-dvi-am install-exec install-exec-am install-html \
+	install-html-am install-info install-info-am install-man \
+	install-pdf install-pdf-am install-pkgconfigDATA install-ps \
+	install-ps-am install-strip installcheck installcheck-am \
+	installdirs maintainer-clean maintainer-clean-generic \
+	mostlyclean mostlyclean-generic pdf pdf-am ps ps-am tags-am \
+	uninstall uninstall-am uninstall-apertium_hinDATA \
+	uninstall-pkgconfigDATA
+
+.PRECIOUS: Makefile
+
+
+# This include defines goals for install-modes, .deps/.d and .mode files:
+@ap_include@
+
+###############################################################################
+###############################################################################
+
+$(LANG1).autogen.bin: $(BASENAME).$(LANG1).dix
+	lt-comp rl $< $@
+
+$(LANG1).automorf.bin: $(BASENAME).$(LANG1).dix
+	lt-comp lr $< $@ $(BASENAME).$(LANG1).acx
+
+$(LANG1).autogen.att.gz: $(LANG1).autogen.bin
+	lt-print $< | gzip -9 -c -n > $@
+
+$(LANG1).automorf.att.gz: $(LANG1).automorf.bin
+	lt-print $< | gzip -9 -c -n > $@
+
+###############################################################################
+###############################################################################
+
+$(LANG1).rlx.bin: $(BASENAME).$(LANG1).rlx
+	cg-comp $< $@
+
+$(LANG1).prob: $(BASENAME).$(LANG1).tagged
+	apertium-tagger -s 0 -u 2 $@ $<
+
+###############################################################################
+###############################################################################
+
+$(LANG1).zhfst: .deps/acceptor.default.hfst .deps/errmodel.default.hfst
+	rm -f $@
+	zip -Z store -j $@ .deps/acceptor.default.hfst .deps/errmodel.default.hfst speller/index.xml
+
+.deps/editdist.default.hfst: speller/editdist.default.txt .deps/acceptor.default.hfst
+	python dev/editdist.py -v -s -d 1 -e '@0@' -i $< -a .deps/acceptor.default.hfst >$@.txt
+	hfst-txt2fst -i $@.txt -e '@0@' -o $@
+	rm -f $@.txt
+
+.deps/editstrings.default.hfst: .deps/strings.default.hfst .deps/editdist.default.hfst
+	hfst-disjunct $^ | hfst-minimise | hfst-repeat -f 1 -t 2 -o $@
+
+.deps/errmodel.default.hfst: .deps/words.default.hfst .deps/editstrings.default.hfst
+	hfst-disjunct $^ | hfst-fst2fst -f olw -o $@
+
+.deps/words.default.hfst: speller/words.default.txt
+	grep -v -e "^#" -e "^$$" $< | hfst-strings2fst -j -o $@
+
+.deps/strings.default.hfst: speller/strings.default.txt .deps/anystar.hfst
+	grep -v -e "^#" -e "^$$" $< | hfst-strings2fst -j | hfst-concatenate .deps/anystar.hfst - | hfst-concatenate - .deps/anystar.hfst -o $@
+
+.deps/anystar.hfst:
+	echo "?*;" | hfst-regexp2fst -S -o $@
+
+.deps/acceptor.default.hfst: .deps/$(LANG1).autogen.bin 
+	lt-print .deps/$(LANG1).autogen.bin | sed 's/ε/@0@/g' | sed 's/ /@_SPACE_@/g' | hfst-txt2fst | hfst-fst2fst -t | hfst-project --project=lower | hfst-minimise |hfst-fst2fst -f olw -o $@ 
+
+.deps/$(LANG1).autogen.bin: .deps/$(BASENAME).$(LANG1).dix
+	lt-comp rl $< $@
+
+.deps/$(BASENAME).$(LANG1).dix: $(BASENAME).$(LANG1).dix .deps/.d
+	echo '<dictionary>' > $@
+	cat $< | xmllint  --xpath './/alphabet|.//sdefs|.//pardefs|.//section[@id="main"]' - >> $@
+	echo '</dictionary>' >> $@
+	cat .deps/$(BASENAME).$(LANG1).dix | xmllint --encode utf8 - > .deps/$(BASENAME).$(LANG1).dixtmp
+	mv .deps/$(BASENAME).$(LANG1).dixtmp $@
+
+install-data-local: install-modes
+	$(INSTALL_DATA) $(LANG1).prob $(DESTDIR)$(apertium_hin_srcdir)
+	$(INSTALL_DATA) $(BASENAME).$(LANG1).dix $(DESTDIR)$(apertium_hin_srcdir)
+	$(INSTALL_DATA) $(BASENAME).$(LANG1).rlx $(DESTDIR)$(apertium_hin_srcdir)
+clean-local:
+	-rm -rf .deps modes
+
+test: all
+	apertium-regtest test
+
+# Tell versions [3.59,3.63) of GNU make to not export all variables.
+# Otherwise a system limit (for SysV at least) may be exceeded.
+.NOEXPORT:
diff --git a/README b/README
index e69de29..085de2b 100644
--- a/README
+++ b/README
@@ -0,0 +1,92 @@
+Hindi (`apertium-hin`)
+===============================================================================
+
+This is an Apertium monolingual language package for Hindi. What
+you can use this language package for:
+
+* Morphological analysis of Hindi
+* Morphological generation of Hindii
+* Part-of-speech tagging of Hindi
+
+Requirements
+===============================================================================
+
+You will need the following software installed:
+
+* lttoolbox (>= 3.3.0)
+* apertium (>= 3.3.0)
+* vislcg3 (>= 0.9.9.10297)
+
+If this does not make any sense, we recommend you look at: apertium.org
+
+Compiling
+===============================================================================
+
+Given the requirements being installed, you should be able to just run:
+
+```
+$ ./configure
+$ make
+```
+
+You can use `./autogen.sh` instead of `./configure` if you're compiling
+from GitHub.
+
+If you're doing development, you don't have to install the data, you
+can use it directly from this directory.
+
+If you are installing this language package as a prerequisite for an
+Apertium translation pair, then do (typically as root / with sudo):
+
+```
+# make install
+```
+
+You can give a `--prefix` to `./configure` to install as a non-root user,
+but make sure to use the same prefix when installing the translation
+pair and any other language packages.
+
+Testing
+===============================================================================
+
+If you are in the source directory after running make, the following
+commands should work:
+
+echo “This is a test sentence” | aperium hin-tagger
+echo “This is a test sentence” | aperium hin-morph
+
+If this does not work, try running
+
+echo “This is a test sentence” | aperium -d path/to/apertium-hin hin-tagger
+
+Files and data
+===============================================================================
+
+* `apertium-hin.hin.dix`            - Monolingual dictionary
+* `hin.prob`                       	 - Tagger model
+* `apertium-hin.hin.rlx`            - Constraint Grammar disambiguation rules
+* `apertium-hin.hin.acx’	- Used since apostrophe is grammatically important in Hindi
+* `modes.xml`                       	- Translation modes
+
+For more information
+===============================================================================
+
+* https://wiki.apertium.org/wiki/Installation
+* https://wiki.apertium.org/wiki/apertium-hin
+* https://wiki.apertium.org/wiki/Using_an_lttoolbox_dictionary
+
+Help and support
+===============================================================================
+
+If you need help using this language pair or data, you can contact:
+
+* Mailing list: apertium-stuff@lists.sourceforge.net
+* IRC: `#apertium` on `irc.oftc.net`
+
+License
+===============================================================================
+
+This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
+This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
+You should have received a copy of the GNU General Public License along with this program. If not, see http://www.gnu.org/licenses/.
+See also the file AUTHORS included in this distribution.
diff --git a/aclocal.m4 b/aclocal.m4
new file mode 100644
index 0000000..053ea8f
--- /dev/null
+++ b/aclocal.m4
@@ -0,0 +1,1360 @@
+# generated automatically by aclocal 1.16.5 -*- Autoconf -*-
+
+# Copyright (C) 1996-2021 Free Software Foundation, Inc.
+
+# This file is free software; the Free Software Foundation
+# gives unlimited permission to copy and/or distribute it,
+# with or without modifications, as long as this notice is preserved.
+
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY, to the extent permitted by law; without
+# even the implied warranty of MERCHANTABILITY or FITNESS FOR A
+# PARTICULAR PURPOSE.
+
+m4_ifndef([AC_CONFIG_MACRO_DIRS], [m4_defun([_AM_CONFIG_MACRO_DIRS], [])m4_defun([AC_CONFIG_MACRO_DIRS], [_AM_CONFIG_MACRO_DIRS($@)])])
+m4_ifndef([AC_AUTOCONF_VERSION],
+  [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl
+m4_if(m4_defn([AC_AUTOCONF_VERSION]), [2.71],,
+[m4_warning([this file was generated for autoconf 2.71.
+You have another version of autoconf.  It may work, but is not guaranteed to.
+If you have problems, you may need to regenerate the build system entirely.
+To do so, use the procedure documented by the package, typically 'autoreconf'.])])
+
+# apertium.m4 - Macros to locate and utilise apertium libraries -*- Autoconf -*-
+# serial 1 (apertium-3.4.2)
+#
+# Copyright (C) 2013--2016 Universitat d'Alacant / Universidad de Alicante
+#
+# This program is free software; you can redistribute it and/or
+# modify it under the terms of the GNU General Public License as
+# published by the Free Software Foundation; either version 2 of the
+# License, or (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful, but
+# WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+# General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program; if not, see <https://www.gnu.org/licenses/>.
+
+
+# AP_CHECK_LING([ID], [MONOLINGUAL_PACKAGE])
+#
+# Check to see whether MONOLINGUAL_PACKAGE exists, and if so sets
+# AP_LIB[ID] and AP_SRC[ID].
+#
+# As an example, AP_CHECK_LING([1], [apertium-fie]) would check that
+# apertium-fie exists, and set AP_LIB1 and AP_SRC1 to the paths
+# containing the binaries and sources respectively of that monolingual
+# language package.
+#
+# Also sets up options --with-lang[ID] (e.g. --with-lang1) if the user
+# wants to use the source code checkout instead of installed files.
+# ------------------------------------------
+AC_DEFUN([AP_CHECK_LING],
+[
+  AC_ARG_VAR([AP_SRC][$1], [Path to $2 sources, same as AP_LIB$1 if --with-lang$1 set])
+  AC_ARG_VAR([AP_LIB][$1], [Path to $2 binaries, same as AP_SRC$1 if --with-lang$1 set])
+  AC_ARG_VAR([AP_SUBDIRS], [List of all --with-lang dirs; add it to SUBDIRS to make configure-specified dependencies recursively])
+  AC_ARG_WITH([lang][$1],
+    [dnl
+AS_HELP_STRING([--with-lang][$1],dnl
+[Uninstalled source directory for $2, defines AP_SRC$1 and AP_LIB$1 for Makefile, otherwise these are set to paths of installed files.])
+    ],
+    [
+      AP_LIB$1=$withval
+      AP_SRC$1=$withval
+      echo "Using $2 from $withval"
+      AP_SUBDIRS="$AP_SUBDIRS $withval"
+      module="$2"
+      if test "${module%%-*}" = apertium && ! test -f "$withval/$2.pc.in"; then
+          AC_MSG_WARN([$2 looks like an apertium dependency, but couldn't find $withval/$2.pc.in -- wrong directory, or not compiled yet?])
+      elif test "${module%%-*}" = giella && ! grep -x -q "PACKAGE = $2" "$withval/Makefile"; then
+          AC_MSG_WARN([$2 looks like a giella dependency, but couldn't find PACKAGE = $2 in $withval/Makefile -- wrong directory, or not compiled yet?])
+      elif test "${module%%-*}" = giella && ! grep -x -q "subdir = tools/mt/apertium" "$withval/Makefile"; then
+          AC_MSG_WARN([$2 looks like a giella dependency, but couldn't find subdir = tools/mt/apertium in $withval/Makefile -- wrong directory, or not compiled yet?])
+      fi
+    ],
+    [
+      # TODO: PKG_CHECK_MODULES sets useless variables, while _EXISTS
+      # doesn't error if not found, should make a PKG_CHECK macro that
+      # errors but does not set _CFLAGS/_LIBS
+      if test x"$3" = x; then
+          PKG_CHECK_MODULES(m4_toupper(m4_bpatsubst($2, [-], [_])), [$2])
+      else
+          PKG_CHECK_MODULES(m4_toupper(m4_bpatsubst($2, [-], [_])), [$2 >= $3])
+      fi
+      AP_LIB$1=`pkg-config --variable=dir $2`
+      AP_SRC$1=`pkg-config --variable=srcdir $2`
+    ])
+  if test -z "$AP_SRC$1" || ! test -d "$AP_SRC$1"; then
+    AC_MSG_ERROR([Could not find sources dir for $2 (AP_SRC$1="$AP_SRC$1")])
+  fi
+])
+
+
+# AP_SHARED()
+#
+# Check that APERTIUM_SHARED exists, and if so sets AP_SHSRC.
+#
+# Also sets up --with-shared if the user wants to use the source
+# code checkout instead of installed files.
+AC_DEFUN([AP_SHARED],
+[
+  AC_ARG_VAR([AP_SHSRC], [Path to apertium-shared sources])
+  AC_ARG_WITH([shared],
+    [dnl
+AS_HELP_STRING([--with-shared],dnl
+[Uninstalled source directory for apertium-shared, defines AP_SHSRC for Makefile, otherwise these are set to paths of installed files.])
+    ],
+	[
+	  # I actually don't know what to do if the user decides to build
+	  # in a directory other than src/, but it looks like AP_CHECK_LING
+	  # doesn't handle that case either.
+	  AP_SHSRC="$withval/src"
+	  echo "Using apertium-shared from $withval"
+	],
+	[
+	  if test x"$1" = x; then
+	      PKG_CHECK_MODULES([APERTIUM_SHARED], [apertium-shared])
+	  else
+	      PKG_CHECK_MODULES([APERTIUM_SHARED], [apertium-shared >= $1])
+	  fi
+	  AP_SHSRC=`pkg-config --variable=srcdir apertium-shared`
+	])
+  if test -z "$AP_SHSRC" || ! test -d "$AP_SHSRC"; then
+    AC_MSG_ERROR([Could not find sources dir for apertium-shared (AP_SHSRC="$AP_SHSRC")])
+  fi
+])
+
+# AP_MKINCLUDE()
+#
+# Creates the file ap_include.am and sets the variable ap_include to
+# point to this path. Now in your Makefile.am you can include
+# ap_include.am by writing @ap_include@ on a line by itself.
+#
+# The file defines a pattern rule for making modes files, and a goal
+# for installing the ones that have install="yes" in modes.xml. To
+# generate modes, include a line like
+#
+#     noinst_DATA=modes/$(PREFIX1).mode
+#
+# in your Makefile.am with _at most one mode_ (the others will be
+# created even if you list only one, listing several will lead to
+# trouble with parallell make).
+#
+# Install the modes by making install-data-local dependent on
+# install-modes, ie.
+#
+#     install-data-local: install-modes
+#
+# Also defined is a goal for making the .deps folder. If you want some
+# file to be built in a folder named .deps, just make that goal
+# dependent on .deps/.d, e.g.
+#
+#     .deps/intermediate.dix: original.dix .deps/.d
+#
+# ------------------------------------------
+AC_DEFUN([AP_MKINCLUDE],
+[
+  AC_SUBST_FILE(ap_include)
+  AC_PROG_MKDIR_P
+  ap_include=$srcdir/ap_include.am
+
+  cat >$srcdir/ap_include.am <<EOF
+
+modes/%.mode: modes.xml
+	apertium-validate-modes \@S|@<
+	apertium-gen-modes \@S|@<
+
+apertium_modesdir=\$(prefix)/share/apertium/modes/
+install-modes: modes.xml
+	apertium-gen-modes -f -l \@S|@< \$(prefix)/share/apertium/\$(BASENAME)
+	\$(MKDIR_P) \$(DESTDIR)\$(apertium_modesdir)
+	modes=\`xmllint --xpath '//mode@<:@@install="yes"@:>@/@name' \@S|@< | sed 's/ *name="\(@<:@^"@:>@*\)"/\1.mode /g'\`; \\
+		if test -n "\$\$modes"; then \\
+			\$(INSTALL_DATA) \$\$modes \$(DESTDIR)\$(apertium_modesdir); \\
+			rm \$\$modes; \\
+		fi
+
+uninstall-modes: modes.xml
+	files=\`xmllint --xpath '//mode@<:@@install="yes"@:>@/@name' \@S|@< | sed 's/ *name="\(@<:@^"@:>@*\)"/\1.mode /g'\`; \\
+	if test -n "\$\$files"; then \\
+		dir=\$(DESTDIR)\$(apertium_modesdir); \\
+		\$(am__uninstall_files_from_dir); \\
+	fi
+
+.deps/.d:
+	\$(MKDIR_P) .deps
+	touch \$[]@
+
+.PRECIOUS: .deps/.d
+
+langs:
+	@fail=; \
+	if \$(am__make_keepgoing); then \
+	  failcom='fail=yes'; \
+	else \
+	  failcom='exit 1'; \
+	fi; \
+	dot_seen=no; \
+	list='\$(AP_SUBDIRS)'; \
+	for subdir in \$\$list; do \
+	  echo "Making \$\$subdir"; \
+	  (\$(am__cd) \$\$subdir && \$(MAKE) \$(AM_MAKEFLAGS) all-am) \
+	  || eval \$\$failcom; \
+	done; \
+	\$(MAKE) \$(AM_MAKEFLAGS) all-am || exit 1; \
+	test -z "\$\$fail"
+.PHONY: langs
+
+
+.deps/%.autobil.prefixes: %.autobil.bin .deps/.d
+	lt-print -H $< > .deps/\@S|@*.autobil.att
+	hfst-txt2fst <  .deps/\@S|@*.autobil.att > .deps/\@S|@*.autobil.hfst
+	hfst-project -p upper .deps/\@S|@*.autobil.hfst > .deps/\@S|@*.autobil.upper                                   # bidix
+	echo ' @<:@ ? - %+ @:>@* ' | hfst-regexp2fst > .deps/\@S|@*.any-nonplus.hfst                                                        # [^+]*
+	hfst-concatenate -1 .deps/\@S|@*.autobil.upper -2 .deps/\@S|@*.any-nonplus.hfst -o .deps/\@S|@*.autobil.nonplussed    # bidix [^+]*
+	echo ' %+ ' | hfst-regexp2fst > .deps/\@S|@*.single-plus.hfst                                                                 # +
+	hfst-concatenate -1 .deps/\@S|@*.single-plus.hfst -2 .deps/\@S|@*.autobil.nonplussed -o .deps/\@S|@*.autobil.postplus # + bidix [^+]*
+	hfst-repeat -f0 -t3 -i .deps/\@S|@*.autobil.postplus -o .deps/\@S|@*.autobil.postplus.0,3                      # (+ bidix [^+]*){0,3} -- gives at most three +
+	hfst-concatenate -1 .deps/\@S|@*.autobil.nonplussed -2 .deps/\@S|@*.autobil.postplus.0,3 -o \@S|@@                 # bidix [^+]* (+ bidix [^+]*){0,3}
+
+%.rlx.bin: \@S|@(BASENAME).%.rlx
+	cg-comp \@S|@< \@S|@@
+
+%.autolex.bin: \@S|@(BASENAME).%.lrx
+	lrx-comp \@S|@< \@S|@@
+
+%.autoseq.bin: \@S|@(BASENAME).%.lsx
+	lsx-comp lr \@S|@< \@S|@@
+
+%.revautoseq.bin: \@S|@(BASENAME).%.lsx
+	lsx-comp rl \@S|@< \@S|@@
+
+%.t1x.bin: \@S|@(BASENAME).%.t1x
+	apertium-validate-transfer \@S|@<
+	apertium-preprocess-transfer \@S|@< \@S|@@
+%.t2x.bin: \@S|@(BASENAME).%.t2x
+	apertium-validate-interchunk \@S|@<
+	apertium-preprocess-transfer \@S|@< \@S|@@
+%.t3x.bin: \@S|@(BASENAME).%.t3x
+	apertium-validate-postchunk \@S|@<
+	apertium-preprocess-transfer \@S|@< \@S|@@
+
+%.rtx.bin: \@S|@(BASENAME).%.rtx
+	rtx-comp \@S|@< \@S|@@
+
+EOF
+
+])
+
+# pkg.m4 - Macros to locate and use pkg-config.   -*- Autoconf -*-
+# serial 12 (pkg-config-0.29.2)
+
+dnl Copyright © 2004 Scott James Remnant <scott@netsplit.com>.
+dnl Copyright © 2012-2015 Dan Nicholson <dbn.lists@gmail.com>
+dnl
+dnl This program is free software; you can redistribute it and/or modify
+dnl it under the terms of the GNU General Public License as published by
+dnl the Free Software Foundation; either version 2 of the License, or
+dnl (at your option) any later version.
+dnl
+dnl This program is distributed in the hope that it will be useful, but
+dnl WITHOUT ANY WARRANTY; without even the implied warranty of
+dnl MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+dnl General Public License for more details.
+dnl
+dnl You should have received a copy of the GNU General Public License
+dnl along with this program; if not, write to the Free Software
+dnl Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
+dnl 02111-1307, USA.
+dnl
+dnl As a special exception to the GNU General Public License, if you
+dnl distribute this file as part of a program that contains a
+dnl configuration script generated by Autoconf, you may include it under
+dnl the same distribution terms that you use for the rest of that
+dnl program.
+
+dnl PKG_PREREQ(MIN-VERSION)
+dnl -----------------------
+dnl Since: 0.29
+dnl
+dnl Verify that the version of the pkg-config macros are at least
+dnl MIN-VERSION. Unlike PKG_PROG_PKG_CONFIG, which checks the user's
+dnl installed version of pkg-config, this checks the developer's version
+dnl of pkg.m4 when generating configure.
+dnl
+dnl To ensure that this macro is defined, also add:
+dnl m4_ifndef([PKG_PREREQ],
+dnl     [m4_fatal([must install pkg-config 0.29 or later before running autoconf/autogen])])
+dnl
+dnl See the "Since" comment for each macro you use to see what version
+dnl of the macros you require.
+m4_defun([PKG_PREREQ],
+[m4_define([PKG_MACROS_VERSION], [0.29.2])
+m4_if(m4_version_compare(PKG_MACROS_VERSION, [$1]), -1,
+    [m4_fatal([pkg.m4 version $1 or higher is required but ]PKG_MACROS_VERSION[ found])])
+])dnl PKG_PREREQ
+
+dnl PKG_PROG_PKG_CONFIG([MIN-VERSION])
+dnl ----------------------------------
+dnl Since: 0.16
+dnl
+dnl Search for the pkg-config tool and set the PKG_CONFIG variable to
+dnl first found in the path. Checks that the version of pkg-config found
+dnl is at least MIN-VERSION. If MIN-VERSION is not specified, 0.9.0 is
+dnl used since that's the first version where most current features of
+dnl pkg-config existed.
+AC_DEFUN([PKG_PROG_PKG_CONFIG],
+[m4_pattern_forbid([^_?PKG_[A-Z_]+$])
+m4_pattern_allow([^PKG_CONFIG(_(PATH|LIBDIR|SYSROOT_DIR|ALLOW_SYSTEM_(CFLAGS|LIBS)))?$])
+m4_pattern_allow([^PKG_CONFIG_(DISABLE_UNINSTALLED|TOP_BUILD_DIR|DEBUG_SPEW)$])
+AC_ARG_VAR([PKG_CONFIG], [path to pkg-config utility])
+AC_ARG_VAR([PKG_CONFIG_PATH], [directories to add to pkg-config's search path])
+AC_ARG_VAR([PKG_CONFIG_LIBDIR], [path overriding pkg-config's built-in search path])
+
+if test "x$ac_cv_env_PKG_CONFIG_set" != "xset"; then
+	AC_PATH_TOOL([PKG_CONFIG], [pkg-config])
+fi
+if test -n "$PKG_CONFIG"; then
+	_pkg_min_version=m4_default([$1], [0.9.0])
+	AC_MSG_CHECKING([pkg-config is at least version $_pkg_min_version])
+	if $PKG_CONFIG --atleast-pkgconfig-version $_pkg_min_version; then
+		AC_MSG_RESULT([yes])
+	else
+		AC_MSG_RESULT([no])
+		PKG_CONFIG=""
+	fi
+fi[]dnl
+])dnl PKG_PROG_PKG_CONFIG
+
+dnl PKG_CHECK_EXISTS(MODULES, [ACTION-IF-FOUND], [ACTION-IF-NOT-FOUND])
+dnl -------------------------------------------------------------------
+dnl Since: 0.18
+dnl
+dnl Check to see whether a particular set of modules exists. Similar to
+dnl PKG_CHECK_MODULES(), but does not set variables or print errors.
+dnl
+dnl Please remember that m4 expands AC_REQUIRE([PKG_PROG_PKG_CONFIG])
+dnl only at the first occurrence in configure.ac, so if the first place
+dnl it's called might be skipped (such as if it is within an "if", you
+dnl have to call PKG_CHECK_EXISTS manually
+AC_DEFUN([PKG_CHECK_EXISTS],
+[AC_REQUIRE([PKG_PROG_PKG_CONFIG])dnl
+if test -n "$PKG_CONFIG" && \
+    AC_RUN_LOG([$PKG_CONFIG --exists --print-errors "$1"]); then
+  m4_default([$2], [:])
+m4_ifvaln([$3], [else
+  $3])dnl
+fi])
+
+dnl _PKG_CONFIG([VARIABLE], [COMMAND], [MODULES])
+dnl ---------------------------------------------
+dnl Internal wrapper calling pkg-config via PKG_CONFIG and setting
+dnl pkg_failed based on the result.
+m4_define([_PKG_CONFIG],
+[if test -n "$$1"; then
+    pkg_cv_[]$1="$$1"
+ elif test -n "$PKG_CONFIG"; then
+    PKG_CHECK_EXISTS([$3],
+                     [pkg_cv_[]$1=`$PKG_CONFIG --[]$2 "$3" 2>/dev/null`
+		      test "x$?" != "x0" && pkg_failed=yes ],
+		     [pkg_failed=yes])
+ else
+    pkg_failed=untried
+fi[]dnl
+])dnl _PKG_CONFIG
+
+dnl _PKG_SHORT_ERRORS_SUPPORTED
+dnl ---------------------------
+dnl Internal check to see if pkg-config supports short errors.
+AC_DEFUN([_PKG_SHORT_ERRORS_SUPPORTED],
+[AC_REQUIRE([PKG_PROG_PKG_CONFIG])
+if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then
+        _pkg_short_errors_supported=yes
+else
+        _pkg_short_errors_supported=no
+fi[]dnl
+])dnl _PKG_SHORT_ERRORS_SUPPORTED
+
+
+dnl PKG_CHECK_MODULES(VARIABLE-PREFIX, MODULES, [ACTION-IF-FOUND],
+dnl   [ACTION-IF-NOT-FOUND])
+dnl --------------------------------------------------------------
+dnl Since: 0.4.0
+dnl
+dnl Note that if there is a possibility the first call to
+dnl PKG_CHECK_MODULES might not happen, you should be sure to include an
+dnl explicit call to PKG_PROG_PKG_CONFIG in your configure.ac
+AC_DEFUN([PKG_CHECK_MODULES],
+[AC_REQUIRE([PKG_PROG_PKG_CONFIG])dnl
+AC_ARG_VAR([$1][_CFLAGS], [C compiler flags for $1, overriding pkg-config])dnl
+AC_ARG_VAR([$1][_LIBS], [linker flags for $1, overriding pkg-config])dnl
+
+pkg_failed=no
+AC_MSG_CHECKING([for $2])
+
+_PKG_CONFIG([$1][_CFLAGS], [cflags], [$2])
+_PKG_CONFIG([$1][_LIBS], [libs], [$2])
+
+m4_define([_PKG_TEXT], [Alternatively, you may set the environment variables $1[]_CFLAGS
+and $1[]_LIBS to avoid the need to call pkg-config.
+See the pkg-config man page for more details.])
+
+if test $pkg_failed = yes; then
+        AC_MSG_RESULT([no])
+        _PKG_SHORT_ERRORS_SUPPORTED
+        if test $_pkg_short_errors_supported = yes; then
+                $1[]_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "$2" 2>&1`
+        else
+                $1[]_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "$2" 2>&1`
+        fi
+        # Put the nasty error message in config.log where it belongs
+        echo "$$1[]_PKG_ERRORS" >&AS_MESSAGE_LOG_FD
+
+        m4_default([$4], [AC_MSG_ERROR(
+[Package requirements ($2) were not met:
+
+$$1_PKG_ERRORS
+
+Consider adjusting the PKG_CONFIG_PATH environment variable if you
+installed software in a non-standard prefix.
+
+_PKG_TEXT])[]dnl
+        ])
+elif test $pkg_failed = untried; then
+        AC_MSG_RESULT([no])
+        m4_default([$4], [AC_MSG_FAILURE(
+[The pkg-config script could not be found or is too old.  Make sure it
+is in your PATH or set the PKG_CONFIG environment variable to the full
+path to pkg-config.
+
+_PKG_TEXT
+
+To get pkg-config, see <http://pkg-config.freedesktop.org/>.])[]dnl
+        ])
+else
+        $1[]_CFLAGS=$pkg_cv_[]$1[]_CFLAGS
+        $1[]_LIBS=$pkg_cv_[]$1[]_LIBS
+        AC_MSG_RESULT([yes])
+        $3
+fi[]dnl
+])dnl PKG_CHECK_MODULES
+
+
+dnl PKG_CHECK_MODULES_STATIC(VARIABLE-PREFIX, MODULES, [ACTION-IF-FOUND],
+dnl   [ACTION-IF-NOT-FOUND])
+dnl ---------------------------------------------------------------------
+dnl Since: 0.29
+dnl
+dnl Checks for existence of MODULES and gathers its build flags with
+dnl static libraries enabled. Sets VARIABLE-PREFIX_CFLAGS from --cflags
+dnl and VARIABLE-PREFIX_LIBS from --libs.
+dnl
+dnl Note that if there is a possibility the first call to
+dnl PKG_CHECK_MODULES_STATIC might not happen, you should be sure to
+dnl include an explicit call to PKG_PROG_PKG_CONFIG in your
+dnl configure.ac.
+AC_DEFUN([PKG_CHECK_MODULES_STATIC],
+[AC_REQUIRE([PKG_PROG_PKG_CONFIG])dnl
+_save_PKG_CONFIG=$PKG_CONFIG
+PKG_CONFIG="$PKG_CONFIG --static"
+PKG_CHECK_MODULES($@)
+PKG_CONFIG=$_save_PKG_CONFIG[]dnl
+])dnl PKG_CHECK_MODULES_STATIC
+
+
+dnl PKG_INSTALLDIR([DIRECTORY])
+dnl -------------------------
+dnl Since: 0.27
+dnl
+dnl Substitutes the variable pkgconfigdir as the location where a module
+dnl should install pkg-config .pc files. By default the directory is
+dnl $libdir/pkgconfig, but the default can be changed by passing
+dnl DIRECTORY. The user can override through the --with-pkgconfigdir
+dnl parameter.
+AC_DEFUN([PKG_INSTALLDIR],
+[m4_pushdef([pkg_default], [m4_default([$1], ['${libdir}/pkgconfig'])])
+m4_pushdef([pkg_description],
+    [pkg-config installation directory @<:@]pkg_default[@:>@])
+AC_ARG_WITH([pkgconfigdir],
+    [AS_HELP_STRING([--with-pkgconfigdir], pkg_description)],,
+    [with_pkgconfigdir=]pkg_default)
+AC_SUBST([pkgconfigdir], [$with_pkgconfigdir])
+m4_popdef([pkg_default])
+m4_popdef([pkg_description])
+])dnl PKG_INSTALLDIR
+
+
+dnl PKG_NOARCH_INSTALLDIR([DIRECTORY])
+dnl --------------------------------
+dnl Since: 0.27
+dnl
+dnl Substitutes the variable noarch_pkgconfigdir as the location where a
+dnl module should install arch-independent pkg-config .pc files. By
+dnl default the directory is $datadir/pkgconfig, but the default can be
+dnl changed by passing DIRECTORY. The user can override through the
+dnl --with-noarch-pkgconfigdir parameter.
+AC_DEFUN([PKG_NOARCH_INSTALLDIR],
+[m4_pushdef([pkg_default], [m4_default([$1], ['${datadir}/pkgconfig'])])
+m4_pushdef([pkg_description],
+    [pkg-config arch-independent installation directory @<:@]pkg_default[@:>@])
+AC_ARG_WITH([noarch-pkgconfigdir],
+    [AS_HELP_STRING([--with-noarch-pkgconfigdir], pkg_description)],,
+    [with_noarch_pkgconfigdir=]pkg_default)
+AC_SUBST([noarch_pkgconfigdir], [$with_noarch_pkgconfigdir])
+m4_popdef([pkg_default])
+m4_popdef([pkg_description])
+])dnl PKG_NOARCH_INSTALLDIR
+
+
+dnl PKG_CHECK_VAR(VARIABLE, MODULE, CONFIG-VARIABLE,
+dnl [ACTION-IF-FOUND], [ACTION-IF-NOT-FOUND])
+dnl -------------------------------------------
+dnl Since: 0.28
+dnl
+dnl Retrieves the value of the pkg-config variable for the given module.
+AC_DEFUN([PKG_CHECK_VAR],
+[AC_REQUIRE([PKG_PROG_PKG_CONFIG])dnl
+AC_ARG_VAR([$1], [value of $3 for $2, overriding pkg-config])dnl
+
+_PKG_CONFIG([$1], [variable="][$3]["], [$2])
+AS_VAR_COPY([$1], [pkg_cv_][$1])
+
+AS_VAR_IF([$1], [""], [$5], [$4])dnl
+])dnl PKG_CHECK_VAR
+
+dnl PKG_WITH_MODULES(VARIABLE-PREFIX, MODULES,
+dnl   [ACTION-IF-FOUND],[ACTION-IF-NOT-FOUND],
+dnl   [DESCRIPTION], [DEFAULT])
+dnl ------------------------------------------
+dnl
+dnl Prepare a "--with-" configure option using the lowercase
+dnl [VARIABLE-PREFIX] name, merging the behaviour of AC_ARG_WITH and
+dnl PKG_CHECK_MODULES in a single macro.
+AC_DEFUN([PKG_WITH_MODULES],
+[
+m4_pushdef([with_arg], m4_tolower([$1]))
+
+m4_pushdef([description],
+           [m4_default([$5], [build with ]with_arg[ support])])
+
+m4_pushdef([def_arg], [m4_default([$6], [auto])])
+m4_pushdef([def_action_if_found], [AS_TR_SH([with_]with_arg)=yes])
+m4_pushdef([def_action_if_not_found], [AS_TR_SH([with_]with_arg)=no])
+
+m4_case(def_arg,
+            [yes],[m4_pushdef([with_without], [--without-]with_arg)],
+            [m4_pushdef([with_without],[--with-]with_arg)])
+
+AC_ARG_WITH(with_arg,
+     AS_HELP_STRING(with_without, description[ @<:@default=]def_arg[@:>@]),,
+    [AS_TR_SH([with_]with_arg)=def_arg])
+
+AS_CASE([$AS_TR_SH([with_]with_arg)],
+            [yes],[PKG_CHECK_MODULES([$1],[$2],$3,$4)],
+            [auto],[PKG_CHECK_MODULES([$1],[$2],
+                                        [m4_n([def_action_if_found]) $3],
+                                        [m4_n([def_action_if_not_found]) $4])])
+
+m4_popdef([with_arg])
+m4_popdef([description])
+m4_popdef([def_arg])
+
+])dnl PKG_WITH_MODULES
+
+dnl PKG_HAVE_WITH_MODULES(VARIABLE-PREFIX, MODULES,
+dnl   [DESCRIPTION], [DEFAULT])
+dnl -----------------------------------------------
+dnl
+dnl Convenience macro to trigger AM_CONDITIONAL after PKG_WITH_MODULES
+dnl check._[VARIABLE-PREFIX] is exported as make variable.
+AC_DEFUN([PKG_HAVE_WITH_MODULES],
+[
+PKG_WITH_MODULES([$1],[$2],,,[$3],[$4])
+
+AM_CONDITIONAL([HAVE_][$1],
+               [test "$AS_TR_SH([with_]m4_tolower([$1]))" = "yes"])
+])dnl PKG_HAVE_WITH_MODULES
+
+dnl PKG_HAVE_DEFINE_WITH_MODULES(VARIABLE-PREFIX, MODULES,
+dnl   [DESCRIPTION], [DEFAULT])
+dnl ------------------------------------------------------
+dnl
+dnl Convenience macro to run AM_CONDITIONAL and AC_DEFINE after
+dnl PKG_WITH_MODULES check. HAVE_[VARIABLE-PREFIX] is exported as make
+dnl and preprocessor variable.
+AC_DEFUN([PKG_HAVE_DEFINE_WITH_MODULES],
+[
+PKG_HAVE_WITH_MODULES([$1],[$2],[$3],[$4])
+
+AS_IF([test "$AS_TR_SH([with_]m4_tolower([$1]))" = "yes"],
+        [AC_DEFINE([HAVE_][$1], 1, [Enable ]m4_tolower([$1])[ support])])
+])dnl PKG_HAVE_DEFINE_WITH_MODULES
+
+# Copyright (C) 2002-2021 Free Software Foundation, Inc.
+#
+# This file is free software; the Free Software Foundation
+# gives unlimited permission to copy and/or distribute it,
+# with or without modifications, as long as this notice is preserved.
+
+# AM_AUTOMAKE_VERSION(VERSION)
+# ----------------------------
+# Automake X.Y traces this macro to ensure aclocal.m4 has been
+# generated from the m4 files accompanying Automake X.Y.
+# (This private macro should not be called outside this file.)
+AC_DEFUN([AM_AUTOMAKE_VERSION],
+[am__api_version='1.16'
+dnl Some users find AM_AUTOMAKE_VERSION and mistake it for a way to
+dnl require some minimum version.  Point them to the right macro.
+m4_if([$1], [1.16.5], [],
+      [AC_FATAL([Do not call $0, use AM_INIT_AUTOMAKE([$1]).])])dnl
+])
+
+# _AM_AUTOCONF_VERSION(VERSION)
+# -----------------------------
+# aclocal traces this macro to find the Autoconf version.
+# This is a private macro too.  Using m4_define simplifies
+# the logic in aclocal, which can simply ignore this definition.
+m4_define([_AM_AUTOCONF_VERSION], [])
+
+# AM_SET_CURRENT_AUTOMAKE_VERSION
+# -------------------------------
+# Call AM_AUTOMAKE_VERSION and AM_AUTOMAKE_VERSION so they can be traced.
+# This function is AC_REQUIREd by AM_INIT_AUTOMAKE.
+AC_DEFUN([AM_SET_CURRENT_AUTOMAKE_VERSION],
+[AM_AUTOMAKE_VERSION([1.16.5])dnl
+m4_ifndef([AC_AUTOCONF_VERSION],
+  [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl
+_AM_AUTOCONF_VERSION(m4_defn([AC_AUTOCONF_VERSION]))])
+
+# AM_AUX_DIR_EXPAND                                         -*- Autoconf -*-
+
+# Copyright (C) 2001-2021 Free Software Foundation, Inc.
+#
+# This file is free software; the Free Software Foundation
+# gives unlimited permission to copy and/or distribute it,
+# with or without modifications, as long as this notice is preserved.
+
+# For projects using AC_CONFIG_AUX_DIR([foo]), Autoconf sets
+# $ac_aux_dir to '$srcdir/foo'.  In other projects, it is set to
+# '$srcdir', '$srcdir/..', or '$srcdir/../..'.
+#
+# Of course, Automake must honor this variable whenever it calls a
+# tool from the auxiliary directory.  The problem is that $srcdir (and
+# therefore $ac_aux_dir as well) can be either absolute or relative,
+# depending on how configure is run.  This is pretty annoying, since
+# it makes $ac_aux_dir quite unusable in subdirectories: in the top
+# source directory, any form will work fine, but in subdirectories a
+# relative path needs to be adjusted first.
+#
+# $ac_aux_dir/missing
+#    fails when called from a subdirectory if $ac_aux_dir is relative
+# $top_srcdir/$ac_aux_dir/missing
+#    fails if $ac_aux_dir is absolute,
+#    fails when called from a subdirectory in a VPATH build with
+#          a relative $ac_aux_dir
+#
+# The reason of the latter failure is that $top_srcdir and $ac_aux_dir
+# are both prefixed by $srcdir.  In an in-source build this is usually
+# harmless because $srcdir is '.', but things will broke when you
+# start a VPATH build or use an absolute $srcdir.
+#
+# So we could use something similar to $top_srcdir/$ac_aux_dir/missing,
+# iff we strip the leading $srcdir from $ac_aux_dir.  That would be:
+#   am_aux_dir='\$(top_srcdir)/'`expr "$ac_aux_dir" : "$srcdir//*\(.*\)"`
+# and then we would define $MISSING as
+#   MISSING="\${SHELL} $am_aux_dir/missing"
+# This will work as long as MISSING is not called from configure, because
+# unfortunately $(top_srcdir) has no meaning in configure.
+# However there are other variables, like CC, which are often used in
+# configure, and could therefore not use this "fixed" $ac_aux_dir.
+#
+# Another solution, used here, is to always expand $ac_aux_dir to an
+# absolute PATH.  The drawback is that using absolute paths prevent a
+# configured tree to be moved without reconfiguration.
+
+AC_DEFUN([AM_AUX_DIR_EXPAND],
+[AC_REQUIRE([AC_CONFIG_AUX_DIR_DEFAULT])dnl
+# Expand $ac_aux_dir to an absolute path.
+am_aux_dir=`cd "$ac_aux_dir" && pwd`
+])
+
+# AM_CONDITIONAL                                            -*- Autoconf -*-
+
+# Copyright (C) 1997-2021 Free Software Foundation, Inc.
+#
+# This file is free software; the Free Software Foundation
+# gives unlimited permission to copy and/or distribute it,
+# with or without modifications, as long as this notice is preserved.
+
+# AM_CONDITIONAL(NAME, SHELL-CONDITION)
+# -------------------------------------
+# Define a conditional.
+AC_DEFUN([AM_CONDITIONAL],
+[AC_PREREQ([2.52])dnl
+ m4_if([$1], [TRUE],  [AC_FATAL([$0: invalid condition: $1])],
+       [$1], [FALSE], [AC_FATAL([$0: invalid condition: $1])])dnl
+AC_SUBST([$1_TRUE])dnl
+AC_SUBST([$1_FALSE])dnl
+_AM_SUBST_NOTMAKE([$1_TRUE])dnl
+_AM_SUBST_NOTMAKE([$1_FALSE])dnl
+m4_define([_AM_COND_VALUE_$1], [$2])dnl
+if $2; then
+  $1_TRUE=
+  $1_FALSE='#'
+else
+  $1_TRUE='#'
+  $1_FALSE=
+fi
+AC_CONFIG_COMMANDS_PRE(
+[if test -z "${$1_TRUE}" && test -z "${$1_FALSE}"; then
+  AC_MSG_ERROR([[conditional "$1" was never defined.
+Usually this means the macro was only invoked conditionally.]])
+fi])])
+
+# Do all the work for Automake.                             -*- Autoconf -*-
+
+# Copyright (C) 1996-2021 Free Software Foundation, Inc.
+#
+# This file is free software; the Free Software Foundation
+# gives unlimited permission to copy and/or distribute it,
+# with or without modifications, as long as this notice is preserved.
+
+# This macro actually does too much.  Some checks are only needed if
+# your package does certain things.  But this isn't really a big deal.
+
+dnl Redefine AC_PROG_CC to automatically invoke _AM_PROG_CC_C_O.
+m4_define([AC_PROG_CC],
+m4_defn([AC_PROG_CC])
+[_AM_PROG_CC_C_O
+])
+
+# AM_INIT_AUTOMAKE(PACKAGE, VERSION, [NO-DEFINE])
+# AM_INIT_AUTOMAKE([OPTIONS])
+# -----------------------------------------------
+# The call with PACKAGE and VERSION arguments is the old style
+# call (pre autoconf-2.50), which is being phased out.  PACKAGE
+# and VERSION should now be passed to AC_INIT and removed from
+# the call to AM_INIT_AUTOMAKE.
+# We support both call styles for the transition.  After
+# the next Automake release, Autoconf can make the AC_INIT
+# arguments mandatory, and then we can depend on a new Autoconf
+# release and drop the old call support.
+AC_DEFUN([AM_INIT_AUTOMAKE],
+[AC_PREREQ([2.65])dnl
+m4_ifdef([_$0_ALREADY_INIT],
+  [m4_fatal([$0 expanded multiple times
+]m4_defn([_$0_ALREADY_INIT]))],
+  [m4_define([_$0_ALREADY_INIT], m4_expansion_stack)])dnl
+dnl Autoconf wants to disallow AM_ names.  We explicitly allow
+dnl the ones we care about.
+m4_pattern_allow([^AM_[A-Z]+FLAGS$])dnl
+AC_REQUIRE([AM_SET_CURRENT_AUTOMAKE_VERSION])dnl
+AC_REQUIRE([AC_PROG_INSTALL])dnl
+if test "`cd $srcdir && pwd`" != "`pwd`"; then
+  # Use -I$(srcdir) only when $(srcdir) != ., so that make's output
+  # is not polluted with repeated "-I."
+  AC_SUBST([am__isrc], [' -I$(srcdir)'])_AM_SUBST_NOTMAKE([am__isrc])dnl
+  # test to see if srcdir already configured
+  if test -f $srcdir/config.status; then
+    AC_MSG_ERROR([source directory already configured; run "make distclean" there first])
+  fi
+fi
+
+# test whether we have cygpath
+if test -z "$CYGPATH_W"; then
+  if (cygpath --version) >/dev/null 2>/dev/null; then
+    CYGPATH_W='cygpath -w'
+  else
+    CYGPATH_W=echo
+  fi
+fi
+AC_SUBST([CYGPATH_W])
+
+# Define the identity of the package.
+dnl Distinguish between old-style and new-style calls.
+m4_ifval([$2],
+[AC_DIAGNOSE([obsolete],
+             [$0: two- and three-arguments forms are deprecated.])
+m4_ifval([$3], [_AM_SET_OPTION([no-define])])dnl
+ AC_SUBST([PACKAGE], [$1])dnl
+ AC_SUBST([VERSION], [$2])],
+[_AM_SET_OPTIONS([$1])dnl
+dnl Diagnose old-style AC_INIT with new-style AM_AUTOMAKE_INIT.
+m4_if(
+  m4_ifset([AC_PACKAGE_NAME], [ok]):m4_ifset([AC_PACKAGE_VERSION], [ok]),
+  [ok:ok],,
+  [m4_fatal([AC_INIT should be called with package and version arguments])])dnl
+ AC_SUBST([PACKAGE], ['AC_PACKAGE_TARNAME'])dnl
+ AC_SUBST([VERSION], ['AC_PACKAGE_VERSION'])])dnl
+
+_AM_IF_OPTION([no-define],,
+[AC_DEFINE_UNQUOTED([PACKAGE], ["$PACKAGE"], [Name of package])
+ AC_DEFINE_UNQUOTED([VERSION], ["$VERSION"], [Version number of package])])dnl
+
+# Some tools Automake needs.
+AC_REQUIRE([AM_SANITY_CHECK])dnl
+AC_REQUIRE([AC_ARG_PROGRAM])dnl
+AM_MISSING_PROG([ACLOCAL], [aclocal-${am__api_version}])
+AM_MISSING_PROG([AUTOCONF], [autoconf])
+AM_MISSING_PROG([AUTOMAKE], [automake-${am__api_version}])
+AM_MISSING_PROG([AUTOHEADER], [autoheader])
+AM_MISSING_PROG([MAKEINFO], [makeinfo])
+AC_REQUIRE([AM_PROG_INSTALL_SH])dnl
+AC_REQUIRE([AM_PROG_INSTALL_STRIP])dnl
+AC_REQUIRE([AC_PROG_MKDIR_P])dnl
+# For better backward compatibility.  To be removed once Automake 1.9.x
+# dies out for good.  For more background, see:
+# <https://lists.gnu.org/archive/html/automake/2012-07/msg00001.html>
+# <https://lists.gnu.org/archive/html/automake/2012-07/msg00014.html>
+AC_SUBST([mkdir_p], ['$(MKDIR_P)'])
+# We need awk for the "check" target (and possibly the TAP driver).  The
+# system "awk" is bad on some platforms.
+AC_REQUIRE([AC_PROG_AWK])dnl
+AC_REQUIRE([AC_PROG_MAKE_SET])dnl
+AC_REQUIRE([AM_SET_LEADING_DOT])dnl
+_AM_IF_OPTION([tar-ustar], [_AM_PROG_TAR([ustar])],
+	      [_AM_IF_OPTION([tar-pax], [_AM_PROG_TAR([pax])],
+			     [_AM_PROG_TAR([v7])])])
+_AM_IF_OPTION([no-dependencies],,
+[AC_PROVIDE_IFELSE([AC_PROG_CC],
+		  [_AM_DEPENDENCIES([CC])],
+		  [m4_define([AC_PROG_CC],
+			     m4_defn([AC_PROG_CC])[_AM_DEPENDENCIES([CC])])])dnl
+AC_PROVIDE_IFELSE([AC_PROG_CXX],
+		  [_AM_DEPENDENCIES([CXX])],
+		  [m4_define([AC_PROG_CXX],
+			     m4_defn([AC_PROG_CXX])[_AM_DEPENDENCIES([CXX])])])dnl
+AC_PROVIDE_IFELSE([AC_PROG_OBJC],
+		  [_AM_DEPENDENCIES([OBJC])],
+		  [m4_define([AC_PROG_OBJC],
+			     m4_defn([AC_PROG_OBJC])[_AM_DEPENDENCIES([OBJC])])])dnl
+AC_PROVIDE_IFELSE([AC_PROG_OBJCXX],
+		  [_AM_DEPENDENCIES([OBJCXX])],
+		  [m4_define([AC_PROG_OBJCXX],
+			     m4_defn([AC_PROG_OBJCXX])[_AM_DEPENDENCIES([OBJCXX])])])dnl
+])
+# Variables for tags utilities; see am/tags.am
+if test -z "$CTAGS"; then
+  CTAGS=ctags
+fi
+AC_SUBST([CTAGS])
+if test -z "$ETAGS"; then
+  ETAGS=etags
+fi
+AC_SUBST([ETAGS])
+if test -z "$CSCOPE"; then
+  CSCOPE=cscope
+fi
+AC_SUBST([CSCOPE])
+
+AC_REQUIRE([AM_SILENT_RULES])dnl
+dnl The testsuite driver may need to know about EXEEXT, so add the
+dnl 'am__EXEEXT' conditional if _AM_COMPILER_EXEEXT was seen.  This
+dnl macro is hooked onto _AC_COMPILER_EXEEXT early, see below.
+AC_CONFIG_COMMANDS_PRE(dnl
+[m4_provide_if([_AM_COMPILER_EXEEXT],
+  [AM_CONDITIONAL([am__EXEEXT], [test -n "$EXEEXT"])])])dnl
+
+# POSIX will say in a future version that running "rm -f" with no argument
+# is OK; and we want to be able to make that assumption in our Makefile
+# recipes.  So use an aggressive probe to check that the usage we want is
+# actually supported "in the wild" to an acceptable degree.
+# See automake bug#10828.
+# To make any issue more visible, cause the running configure to be aborted
+# by default if the 'rm' program in use doesn't match our expectations; the
+# user can still override this though.
+if rm -f && rm -fr && rm -rf; then : OK; else
+  cat >&2 <<'END'
+Oops!
+
+Your 'rm' program seems unable to run without file operands specified
+on the command line, even when the '-f' option is present.  This is contrary
+to the behaviour of most rm programs out there, and not conforming with
+the upcoming POSIX standard: <http://austingroupbugs.net/view.php?id=542>
+
+Please tell bug-automake@gnu.org about your system, including the value
+of your $PATH and any error possibly output before this message.  This
+can help us improve future automake versions.
+
+END
+  if test x"$ACCEPT_INFERIOR_RM_PROGRAM" = x"yes"; then
+    echo 'Configuration will proceed anyway, since you have set the' >&2
+    echo 'ACCEPT_INFERIOR_RM_PROGRAM variable to "yes"' >&2
+    echo >&2
+  else
+    cat >&2 <<'END'
+Aborting the configuration process, to ensure you take notice of the issue.
+
+You can download and install GNU coreutils to get an 'rm' implementation
+that behaves properly: <https://www.gnu.org/software/coreutils/>.
+
+If you want to complete the configuration process using your problematic
+'rm' anyway, export the environment variable ACCEPT_INFERIOR_RM_PROGRAM
+to "yes", and re-run configure.
+
+END
+    AC_MSG_ERROR([Your 'rm' program is bad, sorry.])
+  fi
+fi
+dnl The trailing newline in this macro's definition is deliberate, for
+dnl backward compatibility and to allow trailing 'dnl'-style comments
+dnl after the AM_INIT_AUTOMAKE invocation. See automake bug#16841.
+])
+
+dnl Hook into '_AC_COMPILER_EXEEXT' early to learn its expansion.  Do not
+dnl add the conditional right here, as _AC_COMPILER_EXEEXT may be further
+dnl mangled by Autoconf and run in a shell conditional statement.
+m4_define([_AC_COMPILER_EXEEXT],
+m4_defn([_AC_COMPILER_EXEEXT])[m4_provide([_AM_COMPILER_EXEEXT])])
+
+# When config.status generates a header, we must update the stamp-h file.
+# This file resides in the same directory as the config header
+# that is generated.  The stamp files are numbered to have different names.
+
+# Autoconf calls _AC_AM_CONFIG_HEADER_HOOK (when defined) in the
+# loop where config.status creates the headers, so we can generate
+# our stamp files there.
+AC_DEFUN([_AC_AM_CONFIG_HEADER_HOOK],
+[# Compute $1's index in $config_headers.
+_am_arg=$1
+_am_stamp_count=1
+for _am_header in $config_headers :; do
+  case $_am_header in
+    $_am_arg | $_am_arg:* )
+      break ;;
+    * )
+      _am_stamp_count=`expr $_am_stamp_count + 1` ;;
+  esac
+done
+echo "timestamp for $_am_arg" >`AS_DIRNAME(["$_am_arg"])`/stamp-h[]$_am_stamp_count])
+
+# Copyright (C) 2001-2021 Free Software Foundation, Inc.
+#
+# This file is free software; the Free Software Foundation
+# gives unlimited permission to copy and/or distribute it,
+# with or without modifications, as long as this notice is preserved.
+
+# AM_PROG_INSTALL_SH
+# ------------------
+# Define $install_sh.
+AC_DEFUN([AM_PROG_INSTALL_SH],
+[AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl
+if test x"${install_sh+set}" != xset; then
+  case $am_aux_dir in
+  *\ * | *\	*)
+    install_sh="\${SHELL} '$am_aux_dir/install-sh'" ;;
+  *)
+    install_sh="\${SHELL} $am_aux_dir/install-sh"
+  esac
+fi
+AC_SUBST([install_sh])])
+
+# Copyright (C) 2003-2021 Free Software Foundation, Inc.
+#
+# This file is free software; the Free Software Foundation
+# gives unlimited permission to copy and/or distribute it,
+# with or without modifications, as long as this notice is preserved.
+
+# Check whether the underlying file-system supports filenames
+# with a leading dot.  For instance MS-DOS doesn't.
+AC_DEFUN([AM_SET_LEADING_DOT],
+[rm -rf .tst 2>/dev/null
+mkdir .tst 2>/dev/null
+if test -d .tst; then
+  am__leading_dot=.
+else
+  am__leading_dot=_
+fi
+rmdir .tst 2>/dev/null
+AC_SUBST([am__leading_dot])])
+
+# Fake the existence of programs that GNU maintainers use.  -*- Autoconf -*-
+
+# Copyright (C) 1997-2021 Free Software Foundation, Inc.
+#
+# This file is free software; the Free Software Foundation
+# gives unlimited permission to copy and/or distribute it,
+# with or without modifications, as long as this notice is preserved.
+
+# AM_MISSING_PROG(NAME, PROGRAM)
+# ------------------------------
+AC_DEFUN([AM_MISSING_PROG],
+[AC_REQUIRE([AM_MISSING_HAS_RUN])
+$1=${$1-"${am_missing_run}$2"}
+AC_SUBST($1)])
+
+# AM_MISSING_HAS_RUN
+# ------------------
+# Define MISSING if not defined so far and test if it is modern enough.
+# If it is, set am_missing_run to use it, otherwise, to nothing.
+AC_DEFUN([AM_MISSING_HAS_RUN],
+[AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl
+AC_REQUIRE_AUX_FILE([missing])dnl
+if test x"${MISSING+set}" != xset; then
+  MISSING="\${SHELL} '$am_aux_dir/missing'"
+fi
+# Use eval to expand $SHELL
+if eval "$MISSING --is-lightweight"; then
+  am_missing_run="$MISSING "
+else
+  am_missing_run=
+  AC_MSG_WARN(['missing' script is too old or missing])
+fi
+])
+
+# Helper functions for option handling.                     -*- Autoconf -*-
+
+# Copyright (C) 2001-2021 Free Software Foundation, Inc.
+#
+# This file is free software; the Free Software Foundation
+# gives unlimited permission to copy and/or distribute it,
+# with or without modifications, as long as this notice is preserved.
+
+# _AM_MANGLE_OPTION(NAME)
+# -----------------------
+AC_DEFUN([_AM_MANGLE_OPTION],
+[[_AM_OPTION_]m4_bpatsubst($1, [[^a-zA-Z0-9_]], [_])])
+
+# _AM_SET_OPTION(NAME)
+# --------------------
+# Set option NAME.  Presently that only means defining a flag for this option.
+AC_DEFUN([_AM_SET_OPTION],
+[m4_define(_AM_MANGLE_OPTION([$1]), [1])])
+
+# _AM_SET_OPTIONS(OPTIONS)
+# ------------------------
+# OPTIONS is a space-separated list of Automake options.
+AC_DEFUN([_AM_SET_OPTIONS],
+[m4_foreach_w([_AM_Option], [$1], [_AM_SET_OPTION(_AM_Option)])])
+
+# _AM_IF_OPTION(OPTION, IF-SET, [IF-NOT-SET])
+# -------------------------------------------
+# Execute IF-SET if OPTION is set, IF-NOT-SET otherwise.
+AC_DEFUN([_AM_IF_OPTION],
+[m4_ifset(_AM_MANGLE_OPTION([$1]), [$2], [$3])])
+
+# Check to make sure that the build environment is sane.    -*- Autoconf -*-
+
+# Copyright (C) 1996-2021 Free Software Foundation, Inc.
+#
+# This file is free software; the Free Software Foundation
+# gives unlimited permission to copy and/or distribute it,
+# with or without modifications, as long as this notice is preserved.
+
+# AM_SANITY_CHECK
+# ---------------
+AC_DEFUN([AM_SANITY_CHECK],
+[AC_MSG_CHECKING([whether build environment is sane])
+# Reject unsafe characters in $srcdir or the absolute working directory
+# name.  Accept space and tab only in the latter.
+am_lf='
+'
+case `pwd` in
+  *[[\\\"\#\$\&\'\`$am_lf]]*)
+    AC_MSG_ERROR([unsafe absolute working directory name]);;
+esac
+case $srcdir in
+  *[[\\\"\#\$\&\'\`$am_lf\ \	]]*)
+    AC_MSG_ERROR([unsafe srcdir value: '$srcdir']);;
+esac
+
+# Do 'set' in a subshell so we don't clobber the current shell's
+# arguments.  Must try -L first in case configure is actually a
+# symlink; some systems play weird games with the mod time of symlinks
+# (eg FreeBSD returns the mod time of the symlink's containing
+# directory).
+if (
+   am_has_slept=no
+   for am_try in 1 2; do
+     echo "timestamp, slept: $am_has_slept" > conftest.file
+     set X `ls -Lt "$srcdir/configure" conftest.file 2> /dev/null`
+     if test "$[*]" = "X"; then
+	# -L didn't work.
+	set X `ls -t "$srcdir/configure" conftest.file`
+     fi
+     if test "$[*]" != "X $srcdir/configure conftest.file" \
+	&& test "$[*]" != "X conftest.file $srcdir/configure"; then
+
+	# If neither matched, then we have a broken ls.  This can happen
+	# if, for instance, CONFIG_SHELL is bash and it inherits a
+	# broken ls alias from the environment.  This has actually
+	# happened.  Such a system could not be considered "sane".
+	AC_MSG_ERROR([ls -t appears to fail.  Make sure there is not a broken
+  alias in your environment])
+     fi
+     if test "$[2]" = conftest.file || test $am_try -eq 2; then
+       break
+     fi
+     # Just in case.
+     sleep 1
+     am_has_slept=yes
+   done
+   test "$[2]" = conftest.file
+   )
+then
+   # Ok.
+   :
+else
+   AC_MSG_ERROR([newly created file is older than distributed files!
+Check your system clock])
+fi
+AC_MSG_RESULT([yes])
+# If we didn't sleep, we still need to ensure time stamps of config.status and
+# generated files are strictly newer.
+am_sleep_pid=
+if grep 'slept: no' conftest.file >/dev/null 2>&1; then
+  ( sleep 1 ) &
+  am_sleep_pid=$!
+fi
+AC_CONFIG_COMMANDS_PRE(
+  [AC_MSG_CHECKING([that generated files are newer than configure])
+   if test -n "$am_sleep_pid"; then
+     # Hide warnings about reused PIDs.
+     wait $am_sleep_pid 2>/dev/null
+   fi
+   AC_MSG_RESULT([done])])
+rm -f conftest.file
+])
+
+# Copyright (C) 2009-2021 Free Software Foundation, Inc.
+#
+# This file is free software; the Free Software Foundation
+# gives unlimited permission to copy and/or distribute it,
+# with or without modifications, as long as this notice is preserved.
+
+# AM_SILENT_RULES([DEFAULT])
+# --------------------------
+# Enable less verbose build rules; with the default set to DEFAULT
+# ("yes" being less verbose, "no" or empty being verbose).
+AC_DEFUN([AM_SILENT_RULES],
+[AC_ARG_ENABLE([silent-rules], [dnl
+AS_HELP_STRING(
+  [--enable-silent-rules],
+  [less verbose build output (undo: "make V=1")])
+AS_HELP_STRING(
+  [--disable-silent-rules],
+  [verbose build output (undo: "make V=0")])dnl
+])
+case $enable_silent_rules in @%:@ (((
+  yes) AM_DEFAULT_VERBOSITY=0;;
+   no) AM_DEFAULT_VERBOSITY=1;;
+    *) AM_DEFAULT_VERBOSITY=m4_if([$1], [yes], [0], [1]);;
+esac
+dnl
+dnl A few 'make' implementations (e.g., NonStop OS and NextStep)
+dnl do not support nested variable expansions.
+dnl See automake bug#9928 and bug#10237.
+am_make=${MAKE-make}
+AC_CACHE_CHECK([whether $am_make supports nested variables],
+   [am_cv_make_support_nested_variables],
+   [if AS_ECHO([['TRUE=$(BAR$(V))
+BAR0=false
+BAR1=true
+V=1
+am__doit:
+	@$(TRUE)
+.PHONY: am__doit']]) | $am_make -f - >/dev/null 2>&1; then
+  am_cv_make_support_nested_variables=yes
+else
+  am_cv_make_support_nested_variables=no
+fi])
+if test $am_cv_make_support_nested_variables = yes; then
+  dnl Using '$V' instead of '$(V)' breaks IRIX make.
+  AM_V='$(V)'
+  AM_DEFAULT_V='$(AM_DEFAULT_VERBOSITY)'
+else
+  AM_V=$AM_DEFAULT_VERBOSITY
+  AM_DEFAULT_V=$AM_DEFAULT_VERBOSITY
+fi
+AC_SUBST([AM_V])dnl
+AM_SUBST_NOTMAKE([AM_V])dnl
+AC_SUBST([AM_DEFAULT_V])dnl
+AM_SUBST_NOTMAKE([AM_DEFAULT_V])dnl
+AC_SUBST([AM_DEFAULT_VERBOSITY])dnl
+AM_BACKSLASH='\'
+AC_SUBST([AM_BACKSLASH])dnl
+_AM_SUBST_NOTMAKE([AM_BACKSLASH])dnl
+])
+
+# Copyright (C) 2001-2021 Free Software Foundation, Inc.
+#
+# This file is free software; the Free Software Foundation
+# gives unlimited permission to copy and/or distribute it,
+# with or without modifications, as long as this notice is preserved.
+
+# AM_PROG_INSTALL_STRIP
+# ---------------------
+# One issue with vendor 'install' (even GNU) is that you can't
+# specify the program used to strip binaries.  This is especially
+# annoying in cross-compiling environments, where the build's strip
+# is unlikely to handle the host's binaries.
+# Fortunately install-sh will honor a STRIPPROG variable, so we
+# always use install-sh in "make install-strip", and initialize
+# STRIPPROG with the value of the STRIP variable (set by the user).
+AC_DEFUN([AM_PROG_INSTALL_STRIP],
+[AC_REQUIRE([AM_PROG_INSTALL_SH])dnl
+# Installed binaries are usually stripped using 'strip' when the user
+# run "make install-strip".  However 'strip' might not be the right
+# tool to use in cross-compilation environments, therefore Automake
+# will honor the 'STRIP' environment variable to overrule this program.
+dnl Don't test for $cross_compiling = yes, because it might be 'maybe'.
+if test "$cross_compiling" != no; then
+  AC_CHECK_TOOL([STRIP], [strip], :)
+fi
+INSTALL_STRIP_PROGRAM="\$(install_sh) -c -s"
+AC_SUBST([INSTALL_STRIP_PROGRAM])])
+
+# Copyright (C) 2006-2021 Free Software Foundation, Inc.
+#
+# This file is free software; the Free Software Foundation
+# gives unlimited permission to copy and/or distribute it,
+# with or without modifications, as long as this notice is preserved.
+
+# _AM_SUBST_NOTMAKE(VARIABLE)
+# ---------------------------
+# Prevent Automake from outputting VARIABLE = @VARIABLE@ in Makefile.in.
+# This macro is traced by Automake.
+AC_DEFUN([_AM_SUBST_NOTMAKE])
+
+# AM_SUBST_NOTMAKE(VARIABLE)
+# --------------------------
+# Public sister of _AM_SUBST_NOTMAKE.
+AC_DEFUN([AM_SUBST_NOTMAKE], [_AM_SUBST_NOTMAKE($@)])
+
+# Check how to create a tarball.                            -*- Autoconf -*-
+
+# Copyright (C) 2004-2021 Free Software Foundation, Inc.
+#
+# This file is free software; the Free Software Foundation
+# gives unlimited permission to copy and/or distribute it,
+# with or without modifications, as long as this notice is preserved.
+
+# _AM_PROG_TAR(FORMAT)
+# --------------------
+# Check how to create a tarball in format FORMAT.
+# FORMAT should be one of 'v7', 'ustar', or 'pax'.
+#
+# Substitute a variable $(am__tar) that is a command
+# writing to stdout a FORMAT-tarball containing the directory
+# $tardir.
+#     tardir=directory && $(am__tar) > result.tar
+#
+# Substitute a variable $(am__untar) that extract such
+# a tarball read from stdin.
+#     $(am__untar) < result.tar
+#
+AC_DEFUN([_AM_PROG_TAR],
+[# Always define AMTAR for backward compatibility.  Yes, it's still used
+# in the wild :-(  We should find a proper way to deprecate it ...
+AC_SUBST([AMTAR], ['$${TAR-tar}'])
+
+# We'll loop over all known methods to create a tar archive until one works.
+_am_tools='gnutar m4_if([$1], [ustar], [plaintar]) pax cpio none'
+
+m4_if([$1], [v7],
+  [am__tar='$${TAR-tar} chof - "$$tardir"' am__untar='$${TAR-tar} xf -'],
+
+  [m4_case([$1],
+    [ustar],
+     [# The POSIX 1988 'ustar' format is defined with fixed-size fields.
+      # There is notably a 21 bits limit for the UID and the GID.  In fact,
+      # the 'pax' utility can hang on bigger UID/GID (see automake bug#8343
+      # and bug#13588).
+      am_max_uid=2097151 # 2^21 - 1
+      am_max_gid=$am_max_uid
+      # The $UID and $GID variables are not portable, so we need to resort
+      # to the POSIX-mandated id(1) utility.  Errors in the 'id' calls
+      # below are definitely unexpected, so allow the users to see them
+      # (that is, avoid stderr redirection).
+      am_uid=`id -u || echo unknown`
+      am_gid=`id -g || echo unknown`
+      AC_MSG_CHECKING([whether UID '$am_uid' is supported by ustar format])
+      if test $am_uid -le $am_max_uid; then
+         AC_MSG_RESULT([yes])
+      else
+         AC_MSG_RESULT([no])
+         _am_tools=none
+      fi
+      AC_MSG_CHECKING([whether GID '$am_gid' is supported by ustar format])
+      if test $am_gid -le $am_max_gid; then
+         AC_MSG_RESULT([yes])
+      else
+        AC_MSG_RESULT([no])
+        _am_tools=none
+      fi],
+
+  [pax],
+    [],
+
+  [m4_fatal([Unknown tar format])])
+
+  AC_MSG_CHECKING([how to create a $1 tar archive])
+
+  # Go ahead even if we have the value already cached.  We do so because we
+  # need to set the values for the 'am__tar' and 'am__untar' variables.
+  _am_tools=${am_cv_prog_tar_$1-$_am_tools}
+
+  for _am_tool in $_am_tools; do
+    case $_am_tool in
+    gnutar)
+      for _am_tar in tar gnutar gtar; do
+        AM_RUN_LOG([$_am_tar --version]) && break
+      done
+      am__tar="$_am_tar --format=m4_if([$1], [pax], [posix], [$1]) -chf - "'"$$tardir"'
+      am__tar_="$_am_tar --format=m4_if([$1], [pax], [posix], [$1]) -chf - "'"$tardir"'
+      am__untar="$_am_tar -xf -"
+      ;;
+    plaintar)
+      # Must skip GNU tar: if it does not support --format= it doesn't create
+      # ustar tarball either.
+      (tar --version) >/dev/null 2>&1 && continue
+      am__tar='tar chf - "$$tardir"'
+      am__tar_='tar chf - "$tardir"'
+      am__untar='tar xf -'
+      ;;
+    pax)
+      am__tar='pax -L -x $1 -w "$$tardir"'
+      am__tar_='pax -L -x $1 -w "$tardir"'
+      am__untar='pax -r'
+      ;;
+    cpio)
+      am__tar='find "$$tardir" -print | cpio -o -H $1 -L'
+      am__tar_='find "$tardir" -print | cpio -o -H $1 -L'
+      am__untar='cpio -i -H $1 -d'
+      ;;
+    none)
+      am__tar=false
+      am__tar_=false
+      am__untar=false
+      ;;
+    esac
+
+    # If the value was cached, stop now.  We just wanted to have am__tar
+    # and am__untar set.
+    test -n "${am_cv_prog_tar_$1}" && break
+
+    # tar/untar a dummy directory, and stop if the command works.
+    rm -rf conftest.dir
+    mkdir conftest.dir
+    echo GrepMe > conftest.dir/file
+    AM_RUN_LOG([tardir=conftest.dir && eval $am__tar_ >conftest.tar])
+    rm -rf conftest.dir
+    if test -s conftest.tar; then
+      AM_RUN_LOG([$am__untar <conftest.tar])
+      AM_RUN_LOG([cat conftest.dir/file])
+      grep GrepMe conftest.dir/file >/dev/null 2>&1 && break
+    fi
+  done
+  rm -rf conftest.dir
+
+  AC_CACHE_VAL([am_cv_prog_tar_$1], [am_cv_prog_tar_$1=$_am_tool])
+  AC_MSG_RESULT([$am_cv_prog_tar_$1])])
+
+AC_SUBST([am__tar])
+AC_SUBST([am__untar])
+]) # _AM_PROG_TAR
+
diff --git a/apertium-hin.hin.dix b/apertium-hin.hin.dix
index 20f5067..55ebce5 100644
--- a/apertium-hin.hin.dix
+++ b/apertium-hin.hin.dix
@@ -1,37 +1,38 @@
-<dictionary>
+<?xml version="1.0" encoding="UTF-8"?>
+<dictionary>
 <alphabet>ॊऀँंःऄअआइईउऊऋऌऍऎएऐऑऒओऔकखगघङचछजझञटठडढणतथदधनऩपफबभमयरऱलळऴवशषसहऺऻ़ऽािीुूृॄॅॆेैॉॊोौ्ॎॏॐ॒॑॓॔ॕॖॗक़ख़ग़ज़ड़ढ़फ़य़ॠॡॢॣॱॲॳॴॵॶॷॸॹॺॻॼॽॾ</alphabet> 
-  <sdefs>     
+  <sdefs>
     <sdef n="n"       c="Noun"/>     
-	<sdef n="np"      c="Proper noun"/>
-	<sdef n="ant"     c="Anthroponym"/>
-	<sdef n="al"     c="Altres"/>
-	<sdef n="cog"     c="Cognomen"/>	
-	<sdef n="top"     c="Topological"/>
-	<sdef n="subj"    c="subject"/>
-	<sdef n="org"     c="Organisation"/>
+  	<sdef n="np"      c="Proper noun"/>
+  	<sdef n="ant"     c="Anthroponym"/>
+  	<sdef n="al"     c="Altres"/>
+  	<sdef n="cog"     c="Cognomen"/>	
+  	<sdef n="top"     c="Topological"/>
+  	<sdef n="subj"    c="subject"/>
+  	<sdef n="org"     c="Organisation"/>
     <sdef n="num"     c="Numeral"/>     
     <sdef n="adj"     c="Adjective"/>    
     <sdef n="pers"     c="Personal"/>    
     <sdef n="dat"     c="Dative"/>
     <sdef n="erg"     c="Ergative"/>        
     <sdef n="gen"     c="Genitive"/>        
-    <sdef n="adv"     c="Adverb"/>     
+    <sdef n="adv"     c="Adverb"/>
+    <sdef n="abl"     c="Ablative"/>     
     <sdef n="det"     c="Determiner"/>     
-    <sdef n="post"    c="Postposition"/>     
+    <sdef n="post"    c="Postposition"/>      
     <sdef n="vblex"   c="Verb"/>     
-	<sdef n="frm"	  c="formal"/>
-	<sdef n="fam"	  c="familiar"/>
+  	<sdef n="frm"	  c="formal"/>
+  	<sdef n="fam"	  c="familiar"/>
+	<sdef n="pol"	  c="polite"/> 
+	<sdef n="ref"     c="Reflexive pronoun"/> 
 
-     <sdef n="acc"      c="accusative"/>
-     <sdef n="ins"      c="instrumental"/>
-     <sdef n="loc"      c="Locative"/> 
-     <sdef n="rel"     c="Relative"/>    
-     <sdef n="dem"     c="Demonstrative"/>
-     <sdef n="prx"     c="Proximate"/>
-     <sdef n="dst"     c="Distal"/>          
-     <sdef n="aa"      c="Animate"/>
-     <sdef n="nn"      c="Inanimate"/>       
-     <sdef n="itg"     c="Interrogative"/>     
+    <sdef n="acc"      c="accusative"/>
+    <sdef n="ins"      c="instrumental"/>
+    <sdef n="loc"      c="Locative"/> 
+    <sdef n="rel"     c="Relative"/>
+    <sdef n="dem"     c="Demonstrative"/>
+    <sdef n="itg"     c="Interrogative"/>
+	<sdef n="obj"     c="Objective"/>     
 
     <sdef n="vbser"   c="Verb 'to be'"/>     
     <sdef n="cnjcoo"  c="Co-ordinating conjunction"/>     
@@ -40,15 +41,16 @@
     <sdef n="prn"     c="Pronoun"/>     
     <sdef n="f"       c="Feminine"/>     
     <sdef n="m"       c="Masculine"/>     
-    <sdef n="mf"      c=""/>        
-    <sdef n="vaux"    c=""/>     
+    <sdef n="mf"      c="Masculine / Feminine"/> 
+	<sdef n="nt"      c="Neuter"/>        
+    <sdef n="vaux"    c="Auxiliar verb"/>     
     <sdef n="sg"      c="Singular"/>     
     <sdef n="pl"      c="Plural"/>     
-    <sdef n="sp"      c=""/>        
+    <sdef n="sp"      c="Singular / plural"/>        
     <sdef n="nom"     c="Nominative"/>     
     <sdef n="obl"     c="Oblique"/>        
     <sdef n="pos"     c="Possessive"/> 
-    <sdef n="qnt"     c=""/>            
+    <sdef n="qnt"     c="Quantitative"/>            
     <sdef n="ind"     c="Indefinite"/>        
     <sdef n="pr"      c="Preposition"/>      
     <sdef n="p1"      c="First person"/>     
@@ -65,11 +67,15 @@
     <sdef n="fut"    c="Future"/>
 	<sdef n="imp"    c="Imperative"/>
 	<sdef n="gna"    c="verbal adverb"/>
+  <sdef n="inj"     c="Interjection"/>
 	<sdef n="agnt"    c="agentive"/>
 	<sdef n="pri"    c="present indicative"/>	 	 
 	<sdef n="stem"  c="stem"/>
 	<sdef n="ord"  c="ordinal"/>
 	<sdef n="percent"  c="Percent"/>
+  <sdef n="mfn"/>
+    <sdef n="abbr"/>
+
 
     <sdef n="cm"         c="Comma"/>
     <sdef n="sent"       c="Sentence marker"/>
@@ -82,18 +88,15 @@
 
 
   </sdefs>    
-  <pardefs>        
+      
+ <pardefs>	      
 
-    <!-- SECTION: Prepostions -->        
-    <pardef n="गलत__pr">
-      <e><p><l></l><r><s n="pr"/></r></p></e>
-    </pardef>
-    
-    <!-- SECTION: Punctuation -->      
+	<!-- SECTION: Punctuation -->      
     <pardef n="numeros">
-      <e><re>[०१२३४५६७८९]+([.,][०१२३४५६७८९]+)?</re><p><l/><r><s n="num"/></r></p></e>
-  <e>       <re>[0-9]+([.,][0-9]+)?</re><p><l></l><r><s n="num"/></r></p></e>
-  <e>       <re>[0-9]+([.,][0-9]+)?%</re><p><l></l><r><s n="num"/><s n="percent"/></r></p></e>
+      <e>       <re>[0-9]+</re><p><l></l><r><s n="num"/></r></p></e>
+      <e>       <re>[०१२३४५६७८९]+([.,][०१२३४५६७८९]+)?</re><p><l/><r><s n="num"/></r></p></e>
+      <e>       <re>([५६७८९]|[१२३४५६७८९][०१२३४५६७८९]+)</re><p><l><b/>वाँ</l><r><s n="adj"/><s n="ord"/></r></p></e>
+      <e>       <re>[०१२३४५६७८९]+([.,][०१२३४५६७८९]+)?%</re><p><l></l><r><s n="num"/><s n="percent"/></r></p></e>
     </pardef>
 
     <pardef n="separa">
@@ -121,15 +124,147 @@
       <e><re>[\)\]]</re><p><l></l><r><s n="rpar"/></r></p></e>
     </pardef>
 
+    <pardef n="__abbr">
+      <!-- etc -->
+      <e>     <p><l>इ</l><r>इ.<s n="abbr"/></r></p></e>
+      <e>     <p><l>इ.</l><r>इ.<s n="abbr"/></r></p></e>
+      <e>     <p><l>आदी</l><r>इ.<s n="abbr"/></r></p></e>
+      
+      <!-- doctor -->
+      <e>     <p><l>डॉ</l><r>डॉ.<s n="abbr"/></r></p></e>
+      <e>     <p><l>डॉ.</l><r>डॉ.<s n="abbr"/></r></p></e>
+
+      <!-- km -->
+      <e>     <p><l>किमी</l><r>किमी.<s n="abbr"/></r></p></e>
+      <e>     <p><l>किमी.</l><r>किमी.<s n="abbr"/></r></p></e>
+
+      <!-- father -->
+      <e>     <p><l>फ्र</l><r>फ्र.<s n="abbr"/></r></p></e>
+      <e>     <p><l>फ्र.</l><r>फ्र.<s n="abbr"/></r></p></e>
+
+      <!-- rupee -->
+      <e>     <p><l>रु</l><r>रु.<s n="abbr"/></r></p></e>
+      <e>     <p><l>रु.</l><r>रु.<s n="abbr"/></r></p></e>
+
+      <!-- pH (wot) -->
+      <e>     <p><l>पीएच</l><r>पीएच.<s n="abbr"/></r></p></e>
+      <e>     <p><l>पीएच.</l><r>पीएच.<s n="abbr"/></r></p></e>
+
+      <!-- EESVI -->
+      <e>     <p><l>ई</l><r>ई.<s n="abbr"/></r></p></e>
+      <e>     <p><l>ई.</l><r>ई.<s n="abbr"/></r></p></e>
+
+      <!-- SHREEMAN -->
+      <e>     <p><l>श्री</l><r>श्री.<s n="abbr"/></r></p></e>
+      <e>     <p><l>श्री.</l><r>श्री.<s n="abbr"/></r></p></e>
+
+      <!-- EESAA PURVI -->
+      <e>     <p><l>ई<b/>पू</l><r>ई. पू.<s n="abbr"/></r></p></e>
+      <e>     <p><l>ई.<b/>पू</l><r>ई. पू.<s n="abbr"/></r></p></e>
+
+    </pardef>
+
+    <pardef n="__inj">
+      <e>     <p><l>ए</l><r>ए<s n="inj"/></r></p></e>
+      <e>     <p><l>ई</l><r>ई<s n="inj"/></r></p></e>
+      <e>     <p><l>अहा</l><r>अहा<s n="inj"/></r></p></e>
+      <e>     <p><l>शाबाश</l><r>शाबाश<s n="inj"/></r></p></e>
+      <e>     <p><l>धन्य</l><r>धन्य<s n="inj"/></r></p></e>
+      <e>     <p><l>हाँ</l><r>हाँ<s n="inj"/></r></p></e>
+      <e>     <p><l>जी हाँ</l><r>जी हाँ<s n="inj"/></r></p></e>
+      <e>     <p><l>वाह</l><r>वाह<s n="inj"/></r></p></e>
+      <e>     <p><l>ओ हो</l><r>ओ हो<s n="inj"/></r></p></e>
+      <e>     <p><l>अरे</l><r>अरे<s n="inj"/></r></p></e>
+      <e>     <p><l>हाय</l><r>हाय<s n="inj"/></r></p></e>
+      <e>     <p><l>हे<b/>राम</l><r>हे राम<s n="inj"/></r></p></e>
+      <e>     <p><l>छ:ि</l><r>छ:ि<s n="inj"/></r></p></e>
+      <e>     <p><l>हट</l><r>हट<s n="inj"/></r></p></e>
+      <e>     <p><l>धत</l><r>धत<s n="inj"/></r></p></e>
+      <e>     <p><l>बाप<b/>रे</l><r>बाप रे<s n="inj"/></r></p></e>
+      <e>     <p><l>रे</l><r>रे<s n="inj"/></r></p></e>
+      <e>     <p><l>ओ</l><r>ओ<s n="inj"/></r></p></e>     
+    </pardef>
+
+
+    <!-- SECTION: Postpositions -->  
+
+    <!-- genitives -->
+    <pardef n="__gen_endings">
+        <e><p><l>का</l><r>का<s n="post"/><s n="gen"/><s n="m"/><s n="sg"/></r></p></e>
+        <e><p><l>के</l><r>का<s n="post"/><s n="gen"/><s n="m"/><s n="pl"/></r></p></e>
+        <e><p><l>की</l><r>का<s n="post"/><s n="gen"/><s n="f"/><s n="sg"/></r></p></e>
+        <e><p><l>की</l><r>का<s n="post"/><s n="gen"/><s n="f"/><s n="pl"/></r></p></e>
+    </pardef>
+
+    <!-- basic postpositions -->
+<!--
+    <pardef n="case">
+      <e><p><l>को</l><r>को<s n="dat"/></r></p></e>
+      <e><p><l>ने</l><r>ने<s n="erg"/></r></p></e>
+      <e><p><l>से</l><r>से<s n="abl"/></r></p></e>
+      <e><p><l>में</l><r>में<s n="post"/></r></p></e>
+	  <e><p><l>मे</l><r>में<s n="post"/></r></p></e>
+      <e><p><l>पर</l><r>पर<s n="post"/></r></p></e>
+      <e><p><l>तक</l><r>तक<s n="post"/></r></p></e>
+      <e><p><l></l><r></r></p><par n="__gen_endings"/></e>
+    </pardef>    
+-->
+
+      <!-- genitives (CHECK) -->
+<!--
+    <pardef n="__prn_gen">
+      <e>     <p><l>ा</l><r>ा<s n="gen"/><s n="m"/><s n="sg"/></r></p></e>
+      <e>     <p><l>ी</l><r>ी<s n="gen"/><s n="f"/><s n="sg"/></r></p></e>
+      <e>     <p><l>े</l><r>े<s n="gen"/><s n="m"/><s n="pl"/></r></p></e>
+      <e>     <p><l>याँ</l><r>याँ<s n="gen"/><s n="f"/><s n="pl"/></r></p></e>
+      <e>     <p><l>ये</l><r>ये<s n="gen"/><s n="m"/><s n="pl"/></r></p></e>
+      <e>     <p><l>या</l><r>या<s n="gen"/><s n="m"/><s n="sg"/></r></p></e>
+      <e>     <p><l>यी</l><r>यी<s n="gen"/><s n="f"/><s n="pl"/></r></p></e>
+    </pardef>
+-->
+
+<!--
+    <pardef n="__big_suff">
+      <e>     <p><l>ो</l><r><s n="p1"/><s n="m"/><s n="sg"/></r></p></e>
+      <e>     <p><l>ी</l><r><s n="p1"/><s n="f"/><s n="sg"/></r></p></e>
+      <e>     <p><l>ो</l><r><s n="p1"/><s n="mf"/><s n="pl"/></r></p></e>
+
+      <e>     <p><l>ा</l><r><s n="p2"/><s n="m"/><s n="sg"/></r></p></e>
+      <e>     <p><l>ी</l><r><s n="p2"/><s n="f"/><s n="sg"/></r></p></e>
+      <e>     <p><l>े</l><r><s n="p2"/><s n="m"/><s n="pl"/></r></p></e>
+      <e>     <p><l>ा</l><r><s n="p2"/><s n="mf"/><s n="pl"/></r></p></e>
+
+      <e>     <p><l>ा</l><r><s n="p3"/><s n="m"/><s n="sg"/></r></p></e>
+      <e>     <p><l>ी</l><r><s n="p3"/><s n="f"/><s n="sg"/></r></p></e>
+      <e>     <p><l>े</l><r><s n="p3"/><s n="m"/><s n="pl"/></r></p></e>
+    </pardef>
+-->
+
+    <!-- verbal stuff -->
+    
+<!--
+    <pardef n="__inf_endings">
+      <e><p><l>ना</l><r><s n="inf"/></r></p></e>
+    </pardef>
+-->
+
+    <pardef n="ने__post">
+      <e><p><l></l><r><s n="post"/></r></p></e>
+    </pardef>
+
+	<pardef n="धोल__abl">
+      <e><p><l></l><r><s n="m"/><s n="sg"/><s n="abl"/></r></p></e>
+    </pardef>
+      
 
     <!-- SECTION: Paradigm Nouns -->     
     
     <pardef n="जेम्स__np">
-      <e><p><l></l><r><s n="np"/><s n="ant"/><s n="m"/><s n="sg"/></r></p></e>
+      <e><p><l></l><r><s n="np"/><s n="ant"/><s n="m"/><s n="sg"/><s n="nom"/></r></p></e>
     </pardef>  
             
     <pardef n="मैरी__np">
-      <e><p><l></l><r><s n="np"/><s n="ant"/><s n="f"/><s n="sg"/></r></p></e>
+      <e><p><l></l><r><s n="np"/><s n="ant"/><s n="f"/><s n="sg"/><s n="nom"/></r></p></e>
     </pardef>    
     
     <pardef n="मोटलानी__np">
@@ -154,6 +289,13 @@
        <e><p><l></l><r><s n="n"/><s n="m"/><s n="pl"/><s n="nom"/></r></p></e>
        <e><p><l>ओं</l><r><s n="n"/><s n="m"/><s n="pl"/><s n="obl"/></r></p></e>
     </pardef>
+
+	<pardef n="अकेल/ापन__n_m">
+       <e><p><l>ापन</l><r>ापन<s n="n"/><s n="m"/><s n="sg"/><s n="nom"/></r></p></e>
+       <e><p><l>ेपन</l><r>ापन<s n="n"/><s n="m"/><s n="sg"/><s n="obl"/></r></p></e>
+       <e><p><l>ेपन</l><r>ापन<s n="n"/><s n="m"/><s n="pl"/><s n="nom"/></r></p></e>
+       <e><p><l>ेपन</l><r>ापन<s n="n"/><s n="m"/><s n="pl"/><s n="obl"/></r></p></e>
+    </pardef>
      
     <pardef n="सद/्__n_m">
       <e><p><l>्</l><r>्<s n="n"/><s n="m"/><s n="sg"/><s n="nom"/></r></p></e>
@@ -222,6 +364,18 @@
        <e><p><l></l><r><s n="n"/><s n="m"/><s n="pl"/><s n="nom"/></r></p></e>
        <e><p><l></l><r><s n="n"/><s n="m"/><s n="pl"/><s n="obl"/></r></p></e>
     </pardef>
+
+	<pardef n="कासाळें__n_mf">
+      <e><p><l></l><r><s n="n"/><s n="mf"/><s n="sg"/><s n="nom"/></r></p></e>
+       <e><p><l></l><r><s n="n"/><s n="mf"/><s n="sg"/><s n="obl"/></r></p></e>
+    </pardef>
+
+	<pardef n="ख्रिसमस__n_mf">
+      <e><p><l></l><r><s n="n"/><s n="m"/><s n="sg"/><s n="nom"/></r></p></e>
+       <e><p><l></l><r><s n="n"/><s n="m"/><s n="sg"/><s n="obl"/></r></p></e>
+       <e><p><l></l><r><s n="n"/><s n="m"/><s n="pl"/><s n="nom"/></r></p></e>
+       <e><p><l></l><r><s n="n"/><s n="m"/><s n="pl"/><s n="obl"/></r></p></e>
+    </pardef>
           
     <pardef n="ऐ__n_f">
       <e><p><l></l><r><s n="n"/><s n="f"/><s n="sg"/><s n="nom"/></r></p></e>
@@ -287,9 +441,10 @@
     </pardef>
      
     <pardef n="माँ__n_f">
+      <e><p><l></l><r><s n="n"/><s n="f"/><s n="sg"/><s n="nom"/></r></p></e>
       <e><p><l></l><r><s n="n"/><s n="f"/><s n="sg"/><s n="obl"/></r></p></e>
-       <e><p><l>यें</l><r><s n="n"/><s n="f"/><s n="pl"/><s n="nom"/></r></p></e>
-       <e><p><l>ओं</l><r><s n="n"/><s n="f"/><s n="pl"/><s n="obl"/></r></p></e>
+      <e><p><l>यें</l><r><s n="n"/><s n="f"/><s n="pl"/><s n="nom"/></r></p></e>
+      <e><p><l>ओं</l><r><s n="n"/><s n="f"/><s n="pl"/><s n="obl"/></r></p></e>
     </pardef>
         
     <pardef n="पौ/आ__n_m">
@@ -349,9 +504,16 @@
       <e><p><l>ूँ</l><r>ूँ<s n="n"/><s n="m"/><s n="sg"/><s n="nom"/></r></p></e>
        <e><p><l>ूँ</l><r>ूँ<s n="n"/><s n="m"/><s n="sg"/><s n="obl"/></r></p></e>
        <e><p><l>ूँ</l><r>ूँ<s n="n"/><s n="m"/><s n="pl"/><s n="nom"/></r></p></e>
-       <e><p><l>ुँओं</l><r>ूँ<s n="n"/><s n="m"/><s n="pl"/><s n="obl"/></r></p></e>
+       <e><p><l>ुंओं</l><r>ूँ<s n="n"/><s n="m"/><s n="pl"/><s n="obl"/></r></p></e>
     </pardef>
      
+	<pardef n="आ/ँसू__n_m">
+      <e><p><l>ँसू</l><r>ँसू<s n="n"/><s n="m"/><s n="sg"/><s n="nom"/></r></p></e>
+       <e><p><l>ँसू</l><r>ँसू<s n="n"/><s n="m"/><s n="sg"/><s n="obl"/></r></p></e>
+       <e><p><l>ँसू</l><r>ँसू<s n="n"/><s n="m"/><s n="pl"/><s n="nom"/></r></p></e>
+       <e><p><l>ुंओं</l><r>ँसू<s n="n"/><s n="m"/><s n="pl"/><s n="obl"/></r></p></e>
+    </pardef>
+
     <pardef n="नकल__n_f">
        <e><p><l></l><r><s n="n"/><s n="f"/><s n="sg"/><s n="nom"/></r></p></e>
        <e><p><l></l><r><s n="n"/><s n="f"/><s n="sg"/><s n="obl"/></r></p></e>
@@ -395,6 +557,7 @@
        <e><p><l>आँ</l><r>आ<s n="n"/><s n="f"/><s n="pl"/><s n="nom"/></r></p></e>
        <e><p><l>ओं</l><r>आ<s n="n"/><s n="f"/><s n="pl"/><s n="obl"/></r></p></e>
     </pardef>
+	
      
     <pardef n="क/ई__n_m">
       <e><p><l>ई</l><r>ई<s n="n"/><s n="m"/><s n="sg"/><s n="nom"/></r></p></e>
@@ -429,6 +592,13 @@
        <e r="LR"><p><l>ई</l><r>ई<s n="n"/><s n="f"/><s n="pl"/><s n="obl"/></r></p></e>
        <e><p><l>इयों</l><r>ई<s n="n"/><s n="f"/><s n="pl"/><s n="obl"/></r></p></e>
     </pardef>
+	
+	<pardef n="चौगुडो__n_num">
+      <e><p><l></l><r><s n="n"/><s n="f"/><s n="sg"/><s n="nom"/></r></p></e>
+       <e><p><l></l><r><s n="n"/><s n="f"/><s n="sg"/><s n="obl"/></r></p></e>
+       <e><p><l></l><r><s n="n"/><s n="f"/><s n="pl"/><s n="nom"/></r></p></e>
+       <e><p><l></l><r><s n="n"/><s n="f"/><s n="pl"/><s n="obl"/></r></p></e>
+    </pardef>
 
     <!-- SECTION: Paradigm Adjectives -->        
 
@@ -441,6 +611,7 @@
       <e><p><l></l><r><s n="adj"/><s n="f"/><s n="pl"/><s n="nom"/></r></p></e>
       <e><p><l></l><r><s n="adj"/><s n="m"/><s n="pl"/><s n="obl"/></r></p></e>
       <e><p><l></l><r><s n="adj"/><s n="f"/><s n="pl"/><s n="obl"/></r></p></e>
+      <e r="RL"><p><l></l><r><s n="adj"/><s n="mfn"/><s n="sp"/></r></p></e>
 
     </pardef>  
    
@@ -468,13 +639,15 @@
      
     <pardef n="स/ा__adj">
       <e><p><l>ा</l><r>ा<s n="adj"/><s n="m"/><s n="sg"/><s n="nom"/></r></p></e>
-       <e><p><l>े</l><r>ा<s n="adj"/><s n="m"/><s n="sg"/><s n="obl"/></r></p></e>
-       <e><p><l>े</l><r>ा<s n="adj"/><s n="m"/><s n="pl"/><s n="nom"/></r></p></e>
-       <e><p><l>े</l><r>ा<s n="adj"/><s n="m"/><s n="pl"/><s n="obl"/></r></p></e>
-       <e><p><l>ी</l><r>ा<s n="adj"/><s n="f"/><s n="sg"/><s n="nom"/></r></p></e>
-       <e><p><l>ी</l><r>ा<s n="adj"/><s n="f"/><s n="sg"/><s n="obl"/></r></p></e>
-       <e><p><l>ी</l><r>ा<s n="adj"/><s n="f"/><s n="pl"/><s n="nom"/></r></p></e>
-       <e><p><l>ी</l><r>ा<s n="adj"/><s n="f"/><s n="pl"/><s n="obl"/></r></p></e>
+      <e><p><l>े</l><r>ा<s n="adj"/><s n="m"/><s n="sg"/><s n="obl"/></r></p></e>
+      <e><p><l>े</l><r>ा<s n="adj"/><s n="m"/><s n="pl"/><s n="nom"/></r></p></e>
+      <e><p><l>े</l><r>ा<s n="adj"/><s n="m"/><s n="pl"/><s n="obl"/></r></p></e>
+      <e><p><l>ी</l><r>ा<s n="adj"/><s n="f"/><s n="sg"/><s n="nom"/></r></p></e>
+      <e><p><l>ी</l><r>ा<s n="adj"/><s n="f"/><s n="sg"/><s n="obl"/></r></p></e>
+      <e><p><l>ी</l><r>ा<s n="adj"/><s n="f"/><s n="pl"/><s n="nom"/></r></p></e>
+      <e><p><l>ी</l><r>ा<s n="adj"/><s n="f"/><s n="pl"/><s n="obl"/></r></p></e>
+      <e r="RL"><p><l>ा</l><r>ा<s n="adj"/><s n="mfn"/><s n="sp"/></r></p></e>
+      <e r="RL"><p><l>ा</l><r>ा<s n="adj"/><s n="mfn"/><s n="sp"/><s n="obl"/></r></p></e>
     </pardef>
      
    
@@ -510,6 +683,7 @@
       <e>       <p><l>रनेवाली</l><r>र<s n="vblex"/><s n="tv"/><s n="agnt"/><s n="f"/><s n="pl"/></r></p></e>
       <e>       <p><l>रना</l><r>र<s n="vblex"/><s n="tv"/><s n="inf"/><s n="nom"/><s n="m"/></r></p></e>
       <e>       <p><l>रनी</l><r>र<s n="vblex"/><s n="tv"/><s n="inf"/><s n="nom"/><s n="f"/></r></p></e>
+      <e>       <p><l>रने</l><r>र<s n="vblex"/><s n="tv"/><s n="inf"/><s n="nom"/><s n="mf"/></r></p></e>
 
       <e>       <p><l>रने</l><r>र<s n="vblex"/><s n="tv"/><s n="inf"/><s n="obl"/></r></p></e>
       <e>       <p><l>रूँ</l><r>र<s n="vblex"/><s n="tv"/><s n="prs"/><s n="p1"/><s n="sg"/></r></p></e>
@@ -534,40 +708,48 @@
 	</pardef>
 
 
-	 <pardef n="बोल__vblex_tv">
+   <pardef n="बोल__vblex_tv">
+      <e>       <p><l></l><r><s n="vblex"/><s n="tv"/><s n="stem"/></r></p></e>
       <e>       <p><l>ूँगा</l><r><s n="vblex"/><s n="tv"/><s n="fut"/><s n="p1"/><s n="m"/><s n="sg"/></r></p></e>
       <e>       <p><l>ेंगे</l><r><s n="vblex"/><s n="tv"/><s n="fut"/><s n="p1"/><s n="m"/><s n="pl"/></r></p></e>
       <e>       <p><l>ूँगी</l><r><s n="vblex"/><s n="tv"/><s n="fut"/><s n="p1"/><s n="f"/><s n="sg"/></r></p></e>
       <e>       <p><l>ेंगी</l><r><s n="vblex"/><s n="tv"/><s n="fut"/><s n="p1"/><s n="f"/><s n="pl"/></r></p></e>
+
       <e>       <p><l>ेगा</l><r><s n="vblex"/><s n="tv"/><s n="fut"/><s n="p2"/><s n="m"/><s n="sg"/></r></p></e>
       <e>       <p><l>ोगे</l><r><s n="vblex"/><s n="tv"/><s n="fut"/><s n="p2"/><s n="m"/><s n="pl"/></r></p></e>
       <e>       <p><l>ेगी</l><r><s n="vblex"/><s n="tv"/><s n="fut"/><s n="p2"/><s n="f"/><s n="sg"/></r></p></e>
       <e>       <p><l>ोगी</l><r><s n="vblex"/><s n="tv"/><s n="fut"/><s n="p2"/><s n="f"/><s n="pl"/></r></p></e>
+
       <e>       <p><l>ेगा</l><r><s n="vblex"/><s n="tv"/><s n="fut"/><s n="p3"/><s n="m"/><s n="sg"/></r></p></e>
       <e>       <p><l>ेंगे</l><r><s n="vblex"/><s n="tv"/><s n="fut"/><s n="p3"/><s n="m"/><s n="pl"/></r></p></e>
       <e>       <p><l>ेगी</l><r><s n="vblex"/><s n="tv"/><s n="fut"/><s n="p3"/><s n="f"/><s n="sg"/></r></p></e>
       <e>       <p><l>ेंगी</l><r><s n="vblex"/><s n="tv"/><s n="fut"/><s n="p3"/><s n="f"/><s n="pl"/></r></p></e>
+
       <e>       <p><l>नेवाला</l><r><s n="vblex"/><s n="tv"/><s n="agnt"/><s n="m"/><s n="sg"/></r></p></e>
       <e>       <p><l>नेवाले</l><r><s n="vblex"/><s n="tv"/><s n="agnt"/><s n="m"/><s n="pl"/></r></p></e>
       <e>       <p><l>नेवाली</l><r><s n="vblex"/><s n="tv"/><s n="agnt"/><s n="f"/><s n="sg"/></r></p></e>
       <e>       <p><l>नेवाली</l><r><s n="vblex"/><s n="tv"/><s n="agnt"/><s n="f"/><s n="pl"/></r></p></e>
+
+      <e>       <p><l>ना</l><r><s n="vblex"/><s n="tv"/><s n="inf"/><s n="nom"/></r></p></e>
       <e>       <p><l>ना</l><r><s n="vblex"/><s n="tv"/><s n="inf"/><s n="nom"/><s n="m"/></r></p></e>
       <e>       <p><l>नी</l><r><s n="vblex"/><s n="tv"/><s n="inf"/><s n="nom"/><s n="f"/></r></p></e>
       <e>       <p><l>ने</l><r><s n="vblex"/><s n="tv"/><s n="inf"/><s n="obl"/></r></p></e>
-      <e>       <p><l>ूँ</l><r><s n="vblex"/><s n="tv"/><s n="prs"/><s n="p1"/><s n="sg"/></r></p></e>
-      <e>       <p><l>ें</l><r><s n="vblex"/><s n="tv"/><s n="prs"/><s n="p1"/><s n="pl"/></r></p></e>
-      <e>       <p><l>े</l><r><s n="vblex"/><s n="tv"/><s n="prs"/><s n="p2"/><s n="sg"/></r></p></e>
-      <e>       <p><l>ो</l><r><s n="vblex"/><s n="tv"/><s n="prs"/><s n="p2"/><s n="pl"/></r></p></e>
-      <e>       <p><l>े</l><r><s n="vblex"/><s n="tv"/><s n="prs"/><s n="p3"/><s n="sg"/></r></p></e>
-      <e>       <p><l>ें</l><r><s n="vblex"/><s n="tv"/><s n="prs"/><s n="p3"/><s n="pl"/></r></p></e>
+
+      <e>       <p><l>ूँ</l><r><s n="vblex"/><s n="tv"/><s n="pres"/><s n="p1"/><s n="sg"/></r></p></e>
+      <e>       <p><l>ें</l><r><s n="vblex"/><s n="tv"/><s n="pres"/><s n="p1"/><s n="pl"/></r></p></e>
+      <e>       <p><l>े</l><r><s n="vblex"/><s n="tv"/><s n="pres"/><s n="p2"/><s n="sg"/></r></p></e>
+      <e>       <p><l>ो</l><r><s n="vblex"/><s n="tv"/><s n="pres"/><s n="p2"/><s n="pl"/></r></p></e>
+      <e>       <p><l>े</l><r><s n="vblex"/><s n="tv"/><s n="pres"/><s n="p3"/><s n="sg"/></r></p></e>
+      <e>       <p><l>ें</l><r><s n="vblex"/><s n="tv"/><s n="pres"/><s n="p3"/><s n="pl"/></r></p></e>
+
       <e r="LR">       <p><l>िये</l><r><s n="vblex"/><s n="tv"/><s n="imp"/><s n="p2"/><s n="frm"/><s n="pl"/></r></p></e>
       <e>       <p><l>िए</l><r><s n="vblex"/><s n="tv"/><s n="imp"/><s n="p2"/><s n="frm"/><s n="pl"/></r></p></e>
-      <e>       <p><l></l><r><s n="vblex"/><s n="tv"/><s n="stem"/></r></p></e>
       <e>       <p><l>ो</l><r><s n="vblex"/><s n="tv"/><s n="imp"/><s n="p2"/><s n="pl"/></r></p></e>
       <e>       <p><l>ता</l><r><s n="vblex"/><s n="tv"/><s n="impf"/><s n="m"/><s n="sg"/></r></p></e>
       <e>       <p><l>ते</l><r><s n="vblex"/><s n="tv"/><s n="impf"/><s n="m"/><s n="pl"/></r></p></e>
       <e>       <p><l>ती</l><r><s n="vblex"/><s n="tv"/><s n="impf"/><s n="f"/><s n="sg"/></r></p></e>
       <e>       <p><l>ती</l><r><s n="vblex"/><s n="tv"/><s n="impf"/><s n="f"/><s n="pl"/></r></p></e>
+
       <e>       <p><l>कर</l><r><s n="vblex"/><s n="tv"/><s n="gna"/></r></p></e>
       <e r="LR">       <p><l>के</l><r><s n="vblex"/><s n="tv"/><s n="gna"/></r></p></e>
       <e>       <p><l>ा</l><r><s n="vblex"/><s n="tv"/><s n="perf"/><s n="m"/><s n="sg"/></r></p></e>
@@ -1088,33 +1270,45 @@
       <e>       <p><l>हुईं</l><r>होना<s n="vblex"/><s n="iv"/><s n="perf"/><s n="f"/><s n="pl"/></r></p></e>
 	</pardef>
 
+	<pardef n="ले__vbser">
+      <e>       <p><l>लीजिए</l><r>ले<s n="vbser"/><s n="pl"/><s n="nt"/></r></p></e>
+	</pardef>
+
 	<pardef n="/हो__vbser">
       <e>       <p><l>होगा</l><r>हो<s n="vbser"/><s n="fut"/><s n="p1"/><s n="m"/><s n="sg"/></r></p></e>
       <e>       <p><l>होंगे</l><r>हो<s n="vbser"/><s n="fut"/><s n="p1"/><s n="m"/><s n="pl"/></r></p></e>
       <e>       <p><l>होगी</l><r>हो<s n="vbser"/><s n="fut"/><s n="p1"/><s n="f"/><s n="sg"/></r></p></e>
       <e>       <p><l>होंगी</l><r>हो<s n="vbser"/><s n="fut"/><s n="p1"/><s n="f"/><s n="pl"/></r></p></e>
-      <e>       <p><l>होगा</l><r>हो<s n="vbser"/><s n="fut"/><s n="p2"/><s n="m"/><s n="sg"/></r></p></e>
-      <e>       <p><l>होंगे</l><r>हो<s n="vbser"/><s n="fut"/><s n="p2"/><s n="m"/><s n="pl"/></r></p></e>
+      
+	  <e>       <p><l>होगा</l><r>हो<s n="vbser"/><s n="fut"/><s n="p2"/><s n="m"/><s n="sg"/></r></p></e>  <!--होगे-->
+      <e>       <p><l>होंगे</l><r>हो<s n="vbser"/><s n="fut"/><s n="p2"/><s n="m"/><s n="pl"/></r></p></e>	<!--होगे-->
       <e>       <p><l>होगी</l><r>हो<s n="vbser"/><s n="fut"/><s n="p2"/><s n="f"/><s n="sg"/></r></p></e>
       <e>       <p><l>होंगी</l><r>हो<s n="vbser"/><s n="fut"/><s n="p2"/><s n="f"/><s n="pl"/></r></p></e>
-      <e>       <p><l>होगा</l><r>हो<s n="vbser"/><s n="fut"/><s n="p3"/><s n="m"/><s n="sg"/></r></p></e>
+      
+	  <e>       <p><l>होगा</l><r>हो<s n="vbser"/><s n="fut"/><s n="p3"/><s n="m"/><s n="sg"/></r></p></e>
       <e>       <p><l>होंगे</l><r>हो<s n="vbser"/><s n="fut"/><s n="p3"/><s n="m"/><s n="pl"/></r></p></e>
-      <e>       <p><l>होगी</l><r>हो<s n="vbser"/><s n="fut"/><s n="p3"/><s n="f"/><s n="sg"/></r></p></e>
-      <e>       <p><l>होंगी</l><r>हो<s n="vbser"/><s n="fut"/><s n="p3"/><s n="f"/><s n="pl"/></r></p></e>
-      <e>       <p><l>होनेवाला</l><r>हो<s n="vbser"/><s n="agnt"/><s n="m"/><s n="sg"/></r></p></e>
+      <e>       <p><l>होगी</l><r>हो<s n="vbser"/><s n="fut"/><s n="p3"/><s n="f"/><s n="sg"/></r></p></e>  
+	  <e>       <p><l>होंगी</l><r>हो<s n="vbser"/><s n="fut"/><s n="p3"/><s n="f"/><s n="pl"/></r></p></e>
+      
+	  <e>       <p><l>होनेवाला</l><r>हो<s n="vbser"/><s n="agnt"/><s n="m"/><s n="sg"/></r></p></e>
       <e>       <p><l>होनेवाले</l><r>हो<s n="vbser"/><s n="agnt"/><s n="m"/><s n="pl"/></r></p></e>
       <e>       <p><l>होनेवाली</l><r>हो<s n="vbser"/><s n="agnt"/><s n="f"/><s n="sg"/></r></p></e>
       <e>       <p><l>होनेवाली</l><r>हो<s n="vbser"/><s n="agnt"/><s n="f"/><s n="pl"/></r></p></e>
-      <e>       <p><l>होना</l><r>हो<s n="vbser"/><s n="inf"/><s n="nom"/><s n="m"/></r></p></e>
+      
+	  <e>       <p><l>होना</l><r>हो<s n="vbser"/><s n="inf"/><s n="nom"/><s n="m"/></r></p></e>
       <e>       <p><l>होनी</l><r>हो<s n="vbser"/><s n="inf"/><s n="nom"/><s n="f"/></r></p></e>
       <e>       <p><l>होने</l><r>हो<s n="vbser"/><s n="inf"/><s n="obl"/></r></p></e>
-      <e>       <p><l>हूँ</l><r>हो<s n="vbser"/><s n="pri"/><s n="p1"/><s n="sg"/></r></p></e>
-      <e>       <p><l>हूं</l><r>हो<s n="vbser"/><s n="pri"/><s n="p1"/><s n="sg"/></r></p></e>
-      <e>       <p><l>हैं</l><r>हो<s n="vbser"/><s n="pri"/><s n="p1"/><s n="pl"/></r></p></e>
-      <e>       <p><l>हो</l><r>हो<s n="vbser"/><s n="pri"/><s n="p2"/><s n="sg"/></r></p></e>
-      <e>       <p><l>हो</l><r>हो<s n="vbser"/><s n="pri"/><s n="p2"/><s n="pl"/></r></p></e>
-      <e>       <p><l>है</l><r>हो<s n="vbser"/><s n="pri"/><s n="p3"/><s n="sg"/></r></p></e>
-      <e>       <p><l>हैं</l><r>हो<s n="vbser"/><s n="pri"/><s n="p3"/><s n="pl"/></r></p></e>
+
+      <e>       <p><l>हूँ</l><r>हो<s n="vbser"/><s n="pres"/><s n="p1"/><s n="mf"/><s n="sg"/></r></p></e>
+      <e>       <p><l>हैं</l><r>हो<s n="vbser"/><s n="pres"/><s n="p1"/><s n="mf"/><s n="pl"/></r></p></e>
+      <e>       <p><l>हैं</l><r>हो<s n="vbser"/><s n="pres"/><s n="p1"/><s n="mf"/><s n="sg"/></r></p></e>
+
+      <e>       <p><l>है</l><r>हो<s n="vbser"/><s n="pres"/><s n="p2"/><s n="mf"/><s n="sg"/></r></p></e>
+      <e>       <p><l>हो</l><r>हो<s n="vbser"/><s n="pres"/><s n="p2"/><s n="mf"/><s n="pl"/></r></p></e>
+
+      <e>       <p><l>है</l><r>हो<s n="vbser"/><s n="pres"/><s n="p3"/><s n="mf"/><s n="sg"/></r></p></e>
+      <e>       <p><l>हैं</l><r>हो<s n="vbser"/><s n="pres"/><s n="p3"/><s n="mf"/><s n="pl"/></r></p></e>
+
       <e r="LR">       <p><l>हुये</l><r>हो<s n="vbser"/><s n="imp"/><s n="p2"/><s n="frm"/><s n="pl"/></r></p></e>
       <e>       <p><l>हुए</l><r>हो<s n="vbser"/><s n="imp"/><s n="p2"/><s n="frm"/><s n="pl"/></r></p></e>
       <e r="LR">       <p><l>हुये</l><r>हो<s n="vbser"/><s n="imp"/><s n="p2"/><s n="frm"/><s n="pl"/></r></p></e>
@@ -1126,10 +1320,10 @@
       <e>       <p><l>होती</l><r>हो<s n="vbser"/><s n="impf"/><s n="f"/><s n="pl"/></r></p></e>
       <e>       <p><l>होकर</l><r>हो<s n="vbser"/><s n="gna"/></r></p></e>
       <e r="LR">       <p><l>होके</l><r>हो<s n="vbser"/><s n="gna"/></r></p></e>
-      <e>       <p><l>था</l><r>हो<s n="vbser"/><s n="impf"/><s n="p3"/><s n="m"/><s n="sg"/></r></p></e>
-      <e>       <p><l>थे</l><r>हो<s n="vbser"/><s n="impf"/><s n="p3"/><s n="m"/><s n="pl"/></r></p></e>
-      <e>       <p><l>थी</l><r>हो<s n="vbser"/><s n="impf"/><s n="p3"/><s n="f"/><s n="sg"/></r></p></e>
-      <e>       <p><l>थीं</l><r>हो<s n="vbser"/><s n="impf"/><s n="p3"/><s n="f"/><s n="pl"/></r></p></e>
+      <e>       <p><l>था</l><r>हो<s n="vbser"/><s n="past"/><s n="m"/><s n="sg"/></r></p></e>		
+      <e>       <p><l>थे</l><r>हो<s n="vbser"/><s n="past"/><s n="m"/><s n="pl"/></r></p></e>		
+      <e>       <p><l>थी</l><r>हो<s n="vbser"/><s n="past"/><s n="f"/><s n="sg"/></r></p></e>		
+      <e>       <p><l>थीं</l><r>हो<s n="vbser"/><s n="past"/><s n="f"/><s n="pl"/></r></p></e>		
 	</pardef>
 
     <pardef n="जा__vblex_iv">
@@ -1192,230 +1386,420 @@
 
 	</pardef>
 
+    <!-- SECTION: Determiners --> 
 
-    <!-- SECTION: Determiners -->       
-    <pardef n="ऐस__det">
+    <pardef n="ऐस__det">   
       <e>       <p><l>ा</l><r><s n="det"/><s n="ind"/><s n="sg"/><s n="m"/></r></p></e>
       <e>       <p><l>ी</l><r><s n="det"/><s n="ind"/><s n="sg"/><s n="f"/></r></p></e>
       <e>       <p><l>ी</l><r><s n="det"/><s n="ind"/><s n="pl"/><s n="f"/></r></p></e>
       <e>       <p><l>े</l><r><s n="det"/><s n="ind"/><s n="pl"/><s n="m"/></r></p></e>
     </pardef>
+
+	
     <pardef n="दोनों__det">
       <e><p><l></l><r><s n="det"/><s n="ind"/><s n="pl"/></r></p></e>
     </pardef>
     <pardef n="दूसरी__det">
       <e>       <p><l></l><r><s n="det"/><s n="ind"/><s n="sp"/></r></p></e>
     </pardef>
+	<pardef n="कोई__det">
+      <e>       <p><l></l><r><s n="det"/><s n="ind"/><s n="sp"/></r></p></e>
+    </pardef>
 
     <pardef n="कई__det">
       <e><p><l></l><r><s n="det"/><s n="qnt"/><s n="pl"/></r></p></e>
     </pardef>
 
     <pardef n="एक__det">
-      <e><p><l></l><r><s n="det"/><s n="ind"/><s n="sg"/></r></p></e>
-    </pardef>
-         
-    <pardef n="मेरी__det">	
-      <e><p><l></l><r><s n="det"/><s n="pos"/><s n="f"/><s n="gen"/></r></p></e>
+		<e r="RL"><p><l></l><r><s n="det"/><s n="ind"/><s n="obl"/><s n="mfn"/><s n="sg"/></r></p></e>
     </pardef>
 
- 
-            
-
-    <!-- SECTION: Postpositions -->      
+    <!-- deprecated, since a case tag shoud not be used as a subcategory, word is analysed as prn/ adj -->
+    <pardef n="सब__det">
+      <e><p><l></l><r><s n="det"/><s n="obl"/><s n="itg"/><s n="sp"/></r></p></e>
+    </pardef>
 
-    <pardef n="ने__post">
-      <e><p><l></l><r><s n="post"/></r></p></e>
+    <!-- deprecated, since a case tag shoud not be used as a subcategory, new paradigm - हमार/ा__det -->
+    <pardef n="हमारा__det">
+      <e><p><l></l><r><s n="det"/><s n="gen"/><s n="pl" /><s n="mf" /></r></p></e>
     </pardef>
-      
-    <pardef n="/का__post">
-       <e><p><l>का</l><r>का<s n="post"/><s n="m"/><s n="sg"/><s n="gen"/></r></p></e>
-        <e><p><l>के</l><r>का<s n="post"/><s n="m"/><s n="pl"/><s n="gen"/></r></p></e>
-        <e><p><l>की</l><r>का<s n="post"/><s n="f"/><s n="sg"/><s n="gen"/></r></p></e>
-        <e><p><l>की</l><r>का<s n="post"/><s n="f"/><s n="pl"/><s n="gen"/></r></p></e>
+
+    <pardef n="यह__det">
+      <e><p><l></l><r><s n="det"/><s n="dem"/></r></p></e>
     </pardef>
 
+	<!--new paradigms-->
+	<pardef n="हमार/ा__det">
+	  <e><p><l>ा</l><r>ा<s n="det"/><s n="pos"/><s n="m"/><s n="sg"/></r></p></e>
+	  <e><p><l>ी</l><r>ा<s n="det"/><s n="pos"/><s n="f"/><s n="sg"/></r></p></e>
+	  <e><p><l>े</l><r>ा<s n="det"/><s n="pos"/><s n="m"/><s n="pl"/></r></p></e>
+	  <e><p><l>ी</l><r>ा<s n="det"/><s n="pos"/><s n="f"/><s n="pl"/></r></p></e>
+	  <e><p><l>े</l><r>ा<s n="det"/><s n="pos"/><s n="pol"/><s n="m"/><s n="sg"/></r></p></e>
+	</pardef>
+
+	<pardef n="बहुत/_सारा__det">
+          <e><p><l><b/>सारा</l><r><b/>सारा<s n="det"/><s n="pos"/><s n="m"/><s n="sg"/></r></p></e>
+          <e><p><l><b/>सारा</l><r><b/>सारा<s n="det"/><s n="pos"/><s n="f"/><s n="sg"/></r></p></e>
+	  	  <e><p><l>े<b/>सारे</l><r><b/>सारा<s n="det"/><s n="pos"/><s n="m"/><s n="pl"/></r></p></e>
+          <e><p><l>े<b/>सारे</l><r><b/>सारा<s n="det"/><s n="pos"/><s n="f"/><s n="pl"/></r></p></e>
+          <e><p><l><b/>सारा</l><r><b/>सारा<s n="det"/><s n="pos"/><s n="pol"/><s n="m"/><s n="sg"/></r></p></e>
+	</pardef> 
+
+	<pardef n="तुम_लोग/_का__det">
+          <e><p><l><b/>का</l><r><b/>का<s n="det"/><s n="pos"/><s n="m"/><s n="sg"/></r></p></e>
+          <e><p><l><b/>का</l><r><b/>का<s n="det"/><s n="pos"/><s n="f"/><s n="sg"/></r></p></e>
+	      <e><p><l>ो<b/>का</l><r><b/>का<s n="det"/><s n="pos"/><s n="m"/><s n="pl"/></r></p></e>
+          <e><p><l>ो<b/>का</l><r><b/>का<s n="det"/><s n="pos"/><s n="f"/><s n="pl"/></r></p></e>
+          <e><p><l><b/>का</l><r><b/>का<s n="det"/><s n="pos"/><s n="pol"/><s n="m"/><s n="sg"/></r></p></e>
+	</pardef>
+	
+	<pardef n="थोड़/_सा__det">
+          <e><p><l>ा<b/>सा</l><r><b/>सा<s n="det"/><s n="pos"/><s n="m"/><s n="sg"/></r></p></e>
+          <e><p><l>ा<b/>सा</l><r><b/>सा<s n="det"/><s n="pos"/><s n="f"/><s n="sg"/></r></p></e>
+	      <e><p><l>े<b/>से</l><r><b/>सा<s n="det"/><s n="pos"/><s n="m"/><s n="pl"/></r></p></e>
+          <e><p><l>े<b/>से</l><r><b/>सा<s n="det"/><s n="pos"/><s n="f"/><s n="pl"/></r></p></e>
+          <e><p><l>ा<b/>सा</l><r><b/>सा<s n="det"/><s n="pos"/><s n="pol"/><s n="m"/><s n="sg"/></r></p></e>
+	</pardef>	  
+
+	<pardef n="य/_है__det">
+        <e><p><l>ह<b/>है</l><r><b/>है<s n="det"/><s n="pos"/><s n="m"/><s n="sg"/></r></p></e>
+        <e><p><l>ह<b/>है</l><r><b/>है<s n="det"/><s n="pos"/><s n="f"/><s n="sg"/></r></p></e>
+	  	<e><p><l>े<b/>है</l><r><b/>है<s n="det"/><s n="pos"/><s n="m"/><s n="pl"/></r></p></e>
+        <e><p><l>े<b/>है</l><r><b/>है<s n="det"/><s n="pos"/><s n="f"/><s n="pl"/></r></p></e>
+        <e><p><l>ह<b/>है</l><r><b/>है<s n="det"/><s n="pos"/><s n="pol"/><s n="m"/><s n="sg"/></r></p></e>
+	</pardef>
+
+	<pardef n="य/_सब__det">
+        <e><p><l>ह<b/>सब</l><r><b/>सब<s n="det"/><s n="pos"/><s n="m"/><s n="sg"/></r></p></e>
+        <e><p><l>ह<b/>सब</l><r><b/>सब<s n="det"/><s n="pos"/><s n="f"/><s n="sg"/></r></p></e>
+	  	<e><p><l>े<b/>सब</l><r><b/>सब<s n="det"/><s n="pos"/><s n="m"/><s n="pl"/></r></p></e>
+        <e><p><l>े<b/>सब</l><r><b/>सब<s n="det"/><s n="pos"/><s n="f"/><s n="pl"/></r></p></e>
+        <e><p><l>ह<b/>सब</l><r><b/>सब<s n="det"/><s n="pos"/><s n="pol"/><s n="m"/><s n="sg"/></r></p></e>
+	</pardef>	
+
+	<pardef n="पिछल/_वाला__det">
+        <e><p><l>ा<b/>वाला</l><r><b/>वाला<s n="det"/><s n="pos"/><s n="m"/><s n="sg"/></r></p></e>
+        <e><p><l>ा<b/>वाला</l><r><b/>वाला<s n="det"/><s n="pos"/><s n="f"/><s n="sg"/></r></p></e>
+	    <e><p><l>े<b/>वाले</l><r><b/>वाला<s n="det"/><s n="pos"/><s n="m"/><s n="pl"/></r></p></e>
+        <e><p><l>े<b/>वाले</l><r><b/>वाला<s n="det"/><s n="pos"/><s n="f"/><s n="pl"/></r></p></e>
+        <e><p><l>ा<b/>वाला</l><r><b/>वाला<s n="det"/><s n="pos"/><s n="pol"/><s n="m"/><s n="sg"/></r></p></e>
+	</pardef>
+
+	<pardef n="उ/_सब__det">
+        <e><p><l>स<b/>सब</l><r><b/>सब<s n="det"/><s n="pos"/><s n="m"/><s n="sg"/></r></p></e>
+        <e><p><l>स<b/>सब</l><r><b/>सब<s n="det"/><s n="pos"/><s n="f"/><s n="sg"/></r></p></e>
+	    <e><p><l>न<b/>सब</l><r><b/>सब<s n="det"/><s n="pos"/><s n="m"/><s n="pl"/></r></p></e>
+        <e><p><l>न<b/>सब</l><r><b/>सब<s n="det"/><s n="pos"/><s n="f"/><s n="pl"/></r></p></e>
+        <e><p><l>स<b/>सब</l><r><b/>सब<s n="det"/><s n="pos"/><s n="pol"/><s n="m"/><s n="sg"/></r></p></e>
+	</pardef>	
+
     <!-- SECTION: Pronouns -->
 
     <pardef n="म/ैं__prn">
-       <e><p><l>ैं</l><r>ैं<s n="prn"/><s n="pers"/><s n="p1"/><s n="sg"/><s n="nom"/></r></p></e>
-       <e><p><l>ुझ</l><r>ैं<s n="prn"/><s n="pers"/><s n="p1"/><s n="sg"/><s n="obl"/></r></p></e>
-       <e><p><l>ुझसे</l><r>ैं<s n="prn"/><s n="pers"/><s n="p1"/><s n="sg"/><s n="ins"/></r></p></e>	
-       <e><p><l>ुझे</l><r>ैं<s n="prn"/><s n="pers"/><s n="p1"/><s n="sg"/><s n="dat"/></r></p></e>
-       <e r="LR"><p><l>ुझको</l><r>ैं<s n="prn"/><s n="pers"/><s n="p1"/><s n="sg"/><s n="dat"/></r></p></e>
+       <e><p><l>ैं</l><r>ैं<s n="prn"/><s n="pers"/><s n="p1"/><s n="mf"/><s n="sg"/><s n="nom"/></r></p></e>
+       <e><p><l>ुझ</l><r>ैं<s n="prn"/><s n="pers"/><s n="p1"/><s n="mf"/><s n="sg"/><s n="obl"/></r></p></e>
+	   <e><p><l>ेरे<b/>को</l><r>ैं<s n="prn"/><s n="pers"/><s n="p1"/><s n="mf"/><s n="sg"/><s n="obj"/></r></p></e>
+       <e><p><l>ुझसे</l><r>ैं<s n="prn"/><s n="pers"/><s n="p1"/><s n="mf"/><s n="sg"/><s n="ins"/></r></p></e>	
+       <e><p><l>ुझे</l><r>ैं<s n="prn"/><s n="pers"/><s n="p1"/><s n="mf"/><s n="sg"/><s n="dat"/></r></p></e>
+       <e r="LR"><p><l>ुझको</l><r>ैं<s n="prn"/><s n="pers"/><s n="p1"/><s n="mf"/><s n="sg"/><s n="dat"/></r></p></e>
       <e><p><l>ेरा</l><r>ैं<s n="prn"/><s n="pers"/><s n="p1"/><s n="m"/><s n="sg"/><s n="gen"/></r></p></e>
        <e><p><l>ेरे</l><r>ैं<s n="prn"/><s n="pers"/><s n="p1"/><s n="mf"/><s n="sg"/><s n="gen"/></r></p></e>	
        <e><p><l>ेरी</l><r>ैं<s n="prn"/><s n="pers"/><s n="p1"/><s n="f"/><s n="sg"/><s n="gen"/></r></p></e>
-       <e><p><l>ैंने</l><r>ैं<s n="prn"/><s n="pers"/><s n="p1"/><s n="sg"/><s n="erg"/></r></p></e>
-       <e><p><l>ुझमें</l><r>ैं<s n="prn"/><s n="pers"/><s n="p1"/><s n="sg"/><s n="loc"/></r></p></e>
- 
+       <e><p><l>ैंने</l><r>ैं<s n="prn"/><s n="pers"/><s n="p1"/><s n="mf"/><s n="sg"/><s n="erg"/></r></p></e>
+       <e><p><l>ुझमें</l><r>ैं<s n="prn"/><s n="pers"/><s n="p1"/><s n="mf"/><s n="sg"/><s n="loc"/></r></p></e>
      </pardef>
  
      <pardef n="ह/म__prn">
-       <e><p><l>म</l><r>म<s n="prn"/><s n="pers"/><s n="p1"/><s n="pl"/><s n="nom"/></r></p></e>
-       <e><p><l>म</l><r>म<s n="prn"/><s n="pers"/><s n="p1"/><s n="pl"/><s n="obl"/></r></p></e>
-       <e><p><l>मसे</l><r>म<s n="prn"/><s n="pers"/><s n="p1"/><s n="pl"/><s n="ins"/></r></p></e>	
-       <e><p><l>में</l><r>म<s n="prn"/><s n="pers"/><s n="p1"/><s n="pl"/><s n="dat"/></r></p></e>
-       <e r="LR"><p><l>मको</l><r>म<s n="prn"/><s n="pers"/><s n="p1"/><s n="pl"/><s n="dat"/></r></p></e>
+       <e><p><l>म</l><r>म<s n="prn"/><s n="pers"/><s n="p1"/><s n="mf"/><s n="pl"/><s n="nom"/></r></p></e>
+	   <e r="LR"><p><l>म<b/>लोगो</l><r>म<s n="prn"/><s n="pers"/><s n="p1"/><s n="mf"/><s n="pl"/><s n="nom"/></r></p></e>
+	   <e r="LR"><p><l>मलोगो</l><r>म<s n="prn"/><s n="pers"/><s n="p1"/><s n="mf"/><s n="pl"/><s n="nom"/></r></p></e>
+	   <e r="LR"><p><l>म<b/>लोग</l><r>म<s n="prn"/><s n="pers"/><s n="p1"/><s n="mf"/><s n="pl"/><s n="nom"/></r></p></e>
+	   <e r="LR"><p><l>मलोग</l><r>म<s n="prn"/><s n="pers"/><s n="p1"/><s n="mf"/><s n="pl"/><s n="nom"/></r></p></e>
+       <e><p><l>में</l><r>म<s n="prn"/><s n="pers"/><s n="p1"/><s n="mf"/><s n="pl"/><s n="obl"/></r></p></e>
+	   <e r="LR"><p><l>म<b/>लोगो को</l><r>म<s n="prn"/><s n="pers"/><s n="p1"/><s n="mf"/><s n="pl"/><s n="obl"/></r></p></e>
+	   <e r="LR"><p><l>म<b/>लोग<b/>को</l><r>म<s n="prn"/><s n="pers"/><s n="p1"/><s n="mf"/><s n="pl"/><s n="obl"/></r></p></e>
+       <e><p><l>मसे</l><r>म<s n="prn"/><s n="pers"/><s n="p1"/><s n="mf"/><s n="pl"/><s n="ins"/></r></p></e>	
+       <e><p><l>में</l><r>म<s n="prn"/><s n="pers"/><s n="p1"/><s n="mf"/><s n="pl"/><s n="dat"/></r></p></e>
+       <e r="LR"><p><l>मको</l><r>म<s n="prn"/><s n="pers"/><s n="p1"/><s n="mf"/><s n="pl"/><s n="dat"/></r></p></e>
        <e><p><l>मारा</l><r>म<s n="prn"/><s n="pers"/><s n="p1"/><s n="m"/><s n="pl"/><s n="gen"/></r></p></e>
        <e><p><l>मारी</l><r>म<s n="prn"/><s n="pers"/><s n="p1"/><s n="f"/><s n="pl"/><s n="gen"/></r></p></e>
        <e><p><l>मारे</l><r>म<s n="prn"/><s n="pers"/><s n="p1"/><s n="mf"/><s n="pl"/><s n="gen"/></r></p></e>
-       <e><p><l>मने</l><r>म<s n="prn"/><s n="pers"/><s n="p1"/><s n="pl"/><s n="erg"/></r></p></e>
-       <e><p><l>ममें</l><r>म<s n="prn"/><s n="pers"/><s n="p1"/><s n="pl"/><s n="loc"/></r></p></e>
+	   <e r="LR"><p><l>म<b/>लोगो का</l><r>म<s n="prn"/><s n="pers"/><s n="p1"/><s n="m"/><s n="pl"/><s n="gen"/></r></p></e>
+	   <e r="LR"><p><l>म<b/>लोगो की</l><r>म<s n="prn"/><s n="pers"/><s n="p1"/><s n="f"/><s n="pl"/><s n="gen"/></r></p></e>
+	   <e r="LR"><p><l>म<b/>लोगो के</l><r>म<s n="prn"/><s n="pers"/><s n="p1"/><s n="mf"/><s n="pl"/><s n="gen"/></r></p></e>
+	   <e r="LR"><p><l>म<b/>लोग<b/>का</l><r>म<s n="prn"/><s n="pers"/><s n="p1"/><s n="m"/><s n="pl"/><s n="gen"/></r></p></e>
+	   <e r="LR"><p><l>म<b/>लोग<b/>की</l><r>म<s n="prn"/><s n="pers"/><s n="p1"/><s n="f"/><s n="pl"/><s n="gen"/></r></p></e>
+	   <e r="LR"><p><l>म<b/>लोग<b/>के</l><r>म<s n="prn"/><s n="pers"/><s n="p1"/><s n="mf"/><s n="pl"/><s n="gen"/></r></p></e>
+       <e><p><l>मने</l><r>म<s n="prn"/><s n="pers"/><s n="p1"/><s n="mf"/><s n="pl"/><s n="erg"/></r></p></e>
+       <e><p><l>ममें</l><r>म<s n="prn"/><s n="pers"/><s n="p1"/><s n="mf"/><s n="pl"/><s n="loc"/></r></p></e>
     </pardef>
- 	
-     <pardef n="त/ुम__prn">
-       <e><p><l>ुम</l><r>ुम<s n="prn"/><s n="pers"/><s n="p2"/><s n="pl"/><s n="fam"/><s n="nom"/></r></p></e>
-       <e><p><l>ुम</l><r>ुम<s n="prn"/><s n="pers"/><s n="p2"/><s n="pl"/><s n="fam"/><s n="obl"/></r></p></e>
-       <e><p><l>ुमसे</l><r>ुम<s n="prn"/><s n="pers"/><s n="p1"/><s n="pl"/><s n="fam"/><s n="ins"/></r></p></e>	
-       <e><p><l>ुम्हें</l><r>ुम<s n="prn"/><s n="pers"/><s n="p2"/><s n="pl"/><s n="fam"/><s n="dat"/></r></p></e>
-       <e r="LR"><p><l>ुमको</l><r>ुम<s n="prn"/><s n="pers"/><s n="p2"/><s n="pl"/><s n="fam"/><s n="dat"/></r></p></e>
-       <e><p><l>ुम्हारा</l><r>ुम<s n="prn"/><s n="pers"/><s n="p2"/><s n="m"/><s n="pl"/><s n="fam"/><s n="gen"/></r></p></e>
-       <e><p><l>ुम्हारी</l><r>ुम<s n="prn"/><s n="pers"/><s n="p2"/><s n="f"/><s n="pl"/><s n="fam"/><s n="gen"/></r></p></e>
-       <e><p><l>ुम्हारे</l><r>ुम<s n="prn"/><s n="pers"/><s n="p2"/><s n="mf"/><s n="pl"/><s n="fam"/><s n="gen"/></r></p></e> 
-       <e><p><l>ुमने</l><r>ुम<s n="prn"/><s n="pers"/><s n="p2"/><s n="pl"/><s n="fam"/><s n="erg"/></r></p></e>
-       <e><p><l>ुममें</l><r>ुम<s n="prn"/><s n="pers"/><s n="p2"/><s n="pl"/><s n="fam"/><s n="loc"/></r></p></e>  
+ 	<!-- all  त/ुम__prn pardef entries had s n="fam" tag after pl/sg/sp-->
+     <pardef n="त/ुम__prn">   
+       <e><p><l>ुम</l><r>ुम<s n="prn"/><s n="pers"/><s n="p2"/><s n="mf"/><s n="pl"/><s n="nom"/></r></p></e>
+       <e><p><l>ुम</l><r>ुम<s n="prn"/><s n="pers"/><s n="p2"/><s n="mf"/><s n="pl"/><s n="obl"/></r></p></e>
+       <e><p><l>ुमसे</l><r>ुम<s n="prn"/><s n="pers"/><s n="p2"/><s n="mf"/><s n="pl"/><s n="ins"/></r></p></e>	
+       <e><p><l>ुम्हें</l><r>ुम<s n="prn"/><s n="pers"/><s n="p2"/><s n="mf"/><s n="pl"/><s n="dat"/></r></p></e>
+       <e r="LR"><p><l>ुमको</l><r>ुम<s n="prn"/><s n="pers"/><s n="p2"/><s n="mf"/><s n="pl"/><s n="dat"/></r></p></e>
+       <e><p><l>ुम्हारा</l><r>ुम<s n="prn"/><s n="pers"/><s n="p2"/><s n="m"/><s n="pl"/><s n="gen"/></r></p></e>
+       <e><p><l>ुम्हारी</l><r>ुम<s n="prn"/><s n="pers"/><s n="p2"/><s n="f"/><s n="pl"/><s n="gen"/></r></p></e>
+       <e><p><l>ुम्हारे</l><r>ुम<s n="prn"/><s n="pers"/><s n="p2"/><s n="mf"/><s n="pl"/><s n="gen"/></r></p></e> 
+       <e><p><l>ुमने</l><r>ुम<s n="prn"/><s n="pers"/><s n="p2"/><s n="mf"/><s n="pl"/><s n="erg"/></r></p></e>
+       <e><p><l>ुममें</l><r>ुम<s n="prn"/><s n="pers"/><s n="p2"/><s n="mf"/><s n="pl"/><s n="loc"/></r></p></e>  
+
+       <e><p><l>ुम</l><r>ुम<s n="prn"/><s n="pers"/><s n="p2"/><s n="mf"/><s n="sg"/><s n="nom"/></r></p></e>
+       <e><p><l>ुम</l><r>ुम<s n="prn"/><s n="pers"/><s n="p2"/><s n="mf"/><s n="sg"/><s n="obl"/></r></p></e>
+       <e><p><l>ुमसे</l><r>ुम<s n="prn"/><s n="pers"/><s n="p2"/><s n="mf"/><s n="sg"/><s n="ins"/></r></p></e>	
+       <e><p><l>ुम्हें</l><r>ुम<s n="prn"/><s n="pers"/><s n="p2"/><s n="mf"/><s n="sg"/><s n="dat"/></r></p></e>
+       <e><p><l>ुम्हें</l><r>ुम<s n="prn"/><s n="pers"/><s n="p2"/><s n="mf"/><s n="sg"/><s n="acc"/></r></p></e>
+       <e r="LR"><p><l>ुमको</l><r>ुम<s n="prn"/><s n="pers"/><s n="p2"/><s n="mf"/><s n="sg"/><s n="dat"/></r></p></e>
+       <e><p><l>ुम्हारा</l><r>ुम<s n="prn"/><s n="pers"/><s n="p2"/><s n="m"/><s n="sg"/><s n="gen"/></r></p></e>
+       <e><p><l>ुम्हारी</l><r>ुम<s n="prn"/><s n="pers"/><s n="p2"/><s n="f"/><s n="sg"/><s n="gen"/></r></p></e>
+       <e><p><l>ुम्हारे</l><r>ुम<s n="prn"/><s n="pers"/><s n="p2"/><s n="mf"/><s n="sg"/><s n="gen"/></r></p></e> 
+       <e><p><l>ुमने</l><r>ुम<s n="prn"/><s n="pers"/><s n="p2"/><s n="mf"/><s n="sg"/><s n="erg"/></r></p></e>
+       <e><p><l>ुममें</l><r>ुम<s n="prn"/><s n="pers"/><s n="p2"/><s n="mf"/><s n="sg"/><s n="loc"/></r></p></e>  
      </pardef> 
- 	
-     <pardef n="त/ू__prn">
-       <e><p><l>ू</l><r>ू<s n="prn"/><s n="pers"/><s n="p2"/><s n="sg"/><s n="nom"/></r></p></e>
-       <e><p><l>ुझ</l><r>ू<s n="prn"/><s n="pers"/><s n="p2"/><s n="sg"/><s n="obl"/></r></p></e>
-       <e><p><l>ुझसे</l><r>ू<s n="prn"/><s n="pers"/><s n="p2"/><s n="sg"/><s n="ins"/></r></p></e>	
-       <e><p><l>ुझे</l><r>ू<s n="prn"/><s n="pers"/><s n="p2"/><s n="sg"/><s n="dat"/></r></p></e>
-       <e r="LR"><p><l>ुझको</l><r>ू<s n="prn"/><s n="pers"/><s n="p2"/><s n="sg"/><s n="dat"/></r></p></e>
+
+     <pardef n="त/ू__prn">  
+       <e><p><l>ू</l><r>ू<s n="prn"/><s n="pers"/><s n="p2"/><s n="mf"/><s n="sg"/><s n="nom"/></r></p></e>
+       <e><p><l>ुझ</l><r>ू<s n="prn"/><s n="pers"/><s n="p2"/><s n="mf"/><s n="sg"/><s n="obl"/></r></p></e>
+       <e><p><l>ुझसे</l><r>ू<s n="prn"/><s n="pers"/><s n="p2"/><s n="mf"/><s n="sg"/><s n="ins"/></r></p></e>	
+       <e><p><l>ुझे</l><r>ू<s n="prn"/><s n="pers"/><s n="p2"/><s n="mf"/><s n="sg"/><s n="dat"/></r></p></e>
+       <e r="LR"><p><l>ुझको</l><r>ू<s n="prn"/><s n="pers"/><s n="mf"/><s n="p2"/><s n="sg"/><s n="dat"/></r></p></e>
        <e><p><l>ेरा</l><r>ू<s n="prn"/><s n="pers"/><s n="p2"/><s n="m"/><s n="sg"/><s n="gen"/></r></p></e>
        <e><p><l>ेरे</l><r>ू<s n="prn"/><s n="pers"/><s n="p2"/><s n="mf"/><s n="sg"/><s n="gen"/></r></p></e>	
        <e><p><l>ेरी</l><r>ू<s n="prn"/><s n="pers"/><s n="p2"/><s n="f"/><s n="sg"/><s n="gen"/></r></p></e>
-       <e><p><l>ूने</l><r>ू<s n="prn"/><s n="pers"/><s n="p2"/><s n="sg"/><s n="erg"/></r></p></e>
-       <e><p><l>ुझमें</l><r>ू<s n="prn"/><s n="pers"/><s n="p2"/><s n="sg"/><s n="loc"/></r></p></e>
+       <e><p><l>ूने</l><r>ू<s n="prn"/><s n="pers"/><s n="p2"/><s n="mf"/><s n="sg"/><s n="erg"/></r></p></e>
+       <e><p><l>ुझमें</l><r>ू<s n="prn"/><s n="pers"/><s n="p2"/><s n="mf"/><s n="sg"/><s n="loc"/></r></p></e>
      </pardef> 
-       
-     <pardef n="आप__prn">
-       <e><p><l></l><r><s n="prn"/><s n="pers"/><s n="p2"/><s n="frm"/><s n="pl"/><s n="nom"/></r></p></e>
-       <e><p><l></l><r><s n="prn"/><s n="pers"/><s n="p2"/><s n="frm"/><s n="pl"/><s n="obl"/></r></p></e>
-       <e><p><l>से</l><r><s n="prn"/><s n="pers"/><s n="p2"/><s n="frm"/><s n="pl"/><s n="ins"/></r></p></e>	
-       <e><p><l>को</l><r><s n="prn"/><s n="pers"/><s n="p2"/><s n="frm"/><s n="pl"/><s n="dat"/></r></p></e>
-       <e><p><l>का</l><r><s n="prn"/><s n="pers"/><s n="p2"/><s n="m"/><s n="frm"/><s n="gen"/><s n="pl"/></r></p></e>
-      <e><p><l>के</l><r><s n="prn"/><s n="pers"/><s n="p2"/><s n="mf"/><s n="frm"/><s n="gen"/><s n="pl"/></r></p></e>	
-       <e><p><l>की</l><r><s n="prn"/><s n="pers"/><s n="p2"/><s n="f"/><s n="frm"/><s n="gen"/><s n="pl"/></r></p></e>
-       <e><p><l>ने</l><r><s n="prn"/><s n="pers"/><s n="p2"/><s n="erg"/><s n="frm"/><s n="pl"/></r></p></e>
-       <e><p><l>में</l><r><s n="prn"/><s n="pers"/><s n="p2"/><s n="loc"/><s n="frm"/><s n="pl"/></r></p></e>
+
+	 <pardef n="आप__prn">
+       <e><p><l></l><r><s n="prn"/><s n="pers"/><s n="p2"/><s n="mf"/><s n="sg"/><s n="frm"/><s n="nom"/></r></p></e>
+       <e><p><l></l><r><s n="prn"/><s n="pers"/><s n="p2"/><s n="mf"/><s n="sg"/><s n="frm"/><s n="obl"/></r></p></e>
+       <e><p><l>लोग</l><r><s n="prn"/><s n="pers"/><s n="p2"/><s n="mf"/><s n="pl"/><s n="frm"/><s n="nom"/></r></p></e>
+       <e><p><l>लोगो को</l><r><s n="prn"/><s n="pers"/><s n="p2"/><s n="mf"/><s n="pl"/><s n="frm"/><s n="obl"/></r></p></e>
+       <e><p><l>से</l><r><s n="prn"/><s n="pers"/><s n="p2"/><s n="mf"/><s n="pl"/><s n="frm"/><s n="ins"/></r></p></e>
+       <e><p><l>को</l><r><s n="prn"/><s n="pers"/><s n="p2"/><s n="mf"/><s n="pl"/><s n="frm"/><s n="dat"/></r></p></e>	
+       <e><p><l>को</l><r><s n="prn"/><s n="pers"/><s n="p2"/><s n="mf"/><s n="sg"/><s n="frm"/><s n="dat"/></r></p></e>
+       <e><p><l>का</l><r><s n="prn"/><s n="pers"/><s n="p2"/><s n="m"/><s n="sg"/><s n="frm"/><s n="gen"/></r></p></e>
+       <e><p><l>के</l><r><s n="prn"/><s n="pers"/><s n="p2"/><s n="mf"/><s n="sg"/><s n="frm"/><s n="gen"/></r></p></e>	
+       <e><p><l>की</l><r><s n="prn"/><s n="pers"/><s n="p2"/><s n="f"/><s n="sg"/><s n="frm"/><s n="gen"/></r></p></e>
+       <e><p><l>लोगो का</l><r><s n="prn"/><s n="pers"/><s n="p2"/><s n="m"/><s n="pl"/><s n="frm"/><s n="gen"/></r></p></e>
+       <e><p><l>लोगो के</l><r><s n="prn"/><s n="pers"/><s n="p2"/><s n="mf"/><s n="pl"/><s n="frm"/><s n="gen"/></r></p></e>	
+       <e><p><l>लोगो की</l><r><s n="prn"/><s n="pers"/><s n="p2"/><s n="f"/><s n="pl"/><s n="frm"/><s n="gen"/></r></p></e>
+       <e><p><l>ने</l><r><s n="prn"/><s n="pers"/><s n="p2"/><s n="mf"/><s n="pl"/><s n="frm"/><s n="erg"/></r></p></e>
+       <e><p><l>में</l><r><s n="prn"/><s n="pers"/><s n="p2"/><s n="mf"/><s n="pl"/><s n="frm"/><s n="loc"/></r></p></e>
      </pardef>
- 
-     <pardef n="अ/प__prn">
+
+	<pardef n="तुम__prn"> <!-- CORRECT: elsewhere the "pol" tag comes before the gender and number tags; besides, it is maybe redundant here and could be removed -->
+      <e><p><l></l><r><s n="prn"/><s n="pers"/><s n="p2"/><s n="mf"/><s n="sg"/><s n="pol"/><s n="nom"/></r></p></e>
+	  <e><p><l>को</l><r><s n="prn"/><s n="pers"/><s n="p2"/><s n="mf"/><s n="sg"/><s n="pol"/><s n="obj"/></r></p></e>
+	  <e><p><l>पे</l><r><s n="prn"/><s n="pers"/><s n="p2"/><s n="mf"/><s n="sg"/><s n="pol"/><s n="loc"/></r></p></e>
+	  <e><p><l>हारा</l><r><s n="prn"/><s n="pers"/><s n="p2"/><s n="mf"/><s n="sg"/><s n="pol"/><s n="gen"/></r></p></e>
+	  <e><p><l>हारा</l><r><s n="prn"/><s n="pers"/><s n="p2"/><s n="m"/><s n="sg"/><s n="pol"/><s n="gen"/></r></p></e>
+	  <e><p><l>हरी</l><r><s n="prn"/><s n="pers"/><s n="p2"/><s n="f"/><s n="sg"/><s n="pol"/><s n="gen"/></r></p></e>
+      <e><p><l>लोग</l><r><s n="prn"/><s n="pers"/><s n="p2"/><s n="mf"/><s n="pl"/><s n="pol"/><s n="nom"/></r></p></e>
+      <e><p><l>लोगो को</l><r><s n="prn"/><s n="pers"/><s n="p2"/><s n="mf"/><s n="pl"/><s n="pol"/><s n="obl"/></r></p></e>
+      <e><p><l>से</l><r><s n="prn"/><s n="pers"/><s n="p2"/><s n="mf"/><s n="pl"/><s n="pol"/><s n="ins"/></r></p></e>
+      <e><p><l>को</l><r><s n="prn"/><s n="pers"/><s n="p2"/><s n="mf"/><s n="pl"/><s n="pol"/><s n="dat"/></r></p></e>	
+	  <e><p><l>लोगो का</l><r><s n="prn"/><s n="pers"/><s n="p2"/><s n="m"/><s n="pl"/><s n="pol"/><s n="gen"/></r></p></e>
+      <e><p><l>लोगो के</l><r><s n="prn"/><s n="pers"/><s n="p2"/><s n="mf"/><s n="pl"/><s n="pol"/><s n="gen"/></r></p></e>	
+      <e><p><l>लोगो की</l><r><s n="prn"/><s n="pers"/><s n="p2"/><s n="f"/><s n="pl"/><s n="pol"/><s n="gen"/></r></p></e>
+      <e><p><l>ने</l><r><s n="prn"/><s n="pers"/><s n="p2"/><s n="mf"/><s n="pl"/><s n="pol"/><s n="erg"/></r></p></e>
+      <e><p><l>में</l><r><s n="prn"/><s n="pers"/><s n="p2"/><s n="mf"/><s n="pl"/><s n="pol"/><s n="loc"/></r></p></e>
+    </pardef>
+
+	<!-- subcategory tag at the end of the tags -->
+     <!-- <pardef n="अ/प__prn">  
        <e><p><l>पनी</l><r>प<s n="prn"/><s n="pers"/><s n="p1"/><s n="f"/><s n="pos"/><s n="sg"/></r></p></e>
        <e><p><l>पना</l><r>प<s n="prn"/><s n="pers"/><s n="p1"/><s n="m"/><s n="pos"/><s n="sg"/></r></p></e>
        <e><p><l>पने</l><r>प<s n="prn"/><s n="pers"/><s n="p1"/><s n="mf"/><s n="pos"/><s n="sg"/></r></p></e>
-     </pardef>
+     </pardef> -->
+
+	<pardef n="अपन/ा__prn">
+	  <e><p><l>ा</l><r>ा<s n="prn"/><s n="pos"/><s n="m"/><s n="sg"/></r></p></e>
+	  <e><p><l>ी</l><r>ा<s n="prn"/><s n="pos"/><s n="f"/><s n="sg"/></r></p></e>
+	  <e><p><l>े</l><r>ा<s n="prn"/><s n="pos"/><s n="m"/><s n="pl"/></r></p></e>
+	  <e><p><l>ी</l><r>ा<s n="prn"/><s n="pos"/><s n="f"/><s n="pl"/></r></p></e>
+	  <e><p><l>े</l><r>ा<s n="prn"/><s n="pos"/><s n="pol"/><s n="m"/><s n="sg"/></r></p></e>
+	</pardef>
+
+	<pardef n="हमार/ा__prn">
+	  <e><p><l>ा</l><r>ा<s n="prn"/><s n="pos"/><s n="m"/><s n="sg"/></r></p></e>
+	  <e><p><l>ी</l><r>ा<s n="prn"/><s n="pos"/><s n="f"/><s n="sg"/></r></p></e>
+	  <e><p><l>े</l><r>ा<s n="prn"/><s n="pos"/><s n="m"/><s n="pl"/></r></p></e>
+	  <e><p><l>ी</l><r>ा<s n="prn"/><s n="pos"/><s n="f"/><s n="pl"/></r></p></e>
+	  <e><p><l>े</l><r>ा<s n="prn"/><s n="pos"/><s n="pol"/><s n="m"/><s n="sg"/></r></p></e>
+	</pardef>
  
-     <pardef n="/यह__prn">       
- 	 <e r="LR"><p><l>यह</l><r>यह<s n="prn"/><s n="dem"/><s n="p3"/><s n="mf"/><s n="sg"/><s n="prx"/><s n="nom"/></r></p></e>
-          <e><p><l>ये</l><r>यह<s n="prn"/><s n="dem"/><s n="p3"/><s n="mf"/><s n="sg"/><s n="prx"/><s n="nom"/></r></p></e>
-          <e><p><l>ये</l><r>यह<s n="prn"/><s n="dem"/><s n="p3"/><s n="mf"/><s n="pl"/><s n="prx"/><s n="nom"/></r></p></e>
- 	 <e><p><l>इस</l><r>यह<s n="prn"/><s n="dem"/><s n="p3"/><s n="mf"/><s n="sg"/><s n="prx"/><s n="obl"/></r></p></e>
- 	 <e><p><l>इन</l><r>यह<s n="prn"/><s n="dem"/><s n="p3"/><s n="mf"/><s n="pl"/><s n="prx"/><s n="obl"/></r></p></e>
- 	 <e><p><l>इससे</l><r>यह<s n="prn"/><s n="dem"/><s n="p3"/><s n="mf"/><s n="sg"/><s n="prx"/><s n="ins"/></r></p></e>
- 	 <e><p><l>इनसे</l><r>यह<s n="prn"/><s n="dem"/><s n="p3"/><s n="mf"/><s n="pl"/><s n="prx"/><s n="ins"/></r></p></e>
- 	 <e><p><l>इसे</l><r>यह<s n="prn"/><s n="dem"/><s n="p3"/><s n="mf"/><s n="sg"/><s n="prx"/><s n="dat"/></r></p></e>
- 	 <e r="LR"><p><l>इसको</l><r>यह<s n="prn"/><s n="dem"/><s n="p3"/><s n="mf"/><s n="sg"/><s n="prx"/><s n="dat"/></r></p></e>
- 	 <e r="LR"><p><l>इने</l><r>यह<s n="prn"/><s n="dem"/><s n="p3"/><s n="mf"/><s n="pl"/><s n="prx"/><s n="dat"/></r></p></e>
- 	 <e><p><l>इन्हें</l><r>यह<s n="prn"/><s n="dem"/><s n="p3"/><s n="mf"/><s n="pl"/><s n="prx"/><s n="dat"/></r></p></e>
-	 <e r="LR"><p><l>इन्हीं</l><r>यह<s n="prn"/><s n="dem"/><s n="p3"/><s n="mf"/><s n="pl"/><s n="prx"/><s n="dat"/></r></p></e>
-	 <e r="LR"><p><l>इनको</l><r>यह<s n="prn"/><s n="dem"/><s n="p3"/><s n="mf"/><s n="pl"/><s n="prx"/><s n="dat"/></r></p></e>
- 	 <e><p><l>इसकी</l><r>यह<s n="prn"/><s n="dem"/><s n="p3"/><s n="f"/><s n="sg"/><s n="prx"/><s n="gen"/></r></p></e>
- 	 <e><p><l>इसके</l><r>यह<s n="prn"/><s n="dem"/><s n="p3"/><s n="mf"/><s n="sg"/><s n="prx"/><s n="gen"/></r></p></e>
- 	 <e><p><l>इसका</l><r>यह<s n="prn"/><s n="dem"/><s n="p3"/><s n="m"/><s n="sg"/><s n="prx"/><s n="gen"/></r></p></e>
- 	 <e><p><l>इनकी</l><r>यह<s n="prn"/><s n="dem"/><s n="p3"/><s n="f"/><s n="pl"/><s n="prx"/><s n="gen"/></r></p></e>
- 	 <e><p><l>इनके</l><r>यह<s n="prn"/><s n="dem"/><s n="p3"/><s n="mf"/><s n="pl"/><s n="prx"/><s n="gen"/></r></p></e>
- 	 <e><p><l>इनका</l><r>यह<s n="prn"/><s n="dem"/><s n="p3"/><s n="m"/><s n="pl"/><s n="prx"/><s n="gen"/></r></p></e>
- 	 <e><p><l>इसने</l><r>यह<s n="prn"/><s n="dem"/><s n="p3"/><s n="mf"/><s n="sg"/><s n="prx"/><s n="erg"/></r></p></e>
- 	 <e><p><l>इन्होंने</l><r>यह<s n="prn"/><s n="dem"/><s n="p3"/><s n="mf"/><s n="pl"/><s n="prx"/><s n="erg"/></r></p></e>
- 	 <e><p><l>इसमें</l><r>यह<s n="prn"/><s n="dem"/><s n="p3"/><s n="mf"/><s n="sg"/><s n="prx"/><s n="loc"/></r></p></e>
-	 <e><p><l>इनमें</l><r>यह<s n="prn"/><s n="dem"/><s n="p3"/><s n="mf"/><s n="pl"/><s n="prx"/><s n="loc"/></r></p></e>	
-	 <e><p><l>इसमे</l><r>यह<s n="prn"/><s n="dem"/><s n="p3"/><s n="mf"/><s n="pl"/><s n="prx"/><s n="loc"/></r></p></e>	
-     </pardef>
+	<pardef n="बहुत/_सारा__prn">
+          <e><p><l><b/>सारा</l><r><b/>सारा<s n="prn"/><s n="pos"/><s n="m"/><s n="sg"/></r></p></e>
+          <e><p><l><b/>सारा</l><r><b/>सारा<s n="prn"/><s n="pos"/><s n="f"/><s n="sg"/></r></p></e>
+	  	  <e><p><l>े<b/>सारे</l><r><b/>सारा<s n="prn"/><s n="pos"/><s n="m"/><s n="pl"/></r></p></e>
+          <e><p><l>े<b/>सारे</l><r><b/>सारा<s n="prn"/><s n="pos"/><s n="f"/><s n="pl"/></r></p></e>
+          <e><p><l><b/>सारा</l><r><b/>सारा<s n="prn"/><s n="pos"/><s n="pol"/><s n="m"/><s n="sg"/></r></p></e>
+	</pardef> 
+ 
+	<pardef n="तुम_लोग/_का__prn">
+          <e><p><l><b/>का</l><r><b/>का<s n="prn"/><s n="pos"/><s n="m"/><s n="sg"/></r></p></e>
+          <e><p><l><b/>का</l><r><b/>का<s n="prn"/><s n="pos"/><s n="f"/><s n="sg"/></r></p></e>
+	      <e><p><l>ो<b/>का</l><r><b/>का<s n="prn"/><s n="pos"/><s n="m"/><s n="pl"/></r></p></e>
+          <e><p><l>ो<b/>का</l><r><b/>का<s n="prn"/><s n="pos"/><s n="f"/><s n="pl"/></r></p></e>
+          <e><p><l><b/>का</l><r><b/>का<s n="prn"/><s n="pos"/><s n="pol"/><s n="m"/><s n="sg"/></r></p></e>
+	</pardef>
+	
+	<pardef n="थोड़/_सा__prn">
+          <e><p><l>ा<b/>सा</l><r><b/>सा<s n="prn"/><s n="pos"/><s n="m"/><s n="sg"/></r></p></e>
+          <e><p><l>ा<b/>सा</l><r><b/>सा<s n="prn"/><s n="pos"/><s n="f"/><s n="sg"/></r></p></e>
+	      <e><p><l>े<b/>से</l><r><b/>सा<s n="prn"/><s n="pos"/><s n="m"/><s n="pl"/></r></p></e>
+          <e><p><l>े<b/>से</l><r><b/>सा<s n="prn"/><s n="pos"/><s n="f"/><s n="pl"/></r></p></e>
+          <e><p><l>ा<b/>सा</l><r><b/>सा<s n="prn"/><s n="pos"/><s n="pol"/><s n="m"/><s n="sg"/></r></p></e>
+	</pardef>	  
+ 
+	<pardef n="य/_है__prn">
+        <e><p><l>ह<b/>है</l><r><b/>है<s n="prn"/><s n="pos"/><s n="m"/><s n="sg"/></r></p></e>
+        <e><p><l>ह<b/>है</l><r><b/>है<s n="prn"/><s n="pos"/><s n="f"/><s n="sg"/></r></p></e>
+	  	<e><p><l>े<b/>है</l><r><b/>है<s n="prn"/><s n="pos"/><s n="m"/><s n="pl"/></r></p></e>
+        <e><p><l>े<b/>है</l><r><b/>है<s n="prn"/><s n="pos"/><s n="f"/><s n="pl"/></r></p></e>
+        <e><p><l>ह<b/>है</l><r><b/>है<s n="prn"/><s n="pos"/><s n="pol"/><s n="m"/><s n="sg"/></r></p></e>
+	</pardef>
  
-     <pardef n="/वह__prn">       
- 	 <e r="LR"><p><l>वह</l><r>वह<s n="prn"/><s n="dem"/><s n="p3"/><s n="mf"/><s n="sg"/><s n="dst"/><s n="nom"/></r></p></e>
-          <e><p><l>वो</l><r>वह<s n="prn"/><s n="dem"/><s n="p3"/><s n="mf"/><s n="sg"/><s n="dst"/><s n="nom"/></r></p></e>
-          <e r="LR"><p><l>वे</l><r>वह<s n="prn"/><s n="dem"/><s n="p3"/><s n="mf"/><s n="pl"/><s n="dst"/><s n="nom"/></r></p></e>
-          <e><p><l>वो</l><r>वह<s n="prn"/><s n="dem"/><s n="p3"/><s n="mf"/><s n="pl"/><s n="dst"/><s n="nom"/></r></p></e>
- 	 <e><p><l>उस</l><r>वह<s n="prn"/><s n="dem"/><s n="p3"/><s n="mf"/><s n="sg"/><s n="dst"/><s n="obl"/></r></p></e>
- 	 <e><p><l>उन</l><r>वह<s n="prn"/><s n="dem"/><s n="p3"/><s n="mf"/><s n="pl"/><s n="dst"/><s n="obl"/></r></p></e>
- 	 <e><p><l>उससे</l><r>वह<s n="prn"/><s n="dem"/><s n="p3"/><s n="mf"/><s n="sg"/><s n="dst"/><s n="ins"/></r></p></e>
- 	 <e><p><l>उनसे</l><r>वह<s n="prn"/><s n="dem"/><s n="p3"/><s n="mf"/><s n="pl"/><s n="dst"/><s n="ins"/></r></p></e>
- 	 <e><p><l>उसे</l><r>वह<s n="prn"/><s n="dem"/><s n="p3"/><s n="mf"/><s n="sg"/><s n="dst"/><s n="dat"/></r></p></e>
- 	 <e r="LR"><p><l>उसको</l><r>वह<s n="prn"/><s n="dem"/><s n="p3"/><s n="mf"/><s n="sg"/><s n="dst"/><s n="dat"/></r></p></e>
- 	 <e r="LR"><p><l>उने</l><r>वह<s n="prn"/><s n="dem"/><s n="p3"/><s n="mf"/><s n="pl"/><s n="dst"/><s n="dat"/></r></p></e>
- 	 <e><p><l>उन्हें</l><r>वह<s n="prn"/><s n="dem"/><s n="p3"/><s n="mf"/><s n="pl"/><s n="dst"/><s n="dat"/></r></p></e>
- 	 <e><p><l>उन्हे</l><r>वह<s n="prn"/><s n="dem"/><s n="p3"/><s n="mf"/><s n="pl"/><s n="dst"/><s n="dat"/></r></p></e>
- 	 <e r="LR"><p><l>उन्हीं</l><r>वह<s n="prn"/><s n="dem"/><s n="p3"/><s n="mf"/><s n="pl"/><s n="dst"/><s n="dat"/></r></p></e>
- 	 <e r="LR"><p><l>उनको</l><r>वह<s n="prn"/><s n="dem"/><s n="p3"/><s n="mf"/><s n="pl"/><s n="dst"/><s n="dat"/></r></p></e>
- 	 <e><p><l>उसकी</l><r>वह<s n="prn"/><s n="dem"/><s n="p3"/><s n="f"/><s n="sg"/><s n="dst"/><s n="gen"/></r></p></e>
- 	 <e><p><l>उसके</l><r>वह<s n="prn"/><s n="dem"/><s n="p3"/><s n="mf"/><s n="sg"/><s n="dst"/><s n="gen"/></r></p></e>
- 	 <e><p><l>उसका</l><r>वह<s n="prn"/><s n="dem"/><s n="p3"/><s n="m"/><s n="sg"/><s n="dst"/><s n="gen"/></r></p></e>
- 	 <e><p><l>उनकी</l><r>वह<s n="prn"/><s n="dem"/><s n="p3"/><s n="f"/><s n="pl"/><s n="dst"/><s n="gen"/></r></p></e>
- 	 <e><p><l>उनके</l><r>वह<s n="prn"/><s n="dem"/><s n="p3"/><s n="mf"/><s n="pl"/><s n="dst"/><s n="gen"/></r></p></e>
- 	 <e><p><l>उनका</l><r>वह<s n="prn"/><s n="dem"/><s n="p3"/><s n="m"/><s n="pl"/><s n="dst"/><s n="gen"/></r></p></e>
- 	 <e><p><l>उसने</l><r>वह<s n="prn"/><s n="dem"/><s n="p3"/><s n="mf"/><s n="sg"/><s n="dst"/><s n="erg"/></r></p></e>
-	 <e><p><l>उन्होंने</l><r>वह<s n="prn"/><s n="dem"/><s n="p3"/><s n="mf"/><s n="pl"/><s n="dst"/><s n="erg"/></r></p></e>
-	<e><p><l>उन्होने</l><r>वह<s n="prn"/><s n="dem"/><s n="p3"/><s n="mf"/><s n="pl"/><s n="dst"/><s n="erg"/></r></p></e>
- 	 <e><p><l>उसमें</l><r>वह<s n="prn"/><s n="dem"/><s n="p3"/><s n="mf"/><s n="sg"/><s n="dst"/><s n="loc"/></r></p></e>
-	 <e><p><l>उनमें</l><r>वह<s n="prn"/><s n="dem"/><s n="p3"/><s n="mf"/><s n="pl"/><s n="dst"/><s n="loc"/></r></p></e>	
+	<pardef n="पिछल/_वाला__prn">
+        <e><p><l>ा<b/>वाला</l><r><b/>वाला<s n="prn"/><s n="pos"/><s n="m"/><s n="sg"/></r></p></e>
+        <e><p><l>ा<b/>वाला</l><r><b/>वाला<s n="prn"/><s n="pos"/><s n="f"/><s n="sg"/></r></p></e>
+	    <e><p><l>े<b/>वाले</l><r><b/>वाला<s n="prn"/><s n="pos"/><s n="m"/><s n="pl"/></r></p></e>
+        <e><p><l>े<b/>वाले</l><r><b/>वाला<s n="prn"/><s n="pos"/><s n="f"/><s n="pl"/></r></p></e>
+        <e><p><l>ा<b/>वाला</l><r><b/>वाला<s n="prn"/><s n="pos"/><s n="pol"/><s n="m"/><s n="sg"/></r></p></e>
+	</pardef>
+ 
+	<pardef n="उ/_सब__prn">
+        <e><p><l>स<b/>सब</l><r><b/>सब<s n="prn"/><s n="pos"/><s n="m"/><s n="sg"/></r></p></e>
+        <e><p><l>स<b/>सब</l><r><b/>सब<s n="prn"/><s n="pos"/><s n="f"/><s n="sg"/></r></p></e>
+	    <e><p><l>न<b/>सब</l><r><b/>सब<s n="prn"/><s n="pos"/><s n="m"/><s n="pl"/></r></p></e>
+        <e><p><l>न<b/>सब</l><r><b/>सब<s n="prn"/><s n="pos"/><s n="f"/><s n="pl"/></r></p></e>
+        <e><p><l>स<b/>सब</l><r><b/>सब<s n="prn"/><s n="pos"/><s n="pol"/><s n="m"/><s n="sg"/></r></p></e>
+	</pardef>
+ 
+    <pardef n="/यह__prn">      <!--Prox-->
+ 	 <e><p><l>यह</l><r>यह<s n="prn"/><s n="dem"/><s n="p3"/><s n="mf"/><s n="sg"/><s n="nom"/></r></p></e>
+     <e r="LR"><p><l>ये</l><r>यह<s n="prn"/><s n="dem"/><s n="p3"/><s n="mf"/><s n="sg"/><s n="nom"/></r></p></e>
+     <e><p><l>ये<b/>लोग</l><r>यह<s n="prn"/><s n="dem"/><s n="p3"/><s n="mf"/><s n="pl"/><s n="nom"/></r></p></e>
+ 	 <e><p><l>इस</l><r>यह<s n="prn"/><s n="dem"/><s n="p3"/><s n="mf"/><s n="sg"/><s n="obl"/></r></p></e>
+ 	 <e><p><l>इन</l><r>यह<s n="prn"/><s n="dem"/><s n="p3"/><s n="mf"/><s n="pl"/><s n="obl"/></r></p></e>
+	 <e><p><l>इन<b/>लोगोंको</l><r>यह<s n="prn"/><s n="dem"/><s n="p3"/><s n="mf"/><s n="pl"/><s n="obj"/></r></p></e>
+ 	 <e><p><l>इस</l><r>यह<s n="prn"/><s n="dem"/><s n="p3"/><s n="mf"/><s n="sg"/><s n="obj"/></r></p></e>
+ 	 <e><p><l>इन</l><r>यह<s n="prn"/><s n="dem"/><s n="p3"/><s n="mf"/><s n="pl"/><s n="obj"/></r></p></e>
+	 <e><p><l>इन<b/>लोगोंको</l><r>यह<s n="prn"/><s n="dem"/><s n="p3"/><s n="mf"/><s n="pl"/><s n="obj"/></r></p></e>
+ 	 <e><p><l>इससे</l><r>यह<s n="prn"/><s n="dem"/><s n="p3"/><s n="mf"/><s n="sg"/><s n="ins"/></r></p></e>
+ 	 <e><p><l>इनसे</l><r>यह<s n="prn"/><s n="dem"/><s n="p3"/><s n="mf"/><s n="pl"/><s n="ins"/></r></p></e>
+ 	 <e><p><l>इसे</l><r>यह<s n="prn"/><s n="dem"/><s n="p3"/><s n="mf"/><s n="sg"/><s n="dat"/></r></p></e>
+ 	 <e r="LR"><p><l>इसको</l><r>यह<s n="prn"/><s n="dem"/><s n="p3"/><s n="mf"/><s n="sg"/><s n="dat"/></r></p></e>
+ 	 <e r="LR"><p><l>इने</l><r>यह<s n="prn"/><s n="dem"/><s n="p3"/><s n="mf"/><s n="pl"/><s n="dat"/></r></p></e>
+ 	 <e><p><l>इन्हें</l><r>यह<s n="prn"/><s n="dem"/><s n="p3"/><s n="mf"/><s n="pl"/><s n="dat"/></r></p></e>
+	 <e r="LR"><p><l>इन्हीं</l><r>यह<s n="prn"/><s n="dem"/><s n="p3"/><s n="mf"/><s n="pl"/><s n="dat"/></r></p></e>
+	 <e r="LR"><p><l>इनको</l><r>यह<s n="prn"/><s n="dem"/><s n="p3"/><s n="mf"/><s n="pl"/><s n="dat"/></r></p></e>
+ 	 <e><p><l>इसकी</l><r>यह<s n="prn"/><s n="dem"/><s n="p3"/><s n="f"/><s n="sg"/><s n="gen"/></r></p></e>
+ 	 <e><p><l>इसके</l><r>यह<s n="prn"/><s n="dem"/><s n="p3"/><s n="mf"/><s n="sg"/><s n="gen"/></r></p></e>
+ 	 <e><p><l>इसका</l><r>यह<s n="prn"/><s n="dem"/><s n="p3"/><s n="m"/><s n="sg"/><s n="gen"/></r></p></e>
+ 	 <e><p><l>इनकी</l><r>यह<s n="prn"/><s n="dem"/><s n="p3"/><s n="f"/><s n="pl"/><s n="gen"/></r></p></e>
+ 	 <e><p><l>इनके</l><r>यह<s n="prn"/><s n="dem"/><s n="p3"/><s n="mf"/><s n="pl"/><s n="gen"/></r></p></e>
+ 	 <e><p><l>इनका</l><r>यह<s n="prn"/><s n="dem"/><s n="p3"/><s n="m"/><s n="pl"/><s n="gen"/></r></p></e>
+	 <e r="LR"><p><l>इन<b/>लोगो का</l><r>वह<s n="prn"/><s n="dem"/><s n="p3"/><s n="m"/><s n="pl"/><s n="gen"/></r></p></e>
+ 	 <e r="LR"><p><l>इन<b/>लोगो की</l><r>वह<s n="prn"/><s n="dem"/><s n="p3"/><s n="f"/><s n="pl"/><s n="gen"/></r></p></e>
+ 	 <e r="LR"><p><l>इन<b/>लोगो के</l><r>वह<s n="prn"/><s n="dem"/><s n="p3"/><s n="mf"/><s n="pl"/><s n="gen"/></r></p></e>
+ 	 <e><p><l>इसने</l><r>यह<s n="prn"/><s n="dem"/><s n="p3"/><s n="mf"/><s n="sg"/><s n="erg"/></r></p></e>
+ 	 <e><p><l>इन्होंने</l><r>यह<s n="prn"/><s n="dem"/><s n="p3"/><s n="mf"/><s n="pl"/><s n="erg"/></r></p></e>
+ 	 <e><p><l>इसमें</l><r>यह<s n="prn"/><s n="dem"/><s n="p3"/><s n="mf"/><s n="sg"/><s n="loc"/></r></p></e>
+	 <e><p><l>इनमें</l><r>यह<s n="prn"/><s n="dem"/><s n="p3"/><s n="mf"/><s n="pl"/><s n="loc"/></r></p></e>	
+	 <e><p><l>इसमे</l><r>यह<s n="prn"/><s n="dem"/><s n="p3"/><s n="mf"/><s n="pl"/><s n="loc"/></r></p></e>	
+</pardef>
+
+    <pardef n="/वह__prn">  <!--Dist-->
+ 	 <e><p><l>वह</l><r>वह<s n="prn"/><s n="dem"/><s n="p3"/><s n="mf"/><s n="sg"/><s n="nom"/></r></p></e>
+     <e r="LR"><p><l>वो</l><r>वह<s n="prn"/><s n="dem"/><s n="p3"/><s n="mf"/><s n="sg"/><s n="nom"/></r></p></e>
+     <e><p><l>वे</l><r>वह<s n="prn"/><s n="dem"/><s n="p3"/><s n="mf"/><s n="pl"/><s n="nom"/></r></p></e>
+ 	 <e><p><l>उस</l><r>वह<s n="prn"/><s n="dem"/><s n="p3"/><s n="mf"/><s n="sg"/><s n="obl"/></r></p></e>
+	 <e><p><l>उनको</l><r>वह<s n="prn"/><s n="dem"/><s n="p3"/><s n="mf"/><s n="sg"/><s n="obj"/></r></p></e>
+	 <e><p><l>उन<b/>लोगोंको</l><r>वह<s n="prn"/><s n="dem"/><s n="p3"/><s n="mf"/><s n="pl"/><s n="obj"/></r></p></e>	
+ 	 <e><p><l>उन</l><r>वह<s n="prn"/><s n="dem"/><s n="p3"/><s n="mf"/><s n="pl"/><s n="obl"/></r></p></e>
+ 	 <e><p><l>उससे</l><r>वह<s n="prn"/><s n="dem"/><s n="p3"/><s n="mf"/><s n="sg"/><s n="ins"/></r></p></e>
+	 <e><p><l>उनसे</l><r>वह<s n="prn"/><s n="dem"/><s n="p3"/><s n="mf"/><s n="pl"/><s n="ins"/></r></p></e>
+ 	 <e><p><l>उसे</l><r>वह<s n="prn"/><s n="dem"/><s n="p3"/><s n="mf"/><s n="sg"/><s n="dat"/></r></p></e>
+ 	 <e r="LR"><p><l>उसको</l><r>वह<s n="prn"/><s n="dem"/><s n="p3"/><s n="mf"/><s n="sg"/><s n="dat"/></r></p></e>
+ 	 <e r="LR"><p><l>उने</l><r>वह<s n="prn"/><s n="dem"/><s n="p3"/><s n="mf"/><s n="pl"/><s n="dat"/></r></p></e>
+ 	 <e><p><l>उन्हें</l><r>वह<s n="prn"/><s n="dem"/><s n="p3"/><s n="mf"/><s n="pl"/><s n="dat"/></r></p></e>
+ 	 <e r="LR"><p><l>उन्हीं</l><r>वह<s n="prn"/><s n="dem"/><s n="p3"/><s n="mf"/><s n="pl"/><s n="dat"/></r></p></e>
+ 	 <e r="LR"><p><l>उनको</l><r>वह<s n="prn"/><s n="dem"/><s n="p3"/><s n="mf"/><s n="pl"/><s n="dat"/></r></p></e>
+ 	 <e><p><l>उसकी</l><r>वह<s n="prn"/><s n="dem"/><s n="p3"/><s n="f"/><s n="sg"/><s n="gen"/></r></p></e>
+ 	 <e><p><l>उसके</l><r>वह<s n="prn"/><s n="dem"/><s n="p3"/><s n="mf"/><s n="sg"/><s n="gen"/></r></p></e> 
+ 	 <e><p><l>उसका</l><r>वह<s n="prn"/><s n="dem"/><s n="p3"/><s n="m"/><s n="sg"/><s n="gen"/></r></p></e>
+ 	 <e><p><l>उनकी</l><r>वह<s n="prn"/><s n="dem"/><s n="p3"/><s n="f"/><s n="pl"/><s n="gen"/></r></p></e>
+ 	 <e><p><l>उनके</l><r>वह<s n="prn"/><s n="dem"/><s n="p3"/><s n="mf"/><s n="pl"/><s n="gen"/></r></p></e>
+	 <e><p><l>उनका</l><r>वह<s n="prn"/><s n="dem"/><s n="p3"/><s n="m"/><s n="pl"/><s n="gen"/></r></p></e>
+	 <e r="LR"><p><l>उन<b/>लोगो का</l><r>वह<s n="prn"/><s n="dem"/><s n="p3"/><s n="m"/><s n="pl"/><s n="gen"/></r></p></e>
+ 	 <e r="LR"><p><l>उन<b/>लोगो की</l><r>वह<s n="prn"/><s n="dem"/><s n="p3"/><s n="f"/><s n="pl"/><s n="gen"/></r></p></e>
+ 	 <e r="LR"><p><l>उन<b/>लोगो के</l><r>वह<s n="prn"/><s n="dem"/><s n="p3"/><s n="mf"/><s n="pl"/><s n="gen"/></r></p></e>
+ 	 <e><p><l>उसने</l><r>वह<s n="prn"/><s n="dem"/><s n="p3"/><s n="mf"/><s n="sg"/><s n="erg"/></r></p></e>
+	 <e><p><l>उन्होंने</l><r>वह<s n="prn"/><s n="dem"/><s n="p3"/><s n="mf"/><s n="pl"/><s n="erg"/></r></p></e>
+	 <e r="LR"><p><l>उन्होने</l><r>वह<s n="prn"/><s n="dem"/><s n="p3"/><s n="mf"/><s n="pl"/><s n="erg"/></r></p></e>
+ 	 <e><p><l>उसमें</l><r>वह<s n="prn"/><s n="dem"/><s n="p3"/><s n="mf"/><s n="sg"/><s n="loc"/></r></p></e>
+	 <e><p><l>उनमें</l><r>वह<s n="prn"/><s n="dem"/><s n="p3"/><s n="mf"/><s n="pl"/><s n="loc"/></r></p></e>
      </pardef>
  
      <pardef n="/जो__prn">       
-          <e><p><l>जो</l><r>जो<s n="prn"/><s n="rel"/><s n="sg"/><s n="nom"/></r></p></e>
-          <e><p><l>जो</l><r>जो<s n="prn"/><s n="rel"/><s n="pl"/><s n="nom"/></r></p></e>
- 	 <e><p><l>जिस</l><r>जो<s n="prn"/><s n="rel"/><s n="sg"/><s n="obl"/></r></p></e>
- 	 <e><p><l>जिन</l><r>जो<s n="prn"/><s n="rel"/><s n="pl"/><s n="obl"/></r></p></e>
- 	 <e><p><l>जिससे</l><r>जो<s n="prn"/><s n="rel"/><s n="sg"/><s n="ins"/></r></p></e>
- 	 <e><p><l>जिनसे</l><r>जो<s n="prn"/><s n="rel"/><s n="pl"/><s n="ins"/></r></p></e>
- 	 <e><p><l>जिसे</l><r>जो<s n="prn"/><s n="rel"/><s n="sg"/><s n="dat"/></r></p></e>
- 	 <e r="LR"><p><l>जिसको</l><r>जो<s n="prn"/><s n="rel"/><s n="sg"/><s n="dat"/></r></p></e>
- 	 <e r="LR"><p><l>जिने</l><r>जो<s n="prn"/><s n="rel"/><s n="pl"/><s n="dat"/></r></p></e>
- 	 <e><p><l>जिन्हें</l><r>जो<s n="prn"/><s n="rel"/><s n="pl"/><s n="dat"/></r></p></e>
- 	 <e r="LR"><p><l>जिनको</l><r>जो<s n="prn"/><s n="rel"/><s n="pl"/><s n="dat"/></r></p></e>
+     <e><p><l>जो</l><r>जो<s n="prn"/><s n="rel"/><s n="mf"/><s n="sg"/><s n="nom"/></r></p></e>
+     <e><p><l>जो</l><r>जो<s n="prn"/><s n="rel"/><s n="mf"/><s n="pl"/><s n="nom"/></r></p></e>
+ 	 <e><p><l>जिस</l><r>जो<s n="prn"/><s n="rel"/><s n="mf"/><s n="sg"/><s n="obl"/></r></p></e>
+ 	 <e><p><l>जिन</l><r>जो<s n="prn"/><s n="rel"/><s n="mf"/><s n="pl"/><s n="obl"/></r></p></e>
+ 	 <e><p><l>जिससे</l><r>जो<s n="prn"/><s n="rel"/><s n="mf"/><s n="sg"/><s n="ins"/></r></p></e>
+ 	 <e><p><l>जिनसे</l><r>जो<s n="prn"/><s n="rel"/><s n="mf"/><s n="pl"/><s n="ins"/></r></p></e>
+ 	 <e><p><l>जिसे</l><r>जो<s n="prn"/><s n="rel"/><s n="mf"/><s n="sg"/><s n="dat"/></r></p></e>
+ 	 <e r="LR"><p><l>जिसको</l><r>जो<s n="prn"/><s n="rel"/><s n="mf"/><s n="sg"/><s n="dat"/></r></p></e>
+ 	 <e r="LR"><p><l>जिने</l><r>जो<s n="prn"/><s n="rel"/><s n="mf"/><s n="pl"/><s n="dat"/></r></p></e>
+ 	 <e><p><l>जिन्हें</l><r>जो<s n="prn"/><s n="rel"/><s n="mf"/><s n="pl"/><s n="dat"/></r></p></e>
+ 	 <e r="LR"><p><l>जिनको</l><r>जो<s n="prn"/><s n="rel"/><s n="mf"/><s n="pl"/><s n="dat"/></r></p></e>
  	 <e><p><l>जिसकी</l><r>जो<s n="prn"/><s n="rel"/><s n="f"/><s n="sg"/><s n="gen"/></r></p></e>
  	 <e><p><l>जिसके</l><r>जो<s n="prn"/><s n="rel"/><s n="mf"/><s n="sg"/><s n="gen"/></r></p></e>
  	 <e><p><l>जिसका</l><r>जो<s n="prn"/><s n="rel"/><s n="m"/><s n="sg"/><s n="gen"/></r></p></e>
  	 <e><p><l>जिनकी</l><r>जो<s n="prn"/><s n="rel"/><s n="f"/><s n="pl"/><s n="gen"/></r></p></e>
  	 <e><p><l>जिनके</l><r>जो<s n="prn"/><s n="rel"/><s n="mf"/><s n="pl"/><s n="gen"/></r></p></e>
  	 <e><p><l>जिनका</l><r>जो<s n="prn"/><s n="rel"/><s n="m"/><s n="pl"/><s n="gen"/></r></p></e>
- 	 <e><p><l>जिसने</l><r>जो<s n="prn"/><s n="rel"/><s n="sg"/><s n="erg"/></r></p></e>
- 	 <e><p><l>जिन्होंने</l><r>जो<s n="prn"/><s n="rel"/><s n="pl"/><s n="erg"/></r></p></e>
- 	 <e><p><l>जिसमें</l><r>जो<s n="prn"/><s n="rel"/><s n="sg"/><s n="loc"/></r></p></e>
-	 <e><p><l>जिसमे</l><r>जो<s n="prn"/><s n="rel"/><s n="sg"/><s n="loc"/></r></p></e>
- 	 <e><p><l>जिनमें</l><r>जो<s n="prn"/><s n="rel"/><s n="pl"/><s n="loc"/></r></p></e>	
-	<e><p><l>जिनमे</l><r>जो<s n="prn"/><s n="rel"/><s n="pl"/><s n="loc"/></r></p></e>	
+ 	 <e><p><l>जिसने</l><r>जो<s n="prn"/><s n="rel"/><s n="mf"/><s n="sg"/><s n="erg"/></r></p></e>
+ 	 <e><p><l>जिन्होंने</l><r>जो<s n="prn"/><s n="rel"/><s n="mf"/><s n="pl"/><s n="erg"/></r></p></e>
+	 <e><p><l>जिसमे</l><r>जो<s n="prn"/><s n="rel"/><s n="mf"/><s n="sg"/><s n="loc"/></r></p></e>
+	<e><p><l>जिनमे</l><r>जो<s n="prn"/><s n="rel"/><s n="mf"/><s n="pl"/><s n="loc"/></r></p></e>	
      </pardef>
- 
 
-     <pardef n="/क्या__prn">       
-          <e><p><l>क्या</l><r>क्या<s n="prn"/><s n="itg"/><s n="sg"/><s n="aa"/><s n="nom"/></r></p></e>
-          <e><p><l>क्या</l><r>क्या<s n="prn"/><s n="itg"/><s n="pl"/><s n="aa"/><s n="nom"/></r></p></e>
-          <e><p><l>कौन</l><r>क्या<s n="prn"/><s n="itg"/><s n="sg"/><s n="nn"/><s n="nom"/></r></p></e>
-          <e><p><l>कौन</l><r>क्या<s n="prn"/><s n="itg"/><s n="pl"/><s n="nn"/><s n="nom"/></r></p></e>
- 	 <e><p><l>किस</l><r>क्या<s n="prn"/><s n="itg"/><s n="sg"/><s n="obl"/></r></p></e>
- 	 <e><p><l>किन</l><r>क्या<s n="prn"/><s n="itg"/><s n="pl"/><s n="obl"/></r></p></e>
- 	 <e><p><l>किससे</l><r>क्या<s n="prn"/><s n="itg"/><s n="sg"/><s n="ins"/></r></p></e>
- 	 <e><p><l>किनसे</l><r>क्या<s n="prn"/><s n="itg"/><s n="pl"/><s n="ins"/></r></p></e>
- 	 <e><p><l>किसे</l><r>क्या<s n="prn"/><s n="itg"/><s n="sg"/><s n="dat"/></r></p></e>
- 	 <e r="LR"><p><l>किसको</l><r>क्या<s n="prn"/><s n="itg"/><s n="sg"/><s n="dat"/></r></p></e>
- 	 <e r="LR"><p><l>किने</l><r>क्या<s n="prn"/><s n="itg"/><s n="pl"/><s n="dat"/></r></p></e>
- 	 <e><p><l>किन्हें</l><r>क्या<s n="prn"/><s n="itg"/><s n="pl"/><s n="dat"/></r></p></e>
- 	 <e r="LR"><p><l>किनको</l><r>क्या<s n="prn"/><s n="itg"/><s n="pl"/><s n="dat"/></r></p></e>
- 	 <e><p><l>किसकी</l><r>क्या<s n="prn"/><s n="itg"/><s n="f"/><s n="sg"/><s n="gen"/></r></p></e>
- 	 <e><p><l>किसके</l><r>क्या<s n="prn"/><s n="itg"/><s n="mf"/><s n="sg"/><s n="gen"/></r></p></e>
- 	 <e><p><l>किसका</l><r>क्या<s n="prn"/><s n="itg"/><s n="m"/><s n="sg"/><s n="gen"/></r></p></e>
- 	 <e><p><l>किनकी</l><r>क्या<s n="prn"/><s n="itg"/><s n="f"/><s n="pl"/><s n="gen"/></r></p></e>
- 	 <e><p><l>किनके</l><r>क्या<s n="prn"/><s n="itg"/><s n="mf"/><s n="pl"/><s n="gen"/></r></p></e>
- 	 <e><p><l>किनका</l><r>क्या<s n="prn"/><s n="itg"/><s n="m"/><s n="pl"/><s n="gen"/></r></p></e>
- 	 <e><p><l>किसने</l><r>क्या<s n="prn"/><s n="itg"/><s n="sg"/><s n="erg"/></r></p></e>
- 	 <e><p><l>किन्होंने</l><r>क्या<s n="prn"/><s n="itg"/><s n="pl"/><s n="erg"/></r></p></e>
- 	 <e><p><l>किसमें</l><r>क्या<s n="prn"/><s n="itg"/><s n="sg"/><s n="loc"/></r></p></e>
- 	 <e><p><l>किनमें</l><r>क्या<s n="prn"/><s n="itg"/><s n="pl"/><s n="loc"/></r></p></e>	
-    </pardef>
+	<pardef n="/कौन__prn">       
+		<e><p><l>कौन</l><r>कौन<s n="prn"/><s n="itg"/><s n="mf"/><s n="sp"/><s n="nom"/></r></p></e>
+        <e><p><l>कौन</l><r>कौन<s n="prn"/><s n="itg"/><s n="mf"/><s n="sg"/><s n="obl"/></r></p></e>
+        <e><p><l>किन</l><r>कौन<s n="prn"/><s n="itg"/><s n="mf"/><s n="pl"/><s n="obl"/></r></p></e>
+        <e><p><l>कौन</l><r>कौन<s n="prn"/><s n="itg"/><s n="mf"/><s n="pl"/><s n="ins"/></r></p></e>
+        <e><p><l>किनसे</l><r>कौन<s n="prn"/><s n="itg"/><s n="mf"/><s n="pl"/><s n="ins"/></r></p></e>
+        <e r="LR"><p><l>किने</l><r>कौन<s n="prn"/><s n="itg"/><s n="mf"/><s n="pl"/><s n="dat"/></r></p></e>
+ 	    <e><p><l>किन्हें</l><r>कौन<s n="prn"/><s n="itg"/><s n="mf"/><s n="sp"/><s n="dat"/></r></p></e>
+ 	    <e r="LR"><p><l>किनको</l><r>कौन<s n="prn"/><s n="itg"/><s n="mf"/><s n="pl"/><s n="dat"/></r></p></e>
+        <e><p><l>कौन</l><r>कौन<s n="prn"/><s n="itg"/><s n="mf"/><s n="sg"/><s n="gen"/></r></p></e>
+        <e><p><l>किनका</l><r>कौन<s n="prn"/><s n="itg"/><s n="m"/><s n="pl"/><s n="gen"/></r></p></e>
+        <e><p><l>किनकी</l><r>कौन<s n="prn"/><s n="itg"/><s n="f"/><s n="pl"/><s n="gen"/></r></p></e>
+ 	    <e><p><l>किनके</l><r>कौन<s n="prn"/><s n="itg"/><s n="mf"/><s n="pl"/><s n="gen"/></r></p></e>
+        <e><p><l>किनसे</l><r>कौन<s n="prn"/><s n="itg"/><s n="mf"/><s n="sg"/><s n="erg"/></r></p></e>
+        <e><p><l>किन्होंने</l><r>कौन<s n="prn"/><s n="itg"/><s n="mf"/><s n="pl"/><s n="erg"/></r></p></e>
+        <e><p><l>कौन</l><r>कौन<s n="prn"/><s n="itg"/><s n="mf"/><s n="sg"/><s n="loc"/></r></p></e>
+        <e><p><l>किनमें</l><r>कौन<s n="prn"/><s n="itg"/><s n="mf"/><s n="pl"/><s n="loc"/></r></p></e>		
+    </pardef>  
+
+	<pardef n="/क्या__prn">       
+        <e><p><l>क्या</l><r>क्या<s n="prn"/><s n="itg"/><s n="mf"/><s n = "sp"/><s n="nom"/></r></p></e>  
+        <e><p><l>किस</l><r>क्या<s n="prn"/><s n="itg"/><s n="mf"/><s n = "sp"/><s n="obl"/></r></p></e> 
+ 	 	<e><p><l>किससे</l><r>क्या<s n="prn"/><s n="itg"/><s n="mf"/><s n = "sp"/><s n="ins"/></r></p></e>
+ 	 	<e><p><l>किसे</l><r>क्या<s n="prn"/><s n="itg"/><s n="mf"/><s n = "sp"/><s n="dat"/></r></p></e>
+ 	 	<e r="LR"><p><l>किसको</l><r>क्या<s n="prn"/><s n="itg"/><s n="mf"/><s n = "sp"/><s n="dat"/></r></p></e>
+        <e><p><l>किसका</l><r>क्या<s n="prn"/><s n="itg"/><s n="m"/><s n = "sp"/><s n="gen"/></r></p></e>  	 
+        <e><p><l>किसकी</l><r>क्या<s n="prn"/><s n="itg"/><s n="f"/><s n = "sp"/><s n="gen"/></r></p></e>
+ 	 	<e><p><l>किसके</l><r>क्या<s n="prn"/><s n="itg"/><s n="mf"/><s n = "pl"/><s n="gen"/></r></p></e>
+ 	 	<e><p><l>किसने</l><r>क्या<s n="prn"/><s n="itg"/><s n="mf"/><s n = "sp"/><s n="erg"/></r></p></e> 
+ 	 	<e><p><l>किसमें</l><r>क्या<s n="prn"/><s n="itg"/><s n="mf"/><s n = "sp"/><s n="loc"/></r></p></e>	
+    </pardef>  
 
     <pardef n="सब__prn">
       <e>       <p><l></l><r><s n="prn"/><s n="pers"/><s n="p3"/><s n="mf"/><s n="pl"/><s n="nom"/></r></p></e>
@@ -1429,10 +1813,34 @@
       <e>       <p><l>में</l><r><s n="prn"/><s n="pers"/><s n="p3"/><s n="mf"/><s n="pl"/><s n="loc"/></r></p></e>
       <e>       <p><l>से</l><r><s n="prn"/><s n="pers"/><s n="p3"/><s n="mf"/><s n="pl"/><s n="obl"/></r></p></e>
     </pardef>
+
+	<pardef n="खुद__prn">   
+      <e><p><l></l><r><s n="prn" /><s n="ref" /><s n="mf" /><s n="sg" /><s n="nom" /></r></p></e>      
+      <e><p><l>को</l><r><s n="prn" /><s n="ref" /><s n="mf" /><s n="sg" /><s n="obj" /></r></p></e>    
+      <e><p><l>के</l><r><s n="prn" /><s n="ref" /><s n="mf" /><s n="sg" /><s n="gen" /></r></p></e> 
+	  <e><p><l>का</l><r><s n="prn" /><s n="ref" /><s n="m" /><s n="sg" /><s n="gen" /></r></p></e>
+	  <e><p><l>की</l><r><s n="prn" /><s n="ref" /><s n="f" /><s n="sg" /><s n="gen" /></r></p></e>     
+      <e><p><l>के</l><r><s n="prn" /><s n="ref" /><s n="mf" /><s n="pl" /><s n="gen" /></r></p></e>      
+      <e><p><l></l><r><s n="prn" /><s n="ref" /><s n="mf" /><s n="pl" /><s n="nom" /></r></p></e>    
+      <e><p><l>को</l><r><s n="prn" /><s n="ref" /><s n="mf" /><s n="pl" /><s n="obj" /></r></p></e>      
+    </pardef>
 	
     <pardef n="der__prn">
       <e><p><l></l><r><s n="prn"/></r></p></e>
     </pardef>
+
+	<pardef n="किसी_को__prn">
+	  <e><p><l></l><r><s n="prn"/><s n="ind"/></r></p></e>
+    </pardef>
+
+	<pardef n="कौनसा__prn">
+	  <e><p><l></l><r><s n="prn"/><s n="itg"/></r></p></e>
+    </pardef> 
+
+	<pardef n="किस_को__prn">
+	  <e><p><l></l><r><s n="prn"/><s n="rel"/><s n="itg"/></r></p></e>
+    </pardef>
+
     <!-- SECTION: Adverbs -->      
     <pardef n="गलत__adv">
       <e><p><l></l><r><s n="adv"/></r></p></e>
@@ -1466,33 +1874,115 @@
 
 	<!-- SECTION: Numerals -->
 
+	<pardef n="एक__num">
+      <e><p><l></l><r><s n="num"/></r></p></e>
+	</pardef>
+
     <pardef n="आठ__num">
       <e><p><l></l><r><s n="num"/></r></p></e>
+<!--
       <e><p><l>वां</l><r><s n="num"/><s n="ord"/><s n ="m"/></r></p></e>
 	  <e><p><l>वीं</l><r><s n="num"/><s n="ord"/><s n ="f"/></r></p></e>
 	  <e><p><l>वें</l><r><s n="num"/><s n="ord"/><s n ="mf"/></r></p></e>
-       	  <e><p><l>ों</l><r><s n="num"/><s n="m"/><s n="pl"/><s n="obl"/></r></p></e>
+-->
+<!--       	  <e><p><l>ों</l><r><s n="num"/><s n="m"/><s n="pl"/><s n="obl"/></r></p></e> -->
     </pardef>
+
+	<!--old ordinals-->
+    <!--
     <pardef n="पहल/ा__ord">
       <e><p><l>ा</l><r>ा<s n="num"/><s n="ord"/><s n ="m"/></r></p></e>
       <e><p><l>ी</l><r>ा<s n="num"/><s n="ord"/><s n ="f"/></r></p></e>
       <e><p><l>े</l><r>ा<s n="num"/><s n="ord"/><s n ="mf"/></r></p></e>
-
-    </pardef>
-	<pardef n="एक__num">
-      <e><p><l></l><r><s n="num"/></r></p></e>
-    </pardef>
-	<pardef n="एक__ord">
-      <e><p><l></l><r><s n="num"/><s n="ord"/></r></p></e>
     </pardef>
 
+    <pardef n="एक__ord">
+      <e><p><l></l><r><s n="num"/><s n="ord"/><s n="m"/></r></p></e>
+      <e><p><l></l><r><s n="num"/><s n="ord"/><s n="f"/></r></p></e>
+      <e><p><l></l><r><s n="num"/><s n="ord"/><s n="mf"/></r></p></e>
+    </pardef> -->
+
+	<!--new ordinals-->
+
+	<pardef n="पहल/ा__adj">
+      <e><p><l>ा</l><r>ा<s n="adj"/><s n="m"/><s n="sg"/><s n="nom"/></r></p></e>
+      <e><p><l>े</l><r>ा<s n="adj"/><s n="m"/><s n="sg"/><s n="obl"/></r></p></e>
+      <e><p><l>े</l><r>ा<s n="adj"/><s n="m"/><s n="pl"/><s n="nom"/></r></p></e>
+      <e><p><l>े</l><r>ा<s n="adj"/><s n="m"/><s n="pl"/><s n="obl"/></r></p></e>
+      <e><p><l>ी</l><r>ा<s n="adj"/><s n="f"/><s n="sg"/><s n="nom"/></r></p></e>
+      <e><p><l>ी</l><r>ा<s n="adj"/><s n="f"/><s n="sg"/><s n="obl"/></r></p></e>
+      <e><p><l>ी</l><r>ा<s n="adj"/><s n="f"/><s n="pl"/><s n="nom"/></r></p></e>
+      <e><p><l>ी</l><r>ा<s n="adj"/><s n="f"/><s n="pl"/><s n="obl"/></r></p></e>
+	</pardef>
+ 
+	<pardef n="आठव/ाँ__adj">
+		<e><p><l>ाँ</l><r>ाँ<s n="adj"/><s n="m"/><s n="sg"/><s n="nom"/></r></p></e>
+		<e><p><l>े</l><r>ाँ<s n="adj"/><s n="m"/><s n="sg"/><s n="obl"/></r></p></e>
+		<e><p><l>ें</l><r>ाँ<s n="adj"/><s n="m"/><s n="pl"/><s n="nom"/></r></p></e>
+		<e><p><l>ें</l><r>ाँ<s n="adj"/><s n="m"/><s n="pl"/><s n="obl"/></r></p></e>
+		<e><p><l>ीँ</l><r>ाँ<s n="adj"/><s n="f"/><s n="sg"/><s n="nom"/></r></p></e>
+		<e><p><l>ीँ</l><r>ाँ<s n="adj"/><s n="f"/><s n="sg"/><s n="obl"/></r></p></e>
+		<e><p><l>ीँ</l><r>ाँ<s n="adj"/><s n="f"/><s n="pl"/><s n="nom"/></r></p></e>
+		<e><p><l>ीँ</l><r>ाँ<s n="adj"/><s n="f"/><s n="pl"/><s n="obl"/></r></p></e>
+	</pardef> 
+
+	<pardef n="प्रथम__adj">
+      <e><p><l></l><r><s n="adj"/><s n="m"/><s n="sg"/><s n="nom"/></r></p></e>
+      <e><p><l></l><r><s n="adj"/><s n="f"/><s n="sg"/><s n="nom"/></r></p></e>
+      <e><p><l></l><r><s n="adj"/><s n="m"/><s n="sg"/><s n="obl"/></r></p></e>
+      <e><p><l></l><r><s n="adj"/><s n="f"/><s n="sg"/><s n="obl"/></r></p></e>
+      <e><p><l></l><r><s n="adj"/><s n="m"/><s n="pl"/><s n="nom"/></r></p></e>
+      <e><p><l></l><r><s n="adj"/><s n="f"/><s n="pl"/><s n="nom"/></r></p></e>
+      <e><p><l></l><r><s n="adj"/><s n="m"/><s n="pl"/><s n="obl"/></r></p></e>
+      <e><p><l></l><r><s n="adj"/><s n="f"/><s n="pl"/><s n="obl"/></r></p></e>
+   </pardef> 
+
+   	<pardef n="सांज__n_f">
+      <e><p><l></l><r><s n="n"/><s n="m"/><s n="sg"/><s n="nom"/></r></p></e>
+      <e><p><l></l><r><s n="n"/><s n="f"/><s n="sg"/><s n="nom"/></r></p></e>
+      <e><p><l></l><r><s n="n"/><s n="m"/><s n="sg"/><s n="obl"/></r></p></e>
+      <e><p><l></l><r><s n="n"/><s n="f"/><s n="sg"/><s n="obl"/></r></p></e>
+      <e><p><l></l><r><s n="n"/><s n="m"/><s n="pl"/><s n="nom"/></r></p></e>
+      <e><p><l></l><r><s n="n"/><s n="f"/><s n="pl"/><s n="nom"/></r></p></e>
+      <e><p><l></l><r><s n="n"/><s n="m"/><s n="pl"/><s n="obl"/></r></p></e>
+      <e><p><l></l><r><s n="n"/><s n="f"/><s n="pl"/><s n="obl"/></r></p></e>
+   </pardef> 
+
 </pardefs>
 
   <section id="main" type="standard">
 
-    <!-- SECTION: Postpositions -->
+    <!-- SECTION: Postpositions --> 
+
+	<e lm="शुपास में"><i>शुपास में</i><par n="ने__post"/></e>
+	<e lm="शुरुआत से अंत तक"><i>शुरुआत से अंत तक</i><par n="ने__post"/></e>
+	<e lm="चारो ओर"><i>चारो ओर</i><par n="ने__post"/></e>
+	<e lm="कईयों के बीच"><i>कईयों के बीच</i><par n="ने__post"/></e>
+	<e lm="के माध्यम से"><i>के माध्यम से</i><par n="ने__post"/></e>
+	<e lm="कुछ ही समय में"><i>कुछ ही समय में</i><par n="ने__post"/></e>
+	<e lm="दोनों के बिच में"><i>दोनों के बिच में</i><par n="ने__post"/></e>
+	<e lm="आंतरिक"><i>आंतरिक</i><par n="ने__post"/></e>
+	<e lm="होने के लिए"><i>होने के लिए</i><par n="ने__post"/></e>
+	<e lm="विपरीत"><i>विपरीत</i><par n="ने__post"/></e>
+	<e lm="बाईं ओर"><i>बाईं ओर</i><par n="ने__post"/></e>
+	<e lm="दाईं ओर"><i>दाईं ओर</i><par n="ने__post"/></e>
+	<e lm="के बग़ैर"><i>के बग़ैर</i><par n="ने__post"/></e>
+	<e lm="बैगल मेइन"><i>बैगल मेइन</i><par n="ने__post"/></e>
+	<e lm="तकरीबन"><i>तकरीबन</i><par n="ने__post"/></e>
+	<e lm="नीचे की ओर"><i>नीचे की ओर</i><par n="ने__post"/></e>
+	<e lm="ऊपर"><i>ऊपर</i><par n="ने__post"/></e>
+	<e lm="जब तक"><i>जब तक</i><par n="ने__post"/></e>
+	<e lm="से"><i>से</i><par n="ने__post"/></e>
+	<e lm="बीच"><i>बीच</i><par n="ने__post"/></e>	
+	<e lm="बाहर"><i>बाहर</i><par n="ने__post"/></e>	
+	<e lm="बाद में"><i>बाद में</i><par n="ने__post"/></e>
+	<e lm="सामने वाले"><i>सामने वाले</i><par n="ने__post"/></e>
+	<e lm="पास में"><i>पास में</i><par n="ने__post"/></e>
+	<e lm="प्रति"><i>प्रति</i><par n="ने__post"/></e>	
+	<e lm="बनाम"><i>बनाम</i><par n="ने__post"/></e>
     <e lm="सिवा"><i>सिवा</i><par n="ने__post"/></e>
     <e lm="बकौल"><i>बकौल</i><par n="ने__post"/></e>
+	<e lm="अगला"><i>अगला</i><par n="ने__post"/></e>
     <e lm="ज़रीए"><i>ज़रीए</i><par n="ने__post"/></e>
     <e lm="हेतु"><i>हेतु</i><par n="ने__post"/></e>
     <e lm="सिवाय"><i>सिवाय</i><par n="ने__post"/></e>
@@ -1504,16 +1994,20 @@
 	<e lm="बिना"><i>बिना</i><par n="ने__post"/></e>
 	<e lm="अलावा"><i>अलावा</i><par n="ने__post"/></e>
 	<e lm="बतौर"><i>बतौर</i><par n="ने__post"/></e>
-    <e lm="का"><i></i><par n="/का__post"/></e>
+    <e lm="का"><i></i><par n="__gen_endings"/></e>
     <e lm="ने" ><i>ने</i><par n="ने__post"/></e>
     <e lm="को"><i>को</i><par n="ने__post"/></e>
     <e lm="में" ><i>में</i><par n="ने__post"/></e>
     <e lm="मे" ><i>मे</i><par n="ने__post"/></e>
+    <e lm="में से" ><i>में<b/>से</i><par n="ने__post"/></e>
     <e lm="पर"><i>पर</i><par n="ने__post"/></e>
     <e lm="लिए"><i>लिए</i><par n="ने__post"/></e>
     <e lm="लिये"><i>लिये</i><par n="ने__post"/></e>
+    <e lm="उपर से"><i>उपर<b/>से</i><par n="ने__post"/></e>
     <e lm="के उपर"><i>के<b/>उपर</i><par n="ने__post"/></e>
-    <e lm="के विरुद्ध"><i>के<b/>विरुद्ध</i><par n="ने__post"/></e>
+	<e lm="के बावजूद"><i>के<b/>बावजूद</i><par n="ने__post"/></e>
+    <e lm="के विरुद्ध"><i>के<b/>विरुद्ध</i><par n="ने__post"/></e> 
+	<e lm="विरुद्ध"><i>विरुद्ध</i><par n="ने__post"/></e>
     <e lm="के विरूद्ध"><i>के<b/>विरूद्ध</i><par n="ने__post"/></e>
     <e lm="के खिलाफ"><i>के<b/>खिलाफ</i><par n="ने__post"/></e>
 	<e lm="के अन्तर्गत"><i>के<b/>अन्तर्गत</i><par n="ने__post"/></e>
@@ -1523,12 +2017,16 @@
 	<e lm="के बाद"><i>के<b/>बाद</i><par n="ने__post"/></e>
 	<e lm="तहत"><i>तहत</i><par n="ने__post"/></e>
     <e lm="से"><i>से</i><par n="ने__post"/></e>
-    <e lm="द्वारा"><i>द्वारा</i><par n="ने__post"/></e> <!-- FIXME -->
+    <e lm="द्वारा"><i>द्वारा</i><par n="ने__post"/></e> 
     <e lm="अनुसार"><i>अनुसार</i><par n="ने__post"/></e>
     <e lm="मुताबिक़"><i>मुताबिक़</i><par n="ने__post"/></e>
     <e lm="सहित"><i>सहित</i><par n="ने__post"/></e>
     <e lm="दौरान"><i>दौरान</i><par n="ने__post"/></e>
     <e lm="बारे"><i>बारे</i><par n="ने__post"/></e>
+    <e lm="पीछे"><i>पीछे</i><par n="ने__post"/></e>
+    <e lm="सामने"><i>सामने</i><par n="ने__post"/></e>
+    <e lm="अंदर"><i>अंदर</i><par n="ने__post"/></e>
+    <e lm="अंदर से"><i>अंदर</i><par n="ने__post"/></e>
     <e lm="के लिये"><i>के<b/>लिये</i><par n="ने__post"/></e>
     <e lm="के लिए"><i>के<b/>लिए</i><par n="ने__post"/></e>
     <e lm="के द्वारा"><i>के<b/>द्वारा</i><par n="ने__post"/></e>
@@ -1545,7 +2043,9 @@
     <e lm="के मुताबिक"><i>के<b/>मुताबिक</i><par n="ने__post"/></e>
     <e lm="के अनुसार"><i>के<b/>अनुसार</i><par n="ने__post"/></e>
     <e lm="के बारे में"><i>के<b/>बारे<b/>में</i><par n="ने__post"/></e>
+    <e lm="के बारे"><i>के<b/>बारे</i><par n="ने__post"/></e>
 	<e lm="के समय"><i>के<b/>समय</i><par n="ने__post"/></e>
+	<e lm="के वक़्त"><i>के<b/>वक़्त</i><par n="ने__post"/></e>
 	<e lm="के दौरान"><i>के<b/>दौरान</i><par n="ने__post"/></e>
 	<e lm="के कारन"><i>के<b/>कारन</i><par n="ने__post"/></e>
 	<e lm="के कारण"><i>के<b/>कारण</i><par n="ने__post"/></e>
@@ -1555,6 +2055,9 @@
     <e lm="ओर"><i>ओर</i><par n="ने__post"/></e>
 	<e lm="खिलाफ़"><i>खिलाफ़</i><par n="ने__post"/></e>
 	<e lm="नीचे"><i>नीचे</i><par n="ने__post"/></e>
+	<e lm="ऑफ"><i>ऑफ</i><par n="ने__post"/></e>
+
+	<e lm="धोल"><i>धोल</i><par n="धोल__abl"/></e>
 
     <!-- SECTION: Determiners -->
     <e lm="दोनों"><i>दोनों</i><par n="दोनों__det"/></e>
@@ -1563,11 +2066,109 @@
     <e lm="जैस"><i>जैस</i><par n="ऐस__det"/></e>
     <e lm="कैस"><i>कैस</i><par n="ऐस__det"/></e>
     <e lm="ऐसा"><i>ऐस</i><par n="ऐस__det"/></e>
-    <e lm="ऐस"><i>ऐस</i><par n="ऐस__det"/></e>
     <e lm="वैस"><i>वैस</i><par n="ऐस__det"/></e>
-    <e lm="अनेक"><i>अनेक</i><par n="कई__det"/></e>
-      
-   <!-- Conjunctions -->
+
+<!--Deprecated analyses: please do not use them. These definitions, as well as the paradigms, should be removed after the hin-urd has been corrected -->
+	<e lm="क्या"><i>क्या</i><par n="सब__det"/></e>
+	<e lm="कौन सा"><i>कौन सा</i><par n="सब__det"/></e>
+	<e lm="कब"><i>कब</i><par n="सब__det"/></e>
+	<e lm="कैसे"><i>कैसे</i><par n="सब__det"/></e>
+	<e lm="क्यों"><i>क्यों</i><par n="सब__det"/></e>
+	<e lm="क्या करें"><i>क्या करें</i><par n="सब__det"/></e>
+	<e lm="किसके लिए"><i>किसके लिए</i><par n="सब__det"/></e>
+	<e lm="कब तक"><i>कब तक</i><par n="सब__det"/></e>
+	<e lm="कब"><i>कब</i><par n="सब__det"/></e>
+	<e lm="कौन"><i>कौन</i><par n="सब__det"/></e>
+	<e lm="कितने"><i>कितने</i><par n="सब__det"/></e>
+	<e lm="सब"><i>सब</i><par n="सब__det"/></e>
+	<e lm="उसका"><i>उसका</i><par n="सब__det"/></e>
+	<e lm="अधिक"><i>अधिक</i><par n="सब__det"/></e>
+	<e lm="यहीं"><i>यहीं</i><par n="सब__det"/></e>
+	<e lm="हूं"><i>हूं</i><par n="सब__det"/></e>
+	<e lm="हमारा"><i>हमारा</i><par n="हमारा__det"/></e>  
+	<e lm="मेरी"><i>मेरी</i><par n="हमारा__det"/></e>
+	<e lm="तुम लोगों का"><i>तुम लोगों का</i><par n="हमारा__det"/></e> 
+	<e lm="उसके"><i>उसके</i><par n="हमारा__det"/></e> 
+	<e lm="आईटी इस"><i>आईटी इस</i><par n="हमारा__det"/></e>
+        <e lm="उन लोगों का"><i>उन लोगों का</i><par n="हमारा__det"/></e> 
+
+<!--Qty--> 
+	<e lm="अनेक"><i>अनेक</i><par n="कई__det"/></e>
+    <e lm="द"><i>द</i><par n="कई__det"/></e>
+    <e lm="दि"><i>दि</i><par n="कई__det"/></e>
+    <e lm="कई"><i>कई</i><par n="कई__det"/></e>
+	<!-- <e lm="बहुत सारे"><i>बहुत सारे</i><par n="कई__det"/></e>  -->
+	<e lm="कुछ"><i>कुछ</i><par n="कई__det"/></e> 
+	<e lm="कोई नहीं"><i>कोई नहीं</i><par n="कई__det"/></e>  
+	<e lm="कोई भी"><i>कोई भी</i><par n="कई__det"/></e>  
+	<e lm="बहुत हो चुका"><i>बहुत हो चुका</i><par n="कई__det"/></e>  
+	<e lm="विभिन्न"><i>विभिन्न</i><par n="कई__det"/></e>
+	<e lm="विभिन्न"><i>विभिन्न</i><par n="कई__det"/></e>  
+	<e lm="थोड़ा सा"><i>थोड़ा सा</i><par n="कई__det"/></e>  
+	<!-- <e lm="बहुत सार"><i>बहुत सार</i><par n="कई__det"/></e>   -->
+	<e lm="बहुत कम"><i>बहुत कम</i><par n="कई__det"/></e> 
+	<e lm="बहुत"><i>बहुत</i><par n="कई__det"/></e>
+
+<!--Dem-->  
+	<e lm="यह है"><i>यह है</i><par n="यह__det"/></e>
+	<e lm="यह"><i>यह</i><par n="यह__det"/></e>
+	<e lm="यह सब"><i>यह सब</i><par n="यह__det"/></e>  
+	<e lm="उन सब"><i>उन सब</i><par n="यह__det"/></e>  
+	<e lm="अगला"><i>अगला</i><par n="यह__det"/></e>  
+	<e lm="पिछला वाला"><i>पिछला वाला</i><par n="यह__det"/></e>
+	<e lm="यहाँ का"><i>यहाँ का</i><par n="यह__det"/></e>
+
+<!--New determiners-->
+	<e lm="हमारा"><i>हमार</i><par n="हमार/ा__det"/></e>
+	<e lm="मेरा"><i>मेर</i><par n="हमार/ा__det"/></e>
+	<e lm="तेरा"><i>तेर</i><par n="हमार/ा__det"/></e>
+	<e lm="तुम्हारा"><i>तुम्हार</i><par n="हमार/ा__det"/></e>
+	<e lm="आपका"><i>आपक</i><par n="हमार/ा__det"/></e>
+	<e lm="इसका"><i>इसक</i><par n="हमार/ा__det"/></e>
+	<e lm="उसका"><i>उसक</i><par n="हमार/ा__det"/></e>
+	<e lm="इनका"><i>इनक</i><par n="हमार/ा__det"/></e>
+	<e lm="उनका"><i>उनक</i><par n="हमार/ा__det"/></e>
+	<e lm="अपना"><i>अपन</i><par n="हमार/ा__det"/></e>
+
+	<e lm="बहुत सारा"><i>बहुत</i><par n="बहुत/_सारा__det"/></e> 
+	<e lm="तुम लोग का"><i>तुम<b/>लोग</i><par n="तुम_लोग/_का__det"/></e>
+	<e lm="थोड़ सा"><i>थोड़</i><par n="थोड़/_सा__det"/></e> 
+	<e lm="य है"><i>य</i><par n="य/_है__det"/></e>  
+	<e lm="य सब"><i>य</i><par n="य/_सब__det"/></e>
+	<e lm="उ सब"><i>उ</i><par n="उ/_सब__det"/></e>
+	<e lm="पिछल वाला"><i>पिछल</i><par n="पिछल/_वाला__det"/></e>
+
+   <!-- Conjunctions -->  
+
+	<e lm="इसलिए"><i>इसलिए</i><par n="और__cnjcoo"/></e>
+	<e lm="हालाँकि"><i>हालाँकि</i><par n="और__cnjcoo"/></e>
+	<e lm="बोहत ज़ियादा"><i>बोहत ज़ियादा</i><par n="और__cnjcoo"/></e>
+	<e lm="दूसरी ओर"><i>दूसरी ओर</i><par n="और__cnjcoo"/></e>
+	<e lm="संपूर्ण"><i>संपूर्ण</i><par n="और__cnjcoo"/></e>
+	<e lm="अन्यथा"><i>अन्यथा</i><par n="और__cnjcoo"/></e>
+	<e lm="अर्थात्"><i>अर्थात्</i><par n="और__cnjcoo"/></e>
+	<e lm="इस दौरान"><i>इस दौरान</i><par n="और__cnjcoo"/></e>
+	<e lm="अतिरिक्त"><i>अतिरिक्त</i><par n="और__cnjcoo"/></e>
+	<e lm="संक्षेप में"><i>संक्षेप में</i><par n="और__cnjcoo"/></e>
+	<e lm="निष्कर्ष"><i>निष्कर्ष</i><par n="और__cnjcoo"/></e>
+	<e lm="इसके विपरीत"><i>इसके विपरीत</i><par n="और__cnjcoo"/></e>
+	<e lm="प्रसिद्ध"><i>प्रसिद्ध</i><par n="और__cnjcoo"/></e>
+	<e lm="फिर"><i>फिर</i><par n="और__cnjcoo"/></e>
+	<e lm="आम तौर पर"><i>आम तौर पर</i><par n="और__cnjcoo"/></e>
+	<e lm="इसके अलावा"><i>इसके अलावा</i><par n="और__cnjcoo"/></e>
+	<e lm="जैसे"><i>जैसे</i><par n="और__cnjcoo"/></e>
+	<e lm="ये न तोह वो"><i>ये न तोह वो</i><par n="और__cnjcoo"/></e>
+	<e lm="यहाँ तक की"><i>यहाँ तक की</i><par n="और__cnjcoo"/></e>
+	<e lm="विशेष रूप से"><i>विशेष रूप से</i><par n="और__cnjcoo"/></e>
+	<e lm="उसी प्रकार"><i>उसी प्रकार</i><par n="और__cnjcoo"/></e>
+	<e lm="जल्दी"><i>जल्दी</i><par n="और__cnjcoo"/></e>
+	<e lm="दोनों"><i>दोनों</i><par n="और__cnjcoo"/></e>
+	<e lm="जब तक"><i>जब तक</i><par n="और__cnjcoo"/></e>
+	<e lm="नतीजतन"><i>नतीजतन</i><par n="और__cnjcoo"/></e>
+	<e lm="अधिक"><i>अधिक</i><par n="और__cnjcoo"/></e>
+	<e lm="बाद में"><i>बाद में</i><par n="और__cnjcoo"/></e>
+	<e lm="अन्य"><i>अन्य</i><par n="और__cnjcoo"/></e>
+    <e lm="व"><i>व</i><par n="और__cnjcoo"/></e>
     <e lm="एवम्"><i>एवम्</i><par n="और__cnjcoo"/></e>
     <e lm="परन्तु"><i>परन्तु</i><par n="और__cnjcoo"/></e>
     <e lm="किंतु"><i>किंतु</i><par n="और__cnjcoo"/></e>
@@ -1584,15 +2185,75 @@
     <e lm="हालांकि"><i>हालांकि</i><par n="और__cnjcoo"/></e>
     <e lm="एण्ड"><i>एण्ड</i><par n="और__cnjcoo"/></e>
 	<e lm="एंड"><i>एंड</i><par n="और__cnjcoo"/></e>
-	<e lm="साथ ही"><i>साथ<b/>ही</i><par n="और__cnjcoo"/></e>
-   <!-- Sub-ordinating Conjunctions -->
+	<e lm="बल्कि"><i>बल्कि</i><par n="और__cnjcoo"/></e>
+	<e lm="साथ ही"><i>साथ<b/>ही</i><par n="और__cnjcoo"/></e>  
+	<e lm="अन्य"><i>अन्य</i><par n="और__cnjcoo"/></e>
+   <!-- Sub-ordinating Conjunctions -->   
+
+	<e lm="कौन"><i>कौन</i><par n="अगर__cnjsub"/></e>
+	<e lm="कब"><i>कब</i><par n="अगर__cnjsub"/></e>
+	<e lm="कौनसा"><i>कौनसा</i><par n="अगर__cnjsub"/></e>
+	<e lm="नहीं न"><i>नहीं न</i><par n="अगर__cnjsub"/></e>
+	<e lm="जहाँ कभी भी"><i>जहाँ कभी भी</i><par n="अगर__cnjsub"/></e>
+	<e lm="कहा पे"><i>कहा पे</i><par n="अगर__cnjsub"/></e>
+	<e lm="जब तक"><i>जब तक</i><par n="अगर__cnjsub"/></e>
+	<e lm="मान लीजिये"><i>मान लीजिये</i><par n="अगर__cnjsub"/></e>
+	<e lm="इसलिए कि"><i>इसलिए कि</i><par n="अगर__cnjsub"/></e>
+	<e lm="अब तक"><i>अब तक</i><par n="अगर__cnjsub"/></e>
+	<e lm="इसके बजायति"><i>इसके बजायति</i><par n="अगर__cnjsub"/></e>
+	<e lm="वह आपूर्ति"><i>वह आपूर्ति</i><par n="अगर__cnjsub"/></e>
+	<e lm="वह आपूर्"><i>वह आपूर्</i><par n="अगर__cnjsub"/></e>
+	<e lm="आपूर्ति"><i>आपूर्ति</i><par n="अगर__cnjsub"/></e>
+	<e lm="एक बार"><i>एक बार</i><par n="अगर__cnjsub"/></e>
+	<e lm="अब जब"><i>अब जब</i><par n="अगर__cnjsub"/></e>
+	<e lm="अब क्या है"><i>अब क्या है</i><par n="अगर__cnjsub"/></e>
+	<e lm="अब से"><i>अब से</i><par n="अगर__cnjsub"/></e>
+	<e lm="अन्यथा"><i>अन्यथा</i><par n="अगर__cnjsub"/></e>
+	<e lm="ऐशे ही"><i>ऐशे ही</i><par n="अगर__cnjsub"/></e>
+	<e lm="आदेशानुसार"><i>आदेशानुसार</i><par n="अगर__cnjsub"/></e>
+	<e lm="अवास्तविक"><i>अवास्तविक</i><par n="अगर__cnjsub"/></e>
+	<e lm="यदि ऐसा है तो"><i>यदि ऐसा है तो</i><par n="अगर__cnjsub"/></e>
+	<e lm="केवल"><i>केवल</i><par n="अगर__cnjsub"/></e>
+	<e lm="वजह"><i>वजह</i><par n="अगर__cnjsub"/></e>
+	<e lm="जितनी जल्दी हो सके"><i>जितनी जल्दी हो सके</i><par n="अगर__cnjsub"/></e>
+	<e lm="जितना संभव"><i>जितना संभव</i><par n="अगर__cnjsub"/></e>
+	<e lm="जहां तक संभव हो"><i>जहां तक<b/>संभव हो</i><par n="अगर__cnjsub"/></e>
+	<e lm="जैसे की"><i>जैसे<b/>की</i><par n="अगर__cnjsub"/></e>
+	<e lm="फिर"><i>फिर</i><par n="अगर__cnjsub"/></e>
     <e lm="बशर्ते कि"><i>बशर्ते<b/>कि</i><par n="अगर__cnjsub"/></e>
+	<e lm="जैसा"><i>जैसा</i><par n="अगर__cnjsub"/></e>
     <e lm="बशर्ते"><i>बशर्ते</i><par n="अगर__cnjsub"/></e>		
     <e lm="अगर"><i>अगर</i><par n="अगर__cnjsub"/></e>	
     <e lm="कि"><i>कि</i><par n="अगर__cnjsub"/></e>
     <e lm="जोकि"><i>जोकि</i><par n="अगर__cnjsub"/></e>
     <e lm="िक"><i>िक</i><par n="अगर__cnjsub"/></e>
-	<!-- Adverbial Conjunctions -->
+
+	<!-- Adverbial Conjunctions --> 
+	<e lm="निश्चित रूप से"><i>निश्चित रूप से</i><par n="क्योंकि__cnjadv"/></e>
+	<e lm="वास्तव में"><i>वास्तव<b/>में</i><par n="क्योंकि__cnjadv"/></e>
+	<e lm="नतीजतन"><i>नतीजतन</i><par n="क्योंकि__cnjadv"/></e>
+	<e lm="उसी प्रकार"><i>उसी प्रकार</i><par n="क्योंकि__cnjadv"/></e>
+	<e lm="भले ही"><i>भले<b/>ही</i><par n="क्योंकि__cnjadv"/></e>
+	<e lm="बल्कि"><i>बल्कि</i><par n="क्योंकि__cnjadv"/></e>
+	<e lm="अन्यथा"><i>अन्यथा</i><par n="क्योंकि__cnjadv"/></e>
+	<e lm="उसके बाद"><i>उसके<b/>बाद</i><par n="क्योंकि__cnjadv"/></e>
+	<e lm="यानी"><i>यानी</i><par n="क्योंकि__cnjadv"/></e>
+	<e lm="बुइस दौरान"><i>बुइस<b/>दौरान</i><par n="क्योंकि__cnjadv"/></e>
+	<e lm="द्धिमान की तरह"><i>द्धिमान<b/>की तरह</i><par n="क्योंकि__cnjadv"/></e>
+	<e lm="तुलना से"><i>तुलना से</i><par n="क्योंकि__cnjadv"/></e>
+	<e lm="भी"><i>भी</i><par n="क्योंकि__cnjadv"/></e>
+	<e lm="वैसे भी"><i>वैसे<b/>भी</i><par n="क्योंकि__cnjadv"/></e>
+	<e lm="फिर व"><i>फिर<b/>व</i><par n="क्योंकि__cnjadv"/></e>
+	<e lm="अंत तक"><i>अंत<b/>तक</i><par n="क्योंकि__cnjadv"/></e>
+	<e lm="समान रूप से"><i>समान<b/>रूप से</i><par n="क्योंकि__cnjadv"/></e>
+	<e lm="कहीं और"><i>कहीं और</i><par n="क्योंकि__cnjadv"/></e>
+	<e lm="इसके विपरीत"><i>इसके<b/>विपरीत</i><par n="क्योंकि__cnjadv"/></e>
+	<e lm="ज़रूर"><i>ज़रूर</i><par n="क्योंकि__cnjadv"/></e>
+	<e lm="आलावा"><i>आलावा</i><par n="क्योंकि__cnjadv"/></e>
+	<e lm="जो भी हो"><i>जो भी हो</i><par n="क्योंकि__cnjadv"/></e>
+	<e lm="और भी"><i>और<b/>भी</i><par n="क्योंकि__cnjadv"/></e>
+	<e lm="अधिकता से"><i>अधिकता से</i><par n="क्योंकि__cnjadv"/></e>
+	<e lm="तदनुसार"><i>तदनुसार</i><par n="क्योंकि__cnjadv"/></e>
     <e lm="वरना"><i>वरना</i><par n="क्योंकि__cnjadv"/></e>
     <e lm="मात्र"><i>मात्र</i><par n="क्योंकि__cnjadv"/></e>
 	<e lm="फिर भी"><i>फिर<b/>भी</i><par n="क्योंकि__cnjadv"/></e>
@@ -1617,25 +2278,57 @@
 	<e lm="अर्थात्"><i>अर्थात्</i><par n="क्योंकि__cnjadv"/></e>
     <e lm="तो"><i>तो</i><par n="क्योंकि__cnjadv"/></e>
     <e lm="चूँकि"><i>चूँकि</i><par n="क्योंकि__cnjadv"/></e>
-	<!-- Numerals -->
+
+	<!-- Numerals --> 
+	 
+	<e lm="ग्यारहवें"><i>ग्यारहवें</i><par n="एक__num"/></e> 
+	<e lm="तिरासी"><i>तिरासी</i><par n="एक__num"/></e>
+	<e lm="एक सौ"><i>एक<b/>सौ</i><par n="एक__num"/></e>
+	<e lm="पचासी"><i>पचासी</i><par n="एक__num"/></e>
+	<e lm="छत्तीस"><i>छत्तीस</i><par n="एक__num"/></e>
+	<e lm="त्रेसठ"><i>त्रेसठ</i><par n="एक__num"/></e>
+	<e lm="सात सौ"><i>सात<b/>सौ</i><par n="एक__num"/></e>
+	<e lm="उन्नीस"><i>उन्नीस</i><par n="एक__num"/></e>
+	<e lm="सतत्तर"><i>सतत्तर</i><par n="एक__num"/></e>
+	<e lm="पंचानवे"><i>पंचानवे</i><par n="एक__num"/></e>
+	<e lm="नव्वे"><i>नव्वे</i><par n="एक__num"/></e>
+	<e lm="उनचास"><i>उनचास</i><par n="एक__num"/></e>
+	<e lm="उनासी"><i>उनासी</i><par n="एक__num"/></e>
+	<e lm="बिरशी"><i>बिरशी</i><par n="एक__num"/></e>
+	<e lm="अतन्ना"><i>अतन्ना</i><par n="एक__num"/></e>
+	<e lm="सत्तासी"><i>सत्तासी</i><par n="एक__num"/></e>
+	<e lm="तेंतीस"><i>तेंतीस</i><par n="एक__num"/></e>
+	<e lm="अठारह"><i>अठारह</i><par n="एक__num"/></e>
+	<e lm="इक्यानबे"><i>इक्यानबे</i><par n="एक__num"/></e>
+	<e lm="तीन सौ"><i>तीन<b/>सौ</i><par n="एक__num"/></e>
+	<e lm="आठ सौ"><i>आठ<b/>सौ</i><par n="एक__num"/></e>
+	<e lm="इक्कीस"><i>इक्कीस</i><par n="एक__num"/></e>
+	<e lm="दो सौ"><i>दो सौ</i><par n="एक__num"/></e>
+	<e lm="चार सौ"><i>चार<b/>सौ</i><par n="एक__num"/></e>
+	<e lm="बानबे"><i>बानबे</i><par n="एक__num"/></e>
+	<e lm="हजारों"><i>हजारों</i><par n="एक__num"/></e>
+	<e lm="छियानबे"><i>छियानबे</i><par n="एक__num"/></e>
+	<e lm="छे सौ"><i>छे<b/>सौ</i><par n="एक__num"/></e>
+	<e lm="चौबीस"><i>चौबीस</i><par n="एक__num"/></e>
+	<e lm="पांच सौ"><i>पांच<b/>सौ</i><par n="एक__num"/></e>
+	<e lm="नौसो"><i>नौसो</i><par n="एक__num"/></e>
+	<e lm="अट्ठानबे"><i>अट्ठानबे</i><par n="एक__num"/></e>
+	<e lm="छे"><i>छे</i><par n="एक__num"/></e>
+	<e lm="​छे सौ"><i>​छे सौ</i><par n="एक__num"/></e>
     <e lm="दो-चार"><i>दो-चार</i><par n="एक__num"/></e>
     <e lm="वन"><i>वन</i><par n="एक__num"/></e>
 	<e lm="शुन्य"><i>शुन्य</i><par n="एक__num"/></e>
 	<e lm="शून्य"><i>शून्य</i><par n="एक__num"/></e>
 	<e lm="सिफर"><i>सिफर</i><par n="एक__num"/></e>
 	<e lm="एक"><i>एक</i><par n="एक__num"/></e>
-	<e lm="पहला"><i>पहल</i><par n="पहल/ा__ord"/></e>
 	<e lm="दो"><i>दो</i><par n="एक__num"/></e>
-	<e lm="दूसरा"><i>दूसर</i><par n="पहल/ा__ord"/></e>
 	<e lm="तीन"><i>तीन</i><par n="एक__num"/></e>
-	<e lm="तीसरा"><i>तीसर</i><par n="पहल/ा__ord"/></e>
 	<e lm="चार"><i>चार</i><par n="एक__num"/></e>
-	<e lm="चौथा"><i>चौथ</i><par n="पहल/ा__ord"/></e>
-	<e lm="पांच"><i>पांच</i><par n="आठ__num"/></e>
+	<e lm="पाँच"><i>पाँच</i><par n="एक__num"/></e>
 	<e lm="छः"><i>छः</i><par n="एक__num"/></e>
 	<e lm="छह"><i>छह</i><par n="एक__num"/></e>
+	<e lm="पांच"><i>पांच</i><par n="आठ__num"/></e>
 	<e lm="छठ"><i>छठ</i><par n="आठ__num"/></e>
-	<e lm="छठा"><i>छठ</i><par n="पहल/ा__ord"/></e>
 	<e lm="सात"><i>सात</i><par n="आठ__num"/></e>
 	<e lm="आठ"><i>आठ</i><par n="आठ__num"/></e>
 	<e lm="नौ"><i>नौ</i><par n="आठ__num"/></e>
@@ -1732,39 +2425,175 @@
 	<e lm="अट्ठानवे"><i>अट्ठानवे</i><par n="आठ__num"/></e>
 	<e lm="निन्यानवे"><i>निन्यानवे</i><par n="आठ__num"/></e>
 	<e lm="सौ"><i>सौ</i><par n="आठ__num"/></e>
-	<e lm="शत"><i>शत</i><par n="आठ__num"/></e>
-	<e lm="वां"><i>वां</i><par n="एक__ord"/></e>
-	<e lm="वीं"><i>वीं</i><par n="एक__ord"/></e>
-	<e lm="वें"><i>वें</i><par n="एक__ord"/></e>
-	<e lm="प्रथम"><i>प्रथम</i><par n="एक__ord"/></e>
-	<e lm="द्वितीय"><i>द्वितीय</i><par n="एक__ord"/></e>
-	<e lm="तृतीय"><i>तृतीय</i><par n="एक__ord"/></e>
-	<e lm="चतुर्थ"><i>चतुर्थ</i><par n="एक__ord"/></e>
-	<e lm="पंचम"><i>पंचम</i><par n="एक__ord"/></e>
-	<e lm="षष्ठ"><i>षष्ठ</i><par n="एक__ord"/></e>
-	<e lm="सप्तम"><i>सप्तम</i><par n="एक__ord"/></e>
-	<e lm="अष्टम"><i>अष्टम</i><par n="एक__ord"/></e>
-	<e lm="नवम"><i>नवम</i><par n="एक__ord"/></e>
+	<e lm="शत"><i>शत</i><par n="आठ__num"/></e>	
 	<e lm="हजार"><i>हजार</i><par n="आठ__num"/></e>
 	<e lm="हज़ार"><i>हज़ार</i><par n="आठ__num"/></e>
 	<e lm="लाख"><i>लाख</i><par n="आठ__num"/></e>
 	<e lm="करोड़"><i>करोड़</i><par n="आठ__num"/></e>
 	<e lm="अरब"><i>अरब</i><par n="आठ__num"/></e>
-    <!-- SECTION: Pronouns -->
- 
+
+<!--Ordinals-->
+	<e lm="वां"><i>वां</i><par n="प्रथम__adj"/></e>
+	<e lm="वीं"><i>वीं</i><par n="प्रथम__adj"/></e>
+	<e lm="वें"><i>वें</i><par n="प्रथम__adj"/></e>
+	<e lm="प्रथम"><i>प्रथम</i><par n="प्रथम__adj"/></e>
+	<e lm="द्वितीय"><i>द्वितीय</i><par n="प्रथम__adj"/></e>
+	<e lm="तृतीय"><i>तृतीय</i><par n="प्रथम__adj"/></e>
+	<e lm="चतुर्थ"><i>चतुर्थ</i><par n="प्रथम__adj"/></e>
+	<e lm="पंचम"><i>पंचम</i><par n="प्रथम__adj"/></e>
+	<e lm="षष्ठ"><i>षष्ठ</i><par n="प्रथम__adj"/></e>
+	<e lm="सप्तम"><i>सप्तम</i><par n="प्रथम__adj"/></e>
+	<e lm="अष्टम"><i>अष्टम</i><par n="प्रथम__adj"/></e>
+	<e lm="नवम"><i>नवम</i><par n="प्रथम__adj"/></e>
+	<e lm="पहला"><i>पहल</i><par n="पहल/ा__adj"/></e>
+	<e lm="दूसरा"><i>दूसर</i><par n="पहल/ा__adj"/></e>
+	<e lm="तीसरा"><i>तीसर</i><par n="पहल/ा__adj"/></e>
+	<e lm="चौथा"><i>चौथ</i><par n="पहल/ा__adj"/></e>
+	<e lm="पाञ्चवा"><i>पाञ्चवा</i><par n="पहल/ा__adj"/></e>
+	<e lm="छठा"><i>छठ</i><par n="पहल/ा__adj"/></e>
+	<e lm="सातवा"><i>सातव</i><par n="पहल/ा__adj"/></e>
+	<e lm="नौंवा"><i>नौंव</i><par n="पहल/ा__adj"/></e>
+	<e lm="आठवाँ"><i>आठव</i><par n="आठव/ाँ__adj"/></e>
+	<e lm="दसवाँ"><i>दसव</i><par n="आठव/ाँ__adj"/></e>
+	<e lm="ग्यारहवाँ"><i>ग्यारहव</i><par n="आठव/ाँ__adj"/></e>
+	<e lm="बारहवाँ"><i>बारहव</i><par n="आठव/ाँ__adj"/></e>
+	<e lm="तेरहवाँ"><i>तेरहव</i><par n="आठव/ाँ__adj"/></e>
+	<e lm="चौदहवाँ"><i>चौदहव</i><par n="आठव/ाँ__adj"/></e>
+	<e lm="पन्द्रहवाँ"><i>पन्द्रहव</i><par n="आठव/ाँ__adj"/></e>
+	<e lm="सोलहवाँ"><i>सोलहव</i><par n="आठव/ाँ__adj"/></e>
+	<e lm="सत्तरहवाँ"><i>सत्तरहव</i><par n="आठव/ाँ__adj"/></e>
+	<e lm="अठारहवाँ"><i>अठारहव</i><par n="आठव/ाँ__adj"/></e>
+	<e lm="उन्नीसवाँ"><i>उन्नीसव</i><par n="आठव/ाँ__adj"/></e>
+	<e lm="बीसवाँ"><i>बीसव</i><par n="आठव/ाँ__adj"/></e>
+	<e lm="इक्कीसवाँ"><i>इक्कीसव</i><par n="आठव/ाँ__adj"/></e>
+	<e lm="बाईसवाँ"><i>बाईसव</i><par n="आठव/ाँ__adj"/></e>
+	<e lm="तेईसवाँ"><i>तेईसव</i><par n="आठव/ाँ__adj"/></e>
+	<e lm="चौबीसवाँ"><i>चौबीसव</i><par n="आठव/ाँ__adj"/></e>
+	<e lm="पच्चीसवाँ"><i>पच्चीसव</i><par n="आठव/ाँ__adj"/></e>
+	<e lm="छब्बीसवाँ"><i>छब्बीसव</i><par n="आठव/ाँ__adj"/></e>
+	<e lm="सत्ताइसवाँ"><i>सत्ताइसव</i><par n="आठव/ाँ__adj"/></e>
+	<e lm="अट्ठाइसवाँ"><i>अट्ठाइसव</i><par n="आठव/ाँ__adj"/></e>
+	<e lm="उनतीसवाँ"><i>उनतीसव</i><par n="आठव/ाँ__adj"/></e>
+	<e lm="तीसवाँ"><i>तीसव</i><par n="आठव/ाँ__adj"/></e>
+	<e lm="इकतीसवाँ"><i>इकतीसव</i><par n="आठव/ाँ__adj"/></e>
+	<e lm="बत्तीसवाँ"><i>बत्तीसव</i><par n="आठव/ाँ__adj"/></e>
+	<e lm="तैंतीसवाँ"><i>तैंतीसव</i><par n="आठव/ाँ__adj"/></e>
+	<e lm="चौंतीसवाँ"><i>चौंतीसव</i><par n="आठव/ाँ__adj"/></e>
+	<e lm="पैंतीसवाँ"><i>पैंतीसव</i><par n="आठव/ाँ__adj"/></e>
+	<e lm="छत्तीसवाँ"><i>छत्तीसव</i><par n="आठव/ाँ__adj"/></e>
+	<e lm="सैंतीसवाँ"><i>सैंतीसव</i><par n="आठव/ाँ__adj"/></e>
+	<e lm="अड़तीसवाँ"><i>अड़तीसव</i><par n="आठव/ाँ__adj"/></e>
+	<e lm="उनतालीसवाँ"><i>उनतालीसव</i><par n="आठव/ाँ__adj"/></e>
+	<e lm="चालीसवाँ"><i>चालीसव</i><par n="आठव/ाँ__adj"/></e>
+	<e lm="इकतालीसवाँ"><i>इकतालीसव</i><par n="आठव/ाँ__adj"/></e>
+	<e lm="बयालीसवाँ"><i>बयालीसव</i><par n="आठव/ाँ__adj"/></e>
+	<e lm="तैंतालीसवाँ"><i>तैंतालीसव</i><par n="आठव/ाँ__adj"/></e>
+	<e lm="चौतालीसवाँ"><i>चौतालीसव</i><par n="आठव/ाँ__adj"/></e>
+	<e lm="पैंतालीसवाँ"><i>पैंतालीसव</i><par n="आठव/ाँ__adj"/></e>
+	<e lm="छियालीसवाँ"><i>छियालीसव</i><par n="आठव/ाँ__adj"/></e>
+	<e lm="सैंतालीसवाँ"><i>सैंतालीसव</i><par n="आठव/ाँ__adj"/></e>
+	<e lm="अड़तालीसवाँ"><i>अड़तालीसव</i><par n="आठव/ाँ__adj"/></e>
+	<e lm="उनचासवाँ"><i>उनचासव</i><par n="आठव/ाँ__adj"/></e>
+	<e lm="पचासवाँ"><i>पचासव</i><par n="आठव/ाँ__adj"/></e>
+	<e lm="इक्यावनवाँ"><i>इक्यावनव</i><par n="आठव/ाँ__adj"/></e>
+	<e lm="बावनवाँ"><i>बावनव</i><par n="आठव/ाँ__adj"/></e>
+	<e lm="तिरेपानवाँ"><i>तिरेपानव</i><par n="आठव/ाँ__adj"/></e>
+	<e lm="चौवनवाँ"><i>चौवनव</i><par n="आठव/ाँ__adj"/></e>
+	<e lm="पचपनवाँ"><i>पचपनव</i><par n="आठव/ाँ__adj"/></e>
+	<e lm="छप्पनवाँ"><i>छप्पनव</i><par n="आठव/ाँ__adj"/></e>
+	<e lm="सतावनवाँ"><i>सतावनव</i><par n="आठव/ाँ__adj"/></e>
+	<e lm="अट्ठावनवाँ"><i>अट्ठावनव</i><par n="आठव/ाँ__adj"/></e>
+	<e lm="उनसठवाँ"><i>उनसठव</i><par n="आठव/ाँ__adj"/></e>
+	<e lm="साठवाँ"><i>साठव</i><par n="आठव/ाँ__adj"/></e>
+	<e lm="इकसठवाँ"><i>इकसठव</i><par n="आठव/ाँ__adj"/></e>
+	<e lm="बासठवाँ"><i>बासठव</i><par n="आठव/ाँ__adj"/></e>
+	<e lm="तिरसठवाँ"><i>तिरसठव</i><par n="आठव/ाँ__adj"/></e>
+	<e lm="चौंसठवाँ"><i>चौंसठव</i><par n="आठव/ाँ__adj"/></e>
+	<e lm="पैंसठवाँ"><i>पैंसठव</i><par n="आठव/ाँ__adj"/></e>
+	<e lm="छियासठवाँ"><i>छियासठव</i><par n="आठव/ाँ__adj"/></e>
+	<e lm="सड़सठवाँ"><i>सड़सठव</i><par n="आठव/ाँ__adj"/></e>
+	<e lm="अड़सठवाँ"><i>अड़सठव</i><par n="आठव/ाँ__adj"/></e>
+	<e lm="उनहत्तरवाँ"><i>उनहत्तरव</i><par n="आठव/ाँ__adj"/></e>
+	<e lm="सत्तरवाँ"><i>सत्तरव</i><par n="आठव/ाँ__adj"/></e>
+
+	<e lm="इकहत्तरवाँ"><i>इकहत्तरव</i><par n="आठव/ाँ__adj"/></e>
+	<e lm="बहत्तरवाँ"><i>बहत्तरव</i><par n="आठव/ाँ__adj"/></e>
+	<e lm="तिहत्तरवाँ"><i>तिहत्तरव</i><par n="आठव/ाँ__adj"/></e>
+	<e lm="चौहत्तरवाँ"><i>चौहत्तरव</i><par n="आठव/ाँ__adj"/></e>
+	<e lm="पचहत्तरवाँ"><i>पचहत्तरव</i><par n="आठव/ाँ__adj"/></e>
+	<e lm="छिहत्तरवाँ"><i>छिहत्तरव</i><par n="आठव/ाँ__adj"/></e>
+	<e lm="सतहत्तरवाँ"><i>सतहत्तरव</i><par n="आठव/ाँ__adj"/></e>
+	<e lm="अठहत्तरवाँ"><i>अठहत्तरव</i><par n="आठव/ाँ__adj"/></e>
+	<e lm="उनासीवाँ"><i>उनासीव</i><par n="आठव/ाँ__adj"/></e>
+	<e lm="अस्सीवाँ"><i>अस्सीव</i><par n="आठव/ाँ__adj"/></e>
+
+	<e lm="इक्यासीवाँ"><i>इक्यासीव</i><par n="आठव/ाँ__adj"/></e>
+	<e lm="बयासीवाँ"><i>बयासीव</i><par n="आठव/ाँ__adj"/></e>
+	<e lm="तिरासीवाँ"><i>तिरासीव</i><par n="आठव/ाँ__adj"/></e>
+	<e lm="चौरासीवाँ"><i>चौरासीव</i><par n="आठव/ाँ__adj"/></e>
+	<e lm="पचासीवाँ"><i>पचासीव</i><par n="आठव/ाँ__adj"/></e>
+	<e lm="छियासीवाँ"><i>छियासीव</i><par n="आठव/ाँ__adj"/></e>
+	<e lm="सतासीवाँ"><i>सतासीव</i><par n="आठव/ाँ__adj"/></e>
+	<e lm="अठासीवाँ"><i>अठासीव</i><par n="आठव/ाँ__adj"/></e>
+	<e lm="नवासीवाँ"><i>नवासीव</i><par n="आठव/ाँ__adj"/></e>
+	<e lm="नब्बेवाँ"><i>नब्बेव</i><par n="आठव/ाँ__adj"/></e>
+	<e lm="इक्यानवेवाँ"><i>इक्यानवेव</i><par n="आठव/ाँ__adj"/></e>
+	<e lm="बानवेवाँ"><i>बानवेव</i><par n="आठव/ाँ__adj"/></e>
+	<e lm="तिरानवेवाँ"><i>तिरानवेव</i><par n="आठव/ाँ__adj"/></e>
+	<e lm="चौरानवेवाँ"><i>चौरानवेव</i><par n="आठव/ाँ__adj"/></e>
+	<e lm="पंचानवेवाँ"><i>पंचानवेव</i><par n="आठव/ाँ__adj"/></e>
+	<e lm="छियानवेवाँ"><i>छियानवेव</i><par n="आठव/ाँ__adj"/></e>
+	<e lm="सतानवेवाँ"><i>सतानवेव</i><par n="आठव/ाँ__adj"/></e>
+	<e lm="अट्ठानवेवाँ"><i>अट्ठानवेव</i><par n="आठव/ाँ__adj"/></e>
+	<e lm="निन्यानवेवाँ"><i>निन्यानवेव</i><par n="आठव/ाँ__adj"/></e>
+	<e lm="सौंवाँ"><i>सौंव</i><par n="आठव/ाँ__adj"/></e>
+	<e lm="हज़ारवाँ"><i>हज़ारव</i><par n="आठव/ाँ__adj"/></e>
+
+    <!-- SECTION: Pronouns -->  
+
+	 <e lm="कौनसा"><i>कौनसा</i><par n="कौनसा__prn"/></e>
+	 <e lm="तुम"><i>तुम</i><par n="तुम__prn"/></e> 
+	 <e lm="एक और"><i>एक<b/>और</i><par n="किसी_को__prn"/></e>
+	 <e lm="किसी को"><i>किसी<b/>को</i><par n="किसी_को__prn"/></e>
+	 <e lm="कुछ भी"><i>कुछ<b/>भी</i><par n="किसी_को__prn"/></e>
+	 <e lm="सब लोग"><i>सब<b/>लोग</i><par n="किसी_को__prn"/></e>
+	 <e lm="हर एक चीज़"><i>हर<b/>एक<b/>चीज़</i><par n="किसी_को__prn"/></e>
+	 <e lm="कोई नहीं"><i>कोई<b/>नहीं</i><par n="किसी_को__prn"/></e>
+	 <e lm="कुछ एक"><i>कुछ<b/>एक</i><par n="किसी_को__prn"/></e>
+	 <e lm="आप"><i>आप</i><par n="आप__prn"/></e>
      <e lm="मैं"><i>म</i><par n="म/ैं__prn"/></e>
      <e lm="हम"><i>ह</i><par n="ह/म__prn"/></e>
      <e lm="तुम"><i>त</i><par n="त/ुम__prn"/></e>
      <e lm="तू"><i>त</i><par n="त/ू__prn"/></e>
-     <e lm="आप"><i>आप</i><par n="आप__prn"/></e>
-     <e lm="अप"><i>अ</i><par n="अ/प__prn"/></e>	
+     <!-- <e lm="अप"><i>अ</i><par n="अ/प__prn"/></e>	 -->
      <e lm="यह"><i></i><par n="/यह__prn"/></e>
-     <e lm="वह"><i></i><par n="/वह__prn"/></e>
+	 <e lm="वह"><i></i><par n="/वह__prn"/></e>
      <e lm="जो"><i></i><par n="/जो__prn"/></e>
      <e lm="क्या"><i></i><par n="/क्या__prn"/></e>
+	 <e lm="कौन"><i></i><par n="/कौन__prn"/></e>
      <e lm="सब"><i>सब</i><par n="सब__prn"/></e>
-     <e lm="ख़ुद"><i>ख़ुद</i><par n="सब__prn"/></e>
-     <e lm="खुद"><i>खुद</i><par n="सब__prn"/></e>	
+     <e lm="खुद"><i>खुद</i><par n="खुद__prn"/></e>	
+	 <e lm="अपने"><i>अपने</i><par n="खुद__prn"/></e>
+     <e lm="अपने आप"><i>अपने<b/>आप</i><par n="खुद__prn"/></e> 
+	 <e lm="अप"><i>अप</i><par n="der__prn"/></e>
+	 <e lm="कहा पे"><i>कहा<b/>पे</i><par n="किस_को__prn"/></e>
+	 <e lm="किस को"><i>किस<b/>को</i><par n="किस_को__prn"/></e>
+
+	<e lm="अपना"><i>अपन</i><par n="अपन/ा__prn"/></e>
+	<e lm="मेरा"><i>मेर</i><par n="अपन/ा__prn"/></e>
+	<e lm="हमारा"><i>हमार</i><par n="अपन/ा__prn"/></e>
+	<e lm="इसका"><i>इसक</i><par n="अपन/ा__prn"/></e>
+	<e lm="उनका"><i>उनक</i><par n="अपन/ा__prn"/></e> 
+	<e lm="उसका"><i>उसक</i><par n="अपन/ा__prn"/></e>
+	<e lm="आपका"><i>आपक</i><par n="अपन/ा__prn"/></e>
+	
+	<e lm="बहुत सारा"><i>बहुत</i><par n="बहुत/_सारा__prn"/></e> 
+	<e lm="तुम लोग का"><i>तुम<b/>लोग</i><par n="तुम_लोग/_का__prn"/></e>
+	<e lm="थोड़ सा"><i>थोड़</i><par n="थोड़/_सा__prn"/></e> 
+	<e lm="य है"><i>य</i><par n="य/_है__prn"/></e>  
+	<e lm="उ सब"><i>उ</i><par n="उ/_सब__prn"/></e>
+	<e lm="पिछल वाला"><i>पिछल</i><par n="पिछल/_वाला__prn"/></e>
+
    <!-- Verbs -->
 	<e lm="ख़त्म हो"><i>ख़त्म<b/></i><par n="/होना__vblex_iv"/></e>
 	<e lm="ख़त्म कर"><i>ख़त्म<b/>क</i><par n="क/र__vblex_tv"/></e>
@@ -1780,6 +2609,7 @@
 	<e lm="बनवा"><i>बनवा</i><par n="बता__vblex_tv"/></e>
  	<e lm="ला"><i>ला</i><par n="बता__vblex_tv"/></e>
  	<e lm="सटा"><i>सटा</i><par n="बता__vblex_tv"/></e>
+	<e lm="पकड़ता"><i>पकड़</i><par n="बोल__vblex_tv"/></e>
 	<e lm="चाह"><i>चाह</i><par n="बोल__vblex_tv"/></e>
 	<e lm="चकरा"><i>चकरा</i><par n="आ__vblex_iv"/></e>
 	<e lm="चहक"><i>चहक</i><par n="चल__vblex_iv"/></e>
@@ -1916,7 +2746,7 @@
 	<e lm="घबरा"><i>घबरा</i><par n="आ__vblex_iv"/></e>
 	<e lm="घुस"><i>घुस</i><par n="चल__vblex_iv"/></e>
 	<e lm="चमक"><i>चमक</i><par n="चल__vblex_iv"/></e>
-	<e lm="चिपक"><i>चिपक</i><par n="चल__vblex_iv"/></e>
+	<e lm="चिपक"><i>चिपक</i><par n="बोल__vblex_tv"/></e>
 	<e lm="चिल्ला"><i>चिल्ला</i><par n="आ__vblex_iv"/></e>
 	<e lm="चीख"><i>चीख</i><par n="चल__vblex_iv"/></e>
 	<e lm="चौंक"><i>चौंक</i><par n="चल__vblex_iv"/></e>
@@ -1994,6 +2824,8 @@
 	<e lm="खेल"><i>खेल</i><par n="बोल__vblex_tv"/></e>
 	<e lm="देख"><i>देख</i><par n="बोल__vblex_tv"/></e>
     <e lm="सुन"><i>सुन</i><par n="बोल__vblex_tv"/></e>
+	<e lm="खाना"><i>खाना</i><par n="बोल__vblex_tv"/></e>
+	<e lm="पीना"><i>पीना</i><par n="बोल__vblex_tv"/></e>
     <e lm="जान"><i>जान</i><par n="बोल__vblex_tv"/></e>
     <e lm="सोच"><i>सोच</i><par n="बोल__vblex_tv"/></e>
     <e lm="गिन"><i>गिन</i><par n="बोल__vblex_tv"/></e>
@@ -2013,8 +2845,8 @@
 	<e lm="पी"><i>प</i><par n="प/ी__vblex_tv"/></e>		
 	<e lm="दे"><i>द</i><par n="द/े__vblex_tv"/></e>
 	<e lm="ले"><i>ल</i><par n="द/े__vblex_tv"/></e>
-	<e lm="कर ले"><i>कर ल</i><par n="द/े__vblex_tv"/></e>
-	<e lm="कर दे"><i>कर द</i><par n="द/े__vblex_tv"/></e>
+	<e lm="कर ले"><i>कर<b/>ल</i><par n="द/े__vblex_tv"/></e>
+	<e lm="कर दे"><i>कर<b/>द</i><par n="द/े__vblex_tv"/></e>
 	<e lm="सो"><i>सो</i><par n="सो__vblex_iv"/></e>
     <e lm="बैठ"><i>बैठ</i><par n="चल__vblex_iv"/></e>
     <e lm="हँस"><i>हँस</i><par n="चल__vblex_iv"/></e>
@@ -2022,7 +2854,9 @@
     <e lm="हंस"><i>हंस</i><par n="चल__vblex_iv"/></e>
 	<e lm="छुप"><i>छुप</i><par n="चल__vblex_iv"/></e>		
 	<e lm="चल"><i>चल</i><par n="चल__vblex_iv"/></e>	
-	<e lm="होना"><i></i><par n="/होना__vblex_iv"/></e>
+	<e lm="कोशिश"><i>कोशिश</i><par n="चल__vblex_iv"/></e>	
+	<e lm="होना"><i></i><par n="/होना__vblex_iv"/></e> 
+	<e lm="हुक्म देना"><i>हुक्म<b/>देना</i><par n="चल__vblex_iv"/></e>
 	<e lm="कर रह"><i>कर<b/>रह</i><par n="रह__vaux_iv"/></e>	
 	<e lm="रह"><i>रह</i><par n="रह__vaux_iv"/></e>
 	<e lm="जा रह"><i>जा<b/>रह</i><par n="रह__vaux_iv"/></e>
@@ -2034,6 +2868,7 @@
     <e lm="चुक"><i>चुक</i><par n="रह__vaux_iv"/></e>
 	<e lm="कहा जा"><i>कहा<b/></i><par n="जा__vblex_iv"/></e>
 	<e lm="जा"><i></i><par n="जा__vblex_iv"/></e>
+	<e lm="लीजिए"><i></i><par n="ले__vbser"/></e>
 	<e lm="हो जा"><i>हो<b/></i><par n="जा__vblex_iv"/></e>
 	<e lm="हो जा"><i>हो</i><par n="जा__vblex_iv"/></e>
 	<e lm="आ"><i>आ</i><par n="आ__vblex_iv"/></e>
@@ -2202,7 +3037,7 @@
 	<e lm="हथिया"><i>हथिया</i><par n="बता__vblex_tv"/></e>
 	<e lm="हांक"><i>हांक</i><par n="बोल__vblex_tv"/></e>
 	<e lm="हिला"><i>हिला</i><par n="बता__vblex_tv"/></e>
-			
+	<e lm="उठो"><i>उठो</i><par n="चल__vblex_iv"/></e>		
     <e lm="हो"><i></i><par n="/हो__vbser"/></e>
 	<e lm="मान"><i>मान</i><par n="बोल__vblex_tv"/></e>
 	<e lm="उठ"><i>उठ</i><par n="बोल__vblex_tv"/></e>
@@ -2339,7 +3174,7 @@
 	<e lm="खिंच"><i>खिंच</i><par n="बोल__vblex_tv"/></e>
 	<e lm="पहन"><i>पहन</i><par n="चल__vblex_iv"/></e>
 	<e lm="तिड़क"><i>तिड़क</i><par n="चल__vblex_iv"/></e>
-	<e lm="ठूँस"><i>ठूँस</i><par n="बोल__vblex_tv"/></e>
+	<!-- <e lm="ठूँस"><i>ठू�����स</i><par n="बोल__vblex_tv"/></e> -->
 	<e lm="खदेड़"><i>खदेड़</i><par n="बोल__vblex_tv"/></e>
 	<e lm="जंच"><i>जंच</i><par n="बोल__vblex_tv"/></e>
 	<e lm="ठंडा"><i>ठंडा</i><par n="आ__vblex_iv"/></e>
@@ -2639,7 +3474,8 @@
 	<e lm="रिस"><i>रिस</i><par n="बोल__vblex_tv"/></e>
 	<e lm="उजेड़"><i>उजेड़</i><par n="चल__vblex_iv"/></e>
 	<e lm="कौध"><i>कौध</i><par n="चल__vblex_iv"/></e>
-	<e lm="पसंद"><i>पसंद</i><par n="बोल__vblex_tv"/></e>
+  <e lm="पसंद"><i>पसंद</i><par n="बोल__vblex_tv"/></e>
+  <e lm="पसंद हो"><i>पसंद<b/></i><par n="/हो__vbser"/></e>
 	<e lm="बत्"><i>बत्</i><par n="बोल__vblex_tv"/></e>
 	<e lm="बतल्"><i>बतल्</i><par n="बोल__vblex_tv"/></e>
 	<e lm="कह्"><i>कह्</i><par n="बोल__vblex_tv"/></e>
@@ -2683,11 +3519,18 @@
 	<e lm="टा़ग"><i>टा़ग</i><par n="बोल__vblex_tv"/></e>
 	<e lm="ढलक"><i>ढलक</i><par n="बोल__vblex_tv"/></e>
 	<e lm="सरक्"><i>सरक्</i><par n="बोल__vblex_tv"/></e>
-	<e lm="सूँघ"><i>सूँघ</i><par n="बोल__vblex_tv"/></e>
+	<e lm="सूँघ"><i>सूँघ</i><par n="बोल__vblex_tv"/></e> 
+	<e lm="चालना"><i>चालना</i><par n="बोल__vblex_tv"/></e>  
 	<e lm="महक"><i>महक</i><par n="बोल__vblex_tv"/></e>
 	<e lm="भाफ"><i>भाफ</i><par n="बोल__vblex_tv"/></e>
 	<e lm="रेंग्"><i>रेंग्</i><par n="बोल__vblex_tv"/></e>
-	<e lm="भिग"><i>भिग</i><par n="चल__vblex_iv"/></e>
+	<e lm="भिग"><i>भिग</i><par n="चल__vblex_iv"/></e>  
+	<e lm="पसंद करना"><i>पसंद<b/>करना</i><par n="चल__vblex_iv"/></e>  
+	<e lm="महसूस करना"><i>महसूस<b/>करना</i><par n="चल__vblex_iv"/></e>
+	<e lm="कपड़ा पहनना"><i>कपड़ा<b/>पहनना</i><par n="चल__vblex_iv"/></e>
+	<e lm="अटके रहेना"><i>अटके<b/>रहेना</i><par n="चल__vblex_iv"/></e> 
+	<e lm="खुदाई करना"><i>खुदाई<b/>करना</i><par n="चल__vblex_iv"/></e>
+	<e lm="लगे रहना"><i>लगे<b/>रहना</i><par n="चल__vblex_iv"/></e>
 	<e lm="सिसक"><i>सिसक</i><par n="बोल__vblex_tv"/></e>
 	<e lm="ज्ँआच"><i>ज्ँआच</i><par n="बोल__vblex_tv"/></e>
 	<e lm="आँअक"><i>आँअक</i><par n="बोल__vblex_tv"/></e>
@@ -2702,6 +3545,7 @@
 	<e lm="बंध"><i>बंध</i><par n="बोल__vblex_tv"/></e>
 	<e lm="जूझ"><i>जूझ</i><par n="बोल__vblex_tv"/></e>
 	<e lm="प्रविभाजित"><i>प्रविभाजित</i><par n="बोल__vblex_tv"/></e>
+	<e lm="आना"><i>आन</i><par n="आ__vblex_iv"/></e>  
 	<e lm="जँच"><i>जँच</i><par n="बोल__vblex_tv"/></e>
 	<e lm="बुहार"><i>बुहार</i><par n="बोल__vblex_tv"/></e>
 	<e lm="सूज"><i>सूज</i><par n="बोल__vblex_tv"/></e>
@@ -2869,14 +3713,16 @@
 	<e lm="आगे कह"><i>आगे<b/>कह</i><par n="चल__vblex_iv"/></e>
 	<e lm="योग कर"><i>योग<b/>क</i><par n="क/र__vblex_tv"/></e>
 	<e lm="आगे बता"><i>आगे<b/>बता</i><par n="आ__vblex_iv"/></e>
-	<e lm="निवेदन कर"><i>निवेदन<b/>क</i><par n="क/र__vblex_tv"/></e>
+	<e lm="टालके"><i>टालके</i><par n="क/र__vblex_tv"/></e>   
+	<e lm="संबोधित कर"><i>संबोधित<b/>क</i><par n="क/र__vblex_tv"/></e>
 	<e lm="भाषण दे"><i>भाषण<b/>द</i><par n="द/े__vblex_tv"/></e>
 	<e lm="ध्यान दिला"><i>ध्यान<b/>दिला</i><par n="बता__vblex_tv"/></e>
 	<e lm="संबोधित कर"><i>संबोधित<b/>क</i><par n="क/र__vblex_tv"/></e>
 	<e lm="पता लिख"><i>पता<b/>लिख</i><par n="बोल__vblex_tv"/></e>
 	<e lm="निशाना ले"><i>निशाना<b/>ल</i><par n="द/े__vblex_tv"/></e>
 	<e lm="उद्धृत कर"><i>उद्धृत<b/>क</i><par n="क/र__vblex_tv"/></e>
-	<e lm="पालन कर"><i>पालन<b/>क</i><par n="क/र__vblex_tv"/></e>
+	<e lm="पालन कर"><i>पालन<b/>क</i><par n="क/र__vblex_tv"/></e> 
+	<e lm="पालन"><i>पालन</i><par n="क/र__vblex_tv"/></e>
 	<e lm="स्थगित कर"><i>स्थगित<b/>क</i><par n="क/र__vblex_tv"/></e>
 	<e lm="चला जा"><i>चला<b/>जा</i><par n="आ__vblex_iv"/></e>
 	<e lm="घोषित कर"><i>घोषित<b/>क</i><par n="क/र__vblex_tv"/></e>
@@ -3252,6 +4098,7 @@
 	<e lm="पेश आ"><i>पेश<b/>आ</i><par n="बोल__vblex_tv"/></e>
 	<e lm="भरोसा कर"><i>भरोसा<b/>क</i><par n="क/र__vblex_tv"/></e>
 	<e lm="विश्वास कर"><i>विश्वास<b/>क</i><par n="क/र__vblex_tv"/></e>
+	<e lm="विश्वास करना"><i>विश्वास<b/>क</i><par n="क/र__vblex_tv"/></e>
 	<e lm="छोटा समझ"><i>छोटा<b/>समझ</i><par n="बोल__vblex_tv"/></e>
 	<e lm="बो-बो कर"><i>बो-बो<b/>क</i><par n="क/र__vblex_tv"/></e>
 	<e lm="घंटी लगा"><i>घंटी<b/>लगा</i><par n="बता__vblex_tv"/></e>
@@ -3760,7 +4607,7 @@
 	<e lm="राजी कर"><i>राजी<b/>क</i><par n="क/र__vblex_tv"/></e>
 	<e lm="खड़ा कर"><i>खड़ा<b/>क</i><par n="क/र__vblex_tv"/></e>
 	<e lm="आगाह कर"><i>आगाह<b/>क</i><par n="क/र__vblex_tv"/></e>
-	<e lm="खबरदार कर"><i>खबरदार<b/>क</i><par n="क/र__vblex_tv"/></e>
+	<!-- <e lm="खबरदार कर"><i>खबरदार<b/>क</i><par n="क/��__vblex_tv"/></e> -->
 	<e lm="बैठ जा"><i>बैठ<b/>जा</i><par n="बता__vblex_tv"/></e>
 	<e lm="गउफा खोद"><i>गउफा<b/>खोद</i><par n="बोल__vblex_tv"/></e>
 	<e lm="कूद-फाँद कर"><i>कूद-फाँद<b/>क</i><par n="क/र__vblex_tv"/></e>
@@ -3797,6 +4644,7 @@
 	<e lm="खाका बना"><i>खाका<b/>बना</i><par n="बता__vblex_tv"/></e>
 	<e lm="चुनौति दे"><i>चुनौति<b/>द</i><par n="द/े__vblex_tv"/></e>
 	<e lm="आपत्ति उठा"><i>आपत्ति<b/>उठा</i><par n="बता__vblex_tv"/></e>
+	<e lm="उठाना"><i>उठाना</i><par n="बता__vblex_tv"/></e>
 	<e lm="मौक़ा मिल"><i>मौक़ा<b/>मिल</i><par n="बोल__vblex_tv"/></e>
 	<e lm="जोखिम उठा"><i>जोखिम<b/>उठा</i><par n="बता__vblex_tv"/></e>
 	<e lm="खतरा उठा"><i>खतरा<b/>उठा</i><par n="बता__vblex_tv"/></e>
@@ -3957,9 +4805,11 @@
 	<e lm="घुल-मिल जा"><i>घुल-मिल<b/>जा</i><par n="आ__vblex_iv"/></e>
 	<e lm="खट-खट कर"><i>खट-खट<b/>क</i><par n="क/र__vblex_tv"/></e>
 	<e lm="ऊपर चढ"><i>ऊपर<b/>चढ</i><par n="चल__vblex_iv"/></e>
+	<e lm="तोड़ देना"><i>तोड़<b/>देना</i><par n="चल__vblex_iv"/></e>
 	<e lm="ऊपर जा"><i>ऊपर<b/>जा</i><par n="आ__vblex_iv"/></e>
 	<e lm="चढ जा"><i>चढ<b/>जा</i><par n="आ__vblex_iv"/></e>
 	<e lm="उपर चढ"><i>उपर<b/>चढ</i><par n="चल__vblex_iv"/></e>
+	<e lm="चोट पहुंचाना"><i>चोट<b/>पहुंचाना</i><par n="चल__vblex_iv"/></e>
 	<e lm="आरोहन कर"><i>आरोहन<b/>क</i><par n="क/र__vblex_tv"/></e>
 	<e lm="उँचा हो"><i>उँचा<b/></i><par n="/होना__vblex_iv"/></e>
 	<e lm="पर्वतारोहण कर"><i>पर्वतारोहण<b/>क</i><par n="क/र__vblex_tv"/></e>
@@ -3967,9 +4817,16 @@
 	<e lm="लिपट जा"><i>लिपट<b/>जा</i><par n="बता__vblex_tv"/></e>
 	<e lm="जकड़ा हो"><i>जकड़ा<b/></i><par n="/होना__vblex_iv"/></e>
 	<e lm="बाल कतर"><i>बाल<b/>कतर</i><par n="बोल__vblex_tv"/></e>
-	<e lm="किलप लगा"><i>किलप<b/>लगा</i><par n="बता__vblex_tv"/></e>
+	<e lm="किलप लगा"><i>किलप<b/>लगा</i><par n="बता__vblex_tv"/></e> 
+	<e lm="शुरू करना"><i>शुरू<b/>करना</i><par n="बता__vblex_tv"/></e>
+	<e lm="प्रवाहित होना"><i>प्रवाहित<b/>होना</i><par n="बता__vblex_tv"/></e>
+	<e lm="खरीदना"><i>खरीदना</i><par n="बता__vblex_tv"/></e> 
+	<e lm="झुकना"><i>झुकना</i><par n="बता__vblex_tv"/></e>
+	<e lm="जलाना"><i>जलाना</i><par n="बता__vblex_tv"/></e> 
+	<e lm="कटना"><i>कटना</i><par n="बता__vblex_tv"/></e> 
 	<e lm="समय मिला"><i>समय<b/>मिला</i><par n="बता__vblex_tv"/></e>
-	<e lm="अवरुद्ध हो"><i>अवरुद्ध<b/></i><par n="/होना__vblex_iv"/></e>
+	<e lm="अवरुद्ध हो"><i>अवरुद्ध<b/></i><par n="/होना__vblex_iv"/></e>  
+	<e lm="जन्म दिया"><i>जन्म<b/>दिया<b/></i><par n="चल__vblex_iv"/></e> 
 	<e lm="अवरुद्ध कर"><i>अवरुद्ध<b/>क</i><par n="क/र__vblex_tv"/></e>
 	<e lm="प्रतिरूपण कर"><i>प्रतिरूपण<b/>क</i><par n="क/र__vblex_tv"/></e>
 	<e lm="पूर्ण कर"><i>पूर्ण<b/>क</i><par n="क/र__vblex_tv"/></e>
@@ -4057,7 +4914,8 @@
 	<e lm="वचनबद्ध हो"><i>वचनबद्ध<b/></i><par n="/होना__vblex_iv"/></e>
 	<e lm="वचनबद्ध कर"><i>वचनबद्ध<b/>क</i><par n="क/र__vblex_tv"/></e>
 	<e lm="सम्पर्क बना"><i>सम्पर्क<b/>बना</i><par n="बता__vblex_tv"/></e>
-	<e lm="आना-जाना कर"><i>आना-जाना<b/>क</i><par n="क/र__vblex_tv"/></e>
+	<e lm="आना-जाना कर"><i>आना-जाना<b/>क</i><par n="क/र__vblex_tv"/></e> 
+	<e lm="आना"><i>आना</i><par n="क/र__vblex_tv"/></e>
 	<e lm="साथ दे"><i>साथ<b/>द</i><par n="द/े__vblex_tv"/></e>
 	<e lm="समानता देख"><i>समानता<b/>देख</i><par n="बोल__vblex_tv"/></e>
 	<e lm="तुलना कर"><i>तुलना<b/>क</i><par n="क/र__vblex_tv"/></e>
@@ -4401,7 +5259,7 @@
 	<e lm="गहरा हो"><i>गहरा<b/></i><par n="/होना__vblex_iv"/></e>
 	<e lm="डीफ़ल्ट हो"><i>डीफ़ल्ट<b/></i><par n="/होना__vblex_iv"/></e>
 	<e lm="असफल कर"><i>असफल<b/>क</i><par n="क/र__vblex_tv"/></e>
-	<e lm="बचाव कर"><i>बचाव<b/>क</i><par n="क/र__vblex_tv"/></e>
+	<e lm="ब��ाव कर"><i>बचाव<b/>क</i><par n="क/र__vblex_tv"/></e>
 	<e lm="प्रतिवाद कर"><i>प्रतिवाद<b/>क</i><par n="क/र__vblex_tv"/></e>
 	<e lm="गोल बचा"><i>गोल<b/>बचा</i><par n="बता__vblex_tv"/></e>
 	<e lm="प्रतिरक्षा कर"><i>प्रतिरक्षा<b/>क</i><par n="क/र__vblex_tv"/></e>
@@ -5049,7 +5907,7 @@
 	<e lm="फिल्म बना"><i>फिल्म<b/>बना</i><par n="बता__vblex_tv"/></e>
 	<e lm="चलचिट्र बना"><i>चलचिट्र<b/>बना</i><par n="बता__vblex_tv"/></e>
 	<e lm="चलचिट्रण कर"><i>चलचिट्रण<b/>क</i><par n="क/र__vblex_tv"/></e>
-	<e lm="आवरणयुक्त कर"><i>आवरणयुक्त<b/>क</i><par n="क/र__vblex_tv"/></e>
+	<e lm="आवरणयुक्त कर"><i>आवरणयुक���त<b/>क</i><par n="क/र__vblex_tv"/></e>
 	<e lm="चिट्रित कर"><i>चिट्रित<b/>क</i><par n="क/र__vblex_tv"/></e>
 	<e lm="धीरे-धीरे निकल"><i>धीरे-धीरे<b/>निकल</i><par n="बोल__vblex_tv"/></e>
 	<e lm="ढूँढ निकाल"><i>ढूँढ<b/>निकाल</i><par n="बोल__vblex_tv"/></e>
@@ -5170,13 +6028,24 @@
 	<e lm="बलपूऋवक तोड़"><i>बलपूऋवक<b/>तोड़</i><par n="बोल__vblex_tv"/></e>
 	<e lm="जब्रदस्ती निकाल"><i>जब्रदस्ती<b/>निकाल</i><par n="बोल__vblex_tv"/></e>
 	<e lm="जबर्दसी निकाल"><i>जबर्दसी<b/>निकाल</i><par n="बोल__vblex_tv"/></e>
-	<e lm="बलपूर्वक खोल"><i>बलपूर्वक<b/>खोल</i><par n="बोल__vblex_tv"/></e>
+	<e lm="बलपूर्वक खोल"><i>बलपूर्वक<b/>खोल</i><par n="बोल__vblex_tv"/></e> 
+	<e lm="बोलना"><i>बोलना</i><par n="बोल__vblex_tv"/></e> 
+	<e lm="लड़ना"><i>लड़ना</i><par n="बोल__vblex_tv"/></e>  
+	<e lm="बजाना"><i>बजाना</i><par n="बोल__vblex_tv"/></e> 
 	<e lm="पूर्वानुमान कर"><i>पूर्वानुमान<b/>क</i><par n="क/र__vblex_tv"/></e>
-	<e lm="वृक्ष लगा"><i>वृक्ष<b/>लगा</i><par n="आ__vblex_iv"/></e>
+	<e lm="वृक्ष लगा"><i>वृक्ष<b/>लगा</i><par n="आ__vblex_iv"/></e>  
+	<e lm="झूठ बोलना"><i>झूठ<b/>बोलना</i><par n="आ__vblex_iv"/></e>
+	<e lm="जिक्र करना"><i>जिक्र<b/>करना</i><par n="आ__vblex_iv"/></e> 
+	<e lm="युद्ध लड़ना"><i>युद्ध<b/>लड़ना</i><par n="आ__vblex_iv"/></e>
 	<e lm="जंगल लगा"><i>जंगल<b/>लगा</i><par n="बता__vblex_tv"/></e>
 	<e lm="भूल जा"><i>भूल<b/>जा</i><par n="बता__vblex_tv"/></e>
 	<e lm="विस्मरण कर"><i>विस्मरण<b/>क</i><par n="क/र__vblex_tv"/></e>
-	<e lm="भूल जाना"><i>भूल<b/>जा</i><par n="बता__vblex_tv"/></e>
+	<e lm="भूल जाना"><i>भूल<b/>जा</i><par n="बता__vblex_tv"/></e> 
+	<e lm="सुनना"><i>सुनना</i><par n="बता__vblex_tv"/></e> 
+	<e lm="चले जाना"><i>चले<b/>जाना</i><par n="बता__vblex_tv"/></e>  
+	<e lm="लटकना"><i>लटकना</i><par n="बता__vblex_tv"/></e>
+	<e lm="जन्म लेना"><i>जन्म<b/>लेना</i><par n="बता__vblex_tv"/></e>  
+	<e lm="मिल रहा"><i>मिल<b/>रहा</i><par n="बता__vblex_tv"/></e>
 	<e lm="नकली बना"><i>नकली<b/>बना</i><par n="बता__vblex_tv"/></e>
 	<e lm="शाखायुक्त हो"><i>शाखायुक्त<b/></i><par n="/होना__vblex_iv"/></e>
 	<e lm="परिवृतित हो"><i>परिवृतित<b/></i><par n="/होना__vblex_iv"/></e>
@@ -5420,7 +6289,8 @@
 	<e lm="टोपी पहन"><i>टोपी<b/>पहन</i><par n="बोल__vblex_tv"/></e>
 	<e lm="द्वेष कर"><i>द्वेष<b/>क</i><par n="क/र__vblex_tv"/></e>
 	<e lm="बलपूर्वक खींच"><i>बलपूर्वक<b/>खींच</i><par n="बोल__vblex_tv"/></e>
-	<e lm="याद आ"><i>याद<b/>आ</i><par n="बोल__vblex_tv"/></e>
+  <e lm="याद आ"><i>याद<b/>आ</i><par n="बोल__vblex_tv"/></e>
+  <e lm="नहीं है"><i>नहीं<b/>है</i><par n="गलत__adv"/></e>
 	<e lm="बाध्य हो"><i>बाध्य<b/></i><par n="/होना__vblex_iv"/></e>
 	<e lm="पास हो"><i>पास<b/></i><par n="/होना__vblex_iv"/></e>
 	<e lm="फेरी लगा"><i>फेरी<b/>लगा</i><par n="बता__vblex_tv"/></e>
@@ -5507,6 +6377,9 @@
 	<e lm="बलपूर्वक कर्वा"><i>बलपूर्वक<b/>कर्वा</i><par n="बता__vblex_tv"/></e>
 	<e lm="जलयोजित कर"><i>जलयोजित<b/>क</i><par n="क/र__vblex_tv"/></e>
 	<e lm="समान समझ"><i>समान<b/>समझ</i><par n="बोल__vblex_tv"/></e>
+	<e lm="बनाना"><i>बनाना</i><par n="बोल__vblex_tv"/></e>
+	<e lm="देखना"><i>देखना</i><par n="बोल__vblex_tv"/></e>  
+	<e lm="पकड़ना"><i>पकड़ना</i><par n="बोल__vblex_tv"/></e>
 	<e lm="शिनाख्त कर"><i>शिनाख्त<b/>क</i><par n="क/र__vblex_tv"/></e>
 	<e lm="खाली चल"><i>खाली<b/>चल</i><par n="चल__vblex_iv"/></e>
 	<e lm="आलस्य कर"><i>आलस्य<b/>क</i><par n="क/र__vblex_tv"/></e>
@@ -5685,7 +6558,7 @@
 	<e lm="दंड सुना"><i>दंड<b/>सुना</i><par n="बता__vblex_tv"/></e>
 	<e lm="न्यायाधीश बन"><i>न्यायाधीश<b/>बन</i><par n="बोल__vblex_tv"/></e>
 	<e lm="सुनियोजित कर"><i>सुनियोजित<b/>क</i><par n="क/र__vblex_tv"/></e>
-	<e lm="बाजीगरी कर"><i>बाजीगरी<b/>क</i><par n="क/र__vblex_tv"/></e>
+	<!-- <e lm="बाजीगरी कर"><i>बाजीगरी<b/>क</i><par n="क/���__vblex_tv"/></e> -->
 	<e lm="गड्ड-मड्ड हो"><i>गड्ड-मड्ड<b/></i><par n="/होना__vblex_iv"/></e>
 	<e lm="पर झपट"><i>पर<b/>झपट</i><par n="चल__vblex_iv"/></e>
 	<e lm="जंप कर"><i>जंप<b/>क</i><par n="क/र__vblex_tv"/></e>
@@ -6338,7 +7211,7 @@
 	<e lm="टीप कर"><i>टीप<b/>क</i><par n="क/र__vblex_tv"/></e>
 	<e lm="जोड्ॅअ भर"><i>जोड्ॅअ<b/>भर</i><par n="बोल__vblex_tv"/></e>
 	<e lm="जोड़ कर"><i>जोड़<b/>क</i><par n="क/र__vblex_tv"/></e>
-	<e lm="लक्ष्य साध"><i>लक्ष्य<b/>साध</i><par n="बोल__vblex_tv"/></e>
+	<!-- <e lm="लक्ष्य साध"><i>लक्ष्य<b/>सा��</i><par n="ब��ल__vblex_tv"/></e> -->
 	<e lm="निशाना लग्"><i>निशाना<b/>लग्</i><par n="बोल__vblex_tv"/></e>
 	<e lm="ज़हर दे"><i>ज़हर<b/>द</i><par n="द/े__vblex_tv"/></e>
 	<e lm="हानि पहुँचा"><i>हानि<b/>पहुँचा</i><par n="बता__vblex_tv"/></e>
@@ -6966,7 +7839,7 @@
 	<e lm="अंधेरा छ्"><i>अंधेरा<b/>छ्</i><par n="बोल__vblex_tv"/></e>
 	<e lm="पिछा कर"><i>पिछा<b/>क</i><par n="क/र__vblex_tv"/></e>
 	<e lm="धक्का पहुँ"><i>धक्का<b/>पहुँ</i><par n="बोल__vblex_tv"/></e>
-	<e lm="डांवाडोल कर"><i>डांवाडोल<b/>क</i><par n="क/र__vblex_tv"/></e>
+	<!-- <e lm="डांवाडोल क��"><i>डांवाडोल<b/>क</i><par n="क/र__vblex_tv"/></e> -->
 	<e lm="विचलित कर"><i>विचलित<b/>क</i><par n="क/र__vblex_tv"/></e>
 	<e lm="दुर्बल कर"><i>दुर्बल<b/>क</i><par n="क/र__vblex_tv"/></e>
 	<e lm="हिल जा"><i>हिल<b/>जा</i><par n="बता__vblex_tv"/></e>
@@ -8071,9 +8944,44 @@
 	<e lm="स्वर्गवास हो"><i>स्वर्गवास<b/></i><par n="/होना__vblex_iv"/></e>
 	<e lm="अवर्ण कर"><i>अवर्ण<b/>क</i><par n="क/र__vblex_tv"/></e>
 	<e lm="अम्ल-प्रक्षालन कर"><i>अम्ल-प्रक्षालन<b/>क</i><par n="क/र__vblex_tv"/></e>
+
 	<!-- Proper Nouns -->
-    
-        <e lm="अभय"><i>अभय</i><par n="जेम्स__np"/></e>
+
+	<e lm="नितीन"><i>नितीन</i><par n="जेम्स__np"/></e>
+	<e lm="रितीन"><i>रितीन</i><par n="जेम्स__np"/></e>
+	<e lm="सालू"><i>सालू</i><par n="जेम्स__np"/></e>
+	<e lm="जेजू"><i>जेजू</i><par n="जेम्स__np"/></e>
+	<e lm="सौरभ"><i>सौरभ</i><par n="जेम्स__np"/></e>
+	<e lm="सैरू"><i>सैरू</i><par n="जेम्स__np"/></e>
+	<e lm="भैरू"><i>भैरू</i><par n="जेम्स__np"/></e>
+	<e lm="उमर"><i>उमर</i><par n="जेम्स__np"/></e>
+	<e lm="शाणू"><i>शाणू</i><par n="जेम्स__np"/></e>
+	<e lm="कौशिक"><i>कौशिक</i><par n="जेम्स__np"/></e>
+	<e lm="गणपत"><i>गणपत</i><par n="जेम्स__np"/></e>
+	<e lm="इपन"><i>इपन</i><par n="जेम्स__np"/></e>
+	<e lm="इनास"><i>इनास</i><par n="जेम्स__np"/></e>
+	<e lm="इवन"><i>इवन</i><par n="जेम्स__np"/></e>
+	<e lm="गिलमन"><i>गिलमन</i><par n="जेम्स__np"/></e>
+
+	<e lm="गौरी"><i>गौरी</i><par n="मैरी__np"/></e>  
+	<e lm="कत्री"><i>कत्री</i><par n="मैरी__np"/></e>
+	<e lm="लिंदा"><i>लिंदा</i><par n="मैरी__np"/></e>
+	<e lm="गुड्डी"><i>गुड्डी</i><par n="मैरी__np"/></e>
+	<e lm="नझरीन"><i>नझरीन</i><par n="मैरी__np"/></e>
+	<e lm="शाली"><i>शाली</i><par n="मैरी__np"/></e>
+	<e lm="रिता"><i>रिता</i><par n="मैरी__np"/></e>
+	<e lm="अनिता"><i>अनिता</i><par n="मैरी__np"/></e>
+	<e lm="लिना"><i>लिना</i><par n="मैरी__np"/></e>
+	<e lm="टिना"><i>टिना</i><par n="मैरी__np"/></e>
+	<e lm="तुळशी"><i>तुळशी</i><par n="मैरी__np"/></e>
+	<e lm="रिना"><i>रिना</i><par n="मैरी__np"/></e>
+
+	<e lm="बिसु"><i>बिसु</i><par n="जेम्स__np"/></e>
+	<e lm="फागुन"><i>फागुन</i><par n="जेम्स__np"/></e>
+	<e lm="सगुन"><i>सगुन</i><par n="जेम्स__np"/></e>
+	<e lm="प्रशांत"><i>प्रशांत</i><par n="जेम्स__np"/></e>   
+    <e lm="अभय"><i>अभय</i><par n="जेम्स__np"/></e>
+	<e lm="सुभाष"><i>सुभाष</i><par n="जेम्स__np"/></e>
 	<e lm="आदित्य"><i>आदित्य</i><par n="जेम्स__np"/></e>
 	<e lm="अजित"><i>अजित</i><par n="जेम्स__np"/></e>
 	<e lm="आकाङ्क्षा"><i>आकाङ्क्षा</i><par n="जेम्स__np"/></e>
@@ -8092,7 +9000,11 @@
 	<e lm="अरविन्द"><i>अरविन्द</i><par n="जेम्स__np"/></e>
 	<e lm="अर्जुन"><i>अर्जुन</i><par n="जेम्स__np"/></e>
 	<e lm="अरुण"><i>अरुण</i><par n="जेम्स__np"/></e>
-	<e lm="अरुणा"><i>अरुणा</i><par n="जेम्स__np"/></e>
+	<e lm="अरुणा"><i>अरुणा</i><par n="जेम्स__np"/></e> 
+	<e lm="जापान"><i>जापान</i><par n="जेम्स__np"/></e>
+	<e lm="हिंदू"><i>हिंदू</i><par n="जेम्स__np"/></e>  
+	<e lm="ब्राह्मण"><i>ब्राह्मण</i><par n="जेम्स__np"/></e>
+	<e lm="बाबू"><i>बाबू</i><par n="जेम्स__np"/></e>
 	<e lm="असीम"><i>असीम</i><par n="जेम्स__np"/></e>
 	<e lm="अशोक"><i>अशोक</i><par n="जेम्स__np"/></e>
 	<e lm="बल"><i>बल</i><par n="जेम्स__np"/></e>
@@ -8276,6 +9188,7 @@
     <e lm="मोरीस"><i>मोरीस</i><par n="जेम्स__np"/></e>
     <e lm="शरफ़"><i>शरफ़</i><par n="जेम्स__np"/></e>
     <e lm="बकर"><i>बकर</i><par n="जेम्स__np"/></e>
+    <e lm="इक़बाल"><i>इक़बाल</i><par n="जेम्स__np"/></e>
     <e lm="उल-मुक़द्दस"><i>उल-मुक़द्दस</i><par n="जेम्स__np"/></e>
     <e lm="मरवान"><i>मरवान</i><par n="जेम्स__np"/></e>
     <e lm="मुनव्वरा"><i>मुनव्वरा</i><par n="जेम्स__np"/></e>
@@ -8344,7 +9257,7 @@
     	<e lm="मुशर्रफ़"><i>मुशर्रफ़</i><par n="जेम्स__np"/></e>
     	<e lm="किराम"><i>किराम</i><par n="जेम्स__np"/></e>
     	<e lm="लारा"><i>लारा</i><par n="जेम्स__np"/></e>
-    	<e lm="नवाज़ शरीफ़"><i>नवाज़ शरीफ़</i><par n="जेम्स__np"/></e>
+    	<e lm="नवाज़ शरीफ़"><i>नवाज़<b/>शरीफ़</i><par n="जेम्स__np"/></e>
     	<e lm="उम"><i>उम</i><par n="जेम्स__np"/></e>
     	<e lm="उसमान"><i>उसमान</i><par n="जेम्स__np"/></e>
     	<e lm="रज़ा"><i>रज़ा</i><par n="जेम्स__np"/></e>
@@ -8501,8 +9414,8 @@
 	<e lm="चंगेज़ ख़ान"><i>चंगेज़<b/>ख़ान</i><par n="जेम्स__np"/></e>
 	<e lm="सुलेमान"><i>सुलेमान</i><par n="जेम्स__np"/></e>
 	<e lm="कोन्स्टान्टिन"><i>कोन्स्टान्टिन</i><par n="जेम्स__np"/></e>
-	<e lm="अल्फ़्रेड महान"><i>अल्फ़्रेड महान</i><par n="जेम्स__np"/></e>
-	<e lm="पीटर महान"><i>पीटर महान</i><par n="जेम्स__np"/></e>
+	<e lm="अल्फ़्रेड महान"><i>अल्फ़्रेड<b/>महान</i><par n="जेम्स__np"/></e>
+	<e lm="पीटर महान"><i>पीटर<b/>महान</i><par n="जेम्स__np"/></e>
 	<e lm="हुसैन"><i>हुसैन</i><par n="जेम्स__np"/></e>	
 	<e lm="उद्दीन"><i>उद्दीन</i><par n="जेम्स__np"/></e>
 	<e lm="इबन"><i>इबन</i><par n="जेम्स__np"/></e>
@@ -8611,6 +9524,7 @@
 	<e lm="ओबामा"><i>ओबामा</i><par n="जेम्स__np"/></e>
 	<e lm="भीष्म"><i>भीष्म</i><par n="जेम्स__np"/></e>	
 	<e lm="वाल्मीकि"><i>वाल्मीकि</i><par n="जेम्स__np"/></e>
+	<e lm="सिकन्दर"><i>सिकन्दर</i><par n="जेम्स__np"/></e>
 	<e lm="रफ़ी"><i>रफ़ी</i><par n="मोटलानी__np"/></e>
 	<e lm="दत्त"><i>दत्त</i><par n="मोटलानी__np"/></e>
 	<e lm="तेंडुलकर"><i>तेंडुलकर</i><par n="मोटलानी__np"/></e>
@@ -8650,6 +9564,15 @@
 	<e lm="भारती"><i>भारती</i><par n="मोटलानी__np"/></e>
 	<e lm="भूषण"><i>भूषण</i><par n="मोटलानी__np"/></e>		
 	<e lm="राव"><i>राव</i><par n="मोटलानी__np"/></e>
+	<e lm="पौलुस"><i>पौलुस</i><par n="जेम्स__np"/></e>
+	<e lm="फिलेमोन"><i>फिलेमोन</i><par n="जेम्स__np"/></e>
+	<e lm="तीतुस"><i>तीतुस</i><par n="जेम्स__np"/></e>
+	<e lm="उनेसिमुस"><i>उनेसिमुस</i><par n="जेम्स__np"/></e>
+	<e lm="यहोवा"><i>यहोवा</i><par n="जेम्स__np"/></e>
+
+
+	<e lm="चौगुडो"><i>चौगुडो</i><par n="चौगुडो__n_num"/></e>
+
 	
 	<!-- Companies-->
 	<e lm="फ़ेसबुक"><i>फ़ेसबुक</i><par n="टाटा__np"/></e>
@@ -8811,7 +9734,7 @@
 	<e lm="आलैंड‌ द्वीप‌"><i>आलैंड‌<b/>द्वीप‌</i><par n="भारत__np"/></e>
 	<e lm="नीदरलैंड्स"><i>नीदरलैंड्स</i><par n="भारत__np"/></e>
 	<e lm="हॉलैंड"><i>हॉलैंड</i><par n="भारत__np"/></e>
-	<e lm="न्यू ज़ीलैंड"><i>न्यू ज़ीलैंड</i><par n="भारत__np"/></e>
+	<e lm="न्यू ज़ीलैंड"><i>न्यू<b/>ज़ीलैंड</i><par n="भारत__np"/></e>
 	<e lm="स्वाज़ीलैंड"><i>स्वाज़ीलैंड</i><par n="भारत__np"/></e>
 	<e lm="स्विटज़रलैंड"><i>स्विटज़रलैंड</i><par n="भारत__np"/></e>
 	<e lm="स्विट्ज़रलैंड"><i>स्विट्ज़रलैंड</i><par n="भारत__np"/></e>
@@ -8977,7 +9900,7 @@
 	<e lm="पालाऊ"><i>पालाऊ</i><par n="भारत__np"/></e>
 	<e lm="फ़िलीस्तीनी क्षेत्र"><i>फ़िलीस्तीनी<b/>क्षेत्र</i><par n="भारत__np"/></e>
 	<e lm="पानामा"><i>पानामा</i><par n="भारत__np"/></e>
-	<e lm="पापुआ न्यू गिनी"><i>पापुआ<b/>न्यू<b/>गिनी</i><par n="भारत__np"/></e>
+	<!-- <e lm="��ापुआ न्���ू गिनी"><i>पापुआ<b/>न्यू<b/>गिनी</i><par n="भारत__np"/></e> -->
 	<e lm="पाराग्वे"><i>पाराग्वे</i><par n="भारत__np"/></e>
 	<e lm="पेरू"><i>पेरू</i><par n="भारत__np"/></e>
 	<e lm="फ़िलीपीन‌"><i>फ़िलीपीन‌</i><par n="भारत__np"/></e>
@@ -9013,7 +9936,7 @@
 	<e lm="स्पेन‌"><i>स्पेन‌</i><par n="भारत__np"/></e>
 	<e lm="स्पेन"><i>स्पेन</i><par n="भारत__np"/></e>
 	<e lm="श्रीलंका"><i>श्रीलंका</i><par n="भारत__np"/></e>
-    	<e lm="लंका"><i>लंका</i><par n="भारत__np"/></e>
+    <e lm="लंका"><i>लंका</i><par n="भारत__np"/></e>
 	<e lm="सुदान"><i>सुदान</i><par n="भारत__np"/></e>
 	<e lm="सूरीनाम‌"><i>सूरीनाम‌</i><par n="भारत__np"/></e>
 	<e lm="स्वाज़ीलैंड‌"><i>स्वाज़ीलैंड‌</i><par n="भारत__np"/></e>
@@ -9137,11 +10060,14 @@
 	<e lm="कबीर"><i>कबीर</i><par n="भारत__np"/></e>
 	<e lm="गंगा"><i>गंगा</i><par n="भारत__np"/></e>
 	<e lm="लो"><i>लो</i><par n="भारत__np"/></e>
+	<e lm="विकास"><i>विकास</i><par n="जेम्स__np"/></e>
 	<e lm="गैलिलियो"><i>गैलिलियो</i><par n="जेम्स__np"/></e>
 	<e lm="राहुल"><i>राहुल</i><par n="जेम्स__np"/></e>
 	<e lm="आमिल"><i>आमिल</i><par n="जेम्स__np"/></e>
 	<e lm="होंडा"><i>होंडा</i><par n="जेम्स__np"/></e>
-    	<e lm="काजोल"><i>काजोल</i><par n="मैरी__np"/></e>
+	<e lm="चीन"><i>चीन</i><par n="मैरी__np"/></e>
+    <e lm="मोंगला"><i>मोंगला</i><par n="मैरी__np"/></e>
+	<e lm="काजोल"><i>काजोल</i><par n="मैरी__np"/></e>
 	<e lm="कैलिस्टो"><i>कैलिस्टो</i><par n="भारत__np"/></e>
 	<e lm="गेनीमेड"><i>गेनीमेड</i><par n="भारत__np"/></e>
 	<e lm="अरब"><i>अरब</i><par n="भारत__np"/></e>
@@ -9281,8 +10207,24 @@
     <e lm="मोहाच"><i>मोहाच</i><par n="भारत__np"/></e>
     <e lm="फ्रांस"><i>फ्रांस</i><par n="भारत__np"/></e>
     <e lm="सिन्धु घाटी"><i>सिन्धु<b/>घाटी</i><par n="भारत__np"/></e>
-    <!-- Nouns -->
-<e lm="बलुआ"><i>बलुआ</i><par n="ऐ__n_m"/></e>
+    <e lm="यहूदिया"><i>यहूदिया</i><par n="भारत__np"/></e>
+    <e lm="कलीसिया"><i>कलीसिया</i><par n="भारत__np"/></e>
+    <e lm="मकिदुनिया"><i>मकिदुनिया</i><par n="भारत__np"/></e>
+    <e lm="कुलुस्से"><i>कुलुस्से</i><par n="भारत__np"/></e>
+    <e lm="पाकिस्तान"><i>पाकिस्तान</i><par n="भारत__np"/></e>
+    <e lm="अफगानिस्तान"><i>अफगानिस्तान</i><par n="भारत__np"/></e>
+	<e lm="पैंगीण"><i>पैंगीण</i><par n="भारत__np"/></e>
+	<e lm="पैकूळ"><i>पैकूळ</i><par n="भारत__np"/></e>
+
+    <!-- Nouns --> 
+	<e lm="सांज"><i>सांज</i><par n="सांज__n_f"/></e> 
+	<e lm="लुपाछिपी"><i>लुपाछिपी</i><par n="सांज__n_f"/></e>
+	<e lm="कासाळें"><i>कासाळें</i><par n="कासाळें__n_mf"/></e>
+	<e lm="कैल"><i>कैल</i><par n="कासाळें__n_mf"/></e>
+	<e lm="ख्रिसमस"><i>ख्रिसमस</i><par n="ख्रिसमस__n_mf"/></e>
+	<e lm="गायें"><i>गायें</i><par n="ऐ__n_f"/></e>
+	<e lm="गायों"><i>गायों</i><par n="ऐ__n_f"/></e>
+	<e lm="बलुआ"><i>बलुआ</i><par n="ऐ__n_m"/></e>
 	<e lm="उम्मत"><i>उम्मत</i><par n="ऐ__n_f"/></e>
     <e lm="फ़ौजी"><i>फ़ौज</i><par n="हठ/ी__n_m"/></e>
     <e lm="सन्दूक"><i>सन्दूक</i><par n="थ__n_m"/></e>
@@ -9295,7 +10237,7 @@
     <e lm="पर"><i>पर</i><par n="थ__n_m"/></e>
     <e lm="उमत"><i>उमत</i><par n="थ__n_m"/></e>
     <e lm="फारसी"><i>फारस</i><par n="हठ/ी__n_m"/></e>
-    <e lm="फ़ारसी"><i>फ़ारस</i><par n="हठ/ी__n_m"/></e>
+    <e lm="बर्तानवी"><i>फ़ारस</i><par n="हठ/ी__n_m"/></e>
 	<e lm="काबा"><i>काबा</i><par n="ऐ__n_m"/></e>
     <e lm="तौर"><i>तौर</i><par n="थ__n_m"/></e>
 	<e lm="धुआं"><i>धुआं</i><par n="ऐ__n_m"/></e>
@@ -9329,7 +10271,7 @@
 	<e lm="गुमना"><i>गुमना</i><par n="ऐ__n_m"/></e>
 	<e lm="ं"><i>ं</i><par n="ऐ__n_m"/></e>
 	<e lm="ें"><i>ें</i><par n="ऐ__n_m"/></e>
-	<e lm="बाहर"><i>बाहर</i><par n="ऐ__n_m"/></e>
+	<e lm="बाहर"><i>बाहर</i><par n="गलत__adv"/></e>
 	<e lm="चित्राली"><i>चित्राल</i><par n="हठ/ी__n_m"/></e>
 	<e lm="ें"><i>ें</i><par n="ऐ__n_f"/></e>
 	<e lm="दारुल उलूम"><i>दारुल<b/>उलूम</i><par n="ऐ__n_m"/></e>
@@ -9346,12 +10288,12 @@
 	<e lm="माड्यूल"><i>माड्यूल</i><par n="ऐ__n_m"/></e>
 	<e lm="म्यूजियम"><i>म्यूजियम</i><par n="ऐ__n_m"/></e>
 	<e lm="कॉल"><i>कॉल</i><par n="ऐ__n_f"/></e>
-	<e lm="स्पॉट"><i>स्पॉट</i><par n="ऐ__n_m"/></e>
+	<e lm="स्पॉट"><i>स्पॉट</i><par n="थ__n_m"/></e>
 	<e lm="लीटर"><i>लीटर</i><par n="ऐ__n_m"/></e>
 	<e lm="गेटवे"><i>गेटवे</i><par n="ऐ__n_m"/></e>
-	<e lm="फार्म"><i>फार्म</i><par n="ऐ__n_m"/></e>
+	<e lm="फार्म"><i>फार्म</i><par n="थ__n_m"/></e>
 	<e lm="इंग्लिश"><i>इंग्लिश</i><par n="ऐ__n_m"/></e>
-	<e lm="ग्लेशियर"><i>ग्लेशियर</i><par n="ऐ__n_m"/></e>
+	<e lm="ग्लेशियर"><i>ग्लेशियर</i><par n="थ__n_m"/></e>
 	<e lm="नेशन्स"><i>नेशन्स</i><par n="ऐ__n_m"/></e>
 	<e lm="एक्स्चेंज"><i>एक्स्चेंज</i><par n="ऐ__n_m"/></e>
 	<e lm="रोमांस"><i>रोमांस</i><par n="ऐ__n_m"/></e>
@@ -9399,7 +10341,7 @@
 	<e lm="स्पेनिश"><i>स्पेनिश</i><par n="ऐ__n_m"/></e>
 	<e lm="ऑपरेटिंग"><i>ऑपरेटिंग</i><par n="ऐ__n_m"/></e>
 	<e lm="शूटिंग"><i>शूटिंग</i><par n="ऐ__n_m"/></e>
-	<e lm="जंक्शन"><i>जंक्शन</i><par n="ऐ__n_m"/></e>
+	<e lm="जंक्शन"><i>जंक्शन</i><par n="थ__n_m"/></e>
 	<e lm="हैड"><i>हैड</i><par n="ऐ__n_m"/></e>
 	<e lm="कॉमेडी"><i>कॉमेडी</i><par n="ऐ__n_m"/></e>
 	<e lm="रेटिंग"><i>रेटिंग</i><par n="ऐ__n_m"/></e>
@@ -9408,7 +10350,7 @@
 	<e lm="एक्सचेंज"><i>एक्सचेंज</i><par n="ऐ__n_m"/></e>
 	<e lm="कॉर्पोरेट"><i>कॉर्पोरेट</i><par n="ऐ__n_m"/></e>
 	<e lm="कॉल"><i>कॉल</i><par n="ऐ__n_m"/></e>
-	<e lm="सर्किट"><i>सर्किट</i><par n="ऐ__n_m"/></e>
+	<e lm="सर्किट"><i>सर्किट</i><par n="थ__n_m"/></e>
 	<e lm="एंटीबायोटिक"><i>एंटीबायोटिक</i><par n="ऐ__n_m"/></e>
 	<e lm="टरबाइन"><i>टरबाइन</i><par n="ऐ__n_m"/></e>
 	<e lm="गोल्डन"><i>गोल्डन</i><par n="ऐ__n_m"/></e>
@@ -9416,6 +10358,7 @@
 	<e lm="फाइबर"><i>फाइबर</i><par n="ऐ__n_m"/></e>
 	<e lm="एपिसोड"><i>एपिसोड</i><par n="ऐ__n_m"/></e>
 	<e lm="इलेक्ट्रॉन"><i>इलेक्ट्रॉन</i><par n="ऐ__n_m"/></e>
+	<e lm="टेन्सर"><i>टेन्सर</i><par n="ऐ__n_m"/></e>
 	<e lm="सिंड्रोम"><i>सिंड्रोम</i><par n="ऐ__n_m"/></e>
 	<e lm="गेम्स"><i>गेम्स</i><par n="ऐ__n_m"/></e>
 	<e lm="एड्रेस"><i>एड्रेस</i><par n="ऐ__n_m"/></e>
@@ -9439,6 +10382,7 @@
     <e lm="तशरीफ़"><i>तशरीफ़</i><par n="जड__n_f"/></e>
     <e lm="नफ़्स"><i>नफ़्स</i><par n="थ__n_m"/></e>
 	<e lm="ख"><i>ख</i><par n="ऐ__n_m"/></e>
+	<e lm="चहरा"><i>चहर</i><par n="ध/ा__n_m"/></e>
 	<e lm="लड़ाका"><i>लड़ाक</i><par n="ध/ा__n_m"/></e>
 	<e lm="टोंगा"><i>टोंग</i><par n="ध/ा__n_m"/></e>
 	<e lm="बसूला"><i>बसूल</i><par n="ध/ा__n_m"/></e>
@@ -9446,6 +10390,7 @@
 	<e lm="श"><i>श</i><par n="ऐ__n_m"/></e>
 	<e lm="मौलवी"><i>मौलव</i><par n="हठ/ी__n_m"/></e>
     <e lm="दैनिक"><i>दैनिक</i><par n="ऐ__n_m"/></e> <!--Daily newspaper-->
+	<e lm="इमारतें"><i>इमारतें</i><par n="ऐ__n_m"/></e>
 	<e lm="मायना"><i>मायन</i><par n="ध/ा__n_m"/></e>
     <e lm="शहंशाह"><i>शहंशाह</i><par n="थ__n_m"/></e>
 	<e lm="हिन्दुस्तानी"><i>हिन्दुस्तान</i><par n="हठ/ी__n_m"/></e>
@@ -9505,9 +10450,12 @@
 	<e lm="अज़"><i>अज़</i><par n="ऐ__n_m"/></e>
 	<e lm="टी"><i>टी</i><par n="ऐ__n_m"/></e>
 	<e lm="ए"><i>ए</i><par n="ऐ__n_m"/></e>
-	<e lm="बंदी"><i>बंदी</i><par n="ऐ__n_m"/></e>
+	<e lm="ऐ"><i>ऐ</i><par n="ऐ__n_m"/></e>
+	<e lm="बंदी"><i>बंदी</i><par n="इ__n_m"/></e>
+	<e lm="इब्रानी"><i>इब्रान</i><par n="कम/ी__n_f"/></e>
 	<e lm="फ़"><i>फ़</i><par n="ऐ__n_m"/></e>
 	<e lm="ओ"><i>ओ</i><par n="ऐ__n_m"/></e>
+	<e lm="औ"><i>औ</i><par n="ऐ__n_m"/></e>
 	<e lm="बर"><i>बर</i><par n="ऐ__n_m"/></e>
 	<e lm="फ़िकही"><i>फ़िकह</i><par n="हठ/ी__n_m"/></e>
 	<!-- Abbreviations -->
@@ -9590,6 +10538,9 @@
 	<e lm="घटक"><i>घटक</i><par n="थ__n_m"/></e>
 	<e lm="पेशकश"><i>पेशकश</i><par n="ऐ__n_f"/></e>
 	<e lm="भाँति"><i>भाँति</i><par n="ऐ__n_f"/></e>
+	<e lm="सुपरपोज़िशन"><i>सुपरपोज़िशन</i><par n="ऐ__n_f"/></e>
+	<e lm="नुमाइंदगी"><i>नुमाइंदगी</i><par n="ऐ__n_f"/></e>
+	<e lm="प्रातिनिधिकता"><i>प्रातिनिधिकता</i><par n="ऐ__n_f"/></e>
 	<e lm="प्रयोगकर्त्ता"><i>प्रयोगकर्त्ता</i><par n="थ__n_m"/></e>
 	<e lm="उपयोगकर्ता"><i>उपयोगकर्ता</i><par n="थ__n_m"/></e>
 	<e lm="उपयोगकर्ता"><i>उपयोगकर्ता</i><par n="ऋ__n_m"/></e>
@@ -9616,6 +10567,7 @@
 	<e lm="आपातकाल"><i>आपातकाल</i><par n="ऐ__n_m"/></e>
 	<e lm="बांग्ला"><i>बांग्ला</i><par n="ऐ__n_m"/></e>
 	<e lm="पीढ़ी"><i>पीढ़</i><par n="ध/ी__n_f"/></e>
+	<e lm="ज़िम्मेदारी"><i>ज़िम्मेदार</i><par n="ध/ी__n_f"/></e>
 	<e lm="सद्स्य"><i>सद्स्य</i><par n="थ__n_m"/></e>
 	<e lm="कारन"><i>कारन</i><par n="थ__n_m"/></e>
 	<e lm="वैध"><i>वैध</i><par n="ऐ__n_m"/></e>
@@ -9689,9 +10641,9 @@
     <e lm="हसीना"><i>हसीना</i><par n="बला__n_f"/></e>
     <e lm="कार्यपालिका"><i>कार्यपालिक</i><par n="बला__n_f"/></e>
     <e lm="पांव"><i>पांव</i><par n="ऐ__n_m"/></e>
-	<e lm="ग्रीनहाउस"><i>ग्रीनहाउस</i><par n="ऐ__n_m"/></e>
-	<e lm="ताजमहल"><i>ताजमहल</i><par n="ऐ__n_m"/></e>
-	<e lm="ताज महल"><i>ताज<b/>महल</i><par n="ऐ__n_m"/></e>
+	<e lm="ग्रीनहाउस"><i>ग्रीनहाउस</i><par n="थ__n_m"/></e>
+	<e lm="ताजमहल"><i>ताजमहल</i><par n="थ__n_m"/></e>
+	<e lm="ताज महल"><i>ताज<b/>महल</i><par n="थ__n_m"/></e>
     <e lm="दुहाई"><i>दुहा</i><par n="/ई__n_f"/></e>
 	<e lm="कामयाबी"><i>कामयाब</i><par n="ध/ी__n_f"/></e>
     <e lm="खिलाफ़त"><i>खिलाफ़त</i><par n="जड__n_f"/></e>
@@ -9751,14 +10703,14 @@
 	<e lm="रामायण"><i>रामायण</i><par n="ऐ__n_m"/></e>
 	<e lm="महाभारत"><i>महाभारत</i><par n="ऐ__n_m"/></e> 
 	<e lm="रामचरितमानस"><i>रामचरितमानस</i><par n="ऐ__n_m"/></e> 
-	<e lm="क़ुरान"><i>क़ुरान</i><par n="ऐ__n_m"/></e>
-	<e lm="कुरान"><i>कुरान</i><par n="ऐ__n_m"/></e>
+	<e lm="क़ुरान"><i>क़ुरान</i><par n="थ__n_m"/></e>
+	<e lm="कुरान"><i>कुरान</i><par n="थ__n_m"/></e>
 	<e lm="वाइल्ड"><i>वाइल्ड</i><par n="ऐ__n_m"/></e>
 	<e lm="संगमर्मर"><i>संगमर्मर</i><par n="ऐ__n_m"/></e>
 	<e lm="ऋग्वेद"><i>ऋग्वेद</i><par n="ऐ__n_m"/></e>
 	<e lm="आयुर्वेद"><i>आयुर्वेद</i><par n="ऐ__n_m"/></e>
 	<e lm="अथर्ववेद"><i>अथर्ववेद</i><par n="ऐ__n_m"/></e>
-	<e lm="सामवेद"><i>सामवेद</i><par n="ऐ__n_m"/></e>
+	<e lm="सामवेद"><i>सामवेद</i><par n="थ__n_m"/></e>
 	<e lm="प्रदुषण"><i>प्रदुषण</i><par n="ऐ__n_m"/></e>
 	<e lm="आफ"><i>आफ</i><par n="ऐ__n_m"/></e>
 	<e lm="एप्पल"><i>एप्पल</i><par n="ऐ__n_m"/></e>
@@ -9789,7 +10741,7 @@
 	<e lm="स्टंप"><i>स्टंप</i><par n="ऐ__n_m"/></e>
 	<e lm="एंगल"><i>एंगल</i><par n="ऐ__n_m"/></e>
 	<e lm="फ़ॉन्ट"><i>फ़ॉन्ट</i><par n="ऐ__n_m"/></e>
-	<e lm="इंटरफेस"><i>इंटरफेस</i><par n="ऐ__n_m"/></e>
+	<e lm="इंटरफेस"><i>इंटरफेस</i><par n="थ__n_m"/></e>
 	<e lm="ब्लॉग्स"><i>ब्लॉग्स</i><par n="ऐ__n_m"/></e>
 	<e lm="लॉन्च"><i>लॉन्च</i><par n="ऐ__n_m"/></e>
 	<e lm="फायरफाक्स"><i>फायरफाक्स</i><par n="ऐ__n_m"/></e>
@@ -9803,15 +10755,18 @@
 	<e lm="कम्प्यूटिंग"><i>कम्प्यूटिंग</i><par n="ऐ__n_m"/></e>
 	<e lm="हिट"><i>हिट</i><par n="ऐ__n_m"/></e>
 	<e lm="कॉम"><i>कॉम</i><par n="ऐ__n_m"/></e>
+	<e lm="सिंध"><i>सिंध</i><par n="ऐ__n_m"/></e>
 	<e lm="लेग"><i>लेग</i><par n="ऐ__n_m"/></e>
-	<e lm="लिंक"><i>लिंक</i><par n="ऐ__n_m"/></e>
-	<e lm="पार्टनर"><i>पार्टनर</i><par n="ऐ__n_m"/></e>
+	<e lm="लिंक"><i>लिंक</i><par n="थ__n_m"/></e>
+	<e lm="फ़ैक्टर"><i>फ़ैक्टर</i><par n="थ__n_m"/></e>
+	<e lm="थिएटर"><i>थिएटर</i><par n="थ__n_m"/></e>
+	<e lm="पार्टनर"><i>पार्टनर</i><par n="थ__n_m"/></e>
 	<e lm="गैमीट"><i>गैमीट</i><par n="ऐ__n_m"/></e>
-	<e lm="साईट"><i>साईट</i><par n="ऐ__n_m"/></e>
+	<e lm="साईट"><i>साईट</i><par n="थ__n_m"/></e>
 	<e lm="फॉण्ट"><i>फॉण्ट</i><par n="ऐ__n_m"/></e>
 	<e lm="टेक्स्ट"><i>टेक्स्ट</i><par n="ऐ__n_m"/></e>
 	<e lm="सिम"><i>सिम</i><par n="ऐ__n_m"/></e>
-	<e lm="सर्च"><i>सर्च</i><par n="ऐ__n_m"/></e>
+	<e lm="सर्च"><i>सर्च</i><par n="थ__n_m"/></e>
 	<e lm="फायरफॉक्स"><i>फायरफॉक्स</i><par n="ऐ__n_m"/></e>
 	<e lm="फीट"><i>फीट</i><par n="ऐ__n_m"/></e>	
 	<e lm="हॉल"><i>हॉल</i><par n="ऐ__n_m"/></e>
@@ -9973,7 +10928,7 @@
 	<e lm="टेलीकॉम"><i>टेलीकॉम</i><par n="ऐ__n_m"/></e>
 	<e lm="ग्लोबल"><i>ग्लोबल</i><par n="ऐ__n_m"/></e>
 	<e lm="बिलिनेयर"><i>बिलिनेयर</i><par n="ऐ__n_m"/></e>
-	<e lm="दबदबा"><i>दबदबा</i><par n="ऐ__n_m"/></e>
+	<e lm="दबदबा"><i>दबदबा</i><par n="दग/ा__n_m"/></e>
 	<e lm="आंकड़ा"><i>आंकड़</i><par n="ध/ा__n_m"/></e>
 	<e lm="बहुलता"><i>बहुलता</i><par n="ऐ__n_f"/></e>
 	<e lm="वरीयता"><i>वरीयता</i><par n="ऐ__n_f"/></e>
@@ -10040,7 +10995,7 @@
 	<e lm="प्रतीकवाद"><i>प्रतीकवाद</i><par n="ऐ__n_m"/></e>
 	<e lm="खिलाड़ी"><i>खिलाड़</i><par n="हठ/ी__n_m"/></e>
 	<e lm="वंध्यीकरण"><i>वंध्यीकरण</i><par n="ऐ__n_m"/></e>
-	<e lm="कुप्रबंध"><i>कुप्रबंध</i><par n="ऐ__n_m"/></e>
+	<e lm="कुप्रबंध"><i>कुप्रबंध</i><par n="थ__n_m"/></e>
 	<e lm="गुस्सा"><i>गुस्स</i><par n="ध/ा__n_m"/></e>
 	<e lm="झरना"><i>झरन</i><par n="ध/ा__n_m"/></e>
 	<e lm="व्यभिचारी"><i>व्यभिचार</i><par n="हठ/ी__n_m"/></e>
@@ -10068,8 +11023,8 @@
 	<e lm="डाकखाना"><i>डाकखान</i><par n="ध/ा__n_m"/></e>
 	<e lm="गढ्ढा"><i>गढ्ढ</i><par n="ध/ा__n_m"/></e>
 	<e lm="उत्पादकता"><i>उत्पादकता</i><par n="ऐ__n_f"/></e>
-    <e lm="लड़क"><i>लड़क</i><par n="ध/ा__n_m"/></e>
-    <e lm="लड़क"><i>लड़क</i><par n="ध/ी__n_f"/></e>
+    <e lm="लड़का"><i>लड़क</i><par n="ध/ा__n_m"/></e>
+    <e lm="लड़की"><i>लड़क</i><par n="ध/ी__n_f"/></e>
     <e lm="स्वच्छता"><i>स्वच्छत</i><par n="ध/ा__n_m"/></e>
     <e lm="जवाबी"><i>जवाबी</i><par n="ऐ__n_f"/></e>
     <e lm="सीप"><i>सीप</i><par n="जड__n_f"/></e>
@@ -10079,7 +11034,7 @@
     <e lm="वाय"><i>वाय</i><par n="थ__n_m"/></e>
     <e lm="उत्फुल्लन"><i>उत्फुल्लन</i><par n="ऐ__n_m"/></e>
     <e lm="सोडा"><i>सोड</i><par n="दग/ा__n_m"/></e>
-    <e lm="गठन"><i>गठन</i><par n="ऐ__n_m"/></e>
+    <e lm="गठन"><i>गठन</i><par n="थ__n_m"/></e>
     <e lm="हैवानियत"><i>हैवानियत</i><par n="ऐ__n_f"/></e>
     <e lm="छमासी"><i>छमासी</i><par n="ऐ__n_f"/></e>
     <e lm="परिषद्"><i>परिषद</i><par n="सद/्__n_m"/></e>
@@ -10090,7 +11045,7 @@
     <e lm="खबरदारी"><i>खबरदारी</i><par n="ऐ__n_f"/></e>
     <e lm="पुलाव"><i>पुलाव</i><par n="ऐ__n_m"/></e>
     <e lm="अभिवृत्ति"><i>अभिवृत्ति</i><par n="इ__n_m"/></e>
-    <e lm="रुख"><i>रुख</i><par n="ऐ__n_m"/></e>
+    <e lm="रुख"><i>रुख</i><par n="थ__n_m"/></e>
     <e lm="सुअवसर"><i>सुअवसर</i><par n="थ__n_m"/></e>
     <e lm="संस्पर्शन"><i>संस्पर्शन</i><par n="ऐ__n_m"/></e>
     <e lm="मूलपुरुष"><i>मूलपुरुष</i><par n="थ__n_m"/></e>
@@ -10137,8 +11092,8 @@
     <e lm="कबूतरी"><i>कबूतर</i><par n="ध/ी__n_f"/></e>
     <e lm="उगालदान"><i>उगालदान</i><par n="थ__n_m"/></e>
     <e lm="नासा"><i>नासा</i><par n="बला__n_f"/></e>
-    <e lm="ग्रीष्मकाल"><i>ग्रीष्मकाल</i><par n="ऐ__n_m"/></e>
-    <e lm="रुकावट"><i>रुकावट</i><par n="ऐ__n_m"/></e>
+    <e lm="ग्रीष्मकाल"><i>ग्रीष्मकाल</i><par n="थ__n_m"/></e>
+    <e lm="रुकावट"><i>रुकावट</i><par n="नकल__n_f"/></e>
     <e lm="उपसंपादक"><i>उपसंपादक</i><par n="थ__n_m"/></e>
     <e lm="गायिका"><i>गायिक</i><par n="ध/ा__n_m"/></e>
     <e lm="छुट्टा"><i>छुट्ट</i><par n="ध/ा__n_m"/></e>
@@ -10207,7 +11162,7 @@
     <e lm="तंबू"><i>तंब</i><par n="थ/ू__n_m"/></e>
     <e lm="मुसलमानी"><i>मुसलमान</i><par n="ध/ी__n_f"/></e>
     <e lm="मुस्लिम"><i>मुस्लिम</i><par n="थ__n_m"/></e>
-    <e lm="महासागर"><i>महासागर</i><par n="ऐ__n_m"/></e>
+    <e lm="महासागर"><i>महासागर</i><par n="थ__n_m"/></e>
     <e lm="अतिसार"><i>अतिसार</i><par n="ऐ__n_m"/></e>
     <e lm="ऐलान"><i>ऐलान</i><par n="थ__n_m"/></e>
     <e lm="खेड़ा"><i>खेड़</i><par n="ध/ा__n_m"/></e>
@@ -10268,7 +11223,7 @@
     <e lm="अधिरोपण"><i>अधिरोपण</i><par n="ऐ__n_m"/></e>
     <e lm="नाखुशी"><i>नाखुशी</i><par n="ऐ__n_f"/></e>
     <e lm="सरस्वती"><i>सरस्वती</i><par n="ऐ__n_f"/></e>
-    <e lm="ओठ"><i>ओठ</i><par n="ऐ__n_m"/></e>
+    <e lm="ओठ"><i>ओठ</i><par n="थ__n_m"/></e>
     <e lm="विभीषिका"><i>विभीषिक</i><par n="ध/ा__n_m"/></e>
     <e lm="सेक्रेटरियट"><i>सेक्रेटरियट</i><par n="ऐ__n_m"/></e>
     <e lm="इंद्रजालिक"><i>इंद्रजालिक</i><par n="ऐ__n_m"/></e>
@@ -10276,7 +11231,7 @@
     <e lm="आज्ञाभंग"><i>आज्ञाभंग</i><par n="ऐ__n_m"/></e>
     <e lm="आपबीती"><i>आपबीती</i><par n="ऐ__n_f"/></e>
     <e lm="प्रतिमूर्ति"><i>प्रतिमूर्ति</i><par n="नति__n_f"/></e>
-    <e lm="नास्तिक"><i>नास्तिक</i><par n="ऐ__n_m"/></e>
+    <e lm="नास्तिक"><i>नास्तिक</i><par n="थ__n_m"/></e>
     <e lm="हेतुवाद"><i>हेतुवाद</i><par n="ऐ__n_m"/></e>
     <e lm="सचलता"><i>सचलता</i><par n="ऐ__n_f"/></e>
     <e lm="अंगुर"><i>अंगुर</i><par n="थ__n_m"/></e>
@@ -10300,7 +11255,7 @@
     <e lm="भूतत्त्व"><i>भूतत्त्व</i><par n="थ__n_m"/></e>
     <e lm="भंडार"><i>भंडार</i><par n="थ__n_m"/></e>
     <e lm="पाठांतर"><i>पाठांतर</i><par n="ऐ__n_m"/></e>
-    <e lm="अंतर्यामी"><i>अंतर्यामी</i><par n="ऐ__n_m"/></e>
+    <e lm="अंतर्यामी"><i>अंतर्यामी</i><par n="इ__n_m"/></e>
     <e lm="अपरूपता"><i>अपरूपता</i><par n="ऐ__n_f"/></e>
     <e lm="मंत्री"><i>मंत्र</i><par n="हठ/ी__n_m"/></e>
     <e lm="अनुवर्तन"><i>अनुवर्तन</i><par n="ऐ__n_m"/></e>
@@ -10343,7 +11298,7 @@
     <e lm="सांत्वना"><i>सांत्वना</i><par n="बला__n_f"/></e>
     <e lm="उपनियम"><i>उपनियम</i><par n="थ__n_m"/></e>
     <e lm="वि"><i>वि</i><par n="इ__n_m"/></e>
-    <e lm="प्रशासन"><i>प्रशासन</i><par n="ऐ__n_m"/></e>
+    <e lm="प्रशासन"><i>प्रशासन</i><par n="थ__n_m"/></e>
     <e lm="बेरुखी"><i>बेरुख</i><par n="ध/ी__n_f"/></e>
     <e lm="औकात"><i>औकात</i><par n="ऐ__n_f"/></e>
     <e lm="सितंबर"><i>सितंबर</i><par n="ऐ__n_m"/></e>
@@ -10362,7 +11317,7 @@
     <e lm="नाई"><i>नाई</i><par n="ऐ__n_f"/></e>
     <e lm="प्रत्याशा"><i>प्रत्याश</i><par n="ध/ा__n_m"/></e>
     <e lm="चाल"><i>चाल</i><par n="जड__n_f"/></e>
-    <e lm="चाक"><i>चाक</i><par n="ऐ__n_m"/></e>
+    <e lm="चाक"><i>चाक</i><par n="थ__n_m"/></e>
     <e lm="उसूल"><i>उसूल</i><par n="थ__n_m"/></e>
     <e lm="साज"><i>साज</i><par n="थ__n_m"/></e>
     <e lm="खीर"><i>खीर</i><par n="ऐ__n_f"/></e>
@@ -10533,7 +11488,6 @@
     <e lm="साधना"><i>साधना</i><par n="ऐ__n_f"/></e>
     <e lm="पूर्वज"><i>पूर्वज</i><par n="थ__n_m"/></e>
     <e lm="आर्टिस्ट"><i>आर्टिस्ट</i><par n="थ__n_m"/></e>
-    <e lm="जापान"><i>जापान</i><par n="ऐ__n_m"/></e>
     <e lm="सूफ़ी"><i>सूफ़</i><par n="ध/ी__n_f"/></e>
     <e lm="लुच्चा"><i>लुच्च</i><par n="ध/ा__n_m"/></e>
     <e lm="आशीर्वचन"><i>आशीर्वचन</i><par n="थ__n_m"/></e>
@@ -10546,9 +11500,9 @@
     <e lm="पर्यटक"><i>पर्यटक</i><par n="थ__n_m"/></e>
     <e lm="चिरागदान"><i>चिरागदान</i><par n="ऐ__n_m"/></e>
     <e lm="उल्का"><i>उल्का</i><par n="बला__n_f"/></e>
-    <e lm="रूप"><i>रूप</i><par n="ऐ__n_m"/></e>
+    <e lm="रूप"><i>रूप</i><par n="थ__n_m"/></e>
     <e lm="मतांतर"><i>मतांतर</i><par n="ऐ__n_m"/></e>
-    <e lm="रविवार"><i>रविवार</i><par n="ऐ__n_m"/></e>
+    <e lm="रविवार"><i>रविवार</i><par n="थ__n_m"/></e>
     <e lm="व्यस्थापक"><i>व्यस्थापक</i><par n="थ__n_m"/></e>
     <e lm="परिबोधन"><i>परिबोधन</i><par n="ऐ__n_m"/></e>
     <e lm="मीठा"><i>मीठ</i><par n="ध/ा__n_m"/></e>
@@ -10649,7 +11603,7 @@
     <e lm="लीडरी"><i>लीडरी</i><par n="ऐ__n_f"/></e>
     <e lm="दोपहर"><i>दोपहर</i><par n="जड__n_f"/></e>
     <e lm="धुनाई"><i>धुनाई</i><par n="ऐ__n_f"/></e>
-    <e lm="तर्क"><i>तर्क</i><par n="ऐ__n_m"/></e>
+    <e lm="तर्क"><i>तर्क</i><par n="थ__n_m"/></e>
     <e lm="टोल"><i>टोल</i><par n="जड__n_f"/></e>
     <e lm="गहरा"><i>गहर</i><par n="दग/ा__n_m"/></e>
     <e lm="पैदल"><i>पैदल</i><par n="ऐ__n_m"/></e>
@@ -10675,7 +11629,7 @@
     <e lm="त्रिमूर्ति"><i>त्रिमूर्ति</i><par n="इ__n_m"/></e>
     <e lm="पल्लेदार"><i>पल्लेदार</i><par n="ऐ__n_m"/></e>
     <e lm="अनवधानता"><i>अनवधानता</i><par n="ऐ__n_f"/></e>
-    <e lm="खाल"><i>खाल</i><par n="ऐ__n_m"/></e>
+    <e lm="खाल"><i>खाल</i><par n="थ__n_m"/></e>
     <e lm="टप"><i>टप</i><par n="जड__n_f"/></e>
     <e lm="कमाऊ"><i>कमाऊ</i><par n="ऐ__n_m"/></e>
     <e lm="कमाई"><i>कमाई</i><par n="ऐ__n_f"/></e>
@@ -10686,12 +11640,11 @@
     <e lm="तिलांजली"><i>तिलांजली</i><par n="ऐ__n_f"/></e>
     <e lm="चरसा"><i>चरस</i><par n="ध/ा__n_m"/></e>
     <e lm="शृंगार"><i>शृंगार</i><par n="ऐ__n_m"/></e>
-    <e lm="फ़र्क"><i>फ़र्क</i><par n="ऐ__n_m"/></e>
+    <e lm="फ़र्क"><i>फ़र्क</i><par n="थ__n_m"/></e>
     <e lm="गणित"><i>गणित</i><par n="ऐ__n_f"/></e>
     <e lm="कुदान"><i>कुदान</i><par n="ऐ__n_f"/></e>
     <e lm="डिग्री"><i>डिग्र</i><par n="ध/ी__n_f"/></e>
     <e lm="फाइल"><i>फाइल</i><par n="जड__n_f"/></e>
-    <e lm="फाइल"><i>फाइल</i><par n="ऐ__n_m"/></e>
     <e lm="सर्वाधिकारी"><i>सर्वाधिकार</i><par n="हठ/ी__n_m"/></e>
     <e lm="तात्पर्य"><i>तात्पर्य</i><par n="ऐ__n_m"/></e>
     <e lm="संघटन"><i>संघटन</i><par n="ऐ__n_m"/></e>
@@ -10771,7 +11724,7 @@
     <e lm="शिल्पकारी"><i>शिल्पकार</i><par n="हठ/ी__n_m"/></e>
     <e lm="रेडियो"><i>रेडियो</i><par n="ऐ__n_m"/></e>
     <e lm="बौड़म"><i>बौड़म</i><par n="थ__n_m"/></e>
-    <e lm="लेबुल"><i>लेबुल</i><par n="ऐ__n_m"/></e>
+    <e lm="लेबुल"><i>लेबुल</i><par n="थ__n_m"/></e>
     <e lm="आक्षेपण"><i>आक्षेपण</i><par n="ऐ__n_m"/></e>
     <e lm="सूचीपत्रक"><i>सूचीपत्रक</i><par n="ऐ__n_m"/></e>
     <e lm="लोकगीत"><i>लोकगीत</i><par n="थ__n_m"/></e>
@@ -10786,7 +11739,7 @@
     <e lm="बढ़िया"><i>बढ़िय</i><par n="ध/ा__n_m"/></e>
     <e lm="भर्ती"><i>भर्त</i><par n="ध/ी__n_f"/></e>
     <e lm="रुग्ण"><i>रुग्ण</i><par n="ऐ__n_m"/></e>
-    <e lm="नृत्य"><i>नृत्य</i><par n="ऐ__n_m"/></e>
+    <e lm="नृत्य"><i>नृत्य</i><par n="थ__n_m"/></e>
     <e lm="शह"><i>शह</i><par n="ऐ__n_m"/></e>
     <e lm="सिगरेट"><i>सिगरेट</i><par n="जड__n_f"/></e>
     <e lm="वृषभ"><i>वृषभ</i><par n="थ__n_m"/></e>
@@ -10849,7 +11802,7 @@
     <e lm="कामकाज"><i>कामकाज</i><par n="थ__n_m"/></e>
     <e lm="अनन्नास"><i>अनन्नास</i><par n="थ__n_m"/></e>
     <e lm="दफ्तरी"><i>दफ्तरी</i><par n="ऐ__n_f"/></e>
-    <e lm="मकसद"><i>मकसद</i><par n="ऐ__n_m"/></e>
+    <e lm="मकसद"><i>मकसद</i><par n="थ__n_m"/></e>
     <e lm="रोगाणुनाशी"><i>रोगाणुनाश</i><par n="हठ/ी__n_m"/></e>
     <e lm="सजग"><i>सजग</i><par n="थ__n_m"/></e>
     <e lm="आमद"><i>आमद</i><par n="जड__n_f"/></e>
@@ -10858,10 +11811,9 @@
     <e lm="लोचन"><i>लोचन</i><par n="थ__n_m"/></e>
     <e lm="परवरिश"><i>परवरिश</i><par n="ऐ__n_f"/></e>
     <e lm="परिपृच्छा"><i>परिपृच्छा</i><par n="बला__n_f"/></e>
-    <e lm="काज"><i>काज</i><par n="ऐ__n_m"/></e>
+    <e lm="काज"><i>काज</i><par n="थ__n_m"/></e>
     <e lm="पाकेटमार"><i>पाकेटमार</i><par n="थ__n_m"/></e>
     <e lm="पैसा"><i>पैस</i><par n="ध/ा__n_m"/></e>
-    <e lm="चीन"><i>चीन</i><par n="थ__n_m"/></e>
     <e lm="कुल"><i>कुल</i><par n="थ__n_m"/></e>
     <e lm="कश्ती"><i>कश्त</i><par n="ध/ी__n_f"/></e>
     <e lm="हेतुवादी"><i>हेतुवाद</i><par n="हठ/ी__n_m"/></e>
@@ -10919,7 +11871,7 @@
     <e lm="उत्तरापेक्षी"><i>उत्तरापेक्ष</i><par n="हठ/ी__n_m"/></e>
     <e lm="दृश्य"><i>दृश्य</i><par n="थ__n_m"/></e>
     <e lm="नित्यकर्म"><i>नित्यकर्म</i><par n="थ__n_m"/></e>
-    <e lm="परमेश्वर"><i>परमेश्वर</i><par n="ऐ__n_m"/></e>
+    <e lm="परमेश्वर"><i>परमेश्वर</i><par n="थ__n_m"/></e>
     <e lm="सत्यानाश"><i>सत्यानाश</i><par n="ऐ__n_m"/></e>
     <e lm="लग्गा"><i>लग्ग</i><par n="ध/ा__n_m"/></e>
     <e lm="खेद"><i>खेद</i><par n="ऐ__n_m"/></e>
@@ -10946,7 +11898,7 @@
     <e lm="लाइफबोट"><i>लाइफबोट</i><par n="जड__n_f"/></e>
     <e lm="लक्ष्मणरेखा"><i>लक्ष्मणरेखा</i><par n="ऐ__n_f"/></e>
     <e lm="गुसलखाना"><i>गुसलखान</i><par n="ध/ा__n_m"/></e>
-    <e lm="बकवास"><i>बकवास</i><par n="ऐ__n_m"/></e>
+    <e lm="बकवास"><i>बकवास</i><par n="ऐ__n_f"/></e>
     <e lm="परिलाभ"><i>परिलाभ</i><par n="ऐ__n_m"/></e>
     <e lm="मोहर"><i>मोहर</i><par n="जड__n_f"/></e>
     <e lm="बीड़ा"><i>बीड़</i><par n="ध/ा__n_m"/></e>
@@ -10975,9 +11927,9 @@
     <e lm="जहाज"><i>जहाज</i><par n="थ__n_m"/></e>
     <e lm="जहाज़"><i>जहाज़</i><par n="थ__n_m"/></e>
     <e lm="नहला"><i>नहल</i><par n="ध/ा__n_m"/></e>
-    <e lm="सूर्य"><i>सूर्य</i><par n="ऐ__n_m"/></e>
+    <e lm="सूर्य"><i>सूर्य</i><par n="थ__n_m"/></e>
     <e lm="हरदिल"><i>हरदिल</i><par n="ऐ__n_m"/></e>
-    <e lm="संवेदन"><i>संवेदन</i><par n="ऐ__n_m"/></e>
+    <e lm="संवेदन"><i>संवेदन</i><par n="थ__n_m"/></e>
     <e lm="प्राथमिकता"><i>प्राथमिकता</i><par n="ऐ__n_f"/></e>
     <e lm="वातोन्माद"><i>वातोन्माद</i><par n="ऐ__n_m"/></e>
     <e lm="प्रतिग्रह"><i>प्रतिग्रह</i><par n="ऐ__n_m"/></e>
@@ -10986,7 +11938,7 @@
     <e lm="कुमार्ग"><i>कुमार्ग</i><par n="थ__n_m"/></e>
     <e lm="घुटन"><i>घुटन</i><par n="ऐ__n_f"/></e>
     <e lm="राजपुत्रा"><i>राजपुत्रा</i><par n="थ__n_m"/></e>
-    <e lm="मृत"><i>मृत</i><par n="ऐ__n_m"/></e>
+    <e lm="मृत"><i>मृत</i><par n="थ__n_m"/></e>
     <e lm="धनादेश"><i>धनादेश</i><par n="थ__n_m"/></e>
     <e lm="अदरक"><i>अदरक</i><par n="ऐ__n_f"/></e>
     <e lm="पहुनाई"><i>पहुना</i><par n="/ई__n_f"/></e>
@@ -11031,7 +11983,7 @@
     <e lm="युद्धविद्या"><i>युद्धविद्या</i><par n="बला__n_f"/></e>
     <e lm="नैराश्य"><i>नैराश्य</i><par n="ऐ__n_m"/></e>
     <e lm="रेललाइन"><i>रेललाइन</i><par n="जड__n_f"/></e>
-    <e lm="मिलान"><i>मिलान</i><par n="ऐ__n_m"/></e>
+    <e lm="मिलान"><i>मिलान</i><par n="थ__n_m"/></e>
     <e lm="मजीरा"><i>मजीर</i><par n="ध/ा__n_m"/></e>
     <e lm="स्थिरता"><i>स्थिरत</i><par n="ध/ा__n_m"/></e>
     <e lm="मिलाई"><i>मिला</i><par n="/ई__n_f"/></e>
@@ -11056,7 +12008,7 @@
     <e lm="गदगद"><i>गदगद</i><par n="ऐ__n_m"/></e>
     <e lm="त्योहारी"><i>त्योहार</i><par n="ध/ी__n_f"/></e>
     <e lm="मोरचा"><i>मोरच</i><par n="ध/ा__n_m"/></e>
-    <e lm="सभ्यता"><i>सभ्यता</i><par n="ऐ__n_f"/></e>
+    <e lm="सभ्यता"><i>सभ्यता</i><par n="हनु__n_f"/></e>
     <e lm="परिस्थिति"><i>परिस्थिति</i><par n="नति__n_f"/></e>
     <e lm="मिसाल"><i>मिसाल</i><par n="जड__n_f"/></e>
     <e lm="पिन"><i>पिन</i><par n="जड__n_f"/></e>
@@ -11198,6 +12150,7 @@
     <e lm="उद्योगीकरण"><i>उद्योगीकरण</i><par n="ऐ__n_m"/></e>
     <e lm="अनुस्मरण"><i>अनुस्मरण</i><par n="ऐ__n_m"/></e>
     <e lm="कबार"><i>कबार</i><par n="ऐ__n_m"/></e>
+    <e lm="यूनिट"><i>यूनिट</i><par n="ऐ__n_m"/></e>
     <e lm="इकाई"><i>इका</i><par n="/ई__n_f"/></e>
     <e lm="गद्दा"><i>गद्द</i><par n="ध/ा__n_m"/></e>
     <e lm="घट"><i>घट</i><par n="थ__n_m"/></e>
@@ -11238,14 +12191,14 @@
 	<e lm="एस्टेरॉयड"><i>एस्टेरॉयड</i><par n="ऐ__n_m"/></e>
     <e lm="शस्त्रशाला"><i>शस्त्रशाला</i><par n="बला__n_f"/></e>
     <e lm="पुनरागमन"><i>पुनरागमन</i><par n="ऐ__n_m"/></e>
-    <e lm="सूर्योदय"><i>सूर्योदय</i><par n="ऐ__n_m"/></e>
+    <e lm="सूर्योदय"><i>सूर्योदय</i><par n="थ__n_m"/></e>
     <e lm="प्रवीणता"><i>प्रवीणत</i><par n="ध/ा__n_m"/></e>
     <e lm="स्वर"><i>स्वर</i><par n="थ__n_m"/></e>
     <e lm="परवाह"><i>परवाह</i><par n="ऐ__n_f"/></e>
     <e lm="ठोडी"><i>ठोड</i><par n="ध/ी__n_f"/></e>
     <e lm="ऋणी"><i>ऋणी</i><par n="ऐ__n_f"/></e>
     <e lm="प्रस्तुति"><i>प्रस्तुति</i><par n="इ__n_m"/></e>
-    <e lm="वेतन"><i>वेतन</i><par n="ऐ__n_m"/></e>
+    <e lm="वेतन"><i>वेतन</i><par n="थ__n_m"/></e>
     <e lm="शागिर्दी"><i>शागिर्दी</i><par n="ऐ__n_f"/></e>
     <e lm="अभ्यासी"><i>अभ्यास</i><par n="हठ/ी__n_m"/></e>
     <e lm="चलचित्र"><i>चलचित्र</i><par n="थ__n_m"/></e>
@@ -11253,7 +12206,7 @@
     <e lm="चबेना"><i>चबेन</i><par n="ध/ा__n_m"/></e>
     <e lm="रोजनामा"><i>रोजनाम</i><par n="ध/ा__n_m"/></e>
     <e lm="फसाना"><i>फसान</i><par n="ध/ा__n_m"/></e>
-    <e lm="चाटुकार"><i>चाटुकार</i><par n="ऐ__n_m"/></e>
+    <e lm="चाटुकार"><i>चाटुकार</i><par n="थ__n_m"/></e>
     <e lm="जमानतदार"><i>जमानतदार</i><par n="थ__n_m"/></e>
     <e lm="सोहबत"><i>सोहबत</i><par n="थ__n_m"/></e>
     <e lm="वाणिज्या"><i>वाणिज्या</i><par n="बला__n_f"/></e>
@@ -11282,7 +12235,6 @@
     <e lm="जालसाजी"><i>जालसाजी</i><par n="ऐ__n_f"/></e>
 	<e lm="एस"><i>एस</i><par n="थ__n_m"/></e>
 	<e lm="स्वतंत्रता"><i>स्वतंत्रता</i><par n="ऐ__n_f"/></e>
-	<e lm="प्रति"><i>प्रति</i><par n="नति__n_f"/></e>
 	<e lm="केन्द्र"><i>केन्द्र</i><par n="थ__n_m"/></e>
 	<e lm="आरंभ"><i>आरंभ</i><par n="थ__n_m"/></e>
 	<e lm="भगवान"><i>भगवान</i><par n="थ__n_m"/></e>
@@ -11376,7 +12328,7 @@
 	<e lm="सुन्दरता"><i>सुन्दरत</i><par n="ध/ा__n_m"/></e>
 	<e lm="प्रवृति"><i>प्रवृति</i><par n="नति__n_f"/></e>
 	<e lm="सिरदर्द"><i>सिरदर्द</i><par n="थ__n_m"/></e>
-	<e lm="श्राप"><i>श्राप</i><par n="थ__n_m"/></e>
+	<!-- <e lm="श्राप"><i>���्राप</i><par n="थ__n_m"/></e> -->
 	<e lm="याहू"><i>याह</i><par n="खुशब/ू__n_f"/></e>
 	<e lm="अरविन्द"><i>अरविन्द</i><par n="थ__n_m"/></e>
 	<e lm="अरे"><i>अरे</i><par n="थ__n_m"/></e>
@@ -11740,6 +12692,7 @@
 	<e lm="तीव्रताबोधक"><i>तीव्रताबोधक</i><par n="थ__n_m"/></e>
 	<e lm="पर्ण-समूह"><i>पर्ण-समूह</i><par n="थ__n_m"/></e>
 	<e lm="लालिमा"><i>लालिमा</i><par n="ऐ__n_f"/></e>
+	<e lm="ग्रैविटेशन"><i>ग्रैविटेशन</i><par n="ऐ__n_f"/></e>
 	<e lm="पर्यनुकूलन"><i>पर्यनुकूलन</i><par n="ऐ__n_m"/></e>
 	<e lm="बच्चा-गाड़ी"><i>बच्चा-गाड़</i><par n="ध/ी__n_f"/></e>
 	<e lm="कैल्शिअम"><i>कैल्शिअम</i><par n="ऐ__n_m"/></e>
@@ -11826,7 +12779,7 @@
 	<e lm="आकाशदीप"><i>आकाशदीप</i><par n="थ__n_m"/></e>
 	<e lm="धूमपट"><i>धूमपट</i><par n="थ__n_m"/></e>
 	<e lm="संदेहअ"><i>संदेहअ</i><par n="थ__n_m"/></e>
-	<e lm="प्रश्नकर्ता"><i>प्रश्नकर्ता</i><par n="ऐ__n_m"/></e>
+	<e lm="प्रश्नकर्ता"><i>प्रश्नकर्ता</i><par n="मौलाना__n_m"/></e>
 	<e lm="पारभासकता"><i>पारभासकता</i><par n="ऐ__n_f"/></e>
 	<e lm="चीख-पुकार"><i>चीख-पुकार</i><par n="जड__n_f"/></e>
 	<e lm="सार्डीन"><i>सार्डीन</i><par n="ऐ__n_f"/></e>
@@ -12070,11 +13023,12 @@
 	<e lm="उपमार्ग"><i>उपमार्ग</i><par n="थ__n_m"/></e>
 	<e lm="विवर्धन"><i>विवर्धन</i><par n="ऐ__n_m"/></e>
 	<e lm="खरीद"><i>खरीद</i><par n="ऐ__n_f"/></e>
-	<e lm="बेतुकापन"><i>बेतुकापन</i><par n="ऐ__n_m"/></e>
+	<e lm="बेतुकापन"><i>बेतुकापन</i><par n="अकेल/ापन__n_m"/></e>
 	<e lm="सहज-अशीर्षता"><i>सहज-अशीर्षता</i><par n="ऐ__n_f"/></e>
 	<e lm="भ्रूणास्थिशोथ"><i>भ्रूणास्थिशोथ</i><par n="ऐ__n_m"/></e>
 	<e lm="असमाधेयता"><i>असमाधेयता</i><par n="ऐ__n_f"/></e>
 	<e lm="परीक्षा"><i>परीक्षा</i><par n="ऐ__n_f"/></e>
+	<e lm="टैस्ट"><i>टैस्ट</i><par n="ऐ__n_m"/></e>
 	<e lm="हार्दिकता"><i>हार्दिकता</i><par n="ऐ__n_f"/></e>
 	<e lm="बैटरी"><i>बैटर</i><par n="ध/ी__n_f"/></e>
 	<e lm="कैमकर्डर"><i>कैमकर्डर</i><par n="थ__n_m"/></e>
@@ -12196,7 +13150,7 @@
 	<e lm="चमरघेंघ"><i>चमरघेंघ</i><par n="थ__n_m"/></e>
 	<e lm="समाकृति"><i>समाकृति</i><par n="ऐ__n_f"/></e>
 	<e lm="पाक-कला"><i>पाक-कला</i><par n="ऐ__n_f"/></e>
-	<e lm="आड़ू"><i>आड़ू</i><par n="ऐ__n_m"/></e>
+	<e lm="आड़ू"><i>आड़ू</i><par n="मौलाना__n_m"/></e>
 	<e lm="साया"><i>साय</i><par n="ध/ा__n_m"/></e>
 	<e lm="प्रोट्रान"><i>प्रोट्रान</i><par n="ऐ__n_m"/></e>
 	<e lm="लोम्ड़ी"><i>लोम्ड़</i><par n="ध/ी__n_f"/></e>
@@ -12245,7 +13199,7 @@
 	<e lm="धम्म"><i>धम्म</i><par n="ऐ__n_m"/></e>
 	<e lm="नौकरी"><i>नौकर</i><par n="ध/ी__n_f"/></e>
 	<e lm="रकून"><i>रकून</i><par n="थ__n_m"/></e>
-	<e lm="खारापन"><i>खारापन</i><par n="ऐ__n_m"/></e>
+	<e lm="खारापन"><i>खारापन</i><par n="अकेल/ापन__n_m"/></e>
 	<e lm="आत्मप्रदर्शनवादी"><i>आत्मप्रदर्शनवाद</i><par n="हठ/ी__n_m"/></e>
 	<e lm="अस्थायित्व"><i>अस्थायित्व</i><par n="ऐ__n_m"/></e>
 	<e lm="ऑमलेट"><i>ऑमलेट</i><par n="थ__n_m"/></e>
@@ -12260,9 +13214,9 @@
 	<e lm="तिड़वाँ"><i>तिड़वाँ</i><par n="ऐ__n_m"/></e>
 	<e lm="कंगूरा"><i>कंगूर</i><par n="ध/ा__n_m"/></e>
 	<e lm="प्रकाशविज्ञान"><i>प्रकाशविज्ञान</i><par n="ऐ__n_m"/></e>
-	<e lm="तकिया"><i>तकिया</i><par n="ऐ__n_m"/></e>
+	<e lm="तकिया"><i>तकिया</i><par n="ध/ा__n_m"/></e>
 	<e lm="तकियाः"><i>तकियाः</i><par n="ऐ__n_m"/></e>
-	<e lm="चयनकर्ता"><i>चयनकर्ता</i><par n="ऐ__n_m"/></e>
+	<e lm="चयनकर्ता"><i>चयनकर्ता</i><par n="ऋ__n_m"/></e>
 	<e lm="ग्लेडियोलस"><i>ग्लेडियोलस</i><par n="थ__n_m"/></e>
 	<e lm="अस्थिबंध"><i>अस्थिबंध</i><par n="थ__n_m"/></e>
 	<e lm="राजधानी"><i>राजधान</i><par n="ध/ी__n_f"/></e>
@@ -12271,6 +13225,9 @@
 	<e lm="गतिविधि"><i>गतिविधि</i><par n="नति__n_f"/></e>
 	<e lm="नाइटक्लब"><i>नाइटक्लब</i><par n="थ__n_m"/></e>
 	<e lm="असहायकता"><i>असहायकता</i><par n="ऐ__n_f"/></e>
+	<e lm="फ़ोर्स"><i>फ़ोर्स</i><par n="ऐ__n_f"/></e>
+	<e lm="एअर"><i>एअर</i><par n="ऐ__n_f"/></e>
+	<e lm="एन्ट्रोपी"><i>एन्ट्रोपी</i><par n="ऐ__n_f"/></e>
 	<e lm="भावात्मकता"><i>भावात्मकता</i><par n="ऐ__n_f"/></e>
 	<e lm="लंगोटी"><i>लंगोट</i><par n="ध/ी__n_f"/></e>
 	<e lm="प्रतीकविद्या"><i>प्रतीकविद्या</i><par n="ऐ__n_f"/></e>
@@ -12463,7 +13420,7 @@
 	<e lm="जीनसाज़ी"><i>जीनसाज़ी</i><par n="ऐ__n_f"/></e>
 	<e lm="फ़ीनिक्स"><i>फ़ीनिक्स</i><par n="थ__n_m"/></e>
 	<e lm="संभार-तंत्र"><i>संभार-तंत्र</i><par n="थ__n_m"/></e>
-	<e lm="आँसू"><i>आँसू</i><par n="ऐ__n_m"/></e>
+	<e lm="आँसू"><i>आ</i><par n="आ/ँसू__n_m"/></e>
 	<e lm="ऐनिमोन"><i>ऐनिमोन</i><par n="थ__n_m"/></e>
 	<e lm="टोस्टर"><i>टोस्टर</i><par n="थ__n_m"/></e>
 	<e lm="घेघ्"><i>घेघ्</i><par n="ऐ__n_m"/></e>
@@ -12475,7 +13432,7 @@
 	<e lm="पीतार्बुदता"><i>पीतार्बुदता</i><par n="ऐ__n_f"/></e>
 	<e lm="पोत-पार्श्व"><i>पोत-पार्श्व</i><par n="थ__n_m"/></e>
 	<e lm="सम्पन्नीकरण"><i>सम्पन्नीकरण</i><par n="ऐ__n_m"/></e>
-	<e lm="डाकिया"><i>डाकिया</i><par n="ऐ__n_m"/></e>
+	<e lm="डाकिया"><i>डाकिया</i><par n="ध/ा__n_m"/></e>
 	<e lm="तानाशाह्"><i>तानाशाह्</i><par n="ऐ__n_f"/></e>
 	<e lm="कार्बुरेटर"><i>कार्बुरेटर</i><par n="थ__n_m"/></e>
 	<e lm="ज़िल्द"><i>ज़िल्द</i><par n="जड__n_f"/></e>
@@ -13062,7 +14019,7 @@
 	<e lm="नाका"><i>नाक</i><par n="ध/ा__n_m"/></e>
 	<e lm="किण्वविज्ञान"><i>किण्वविज्ञान</i><par n="ऐ__n_m"/></e>
 	<e lm="विचार-गोष्ठी"><i>विचार-गोष्ठ</i><par n="ध/ी__n_f"/></e>
-	<e lm="विनाशकर्ता"><i>विनाशकर्ता</i><par n="ऐ__n_m"/></e>
+	<e lm="विनाशकर्ता"><i>विनाशकर्ता</i><par n="मौलाना__n_m"/></e>
 	<e lm="एड़ी"><i>एड़</i><par n="ध/ी__n_f"/></e>
 	<e lm="दूल्हा"><i>दूल्ह</i><par n="ध/ा__n_m"/></e>
 	<e lm="बजरा"><i>बजर</i><par n="ध/ा__n_m"/></e>
@@ -13179,7 +14136,7 @@
 	<e lm="दोलन"><i>दोलन</i><par n="थ__n_m"/></e>
 	<e lm="तापाघात"><i>तापाघात</i><par n="ऐ__n_m"/></e>
 	<e lm="आरामुखी"><i>आरामुख</i><par n="ध/ी__n_f"/></e>
-	<e lm="लोकाट"><i>लोकाट</i><par n="ऐ__n_m"/></e>
+	<e lm="लोकाट"><i>लोकाट</i><par n="थ__n_m"/></e>
 	<e lm="उदरशूल"><i>उदरशूल</i><par n="ऐ__n_m"/></e>
 	<e lm="यिन"><i>यिन</i><par n="ऐ__n_f"/></e>
 	<e lm="ज़रदी"><i>ज़रद</i><par n="ध/ी__n_f"/></e>
@@ -13233,7 +14190,7 @@
 	<e lm="तारामीन"><i>तारामीन</i><par n="जड__n_f"/></e>
 	<e lm="नीतिपरायणता"><i>नीतिपरायणता</i><par n="ऐ__n_f"/></e>
 	<e lm="त्रिकोणीयन"><i>त्रिकोणीयन</i><par n="ऐ__n_m"/></e>
-	<e lm="सफ़र"><i>सफ़र</i><par n="ऐ__n_m"/></e>
+	<e lm="सफ़र"><i>सफ़र</i><par n="थ__n_m"/></e>
 	<e lm="पेज-कट"><i>पेज-कट</i><par n="ऐ__n_m"/></e>
 	<e lm="सम्पर्क"><i>सम्पर्क</i><par n="थ__n_m"/></e>
 	<e lm="रज्जु-आरोहण"><i>रज्जु-आरोहण</i><par n="ऐ__n_m"/></e>
@@ -13328,7 +14285,7 @@
 	<e lm="भूकम्प"><i>भूकम्प</i><par n="ऐ__n_m"/></e>
 	<e lm="अभिलेखी"><i>अभिलेख</i><par n="हठ/ी__n_m"/></e>
 	<e lm="सीमारेखा"><i>सीमारेखा</i><par n="ऐ__n_f"/></e>
-	<e lm="छिछोरापन"><i>छिछोरापन</i><par n="ऐ__n_m"/></e>
+	<e lm="छिछोरापन"><i>छिछोरापन</i><par n="अकेल/ापन__n_m"/></e>
 	<e lm="हेपैटोफ़्लाविन"><i>हेपैटोफ़्लाविन</i><par n="ऐ__n_m"/></e>
 	<e lm="जड़"><i>जड़</i><par n="थ__n_m"/></e>
 	<e lm="पूयकोष"><i>पूयकोष</i><par n="थ__n_m"/></e>
@@ -13459,7 +14416,7 @@
 	<e lm="चर्मपत्र"><i>चर्मपत्र</i><par n="थ__n_m"/></e>
 	<e lm="बेटी"><i>बेट</i><par n="ध/ी__n_f"/></e>
 	<e lm="रोगीकक्ष"><i>रोगीकक्ष</i><par n="थ__n_m"/></e>
-	<e lm="रचयिता"><i>रचयिता</i><par n="ऐ__n_m"/></e>
+	<e lm="रचयिता"><i>रचयिता</i><par n="ऋ__n_m"/></e>
 	<e lm="धर्म-सिद्धांत"><i>धर्म-सिद्धांत</i><par n="थ__n_m"/></e>
 	<e lm="जैव-नीतिशास्त्र"><i>जैव-नीतिशास्त्र</i><par n="ऐ__n_m"/></e>
 	<e lm="प्रतिबाधा"><i>प्रतिबाधा</i><par n="ऐ__n_f"/></e>
@@ -13487,7 +14444,7 @@
 	<e lm="पीछा"><i>पीछा</i><par n="ऐ__n_m"/></e>
 	<e lm="सिल"><i>सिल</i><par n="थ__n_m"/></e>
 	<e lm="स्थिरक"><i>स्थिरक</i><par n="थ__n_m"/></e>
-	<e lm="खुरदरापन"><i>खुरदरापन</i><par n="ऐ__n_m"/></e>
+	<e lm="खुरदरापन"><i>खुरदरापन</i><par n="अकेल/ापन__n_m"/></e>
 	<e lm="टन्सिलाइटिस"><i>टन्सिलाइटिस</i><par n="ऐ__n_m"/></e>
 	<e lm="पर्दा"><i>पर्द</i><par n="ध/ा__n_m"/></e>
 	<e lm="यात्रावृत्त"><i>यात्रावृत्त</i><par n="थ__n_m"/></e>
@@ -13529,13 +14486,13 @@
 	<e lm="प्रस्तावक"><i>प्रस्तावक</i><par n="थ__n_m"/></e>
 	<e lm="तार्किकता"><i>तार्किकता</i><par n="ऐ__n_f"/></e>
 	<e lm="थियोडोलाइट"><i>थियोडोलाइट</i><par n="थ__n_m"/></e>
-	<e lm="परहेज़"><i>परहेज़</i><par n="ऐ__n_m"/></e>
+	<e lm="परहेज़"><i>परहेज़</i><par n="थ__n_m"/></e>
 	<e lm="फ़ोटन"><i>फ़ोटन</i><par n="ऐ__n_m"/></e>
 	<e lm="चहल-पहल"><i>चहल-पहल</i><par n="ऐ__n_f"/></e>
 	<e lm="सौंदर्य-प्रसाधिका"><i>सौंदर्य-प्रसाधिका</i><par n="ऐ__n_f"/></e>
 	<e lm="दोषदर्षिता"><i>दोषदर्षिता</i><par n="ऐ__n_f"/></e>
 	<e lm="दासता-विरोधी"><i>दासता-विरोध</i><par n="हठ/ी__n_m"/></e>
-	<e lm="कुआँ"><i>कुआँ</i><par n="ऐ__n_m"/></e>
+	<e lm="कुआँ"><i>कुआँ</i><par n="धु/आँ__n_m"/></e>
 	<e lm="रतालू"><i>रताल</i><par n="थ/ू__n_m"/></e>
 	<e lm="प्रसूति-विज्ञान"><i>प्रसूति-विज्ञान</i><par n="ऐ__n_m"/></e>
 	<e lm="नासिकाचक्र"><i>नासिकाचक्र</i><par n="थ__n_m"/></e>
@@ -13577,7 +14534,7 @@
 	<e lm="उच्चपस्थ"><i>उच्चपस्थ</i><par n="थ__n_m"/></e>
 	<e lm="रेडन"><i>रेडन</i><par n="ऐ__n_m"/></e>
 	<e lm="फालसा"><i>फालस</i><par n="ध/ा__n_m"/></e>
-	<e lm="सुरीलापन"><i>सुरीलापन</i><par n="ऐ__n_m"/></e>
+	<e lm="सुरीलापन"><i>सुरीलापन</i><par n="अकेल/ापन__n_m"/></e>
 	<e lm="खट्टापन"><i>खट्टापन</i><par n="ऐ__n_m"/></e>
 	<e lm="चक्रण"><i>चक्रण</i><par n="थ__n_m"/></e>
 	<e lm="अकेंथोसाइटोसिस"><i>अकेंथोसाइटोसिस</i><par n="ऐ__n_m"/></e>
@@ -13643,7 +14600,7 @@
 	<e lm="तालाबंदी"><i>तालाबंदी</i><par n="ऐ__n_f"/></e>
 	<e lm="डैफ़ोडिल"><i>डैफ़ोडिल</i><par n="थ__n_m"/></e>
 	<e lm="ढोर"><i>ढोर</i><par n="थ__n_m"/></e>
-	<e lm="साही"><i>साह</i><par n="ध/ी__n_f"/></e>
+	<!-- <e lm="साही"><i>साह</i><par n="���/ी__n_f"/></e> -->
 	<e lm="इमल्शन"><i>इमल्शन</i><par n="ऐ__n_m"/></e>
 	<e lm="सौंदर्यशास्त्र"><i>सौंदर्यशास्त्र</i><par n="ऐ__n_m"/></e>
 	<e lm="कुमारीपन"><i>कुमारीपन</i><par n="ऐ__n_m"/></e>
@@ -13922,7 +14879,7 @@
 	<e lm="संतृप्ति"><i>संतृप्ति</i><par n="ऐ__n_f"/></e>
 	<e lm="रेलमार्ग"><i>रेलमार्ग</i><par n="थ__n_m"/></e>
 	<e lm="कुलबैर"><i>कुलबैर</i><par n="ऐ__n_m"/></e>
-	<e lm="गोता"><i>गोता</i><par n="ऐ__n_m"/></e>
+	<e lm="गोता"><i>गोता</i><par n="ध/ा__n_m"/></e>
 	<e lm="अजनबीपन"><i>अजनबीपन</i><par n="ऐ__n_m"/></e>
 	<e lm="हैजा"><i>हैज</i><par n="ध/ा__n_m"/></e>
 	<e lm="बूथ"><i>बूथ</i><par n="थ__n_m"/></e>
@@ -13994,7 +14951,7 @@
 	<e lm="उदारवादी"><i>उदारवादी</i><par n="ऐ__n_f"/></e>
 	<e lm="शर्मिंदगी"><i>शर्मिंदग</i><par n="ध/ी__n_f"/></e>
 	<e lm="दावानल"><i>दावानल</i><par n="थ__n_m"/></e>
-	<e lm="पुरानापन"><i>पुरानापन</i><par n="ऐ__n_m"/></e>
+	<e lm="पुरानापन"><i>पुरानापन</i><par n="अकेल/ापन__n_m"/></e>
 	<e lm="इशारा"><i>इशार</i><par n="ध/ा__n_m"/></e>
 	<e lm="कोना"><i>कोन</i><par n="ध/ा__n_m"/></e>
 	<e lm="जलदृश्य"><i>जलदृश्य</i><par n="थ__n_m"/></e>
@@ -14096,7 +15053,7 @@
 	<e lm="आवेगअ"><i>आवेगअ</i><par n="ऐ__n_m"/></e>
 	<e lm="शिक्षाविशारद्"><i>शिक्षाविशारद्</i><par n="ऐ__n_m"/></e>
 	<e lm="काउंटेस"><i>काउंटेस</i><par n="जड__n_f"/></e>
-	<e lm="कलेजा"><i>कलेजा</i><par n="ऐ__n_m"/></e>
+	<e lm="कलेजा"><i>कलेजा</i><par n="ध/ा__n_m"/></e>
 	<e lm="पदामर्शदाता"><i>पदामर्शदाता</i><par n="ऐ__n_m"/></e>
 	<e lm="दुम्मट"><i>दुम्मट</i><par n="ऐ__n_f"/></e>
 	<e lm="कैंचा"><i>कैंच</i><par n="ध/ा__n_m"/></e>
@@ -14167,6 +15124,7 @@
 	<e lm="रोआँ"><i>रोआँ</i><par n="ऐ__n_m"/></e>
 	<e lm="घड़ी"><i>घड़</i><par n="ध/ी__n_f"/></e>
 	<e lm="शवपेटिका"><i>शवपेटिका</i><par n="ऐ__n_f"/></e>
+	<e lm="क्लॉक"><i>क्लॉक</i><par n="ऐ__n_f"/></e>
 	<e lm="ज़िंदादिली"><i>ज़िंदादिली</i><par n="ऐ__n_f"/></e>
 	<e lm="ग्राइंडर"><i>ग्राइंडर</i><par n="थ__n_m"/></e>
 	<e lm="अप्रत्ययकारिता"><i>अप्रत्ययकारिता</i><par n="ऐ__n_f"/></e>
@@ -14366,7 +15324,7 @@
 	<e lm="ऑक्टेन"><i>ऑक्टेन</i><par n="ऐ__n_m"/></e>
 	<e lm="ठेपी"><i>ठेप</i><par n="ध/ी__n_f"/></e>
 	<e lm="निवेशक"><i>निवेशक</i><par n="थ__n_m"/></e>
-	<e lm="विस्थापन"><i>विस्थापन</i><par n="ऐ__n_m"/></e>
+	<e lm="विस्थापन"><i>विस्थापन</i><par n="थ__n_m"/></e>
 	<e lm="भग-शिश्न"><i>भग-शिश्न</i><par n="थ__n_m"/></e>
 	<e lm="अल्पसंख्यक"><i>अल्पसंख्यक</i><par n="थ__n_m"/></e>
 	<e lm="प्यूपा"><i>प्यूपा</i><par n="ऐ__n_m"/></e>
@@ -14375,7 +15333,7 @@
 	<e lm="जीवनदाता"><i>जीवनदाता</i><par n="ऐ__n_m"/></e>
 	<e lm="अराजकतावादी"><i>अराजकतावाद</i><par n="हठ/ी__n_m"/></e>
 	<e lm="पिल्ला"><i>पिल्ल</i><par n="ध/ा__n_m"/></e>
-	<e lm="संश्लेषक"><i>संश्लेषक</i><par n="थ__n_m"/></e>
+	<e lm="संश्लेषक"><i>संश्���ेषक</i><par n="थ__n_m"/></e>
 	<e lm="वनीलिन"><i>वनीलिन</i><par n="ऐ__n_m"/></e>
 	<e lm="जैकपट"><i>जैकपट</i><par n="थ__n_m"/></e>
 	<e lm="स्पीडवेल"><i>स्पीडवेल</i><par n="थ__n_m"/></e>
@@ -14392,12 +15350,12 @@
 	<e lm="दाना"><i>दान</i><par n="ध/ा__n_m"/></e>
 	<e lm="सुसमाचारवाद"><i>सुसमाचारवाद</i><par n="ऐ__n_m"/></e>
 	<e lm="कटिशूल"><i>कटिशूल</i><par n="ऐ__n_m"/></e>
-	<e lm="जूजू"><i>जूजू</i><par n="ऐ__n_m"/></e>
+	<!-- <e lm="जू���ू"><i>जूजू</i><par n="ऐ__n_m"/></e> -->
 	<e lm="पुनर्बीमा"><i>पुनर्बीम</i><par n="ध/ा__n_m"/></e>
 	<e lm="प्रादेशिकता"><i>प्रादेशिकता</i><par n="ऐ__n_f"/></e>
 	<e lm="गिटारवादक"><i>गिटारवादक</i><par n="थ__n_m"/></e>
 	<e lm="अर्थपूर्णता"><i>अर्थपूर्णता</i><par n="ऐ__n_f"/></e>
-	<e lm="अधूरापन"><i>अधूरापन</i><par n="ऐ__n_m"/></e>
+	<e lm="अधूरापन"><i>अधूरापन</i><par n="अकेल/ापन__n_m"/></e>
 	<e lm="चटनी"><i>चटन</i><par n="ध/ी__n_f"/></e>
 	<e lm="वौलीबौल"><i>वौलीबौल</i><par n="जड__n_f"/></e>
 	<e lm="शिकंजा"><i>शिकंज</i><par n="ध/ा__n_m"/></e>
@@ -14415,6 +15373,8 @@
 	<e lm="मुलज़िम"><i>मुलज़िम</i><par n="थ__n_m"/></e>
 	<e lm="रिक्तीकरण"><i>रिक्तीकरण</i><par n="ऐ__n_m"/></e>
 	<e lm="अरोचकता"><i>अरोचकता</i><par n="ऐ__n_f"/></e>
+	<e lm="पुष्टी"><i>पुष्टी</i><par n="ऐ__n_f"/></e>
+	<e lm="स्टेशनरी"><i>स्टेशनरी</i><par n="ऐ__n_f"/></e>
 	<e lm="पुष्टीकरण"><i>पुष्टीकरण</i><par n="ऐ__n_m"/></e>
 	<e lm="स्वीकरण"><i>स्वीकरण</i><par n="ऐ__n_m"/></e>
 	<e lm="पर्णपीत"><i>पर्णपीत</i><par n="थ__n_m"/></e>
@@ -14504,6 +15464,8 @@
 	<e lm="एकादशभुज"><i>एकादशभुज</i><par n="थ__n_m"/></e>
 	<e lm="बिल्डर"><i>बिल्डर</i><par n="थ__n_m"/></e>
 	<e lm="अव्यावहारिकता"><i>अव्यावहारिकता</i><par n="ऐ__n_f"/></e>
+	<e lm="आव्यूह"><i>आव्यूह</i><par n="ऐ__n_f"/></e>
+	<e lm="मैट्रिक्स"><i>मैट्रिक्स</i><par n="ऐ__n_f"/></e>
 	<e lm="गीत-पुस्तिका"><i>गीत-पुस्तिका</i><par n="ऐ__n_f"/></e>
 	<e lm="बाल-कक्ष"><i>बाल-कक्ष</i><par n="थ__n_m"/></e>
 	<e lm="सिपाहीगिरी"><i>सिपाहीगिरी</i><par n="ऐ__n_f"/></e>
@@ -14585,7 +15547,7 @@
 	<e lm="नाइटी"><i>नाइट</i><par n="ध/ी__n_f"/></e>
 	<e lm="लूट"><i>लूट</i><par n="ऐ__n_f"/></e>
 	<e lm="रक्तचूषक"><i>रक्तचूषक</i><par n="थ__n_m"/></e>
-	<e lm="निर्गम"><i>निर्गम</i><par n="ऐ__n_m"/></e>
+	<e lm="निर्गम"><i>निर्गम</i><par n="थ__n_m"/></e>
 	<e lm="लिंगपरिवर्तन"><i>लिंगपरिवर्तन</i><par n="ऐ__n_m"/></e>
 	<e lm="रिकेट्स"><i>रिकेट्स</i><par n="ऐ__n_m"/></e>
 	<e lm="आकस्मिकता"><i>आकस्मिकता</i><par n="ऐ__n_f"/></e>
@@ -14605,6 +15567,7 @@
 	<e lm="पशुरति"><i>पशुरति</i><par n="ऐ__n_f"/></e>
 	<e lm="वर्मीक्यूलाइट"><i>वर्मीक्यूलाइट</i><par n="थ__n_m"/></e>
 	<e lm="चढ़ाव"><i>चढ़ाव</i><par n="थ__n_m"/></e>
+	<e lm="क्लिक"><i>क्लिक</i><par n="थ__n_m"/></e>
 	<e lm="सड़कबंदी"><i>सड़कबंद</i><par n="ध/ी__n_f"/></e>
 	<e lm="ब्लौग"><i>ब्लौग</i><par n="ऐ__n_m"/></e>
 	<e lm="प्रवर्धन-पेटी"><i>प्रवर्धन-पेट</i><par n="ध/ी__n_f"/></e>
@@ -14873,6 +15836,7 @@
 	<e lm="उठाईगिरी"><i>उठाईगिरी</i><par n="ऐ__n_f"/></e>
 	<e lm="ओवरराइड"><i>ओवरराइड</i><par n="थ__n_m"/></e>
 	<e lm="झपट"><i>झपट</i><par n="ऐ__n_f"/></e>
+	<e lm="मासूमियत"><i>मासूमियत</i><par n="ऐ__n_f"/></e>
 	<e lm="भोजन-नलिका"><i>भोजन-नलिका</i><par n="ऐ__n_f"/></e>
 	<e lm="जीव-रसायन"><i>जीव-रसायन</i><par n="ऐ__n_m"/></e>
 	<e lm="अभद्रता"><i>अभद्रता</i><par n="ऐ__n_f"/></e>
@@ -15017,7 +15981,7 @@
 	<e lm="हड़ताल-भेदक"><i>हड़ताल-भेदक</i><par n="थ__n_m"/></e>
 	<e lm="धर्मनिरपेक्षवाद"><i>धर्मनिरपेक्षवाद</i><par n="ऐ__n_m"/></e>
 	<e lm="पारलौकिकता"><i>पारलौकिकता</i><par n="ऐ__n_f"/></e>
-	<e lm="नाता"><i>नाता</i><par n="ऐ__n_m"/></e>
+	<e lm="नाता"><i>नाता</i><par n="ध/ा__n_m"/></e>
 	<e lm="पपलिन"><i>पपलिन</i><par n="थ__n_m"/></e>
 	<e lm="वायरमैन"><i>वायरमैन</i><par n="थ__n_m"/></e>
 	<e lm="परंपरावाद"><i>परंपरावाद</i><par n="ऐ__n_m"/></e>
@@ -15031,7 +15995,7 @@
 	<e lm="एकान्तता"><i>एकान्तता</i><par n="ऐ__n_f"/></e>
 	<e lm="ऐप्लीके"><i>ऐप्लीके</i><par n="ऐ__n_m"/></e>
 	<e lm="हाँडी"><i>हाँड</i><par n="ध/ी__n_f"/></e>
-	<e lm="नशा"><i>नशा</i><par n="ऐ__n_m"/></e>
+	<e lm="नशा"><i>नशा</i><par n="ध/ा__n_m"/></e>
 	<e lm="चौर्योन्माद"><i>चौर्योन्माद</i><par n="ऐ__n_m"/></e>
 	<e lm="धर्मसभा"><i>धर्मसभा</i><par n="ऐ__n_f"/></e>
 	<e lm="पत्ता"><i>पत्त</i><par n="ध/ा__n_m"/></e>
@@ -15152,6 +16116,7 @@
 	<e lm="ट्रिल्बी"><i>ट्रिल्बी</i><par n="ऐ__n_m"/></e>
 	<e lm="ख़तना"><i>ख़तन</i><par n="ध/ा__n_m"/></e>
 	<e lm="नापसन्द"><i>नापसन्द</i><par n="जड__n_f"/></e>
+	<e lm="नापसंद"><i>नापसंद</i><par n="जड__n_f"/></e>
 	<e lm="सिंफ़नी"><i>सिंफ़नी</i><par n="ऐ__n_f"/></e>
 	<e lm="निरापदता"><i>निरापदता</i><par n="ऐ__n_f"/></e>
 	<e lm="अतियथार्थवाद"><i>अतियथार्थवाद</i><par n="ऐ__n_m"/></e>
@@ -15215,7 +16180,7 @@
 	<e lm="प्रक्षेत्रगृह"><i>प्रक्षेत्रगृह</i><par n="थ__n_m"/></e>
 	<e lm="मूत्रमार्ग"><i>मूत्रमार्ग</i><par n="ऐ__n_m"/></e>
 	<e lm="हेअरपिन"><i>हेअरपिन</i><par n="जड__n_f"/></e>
-	<e lm="दमनकर्ता"><i>दमनकर्ता</i><par n="ऐ__n_m"/></e>
+	<e lm="दमनकर्ता"><i>दमनकर्ता</i><par n="ऋ__n_m"/></e>
 	<e lm="विद्रोही"><i>विद्रोह</i><par n="हठ/ी__n_m"/></e>
 	<e lm="बाइट"><i>बाइट</i><par n="थ__n_m"/></e>
 	<e lm="उपव्यवसाय"><i>उपव्यवसाय</i><par n="थ__n_m"/></e>
@@ -15227,7 +16192,6 @@
 	<e lm="मिडज़ोलाम"><i>मिडज़ोलाम</i><par n="ऐ__n_m"/></e>
 	<e lm="सेकण्ड"><i>सेकण्ड</i><par n="थ__n_m"/></e>
 	<e lm="तूती"><i>तूत</i><par n="ध/ी__n_f"/></e>
-	<e lm="फूट"><i>फूट</i><par n="ऐ__n_f"/></e>
 	<e lm="शोक-प्रदर्शन"><i>शोक-प्रदर्शन</i><par n="ऐ__n_m"/></e>
 	<e lm="प्रणोदन"><i>प्रणोदन</i><par n="ऐ__n_m"/></e>
 	<e lm="सर्वशक्तिमत्ता"><i>सर्वशक्तिमत्ता</i><par n="ऐ__n_f"/></e>
@@ -15439,6 +16403,7 @@
 	<e lm="ऑफिसर"><i>ऑफिसर</i><par n="थ__n_m"/></e>
 	<e lm="रंगरली"><i>रंगरल</i><par n="ध/ी__n_f"/></e>
 	<e lm="कौंधक"><i>कौंधक</i><par n="थ__n_m"/></e>
+	<e lm="क्रमवार"><i>क्रमवार</i><par n="थ__n_m"/></e>
 	<e lm="बनबिलाव"><i>बनबिलाव</i><par n="थ__n_m"/></e>
 	<e lm="छिपटी"><i>छिपट</i><par n="ध/ी__n_f"/></e>
 	<e lm="पाण्डित्य"><i>पाण्डित्य</i><par n="ऐ__n_m"/></e>
@@ -15590,7 +16555,7 @@
 	<e lm="व्यक्तिनिष्ठता"><i>व्यक्तिनिष्ठता</i><par n="ऐ__n_f"/></e>
 	<e lm="नगाड़ावादक"><i>नगाड़ावादक</i><par n="थ__n_m"/></e>
 	<e lm="अपवहन-पट्ट"><i>अपवहन-पट्ट</i><par n="थ__n_m"/></e>
-	<e lm="गुर्दा"><i>गुर्दा</i><par n="ऐ__n_m"/></e>
+	<e lm="गुर्दा"><i>गुर्दा</i><par n="ध/ा__n_m"/></e>
 	<e lm="कंडोम"><i>कंडोम</i><par n="थ__n_m"/></e>
 	<e lm="जेलीफ़िश"><i>जेलीफ़िश</i><par n="जड__n_f"/></e>
 	<e lm="भारतवाक्य"><i>भारतवाक्य</i><par n="थ__n_m"/></e>
@@ -15725,7 +16690,7 @@
 	<e lm="संकेत-अस्फुटक"><i>संकेत-अस्फुटक</i><par n="थ__n_m"/></e>
 	<e lm="मनोविश्लेषण"><i>मनोविश्लेषण</i><par n="ऐ__n_m"/></e>
 	<e lm="गेंदबाज़"><i>गेंदबाज़</i><par n="थ__n_m"/></e>
-	<e lm="केबल"><i>केबल</i><par n="ऐ__n_m"/></e>
+	<e lm="केबल"><i>केबल</i><par n="थ__n_m"/></e>
 	<e lm="मुर्दाखोर"><i>मुर्दाखोर</i><par n="थ__n_m"/></e>
 	<e lm="सुपाठ्यता"><i>सुपाठ्यता</i><par n="ऐ__n_f"/></e>
 	<e lm="अनाप-शनाप"><i>अनाप-शनाप</i><par n="ऐ__n_m"/></e>
@@ -15746,7 +16711,7 @@
 	<e lm="गेस्टापो"><i>गेस्टापो</i><par n="ऐ__n_m"/></e>
 	<e lm="भेड़"><i>भेड़</i><par n="जड__n_f"/></e>
 	<e lm="बुद्धिमंदता"><i>बुद्धिमंदता</i><par n="ऐ__n_f"/></e>
-	<e lm="कुहासा"><i>कुहासा</i><par n="ऐ__n_m"/></e>
+	<e lm="कुहासा"><i>कुहासा</i><par n="ध/ा__n_m"/></e>
 	<e lm="झाँसा"><i>झाँस</i><par n="ध/ा__n_m"/></e>
 	<e lm="स्टिकलबैक"><i>स्टिकलबैक</i><par n="ऐ__n_f"/></e>
 	<e lm="कोयला-कोठरी"><i>कोयला-कोठर</i><par n="ध/ी__n_f"/></e>
@@ -15770,7 +16735,6 @@
 	<e lm="कैडी"><i>कैड</i><par n="हठ/ी__n_m"/></e>
 	<e lm="राजमिस्त्री"><i>राजमिस्त्र</i><par n="हठ/ी__n_m"/></e>
 	<e lm="खटोला"><i>खटोल</i><par n="ध/ा__n_m"/></e>
-	<e lm="कंधा"><i>कंध</i><par n="ध/ा__n_m"/></e>
 	<e lm="आइकन"><i>आइकन</i><par n="थ__n_m"/></e>
 	<e lm="मदिरोन्माद"><i>मदिरोन्माद</i><par n="ऐ__n_m"/></e>
 	<e lm="जीववादी"><i>जीववाद</i><par n="हठ/ी__n_m"/></e>
@@ -15853,7 +16817,7 @@
 	<e lm="स्वरूप"><i>स्वरूप</i><par n="थ__n_m"/></e>
 	<e lm="कंप्यूटरीकरण"><i>कंप्यूटरीकरण</i><par n="ऐ__n_m"/></e>
 	<e lm="पाजामा"><i>पाजाम</i><par n="ध/ा__n_m"/></e>
-	<e lm="तोता"><i>तोता</i><par n="ऐ__n_m"/></e>
+	<e lm="तोता"><i>तोता</i><par n="ध/ा__n_m"/></e>
 	<e lm="मीनपक्ष"><i>मीनपक्ष</i><par n="थ__n_m"/></e>
 	<e lm="क्रोमियम"><i>क्रोमियम</i><par n="ऐ__n_m"/></e>
 	<e lm="सरौता"><i>सरौत</i><par n="ध/ा__n_m"/></e>
@@ -15865,7 +16829,7 @@
 	<e lm="संस्कृतिग्राह्यता"><i>संस्कृतिग्राह्यता</i><par n="ऐ__n_f"/></e>
 	<e lm="डीफ़ल्ट"><i>डीफ़ल्ट</i><par n="ऐ__n_m"/></e>
 	<e lm="जनानापन"><i>जनानापन</i><par n="ऐ__n_m"/></e>
-	<e lm="रुधिर-वर्णिका"><i>रुधिर-वर्णिका</i><par n="ऐ__n_f"/></e>
+	<e lm="रुधिर-वर्���िका"><i>रुधिर-वर्णिका</i><par n="ऐ__n_f"/></e>
 	<e lm="गिटकिरी"><i>गिटकिरी</i><par n="ऐ__n_f"/></e>
 	<e lm="युद्ध-काल"><i>युद्ध-काल</i><par n="थ__n_m"/></e>
 	<e lm="टेस्टस्टेरन"><i>टेस्टस्टेरन</i><par n="ऐ__n_m"/></e>
@@ -15880,7 +16844,7 @@
 	<e lm="मतभेद"><i>मतभेद</i><par n="थ__n_m"/></e>
 	<e lm="नज़र"><i>नज़र</i><par n="जड__n_f"/></e>
 	<e lm="शैलीकार"><i>शैलीकार</i><par n="थ__n_m"/></e>
-	<e lm="याम्योत्तर"><i>याम्योत्तर</i><par n="थ__n_m"/></e>
+	<!-- <e lm="याम्योत्त��"><i>याम्योत्तर</i><par n="थ__n_m"/></e> -->
 	<e lm="वृत्तांत"><i>वृत्तांत</i><par n="थ__n_m"/></e>
 	<e lm="दाह-कर्म"><i>दाह-कर्म</i><par n="थ__n_m"/></e>
 	<e lm="सुराख"><i>सुराख</i><par n="थ__n_m"/></e>
@@ -15905,7 +16869,7 @@
 	<e lm="शार्पनर"><i>शार्पनर</i><par n="थ__n_m"/></e>
 	<e lm="शैबू"><i>शैबू</i><par n="ऐ__n_m"/></e>
 	<e lm="जलफेंफड़ा"><i>जलफेंफड़</i><par n="ध/ा__n_m"/></e>
-	<e lm="फ़ुटबाल"><i>फ़ुटबाल</i><par n="ऐ__n_m"/></e>
+	<e lm="फ़ुटबाल"><i>फ़ुटबाल</i><par n="थ__n_m"/></e>
 	<e lm="अभिनेट्री"><i>अभिनेट्र</i><par n="ध/ी__n_f"/></e>
 	<e lm="मेंहदी"><i>मेंहदी</i><par n="ऐ__n_f"/></e>
 	<e lm="ब्रेस्टस्ट्रोक"><i>ब्रेस्टस्ट्रोक</i><par n="ऐ__n_m"/></e>
@@ -15919,7 +16883,7 @@
 	<e lm="साधनी"><i>साधन</i><par n="ध/ी__n_f"/></e>
 	<e lm="ठुकाई"><i>ठुकाई</i><par n="ऐ__n_f"/></e>
 	<e lm="अनुशिथिलन"><i>अनुशिथिलन</i><par n="थ__n_m"/></e>
-	<e lm="मतदाता"><i>मतदाता</i><par n="ऐ__n_m"/></e>
+	<e lm="मतदाता"><i>मतदाता</i><par n="मौलाना__n_m"/></e>
 	<e lm="चिकना-चुपड़ापन"><i>चिकना-चुपड़ापन</i><par n="ऐ__n_m"/></e>
 	<e lm="छेड़खानी"><i>छेड़खान</i><par n="ध/ी__n_f"/></e>
 	<e lm="देशप्रत्यावर्तन"><i>देशप्रत्यावर्तन</i><par n="ऐ__n_m"/></e>
@@ -15949,7 +16913,7 @@
 	<e lm="रानी"><i>रान</i><par n="ध/ी__n_f"/></e>
 	<e lm="गैंडा"><i>गैंड</i><par n="ध/ा__n_m"/></e>
 	<e lm="त्वचाविज्ञान"><i>त्वचाविज्ञान</i><par n="ऐ__n_m"/></e>
-	<e lm="पहलू"><i>पहलू</i><par n="ऐ__n_m"/></e>
+	<e lm="पहलू"><i>पहलू</i><par n="मौलाना__n_m"/></e>
 	<e lm="हेंगा"><i>हेंग</i><par n="ध/ा__n_m"/></e>
 	<e lm="जेटी"><i>जेट</i><par n="ध/ी__n_f"/></e>
 	<e lm="चश्मा"><i>चश्म</i><par n="ध/ा__n_m"/></e>
@@ -16150,7 +17114,7 @@
 	<e lm="दर्जी"><i>दर्ज</i><par n="हठ/ी__n_m"/></e>
 	<e lm="टहोका"><i>टहोक</i><par n="ध/ा__n_m"/></e>
 	<e lm="असंगतिअ"><i>असंगतिअ</i><par n="जड__n_f"/></e>
-	<e lm="घटियापन"><i>घटियापन</i><par n="ऐ__n_m"/></e>
+	<e lm="घटियापन"><i>घटियापन</i><par n="अकेल/ापन__n_m"/></e>
 	<e lm="गंधवेणु"><i>गंधवेणु</i><par n="ऐ__n_m"/></e>
 	<e lm="हड़तालभंजक"><i>हड़तालभंजक</i><par n="थ__n_m"/></e>
 	<e lm="लटठा"><i>लटठ</i><par n="ध/ा__n_m"/></e>
@@ -16180,7 +17144,7 @@
 	<e lm="बिटर्न"><i>बिटर्न</i><par n="थ__n_m"/></e>
 	<e lm="व्यवहारवाद"><i>व्यवहारवाद</i><par n="थ__n_m"/></e>
 	<e lm="बमअ"><i>बमअ</i><par n="थ__n_m"/></e>
-	<e lm="करदाता"><i>करदाता</i><par n="ऐ__n_m"/></e>
+	<e lm="करदाता"><i>करदाता</i><par n="मौलाना__n_m"/></e>
 	<e lm="केंद्रवाद"><i>केंद्रवाद</i><par n="थ__n_m"/></e>
 	<e lm="सीडैन"><i>सीडैन</i><par n="ऐ__n_f"/></e>
 	<e lm="तोपअ"><i>तोपअ</i><par n="जड__n_f"/></e>
@@ -16626,8 +17590,8 @@
 	<e lm="शराबखाना"><i>शराबखान</i><par n="ध/ा__n_m"/></e>
 	<e lm="तावीज़"><i>तावीज़</i><par n="थ__n_m"/></e>
 	<e lm="समाचार-फ़िल्म"><i>समाचार-फ़िल्म</i><par n="जड__n_f"/></e>
-	<e lm="छुरी"><i>छुर</i><par n="ध/ी__n_f"/></e>
-	<e lm="वन्य-प्रदेश"><i>वन्य-प्रदेश</i><par n="थ__n_m"/></e>
+	<!-- <e lm="छुरी"><i>छुर</i><par n="ध/��__n_f"/></e> -->
+	<!-- <e lm="वन्य-प���रदेश"><i>वन्य-प्रदेश</i><par n="थ__n_m"/></e> -->
 	<e lm="हाथ-बरमा"><i>हाथ-बरम</i><par n="ध/ा__n_m"/></e>
 	<e lm="अनुग्रहकर्ता"><i>अनुग्रहकर्ता</i><par n="ऐ__n_m"/></e>
 	<e lm="कमीई"><i>कमी</i><par n="कला/ई__n_f"/></e>
@@ -16996,8 +17960,8 @@
 	<e lm="लक्ष्यहीनता"><i>लक्ष्यहीनता</i><par n="ऐ__n_f"/></e>
 	<e lm="लवंपद्न्"><i>लवंपद्न्</i><par n="ऐ__n_m"/></e>
 	<e lm="निरन्तरता"><i>निरन्तरता</i><par n="ऐ__n_f"/></e>
-	<e lm="बंदीकर्ता"><i>बंदीकर्ता</i><par n="ऐ__n_m"/></e>
-	<e lm="गाढ़ापन"><i>गाढ़ापन</i><par n="ऐ__n_m"/></e>
+	<e lm="बंदीकर्ता"><i>बंदीकर्ता</i><par n="मौलाना__n_m"/></e>
+	<e lm="गाढ़ापन"><i>गाढ़ापन</i><par n="अकेल/ापन__n_m"/></e>
 	<e lm="नौसिखिया"><i>नौसिखिय</i><par n="ध/ा__n_m"/></e>
 	<e lm="प्रेरना"><i>प्रेरना</i><par n="ऐ__n_f"/></e>
 	<e lm="किऐंटी"><i>किऐंटी</i><par n="ऐ__n_f"/></e>
@@ -17051,9 +18015,9 @@
 	<e lm="पन्टून"><i>पन्टून</i><par n="ऐ__n_m"/></e>
 	<e lm="वीभत्सता"><i>वीभत्सता</i><par n="ऐ__n_f"/></e>
 	<e lm="फ़्लमेन्को"><i>फ़्लमेन्को</i><par n="ऐ__n_m"/></e>
-	<e lm="हस्तमैथुनकर्ता"><i>हस्तमैथुनकर्ता</i><par n="ऐ__n_m"/></e>
+	<e lm="हस्तमैथुनकर्ता"><i>हस्तमैथुनकर्ता</i><par n="मौलाना__n_m"/></e>
 	<e lm="जलमार्ग"><i>जलमार्ग</i><par n="थ__n_m"/></e>
-	<e lm="उथलापन"><i>उथलापन</i><par n="ऐ__n_m"/></e>
+	<e lm="उथलापन"><i>उथलापन</i><par n="अकेल/ापन__n_m"/></e>
 	<e lm="ज़ाइलोज़"><i>ज़ाइलोज़</i><par n="ऐ__n_m"/></e>
 	<e lm="पैतृकवाद"><i>पैतृकवाद</i><par n="ऐ__n_m"/></e>
 	<e lm="ग्रंथ-सूची"><i>ग्रंथ-सूच</i><par n="ध/ी__n_f"/></e>
@@ -17229,6 +18193,7 @@
 	<e lm="कलोर"><i>कलोर</i><par n="जड__n_f"/></e>
 	<e lm="गणचिह्न"><i>गणचिह्न</i><par n="थ__n_m"/></e>
 	<e lm="दसवाँ"><i>दसवाँ</i><par n="ऐ__n_m"/></e>
+	<e lm="करंट"><i>करंट</i><par n="ऐ__n_m"/></e>
 	<e lm="हाइपोकैप्निया"><i>हाइपोकैप्निया</i><par n="ऐ__n_f"/></e>
 	<e lm="डाकथैला"><i>डाकथैल</i><par n="ध/ा__n_m"/></e>
 	<e lm="तंबाकूफ़रोश"><i>तंबाकूफ़रोश</i><par n="थ__n_m"/></e>
@@ -17238,6 +18203,9 @@
 	<e lm="दलबंदी"><i>दलबंद</i><par n="ध/ी__n_f"/></e>
 	<e lm="फेफड़ा"><i>फेफड़</i><par n="ध/ा__n_m"/></e>
 	<e lm="प्रतिपर्ण"><i>प्रतिपर्ण</i><par n="थ__n_m"/></e>
+	<e lm="डिफ्रैंटिअल"><i>डिफ्रैंटिअल</i><par n="थ__n_m"/></e>
+	<e lm="खालसा"><i>खालसा</i><par n="थ__n_m"/></e>
+	<e lm="आईगांवालयु"><i>आईगांवालयु</i><par n="थ__n_m"/></e>
 	<e lm="कसन"><i>कसन</i><par n="जड__n_f"/></e>
 	<e lm="किफ़ायत"><i>किफ़ायत</i><par n="जड__n_f"/></e>
 	<e lm="सूचना-पत्र"><i>सूचना-पत्र</i><par n="थ__n_m"/></e>
@@ -17274,7 +18242,7 @@
 	<e lm="कपाटिकाछेदन"><i>कपाटिकाछेदन</i><par n="ऐ__n_m"/></e>
 	<e lm="नीरसता"><i>नीरसता</i><par n="ऐ__n_f"/></e>
 	<e lm="चापकलन"><i>चापकलन</i><par n="ऐ__n_m"/></e>
-	<e lm="चुग्गा"><i>चुग्गा</i><par n="ऐ__n_m"/></e>
+	<e lm="चुग्गा"><i>चुग्गा</i><par n="ध/ा__n_m"/></e>
 	<e lm="दन्त-चिकित्सा"><i>दन्त-चिकित्सा</i><par n="ऐ__n_f"/></e>
 	<e lm="अण्डाशय"><i>अण्डाशय</i><par n="थ__n_m"/></e>
 	<e lm="सहजीविता"><i>सहजीविता</i><par n="ऐ__n_f"/></e>
@@ -17377,7 +18345,7 @@
 	<e lm="सीज़ियम"><i>सीज़ियम</i><par n="ऐ__n_m"/></e>
 	<e lm="पीत्ज़ेरिया"><i>पीत्ज़ेरिया</i><par n="ऐ__n_f"/></e>
 	<e lm="छिनाल"><i>छिनाल</i><par n="जड__n_f"/></e>
-	<e lm="मिलिमीटर"><i>मिलिमीटर</i><par n="ऐ__n_m"/></e>
+	<!-- <e lm="मिलिमीटर"><i>मिलिमी���र</i><par n="ऐ__n_m"/></e> -->
 	<e lm="सुरुचिहीनता"><i>सुरुचिहीनता</i><par n="ऐ__n_f"/></e>
 	<e lm="मानसून-काल"><i>मानसून-काल</i><par n="ऐ__n_m"/></e>
 	<e lm="अस्वीकार्यता"><i>अस्वीकार्यता</i><par n="ऐ__n_f"/></e>
@@ -17523,7 +18491,7 @@
     <e lm="बकरा"><i>बकर</i><par n="ध/ा__n_m"/></e>
     <e lm="ओखली"><i>ओखल</i><par n="ध/ी__n_f"/></e>
     <e lm="द्वंद्व"><i>द्वंद्व</i><par n="थ__n_m"/></e>
-    <e lm="निष्कर्ष"><i>निष्कर्ष</i><par n="ऐ__n_m"/></e>
+    <e lm="निष्कर्ष"><i>निष्कर्ष</i><par n="थ__n_m"/></e>
     <e lm="बालकमानी"><i>बालकमान</i><par n="ध/ी__n_f"/></e>
     <e lm="अर्जन"><i>अर्जन</i><par n="ऐ__n_m"/></e>
     <e lm="अनियमितता"><i>अनियमितता</i><par n="ऐ__n_f"/></e>
@@ -17598,14 +18566,14 @@
     <e lm="वृहत्"><i>वृहत</i><par n="सद/्__n_m"/></e>
     <e lm="खुमार"><i>खुमार</i><par n="ऐ__n_m"/></e>
     <e lm="अकड"><i>अकड</i><par n="ऐ__n_f"/></e>
-    <e lm="संबोधन"><i>संबोधन</i><par n="ऐ__n_m"/></e>
+    <e lm="संबोधन"><i>संबोधन</i><par n="थ__n_m"/></e>
     <e lm="विचारधारा"><i>विचारधारा</i><par n="बला__n_f"/></e>
     <e lm="गैलरी"><i>गैलर</i><par n="ध/ी__n_f"/></e>
     <e lm="मूलतत्त्व"><i>मूलतत्त्व</i><par n="थ__n_m"/></e>
     <e lm="फेफडा"><i>फेफड</i><par n="ध/ा__n_m"/></e>
     <e lm="बकरम"><i>बकरम</i><par n="ऐ__n_m"/></e>
     <e lm="आयोजना"><i>आयोजना</i><par n="बला__n_f"/></e>
-    <e lm="सलूक"><i>सलूक</i><par n="ऐ__n_m"/></e>
+    <e lm="सलूक"><i>सलूक</i><par n="थ__n_m"/></e>
     <e lm="अप्रैल"><i>अप्रैल</i><par n="ऐ__n_m"/></e>
     <e lm="सुधार"><i>सुधार</i><par n="थ__n_m"/></e>
     <e lm="वाध"><i>वाध</i><par n="ऐ__n_m"/></e>
@@ -17624,7 +18592,7 @@
     <e lm="पादरी"><i>पादर</i><par n="हठ/ी__n_m"/></e>
     <e lm="स्मरण"><i>स्मरण</i><par n="थ__n_m"/></e>
     <e lm="प्रतिरोध"><i>प्रतिरोध</i><par n="ऐ__n_m"/></e>
-    <e lm="पटल"><i>पटल</i><par n="ऐ__n_m"/></e>
+    <e lm="पटल"><i>पटल</i><par n="थ__n_m"/></e>
     <e lm="सूटकेस"><i>सूटकेस</i><par n="थ__n_m"/></e>
     <e lm="रणनाद"><i>रणनाद</i><par n="ऐ__n_f"/></e>
     <e lm="सोयाबीन"><i>सोयाबीन</i><par n="थ__n_m"/></e>
@@ -17695,7 +18663,7 @@
     <e lm="मेहनत"><i>मेहनत</i><par n="ऐ__n_f"/></e>
     <e lm="फरेब"><i>फरेब</i><par n="थ__n_m"/></e>
     <e lm="शहतूत"><i>शहतूत</i><par n="थ__n_m"/></e>
-    <e lm="अकेलापन"><i>अकेलापन</i><par n="ऐ__n_m"/></e>
+    <e lm="अकेलापन"><i>अकेलापन</i><par n="अकेल/ापन__n_m"/></e>
     <e lm="पित्त"><i>पित्त</i><par n="ऐ__n_m"/></e>
     <e lm="छेनी"><i>छेन</i><par n="ध/ी__n_f"/></e>
     <e lm="अवशेष"><i>अवशेष</i><par n="थ__n_m"/></e>
@@ -17703,7 +18671,7 @@
     <e lm="छिद्र"><i>छिद्र</i><par n="थ__n_m"/></e>
     <e lm="गिनती"><i>गिनती</i><par n="ऐ__n_f"/></e>
     <e lm="अदर्शन"><i>अदर्शन</i><par n="ऐ__n_m"/></e>
-    <e lm="कलंदर"><i>कलंदर</i><par n="ऐ__n_m"/></e>
+    <e lm="कलंदर"><i>कलंदर</i><par n="थ__n_m"/></e>
     <e lm="संपादक"><i>संपादक</i><par n="थ__n_m"/></e>
     <e lm="लंगडा"><i>लंगड</i><par n="ध/ा__n_m"/></e>
     <e lm="अमान्य"><i>अमान्य</i><par n="ऐ__n_m"/></e>
@@ -17901,7 +18869,7 @@
     <e lm="चापलूसी"><i>चापलूसी</i><par n="ऐ__n_f"/></e>
     <e lm="धर्मोपदेश"><i>धर्मोपदेश</i><par n="थ__n_m"/></e>
     <e lm="प्रेमिका"><i>प्रेमिका</i><par n="बला__n_f"/></e>
-    <e lm="सागर"><i>सागर</i><par n="ऐ__n_m"/></e>
+    <e lm="सागर"><i>सागर</i><par n="थ__n_m"/></e>
     <e lm="विविधता"><i>विविधता</i><par n="ऐ__n_f"/></e>
     <e lm="छटपटाहट"><i>छटपटाहट</i><par n="ऐ__n_f"/></e>
     <e lm="सिहरन"><i>सिहरन</i><par n="ऐ__n_f"/></e>
@@ -17921,7 +18889,7 @@
     <e lm="तबका"><i>तबक</i><par n="ध/ा__n_m"/></e>
     <e lm="लानत"><i>लानत</i><par n="ऐ__n_f"/></e>
     <e lm="सोशल"><i>सोशल</i><par n="थ__n_m"/></e>
-    <e lm="उपनाम"><i>उपनाम</i><par n="ऐ__n_m"/></e>
+    <e lm="उपनाम"><i>उपनाम</i><par n="थ__n_m"/></e>
     <e lm="भानमती"><i>भानमती</i><par n="ऐ__n_f"/></e>
     <e lm="हैंडल"><i>हैंडल</i><par n="थ__n_m"/></e>
     <e lm="डेरी"><i>डेर</i><par n="ध/ी__n_f"/></e>
@@ -17959,7 +18927,7 @@
     <e lm="लटकन"><i>लटकन</i><par n="थ__n_m"/></e>
     <e lm="कद्दू"><i>कद्द</i><par n="थ/ू__n_m"/></e>
     <e lm="हत्या"><i>हत्या</i><par n="बला__n_f"/></e>
-    <e lm="देहांत"><i>देहांत</i><par n="ऐ__n_m"/></e>
+    <e lm="देहांत"><i>देहांत</i><par n="थ__n_m"/></e>
     <e lm="किक"><i>किक</i><par n="थ__n_m"/></e>
     <e lm="वाष्पीकरण"><i>वाष्पीकरण</i><par n="थ__n_m"/></e>
     <e lm="थाल"><i>थाल</i><par n="थ__n_m"/></e>
@@ -18000,7 +18968,7 @@
     <e lm="अनुमाप"><i>अनुमाप</i><par n="ऐ__n_m"/></e>
     <e lm="अनुबंधन"><i>अनुबंधन</i><par n="ऐ__n_m"/></e>
     <e lm="नियतिवाद"><i>नियतिवाद</i><par n="ऐ__n_m"/></e>
-    <e lm="पार्ट"><i>पार्ट</i><par n="ऐ__n_m"/></e>
+    <e lm="पार्ट"><i>पार्ट</i><par n="थ__n_m"/></e>
     <e lm="बुर्जुआ"><i>बुर्जु</i><par n="पौ/आ__n_m"/></e>
     <e lm="इतवार"><i>इतवार</i><par n="ऐ__n_m"/></e>
     <e lm="मूंछ"><i>मूंछ</i><par n="जड__n_f"/></e>
@@ -18018,7 +18986,7 @@
     <e lm="परिमाण"><i>परिमाण</i><par n="ऐ__n_m"/></e>
     <e lm="मोरी"><i>मोरी</i><par n="ऐ__n_f"/></e>
     <e lm="पनडुब्बा"><i>पनडुब्ब</i><par n="ध/ा__n_m"/></e>
-    <e lm="अनुवाद"><i>अनुवाद</i><par n="ऐ__n_m"/></e>
+    <e lm="अनुवाद"><i>अनुवाद</i><par n="थ__n_m"/></e>
     <e lm="सनद"><i>सनद</i><par n="थ__n_m"/></e>
     <e lm="इक्षु"><i>इक्षु</i><par n="ऋ__n_m"/></e>
     <e lm="डील"><i>डील</i><par n="ऐ__n_f"/></e>
@@ -18062,7 +19030,7 @@
     <e lm="पूर्णांक"><i>पूर्णांक</i><par n="थ__n_m"/></e>
     <e lm="शेखी"><i>शेख</i><par n="ध/ी__n_f"/></e>
     <e lm="वर्षा"><i>वर्षा</i><par n="ऐ__n_f"/></e>
-    <e lm="ज्योतिष"><i>ज्योतिष</i><par n="ऐ__n_m"/></e>
+    <e lm="ज्योतिष"><i>ज्योतिष</i><par n="थ__n_m"/></e>
     <e lm="विवाहित"><i>विवाहित</i><par n="थ__n_m"/></e>
     <e lm="वर्तमानकाल"><i>वर्तमानकाल</i><par n="ऐ__n_m"/></e>
     <e lm="अभिनंदन"><i>अभिनंदन</i><par n="ऐ__n_m"/></e>
@@ -18096,6 +19064,7 @@
     <e lm="सायंकाल"><i>सायंकाल</i><par n="ऐ__n_m"/></e>
     <e lm="प्रेम"><i>प्रेम</i><par n="ऐ__n_m"/></e>
     <e lm="खाका"><i>खाक</i><par n="ध/ा__n_m"/></e>
+    <e lm="गुरुद्वारा"><i>गुरुद्वार</i><par n="ध/ा__n_m"/></e>
     <e lm="कचौडी"><i>कचौड</i><par n="ध/ी__n_f"/></e>
     <e lm="आलेखन"><i>आलेखन</i><par n="ऐ__n_m"/></e>
     <e lm="स्वत्व"><i>स्वत्व</i><par n="थ__n_m"/></e>
@@ -18183,14 +19152,14 @@
     <e lm="डेस्क"><i>डेस्क</i><par n="थ__n_m"/></e>
     <e lm="नजराना"><i>नजरान</i><par n="ध/ा__n_m"/></e>
     <e lm="फन"><i>फन</i><par n="थ__n_m"/></e>
-    <e lm="प्रस्थान"><i>प्रस्थान</i><par n="ऐ__n_m"/></e>
+    <e lm="प्रस्थान"><i>प्रस्थान</i><par n="थ__n_m"/></e>
     <e lm="ज्वार"><i>ज्वार</i><par n="ऐ__n_m"/></e>
     <e lm="ऐश्वर्य"><i>ऐश्वर्य</i><par n="ऐ__n_m"/></e>
     <e lm="घंटिका"><i>घंटिका</i><par n="बला__n_f"/></e>
     <e lm="भेदन"><i>भेदन</i><par n="ऐ__n_m"/></e>
     <e lm="पंच"><i>पंच</i><par n="थ__n_m"/></e>
     <e lm="हर्षोन्माद"><i>हर्षोन्माद</i><par n="ऐ__n_m"/></e>
-    <e lm="नगरवासी"><i>नगरवास</i><par n="हठ/ी__n_m"/></e>
+    <!-- <e lm="नगरवासी"><i>नगरवास</i><par n="हठ/���__n_m"/></e> -->
     <e lm="उच्छेदन"><i>उच्छेदन</i><par n="ऐ__n_m"/></e>
     <e lm="पंक"><i>पंक</i><par n="ऐ__n_m"/></e>
     <e lm="पंख"><i>पंख</i><par n="थ__n_m"/></e>
@@ -18199,7 +19168,7 @@
     <e lm="कफन"><i>कफन</i><par n="ऐ__n_m"/></e>
     <e lm="आनन्द"><i>आनन्द</i><par n="ऐ__n_m"/></e>
     <e lm="कतार"><i>कतार</i><par n="जड__n_f"/></e>
-    <e lm="प्रचलन"><i>प्रचलन</i><par n="ऐ__n_m"/></e>
+    <e lm="प्रचलन"><i>प्रचलन</i><par n="थ__n_m"/></e>
     <e lm="घटनास्थल"><i>घटनास्थल</i><par n="ऐ__n_m"/></e>
     <e lm="उद्देश्य"><i>उद्देश्य</i><par n="थ__n_m"/></e>
     <e lm="अरारोट"><i>अरारोट</i><par n="ऐ__n_m"/></e>
@@ -18220,7 +19189,7 @@
     <e lm="बेडी"><i>बेड</i><par n="ध/ी__n_f"/></e>
     <e lm="ईश्वरवादी"><i>ईश्वरवाद</i><par n="हठ/ी__n_m"/></e>
     <e lm="अक्ल"><i>अक्ल</i><par n="ऐ__n_f"/></e>
-    <e lm="रण"><i>रण</i><par n="ऐ__n_m"/></e>
+    <e lm="रण"><i>रण</i><par n="थ__n_m"/></e>
     <e lm="अक्ष"><i>अक्ष</i><par n="थ__n_m"/></e>
     <e lm="अनुद्योग"><i>अनुद्योग</i><par n="थ__n_m"/></e>
     <e lm="वंशवृद्धि"><i>वंशवृद्धि</i><par n="नति__n_f"/></e>
@@ -18245,7 +19214,7 @@
     <e lm="विचरण"><i>विचरण</i><par n="ऐ__n_m"/></e>
     <e lm="सलाद"><i>सलाद</i><par n="ऐ__n_m"/></e>
     <e lm="वाग्दान"><i>वाग्दान</i><par n="ऐ__n_m"/></e>
-    <e lm="सलाम"><i>सलाम</i><par n="ऐ__n_m"/></e>
+    <e lm="सलाम"><i>सलाम</i><par n="थ__n_m"/></e>
     <e lm="तेजी"><i>तेजी</i><par n="ऐ__n_f"/></e>
     <e lm="जिल्द"><i>जिल्द</i><par n="जड__n_f"/></e>
     <e lm="सलाह"><i>सलाह</i><par n="जड__n_f"/></e>
@@ -18257,7 +19226,7 @@
     <e lm="वातायन"><i>वातायन</i><par n="थ__n_m"/></e>
     <e lm="पिंड"><i>पिंड</i><par n="थ__n_m"/></e>
     <e lm="कंचुकी"><i>कंचुक</i><par n="ध/ी__n_f"/></e>
-    <e lm="उद्यान"><i>उद्यान</i><par n="ऐ__n_m"/></e>
+    <e lm="उद्यान"><i>उद्यान</i><par n="थ__n_m"/></e>
     <e lm="रिहाई"><i>रिहाई</i><par n="ऐ__n_f"/></e>
     <e lm="दिमागी"><i>दिमागी</i><par n="ऐ__n_f"/></e>
     <e lm="शिवालय"><i>शिवालय</i><par n="थ__n_m"/></e>
@@ -18276,7 +19245,7 @@
     <e lm="कुम्हार"><i>कुम्हार</i><par n="थ__n_m"/></e>
     <e lm="मरघट"><i>मरघट</i><par n="थ__n_m"/></e>
     <e lm="मूँछ"><i>मूँछ</i><par n="जड__n_f"/></e>
-    <e lm="पलस्तर"><i>पलस्तर</i><par n="ऐ__n_m"/></e>
+    <e lm="पलस्तर"><i>पलस्तर</i><par n="थ__n_m"/></e>
     <e lm="क्लेश"><i>क्लेश</i><par n="ऐ__n_m"/></e>
     <e lm="सच्चापन"><i>सच्चापन</i><par n="ऐ__n_m"/></e>
     <e lm="कैदी"><i>कैद</i><par n="हठ/ी__n_m"/></e>
@@ -18289,7 +19258,7 @@
     <e lm="आँसू"><i>आँस</i><par n="थ/ू__n_m"/></e>
     <e lm="अर्पण"><i>अर्पण</i><par n="ऐ__n_m"/></e>
     <e lm="राजगृह"><i>राजगृह</i><par n="थ__n_m"/></e>
-    <e lm="महापाप"><i>महापाप</i><par n="ऐ__n_m"/></e>
+    <e lm="महापाप"><i>महापाप</i><par n="थ__n_m"/></e>
     <e lm="खुजली"><i>खुजली</i><par n="ऐ__n_f"/></e>
     <e lm="बग्घी"><i>बग्घ</i><par n="ध/ी__n_f"/></e>
     <e lm="राक्षस"><i>राक्षस</i><par n="थ__n_m"/></e>
@@ -18338,9 +19307,9 @@
     <e lm="चतुर्थांश"><i>चतुर्थांश</i><par n="ऐ__n_m"/></e>
     <e lm="सन्निधि"><i>सन्निधि</i><par n="नति__n_f"/></e>
     <e lm="टिप्पणी"><i>टिप्पण</i><par n="ध/ी__n_f"/></e>
-    <e lm="सेकंड"><i>सेकंड</i><par n="ऐ__n_m"/></e>
+    <e lm="सेकंड"><i>सेकंड</i><par n="थ__n_m"/></e>
     <e lm="परिवार"><i>परिवार</i><par n="थ__n_m"/></e>
-    <e lm="राजपत्र"><i>राजपत्र</i><par n="ऐ__n_m"/></e>
+    <e lm="राजपत्र"><i>राजपत्र</i><par n="थ__n_m"/></e>
     <e lm="उपशीर्षक"><i>उपशीर्षक</i><par n="ऐ__n_m"/></e>
     <e lm="सौजन्य"><i>सौजन्य</i><par n="ऐ__n_m"/></e>
     <e lm="सौष्ठव"><i>सौष्ठव</i><par n="ऐ__n_m"/></e>
@@ -18361,7 +19330,7 @@
     <e lm="सुस्त"><i>सुस्त</i><par n="ऐ__n_m"/></e>
     <e lm="उदक"><i>उदक</i><par n="ऐ__n_m"/></e>
     <e lm="संदेहवाद"><i>संदेहवाद</i><par n="ऐ__n_m"/></e>
-    <e lm="राजहंस"><i>राजहंस</i><par n="ऐ__n_m"/></e>
+    <e lm="राजहंस"><i>राजहंस</i><par n="थ__n_m"/></e>
     <e lm="मांस"><i>मांस</i><par n="ऐ__n_m"/></e>
     <e lm="चैलेंज"><i>चैलेंज</i><par n="ऐ__n_m"/></e>
     <e lm="महानिर्वाण"><i>महानिर्वाण</i><par n="ऐ__n_m"/></e>
@@ -18404,7 +19373,7 @@
     <e lm="पैकिंग"><i>पैकिंग</i><par n="ऐ__n_f"/></e>
     <e lm="गरदनी"><i>गरदन</i><par n="ध/ी__n_f"/></e>
     <e lm="संगम"><i>संगम</i><par n="ऐ__n_m"/></e>
-    <e lm="उद्घाटन"><i>उद्घाटन</i><par n="ऐ__n_m"/></e>
+    <e lm="उद्घाटन"><i>उद्घाटन</i><par n="थ__n_m"/></e>
     <e lm="वर्णरेखा"><i>वर्णरेखा</i><par n="ऐ__n_f"/></e>
     <e lm="संतरा"><i>संतर</i><par n="ध/ा__n_m"/></e>
     <e lm="सत्यता"><i>सत्यता</i><par n="ऐ__n_f"/></e>
@@ -18414,7 +19383,7 @@
     <e lm="मृत्य"><i>मृत्य</i><par n="ऐ__n_m"/></e>
     <e lm="लौंडा"><i>लौंड</i><par n="ध/ा__n_m"/></e>
     <e lm="संशुद्धि"><i>संशुद्धि</i><par n="नति__n_f"/></e>
-    <e lm="आग्रह"><i>आग्रह</i><par n="ऐ__n_m"/></e>
+    <e lm="आग्रह"><i>आग्रह</i><par n="थ__n_m"/></e>
     <e lm="अत्युक्ति"><i>अत्युक्ति</i><par n="ऐ__n_f"/></e>
     <e lm="भंग"><i>भंग</i><par n="ऐ__n_f"/></e>
     <e lm="मेह"><i>मेह</i><par n="थ__n_m"/></e>
@@ -18437,9 +19406,9 @@
     <e lm="डग"><i>डग</i><par n="थ__n_m"/></e>
     <e lm="योरोप"><i>योरोप</i><par n="थ__n_m"/></e>
     <e lm="अपहर्ता"><i>अपहर्ता</i><par n="ऋ__n_m"/></e>
-    <e lm="घुडदौड"><i>घुडदौड</i><par n="ऐ__n_m"/></e>
+    <e lm="घुडदौड"><i>घुडदौड</i><par n="थ__n_m"/></e>
     <e lm="दाँत"><i>दाँत</i><par n="थ__n_m"/></e>
-    <e lm="इस्तेमाल"><i>इस्तेमाल</i><par n="ऐ__n_m"/></e>
+    <e lm="इस्तेमाल"><i>इस्तेमाल</i><par n="थ__n_m"/></e>
     <e lm="सहभोजी"><i>सहभोज</i><par n="हठ/ी__n_m"/></e>
     <e lm="आचार्य"><i>आचार्य</i><par n="थ__n_m"/></e>
     <e lm="सहिष्णुता"><i>सहिष्णुता</i><par n="ऐ__n_f"/></e>
@@ -18448,7 +19417,7 @@
     <e lm="निरोध"><i>निरोध</i><par n="थ__n_m"/></e>
     <e lm="श्वासोच्छ्वास"><i>श्वासोच्छ्वास</i><par n="ऐ__n_m"/></e>
     <e lm="सूजा"><i>सूज</i><par n="ध/ा__n_m"/></e>
-    <e lm="सिगार"><i>सिगार</i><par n="ऐ__n_m"/></e>
+    <e lm="सिगार"><i>सिगार</i><par n="थ__n_m"/></e>
     <e lm="संस्मरण"><i>संस्मरण</i><par n="थ__n_m"/></e>
     <e lm="मामी"><i>माम</i><par n="ध/ी__n_f"/></e>
     <e lm="तूणीर"><i>तूणीर</i><par n="ऐ__n_m"/></e>
@@ -18473,11 +19442,11 @@
     <e lm="शिकारा"><i>शिकार</i><par n="ध/ा__n_m"/></e>
     <e lm="ब्यौरा"><i>ब्यौर</i><par n="ध/ा__n_m"/></e>
     <e lm="निष्क्रमण"><i>निष्क्रमण</i><par n="ऐ__n_m"/></e>
-    <e lm="जाल"><i>जाल</i><par n="ऐ__n_m"/></e>
+    <e lm="जाल"><i>जाल</i><par n="थ__n_m"/></e>
     <e lm="वाज"><i>वाज</i><par n="ऐ__n_m"/></e>
     <e lm="उत्थापन"><i>उत्थापन</i><par n="ऐ__n_m"/></e>
     <e lm="साँचा"><i>साँच</i><par n="ध/ा__n_m"/></e>
-    <e lm="प्रबंध"><i>प्रबंध</i><par n="ऐ__n_m"/></e>
+    <e lm="प्रबंध"><i>प्रबंध</i><par n="थ__n_m"/></e>
     <e lm="गौड"><i>गौड</i><par n="ऐ__n_m"/></e>
     <e lm="मंत्रदाता"><i>मंत्रदाता</i><par n="ऋ__n_m"/></e>
     <e lm="न्यायिक"><i>न्यायिक</i><par n="थ__n_m"/></e>
@@ -18496,7 +19465,7 @@
     <e lm="अनुगम"><i>अनुगम</i><par n="ऐ__n_m"/></e>
     <e lm="पाषाण"><i>पाषाण</i><par n="थ__n_m"/></e>
     <e lm="आलोक"><i>आलोक</i><par n="थ__n_m"/></e>
-    <e lm="ओछापन"><i>ओछापन</i><par n="ऐ__n_m"/></e>
+    <e lm="ओछापन"><i>ओछापन</i><par n="अकेल/ापन__n_m"/></e>
     <e lm="पर्यावरण"><i>पर्यावरण</i><par n="थ__n_m"/></e>
     <e lm="मंसूबा"><i>मंसूब</i><par n="ध/ा__n_m"/></e>
     <e lm="रखरखाव"><i>रखरखाव</i><par n="थ__n_m"/></e>
@@ -18529,9 +19498,9 @@
     <e lm="ठूँठ"><i>ठूँठ</i><par n="थ__n_m"/></e>
     <e lm="मुनीमी"><i>मुनीमी</i><par n="ऐ__n_f"/></e>
     <e lm="अर्थ"><i>अर्थ</i><par n="थ__n_m"/></e>
-    <e lm="खानदान"><i>खानदान</i><par n="ऐ__n_m"/></e>
+    <e lm="खानदान"><i>खानदान</i><par n="थ__n_m"/></e>
     <e lm="बहाली"><i>बहाली</i><par n="ऐ__n_f"/></e>
-    <e lm="बरताव"><i>बरताव</i><par n="ऐ__n_m"/></e>
+    <e lm="बरताव"><i>बरताव</i><par n="थ__n_m"/></e>
     <e lm="बाइबिल"><i>बाइबिल</i><par n="ऐ__n_f"/></e>
     <e lm="सुअर"><i>सुअर</i><par n="थ__n_m"/></e>
     <e lm="बुत"><i>बुत</i><par n="थ__n_m"/></e>
@@ -18545,7 +19514,6 @@
     <e lm="भूटानी"><i>भूटान</i><par n="हठ/ी__n_m"/></e>
     <e lm="पदक"><i>पदक</i><par n="थ__n_m"/></e>
     <e lm="कब्र"><i>कब्र</i><par n="जड__n_f"/></e>
-    <e lm="विकास"><i>विकास</i><par n="थ__n_m"/></e>
     <e lm="व्याख्या"><i>व्याख्या</i><par n="बला__n_f"/></e>
     <e lm="हेमंत"><i>हेमंत</i><par n="ऐ__n_m"/></e>
     <e lm="रेखा"><i>रेखा</i><par n="बला__n_f"/></e>
@@ -18576,7 +19544,7 @@
     <e lm="प्रतिशोध"><i>प्रतिशोध</i><par n="ऐ__n_m"/></e>
     <e lm="निश्वास"><i>निश्वास</i><par n="थ__n_m"/></e>
     <e lm="छद्मवेश"><i>छद्मवेश</i><par n="ऐ__n_m"/></e>
-    <e lm="सूरज"><i>सूरज</i><par n="ऐ__n_m"/></e>
+    <e lm="सूरज"><i>सूरज</i><par n="थ__n_m"/></e>
     <e lm="परख"><i>परख</i><par n="ऐ__n_f"/></e>
     <e lm="भित्ति"><i>भित्ति</i><par n="नति__n_f"/></e>
     <e lm="दंतमूल"><i>दंतमूल</i><par n="ऐ__n_m"/></e>
@@ -18601,6 +19569,7 @@
     <e lm="मोती"><i>मोत</i><par n="ध/ी__n_f"/></e>
     <e lm="बैर"><i>बैर</i><par n="ऐ__n_m"/></e>
     <e lm="बैल"><i>बैल</i><par n="थ__n_m"/></e>
+	<e lm="भैंसा"><i>भैंसा</i><par n="थ__n_m"/></e>
     <e lm="व्यापारी"><i>व्यापार</i><par n="हठ/ी__n_m"/></e>
     <e lm="जालसाज"><i>जालसाज</i><par n="थ__n_m"/></e>
     <e lm="नाश्ता"><i>नाश्त</i><par n="ध/ा__n_m"/></e>
@@ -18622,7 +19591,7 @@
     <e lm="रस"><i>रस</i><par n="ऐ__n_m"/></e>
     <e lm="मुहल्ला"><i>मुहल्ल</i><par n="ध/ा__n_m"/></e>
     <e lm="अनुकरण"><i>अनुकरण</i><par n="ऐ__n_m"/></e>
-    <e lm="असर"><i>असर</i><par n="ऐ__n_m"/></e>
+    <e lm="असर"><i>असर</i><par n="थ__n_m"/></e>
     <e lm="तशरीफ"><i>तशरीफ</i><par n="ऐ__n_f"/></e>
     <e lm="इमला"><i>इमल</i><par n="दग/ा__n_m"/></e>
     <e lm="डिलिवरी"><i>डिलिवर</i><par n="ध/ी__n_f"/></e>
@@ -18664,7 +19633,7 @@
     <e lm="आगंतुक"><i>आगंतुक</i><par n="थ__n_m"/></e>
     <e lm="ऐंठ"><i>ऐंठ</i><par n="ऐ__n_f"/></e>
     <e lm="पातक"><i>पातक</i><par n="ऐ__n_m"/></e>
-    <e lm="संश्लेषण"><i>संश्लेषण</i><par n="ऐ__n_m"/></e>
+    <e lm="संश्लेषण"><i>संश्लेषण</i><par n="थ__n_m"/></e>
     <e lm="अतिथिशाला"><i>अतिथिशाला</i><par n="बला__n_f"/></e>
     <e lm="संवृद्धि"><i>संवृद्धि</i><par n="इ__n_m"/></e>
     <e lm="शपथग्रहण"><i>शपथग्रहण</i><par n="ऐ__n_m"/></e>
@@ -18687,8 +19656,8 @@
     <e lm="प्रत्यभिज्ञा"><i>प्रत्यभिज्ञा</i><par n="ऐ__n_f"/></e>
     <e lm="सौगंध"><i>सौगंध</i><par n="ऐ__n_f"/></e>
     <e lm="नाना"><i>नाना</i><par n="ऋ__n_m"/></e>
-    <e lm="हस्त"><i>हस्त</i><par n="ऐ__n_m"/></e>
-    <e lm="चरित्र"><i>चरित्र</i><par n="ऐ__n_m"/></e>
+    <e lm="हस्त"><i>हस्त</i><par n="थ__n_m"/></e>
+    <e lm="चरित्र"><i>चरित्र</i><par n="थ__n_m"/></e>
     <e lm="दर्शक"><i>दर्शक</i><par n="थ__n_m"/></e>
     <e lm="माँ"><i>माँ</i><par n="माँ__n_f"/></e>
     <e lm="मां"><i>मां</i><par n="माँ__n_f"/></e>
@@ -18700,11 +19669,11 @@
     <e lm="तटकर"><i>तटकर</i><par n="ऐ__n_m"/></e>
     <e lm="अपहरण"><i>अपहरण</i><par n="थ__n_m"/></e>
     <e lm="लालच"><i>लालच</i><par n="थ__n_m"/></e>
-    <e lm="आवाहन"><i>आवाहन</i><par n="ऐ__n_m"/></e>
+    <e lm="आवाहन"><i>आवाहन</i><par n="थ__n_m"/></e>
     <e lm="रिश्तेदार"><i>रिश्तेदार</i><par n="थ__n_m"/></e>
     <e lm="उद्गार"><i>उद्गार</i><par n="थ__n_m"/></e>
     <e lm="विपदा"><i>विपद</i><par n="ध/ा__n_m"/></e>
-    <e lm="गीलापन"><i>गीलापन</i><par n="ऐ__n_m"/></e>
+    <e lm="गीलापन"><i>गीलापन</i><par n="अकेल/ापन__n_m"/></e>
     <e lm="रहमत"><i>रहमत</i><par n="थ__n_m"/></e>
     <e lm="जस्ता"><i>जस्त</i><par n="ध/ा__n_m"/></e>
     <e lm="आलाप"><i>आलाप</i><par n="थ__n_m"/></e>
@@ -18718,13 +19687,13 @@
     <e lm="फूलवाली"><i>फूलवाल</i><par n="ध/ी__n_f"/></e>
     <e lm="आखेट"><i>आखेट</i><par n="थ__n_m"/></e>
     <e lm="शर्म"><i>शर्म</i><par n="ऐ__n_f"/></e>
-    <e lm="सौभाग्य"><i>सौभाग्य</i><par n="ऐ__n_m"/></e>
-    <e lm="गुच्छ"><i>गुच्छ</i><par n="ऐ__n_m"/></e>
+    <e lm="सौभाग्य"><i>सौभाग्य</i><par n="थ__n_m"/></e>
+    <e lm="गुच्छ"><i>गुच्छ</i><par n="थ__n_m"/></e>
     <e lm="गुरदा"><i>गुरद</i><par n="ध/ा__n_m"/></e>
     <e lm="अछूत"><i>अछूत</i><par n="थ__n_m"/></e>
     <e lm="जलप्रलय"><i>जलप्रलय</i><par n="ऐ__n_m"/></e>
     <e lm="बिगुल"><i>बिगुल</i><par n="थ__n_m"/></e>
-    <e lm="सूबेदार"><i>सूबेदार</i><par n="ऐ__n_m"/></e>
+    <e lm="सूबेदार"><i>सूबेदार</i><par n="थ__n_m"/></e>
     <e lm="खलीफा"><i>खलीफ</i><par n="ध/ा__n_m"/></e>
     <e lm="दहेज"><i>दहेज</i><par n="ऐ__n_m"/></e>
     <e lm="मर्म"><i>मर्म</i><par n="ऐ__n_m"/></e>
@@ -18813,7 +19782,7 @@
     <e lm="दोषी"><i>दोष</i><par n="हठ/ी__n_m"/></e>
     <e lm="ऐक्टर"><i>ऐक्टर</i><par n="थ__n_m"/></e>
     <e lm="साबुन"><i>साबुन</i><par n="थ__n_m"/></e>
-    <e lm="पुनरुत्पादन"><i>पुनरुत्पादन</i><par n="ऐ__n_m"/></e>
+    <e lm="पुनरुत्पादन"><i>पुनरुत्पादन</i><par n="थ__n_m"/></e>
     <e lm="छलबल"><i>छलबल</i><par n="ऐ__n_m"/></e>
     <e lm="आकाश"><i>आकाश</i><par n="ऐ__n_m"/></e>
     <e lm="आकार"><i>आकार</i><par n="थ__n_m"/></e>
@@ -19279,7 +20248,7 @@
     <e lm="रस्सी"><i>रस्स</i><par n="ध/ी__n_f"/></e>
     <e lm="शैवाल"><i>शैवाल</i><par n="ऐ__n_m"/></e>
     <e lm="नाखून"><i>नाखून</i><par n="थ__n_m"/></e>
-    <e lm="पता"><i>पत</i><par n="ध/ा__n_m"/></e>
+    <!-- <e lm="पता"><i>पत</i><par n="ध/ा__n_m"/></e> -->
     <e lm="अनिल"><i>अनिल</i><par n="ऐ__n_m"/></e>
     <e lm="सोलह"><i>सोलह</i><par n="थ__n_m"/></e>
     <e lm="कली"><i>कल</i><par n="ध/ी__n_f"/></e>
@@ -19616,6 +20585,8 @@
     <e lm="चकोर"><i>चकोर</i><par n="थ__n_m"/></e>
     <e lm="गुंडा"><i>गुंड</i><par n="ध/ा__n_m"/></e>
     <e lm="विशिष्टता"><i>विशिष्टता</i><par n="ऐ__n_f"/></e>
+    <e lm="विलोसिटी"><i>विलोसिटी</i><par n="ऐ__n_f"/></e>
+    <e lm="खेतीबाड़ी"><i>खेतीबाड़ी</i><par n="ऐ__n_f"/></e>
     <e lm="लेखन"><i>लेखन</i><par n="ऐ__n_m"/></e>
     <e lm="वेग"><i>वेग</i><par n="थ__n_m"/></e>
     <e lm="अनुत्साह"><i>अनुत्साह</i><par n="ऐ__n_m"/></e>
@@ -19689,7 +20660,6 @@
     <e lm="आहुति"><i>आहुति</i><par n="नति__n_f"/></e>
     <e lm="अलमारी"><i>अलमार</i><par n="ध/ी__n_f"/></e>
     <e lm="तनखाह"><i>तनखाह</i><par n="जड__n_f"/></e>
-    <e lm="कुर्सी"><i>कुर्स</i><par n="ध/ी__n_f"/></e>
     <e lm="तानाशाह"><i>तानाशाह</i><par n="थ__n_m"/></e>
     <e lm="झुग्गी"><i>झुग्ग</i><par n="ध/ी__n_f"/></e>
     <e lm="मसला"><i>मसल</i><par n="ध/ा__n_m"/></e>
@@ -19917,7 +20887,7 @@
     <e lm="सहस्राब्दी"><i>सहस्राब्दी</i><par n="ऐ__n_f"/></e>
     <e lm="ऐटम"><i>ऐटम</i><par n="थ__n_m"/></e>
     <e lm="दैवयोग"><i>दैवयोग</i><par n="ऐ__n_m"/></e>
-    <e lm="मौसम"><i>मौसम</i><par n="थ__n_m"/></e>
+    <e lm="मौसम"><i>मौसम</i><par n="ऐ__n_m"/></e>
     <e lm="स्वीकृति"><i>स्वीकृति</i><par n="इ__n_m"/></e>
     <e lm="धडकन"><i>धडकन</i><par n="जड__n_f"/></e>
     <e lm="संक्रमण"><i>संक्रमण</i><par n="ऐ__n_m"/></e>
@@ -20061,6 +21031,7 @@
     <e lm="विज्ञापन"><i>विज्ञापन</i><par n="थ__n_m"/></e>
     <e lm="अर्चक"><i>अर्चक</i><par n="थ__n_m"/></e>
     <e lm="गुलामी"><i>गुलामी</i><par n="ऐ__n_f"/></e>
+    <e lm="ग़ुलामी"><i>ग़ुलामी</i><par n="ऐ__n_f"/></e>
     <e lm="ताऊ"><i>ता</i><par n="/ऊ__n_m"/></e>
     <e lm="नजदीकी"><i>नजदीक</i><par n="ध/ी__n_f"/></e>
     <e lm="वाउचर"><i>वाउचर</i><par n="थ__n_m"/></e>
@@ -20131,6 +21102,7 @@
     <e lm="लेबल"><i>लेबल</i><par n="थ__n_m"/></e>
     <e lm="मर्दाना"><i>मर्दान</i><par n="ध/ा__n_m"/></e>
     <e lm="फिलासफी"><i>फिलासफी</i><par n="ऐ__n_f"/></e>
+    <e lm="आकर्षण-शक्ति"><i>आकर्षण-शक्ति</i><par n="ऐ__n_f"/></e>
     <e lm="मयखाना"><i>मयखान</i><par n="ध/ा__n_m"/></e>
     <e lm="कुहर"><i>कुहर</i><par n="ऐ__n_m"/></e>
     <e lm="युवक"><i>युवक</i><par n="थ__n_m"/></e>
@@ -20274,7 +21246,6 @@
     <e lm="ढर्रा"><i>ढर्र</i><par n="ध/ा__n_m"/></e>
     <e lm="घडा"><i>घड</i><par n="ध/ा__n_m"/></e>
     <e lm="कालोनी"><i>कालोन</i><par n="ध/ी__n_f"/></e>
-    <e lm="बिल्ली"><i>बिल्ल</i><par n="ध/ी__n_f"/></e>
     <e lm="रोलर"><i>रोलर</i><par n="थ__n_m"/></e>
     <e lm="आर्द्र"><i>आर्द्र</i><par n="थ__n_m"/></e>
     <e lm="अनुशासक"><i>अनुशासक</i><par n="थ__n_m"/></e>
@@ -20302,6 +21273,8 @@
     <e lm="अप्सरा"><i>अप्सरा</i><par n="बला__n_f"/></e>
     <e lm="शलगम"><i>शलगम</i><par n="थ__n_m"/></e>
     <e lm="रसिकता"><i>रसिकता</i><par n="ऐ__n_f"/></e>
+    <e lm="अभियांत्रिकी"><i>अभियांत्रिकी</i><par n="ऐ__n_f"/></e>
+    <e lm="इंजीयरनिंग"><i>इंजीयरनिंग</i><par n="ऐ__n_f"/></e>
     <e lm="सूचि"><i>सूचि</i><par n="नति__n_f"/></e>
     <e lm="घटाटोप"><i>घटाटोप</i><par n="ऐ__n_m"/></e>
     <e lm="वान"><i>वान</i><par n="थ__n_m"/></e>
@@ -20352,7 +21325,7 @@
     <e lm="पनचक्की"><i>पनचक्क</i><par n="ध/ी__n_f"/></e>
     <e lm="दरियादिली"><i>दरियादिल</i><par n="ध/ी__n_f"/></e>
     <e lm="संपन्नता"><i>संपन्नता</i><par n="ऐ__n_f"/></e>
-    <e lm="पकड"><i>पकड</i><par n="ऐ__n_f"/></e>
+    <e lm="पकड़"><i>पकड़</i><par n="ऐ__n_f"/></e>
     <e lm="फुहारा"><i>फुहार</i><par n="ध/ा__n_m"/></e>
     <e lm="अभ्युदय"><i>अभ्युदय</i><par n="ऐ__n_m"/></e>
     <e lm="उपाख्यान"><i>उपाख्यान</i><par n="थ__n_m"/></e>
@@ -20707,7 +21680,6 @@
     <e lm="दुःसाहस"><i>दुःसाहस</i><par n="ऐ__n_m"/></e>
     <e lm="नेत्ररोग"><i>नेत्ररोग</i><par n="थ__n_m"/></e>
     <e lm="कंधा"><i>कंध</i><par n="ध/ा__n_m"/></e>
-    <e lm="कहानी"><i>कहान</i><par n="ध/ी__n_f"/></e>
     <e lm="सुगमता"><i>सुगमता</i><par n="ऐ__n_f"/></e>
     <e lm="सीमेंट"><i>सीमेंट</i><par n="ऐ__n_m"/></e>
     <e lm="अपभ्रंश"><i>अपभ्रंश</i><par n="ऐ__n_m"/></e>
@@ -20824,6 +21796,7 @@
     <e lm="यंत्र"><i>यंत्र</i><par n="थ__n_m"/></e>
     <e lm="योगफल"><i>योगफल</i><par n="ऐ__n_m"/></e>
     <e lm="छायाचित्र"><i>छायाचित्र</i><par n="थ__n_m"/></e>
+    <e lm="फ़ुटबॉल"><i>फ़ुटबॉल</i><par n="जड__n_f"/></e>
     <e lm="दुर्गंध"><i>दुर्गंध</i><par n="ऐ__n_f"/></e>
     <e lm="वादा"><i>वाद</i><par n="ध/ा__n_m"/></e>
     <e lm="उपोद्घात"><i>उपोद्घात</i><par n="ऐ__n_m"/></e>
@@ -21807,6 +22780,7 @@
     <e lm="होलिका"><i>होलिका</i><par n="ऐ__n_f"/></e>
     <e lm="उकताहट"><i>उकताहट</i><par n="ऐ__n_f"/></e>
     <e lm="आजकल"><i>आजकल</i><par n="ऐ__n_m"/></e>
+    <e lm="आज"><i>आज</i><par n="ऐ__n_m"/></e>
     <e lm="चिनगारी"><i>चिनगार</i><par n="ध/ी__n_f"/></e>
     <e lm="प्रसूति"><i>प्रसूति</i><par n="नति__n_f"/></e>
     <e lm="चुनरी"><i>चुनर</i><par n="ध/ी__n_f"/></e>
@@ -22239,6 +23213,8 @@
     <e lm="संप्रत्यय"><i>संप्रत्यय</i><par n="ऐ__n_m"/></e>
     <e lm="जुर्राब"><i>जुर्राब</i><par n="जड__n_f"/></e>
     <e lm="मंदिर"><i>मंदिर</i><par n="थ__n_m"/></e>
+    <e lm="संजात"><i>संजात</i><par n="थ__n_m"/></e>
+    <e lm="डेरिवेटिव"><i>डेरिवेटिव</i><par n="थ__n_m"/></e>
     <e lm="मन्दिर"><i>मन्दिर</i><par n="थ__n_m"/></e>
     <e lm="शिकारीकुत्ता"><i>शिकारीकुत्त</i><par n="ध/ा__n_m"/></e>
     <e lm="पुनरुत्पत्ति"><i>पुनरुत्पत्ति</i><par n="नति__n_f"/></e>
@@ -22252,7 +23228,6 @@
     <e lm="दीपावली"><i>दीपावली</i><par n="ऐ__n_f"/></e>
     <e lm="आत्मघात"><i>आत्मघात</i><par n="ऐ__n_m"/></e>
     <e lm="शारिका"><i>शारिका</i><par n="बला__n_f"/></e>
-    <e lm="आना"><i>आन</i><par n="ध/ा__n_m"/></e>
     <e lm="वामपंथी"><i>वामपंथ</i><par n="हठ/ी__n_m"/></e>
     <e lm="व्यवसायी"><i>व्यवसाय</i><par n="हठ/ी__n_m"/></e>
     <e lm="उपवेशन"><i>उपवेशन</i><par n="ऐ__n_m"/></e>
@@ -23349,7 +24324,9 @@
     <e lm="बीजक"><i>बीजक</i><par n="थ__n_m"/></e>
     <e lm="बीमारी"><i>बीमार</i><par n="ध/ी__n_f"/></e>
     <e lm="आवेदन"><i>आवेदन</i><par n="ऐ__n_m"/></e>
-    <e lm="बृहस्पतिवार"><i>बृहस्पतिवार</i><par n="थ__n_m"/></e>
+    <e lm="बुधवार"><i>बुधवार</i><par n="थ__n_m"/></e>
+	<e lm="बृहस्पतिवार"><i>बृहस्पतिवार</i><par n="थ__n_m"/></e>
+	<e lm="शनिवार"><i>शनिवार</i><par n="थ__n_m"/></e>
     <e lm="प्रज्ञान"><i>प्रज्ञान</i><par n="ऐ__n_m"/></e>
     <e lm="निलंबन"><i>निलंबन</i><par n="ऐ__n_m"/></e>
     <e lm="रेलिंग"><i>रेलिंग</i><par n="जड__n_f"/></e>
@@ -23534,6 +24511,8 @@
     <e lm="निरूपण"><i>निरूपण</i><par n="ऐ__n_m"/></e>
     <e lm="अखाडा"><i>अखाड</i><par n="ध/ा__n_m"/></e>
     <e lm="बंदगोभी"><i>बंदगोभ</i><par n="हठ/ी__n_m"/></e>
+	<e lm="प्राप्ती"><i>प्राप्त</i><par n="हठ/ी__n_m"/></e>
+	<e lm="उपलब्धी"><i>उपलब्ध</i><par n="हठ/ी__n_m"/></e>
     <e lm="मार्ग"><i>मार्ग</i><par n="थ__n_m"/></e>
     <e lm="दाऊ"><i>दाऊ</i><par n="ऐ__n_m"/></e>
     <e lm="मंजरी"><i>मंजर</i><par n="ध/ी__n_f"/></e>
@@ -23644,6 +24623,7 @@
     <e lm="सफरी"><i>सफर</i><par n="ध/ी__n_f"/></e>
     <e lm="बोर्ड"><i>बोर्ड</i><par n="थ__n_m"/></e>
     <e lm="आज्ञा"><i>आज्ञा</i><par n="बला__n_f"/></e>
+    <e lm="मानता"><i>मानता</i><par n="बला__n_f"/></e>
     <e lm="शुक्रवार"><i>शुक्रवार</i><par n="ऐ__n_m"/></e>
     <e lm="भयादोहन"><i>भयादोहन</i><par n="ऐ__n_m"/></e>
     <e lm="रसायनशास्त्र"><i>रसायनशास्त्र</i><par n="ऐ__n_m"/></e>
@@ -23810,6 +24790,7 @@
     <e lm="बडप्पन"><i>बडप्पन</i><par n="ऐ__n_m"/></e>
     <e lm="अंतर्धान"><i>अंतर्धान</i><par n="ऐ__n_m"/></e>
     <e lm="प्रशंसा"><i>प्रशंसा</i><par n="ऐ__n_f"/></e>
+    <e lm="कलां"><i>कलां</i><par n="ऐ__n_f"/></e>
     <e lm="लत्ता"><i>लत्त</i><par n="ध/ा__n_m"/></e>
     <e lm="चतुराई"><i>चतुराई</i><par n="ऐ__n_f"/></e>
     <e lm="थोक"><i>थोक</i><par n="ऐ__n_m"/></e>
@@ -23858,6 +24839,7 @@
     <e lm="नर्तकी"><i>नर्तक</i><par n="ध/ी__n_f"/></e>
     <e lm="टैक्सी"><i>टैक्स</i><par n="ध/ी__n_f"/></e>
     <e lm="रजकण"><i>रजकण</i><par n="थ__n_m"/></e>
+    <e lm="स्टैण्डर्ड"><i>स्टैण्डर्ड</i><par n="थ__n_m"/></e>
     <e lm="साबूदाना"><i>साबूदान</i><par n="ध/ा__n_m"/></e>
     <e lm="सिक्ख"><i>सिक्ख</i><par n="थ__n_m"/></e>
     <e lm="परिसंख्या"><i>परिसंख्या</i><par n="बला__n_f"/></e>
@@ -23885,6 +24867,7 @@
     <e lm="करुणा"><i>करुणा</i><par n="ऐ__n_f"/></e>
     <e lm="पंजी"><i>पंजी</i><par n="ऐ__n_f"/></e>
     <e lm="शास्त्र"><i>शास्त्र</i><par n="थ__n_m"/></e>
+    <e lm="कम्पोनेंट"><i>कम्पोनेंट</i><par n="थ__n_m"/></e>
     <e lm="सवार"><i>सवार</i><par n="थ__n_m"/></e>
     <e lm="ढाल"><i>ढाल</i><par n="जड__n_f"/></e>
     <e lm="अधिकता"><i>अधिकता</i><par n="ऐ__n_f"/></e>
@@ -23975,7 +24958,7 @@
     <e lm="कारक"><i>कारक</i><par n="थ__n_m"/></e>
     <e lm="ईडा"><i>ईडा</i><par n="बला__n_f"/></e>
     <e lm="राजाज्ञा"><i>राजाज्ञा</i><par n="बला__n_f"/></e>
-    <e lm="वाद्यसंगीत"><i>वाद्यसंगीत</i><par n="ऐ__n_m"/></e>
+    <!-- <e lm="वाद्यसंगीत"><i>वाद्���संगीत</i><par n="ऐ__n_m"/></e> -->
     <e lm="बुझौवल"><i>बुझौवल</i><par n="ऐ__n_f"/></e>
     <e lm="उपशम"><i>उपशम</i><par n="ऐ__n_m"/></e>
     <e lm="परिष्कार"><i>परिष्कार</i><par n="ऐ__n_m"/></e>
@@ -24447,7 +25430,7 @@
     <e lm="आर"><i>आर</i><par n="थ__n_m"/></e>
     <e lm="पेच"><i>पेच</i><par n="थ__n_m"/></e>
     <e lm="अमरबेल"><i>अमरबेल</i><par n="जड__n_f"/></e>
-    <e lm="आम"><i>आम</i><par n="थ__n_m"/></e>
+    <e lm="आम" w="0.1"><i>आम</i><par n="थ__n_m"/></e>
     <e lm="आध"><i>आध</i><par n="थ__n_m"/></e>
     <e lm="आड"><i>आड</i><par n="ऐ__n_f"/></e>
     <e lm="पुष्प"><i>पुष्प</i><par n="थ__n_m"/></e>
@@ -24633,6 +25616,7 @@
     <e lm="फिरौती"><i>फिरौती</i><par n="ऐ__n_f"/></e>
     <e lm="टट्टी"><i>टट्ट</i><par n="ध/ी__n_f"/></e>
     <e lm="नोट"><i>नोट</i><par n="थ__n_m"/></e>
+    <e lm="कोआर्डिनेट"><i>कोआर्डिनेट</i><par n="थ__n_m"/></e>
     <e lm="रसायन"><i>रसायन</i><par n="ऐ__n_m"/></e>
     <e lm="थकान"><i>थकान</i><par n="ऐ__n_f"/></e>
     <e lm="मंदाग्नि"><i>मंदाग्नि</i><par n="ऐ__n_f"/></e>
@@ -24808,8 +25792,8 @@
     <e lm="प्रचारक"><i>प्रचारक</i><par n="थ__n_m"/></e>
     <e lm="अँगुली"><i>अँगुल</i><par n="ध/ी__n_f"/></e>
     <e lm="पोल"><i>पोल</i><par n="ऐ__n_f"/></e>
-    <e lm="दुराचार"><i>दुराचार</i><par n="ऐ__n_m"/></e>
-    <e lm="विकर्षण"><i>विकर्षण</i><par n="ऐ__n_m"/></e>
+    <!-- <e lm="दुराचार"><i>दुर��चार</i><par n="ऐ__n_m"/></e> -->
+    <!-- <e lm="वि��र्षण"><i>विकर्षण</i><par n="ऐ__n_m"/></e> -->
     <e lm="बेलन"><i>बेलन</i><par n="थ__n_m"/></e>
     <e lm="नीचा"><i>नीच</i><par n="ध/ा__n_m"/></e>
     <e lm="अनुज्ञप्ति"><i>अनुज्ञप्ति</i><par n="नति__n_f"/></e>
@@ -24867,11 +25851,14 @@
     <e lm="कीचड"><i>कीचड</i><par n="ऐ__n_m"/></e>
     <e lm="समाचार"><i>समाचार</i><par n="थ__n_m"/></e>
     <e lm="उधार"><i>उधार</i><par n="ऐ__n_m"/></e>
+    <e lm="जुड़वां"><i>जुड़वां</i><par n="ऐ__n_m"/></e>
     <e lm="कौशल"><i>कौशल</i><par n="ऐ__n_m"/></e>
     <e lm="फू़ँक"><i>फू़ँक</i><par n="जड__n_f"/></e>
     <e lm="पलक"><i>पलक</i><par n="जड__n_f"/></e>
     <e lm="तिमाही"><i>तिमाही</i><par n="ऐ__n_f"/></e>
     <e lm="संस्थान"><i>संस्थान</i><par n="थ__n_m"/></e>
+    <e lm="ज़िकर"><i>ज़िकर</i><par n="थ__n_m"/></e>
+    <e lm="स्केलर"><i>स्केलर</i><par n="थ__n_m"/></e>
     <e lm="जीवनी"><i>जीवन</i><par n="ध/ी__n_f"/></e>
     <e lm="मेडल"><i>मेडल</i><par n="थ__n_m"/></e>
     <e lm="कुमारी"><i>कुमार</i><par n="ध/ी__n_f"/></e>
@@ -25186,6 +26173,7 @@
     <e lm="शिक्षा"><i>शिक्षा</i><par n="बला__n_f"/></e>
     <e lm="क्रांति"><i>क्रांति</i><par n="ऐ__n_f"/></e>
     <e lm="आत्माभिमान"><i>आत्माभिमान</i><par n="ऐ__n_m"/></e>
+    <e lm="इन्कलाब"><i>इन्कलाब</i><par n="ऐ__n_m"/></e>
     <e lm="पैलेस"><i>पैलेस</i><par n="ऐ__n_m"/></e>
     <e lm="राजमहल"><i>राजमहल</i><par n="थ__n_m"/></e>
     <e lm="चुंबक"><i>चुंबक</i><par n="थ__n_m"/></e>
@@ -25641,7 +26629,7 @@
     <e lm="विशेषांक"><i>विशेषांक</i><par n="थ__n_m"/></e>
     <e lm="मुक्का"><i>मुक्क</i><par n="ध/ा__n_m"/></e>
     <e lm="शिखर"><i>शिखर</i><par n="थ__n_m"/></e>
-    <e lm="प्रक्रिया"><i>प्रक्रिया</i><par n="बला__n_f"/></e>
+    <!-- <e lm="प्रक्रिया"><i>��्रक्रिया</i><par n="बला__n_f"/></e> -->
     <e lm="चिनाई"><i>चिनाई</i><par n="ऐ__n_f"/></e>
     <e lm="लेडी"><i>लेडी</i><par n="ऐ__n_f"/></e>
     <e lm="चिलम"><i>चिलम</i><par n="जड__n_f"/></e>
@@ -25923,6 +26911,7 @@
     <e lm="कुटिया"><i>कुटिय</i><par n="मचिय/ा__n_f"/></e>
     <e lm="महा"><i>महा</i><par n="ऐ__n_m"/></e>
     <e lm="प्रदर्शन"><i>प्रदर्शन</i><par n="थ__n_m"/></e>
+    <e lm="करिअर"><i>करिअर</i><par n="थ__n_m"/></e>
     <e lm="कर्मशाला"><i>कर्मशाला</i><par n="बला__n_f"/></e>
     <e lm="आतप"><i>आतप</i><par n="ऐ__n_m"/></e>
     <e lm="निर्वाण"><i>निर्वाण</i><par n="ऐ__n_m"/></e>
@@ -25963,7 +26952,7 @@
     <e lm="नखरा"><i>नखर</i><par n="ध/ा__n_m"/></e>
     <e lm="औलाद"><i>औलाद</i><par n="जड__n_f"/></e>
     <e lm="शरत्काल"><i>शरत्काल</i><par n="ऐ__n_m"/></e>
-    <e lm="नया"><i>नय</i><par n="ध/ा__n_m"/></e>
+    <!-- <e lm="नया"><i>नय</i><par n="ध/ा__n_m"/></e> -->
     <e lm="किलोवाट"><i>किलोवाट</i><par n="ऐ__n_m"/></e>
     <e lm="गड्डी"><i>गड्ड</i><par n="ध/ी__n_f"/></e>
     <e lm="विवाह"><i>विवाह</i><par n="थ__n_m"/></e>
@@ -26174,6 +27163,7 @@
     <e lm="मेहनताना"><i>मेहनतान</i><par n="ध/ा__n_m"/></e>
     <e lm="गुहा"><i>गुहा</i><par n="बला__n_f"/></e>
     <e lm="संस्तुति"><i>संस्तुति</i><par n="नति__n_f"/></e>
+	<e lm="आरती"><i>आरती</i><par n="नति__n_f"/></e>
     <e lm="बस्ति"><i>बस्ति</i><par n="इ__n_m"/></e>
     <e lm="बस्ता"><i>बस्त</i><par n="ध/ा__n_m"/></e>
     <e lm="पोषिता"><i>पोषिता</i><par n="ऐ__n_f"/></e>
@@ -26213,6 +27203,7 @@
     <e lm="अनुसमर्थन"><i>अनुसमर्थन</i><par n="ऐ__n_m"/></e>
     <e lm="श्रोणि"><i>श्रोणि</i><par n="ऐ__n_f"/></e>
     <e lm="फरियाद"><i>फरियाद</i><par n="जड__n_f"/></e>
+    <e lm="चीज़"><i>चीज़</i><par n="जड__n_f"/></e>
     <e lm="क्षण"><i>क्षण</i><par n="थ__n_m"/></e>
     <e lm="देश"><i>देश</i><par n="थ__n_m"/></e>
     <e lm="क्षय"><i>क्षय</i><par n="ऐ__n_m"/></e>
@@ -26236,7 +27227,9 @@
     <e lm="चोटी"><i>चोट</i><par n="ध/ी__n_f"/></e>
     <e lm="बंडल"><i>बंडल</i><par n="थ__n_m"/></e>
     <e lm="बंडा"><i>बंड</i><par n="ध/ा__n_m"/></e>
-    <e lm="मकडी"><i>मकड</i><par n="ध/ी__n_f"/></e>
+	<e lm="गुड्डा"><i>गुड्ड</i><par n="ध/ा__n_m"/></e>
+    <e lm="गुड्डी"><i>गुड्ड</i><par n="ध/ी__n_f"/></e>
+	<e lm="मकडी"><i>मकड</i><par n="ध/ी__n_f"/></e>
     <e lm="डिगरी"><i>डिगर</i><par n="ध/ी__n_f"/></e>
     <e lm="ऐली"><i>ऐल</i><par n="ध/ी__n_f"/></e>
     <e lm="जासूसी"><i>जासूस</i><par n="ध/ी__n_f"/></e>
@@ -26263,6 +27256,8 @@
     <e lm="हेलीकाप्टर"><i>हेलीकाप्टर</i><par n="थ__n_m"/></e>
     <e lm="महासंघ"><i>महासंघ</i><par n="थ__n_m"/></e>
     <e lm="साइप्रट"><i>साइप्रट</i><par n="थ__n_m"/></e>
+    <e lm="मैडल"><i>मैडल</i><par n="थ__n_m"/></e>
+	<e lm="ऊंट"><i>ऊंट</i><par n="थ__n_m"/></e>
     <e lm="जां"><i>जां</i><par n="ऐ__n_m"/></e>
     <e lm="क्रैक"><i>क्रैक</i><par n="ऐ__n_m"/></e>
     <e lm="वेल"><i>वेल</i><par n="ऐ__n_m"/></e>
@@ -26270,6 +27265,7 @@
     <e lm="नस्तालीक़"><i>नस्तालीक़</i><par n="ऐ__n_f"/></e>
     <e lm="मीडिया"><i>मीडिया</i><par n="ऐ__n_f"/></e>
     <e lm="रिसर्च"><i>रिसर्च</i><par n="ऐ__n_f"/></e>
+    <e lm="बाइबल"><i>बाइबल</i><par n="ऐ__n_f"/></e>
     <e lm="अभ्यन्तर"><i>अभ्यन्तर</i><par n="ऐ__n_m"/></e>
     <e lm="रास"><i>रास</i><par n="ऐ__n_m"/></e>
     <e lm="एंटर"><i>एंटर</i><par n="ऐ__n_m"/></e>
@@ -26289,11 +27285,46 @@
     <e lm="पंचांग"><i>पंचांग</i><par n="ऐ__n_m"/></e>
     <e lm="ओलंपिक"><i>ओलंपिक</i><par n="ऐ__n_m"/></e>
     <e lm="ट"><i>ट</i><par n="ऐ__n_m"/></e>
-    <!-- Adjectives -->
+
+    <e lm="रंग"><i>रंग</i><par n="ऐ__n_m"/></e>
+	<e lm="मेड"><i>मेड</i><par n="ऐ__n_m"/></e>
+    <e lm="प्याली"><i>प्याल</i><par n="ध/ी__n_f"/></e>
+    <e lm="पत्री"><i>पत्र</i><par n="ध/ी__n_f"/></e>
+	
+
+    <!-- Adjectives -->    
+
+	<e lm="जैसा"><i>जैसा</i><par n="गलत__adj"/></e>
+	<e lm="परस्पर"><i>परस्पर</i><par n="गलत__adj"/></e>
+	<e lm="उद्धृत"><i>उद्धृत</i><par n="गलत__adj"/></e>
+	<e lm="झमाझम"><i>झमाझम</i><par n="गलत__adj"/></e>
+	<e lm="स्वयंसेवक"><i>स्वयंसेवक</i><par n="गलत__adj"/></e>
+	<e lm="कूड़ा"><i>कूड़ा</i><par n="गलत__adj"/></e>
+	<e lm="जन्म लिया"><i>जन्म<b/>लिया</i><par n="गलत__adj"/></e>
+	<e lm="शराबी"><i>शराबी</i><par n="गलत__adj"/></e>
+	<e lm="उबलना"><i>उबलना</i><par n="गलत__adj"/></e>
+	<e lm="पेय"><i>पेय</i><par n="गलत__adj"/></e>
+	<e lm="जानवरों"><i>जानवरों</i><par n="गलत__adj"/></e>
+	<e lm="गतायु"><i>गतायु</i><par n="गलत__adj"/></e>
+	<e lm="ब्याज"><i>ब्याज</i><par n="गलत__adj"/></e>
+	<e lm="कान तक"><i>कान<b/>तक</i><par n="गलत__adj"/></e>
+	<e lm="खुले तौर पर"><i>खुले<b/>तौर<b/>पर</i><par n="गलत__adj"/></e>
+	<e lm="ऊंचाई"><i>ऊंचाई</i><par n="गलत__adj"/></e>
+	<e lm="नष्ट"><i>नष्ट</i><par n="गलत__adj"/></e>
+	<e lm="बड़े दांत"><i>बड़े<b/>दांत</i><par n="गलत__adj"/></e>
+	<e lm="ग्यारहवें"><i>ग्यारहवें</i><par n="गलत__adj"/></e>
+	<e lm="इथेल"><i>इथेल</i><par n="गलत__adj"/></e>
+	<e lm="ऋणी"><i>ऋणी</i><par n="गलत__adj"/></e>
+	<e lm="उम्र भर"><i>उम्र<b/>भर</i><par n="गलत__adj"/></e>
+	<e lm="सीधे"><i>सीधे</i><par n="गलत__adj"/></e>
+	<e lm="आखिर में"><i>आखिर<b/>में</i><par n="गलत__adj"/></e>
+	<e lm="समाप्त"><i>समाप्त</i><par n="गलत__adj"/></e>
+	<e lm="बूढ़े"><i>बूढ़े</i><par n="गलत__adj"/></e>
     <e lm="अन्तर्गत"><i>अन्तर्गत</i><par n="गलत__adj"/></e>
 	<e lm="बलुआ"><i>बलुआ</i><par n="गलत__adj"/></e>
     <e lm="राष्ट्रपति"><i>राष्ट्रपति</i><par n="गलत__adj"/></e>
     <e lm="क़ाबू"><i>क़ाबू</i><par n="गलत__adj"/></e>
+    <e lm="दोनों"><i>दोनों</i><par n="गलत__adj"/></e>
     <e lm="आफ़नदीसी"><i>आफ़नदीसी</i><par n="गलत__adj"/></e>
     <e lm="आगासी"><i>आगासी</i><par n="गलत__adj"/></e>
     <e lm="अधिपति"><i>अधिपति</i><par n="गलत__adj"/></e>
@@ -26477,7 +27508,8 @@
     <e lm="विशेष"><i>विशेष</i><par n="गलत__adj"/></e>
     <e lm="शैक्षणिक"><i>शैक्षणिक</i><par n="गलत__adj"/></e>
     <e lm="वैज्ञानिक"><i>वैज्ञानिक</i><par n="गलत__adj"/></e>
-	<e lm="सदर"><i>सदर</i><par n="गलत__adj"/></e>
+  <e lm="सदर"><i>सदर</i><par n="गलत__adj"/></e>
+  <e lm="नयेनये"><i>नयेनये</i><par n="गलत__adj"/></e>
 	<e lm="पहाड़ी"><i>पहाड़ी</i><par n="गलत__adj"/></e>
     <e lm="पीरी"><i>पीरी</i><par n="गलत__adj"/></e>
     <e lm="संस्थापक"><i>संस्थापक</i><par n="गलत__adj"/></e>
@@ -26600,6 +27632,7 @@
     <e lm="ठेकेदार"><i>ठेकेदार</i><par n="गलत__adj"/></e>
     <e lm="गरजदार"><i>गरजदार</i><par n="गलत__adj"/></e>
     <e lm="सुराखदार"><i>सुराखदार</i><par n="गलत__adj"/></e>
+    <e lm="बिल्कुल"><i>बिल्कुल</i><par n="गलत__adj"/></e>
     <e lm="लैसदार"><i>लैसदार</i><par n="गलत__adj"/></e>
     <e lm="चमकदार"><i>चमकदार</i><par n="गलत__adj"/></e>
     <e lm="बहकदार"><i>बहकदार</i><par n="गलत__adj"/></e>
@@ -26779,6 +27812,7 @@
     <e lm="पेश"><i>पेश</i><par n="गलत__adj"/></e>
     <e lm="नील"><i>नील</i><par n="गलत__adj"/></e>
 	<e lm="थोड़ा"><i>थोड़</i><par n="स/ा__adj"/></e>
+	<e lm="थोड़ा बहुत"><i>थोड़<b/>बहुत</i><par n="स/ा__adj"/></e>
 	<e lm="सयाना"><i>सयान</i><par n="स/ा__adj"/></e>
 	<e lm="बहरा"><i>बहर</i><par n="स/ा__adj"/></e>
     <e lm="प्यासा"><i>प्यास</i><par n="स/ा__adj"/></e>
@@ -26803,7 +27837,7 @@
     <e lm="स्थित"><i>स्थित</i><par n="गलत__adj"/></e>
     <e lm="बे"><i>बे</i><par n="गलत__adj"/></e>
     <e lm="कई"><i>कई</i><par n="गलत__adj"/></e>
-    <e lm="आम"><i>आम</i><par n="गलत__adj"/></e>
+    <e lm="आम" w="0.4"><i>आम</i><par n="गलत__adj"/></e>
     <e lm="अहम"><i>अहम</i><par n="गलत__adj"/></e>
     <e lm="मुझी"><i>मुझी</i><par n="गलत__adj"/></e>
     <e lm="तुम्ही"><i>तुम्ही</i><par n="गलत__adj"/></e>
@@ -26819,8 +27853,8 @@
     <e lm="जिन्ही"><i>जिन्ही</i><par n="गलत__adj"/></e>
     <e lm="सभी"><i>सभी</i><par n="गलत__adj"/></e>
     <e lm="नर्म"><i>नर्म</i><par n="गलत__adj"/></e>
-	<e lm="इस तरह"><i>इस<b/>तरह</i><par n="गलत__adj"/></e>
 	<e lm="तरह"><i>तरह</i><par n="गलत__adj"/></e>
+	<e lm="की तरह"><i>की<b/>तरह</i><par n="गलत__adj"/></e>
 	<e lm="सा"><i>स</i><par n="स/ा__adj"/></e>
 	<e lm="बड़ा"><i>बड़</i><par n="स/ा__adj"/></e>
 	<e lm="रिहायशी"><i>रिहायशी</i><par n="गलत__adj"/></e>
@@ -26842,10 +27876,9 @@
 	<e lm="विलायती"><i>विलायती</i><par n="गलत__adj"/></e>
 	<e lm="बाहरी"><i>बाहरी</i><par n="गलत__adj"/></e>
 	<e lm="अलग-अलग"><i>अलग-अलग</i><par n="गलत__adj"/></e>
-	<e lm="बडे"><i>बडे</i><par n="गलत__adj"/></e>
 	<e lm="हानिकारक"><i>हानिकारक</i><par n="गलत__adj"/></e>
-	<e lm="ठंडा"><i>ठंडा</i><par n="गलत__adj"/></e>
-	<e lm="बड़े"><i>बड़े</i><par n="गलत__adj"/></e>
+	<e lm="बडा"><i>बड</i><par n="स/ा__adj"/></e>
+	<e lm="बड़ा"><i>बड़</i><par n="स/ा__adj"/></e>
 	<e lm="तभी"><i>तभी</i><par n="गलत__adj"/></e>
 	<e lm="अल्पायु"><i>अल्पायु</i><par n="गलत__adj"/></e>
 	<e lm="सहर्ष"><i>सहर्ष</i><par n="गलत__adj"/></e>
@@ -26950,6 +27983,7 @@
     <e lm="निरालंब"><i>निरालंब</i><par n="गलत__adj"/></e>
     <e lm="अंशकालिक"><i>अंशकालिक</i><par n="गलत__adj"/></e>
     <e lm="मजबूत"><i>मजबूत</i><par n="गलत__adj"/></e>
+    <e lm="मज़बूत"><i>मज़बूत</i><par n="गलत__adj"/></e>
     <e lm="खैराती"><i>खैराती</i><par n="गलत__adj"/></e>
     <e lm="एडिशनल"><i>एडिशनल</i><par n="गलत__adj"/></e>
     <e lm="मतवाला"><i>मतवाल</i><par n="स/ा__adj"/></e>
@@ -27869,7 +28903,7 @@
 	<e lm="खुजलाहटदार"><i>खुजलाहटदार</i><par n="गलत__adj"/></e>
 	<e lm="एक-वर्षीय"><i>एक-वर्षीय</i><par n="गलत__adj"/></e>
 	<e lm="दूरस्थ"><i>दूरस्थ</i><par n="गलत__adj"/></e>
-	<e lm="अनुज्ञात्मक"><i>अनुज्ञात्मक</i><par n="गलत__adj"/></e>
+	<!-- <e lm="अन���ज्ञात्मक"><i>अनुज्ञात्��क</i><par n="गलत__adj"/></e> -->
 	<e lm="विवादात्मक"><i>विवादात्मक</i><par n="गलत__adj"/></e>
 	<e lm="बेधुला"><i>बेधुला</i><par n="गलत__adj"/></e>
 	<e lm="खड़ियामय"><i>खड़ियामय</i><par n="गलत__adj"/></e>
@@ -28532,7 +29566,7 @@
 	<e lm="शुष्कतानुकूली"><i>शुष्कतानुकूली</i><par n="गलत__adj"/></e>
 	<e lm="नाकाम"><i>नाकाम</i><par n="गलत__adj"/></e>
 	<e lm="कंबख़्त"><i>कंबख़्त</i><par n="गलत__adj"/></e>
-	<e lm="अतिविकसित"><i>अतिविकसित</i><par n="गलत__adj"/></e>
+	<!-- <e lm="अतिविकसित"><i>अ��िविकसित</i><par n="गलत__adj"/></e> -->
 	<e lm="वाष्पीकृत"><i>वाष्पीकृत</i><par n="गलत__adj"/></e>
 	<e lm="अलाभकर"><i>अलाभकर</i><par n="गलत__adj"/></e>
 	<e lm="स्पर्शरेखीय"><i>स्पर्शरेखीय</i><par n="गलत__adj"/></e>
@@ -29196,13 +30230,12 @@
 	<e lm="अनटूटा"><i>अनटूटा</i><par n="गलत__adj"/></e>
 	<e lm="अपकेंद्री"><i>अपकेंद्री</i><par n="गलत__adj"/></e>
 	<e lm="स्पृहणीय"><i>स्पृहणीय</i><par n="गलत__adj"/></e>
-	<e lm="छिलकेदार"><i>छिलकेदार</i><par n="गलत__adj"/></e>
+	<!-- <e lm="छिलकेद���र"><i>छिलकेदार</i><par n="गलत__adj"/></e> -->
 	<e lm="भ्रांतिमूलक"><i>भ्रांतिमूलक</i><par n="गलत__adj"/></e>
 	<e lm="आस्तिकवादी"><i>आस्तिकवादी</i><par n="गलत__adj"/></e>
 	<e lm="रहस्यात्मक"><i>रहस्यात्मक</i><par n="गलत__adj"/></e>
 	<e lm="चोटमूलक"><i>चोटमूलक</i><par n="गलत__adj"/></e>
 	<e lm="आत्मसंतुष्ट"><i>आत्मसंतुष्ट</i><par n="गलत__adj"/></e>
-	<e lm="बड़ा"><i>बड़ा</i><par n="गलत__adj"/></e>
 	<e lm="घमण्डी"><i>घमण्डी</i><par n="गलत__adj"/></e>
 	<e lm="सुखद"><i>सुखद</i><par n="गलत__adj"/></e>
 	<e lm="गोल-मटोल"><i>गोल-मटोल</i><par n="गलत__adj"/></e>
@@ -29864,7 +30897,7 @@
     <e lm="अकथ"><i>अकथ</i><par n="गलत__adj"/></e>
     <e lm="प्रेक्षणीय"><i>प्रेक्षणीय</i><par n="गलत__adj"/></e>
     <e lm="अपव्ययी"><i>अपव्ययी</i><par n="गलत__adj"/></e>
-    <e lm="नापाक"><i>नापाक</i><par n="गलत__adj"/></e>
+    <!-- <e lm="नापाक"><i>नापाक</i><par n="गल���__adj"/></e> -->
     <e lm="चालू"><i>चालू</i><par n="गलत__adj"/></e>
     <e lm="धीरा"><i>धीर</i><par n="स/ा__adj"/></e>
     <e lm="संयोजित"><i>संयोजित</i><par n="गलत__adj"/></e>
@@ -30318,6 +31351,7 @@
     <e lm="कर्षित"><i>कर्षित</i><par n="गलत__adj"/></e>
     <e lm="अविश्वसनीय"><i>अविश्वसनीय</i><par n="गलत__adj"/></e>
     <e lm="माध्यमिक"><i>माध्यमिक</i><par n="गलत__adj"/></e>
+    <e lm="सेकेंडरी"><i>सेकेंडरी</i><par n="गलत__adj"/></e>
     <e lm="कानूनी"><i>कानूनी</i><par n="गलत__adj"/></e>
     <e lm="असिस्टेंट"><i>असिस्टेंट</i><par n="गलत__adj"/></e>
     <e lm="घायल"><i>घायल</i><par n="गलत__adj"/></e>
@@ -30467,6 +31501,7 @@
     <e lm="अविभक्त"><i>अविभक्त</i><par n="गलत__adj"/></e>
     <e lm="हतोत्साह"><i>हतोत्साह</i><par n="गलत__adj"/></e>
     <e lm="मनचाहा"><i>मनचाह</i><par n="स/ा__adj"/></e>
+    <e lm="बर्फ़ीला"><i>बर्फ़ील</i><par n="स/ा__adj"/></e>
     <e lm="लाजबाब"><i>लाजबाब</i><par n="गलत__adj"/></e>
     <e lm="अननुकूल"><i>अननुकूल</i><par n="गलत__adj"/></e>
     <e lm="बौद्ध"><i>बौद्ध</i><par n="गलत__adj"/></e>
@@ -30610,7 +31645,7 @@
     <e lm="साध्य"><i>साध्य</i><par n="गलत__adj"/></e>
     <e lm="गुदगुदा"><i>गुदगुद</i><par n="स/ा__adj"/></e>
     <e lm="अप्रत्यक्ष"><i>अप्रत्यक्ष</i><par n="गलत__adj"/></e>
-    <e lm="अंधा"><i>अंध</i><par n="स/ा__adj"/></e>
+    <!-- <e lm="अंधा"><i>अंध</i><par n="स/��__adj"/></e> -->
     <e lm="अभिप्रेत"><i>अभिप्रेत</i><par n="गलत__adj"/></e>
     <e lm="बख्श"><i>बख्श</i><par n="गलत__adj"/></e>
     <e lm="जरूरी"><i>जरूरी</i><par n="गलत__adj"/></e>
@@ -30834,6 +31869,8 @@
     <e lm="प्रभावशील"><i>प्रभावशील</i><par n="गलत__adj"/></e>
     <e lm="मध्यम"><i>मध्यम</i><par n="गलत__adj"/></e>
     <e lm="मोटा"><i>मोट</i><par n="स/ा__adj"/></e>
+	<e lm="अपना"><i>अपन</i><par n="स/ा__adj"/></e>
+	<e lm="इसका"><i>इसक</i><par n="स/ा__adj"/></e>
     <e lm="अर्धकुशल"><i>अर्धकुशल</i><par n="गलत__adj"/></e>
     <e lm="अपार"><i>अपार</i><par n="गलत__adj"/></e>
     <e lm="दैवी"><i>दैवी</i><par n="गलत__adj"/></e>
@@ -31044,6 +32081,7 @@
     <e lm="फौजी"><i>फौजी</i><par n="गलत__adj"/></e>
     <e lm="फ़ौजी"><i>फ़ौजी</i><par n="गलत__adj"/></e>
     <e lm="अदना"><i>अदन</i><par n="स/ा__adj"/></e>
+    <e lm="उसका"><i>उसक</i><par n="स/ा__adj"/></e>
     <e lm="ग्यारह"><i>ग्यारह</i><par n="गलत__adj"/></e>
     <e lm="अपारदर्शक"><i>अपारदर्शक</i><par n="गलत__adj"/></e>
     <e lm="सडियल"><i>सडियल</i><par n="गलत__adj"/></e>
@@ -31309,6 +32347,8 @@
     <e lm="ईसाई"><i>ईसाई</i><par n="गलत__adj"/></e>
     <e lm="अवसरवादी"><i>अवसरवादी</i><par n="गलत__adj"/></e>
     <e lm="अटपटा"><i>अटपट</i><par n="स/ा__adj"/></e>
+    <e lm="बनना"><i>बनन</i><par n="स/ा__adj"/></e>
+    <e lm="जिसका"><i>जिसक</i><par n="स/ा__adj"/></e>
     <e lm="लहूलुहान"><i>लहूलुहान</i><par n="गलत__adj"/></e>
     <e lm="भ्रांत"><i>भ्रांत</i><par n="गलत__adj"/></e>
     <e lm="प्रणत"><i>प्रणत</i><par n="गलत__adj"/></e>
@@ -31356,6 +32396,7 @@
     <e lm="कायिक"><i>कायिक</i><par n="गलत__adj"/></e>
     <e lm="सांसर्गिक"><i>सांसर्गिक</i><par n="गलत__adj"/></e>
     <e lm="खुश"><i>खुश</i><par n="गलत__adj"/></e>
+    <e lm="ख़ुश"><i>ख़ुश</i><par n="गलत__adj"/></e>
     <e lm="अपराजेय"><i>अपराजेय</i><par n="गलत__adj"/></e>
     <e lm="जंगी"><i>जंगी</i><par n="गलत__adj"/></e>
     <e lm="चिर"><i>चिर</i><par n="गलत__adj"/></e>
@@ -31556,7 +32597,6 @@
     <e lm="दानशील"><i>दानशील</i><par n="गलत__adj"/></e>
     <e lm="चरबीदार"><i>चरबीदार</i><par n="गलत__adj"/></e>
     <e lm="अलिखित"><i>अलिखित</i><par n="गलत__adj"/></e>
-    <e lm="आठवाँ"><i>आठवाँ</i><par n="गलत__adj"/></e>
     <e lm="अनभ्यस्त"><i>अनभ्यस्त</i><par n="गलत__adj"/></e>
     <e lm="कामयाब"><i>कामयाब</i><par n="गलत__adj"/></e>
     <e lm="कडा"><i>कड</i><par n="स/ा__adj"/></e>
@@ -32107,7 +33147,7 @@
     <e lm="घनीभूत"><i>घनीभूत</i><par n="गलत__adj"/></e>
     <e lm="असल"><i>असल</i><par n="गलत__adj"/></e>
 	<e lm="वैश्विक"><i>वैश्विक</i><par n="गलत__adj"/></e>	
-	<e lm="लाइव"><i>लाइव</i><par n="गलत__adj"/></e>
+	<!-- <e lm="लाइव"><i>लाइव</i><par n="���लत__adj"/></e> -->
     <e lm="अलग"><i>अलग</i><par n="गलत__adj"/></e>
     <e lm="वास्त"><i>वास्त</i><par n="गलत__adj"/></e>
     <e lm="निरंकुश"><i>निरंकुश</i><par n="गलत__adj"/></e>
@@ -32116,7 +33156,90 @@
     <e lm="सुदूर"><i>सुदूर</i><par n="गलत__adj"/></e>
     <e lm="हताहत"><i>हताहत</i><par n="गलत__adj"/></e>
     <e lm="नॉर्थ"><i>नॉर्थ</i><par n="गलत__adj"/></e>
-       <!-- Adverbs -->
+    <e lm="सी"><i>सी</i><par n="गलत__adj"/></e>
+    <e lm="कमज़ोर"><i>कमज़ोर</i><par n="गलत__adj"/></e>
+    <e lm="शहरी"><i>शहरी</i><par n="गलत__adj"/></e>
+    <e lm="सापेक्षकीय"><i>सापेक्षकीय</i><par n="गलत__adj"/></e>
+    <e lm="रिलेटिविस्टिक"><i>रिलेटिविस्टिक</i><par n="गलत__adj"/></e>
+    <e lm="स्पेशल"><i>स्पेशल</i><par n="गलत__adj"/></e>
+    <e lm="गुरूत्वीय"><i>गुरूत्वीय</i><par n="गलत__adj"/></e>
+    <e lm="ग्रेविटेशनल"><i>ग्रेविटेशनल</i><par n="गलत__adj"/></e>
+    <e lm="साहित्यक"><i>साहित्यक</i><par n="गलत__adj"/></e>
+    <e lm="बढ़िया"><i>बढ़िया</i><par n="गलत__adj"/></e>
+    <e lm="काम्प्लेक्स"><i>काम्प्लेक्स</i><par n="गलत__adj"/></e>
+	<e lm="फारसी"><i>फारसी</i><par n="गलत__adj"/></e>
+    <e lm="फ़ारसी"><i>फ़ारसी</i><par n="गलत__adj"/></e>
+    <e lm="बर्तानवी"><i>बर्तानवी</i><par n="गलत__adj"/></e>
+    <e lm="इलेक्ट्रिक"><i>इलेक्ट्रिक</i><par n="गलत__adj"/></e>
+	<e lm="स्थानिक"><i>स्थानिक</i><par n="गलत__adj"/></e>
+	<e lm="ख़ास"><i>ख़ास</i><par n="गलत__adj"/></e>
+	<e lm="वकृत"><i>वकृत</i><par n="गलत__adj"/></e>
+	<e lm="फ़्रांसिसी"><i>फ़्रांसिसी</i><par n="गलत__adj"/></e>
+	<e lm="इनवेरिएन्ट"><i>इनवेरिएन्ट</i><par n="गलत__adj"/></e>
+	<e lm="जनतक"><i>जनतक</i><par n="गलत__adj"/></e>
+	<e lm="कोणीय"><i>कोणीय</i><par n="गलत__adj"/></e>
+	<e lm="एंगुलर"><i>एंगुलर</i><par n="गलत__adj"/></e>
+	<e lm="विजयी"><i>विजयी</i><par n="गलत__adj"/></e>
+	<e lm="सूफी"><i>सूफी</i><par n="गलत__adj"/></e>
+	<e lm="प्रभावशाली"><i>प्रभावशाली</i><par n="गलत__adj"/></e>
+	<e lm="न्यूटोनियन"><i>न्यूटोनियन</i><par n="गलत__adj"/></e>
+	<e lm="नेगिटिव"><i>नेगिटिव</i><par n="गलत__adj"/></e>
+	<e lm="मैनिफोल्ड"><i>मैनिफोल्ड</i><par n="गलत__adj"/></e>
+	<e lm="लीनियर"><i>लीनियर</i><par n="गलत__adj"/></e>
+	<e lm="स्टैटिस्टिकल"><i>स्टैटिस्टिकल</i><par n="गलत__adj"/></e>
+	<e lm="गेज"><i>गेज</i><par n="गलत__adj"/></e>
+	<e lm="समयोचित"><i>समयोचित</i><par n="गलत__adj"/></e>
+	<e lm="टाईमलाईक"><i>टाईमलाईक</i><par n="गलत__adj"/></e>
+	<e lm="ग्लोबल"><i>ग्लोबल</i><par n="गलत__adj"/></e>
+	<e lm="प्रयोगात्मक"><i>प्रयोगात्मक</i><par n="गलत__adj"/></e>
+	<e lm="काइनेटिक"><i>काइनेटिक</i><par n="गलत__adj"/></e>
+	<e lm="निरुपित"><i>निरुपित</i><par n="गलत__adj"/></e>
+	<e lm="ज़िम्मेवार"><i>ज़िम्मेवार</i><par n="गलत__adj"/></e>
+	<e lm="मार्क्सवादी"><i>मार्क्सवादी</i><par n="गलत__adj"/></e>
+	<e lm="स्पेसलाईक"><i>स्पेसलाईक</i><par n="गलत__adj"/></e>
+	<e lm="गैर-रिश्तेदार"><i>गैर-रिश्तेदार</i><par n="गलत__adj"/></e>
+	<e lm="सर्वोत्तम"><i>सर्वोत्तम</i><par n="गलत__adj"/></e>
+	<e lm="स्पेक्ट्रल"><i>स्पेक्ट्रल</i><par n="गलत__adj"/></e>
+	<e lm="ऊष्मप्रवैगिकी"><i>ऊष्मप्रवैगिकी</i><par n="गलत__adj"/></e>
+	<e lm="थर्मोडायनैमिक"><i>थर्मोडायनैमिक</i><par n="गलत__adj"/></e>
+	<e lm="यूनानी"><i>यूनानी</i><par n="गलत__adj"/></e>
+	<e lm="गर्दी"><i>गर्दी</i><par n="गलत__adj"/></e>
+	<e lm="विद्युतचुंबकीय"><i>विद्युतचुंबकीय</i><par n="गलत__adj"/></e>
+	<e lm="इलैट्रोमैग्नैटिक"><i>इलैट्रोमैग्नैटिक</i><par n="गलत__adj"/></e>
+	<e lm="स्टेशनरी"><i>स्टेशनरी</i><par n="गलत__adj"/></e>
+	<e lm="मुहैय्या"><i>मुहैय्या</i><par n="गलत__adj"/></e>
+	<e lm="पदार्थक"><i>पदार्थक</i><par n="गलत__adj"/></e>
+	<e lm="मुताबिक"><i>मुताबिक</i><par n="गलत__adj"/></e>
+	<e lm="लम्बी"><i>लम्बी</i><par n="गलत__adj"/></e>
+    <e lm="अलग - अलग"><i>अलग<b/>-<b/>अलग</i><par n="गलत__adj"/></e>
+       <!-- Adverbs -->  
+
+	<e lm="सबसे"><i>सबसे</i><par n="गलत__adv"/></e>
+	<e lm="समुद्र तक"><i>समुद्र<b/>तक</i><par n="गलत__adv"/></e>
+	<e lm="मृत्यु तक"><i>मृत्यु<b/>तक</i><par n="गलत__adv"/></e>
+	<e lm="फिर"><i>फिर</i><par n="गलत__adv"/></e>
+	<e lm="आड़ में"><i>आड़<b/>में</i><par n="गलत__adv"/></e>
+	<e lm="अचानक से"><i>अचानक<b/>से</i><par n="गलत__adv"/></e>
+	<e lm="सच में"><i>सच<b/>में</i><par n="गलत__adv"/></e>
+	<e lm="अंत तक"><i>अंत<b/>तक</i><par n="गलत__adv"/></e>
+	<e lm="आखिर तक"><i>आखिर<b/>तक</i><par n="गलत__adv"/></e>
+	<e lm="आराम से"><i>आराम<b/>से</i><par n="गलत__adv"/></e>
+	<e lm="के भीतर"><i>के<b/>भीतर</i><par n="गलत__adv"/></e>
+	<e lm="जल्द ही"><i>जल्द<b/>ही</i><par n="गलत__adv"/></e>
+	<e lm="कितनी बार"><i>कितनी बार</i><par n="गलत__adv"/></e>
+	<e lm="कब तक"><i>कब<b/>तक</i><par n="गलत__adv"/></e>
+	<e lm="अभी भी"><i>अभी भी</i><par n="गलत__adv"/></e>
+	<e lm="एक साथ"><i>एक<b/>साथ</i><par n="गलत__adv"/></e>
+	<e lm="ऐसा"><i>ऐसा</i><par n="गलत__adv"/></e>
+	<e lm="चारों ओर"><i>चारों ओर</i><par n="गलत__adv"/></e>
+	<e lm="हो"><i>हो</i><par n="गलत__adv"/></e>
+	<e lm="ध्यान"><i>ध्यान</i><par n="गलत__adv"/></e>
+	<e lm="अभी ही"><i>अभी ही</i><par n="गलत__adv"/></e>
+	<e lm="कभी भी"><i>कभी भी</i><par n="गलत__adv"/></e>
+	<e lm="होता है"><i>होता है</i><par n="गलत__adv"/></e>
+	<e lm="होकर"><i>होकर</i><par n="गलत__adv"/></e>
+	<e lm="दोनों ही"><i>दोनों ही</i><par n="गलत__adv"/></e>
+	<e lm="उसके बाद"><i>उसके<b/>बाद</i><par n="गलत__adv"/></e>
     <e lm="पश्चात्"><i>पश्चात्</i><par n="गलत__adv"/></e>
     <e lm="निस्संदेह"><i>निस्संदेह</i><par n="गलत__adv"/></e>
     <e lm="सामने"><i>सामने</i><par n="गलत__adv"/></e>
@@ -32133,6 +33256,7 @@
 	<e lm="यहाँ तक"><i>यहाँ<b/>तक</i><par n="गलत__adv"/></e>
 	<e lm="प्रतिवर्ष"><i>प्रतिवर्ष</i><par n="गलत__adv"/></e>
 	<e lm="खासकर"><i>खासकर</i><par n="गलत__adv"/></e>
+	<e lm="ख़ासकर"><i>ख़ासकर</i><par n="गलत__adv"/></e>
 	<e lm="बदौलत"><i>बदौलत</i><par n="गलत__adv"/></e>
 	<e lm="खासतौर"><i>खासतौर</i><par n="गलत__adv"/></e>
     	<e lm="ज़रूर"><i>ज़रूर</i><par n="गलत__adv"/></e>
@@ -32146,8 +33270,11 @@
 	<e lm="बिलकुल"><i>बिलकुल</i><par n="गलत__adv"/></e> 
 	<e lm="ज़्यादा"><i>ज़्यादा</i><par n="गलत__adv"/></e>
 	<e lm="उपर"><i>उपर</i><par n="गलत__adv"/></e>  
+	<e lm="ऊपर"><i>ऊपर</i><par n="गलत__adv"/></e>  
 	<e lm="अपेक्षाकृत"><i>अपेक्षाकृत</i><par n="गलत__adv"/></e>
 	<e lm="आस-पास"><i>आस-पास</i><par n="गलत__adv"/></e>    
+	<e lm="आस - पास"><i>आस<b/>-<b/>पास</i><par n="गलत__adv"/></e>    
+	<e lm="आस पास"><i>आस<b/>पास</i><par n="गलत__adv"/></e>    
 	<e lm="आसपास"><i>आसपास</i><par n="गलत__adv"/></e>  
 	<e lm="नियमित रूप से"><i>नियमित<b/>रूप<b/>से</i><par n="गलत__adv"/></e>
 	<e lm="दरअसल"><i>दरअसल</i><par n="गलत__adv"/></e>  
@@ -32182,8 +33309,11 @@
     <e lm="जहाँ"><i>जहाँ</i><par n="rel__adv"/></e>
     <e lm="जहां"><i>जहां</i><par n="rel__adv"/></e>
     <e lm="यहां"><i>यहां</i><par n="गलत__adv"/></e>
+    <e lm="यहां से"><i>यहां<b/>से</i><par n="गलत__adv"/></e>
     <e lm="यहीं"><i>यहीं</i><par n="गलत__adv"/></e>
+    <e lm="यहीं से"><i>यहीं<b/>से</i><par n="गलत__adv"/></e>
     <e lm="यहाँ"><i>यहाँ</i><par n="गलत__adv"/></e>
+    <e lm="यहाँ से"><i>यहाँ<b/>से</i><par n="गलत__adv"/></e>
     <e lm="वहाँ"><i>वहाँ</i><par n="गलत__adv"/></e>
     <e lm="वहां"><i>वहां</i><par n="गलत__adv"/></e>
     <e lm="वहीं"><i>वहीं</i><par n="गलत__adv"/></e>
@@ -32197,10 +33327,10 @@
     <e lm="कम से कम"><i>कम<b/>से<b/>कम</i><par n="गलत__adv"/></e>
 	<e lm="असल"><i>असल</i><par n="गलत__adv"/></e>
 	<e lm="अंदर"><i>अंदर</i><par n="गलत__adv"/></e>
-     	<e lm="देर"><i>देर</i><par n="गलत__adv"/></e>	
-     	<e lm="बीच"><i>बीच</i><par n="गलत__adv"/></e>	
-     	<e lm="तेज़ी"><i>तेज़ी</i><par n="गलत__adv"/></e>
-     	<e lm="झट"><i>झट</i><par n="गलत__adv"/></e>
+	<e lm="देर"><i>देर</i><par n="गलत__adv"/></e>	
+	<e lm="बीच"><i>बीच</i><par n="गलत__adv"/></e>	
+	<e lm="तेज़ी"><i>तेज़ी</i><par n="गलत__adv"/></e>
+	<e lm="झट"><i>झट</i><par n="गलत__adv"/></e>
 	<e lm="बिटर"><i>बिटर</i><par n="गलत__adv"/></e>
 	<e lm="बाहर"><i>बाहर</i><par n="गलत__adv"/></e>
     <e lm="अंतर्गत"><i>अंतर्गत</i><par n="गलत__adv"/></e>
@@ -32248,6 +33378,7 @@
     <e lm="अकेला"><i>अकेला</i><par n="गलत__adv"/></e>
     <e lm="भी"><i>भी</i><par n="गलत__adv"/></e>
     <e lm="विकल्पत"><i>विकल्पत</i><par n="गलत__adv"/></e>
+    <e lm="हमेशा"><i>हमेशा</i><par n="दग/ा__n_m"/></e>
     <e lm="हमेशा"><i>हमेशा</i><par n="गलत__adv"/></e>
     <e lm="गलत"><i>गलत</i><par n="गलत__adv"/></e>
     <e lm="जल्दी"><i>जल्दी</i><par n="गलत__adv"/></e>
@@ -32348,7 +33479,7 @@
     <e lm="न"><i>न</i><par n="गलत__adv"/></e>
     <e lm="फलस्वरूप"><i>फलस्वरूप</i><par n="गलत__adv"/></e>
     <e lm="तथापि"><i>तथापि</i><par n="गलत__adv"/></e>
-    <e lm="नया"><i>नया</i><par n="गलत__adv"/></e>
+    <!-- <e lm="नया"><i>नया</i><par n="गलत__adv"/></e> -->
     <e lm="लगभग"><i>लगभग</i><par n="गलत__adv"/></e>
     <e lm="निश्चिंततापूर्वक"><i>निश्चिंततापूर्वक</i><par n="गलत__adv"/></e>
     <e lm="सामान्यत"><i>सामान्यत</i><par n="गलत__adv"/></e>
@@ -32432,6 +33563,7 @@
     <e lm="पुनः"><i>पुनः</i><par n="गलत__adv"/></e>
     <e lm="पुन"><i>पुन</i><par n="गलत__adv"/></e>
     <e lm="फिर से"><i>फिर<b/>से</i><par n="गलत__adv"/></e>
+    <e lm="पीछे से"><i>पीछे<b/>से</i><par n="गलत__adv"/></e>
     <e lm="वामावर्त्ती"><i>वामावर्त्ती</i><par n="गलत__adv"/></e>
     <e lm="कृतज्ञतापूर्वक"><i>कृतज्ञतापूर्वक</i><par n="गलत__adv"/></e>
     <e lm="तिरछा"><i>तिरछा</i><par n="गलत__adv"/></e>
@@ -32472,6 +33604,7 @@
     <e lm="साथ-ही-साथ"><i>साथ-ही-साथ</i><par n="गलत__adv"/></e>
     <e lm="कामुकतापूर्वक"><i>कामुकतापूर्वक</i><par n="गलत__adv"/></e>
     <e lm="केवल"><i>केवल</i><par n="गलत__adv"/></e>
+    <e lm="बस"><i>बस</i><par n="गलत__adv"/></e>
     <e lm="आशापूर्वक"><i>आशापूर्वक</i><par n="गलत__adv"/></e>
     <e lm="स्पष्ट"><i>स्पष्ट</i><par n="गलत__adv"/></e>
     <e lm="आशु"><i>आशु</i><par n="गलत__adv"/></e>
@@ -32580,9 +33713,101 @@
     <e lm="जानते-बूझते"><i>जानते-बूझते</i><par n="गलत__adv"/></e>
     <e lm="वाकई"><i>वाकई</i><par n="गलत__adv"/></e>
     <e lm="पास"><i>पास</i><par n="गलत__adv"/></e>
+    <e lm="तेजी"><i>तेजी</i><par n="गलत__adv"/></e>
+    <e lm="ज़्यादातर"><i>ज़्यादातर</i><par n="गलत__adv"/></e>
+    <e lm="जैसा"><i>जैसा</i><par n="गलत__adv"/></e>
+    <e lm="जैसी"><i>जैसी</i><par n="गलत__adv"/></e>
+    <e lm="जैसे"><i>जैसे</i><par n="गलत__adv"/></e>
+	<e lm="टण"><i>टण</i><par n="गलत__adv"/></e>
+	<e lm="ढम"><i>ढम</i><par n="गलत__adv"/></e>
+	<e lm="चूप"><i>चूप</i><par n="गलत__adv"/></e>
+	<e lm="छन"><i>छन</i><par n="गलत__adv"/></e>
+	<e lm="झनकार"><i>झनकार</i><par n="गलत__adv"/></e>
+	<e lm="टूण"><i>टूण</i><par n="गलत__adv"/></e>
+	<e lm="शू"><i>शू</i><par n="गलत__adv"/></e>
+    <e lm="की तरफ"><i>की<b/>तरफ</i><par n="गलत__adv"/></e>
+	<e lm="की तरह"><i>की<b/>तरह</i><par n="गलत__adv"/></e>
+	<e lm="की ओर से"><i>की<b/>ओर<b/>से</i><par n="गलत__adv"/></e>
+	<e lm="इस तरह"><i>इस<b/>तरह</i><par n="गलत__adv"/></e>
+	<e lm="इसी तरह"><i>इसी<b/>तरह</i><par n="गलत__adv"/></e>
+	<e lm="की तरफ से"><i>की<b/>तरफ<b/>से</i><par n="गलत__adv"/></e>
+
+	<!--Updated Determiners-->
+	<e lm="इतना"><i>इतना</i><par n="कोई__det"/></e>
+	<e lm="कम"><i>कम</i><par n="कोई__det"/></e>
+	<e lm="जिसका"><i>जिसका</i><par n="कोई__det"/></e>
+	<e lm="हर"><i>हर</i><par n="कोई__det"/></e>
+	<e lm="उसका"><i>उसका</i><par n="कोई__det"/></e>
+	<e lm="अधिक"><i>अधिक</i><par n="कोई__det"/></e>
+	<e lm="यह"><i>यह</i><par n="कोई__det"/></e>
+	<e lm="ऐसा"><i>ऐसा</i><par n="कोई__det"/></e>
+	<e lm="जो"><i>जो</i><par n="कोई__det"/></e>
+	<e lm="कितना"><i>कितना</i><par n="कोई__det"/></e>
+	<e lm="कुछ"><i>कुछ</i><par n="कोई__det"/></e>  
+	<e lm="कुछ भी"><i>कुछ<b/>भी</i><par n="कोई__det"/></e>
+	<e lm="हर कोई"><i>हर<b/>कोई</i><par n="कोई__det"/></e>  
+	<e lm="और एक"><i>और<b/>एक</i><par n="दूसरी__det"/></e> 
+	<e lm="और"><i>और</i><par n="दूसरी__det"/></e> 
+	<e lm="कोई"><i>कोई</i><par n="कोई__det"/></e>  
+	<e lm="व्यक्ति"><i>व्यक्ति</i><par n="कोई__det"/></e>    
+	<e lm="दोनों"><i>दोनों</i><par n="दोनों__det"/></e>  
+	<e lm="हर एक"><i>हर<b/>एक</i><par n="कोई__det"/></e>  
+	<e lm="जो सब"><i>जो सब</i><par n="कोई__det"/></e>  
+	<e lm="एक"><i>एक</i><par n="कई__det"/></e>  
+	<e lm="अगला"><i>अगला</i><par n="दूसरी__det"/></e> 
+
+	<!--New words-->    
+	<e lm="वन्यजीव"><i>वन्यजीव</i><par n="मौलाना__n_m"/></e>
+	<e lm="नागार्जुन"><i>नागार्जुन</i><par n="जेम्स__np"/></e>
+	<e lm="ज़रा"><i>ज़रा</i><par n="छू__vblex_tv"/></e>
+	<e lm="जरा"><i>जरा</i><par n="छू__vblex_tv"/></e>
+	<e lm="अनुसूचित"><i>अनुसूचित</i><par n="मौलाना__n_m"/></e>
+	<e lm="पूंजी"><i>पूंजी</i><par n="मौलाना__n_m"/></e>
+	<e lm="मीरा"><i>मीरा</i><par n="मैरी__np"/></e>
+	<e lm="रूपए"><i>रूपए</i><par n="मौलाना__n_m"/></e>
+	<e lm="शहजादे"><i>शहजादे</i><par n="मौलाना__n_m"/></e>
+	<e lm="एकांकी"><i>एकांकी</i><par n="ऐ__n_f"/></e>
+	<e lm="प्राकृत"><i>प्राकृत</i><par n="मौलाना__n_m"/></e>
+	<e lm="चन्द्रगुप्त"><i>चन्द्रगुप्त</i><par n="जेम्स__np"/></e>
+	<e lm="अभिगम्य"><i>अभिगम्य</i><par n="गलत__adj"/></e>
+	<e lm="सुलभ"><i>सुलभ</i><par n="गलत__adj"/></e>
+	<e lm="सरपंच"><i>सरपंच</i><par n="मौलाना__n_m"/></e>
+	<e lm="ज़मीन"><i>ज़मीन</i><par n="ऐ__n_f"/></e>
+	<e lm="लॉर्ड"><i>लॉर्ड</i><par n="मौलाना__n_m"/></e>
+	<e lm="कडवक"><i>कडवक</i><par n="गलत__adj"/></e>
+	<e lm="प्रक्रिया"><i>प्रक्रिया</i><par n="मौलाना__n_m"/></e>
+	<e lm="रुपए"><i>रुपए</i><par n="मौलाना__n_m"/></e>
+	<e lm="हिरामन"><i>हिरामन</i><par n="मौलाना__n_m"/></e>
+	<e lm="छायावाद"><i>छायावाद</i><par n="मौलाना__n_m"/></e>
+	<e lm="लतिका"><i>लतिका</i><par n="मौलाना__n_m"/></e>
+	<e lm="रिज़र्व"><i>रिज़र्व</i><par n="गलत__adj"/></e>
+	<e lm="सहायिका"><i>सहायिका</i><par n="ऐ__n_f"/></e>
+	<e lm="गुजिया"><i>गुजिया</i><par n="ऐ__n_f"/></e>
+	<e lm="चरकानुसार"><i>चरकानुसार</i><par n="मैरी__np"/></e>
+	<e lm="कौनसा"><i>कौनसा</i><par n="गलत__adj"/></e>
+	<e lm="बाज़ार"><i>बाज़ार</i><par n="मौलाना__n_m"/></e>
+	<e lm="ह्यूबर्ट"><i>ह्यूबर्ट</i><par n="मौलाना__n_m"/></e>
+	<e lm="कृत"><i>कृत</i><par n="गलत__adj"/></e>
+	<e lm="कृत"><i>कृत</i><par n="मौलाना__n_m"/></e> <!--Both noun & adj-->
+	<e lm="भारतेन्दु"><i>भारतेन्दु</i><par n="मौलाना__n_m"/></e>
+	<e lm="ब्रितानियों"><i>ब्रितानियों</i><par n="मौलाना__n_m"/></e>
+	<e lm="ण"><i>ण</i><par n="गलत__adj"/></e>
+	<e lm="माघ"><i>माघ</i><par n="मौलाना__n_m"/></e>
+	<e lm="तीनों"><i>तीनों</i><par n="गलत__adj"/></e>
+	<e lm="हीराबाई"><i>हीराबाई</i><par n="मौलाना__n_m"/></e>
+	<e lm="ब्रजभाषा"><i>ब्रजभाषा</i><par n="मौलाना__n_m"/></e>
+	<e lm="कौनसी"><i>कौनसी</i><par n="किसी_को__prn"/></e>
+	<e lm="काव्यशास्त्र"><i>काव्यशास्त्र</i><par n="मौलाना__n_m"/></e>
+	<e lm="सुभद्रा"><i>सुभद्रा</i><par n="गलत__adj"/></e>
+	<e lm="भक्तिकालीन"><i>भक्तिकालीन</i><par n="मौलाना__n_m"/></e>
+	<e lm="पालन"><i>पालन</i><par n="मौलाना__n_m"/></e>
+	<e lm="जाएंगे"><i>जाएंगे</i><par n="छू__vblex_tv"/></e>
+	<e lm="णं"><i>णं</i><par n="किसी_को__prn"/></e>
+	<e lm="वन्यजीव"><i>वन्यजीव</i><par n="मौलाना__n_m"/></e>
+
     <!-- Punctuation -->
     <e lm=","><i>,</i><par n="coma"/></e>
-       
+
    </section>
    <section id="final" type="inconditional">
     <e><par n="coma"/></e>
@@ -32593,4 +33818,5 @@
     <e><par n="pardret"/></e>
     <e><par n="quotes"/></e>
    </section>
+
 </dictionary>  
diff --git a/apertium-hin.hin.rlx b/apertium-hin.hin.rlx
index f4a9917..20a979f 100644
--- a/apertium-hin.hin.rlx
+++ b/apertium-hin.hin.rlx
@@ -1,14 +1,20 @@
-DELIMITERS = "<.>" "<!>" "<?>" "<...>" "<¶>" ;
-SOFT-DELIMITERS = "<,>" ;
+DELIMITERS = "<|>" "<॥>" "<.>" "<!>" "<?>" "<...>" "<¶>" "<:>";
+SOFT-DELIMITERS = "<,>" "<;>";
+SUBREADINGS = LTR ; # Alternate, left-to-right (main reading on the left)
 
 SETS
 
+LIST >>> = >>> ;
+LIST <<< = <<< ;
+SET BOS = >>> OR (sent) ;
+SET EOS = <<< OR (sent) ;
+
 LIST N = n ; 
+LIST Nom = nom ; 
 LIST Obl = obl ; 
 LIST Post = post ; 
 LIST Adj = adj;
 LIST Adv = adv;
-LIST Verb = vblex;
 LIST Stem = stem ; 
 LIST Vaux = vaux ; 
 LIST Vblex = vblex ; 
@@ -17,19 +23,71 @@ LIST Det = det ;
 LIST Conj = cnjcoo;
 LIST ConjAdv = cnjadv;
 LIST Prn = prn;
+LIST Masc = m mf ; 
+LIST Fem = f mf ; 
+LIST Sg = sg sp ; 
+LIST Pl = pl sp ; 
+LIST MascAdjective = (adj m);
+LIST FemAdjective = (adj f);
+LIST MascNoun = (n m);
+LIST FemNoun = (n f);
+LIST NominativeNoun = (n nom);
+LIST ObliqueNoun = (n obl);
+LIST Impf = impf ; 
+LIST Perf = perf ; 
+LIST Pres = pres ; 
+
+LIST P1 = p1 ;
+LIST P2 = p2 ;
+LIST P3 = p3 ;
+LIST Pers = p1 p2 p3 ;
+
+SET NumAgree = Sg OR Pl ;
+
+SET MascSg = (m sg) OR (m sp) OR (mf sg) OR (mf sp) ;
+SET MascPl = (m pl) OR (m sp) OR (mf pl) OR (mf sp) ;
+SET FemSg = (f sg) OR (f sp) OR (mf sg) OR (mf sp) ;
+SET FemPl = (f pl) OR (f sp) OR (mf pl) OR (mf sp) ;
+
+SET GenNumAgree = MascSg OR MascPl OR FemSg OR FemPl ;
+
+SET MascSgNom = (m sg nom) OR (m sp nom) OR (mf sg nom) OR (mf sp nom) ;
+SET MascPlNom = (m pl nom) OR (m sp nom) OR (mf pl nom) OR (mf sp nom) ;
+SET FemSgNom = (f sg nom) OR (f sp nom) OR (mf sg nom) OR (mf sp nom) ;
+SET FemPlNom = (f pl nom) OR (f sp nom) OR (mf pl nom) OR (mf sp nom) ;
+SET MascSgObl = (m sg obl) OR (m sp obl) OR (mf sg obl) OR (mf sp obl) ;
+SET MascPlObl = (m pl obl) OR (m sp obl) OR (mf pl obl) OR (mf sp obl) ;
+SET FemSgObl = (f sg obl) OR (f sp obl) OR (mf sg obl) OR (mf sp obl) ;
+SET FemPlObl = (f pl obl) OR (f sp obl) OR (mf pl obl) OR (mf sp obl) ;
+
+SET GenNumCaseAgree = MascSgNom OR MascPlNom OR FemSgNom OR FemPlNom OR MascSgObl OR MascPlObl OR FemSgObl OR FemPlObl ;
+
 SECTION
 
-SELECT Prn IF
-	(0 Prn or Det)
+SELECT N IF
+	(0 Adj)
+	(0 N)
+	(1 Vblex);
+	
+REMOVE Prn IF
+	(0 Det)
+	(1 N);
+
+REMOVE Det IF
+	(0 Prn);
 
-SELECT Post IF
+REMOVE Conj IF
 	(-1 N)
-	(0 Post or Conj)
+	(0 Post);
+
+#Select adverb from an adverb/adjective choice if the following word is an adjective
+
 
 SELECT Adv IF
 	(0 Adj)
 	(0 Adv)
 	(1 Adj);
+
 SELECT Adj IF
 	(0 Adj)
 	(0 Adv)
@@ -42,7 +100,7 @@ SELECT Adv IF
 
 SELECT ConjAdv IF
 	(0 ConjAdv)
-	(0 Adv)
+	(0 Adv);
 
 
 
@@ -58,6 +116,9 @@ SELECT Adj IF
 	(1 N);
 
 
+
+#Select adjective out of adjective/adverb/noun choice if followed by a noun
+
 SELECT Adj IF
 	(0 Adj)
 	(0 Adv)
@@ -67,30 +128,156 @@ SELECT Adj IF
 SELECT Adv IF
 	(0 Adj)
 	(0 Adv)
-	(1 Verb);
+	(1 Vblex);
 
 
+SELECT Impf + &&GenNumAgree IF
+	(0 Impf + &&GenNumAgree)
+	(1 Vbser + Pres + &&GenNumAgree);
 
 SELECT Stem IF
 	(0 Stem)
 	(1 Vaux)
-	(2 Vbser) ;
+	(2 Vbser);
 
 SELECT Vaux IF
 	(-1 Stem)
-	(0 Vaux OR Verb)
+	(0 Vaux OR Vblex)
 	(1 Vbser);
 
 SELECT Vaux IF
-	(-1 Verb)
-	(0 Vaux OR Verb)
+	(-1 Vblex)
+	(0 Vaux OR Vblex);
 
 SELECT Vbser IF
-	(-1 Verb)
-	(0 Verb OR Vbser)
+	(-1 Vblex)
+	(0 Vblex OR Vbser);
 
 SELECT Det IF
 	(0 Adv OR N OR Det)
-	(1 Post)
-SELECT Obl IF (1C Post) ;
+	(1 Post);
+
+
+#Select oblique case if followed by a postposition
+
+select ObliqueNoun if 
+	(1 Post);
+
+#Select oblique case if followed by conjunction, another noun and a postposition”
+
+select ObliqueNoun if 
+	(1 Conj)
+ 	(2 N) 
+	(3 Post);
+
+
+#Select fem adjective if followed by fem noun
+
+select FemAdjective	 if
+	(1C FemNoun);
+
+#Select masc adjective if followed by masc noun
+
+select MascAdjective  if
+	(1C MascNoun);
+
+
+#Select nominative case for a noun if followed by an adjective and a “to be” verb
+
+
+select NominativeNoun if
+	(1 Adj) 
+	(2 Vbser);
+
+
+#Select fem adjective if the noun preceding it is fem
+
+
+select FemAdjective if
+	(-1C FemNoun);
+
+
+#Select masc adjective if the noun preceding it is masc
+
+select MascAdjective if 
+	(-1C MascNoun);
+
+
+# gender, number and case agreement between nouns and adjectives
+SELECT &&GenNumCaseAgree IF (0C Adj) (1C N) (0 Adj + &&GenNumCaseAgree) (1 N + &&GenNumCaseAgree) ; 
+SELECT &&GenNumCaseAgree IF (-1C Adj) (0C N) (-1 Adj + &&GenNumCaseAgree) (0 N + &&GenNumCaseAgree) ; 
+
+
+#Remove oblique case if followed by a “to be” verb
+
+remove Obl if
+	(1 Vbser);
+
+
+#Select plural adjective if it is describing two nouns joined by a conjunction
+
+select (adj pl) if 
+	(-3 N)
+	(-2 Conj)
+	(-1 N)
+	(1 Vbser);
+
+
+#Select singular adjective if the preceding noun is singular
+
+select (Adj sg) if
+	(-1 (N sg));
+
+# The next 2 rules decide the plurality of verbs/auxillary verbs by checking whether the "to be" form or है is plural or not
+
+select Vaux + &&NumAgree if
+	(1 Vbser + &&NumAgree);
+
+
+select Vblex + &&NumAgree if
+	(1 Vbser + &&NumAgree);
+
+
+
+#The next rule decide plurality of adjectives by checking whether the "to be" form or है is plural or not
+
+select Adj + &&NumAgree if
+	(0C Adj)
+	(1 Vbser + &&NumAgree);
+
+
+#
+
+remove Vblex + Pers if (0 Perf + &&GenNumAgree) (1 Vbser + &&GenNumAgree) ;	# अनीता और रवि कल आए थे
+
+select Nom if (-1 BOS) (0C N OR Adj) ;
+
+select P3 if (-1 NominativeNoun + &&GenNumAgree) (0 Vbser + &&GenNumAgree) ;
+select P3 if (-1 NominativeNoun + MascSg) (0 Vbser + MascSg) ;
+select P3 if (-1 NominativeNoun + MascPl) (0 Vbser + MascPl) ;
+select P3 if (-1 NominativeNoun + FemSg) (0 Vbser + FemSg) ;
+select P3 if (-1 NominativeNoun + FemPl) (0 Vbser + FemPl) ;
+select P3 if (-1 NominativeNoun + &&GenNumAgree) (0 Vblex + &&GenNumAgree) ;	# हाथी खोजेंगे
+select P3 if (-1 NominativeNoun + MascSg) (0 Vblex + MascSg) ;
+select P3 if (-1 NominativeNoun + MascPl) (0 Vblex + MascPl) ;
+select P3 if (-1 NominativeNoun + FemSg) (0 Vblex + FemSg) ;
+select P3 if (-1 NominativeNoun + FemPl) (0 Vblex + FemPl) ;
+select P3 if (-2 NominativeNoun + &&GenNumAgree) (-1 Adv) (0 Vbser + &&GenNumAgree) ;
+select P3 if (-2 NominativeNoun + MascSg) (-1 Adv) (0 Vbser + MascSg) ;
+select P3 if (-2 NominativeNoun + MascPl) (-1 Adv) (0 Vbser + MascPl) ;
+select P3 if (-2 NominativeNoun + FemSg) (-1 Adv) (0 Vbser + FemSg) ;
+select P3 if (-2 NominativeNoun + FemPl) (-1 Adv) (0 Vbser + FemPl) ;
+select P3 if (-2 NominativeNoun + &&GenNumAgree) (-1 Adv) (0 Vblex + &&GenNumAgree) ;
+select P3 if (-2 NominativeNoun + MascSg) (-1 Adv) (0 Vblex + MascSg) ;
+select P3 if (-2 NominativeNoun + MascPl) (-1 Adv) (0 Vblex + MascPl) ;
+select P3 if (-2 NominativeNoun + FemSg) (-1 Adv) (0 Vblex + FemSg) ;
+select P3 if (-2 NominativeNoun + FemPl) (-1 Adv) (0 Vblex + FemPl) ;
+
+select &&GenNumAgree if (0 NominativeNoun + &&GenNumAgree) (1 Vbser + P3 + &&GenNumAgree) ;
+select &&GenNumAgree if (0 NominativeNoun + &&GenNumAgree) (1 Vblex + P3 + &&GenNumAgree) ;	# हाथी खोजेंगे
+select &&GenNumAgree if (0 NominativeNoun + &&GenNumAgree) (1 Adv) (2 Vbser + P3 + &&GenNumAgree) ;
+select &&GenNumAgree if (0 NominativeNoun + &&GenNumAgree) (1 Adv) (2 Vblex + P3 + &&GenNumAgree) ;
+
   ## 
+
+
diff --git a/apertium-hin.pc.in b/apertium-hin.pc.in
index 00b78b7..b41cfc6 100644
--- a/apertium-hin.pc.in
+++ b/apertium-hin.pc.in
@@ -1,7 +1,5 @@
 prefix=@prefix@
 exec_prefix=@exec_prefix@
-libdir=@libdir@
-dir=@libdir@/apertium/apertium-hin
 srcdir=@datarootdir@/apertium/apertium-hin
 
 Name: apertium-hin
diff --git a/autogen.sh b/autogen.sh
deleted file mode 100755
index f9f430a..0000000
--- a/autogen.sh
+++ /dev/null
@@ -1,35 +0,0 @@
-#! /bin/sh
-
-# If the user specified a --prefix, take that, otherwise /usr/local/
-# is the default.
-PREFIX=/usr/local
-prefixnext=false
-for i in "$@"; do
-    case $i in
-        --prefix=*)		# equals separated:
-	    PREFIX="${i#*=}"
-	    ;;
-        --prefix)		# space separated:
-	    prefixnext=true
-	    ;;
-        *)
-	    $prefixnext && PREFIX="$i" && prefixnext=false
-	    ;;
-    esac
-done
-
-# Set the paths needed by libtool/pkg-config/aclocal etc. By inferring
-# them based on --prefix , users don't have to edit ~/.bashrc. We only
-# append, so if a user has some other preference, that will override.
-PATH="${PATH}:/usr/local/bin"
-export PATH
-LD_LIBRARY_PATH="${LD_LIBRARY_PATH}:${PREFIX}/lib"
-export LD_LIBRARY_PATH
-PKG_CONFIG_PATH="${PKG_CONFIG_PATH}:${PREFIX}/share/pkgconfig:${PREFIX}/lib/pkgconfig"
-export PKG_CONFIG_PATH
-ACLOCAL_PATH="${ACLOCAL_PATH}:${PREFIX}/share/aclocal"
-export ACLOCAL_PATH
-
-
-# Pass on all args to configure
-autoreconf -fi && ./configure "$@"
diff --git a/configure b/configure
new file mode 100755
index 0000000..a63afb3
--- /dev/null
+++ b/configure
@@ -0,0 +1,4445 @@
+#! /bin/sh
+# Guess values for system-dependent variables and create Makefiles.
+# Generated by GNU Autoconf 2.71 for Apertium Hindi 0.1.0.
+#
+# Report bugs to <francis.tyers@gmail.com>.
+#
+#
+# Copyright (C) 1992-1996, 1998-2017, 2020-2021 Free Software Foundation,
+# Inc.
+#
+#
+# This configure script is free software; the Free Software Foundation
+# gives unlimited permission to copy, distribute and modify it.
+## -------------------- ##
+## M4sh Initialization. ##
+## -------------------- ##
+
+# Be more Bourne compatible
+DUALCASE=1; export DUALCASE # for MKS sh
+as_nop=:
+if test ${ZSH_VERSION+y} && (emulate sh) >/dev/null 2>&1
+then :
+  emulate sh
+  NULLCMD=:
+  # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which
+  # is contrary to our usage.  Disable this feature.
+  alias -g '${1+"$@"}'='"$@"'
+  setopt NO_GLOB_SUBST
+else $as_nop
+  case `(set -o) 2>/dev/null` in #(
+  *posix*) :
+    set -o posix ;; #(
+  *) :
+     ;;
+esac
+fi
+
+
+
+# Reset variables that may have inherited troublesome values from
+# the environment.
+
+# IFS needs to be set, to space, tab, and newline, in precisely that order.
+# (If _AS_PATH_WALK were called with IFS unset, it would have the
+# side effect of setting IFS to empty, thus disabling word splitting.)
+# Quoting is to prevent editors from complaining about space-tab.
+as_nl='
+'
+export as_nl
+IFS=" ""	$as_nl"
+
+PS1='$ '
+PS2='> '
+PS4='+ '
+
+# Ensure predictable behavior from utilities with locale-dependent output.
+LC_ALL=C
+export LC_ALL
+LANGUAGE=C
+export LANGUAGE
+
+# We cannot yet rely on "unset" to work, but we need these variables
+# to be unset--not just set to an empty or harmless value--now, to
+# avoid bugs in old shells (e.g. pre-3.0 UWIN ksh).  This construct
+# also avoids known problems related to "unset" and subshell syntax
+# in other old shells (e.g. bash 2.01 and pdksh 5.2.14).
+for as_var in BASH_ENV ENV MAIL MAILPATH CDPATH
+do eval test \${$as_var+y} \
+  && ( (unset $as_var) || exit 1) >/dev/null 2>&1 && unset $as_var || :
+done
+
+# Ensure that fds 0, 1, and 2 are open.
+if (exec 3>&0) 2>/dev/null; then :; else exec 0</dev/null; fi
+if (exec 3>&1) 2>/dev/null; then :; else exec 1>/dev/null; fi
+if (exec 3>&2)            ; then :; else exec 2>/dev/null; fi
+
+# The user is always right.
+if ${PATH_SEPARATOR+false} :; then
+  PATH_SEPARATOR=:
+  (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 && {
+    (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 ||
+      PATH_SEPARATOR=';'
+  }
+fi
+
+
+# Find who we are.  Look in the path if we contain no directory separator.
+as_myself=
+case $0 in #((
+  *[\\/]* ) as_myself=$0 ;;
+  *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
+for as_dir in $PATH
+do
+  IFS=$as_save_IFS
+  case $as_dir in #(((
+    '') as_dir=./ ;;
+    */) ;;
+    *) as_dir=$as_dir/ ;;
+  esac
+    test -r "$as_dir$0" && as_myself=$as_dir$0 && break
+  done
+IFS=$as_save_IFS
+
+     ;;
+esac
+# We did not find ourselves, most probably we were run as `sh COMMAND'
+# in which case we are not to be found in the path.
+if test "x$as_myself" = x; then
+  as_myself=$0
+fi
+if test ! -f "$as_myself"; then
+  printf "%s\n" "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2
+  exit 1
+fi
+
+
+# Use a proper internal environment variable to ensure we don't fall
+  # into an infinite loop, continuously re-executing ourselves.
+  if test x"${_as_can_reexec}" != xno && test "x$CONFIG_SHELL" != x; then
+    _as_can_reexec=no; export _as_can_reexec;
+    # We cannot yet assume a decent shell, so we have to provide a
+# neutralization value for shells without unset; and this also
+# works around shells that cannot unset nonexistent variables.
+# Preserve -v and -x to the replacement shell.
+BASH_ENV=/dev/null
+ENV=/dev/null
+(unset BASH_ENV) >/dev/null 2>&1 && unset BASH_ENV ENV
+case $- in # ((((
+  *v*x* | *x*v* ) as_opts=-vx ;;
+  *v* ) as_opts=-v ;;
+  *x* ) as_opts=-x ;;
+  * ) as_opts= ;;
+esac
+exec $CONFIG_SHELL $as_opts "$as_myself" ${1+"$@"}
+# Admittedly, this is quite paranoid, since all the known shells bail
+# out after a failed `exec'.
+printf "%s\n" "$0: could not re-execute with $CONFIG_SHELL" >&2
+exit 255
+  fi
+  # We don't want this to propagate to other subprocesses.
+          { _as_can_reexec=; unset _as_can_reexec;}
+if test "x$CONFIG_SHELL" = x; then
+  as_bourne_compatible="as_nop=:
+if test \${ZSH_VERSION+y} && (emulate sh) >/dev/null 2>&1
+then :
+  emulate sh
+  NULLCMD=:
+  # Pre-4.2 versions of Zsh do word splitting on \${1+\"\$@\"}, which
+  # is contrary to our usage.  Disable this feature.
+  alias -g '\${1+\"\$@\"}'='\"\$@\"'
+  setopt NO_GLOB_SUBST
+else \$as_nop
+  case \`(set -o) 2>/dev/null\` in #(
+  *posix*) :
+    set -o posix ;; #(
+  *) :
+     ;;
+esac
+fi
+"
+  as_required="as_fn_return () { (exit \$1); }
+as_fn_success () { as_fn_return 0; }
+as_fn_failure () { as_fn_return 1; }
+as_fn_ret_success () { return 0; }
+as_fn_ret_failure () { return 1; }
+
+exitcode=0
+as_fn_success || { exitcode=1; echo as_fn_success failed.; }
+as_fn_failure && { exitcode=1; echo as_fn_failure succeeded.; }
+as_fn_ret_success || { exitcode=1; echo as_fn_ret_success failed.; }
+as_fn_ret_failure && { exitcode=1; echo as_fn_ret_failure succeeded.; }
+if ( set x; as_fn_ret_success y && test x = \"\$1\" )
+then :
+
+else \$as_nop
+  exitcode=1; echo positional parameters were not saved.
+fi
+test x\$exitcode = x0 || exit 1
+blah=\$(echo \$(echo blah))
+test x\"\$blah\" = xblah || exit 1
+test -x / || exit 1"
+  as_suggested="  as_lineno_1=";as_suggested=$as_suggested$LINENO;as_suggested=$as_suggested" as_lineno_1a=\$LINENO
+  as_lineno_2=";as_suggested=$as_suggested$LINENO;as_suggested=$as_suggested" as_lineno_2a=\$LINENO
+  eval 'test \"x\$as_lineno_1'\$as_run'\" != \"x\$as_lineno_2'\$as_run'\" &&
+  test \"x\`expr \$as_lineno_1'\$as_run' + 1\`\" = \"x\$as_lineno_2'\$as_run'\"' || exit 1"
+  if (eval "$as_required") 2>/dev/null
+then :
+  as_have_required=yes
+else $as_nop
+  as_have_required=no
+fi
+  if test x$as_have_required = xyes && (eval "$as_suggested") 2>/dev/null
+then :
+
+else $as_nop
+  as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
+as_found=false
+for as_dir in /bin$PATH_SEPARATOR/usr/bin$PATH_SEPARATOR$PATH
+do
+  IFS=$as_save_IFS
+  case $as_dir in #(((
+    '') as_dir=./ ;;
+    */) ;;
+    *) as_dir=$as_dir/ ;;
+  esac
+  as_found=:
+  case $as_dir in #(
+	 /*)
+	   for as_base in sh bash ksh sh5; do
+	     # Try only shells that exist, to save several forks.
+	     as_shell=$as_dir$as_base
+	     if { test -f "$as_shell" || test -f "$as_shell.exe"; } &&
+		    as_run=a "$as_shell" -c "$as_bourne_compatible""$as_required" 2>/dev/null
+then :
+  CONFIG_SHELL=$as_shell as_have_required=yes
+		   if as_run=a "$as_shell" -c "$as_bourne_compatible""$as_suggested" 2>/dev/null
+then :
+  break 2
+fi
+fi
+	   done;;
+       esac
+  as_found=false
+done
+IFS=$as_save_IFS
+if $as_found
+then :
+
+else $as_nop
+  if { test -f "$SHELL" || test -f "$SHELL.exe"; } &&
+	      as_run=a "$SHELL" -c "$as_bourne_compatible""$as_required" 2>/dev/null
+then :
+  CONFIG_SHELL=$SHELL as_have_required=yes
+fi
+fi
+
+
+      if test "x$CONFIG_SHELL" != x
+then :
+  export CONFIG_SHELL
+             # We cannot yet assume a decent shell, so we have to provide a
+# neutralization value for shells without unset; and this also
+# works around shells that cannot unset nonexistent variables.
+# Preserve -v and -x to the replacement shell.
+BASH_ENV=/dev/null
+ENV=/dev/null
+(unset BASH_ENV) >/dev/null 2>&1 && unset BASH_ENV ENV
+case $- in # ((((
+  *v*x* | *x*v* ) as_opts=-vx ;;
+  *v* ) as_opts=-v ;;
+  *x* ) as_opts=-x ;;
+  * ) as_opts= ;;
+esac
+exec $CONFIG_SHELL $as_opts "$as_myself" ${1+"$@"}
+# Admittedly, this is quite paranoid, since all the known shells bail
+# out after a failed `exec'.
+printf "%s\n" "$0: could not re-execute with $CONFIG_SHELL" >&2
+exit 255
+fi
+
+    if test x$as_have_required = xno
+then :
+  printf "%s\n" "$0: This script requires a shell more modern than all"
+  printf "%s\n" "$0: the shells that I found on your system."
+  if test ${ZSH_VERSION+y} ; then
+    printf "%s\n" "$0: In particular, zsh $ZSH_VERSION has bugs and should"
+    printf "%s\n" "$0: be upgraded to zsh 4.3.4 or later."
+  else
+    printf "%s\n" "$0: Please tell bug-autoconf@gnu.org and
+$0: francis.tyers@gmail.com about your system, including
+$0: any error possibly output before this message. Then
+$0: install a modern shell, or manually run the script
+$0: under such a shell if you do have one."
+  fi
+  exit 1
+fi
+fi
+fi
+SHELL=${CONFIG_SHELL-/bin/sh}
+export SHELL
+# Unset more variables known to interfere with behavior of common tools.
+CLICOLOR_FORCE= GREP_OPTIONS=
+unset CLICOLOR_FORCE GREP_OPTIONS
+
+## --------------------- ##
+## M4sh Shell Functions. ##
+## --------------------- ##
+# as_fn_unset VAR
+# ---------------
+# Portably unset VAR.
+as_fn_unset ()
+{
+  { eval $1=; unset $1;}
+}
+as_unset=as_fn_unset
+
+
+# as_fn_set_status STATUS
+# -----------------------
+# Set $? to STATUS, without forking.
+as_fn_set_status ()
+{
+  return $1
+} # as_fn_set_status
+
+# as_fn_exit STATUS
+# -----------------
+# Exit the shell with STATUS, even in a "trap 0" or "set -e" context.
+as_fn_exit ()
+{
+  set +e
+  as_fn_set_status $1
+  exit $1
+} # as_fn_exit
+# as_fn_nop
+# ---------
+# Do nothing but, unlike ":", preserve the value of $?.
+as_fn_nop ()
+{
+  return $?
+}
+as_nop=as_fn_nop
+
+# as_fn_mkdir_p
+# -------------
+# Create "$as_dir" as a directory, including parents if necessary.
+as_fn_mkdir_p ()
+{
+
+  case $as_dir in #(
+  -*) as_dir=./$as_dir;;
+  esac
+  test -d "$as_dir" || eval $as_mkdir_p || {
+    as_dirs=
+    while :; do
+      case $as_dir in #(
+      *\'*) as_qdir=`printf "%s\n" "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'(
+      *) as_qdir=$as_dir;;
+      esac
+      as_dirs="'$as_qdir' $as_dirs"
+      as_dir=`$as_dirname -- "$as_dir" ||
+$as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
+	 X"$as_dir" : 'X\(//\)[^/]' \| \
+	 X"$as_dir" : 'X\(//\)$' \| \
+	 X"$as_dir" : 'X\(/\)' \| . 2>/dev/null ||
+printf "%s\n" X"$as_dir" |
+    sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
+	    s//\1/
+	    q
+	  }
+	  /^X\(\/\/\)[^/].*/{
+	    s//\1/
+	    q
+	  }
+	  /^X\(\/\/\)$/{
+	    s//\1/
+	    q
+	  }
+	  /^X\(\/\).*/{
+	    s//\1/
+	    q
+	  }
+	  s/.*/./; q'`
+      test -d "$as_dir" && break
+    done
+    test -z "$as_dirs" || eval "mkdir $as_dirs"
+  } || test -d "$as_dir" || as_fn_error $? "cannot create directory $as_dir"
+
+
+} # as_fn_mkdir_p
+
+# as_fn_executable_p FILE
+# -----------------------
+# Test if FILE is an executable regular file.
+as_fn_executable_p ()
+{
+  test -f "$1" && test -x "$1"
+} # as_fn_executable_p
+# as_fn_append VAR VALUE
+# ----------------------
+# Append the text in VALUE to the end of the definition contained in VAR. Take
+# advantage of any shell optimizations that allow amortized linear growth over
+# repeated appends, instead of the typical quadratic growth present in naive
+# implementations.
+if (eval "as_var=1; as_var+=2; test x\$as_var = x12") 2>/dev/null
+then :
+  eval 'as_fn_append ()
+  {
+    eval $1+=\$2
+  }'
+else $as_nop
+  as_fn_append ()
+  {
+    eval $1=\$$1\$2
+  }
+fi # as_fn_append
+
+# as_fn_arith ARG...
+# ------------------
+# Perform arithmetic evaluation on the ARGs, and store the result in the
+# global $as_val. Take advantage of shells that can avoid forks. The arguments
+# must be portable across $(()) and expr.
+if (eval "test \$(( 1 + 1 )) = 2") 2>/dev/null
+then :
+  eval 'as_fn_arith ()
+  {
+    as_val=$(( $* ))
+  }'
+else $as_nop
+  as_fn_arith ()
+  {
+    as_val=`expr "$@" || test $? -eq 1`
+  }
+fi # as_fn_arith
+
+# as_fn_nop
+# ---------
+# Do nothing but, unlike ":", preserve the value of $?.
+as_fn_nop ()
+{
+  return $?
+}
+as_nop=as_fn_nop
+
+# as_fn_error STATUS ERROR [LINENO LOG_FD]
+# ----------------------------------------
+# Output "`basename $0`: error: ERROR" to stderr. If LINENO and LOG_FD are
+# provided, also output the error to LOG_FD, referencing LINENO. Then exit the
+# script with STATUS, using 1 if that was 0.
+as_fn_error ()
+{
+  as_status=$1; test $as_status -eq 0 && as_status=1
+  if test "$4"; then
+    as_lineno=${as_lineno-"$3"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
+    printf "%s\n" "$as_me:${as_lineno-$LINENO}: error: $2" >&$4
+  fi
+  printf "%s\n" "$as_me: error: $2" >&2
+  as_fn_exit $as_status
+} # as_fn_error
+
+if expr a : '\(a\)' >/dev/null 2>&1 &&
+   test "X`expr 00001 : '.*\(...\)'`" = X001; then
+  as_expr=expr
+else
+  as_expr=false
+fi
+
+if (basename -- /) >/dev/null 2>&1 && test "X`basename -- / 2>&1`" = "X/"; then
+  as_basename=basename
+else
+  as_basename=false
+fi
+
+if (as_dir=`dirname -- /` && test "X$as_dir" = X/) >/dev/null 2>&1; then
+  as_dirname=dirname
+else
+  as_dirname=false
+fi
+
+as_me=`$as_basename -- "$0" ||
+$as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \
+	 X"$0" : 'X\(//\)$' \| \
+	 X"$0" : 'X\(/\)' \| . 2>/dev/null ||
+printf "%s\n" X/"$0" |
+    sed '/^.*\/\([^/][^/]*\)\/*$/{
+	    s//\1/
+	    q
+	  }
+	  /^X\/\(\/\/\)$/{
+	    s//\1/
+	    q
+	  }
+	  /^X\/\(\/\).*/{
+	    s//\1/
+	    q
+	  }
+	  s/.*/./; q'`
+
+# Avoid depending upon Character Ranges.
+as_cr_letters='abcdefghijklmnopqrstuvwxyz'
+as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ'
+as_cr_Letters=$as_cr_letters$as_cr_LETTERS
+as_cr_digits='0123456789'
+as_cr_alnum=$as_cr_Letters$as_cr_digits
+
+
+  as_lineno_1=$LINENO as_lineno_1a=$LINENO
+  as_lineno_2=$LINENO as_lineno_2a=$LINENO
+  eval 'test "x$as_lineno_1'$as_run'" != "x$as_lineno_2'$as_run'" &&
+  test "x`expr $as_lineno_1'$as_run' + 1`" = "x$as_lineno_2'$as_run'"' || {
+  # Blame Lee E. McMahon (1931-1989) for sed's syntax.  :-)
+  sed -n '
+    p
+    /[$]LINENO/=
+  ' <$as_myself |
+    sed '
+      s/[$]LINENO.*/&-/
+      t lineno
+      b
+      :lineno
+      N
+      :loop
+      s/[$]LINENO\([^'$as_cr_alnum'_].*\n\)\(.*\)/\2\1\2/
+      t loop
+      s/-\n.*//
+    ' >$as_me.lineno &&
+  chmod +x "$as_me.lineno" ||
+    { printf "%s\n" "$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&2; as_fn_exit 1; }
+
+  # If we had to re-execute with $CONFIG_SHELL, we're ensured to have
+  # already done that, so ensure we don't try to do so again and fall
+  # in an infinite loop.  This has already happened in practice.
+  _as_can_reexec=no; export _as_can_reexec
+  # Don't try to exec as it changes $[0], causing all sort of problems
+  # (the dirname of $[0] is not the place where we might find the
+  # original and so on.  Autoconf is especially sensitive to this).
+  . "./$as_me.lineno"
+  # Exit status is that of the last command.
+  exit
+}
+
+
+# Determine whether it's possible to make 'echo' print without a newline.
+# These variables are no longer used directly by Autoconf, but are AC_SUBSTed
+# for compatibility with existing Makefiles.
+ECHO_C= ECHO_N= ECHO_T=
+case `echo -n x` in #(((((
+-n*)
+  case `echo 'xy\c'` in
+  *c*) ECHO_T='	';;	# ECHO_T is single tab character.
+  xy)  ECHO_C='\c';;
+  *)   echo `echo ksh88 bug on AIX 6.1` > /dev/null
+       ECHO_T='	';;
+  esac;;
+*)
+  ECHO_N='-n';;
+esac
+
+# For backward compatibility with old third-party macros, we provide
+# the shell variables $as_echo and $as_echo_n.  New code should use
+# AS_ECHO(["message"]) and AS_ECHO_N(["message"]), respectively.
+as_echo='printf %s\n'
+as_echo_n='printf %s'
+
+
+rm -f conf$$ conf$$.exe conf$$.file
+if test -d conf$$.dir; then
+  rm -f conf$$.dir/conf$$.file
+else
+  rm -f conf$$.dir
+  mkdir conf$$.dir 2>/dev/null
+fi
+if (echo >conf$$.file) 2>/dev/null; then
+  if ln -s conf$$.file conf$$ 2>/dev/null; then
+    as_ln_s='ln -s'
+    # ... but there are two gotchas:
+    # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail.
+    # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable.
+    # In both cases, we have to default to `cp -pR'.
+    ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe ||
+      as_ln_s='cp -pR'
+  elif ln conf$$.file conf$$ 2>/dev/null; then
+    as_ln_s=ln
+  else
+    as_ln_s='cp -pR'
+  fi
+else
+  as_ln_s='cp -pR'
+fi
+rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file
+rmdir conf$$.dir 2>/dev/null
+
+if mkdir -p . 2>/dev/null; then
+  as_mkdir_p='mkdir -p "$as_dir"'
+else
+  test -d ./-p && rmdir ./-p
+  as_mkdir_p=false
+fi
+
+as_test_x='test -x'
+as_executable_p=as_fn_executable_p
+
+# Sed expression to map a string onto a valid CPP name.
+as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'"
+
+# Sed expression to map a string onto a valid variable name.
+as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'"
+
+
+test -n "$DJDIR" || exec 7<&0 </dev/null
+exec 6>&1
+
+# Name of the host.
+# hostname on some systems (SVR3.2, old GNU/Linux) returns a bogus exit status,
+# so uname gets run too.
+ac_hostname=`(hostname || uname -n) 2>/dev/null | sed 1q`
+
+#
+# Initializations.
+#
+ac_default_prefix=/usr/local
+ac_clean_files=
+ac_config_libobj_dir=.
+LIBOBJS=
+cross_compiling=no
+subdirs=
+MFLAGS=
+MAKEFLAGS=
+
+# Identity of this package.
+PACKAGE_NAME='Apertium Hindi'
+PACKAGE_TARNAME='apertium-hin'
+PACKAGE_VERSION='0.1.0'
+PACKAGE_STRING='Apertium Hindi 0.1.0'
+PACKAGE_BUGREPORT='francis.tyers@gmail.com'
+PACKAGE_URL=''
+
+ac_subst_vars='LTLIBOBJS
+LIBOBJS
+REGTEST_LIBS
+REGTEST_CFLAGS
+CG3_LIBS
+CG3_CFLAGS
+LTTOOLBOX_LIBS
+LTTOOLBOX_CFLAGS
+APERTIUM_LIBS
+APERTIUM_CFLAGS
+HAVE_HFSTOSPELL_FALSE
+HAVE_HFSTOSPELL_TRUE
+HFSTOSPELL_LIBS
+HFSTOSPELL_CFLAGS
+PKG_CONFIG_LIBDIR
+PKG_CONFIG_PATH
+PKG_CONFIG
+AM_BACKSLASH
+AM_DEFAULT_VERBOSITY
+AM_DEFAULT_V
+AM_V
+CSCOPE
+ETAGS
+CTAGS
+am__untar
+am__tar
+AMTAR
+am__leading_dot
+SET_MAKE
+AWK
+mkdir_p
+MKDIR_P
+INSTALL_STRIP_PROGRAM
+STRIP
+install_sh
+MAKEINFO
+AUTOHEADER
+AUTOMAKE
+AUTOCONF
+ACLOCAL
+VERSION
+PACKAGE
+CYGPATH_W
+am__isrc
+INSTALL_DATA
+INSTALL_SCRIPT
+INSTALL_PROGRAM
+target_alias
+host_alias
+build_alias
+LIBS
+ECHO_T
+ECHO_N
+ECHO_C
+DEFS
+mandir
+localedir
+libdir
+psdir
+pdfdir
+dvidir
+htmldir
+infodir
+docdir
+oldincludedir
+includedir
+runstatedir
+localstatedir
+sharedstatedir
+sysconfdir
+datadir
+datarootdir
+libexecdir
+sbindir
+bindir
+program_transform_name
+prefix
+exec_prefix
+PACKAGE_URL
+PACKAGE_BUGREPORT
+PACKAGE_STRING
+PACKAGE_VERSION
+PACKAGE_TARNAME
+PACKAGE_NAME
+PATH_SEPARATOR
+SHELL'
+ac_subst_files='ap_include'
+ac_user_opts='
+enable_option_checking
+enable_silent_rules
+enable_ospell
+'
+      ac_precious_vars='build_alias
+host_alias
+target_alias
+PKG_CONFIG
+PKG_CONFIG_PATH
+PKG_CONFIG_LIBDIR
+HFSTOSPELL_CFLAGS
+HFSTOSPELL_LIBS
+APERTIUM_CFLAGS
+APERTIUM_LIBS
+LTTOOLBOX_CFLAGS
+LTTOOLBOX_LIBS
+CG3_CFLAGS
+CG3_LIBS
+REGTEST_CFLAGS
+REGTEST_LIBS'
+
+
+# Initialize some variables set by options.
+ac_init_help=
+ac_init_version=false
+ac_unrecognized_opts=
+ac_unrecognized_sep=
+# The variables have the same names as the options, with
+# dashes changed to underlines.
+cache_file=/dev/null
+exec_prefix=NONE
+no_create=
+no_recursion=
+prefix=NONE
+program_prefix=NONE
+program_suffix=NONE
+program_transform_name=s,x,x,
+silent=
+site=
+srcdir=
+verbose=
+x_includes=NONE
+x_libraries=NONE
+
+# Installation directory options.
+# These are left unexpanded so users can "make install exec_prefix=/foo"
+# and all the variables that are supposed to be based on exec_prefix
+# by default will actually change.
+# Use braces instead of parens because sh, perl, etc. also accept them.
+# (The list follows the same order as the GNU Coding Standards.)
+bindir='${exec_prefix}/bin'
+sbindir='${exec_prefix}/sbin'
+libexecdir='${exec_prefix}/libexec'
+datarootdir='${prefix}/share'
+datadir='${datarootdir}'
+sysconfdir='${prefix}/etc'
+sharedstatedir='${prefix}/com'
+localstatedir='${prefix}/var'
+runstatedir='${localstatedir}/run'
+includedir='${prefix}/include'
+oldincludedir='/usr/include'
+docdir='${datarootdir}/doc/${PACKAGE_TARNAME}'
+infodir='${datarootdir}/info'
+htmldir='${docdir}'
+dvidir='${docdir}'
+pdfdir='${docdir}'
+psdir='${docdir}'
+libdir='${exec_prefix}/lib'
+localedir='${datarootdir}/locale'
+mandir='${datarootdir}/man'
+
+ac_prev=
+ac_dashdash=
+for ac_option
+do
+  # If the previous option needs an argument, assign it.
+  if test -n "$ac_prev"; then
+    eval $ac_prev=\$ac_option
+    ac_prev=
+    continue
+  fi
+
+  case $ac_option in
+  *=?*) ac_optarg=`expr "X$ac_option" : '[^=]*=\(.*\)'` ;;
+  *=)   ac_optarg= ;;
+  *)    ac_optarg=yes ;;
+  esac
+
+  case $ac_dashdash$ac_option in
+  --)
+    ac_dashdash=yes ;;
+
+  -bindir | --bindir | --bindi | --bind | --bin | --bi)
+    ac_prev=bindir ;;
+  -bindir=* | --bindir=* | --bindi=* | --bind=* | --bin=* | --bi=*)
+    bindir=$ac_optarg ;;
+
+  -build | --build | --buil | --bui | --bu)
+    ac_prev=build_alias ;;
+  -build=* | --build=* | --buil=* | --bui=* | --bu=*)
+    build_alias=$ac_optarg ;;
+
+  -cache-file | --cache-file | --cache-fil | --cache-fi \
+  | --cache-f | --cache- | --cache | --cach | --cac | --ca | --c)
+    ac_prev=cache_file ;;
+  -cache-file=* | --cache-file=* | --cache-fil=* | --cache-fi=* \
+  | --cache-f=* | --cache-=* | --cache=* | --cach=* | --cac=* | --ca=* | --c=*)
+    cache_file=$ac_optarg ;;
+
+  --config-cache | -C)
+    cache_file=config.cache ;;
+
+  -datadir | --datadir | --datadi | --datad)
+    ac_prev=datadir ;;
+  -datadir=* | --datadir=* | --datadi=* | --datad=*)
+    datadir=$ac_optarg ;;
+
+  -datarootdir | --datarootdir | --datarootdi | --datarootd | --dataroot \
+  | --dataroo | --dataro | --datar)
+    ac_prev=datarootdir ;;
+  -datarootdir=* | --datarootdir=* | --datarootdi=* | --datarootd=* \
+  | --dataroot=* | --dataroo=* | --dataro=* | --datar=*)
+    datarootdir=$ac_optarg ;;
+
+  -disable-* | --disable-*)
+    ac_useropt=`expr "x$ac_option" : 'x-*disable-\(.*\)'`
+    # Reject names that are not valid shell variable names.
+    expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null &&
+      as_fn_error $? "invalid feature name: \`$ac_useropt'"
+    ac_useropt_orig=$ac_useropt
+    ac_useropt=`printf "%s\n" "$ac_useropt" | sed 's/[-+.]/_/g'`
+    case $ac_user_opts in
+      *"
+"enable_$ac_useropt"
+"*) ;;
+      *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--disable-$ac_useropt_orig"
+	 ac_unrecognized_sep=', ';;
+    esac
+    eval enable_$ac_useropt=no ;;
+
+  -docdir | --docdir | --docdi | --doc | --do)
+    ac_prev=docdir ;;
+  -docdir=* | --docdir=* | --docdi=* | --doc=* | --do=*)
+    docdir=$ac_optarg ;;
+
+  -dvidir | --dvidir | --dvidi | --dvid | --dvi | --dv)
+    ac_prev=dvidir ;;
+  -dvidir=* | --dvidir=* | --dvidi=* | --dvid=* | --dvi=* | --dv=*)
+    dvidir=$ac_optarg ;;
+
+  -enable-* | --enable-*)
+    ac_useropt=`expr "x$ac_option" : 'x-*enable-\([^=]*\)'`
+    # Reject names that are not valid shell variable names.
+    expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null &&
+      as_fn_error $? "invalid feature name: \`$ac_useropt'"
+    ac_useropt_orig=$ac_useropt
+    ac_useropt=`printf "%s\n" "$ac_useropt" | sed 's/[-+.]/_/g'`
+    case $ac_user_opts in
+      *"
+"enable_$ac_useropt"
+"*) ;;
+      *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--enable-$ac_useropt_orig"
+	 ac_unrecognized_sep=', ';;
+    esac
+    eval enable_$ac_useropt=\$ac_optarg ;;
+
+  -exec-prefix | --exec_prefix | --exec-prefix | --exec-prefi \
+  | --exec-pref | --exec-pre | --exec-pr | --exec-p | --exec- \
+  | --exec | --exe | --ex)
+    ac_prev=exec_prefix ;;
+  -exec-prefix=* | --exec_prefix=* | --exec-prefix=* | --exec-prefi=* \
+  | --exec-pref=* | --exec-pre=* | --exec-pr=* | --exec-p=* | --exec-=* \
+  | --exec=* | --exe=* | --ex=*)
+    exec_prefix=$ac_optarg ;;
+
+  -gas | --gas | --ga | --g)
+    # Obsolete; use --with-gas.
+    with_gas=yes ;;
+
+  -help | --help | --hel | --he | -h)
+    ac_init_help=long ;;
+  -help=r* | --help=r* | --hel=r* | --he=r* | -hr*)
+    ac_init_help=recursive ;;
+  -help=s* | --help=s* | --hel=s* | --he=s* | -hs*)
+    ac_init_help=short ;;
+
+  -host | --host | --hos | --ho)
+    ac_prev=host_alias ;;
+  -host=* | --host=* | --hos=* | --ho=*)
+    host_alias=$ac_optarg ;;
+
+  -htmldir | --htmldir | --htmldi | --htmld | --html | --htm | --ht)
+    ac_prev=htmldir ;;
+  -htmldir=* | --htmldir=* | --htmldi=* | --htmld=* | --html=* | --htm=* \
+  | --ht=*)
+    htmldir=$ac_optarg ;;
+
+  -includedir | --includedir | --includedi | --included | --include \
+  | --includ | --inclu | --incl | --inc)
+    ac_prev=includedir ;;
+  -includedir=* | --includedir=* | --includedi=* | --included=* | --include=* \
+  | --includ=* | --inclu=* | --incl=* | --inc=*)
+    includedir=$ac_optarg ;;
+
+  -infodir | --infodir | --infodi | --infod | --info | --inf)
+    ac_prev=infodir ;;
+  -infodir=* | --infodir=* | --infodi=* | --infod=* | --info=* | --inf=*)
+    infodir=$ac_optarg ;;
+
+  -libdir | --libdir | --libdi | --libd)
+    ac_prev=libdir ;;
+  -libdir=* | --libdir=* | --libdi=* | --libd=*)
+    libdir=$ac_optarg ;;
+
+  -libexecdir | --libexecdir | --libexecdi | --libexecd | --libexec \
+  | --libexe | --libex | --libe)
+    ac_prev=libexecdir ;;
+  -libexecdir=* | --libexecdir=* | --libexecdi=* | --libexecd=* | --libexec=* \
+  | --libexe=* | --libex=* | --libe=*)
+    libexecdir=$ac_optarg ;;
+
+  -localedir | --localedir | --localedi | --localed | --locale)
+    ac_prev=localedir ;;
+  -localedir=* | --localedir=* | --localedi=* | --localed=* | --locale=*)
+    localedir=$ac_optarg ;;
+
+  -localstatedir | --localstatedir | --localstatedi | --localstated \
+  | --localstate | --localstat | --localsta | --localst | --locals)
+    ac_prev=localstatedir ;;
+  -localstatedir=* | --localstatedir=* | --localstatedi=* | --localstated=* \
+  | --localstate=* | --localstat=* | --localsta=* | --localst=* | --locals=*)
+    localstatedir=$ac_optarg ;;
+
+  -mandir | --mandir | --mandi | --mand | --man | --ma | --m)
+    ac_prev=mandir ;;
+  -mandir=* | --mandir=* | --mandi=* | --mand=* | --man=* | --ma=* | --m=*)
+    mandir=$ac_optarg ;;
+
+  -nfp | --nfp | --nf)
+    # Obsolete; use --without-fp.
+    with_fp=no ;;
+
+  -no-create | --no-create | --no-creat | --no-crea | --no-cre \
+  | --no-cr | --no-c | -n)
+    no_create=yes ;;
+
+  -no-recursion | --no-recursion | --no-recursio | --no-recursi \
+  | --no-recurs | --no-recur | --no-recu | --no-rec | --no-re | --no-r)
+    no_recursion=yes ;;
+
+  -oldincludedir | --oldincludedir | --oldincludedi | --oldincluded \
+  | --oldinclude | --oldinclud | --oldinclu | --oldincl | --oldinc \
+  | --oldin | --oldi | --old | --ol | --o)
+    ac_prev=oldincludedir ;;
+  -oldincludedir=* | --oldincludedir=* | --oldincludedi=* | --oldincluded=* \
+  | --oldinclude=* | --oldinclud=* | --oldinclu=* | --oldincl=* | --oldinc=* \
+  | --oldin=* | --oldi=* | --old=* | --ol=* | --o=*)
+    oldincludedir=$ac_optarg ;;
+
+  -prefix | --prefix | --prefi | --pref | --pre | --pr | --p)
+    ac_prev=prefix ;;
+  -prefix=* | --prefix=* | --prefi=* | --pref=* | --pre=* | --pr=* | --p=*)
+    prefix=$ac_optarg ;;
+
+  -program-prefix | --program-prefix | --program-prefi | --program-pref \
+  | --program-pre | --program-pr | --program-p)
+    ac_prev=program_prefix ;;
+  -program-prefix=* | --program-prefix=* | --program-prefi=* \
+  | --program-pref=* | --program-pre=* | --program-pr=* | --program-p=*)
+    program_prefix=$ac_optarg ;;
+
+  -program-suffix | --program-suffix | --program-suffi | --program-suff \
+  | --program-suf | --program-su | --program-s)
+    ac_prev=program_suffix ;;
+  -program-suffix=* | --program-suffix=* | --program-suffi=* \
+  | --program-suff=* | --program-suf=* | --program-su=* | --program-s=*)
+    program_suffix=$ac_optarg ;;
+
+  -program-transform-name | --program-transform-name \
+  | --program-transform-nam | --program-transform-na \
+  | --program-transform-n | --program-transform- \
+  | --program-transform | --program-transfor \
+  | --program-transfo | --program-transf \
+  | --program-trans | --program-tran \
+  | --progr-tra | --program-tr | --program-t)
+    ac_prev=program_transform_name ;;
+  -program-transform-name=* | --program-transform-name=* \
+  | --program-transform-nam=* | --program-transform-na=* \
+  | --program-transform-n=* | --program-transform-=* \
+  | --program-transform=* | --program-transfor=* \
+  | --program-transfo=* | --program-transf=* \
+  | --program-trans=* | --program-tran=* \
+  | --progr-tra=* | --program-tr=* | --program-t=*)
+    program_transform_name=$ac_optarg ;;
+
+  -pdfdir | --pdfdir | --pdfdi | --pdfd | --pdf | --pd)
+    ac_prev=pdfdir ;;
+  -pdfdir=* | --pdfdir=* | --pdfdi=* | --pdfd=* | --pdf=* | --pd=*)
+    pdfdir=$ac_optarg ;;
+
+  -psdir | --psdir | --psdi | --psd | --ps)
+    ac_prev=psdir ;;
+  -psdir=* | --psdir=* | --psdi=* | --psd=* | --ps=*)
+    psdir=$ac_optarg ;;
+
+  -q | -quiet | --quiet | --quie | --qui | --qu | --q \
+  | -silent | --silent | --silen | --sile | --sil)
+    silent=yes ;;
+
+  -runstatedir | --runstatedir | --runstatedi | --runstated \
+  | --runstate | --runstat | --runsta | --runst | --runs \
+  | --run | --ru | --r)
+    ac_prev=runstatedir ;;
+  -runstatedir=* | --runstatedir=* | --runstatedi=* | --runstated=* \
+  | --runstate=* | --runstat=* | --runsta=* | --runst=* | --runs=* \
+  | --run=* | --ru=* | --r=*)
+    runstatedir=$ac_optarg ;;
+
+  -sbindir | --sbindir | --sbindi | --sbind | --sbin | --sbi | --sb)
+    ac_prev=sbindir ;;
+  -sbindir=* | --sbindir=* | --sbindi=* | --sbind=* | --sbin=* \
+  | --sbi=* | --sb=*)
+    sbindir=$ac_optarg ;;
+
+  -sharedstatedir | --sharedstatedir | --sharedstatedi \
+  | --sharedstated | --sharedstate | --sharedstat | --sharedsta \
+  | --sharedst | --shareds | --shared | --share | --shar \
+  | --sha | --sh)
+    ac_prev=sharedstatedir ;;
+  -sharedstatedir=* | --sharedstatedir=* | --sharedstatedi=* \
+  | --sharedstated=* | --sharedstate=* | --sharedstat=* | --sharedsta=* \
+  | --sharedst=* | --shareds=* | --shared=* | --share=* | --shar=* \
+  | --sha=* | --sh=*)
+    sharedstatedir=$ac_optarg ;;
+
+  -site | --site | --sit)
+    ac_prev=site ;;
+  -site=* | --site=* | --sit=*)
+    site=$ac_optarg ;;
+
+  -srcdir | --srcdir | --srcdi | --srcd | --src | --sr)
+    ac_prev=srcdir ;;
+  -srcdir=* | --srcdir=* | --srcdi=* | --srcd=* | --src=* | --sr=*)
+    srcdir=$ac_optarg ;;
+
+  -sysconfdir | --sysconfdir | --sysconfdi | --sysconfd | --sysconf \
+  | --syscon | --sysco | --sysc | --sys | --sy)
+    ac_prev=sysconfdir ;;
+  -sysconfdir=* | --sysconfdir=* | --sysconfdi=* | --sysconfd=* | --sysconf=* \
+  | --syscon=* | --sysco=* | --sysc=* | --sys=* | --sy=*)
+    sysconfdir=$ac_optarg ;;
+
+  -target | --target | --targe | --targ | --tar | --ta | --t)
+    ac_prev=target_alias ;;
+  -target=* | --target=* | --targe=* | --targ=* | --tar=* | --ta=* | --t=*)
+    target_alias=$ac_optarg ;;
+
+  -v | -verbose | --verbose | --verbos | --verbo | --verb)
+    verbose=yes ;;
+
+  -version | --version | --versio | --versi | --vers | -V)
+    ac_init_version=: ;;
+
+  -with-* | --with-*)
+    ac_useropt=`expr "x$ac_option" : 'x-*with-\([^=]*\)'`
+    # Reject names that are not valid shell variable names.
+    expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null &&
+      as_fn_error $? "invalid package name: \`$ac_useropt'"
+    ac_useropt_orig=$ac_useropt
+    ac_useropt=`printf "%s\n" "$ac_useropt" | sed 's/[-+.]/_/g'`
+    case $ac_user_opts in
+      *"
+"with_$ac_useropt"
+"*) ;;
+      *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--with-$ac_useropt_orig"
+	 ac_unrecognized_sep=', ';;
+    esac
+    eval with_$ac_useropt=\$ac_optarg ;;
+
+  -without-* | --without-*)
+    ac_useropt=`expr "x$ac_option" : 'x-*without-\(.*\)'`
+    # Reject names that are not valid shell variable names.
+    expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null &&
+      as_fn_error $? "invalid package name: \`$ac_useropt'"
+    ac_useropt_orig=$ac_useropt
+    ac_useropt=`printf "%s\n" "$ac_useropt" | sed 's/[-+.]/_/g'`
+    case $ac_user_opts in
+      *"
+"with_$ac_useropt"
+"*) ;;
+      *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--without-$ac_useropt_orig"
+	 ac_unrecognized_sep=', ';;
+    esac
+    eval with_$ac_useropt=no ;;
+
+  --x)
+    # Obsolete; use --with-x.
+    with_x=yes ;;
+
+  -x-includes | --x-includes | --x-include | --x-includ | --x-inclu \
+  | --x-incl | --x-inc | --x-in | --x-i)
+    ac_prev=x_includes ;;
+  -x-includes=* | --x-includes=* | --x-include=* | --x-includ=* | --x-inclu=* \
+  | --x-incl=* | --x-inc=* | --x-in=* | --x-i=*)
+    x_includes=$ac_optarg ;;
+
+  -x-libraries | --x-libraries | --x-librarie | --x-librari \
+  | --x-librar | --x-libra | --x-libr | --x-lib | --x-li | --x-l)
+    ac_prev=x_libraries ;;
+  -x-libraries=* | --x-libraries=* | --x-librarie=* | --x-librari=* \
+  | --x-librar=* | --x-libra=* | --x-libr=* | --x-lib=* | --x-li=* | --x-l=*)
+    x_libraries=$ac_optarg ;;
+
+  -*) as_fn_error $? "unrecognized option: \`$ac_option'
+Try \`$0 --help' for more information"
+    ;;
+
+  *=*)
+    ac_envvar=`expr "x$ac_option" : 'x\([^=]*\)='`
+    # Reject names that are not valid shell variable names.
+    case $ac_envvar in #(
+      '' | [0-9]* | *[!_$as_cr_alnum]* )
+      as_fn_error $? "invalid variable name: \`$ac_envvar'" ;;
+    esac
+    eval $ac_envvar=\$ac_optarg
+    export $ac_envvar ;;
+
+  *)
+    # FIXME: should be removed in autoconf 3.0.
+    printf "%s\n" "$as_me: WARNING: you should use --build, --host, --target" >&2
+    expr "x$ac_option" : ".*[^-._$as_cr_alnum]" >/dev/null &&
+      printf "%s\n" "$as_me: WARNING: invalid host type: $ac_option" >&2
+    : "${build_alias=$ac_option} ${host_alias=$ac_option} ${target_alias=$ac_option}"
+    ;;
+
+  esac
+done
+
+if test -n "$ac_prev"; then
+  ac_option=--`echo $ac_prev | sed 's/_/-/g'`
+  as_fn_error $? "missing argument to $ac_option"
+fi
+
+if test -n "$ac_unrecognized_opts"; then
+  case $enable_option_checking in
+    no) ;;
+    fatal) as_fn_error $? "unrecognized options: $ac_unrecognized_opts" ;;
+    *)     printf "%s\n" "$as_me: WARNING: unrecognized options: $ac_unrecognized_opts" >&2 ;;
+  esac
+fi
+
+# Check all directory arguments for consistency.
+for ac_var in	exec_prefix prefix bindir sbindir libexecdir datarootdir \
+		datadir sysconfdir sharedstatedir localstatedir includedir \
+		oldincludedir docdir infodir htmldir dvidir pdfdir psdir \
+		libdir localedir mandir runstatedir
+do
+  eval ac_val=\$$ac_var
+  # Remove trailing slashes.
+  case $ac_val in
+    */ )
+      ac_val=`expr "X$ac_val" : 'X\(.*[^/]\)' \| "X$ac_val" : 'X\(.*\)'`
+      eval $ac_var=\$ac_val;;
+  esac
+  # Be sure to have absolute directory names.
+  case $ac_val in
+    [\\/$]* | ?:[\\/]* )  continue;;
+    NONE | '' ) case $ac_var in *prefix ) continue;; esac;;
+  esac
+  as_fn_error $? "expected an absolute directory name for --$ac_var: $ac_val"
+done
+
+# There might be people who depend on the old broken behavior: `$host'
+# used to hold the argument of --host etc.
+# FIXME: To remove some day.
+build=$build_alias
+host=$host_alias
+target=$target_alias
+
+# FIXME: To remove some day.
+if test "x$host_alias" != x; then
+  if test "x$build_alias" = x; then
+    cross_compiling=maybe
+  elif test "x$build_alias" != "x$host_alias"; then
+    cross_compiling=yes
+  fi
+fi
+
+ac_tool_prefix=
+test -n "$host_alias" && ac_tool_prefix=$host_alias-
+
+test "$silent" = yes && exec 6>/dev/null
+
+
+ac_pwd=`pwd` && test -n "$ac_pwd" &&
+ac_ls_di=`ls -di .` &&
+ac_pwd_ls_di=`cd "$ac_pwd" && ls -di .` ||
+  as_fn_error $? "working directory cannot be determined"
+test "X$ac_ls_di" = "X$ac_pwd_ls_di" ||
+  as_fn_error $? "pwd does not report name of working directory"
+
+
+# Find the source files, if location was not specified.
+if test -z "$srcdir"; then
+  ac_srcdir_defaulted=yes
+  # Try the directory containing this script, then the parent directory.
+  ac_confdir=`$as_dirname -- "$as_myself" ||
+$as_expr X"$as_myself" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
+	 X"$as_myself" : 'X\(//\)[^/]' \| \
+	 X"$as_myself" : 'X\(//\)$' \| \
+	 X"$as_myself" : 'X\(/\)' \| . 2>/dev/null ||
+printf "%s\n" X"$as_myself" |
+    sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
+	    s//\1/
+	    q
+	  }
+	  /^X\(\/\/\)[^/].*/{
+	    s//\1/
+	    q
+	  }
+	  /^X\(\/\/\)$/{
+	    s//\1/
+	    q
+	  }
+	  /^X\(\/\).*/{
+	    s//\1/
+	    q
+	  }
+	  s/.*/./; q'`
+  srcdir=$ac_confdir
+  if test ! -r "$srcdir/$ac_unique_file"; then
+    srcdir=..
+  fi
+else
+  ac_srcdir_defaulted=no
+fi
+if test ! -r "$srcdir/$ac_unique_file"; then
+  test "$ac_srcdir_defaulted" = yes && srcdir="$ac_confdir or .."
+  as_fn_error $? "cannot find sources ($ac_unique_file) in $srcdir"
+fi
+ac_msg="sources are in $srcdir, but \`cd $srcdir' does not work"
+ac_abs_confdir=`(
+	cd "$srcdir" && test -r "./$ac_unique_file" || as_fn_error $? "$ac_msg"
+	pwd)`
+# When building in place, set srcdir=.
+if test "$ac_abs_confdir" = "$ac_pwd"; then
+  srcdir=.
+fi
+# Remove unnecessary trailing slashes from srcdir.
+# Double slashes in file names in object file debugging info
+# mess up M-x gdb in Emacs.
+case $srcdir in
+*/) srcdir=`expr "X$srcdir" : 'X\(.*[^/]\)' \| "X$srcdir" : 'X\(.*\)'`;;
+esac
+for ac_var in $ac_precious_vars; do
+  eval ac_env_${ac_var}_set=\${${ac_var}+set}
+  eval ac_env_${ac_var}_value=\$${ac_var}
+  eval ac_cv_env_${ac_var}_set=\${${ac_var}+set}
+  eval ac_cv_env_${ac_var}_value=\$${ac_var}
+done
+
+#
+# Report the --help message.
+#
+if test "$ac_init_help" = "long"; then
+  # Omit some internal or obsolete options to make the list less imposing.
+  # This message is too long to be a string in the A/UX 3.1 sh.
+  cat <<_ACEOF
+\`configure' configures Apertium Hindi 0.1.0 to adapt to many kinds of systems.
+
+Usage: $0 [OPTION]... [VAR=VALUE]...
+
+To assign environment variables (e.g., CC, CFLAGS...), specify them as
+VAR=VALUE.  See below for descriptions of some of the useful variables.
+
+Defaults for the options are specified in brackets.
+
+Configuration:
+  -h, --help              display this help and exit
+      --help=short        display options specific to this package
+      --help=recursive    display the short help of all the included packages
+  -V, --version           display version information and exit
+  -q, --quiet, --silent   do not print \`checking ...' messages
+      --cache-file=FILE   cache test results in FILE [disabled]
+  -C, --config-cache      alias for \`--cache-file=config.cache'
+  -n, --no-create         do not create output files
+      --srcdir=DIR        find the sources in DIR [configure dir or \`..']
+
+Installation directories:
+  --prefix=PREFIX         install architecture-independent files in PREFIX
+                          [$ac_default_prefix]
+  --exec-prefix=EPREFIX   install architecture-dependent files in EPREFIX
+                          [PREFIX]
+
+By default, \`make install' will install all the files in
+\`$ac_default_prefix/bin', \`$ac_default_prefix/lib' etc.  You can specify
+an installation prefix other than \`$ac_default_prefix' using \`--prefix',
+for instance \`--prefix=\$HOME'.
+
+For better control, use the options below.
+
+Fine tuning of the installation directories:
+  --bindir=DIR            user executables [EPREFIX/bin]
+  --sbindir=DIR           system admin executables [EPREFIX/sbin]
+  --libexecdir=DIR        program executables [EPREFIX/libexec]
+  --sysconfdir=DIR        read-only single-machine data [PREFIX/etc]
+  --sharedstatedir=DIR    modifiable architecture-independent data [PREFIX/com]
+  --localstatedir=DIR     modifiable single-machine data [PREFIX/var]
+  --runstatedir=DIR       modifiable per-process data [LOCALSTATEDIR/run]
+  --libdir=DIR            object code libraries [EPREFIX/lib]
+  --includedir=DIR        C header files [PREFIX/include]
+  --oldincludedir=DIR     C header files for non-gcc [/usr/include]
+  --datarootdir=DIR       read-only arch.-independent data root [PREFIX/share]
+  --datadir=DIR           read-only architecture-independent data [DATAROOTDIR]
+  --infodir=DIR           info documentation [DATAROOTDIR/info]
+  --localedir=DIR         locale-dependent data [DATAROOTDIR/locale]
+  --mandir=DIR            man documentation [DATAROOTDIR/man]
+  --docdir=DIR            documentation root [DATAROOTDIR/doc/apertium-hin]
+  --htmldir=DIR           html documentation [DOCDIR]
+  --dvidir=DIR            dvi documentation [DOCDIR]
+  --pdfdir=DIR            pdf documentation [DOCDIR]
+  --psdir=DIR             ps documentation [DOCDIR]
+_ACEOF
+
+  cat <<\_ACEOF
+
+Program names:
+  --program-prefix=PREFIX            prepend PREFIX to installed program names
+  --program-suffix=SUFFIX            append SUFFIX to installed program names
+  --program-transform-name=PROGRAM   run sed PROGRAM on installed program names
+_ACEOF
+fi
+
+if test -n "$ac_init_help"; then
+  case $ac_init_help in
+     short | recursive ) echo "Configuration of Apertium Hindi 0.1.0:";;
+   esac
+  cat <<\_ACEOF
+
+Optional Features:
+  --disable-option-checking  ignore unrecognized --enable/--with options
+  --disable-FEATURE       do not include FEATURE (same as --enable-FEATURE=no)
+  --enable-FEATURE[=ARG]  include FEATURE [ARG=yes]
+  --enable-silent-rules   less verbose build output (undo: "make V=1")
+  --disable-silent-rules  verbose build output (undo: "make V=0")
+  --enable-ospell         enable HFST spellchecking backend
+
+Some influential environment variables:
+  PKG_CONFIG  path to pkg-config utility
+  PKG_CONFIG_PATH
+              directories to add to pkg-config's search path
+  PKG_CONFIG_LIBDIR
+              path overriding pkg-config's built-in search path
+  HFSTOSPELL_CFLAGS
+              C compiler flags for HFSTOSPELL, overriding pkg-config
+  HFSTOSPELL_LIBS
+              linker flags for HFSTOSPELL, overriding pkg-config
+  APERTIUM_CFLAGS
+              C compiler flags for APERTIUM, overriding pkg-config
+  APERTIUM_LIBS
+              linker flags for APERTIUM, overriding pkg-config
+  LTTOOLBOX_CFLAGS
+              C compiler flags for LTTOOLBOX, overriding pkg-config
+  LTTOOLBOX_LIBS
+              linker flags for LTTOOLBOX, overriding pkg-config
+  CG3_CFLAGS  C compiler flags for CG3, overriding pkg-config
+  CG3_LIBS    linker flags for CG3, overriding pkg-config
+  REGTEST_CFLAGS
+              C compiler flags for REGTEST, overriding pkg-config
+  REGTEST_LIBS
+              linker flags for REGTEST, overriding pkg-config
+
+Use these variables to override the choices made by `configure' or to help
+it to find libraries and programs with nonstandard names/locations.
+
+Report bugs to <francis.tyers@gmail.com>.
+_ACEOF
+ac_status=$?
+fi
+
+if test "$ac_init_help" = "recursive"; then
+  # If there are subdirs, report their specific --help.
+  for ac_dir in : $ac_subdirs_all; do test "x$ac_dir" = x: && continue
+    test -d "$ac_dir" ||
+      { cd "$srcdir" && ac_pwd=`pwd` && srcdir=. && test -d "$ac_dir"; } ||
+      continue
+    ac_builddir=.
+
+case "$ac_dir" in
+.) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;;
+*)
+  ac_dir_suffix=/`printf "%s\n" "$ac_dir" | sed 's|^\.[\\/]||'`
+  # A ".." for each directory in $ac_dir_suffix.
+  ac_top_builddir_sub=`printf "%s\n" "$ac_dir_suffix" | sed 's|/[^\\/]*|/..|g;s|/||'`
+  case $ac_top_builddir_sub in
+  "") ac_top_builddir_sub=. ac_top_build_prefix= ;;
+  *)  ac_top_build_prefix=$ac_top_builddir_sub/ ;;
+  esac ;;
+esac
+ac_abs_top_builddir=$ac_pwd
+ac_abs_builddir=$ac_pwd$ac_dir_suffix
+# for backward compatibility:
+ac_top_builddir=$ac_top_build_prefix
+
+case $srcdir in
+  .)  # We are building in place.
+    ac_srcdir=.
+    ac_top_srcdir=$ac_top_builddir_sub
+    ac_abs_top_srcdir=$ac_pwd ;;
+  [\\/]* | ?:[\\/]* )  # Absolute name.
+    ac_srcdir=$srcdir$ac_dir_suffix;
+    ac_top_srcdir=$srcdir
+    ac_abs_top_srcdir=$srcdir ;;
+  *) # Relative name.
+    ac_srcdir=$ac_top_build_prefix$srcdir$ac_dir_suffix
+    ac_top_srcdir=$ac_top_build_prefix$srcdir
+    ac_abs_top_srcdir=$ac_pwd/$srcdir ;;
+esac
+ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix
+
+    cd "$ac_dir" || { ac_status=$?; continue; }
+    # Check for configure.gnu first; this name is used for a wrapper for
+    # Metaconfig's "Configure" on case-insensitive file systems.
+    if test -f "$ac_srcdir/configure.gnu"; then
+      echo &&
+      $SHELL "$ac_srcdir/configure.gnu" --help=recursive
+    elif test -f "$ac_srcdir/configure"; then
+      echo &&
+      $SHELL "$ac_srcdir/configure" --help=recursive
+    else
+      printf "%s\n" "$as_me: WARNING: no configuration information is in $ac_dir" >&2
+    fi || ac_status=$?
+    cd "$ac_pwd" || { ac_status=$?; break; }
+  done
+fi
+
+test -n "$ac_init_help" && exit $ac_status
+if $ac_init_version; then
+  cat <<\_ACEOF
+Apertium Hindi configure 0.1.0
+generated by GNU Autoconf 2.71
+
+Copyright (C) 2021 Free Software Foundation, Inc.
+This configure script is free software; the Free Software Foundation
+gives unlimited permission to copy, distribute and modify it.
+_ACEOF
+  exit
+fi
+
+## ------------------------ ##
+## Autoconf initialization. ##
+## ------------------------ ##
+ac_configure_args_raw=
+for ac_arg
+do
+  case $ac_arg in
+  *\'*)
+    ac_arg=`printf "%s\n" "$ac_arg" | sed "s/'/'\\\\\\\\''/g"` ;;
+  esac
+  as_fn_append ac_configure_args_raw " '$ac_arg'"
+done
+
+case $ac_configure_args_raw in
+  *$as_nl*)
+    ac_safe_unquote= ;;
+  *)
+    ac_unsafe_z='|&;<>()$`\\"*?[ ''	' # This string ends in space, tab.
+    ac_unsafe_a="$ac_unsafe_z#~"
+    ac_safe_unquote="s/ '\\([^$ac_unsafe_a][^$ac_unsafe_z]*\\)'/ \\1/g"
+    ac_configure_args_raw=`      printf "%s\n" "$ac_configure_args_raw" | sed "$ac_safe_unquote"`;;
+esac
+
+cat >config.log <<_ACEOF
+This file contains any messages produced by compilers while
+running configure, to aid debugging if configure makes a mistake.
+
+It was created by Apertium Hindi $as_me 0.1.0, which was
+generated by GNU Autoconf 2.71.  Invocation command line was
+
+  $ $0$ac_configure_args_raw
+
+_ACEOF
+exec 5>>config.log
+{
+cat <<_ASUNAME
+## --------- ##
+## Platform. ##
+## --------- ##
+
+hostname = `(hostname || uname -n) 2>/dev/null | sed 1q`
+uname -m = `(uname -m) 2>/dev/null || echo unknown`
+uname -r = `(uname -r) 2>/dev/null || echo unknown`
+uname -s = `(uname -s) 2>/dev/null || echo unknown`
+uname -v = `(uname -v) 2>/dev/null || echo unknown`
+
+/usr/bin/uname -p = `(/usr/bin/uname -p) 2>/dev/null || echo unknown`
+/bin/uname -X     = `(/bin/uname -X) 2>/dev/null     || echo unknown`
+
+/bin/arch              = `(/bin/arch) 2>/dev/null              || echo unknown`
+/usr/bin/arch -k       = `(/usr/bin/arch -k) 2>/dev/null       || echo unknown`
+/usr/convex/getsysinfo = `(/usr/convex/getsysinfo) 2>/dev/null || echo unknown`
+/usr/bin/hostinfo      = `(/usr/bin/hostinfo) 2>/dev/null      || echo unknown`
+/bin/machine           = `(/bin/machine) 2>/dev/null           || echo unknown`
+/usr/bin/oslevel       = `(/usr/bin/oslevel) 2>/dev/null       || echo unknown`
+/bin/universe          = `(/bin/universe) 2>/dev/null          || echo unknown`
+
+_ASUNAME
+
+as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
+for as_dir in $PATH
+do
+  IFS=$as_save_IFS
+  case $as_dir in #(((
+    '') as_dir=./ ;;
+    */) ;;
+    *) as_dir=$as_dir/ ;;
+  esac
+    printf "%s\n" "PATH: $as_dir"
+  done
+IFS=$as_save_IFS
+
+} >&5
+
+cat >&5 <<_ACEOF
+
+
+## ----------- ##
+## Core tests. ##
+## ----------- ##
+
+_ACEOF
+
+
+# Keep a trace of the command line.
+# Strip out --no-create and --no-recursion so they do not pile up.
+# Strip out --silent because we don't want to record it for future runs.
+# Also quote any args containing shell meta-characters.
+# Make two passes to allow for proper duplicate-argument suppression.
+ac_configure_args=
+ac_configure_args0=
+ac_configure_args1=
+ac_must_keep_next=false
+for ac_pass in 1 2
+do
+  for ac_arg
+  do
+    case $ac_arg in
+    -no-create | --no-c* | -n | -no-recursion | --no-r*) continue ;;
+    -q | -quiet | --quiet | --quie | --qui | --qu | --q \
+    | -silent | --silent | --silen | --sile | --sil)
+      continue ;;
+    *\'*)
+      ac_arg=`printf "%s\n" "$ac_arg" | sed "s/'/'\\\\\\\\''/g"` ;;
+    esac
+    case $ac_pass in
+    1) as_fn_append ac_configure_args0 " '$ac_arg'" ;;
+    2)
+      as_fn_append ac_configure_args1 " '$ac_arg'"
+      if test $ac_must_keep_next = true; then
+	ac_must_keep_next=false # Got value, back to normal.
+      else
+	case $ac_arg in
+	  *=* | --config-cache | -C | -disable-* | --disable-* \
+	  | -enable-* | --enable-* | -gas | --g* | -nfp | --nf* \
+	  | -q | -quiet | --q* | -silent | --sil* | -v | -verb* \
+	  | -with-* | --with-* | -without-* | --without-* | --x)
+	    case "$ac_configure_args0 " in
+	      "$ac_configure_args1"*" '$ac_arg' "* ) continue ;;
+	    esac
+	    ;;
+	  -* ) ac_must_keep_next=true ;;
+	esac
+      fi
+      as_fn_append ac_configure_args " '$ac_arg'"
+      ;;
+    esac
+  done
+done
+{ ac_configure_args0=; unset ac_configure_args0;}
+{ ac_configure_args1=; unset ac_configure_args1;}
+
+# When interrupted or exit'd, cleanup temporary files, and complete
+# config.log.  We remove comments because anyway the quotes in there
+# would cause problems or look ugly.
+# WARNING: Use '\'' to represent an apostrophe within the trap.
+# WARNING: Do not start the trap code with a newline, due to a FreeBSD 4.0 bug.
+trap 'exit_status=$?
+  # Sanitize IFS.
+  IFS=" ""	$as_nl"
+  # Save into config.log some information that might help in debugging.
+  {
+    echo
+
+    printf "%s\n" "## ---------------- ##
+## Cache variables. ##
+## ---------------- ##"
+    echo
+    # The following way of writing the cache mishandles newlines in values,
+(
+  for ac_var in `(set) 2>&1 | sed -n '\''s/^\([a-zA-Z_][a-zA-Z0-9_]*\)=.*/\1/p'\''`; do
+    eval ac_val=\$$ac_var
+    case $ac_val in #(
+    *${as_nl}*)
+      case $ac_var in #(
+      *_cv_*) { printf "%s\n" "$as_me:${as_lineno-$LINENO}: WARNING: cache variable $ac_var contains a newline" >&5
+printf "%s\n" "$as_me: WARNING: cache variable $ac_var contains a newline" >&2;} ;;
+      esac
+      case $ac_var in #(
+      _ | IFS | as_nl) ;; #(
+      BASH_ARGV | BASH_SOURCE) eval $ac_var= ;; #(
+      *) { eval $ac_var=; unset $ac_var;} ;;
+      esac ;;
+    esac
+  done
+  (set) 2>&1 |
+    case $as_nl`(ac_space='\'' '\''; set) 2>&1` in #(
+    *${as_nl}ac_space=\ *)
+      sed -n \
+	"s/'\''/'\''\\\\'\'''\''/g;
+	  s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='\''\\2'\''/p"
+      ;; #(
+    *)
+      sed -n "/^[_$as_cr_alnum]*_cv_[_$as_cr_alnum]*=/p"
+      ;;
+    esac |
+    sort
+)
+    echo
+
+    printf "%s\n" "## ----------------- ##
+## Output variables. ##
+## ----------------- ##"
+    echo
+    for ac_var in $ac_subst_vars
+    do
+      eval ac_val=\$$ac_var
+      case $ac_val in
+      *\'\''*) ac_val=`printf "%s\n" "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;;
+      esac
+      printf "%s\n" "$ac_var='\''$ac_val'\''"
+    done | sort
+    echo
+
+    if test -n "$ac_subst_files"; then
+      printf "%s\n" "## ------------------- ##
+## File substitutions. ##
+## ------------------- ##"
+      echo
+      for ac_var in $ac_subst_files
+      do
+	eval ac_val=\$$ac_var
+	case $ac_val in
+	*\'\''*) ac_val=`printf "%s\n" "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;;
+	esac
+	printf "%s\n" "$ac_var='\''$ac_val'\''"
+      done | sort
+      echo
+    fi
+
+    if test -s confdefs.h; then
+      printf "%s\n" "## ----------- ##
+## confdefs.h. ##
+## ----------- ##"
+      echo
+      cat confdefs.h
+      echo
+    fi
+    test "$ac_signal" != 0 &&
+      printf "%s\n" "$as_me: caught signal $ac_signal"
+    printf "%s\n" "$as_me: exit $exit_status"
+  } >&5
+  rm -f core *.core core.conftest.* &&
+    rm -f -r conftest* confdefs* conf$$* $ac_clean_files &&
+    exit $exit_status
+' 0
+for ac_signal in 1 2 13 15; do
+  trap 'ac_signal='$ac_signal'; as_fn_exit 1' $ac_signal
+done
+ac_signal=0
+
+# confdefs.h avoids OS command line length limits that DEFS can exceed.
+rm -f -r conftest* confdefs.h
+
+printf "%s\n" "/* confdefs.h */" > confdefs.h
+
+# Predefined preprocessor variables.
+
+printf "%s\n" "#define PACKAGE_NAME \"$PACKAGE_NAME\"" >>confdefs.h
+
+printf "%s\n" "#define PACKAGE_TARNAME \"$PACKAGE_TARNAME\"" >>confdefs.h
+
+printf "%s\n" "#define PACKAGE_VERSION \"$PACKAGE_VERSION\"" >>confdefs.h
+
+printf "%s\n" "#define PACKAGE_STRING \"$PACKAGE_STRING\"" >>confdefs.h
+
+printf "%s\n" "#define PACKAGE_BUGREPORT \"$PACKAGE_BUGREPORT\"" >>confdefs.h
+
+printf "%s\n" "#define PACKAGE_URL \"$PACKAGE_URL\"" >>confdefs.h
+
+
+# Let the site file select an alternate cache file if it wants to.
+# Prefer an explicitly selected file to automatically selected ones.
+if test -n "$CONFIG_SITE"; then
+  ac_site_files="$CONFIG_SITE"
+elif test "x$prefix" != xNONE; then
+  ac_site_files="$prefix/share/config.site $prefix/etc/config.site"
+else
+  ac_site_files="$ac_default_prefix/share/config.site $ac_default_prefix/etc/config.site"
+fi
+
+for ac_site_file in $ac_site_files
+do
+  case $ac_site_file in #(
+  */*) :
+     ;; #(
+  *) :
+    ac_site_file=./$ac_site_file ;;
+esac
+  if test -f "$ac_site_file" && test -r "$ac_site_file"; then
+    { printf "%s\n" "$as_me:${as_lineno-$LINENO}: loading site script $ac_site_file" >&5
+printf "%s\n" "$as_me: loading site script $ac_site_file" >&6;}
+    sed 's/^/| /' "$ac_site_file" >&5
+    . "$ac_site_file" \
+      || { { printf "%s\n" "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
+printf "%s\n" "$as_me: error: in \`$ac_pwd':" >&2;}
+as_fn_error $? "failed to load site script $ac_site_file
+See \`config.log' for more details" "$LINENO" 5; }
+  fi
+done
+
+if test -r "$cache_file"; then
+  # Some versions of bash will fail to source /dev/null (special files
+  # actually), so we avoid doing that.  DJGPP emulates it as a regular file.
+  if test /dev/null != "$cache_file" && test -f "$cache_file"; then
+    { printf "%s\n" "$as_me:${as_lineno-$LINENO}: loading cache $cache_file" >&5
+printf "%s\n" "$as_me: loading cache $cache_file" >&6;}
+    case $cache_file in
+      [\\/]* | ?:[\\/]* ) . "$cache_file";;
+      *)                      . "./$cache_file";;
+    esac
+  fi
+else
+  { printf "%s\n" "$as_me:${as_lineno-$LINENO}: creating cache $cache_file" >&5
+printf "%s\n" "$as_me: creating cache $cache_file" >&6;}
+  >$cache_file
+fi
+
+
+# Auxiliary files required by this configure script.
+ac_aux_files="missing install-sh"
+
+# Locations in which to look for auxiliary files.
+ac_aux_dir_candidates="${srcdir}${PATH_SEPARATOR}${srcdir}/..${PATH_SEPARATOR}${srcdir}/../.."
+
+# Search for a directory containing all of the required auxiliary files,
+# $ac_aux_files, from the $PATH-style list $ac_aux_dir_candidates.
+# If we don't find one directory that contains all the files we need,
+# we report the set of missing files from the *first* directory in
+# $ac_aux_dir_candidates and give up.
+ac_missing_aux_files=""
+ac_first_candidate=:
+printf "%s\n" "$as_me:${as_lineno-$LINENO}: looking for aux files: $ac_aux_files" >&5
+as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
+as_found=false
+for as_dir in $ac_aux_dir_candidates
+do
+  IFS=$as_save_IFS
+  case $as_dir in #(((
+    '') as_dir=./ ;;
+    */) ;;
+    *) as_dir=$as_dir/ ;;
+  esac
+  as_found=:
+
+  printf "%s\n" "$as_me:${as_lineno-$LINENO}:  trying $as_dir" >&5
+  ac_aux_dir_found=yes
+  ac_install_sh=
+  for ac_aux in $ac_aux_files
+  do
+    # As a special case, if "install-sh" is required, that requirement
+    # can be satisfied by any of "install-sh", "install.sh", or "shtool",
+    # and $ac_install_sh is set appropriately for whichever one is found.
+    if test x"$ac_aux" = x"install-sh"
+    then
+      if test -f "${as_dir}install-sh"; then
+        printf "%s\n" "$as_me:${as_lineno-$LINENO}:   ${as_dir}install-sh found" >&5
+        ac_install_sh="${as_dir}install-sh -c"
+      elif test -f "${as_dir}install.sh"; then
+        printf "%s\n" "$as_me:${as_lineno-$LINENO}:   ${as_dir}install.sh found" >&5
+        ac_install_sh="${as_dir}install.sh -c"
+      elif test -f "${as_dir}shtool"; then
+        printf "%s\n" "$as_me:${as_lineno-$LINENO}:   ${as_dir}shtool found" >&5
+        ac_install_sh="${as_dir}shtool install -c"
+      else
+        ac_aux_dir_found=no
+        if $ac_first_candidate; then
+          ac_missing_aux_files="${ac_missing_aux_files} install-sh"
+        else
+          break
+        fi
+      fi
+    else
+      if test -f "${as_dir}${ac_aux}"; then
+        printf "%s\n" "$as_me:${as_lineno-$LINENO}:   ${as_dir}${ac_aux} found" >&5
+      else
+        ac_aux_dir_found=no
+        if $ac_first_candidate; then
+          ac_missing_aux_files="${ac_missing_aux_files} ${ac_aux}"
+        else
+          break
+        fi
+      fi
+    fi
+  done
+  if test "$ac_aux_dir_found" = yes; then
+    ac_aux_dir="$as_dir"
+    break
+  fi
+  ac_first_candidate=false
+
+  as_found=false
+done
+IFS=$as_save_IFS
+if $as_found
+then :
+
+else $as_nop
+  as_fn_error $? "cannot find required auxiliary files:$ac_missing_aux_files" "$LINENO" 5
+fi
+
+
+# These three variables are undocumented and unsupported,
+# and are intended to be withdrawn in a future Autoconf release.
+# They can cause serious problems if a builder's source tree is in a directory
+# whose full name contains unusual characters.
+if test -f "${ac_aux_dir}config.guess"; then
+  ac_config_guess="$SHELL ${ac_aux_dir}config.guess"
+fi
+if test -f "${ac_aux_dir}config.sub"; then
+  ac_config_sub="$SHELL ${ac_aux_dir}config.sub"
+fi
+if test -f "$ac_aux_dir/configure"; then
+  ac_configure="$SHELL ${ac_aux_dir}configure"
+fi
+
+# Check that the precious variables saved in the cache have kept the same
+# value.
+ac_cache_corrupted=false
+for ac_var in $ac_precious_vars; do
+  eval ac_old_set=\$ac_cv_env_${ac_var}_set
+  eval ac_new_set=\$ac_env_${ac_var}_set
+  eval ac_old_val=\$ac_cv_env_${ac_var}_value
+  eval ac_new_val=\$ac_env_${ac_var}_value
+  case $ac_old_set,$ac_new_set in
+    set,)
+      { printf "%s\n" "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&5
+printf "%s\n" "$as_me: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&2;}
+      ac_cache_corrupted=: ;;
+    ,set)
+      { printf "%s\n" "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' was not set in the previous run" >&5
+printf "%s\n" "$as_me: error: \`$ac_var' was not set in the previous run" >&2;}
+      ac_cache_corrupted=: ;;
+    ,);;
+    *)
+      if test "x$ac_old_val" != "x$ac_new_val"; then
+	# differences in whitespace do not lead to failure.
+	ac_old_val_w=`echo x $ac_old_val`
+	ac_new_val_w=`echo x $ac_new_val`
+	if test "$ac_old_val_w" != "$ac_new_val_w"; then
+	  { printf "%s\n" "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' has changed since the previous run:" >&5
+printf "%s\n" "$as_me: error: \`$ac_var' has changed since the previous run:" >&2;}
+	  ac_cache_corrupted=:
+	else
+	  { printf "%s\n" "$as_me:${as_lineno-$LINENO}: warning: ignoring whitespace changes in \`$ac_var' since the previous run:" >&5
+printf "%s\n" "$as_me: warning: ignoring whitespace changes in \`$ac_var' since the previous run:" >&2;}
+	  eval $ac_var=\$ac_old_val
+	fi
+	{ printf "%s\n" "$as_me:${as_lineno-$LINENO}:   former value:  \`$ac_old_val'" >&5
+printf "%s\n" "$as_me:   former value:  \`$ac_old_val'" >&2;}
+	{ printf "%s\n" "$as_me:${as_lineno-$LINENO}:   current value: \`$ac_new_val'" >&5
+printf "%s\n" "$as_me:   current value: \`$ac_new_val'" >&2;}
+      fi;;
+  esac
+  # Pass precious variables to config.status.
+  if test "$ac_new_set" = set; then
+    case $ac_new_val in
+    *\'*) ac_arg=$ac_var=`printf "%s\n" "$ac_new_val" | sed "s/'/'\\\\\\\\''/g"` ;;
+    *) ac_arg=$ac_var=$ac_new_val ;;
+    esac
+    case " $ac_configure_args " in
+      *" '$ac_arg' "*) ;; # Avoid dups.  Use of quotes ensures accuracy.
+      *) as_fn_append ac_configure_args " '$ac_arg'" ;;
+    esac
+  fi
+done
+if $ac_cache_corrupted; then
+  { printf "%s\n" "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
+printf "%s\n" "$as_me: error: in \`$ac_pwd':" >&2;}
+  { printf "%s\n" "$as_me:${as_lineno-$LINENO}: error: changes in the environment can compromise the build" >&5
+printf "%s\n" "$as_me: error: changes in the environment can compromise the build" >&2;}
+  as_fn_error $? "run \`${MAKE-make} distclean' and/or \`rm $cache_file'
+	    and start over" "$LINENO" 5
+fi
+## -------------------- ##
+## Main body of script. ##
+## -------------------- ##
+
+ac_ext=c
+ac_cpp='$CPP $CPPFLAGS'
+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
+ac_compiler_gnu=$ac_cv_c_compiler_gnu
+
+
+am__api_version='1.16'
+
+
+
+  # Find a good install program.  We prefer a C program (faster),
+# so one script is as good as another.  But avoid the broken or
+# incompatible versions:
+# SysV /etc/install, /usr/sbin/install
+# SunOS /usr/etc/install
+# IRIX /sbin/install
+# AIX /bin/install
+# AmigaOS /C/install, which installs bootblocks on floppy discs
+# AIX 4 /usr/bin/installbsd, which doesn't work without a -g flag
+# AFS /usr/afsws/bin/install, which mishandles nonexistent args
+# SVR4 /usr/ucb/install, which tries to use the nonexistent group "staff"
+# OS/2's system install, which has a completely different semantic
+# ./install, which can be erroneously created by make from ./install.sh.
+# Reject install programs that cannot install multiple files.
+{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for a BSD-compatible install" >&5
+printf %s "checking for a BSD-compatible install... " >&6; }
+if test -z "$INSTALL"; then
+if test ${ac_cv_path_install+y}
+then :
+  printf %s "(cached) " >&6
+else $as_nop
+  as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
+for as_dir in $PATH
+do
+  IFS=$as_save_IFS
+  case $as_dir in #(((
+    '') as_dir=./ ;;
+    */) ;;
+    *) as_dir=$as_dir/ ;;
+  esac
+    # Account for fact that we put trailing slashes in our PATH walk.
+case $as_dir in #((
+  ./ | /[cC]/* | \
+  /etc/* | /usr/sbin/* | /usr/etc/* | /sbin/* | /usr/afsws/bin/* | \
+  ?:[\\/]os2[\\/]install[\\/]* | ?:[\\/]OS2[\\/]INSTALL[\\/]* | \
+  /usr/ucb/* ) ;;
+  *)
+    # OSF1 and SCO ODT 3.0 have their own names for install.
+    # Don't use installbsd from OSF since it installs stuff as root
+    # by default.
+    for ac_prog in ginstall scoinst install; do
+      for ac_exec_ext in '' $ac_executable_extensions; do
+	if as_fn_executable_p "$as_dir$ac_prog$ac_exec_ext"; then
+	  if test $ac_prog = install &&
+	    grep dspmsg "$as_dir$ac_prog$ac_exec_ext" >/dev/null 2>&1; then
+	    # AIX install.  It has an incompatible calling convention.
+	    :
+	  elif test $ac_prog = install &&
+	    grep pwplus "$as_dir$ac_prog$ac_exec_ext" >/dev/null 2>&1; then
+	    # program-specific install script used by HP pwplus--don't use.
+	    :
+	  else
+	    rm -rf conftest.one conftest.two conftest.dir
+	    echo one > conftest.one
+	    echo two > conftest.two
+	    mkdir conftest.dir
+	    if "$as_dir$ac_prog$ac_exec_ext" -c conftest.one conftest.two "`pwd`/conftest.dir/" &&
+	      test -s conftest.one && test -s conftest.two &&
+	      test -s conftest.dir/conftest.one &&
+	      test -s conftest.dir/conftest.two
+	    then
+	      ac_cv_path_install="$as_dir$ac_prog$ac_exec_ext -c"
+	      break 3
+	    fi
+	  fi
+	fi
+      done
+    done
+    ;;
+esac
+
+  done
+IFS=$as_save_IFS
+
+rm -rf conftest.one conftest.two conftest.dir
+
+fi
+  if test ${ac_cv_path_install+y}; then
+    INSTALL=$ac_cv_path_install
+  else
+    # As a last resort, use the slow shell script.  Don't cache a
+    # value for INSTALL within a source directory, because that will
+    # break other packages using the cache if that directory is
+    # removed, or if the value is a relative name.
+    INSTALL=$ac_install_sh
+  fi
+fi
+{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $INSTALL" >&5
+printf "%s\n" "$INSTALL" >&6; }
+
+# Use test -z because SunOS4 sh mishandles braces in ${var-val}.
+# It thinks the first close brace ends the variable substitution.
+test -z "$INSTALL_PROGRAM" && INSTALL_PROGRAM='${INSTALL}'
+
+test -z "$INSTALL_SCRIPT" && INSTALL_SCRIPT='${INSTALL}'
+
+test -z "$INSTALL_DATA" && INSTALL_DATA='${INSTALL} -m 644'
+
+{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether build environment is sane" >&5
+printf %s "checking whether build environment is sane... " >&6; }
+# Reject unsafe characters in $srcdir or the absolute working directory
+# name.  Accept space and tab only in the latter.
+am_lf='
+'
+case `pwd` in
+  *[\\\"\#\$\&\'\`$am_lf]*)
+    as_fn_error $? "unsafe absolute working directory name" "$LINENO" 5;;
+esac
+case $srcdir in
+  *[\\\"\#\$\&\'\`$am_lf\ \	]*)
+    as_fn_error $? "unsafe srcdir value: '$srcdir'" "$LINENO" 5;;
+esac
+
+# Do 'set' in a subshell so we don't clobber the current shell's
+# arguments.  Must try -L first in case configure is actually a
+# symlink; some systems play weird games with the mod time of symlinks
+# (eg FreeBSD returns the mod time of the symlink's containing
+# directory).
+if (
+   am_has_slept=no
+   for am_try in 1 2; do
+     echo "timestamp, slept: $am_has_slept" > conftest.file
+     set X `ls -Lt "$srcdir/configure" conftest.file 2> /dev/null`
+     if test "$*" = "X"; then
+	# -L didn't work.
+	set X `ls -t "$srcdir/configure" conftest.file`
+     fi
+     if test "$*" != "X $srcdir/configure conftest.file" \
+	&& test "$*" != "X conftest.file $srcdir/configure"; then
+
+	# If neither matched, then we have a broken ls.  This can happen
+	# if, for instance, CONFIG_SHELL is bash and it inherits a
+	# broken ls alias from the environment.  This has actually
+	# happened.  Such a system could not be considered "sane".
+	as_fn_error $? "ls -t appears to fail.  Make sure there is not a broken
+  alias in your environment" "$LINENO" 5
+     fi
+     if test "$2" = conftest.file || test $am_try -eq 2; then
+       break
+     fi
+     # Just in case.
+     sleep 1
+     am_has_slept=yes
+   done
+   test "$2" = conftest.file
+   )
+then
+   # Ok.
+   :
+else
+   as_fn_error $? "newly created file is older than distributed files!
+Check your system clock" "$LINENO" 5
+fi
+{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: yes" >&5
+printf "%s\n" "yes" >&6; }
+# If we didn't sleep, we still need to ensure time stamps of config.status and
+# generated files are strictly newer.
+am_sleep_pid=
+if grep 'slept: no' conftest.file >/dev/null 2>&1; then
+  ( sleep 1 ) &
+  am_sleep_pid=$!
+fi
+
+rm -f conftest.file
+
+test "$program_prefix" != NONE &&
+  program_transform_name="s&^&$program_prefix&;$program_transform_name"
+# Use a double $ so make ignores it.
+test "$program_suffix" != NONE &&
+  program_transform_name="s&\$&$program_suffix&;$program_transform_name"
+# Double any \ or $.
+# By default was `s,x,x', remove it if useless.
+ac_script='s/[\\$]/&&/g;s/;s,x,x,$//'
+program_transform_name=`printf "%s\n" "$program_transform_name" | sed "$ac_script"`
+
+
+# Expand $ac_aux_dir to an absolute path.
+am_aux_dir=`cd "$ac_aux_dir" && pwd`
+
+
+  if test x"${MISSING+set}" != xset; then
+  MISSING="\${SHELL} '$am_aux_dir/missing'"
+fi
+# Use eval to expand $SHELL
+if eval "$MISSING --is-lightweight"; then
+  am_missing_run="$MISSING "
+else
+  am_missing_run=
+  { printf "%s\n" "$as_me:${as_lineno-$LINENO}: WARNING: 'missing' script is too old or missing" >&5
+printf "%s\n" "$as_me: WARNING: 'missing' script is too old or missing" >&2;}
+fi
+
+if test x"${install_sh+set}" != xset; then
+  case $am_aux_dir in
+  *\ * | *\	*)
+    install_sh="\${SHELL} '$am_aux_dir/install-sh'" ;;
+  *)
+    install_sh="\${SHELL} $am_aux_dir/install-sh"
+  esac
+fi
+
+# Installed binaries are usually stripped using 'strip' when the user
+# run "make install-strip".  However 'strip' might not be the right
+# tool to use in cross-compilation environments, therefore Automake
+# will honor the 'STRIP' environment variable to overrule this program.
+if test "$cross_compiling" != no; then
+  if test -n "$ac_tool_prefix"; then
+  # Extract the first word of "${ac_tool_prefix}strip", so it can be a program name with args.
+set dummy ${ac_tool_prefix}strip; ac_word=$2
+{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
+printf %s "checking for $ac_word... " >&6; }
+if test ${ac_cv_prog_STRIP+y}
+then :
+  printf %s "(cached) " >&6
+else $as_nop
+  if test -n "$STRIP"; then
+  ac_cv_prog_STRIP="$STRIP" # Let the user override the test.
+else
+as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
+for as_dir in $PATH
+do
+  IFS=$as_save_IFS
+  case $as_dir in #(((
+    '') as_dir=./ ;;
+    */) ;;
+    *) as_dir=$as_dir/ ;;
+  esac
+    for ac_exec_ext in '' $ac_executable_extensions; do
+  if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then
+    ac_cv_prog_STRIP="${ac_tool_prefix}strip"
+    printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5
+    break 2
+  fi
+done
+  done
+IFS=$as_save_IFS
+
+fi
+fi
+STRIP=$ac_cv_prog_STRIP
+if test -n "$STRIP"; then
+  { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $STRIP" >&5
+printf "%s\n" "$STRIP" >&6; }
+else
+  { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5
+printf "%s\n" "no" >&6; }
+fi
+
+
+fi
+if test -z "$ac_cv_prog_STRIP"; then
+  ac_ct_STRIP=$STRIP
+  # Extract the first word of "strip", so it can be a program name with args.
+set dummy strip; ac_word=$2
+{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
+printf %s "checking for $ac_word... " >&6; }
+if test ${ac_cv_prog_ac_ct_STRIP+y}
+then :
+  printf %s "(cached) " >&6
+else $as_nop
+  if test -n "$ac_ct_STRIP"; then
+  ac_cv_prog_ac_ct_STRIP="$ac_ct_STRIP" # Let the user override the test.
+else
+as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
+for as_dir in $PATH
+do
+  IFS=$as_save_IFS
+  case $as_dir in #(((
+    '') as_dir=./ ;;
+    */) ;;
+    *) as_dir=$as_dir/ ;;
+  esac
+    for ac_exec_ext in '' $ac_executable_extensions; do
+  if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then
+    ac_cv_prog_ac_ct_STRIP="strip"
+    printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5
+    break 2
+  fi
+done
+  done
+IFS=$as_save_IFS
+
+fi
+fi
+ac_ct_STRIP=$ac_cv_prog_ac_ct_STRIP
+if test -n "$ac_ct_STRIP"; then
+  { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_ct_STRIP" >&5
+printf "%s\n" "$ac_ct_STRIP" >&6; }
+else
+  { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5
+printf "%s\n" "no" >&6; }
+fi
+
+  if test "x$ac_ct_STRIP" = x; then
+    STRIP=":"
+  else
+    case $cross_compiling:$ac_tool_warned in
+yes:)
+{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5
+printf "%s\n" "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;}
+ac_tool_warned=yes ;;
+esac
+    STRIP=$ac_ct_STRIP
+  fi
+else
+  STRIP="$ac_cv_prog_STRIP"
+fi
+
+fi
+INSTALL_STRIP_PROGRAM="\$(install_sh) -c -s"
+
+
+  { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for a race-free mkdir -p" >&5
+printf %s "checking for a race-free mkdir -p... " >&6; }
+if test -z "$MKDIR_P"; then
+  if test ${ac_cv_path_mkdir+y}
+then :
+  printf %s "(cached) " >&6
+else $as_nop
+  as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
+for as_dir in $PATH$PATH_SEPARATOR/opt/sfw/bin
+do
+  IFS=$as_save_IFS
+  case $as_dir in #(((
+    '') as_dir=./ ;;
+    */) ;;
+    *) as_dir=$as_dir/ ;;
+  esac
+    for ac_prog in mkdir gmkdir; do
+	 for ac_exec_ext in '' $ac_executable_extensions; do
+	   as_fn_executable_p "$as_dir$ac_prog$ac_exec_ext" || continue
+	   case `"$as_dir$ac_prog$ac_exec_ext" --version 2>&1` in #(
+	     'mkdir ('*'coreutils) '* | \
+	     'BusyBox '* | \
+	     'mkdir (fileutils) '4.1*)
+	       ac_cv_path_mkdir=$as_dir$ac_prog$ac_exec_ext
+	       break 3;;
+	   esac
+	 done
+       done
+  done
+IFS=$as_save_IFS
+
+fi
+
+  test -d ./--version && rmdir ./--version
+  if test ${ac_cv_path_mkdir+y}; then
+    MKDIR_P="$ac_cv_path_mkdir -p"
+  else
+    # As a last resort, use the slow shell script.  Don't cache a
+    # value for MKDIR_P within a source directory, because that will
+    # break other packages using the cache if that directory is
+    # removed, or if the value is a relative name.
+    MKDIR_P="$ac_install_sh -d"
+  fi
+fi
+{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $MKDIR_P" >&5
+printf "%s\n" "$MKDIR_P" >&6; }
+
+for ac_prog in gawk mawk nawk awk
+do
+  # Extract the first word of "$ac_prog", so it can be a program name with args.
+set dummy $ac_prog; ac_word=$2
+{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
+printf %s "checking for $ac_word... " >&6; }
+if test ${ac_cv_prog_AWK+y}
+then :
+  printf %s "(cached) " >&6
+else $as_nop
+  if test -n "$AWK"; then
+  ac_cv_prog_AWK="$AWK" # Let the user override the test.
+else
+as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
+for as_dir in $PATH
+do
+  IFS=$as_save_IFS
+  case $as_dir in #(((
+    '') as_dir=./ ;;
+    */) ;;
+    *) as_dir=$as_dir/ ;;
+  esac
+    for ac_exec_ext in '' $ac_executable_extensions; do
+  if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then
+    ac_cv_prog_AWK="$ac_prog"
+    printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5
+    break 2
+  fi
+done
+  done
+IFS=$as_save_IFS
+
+fi
+fi
+AWK=$ac_cv_prog_AWK
+if test -n "$AWK"; then
+  { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $AWK" >&5
+printf "%s\n" "$AWK" >&6; }
+else
+  { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5
+printf "%s\n" "no" >&6; }
+fi
+
+
+  test -n "$AWK" && break
+done
+
+{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether ${MAKE-make} sets \$(MAKE)" >&5
+printf %s "checking whether ${MAKE-make} sets \$(MAKE)... " >&6; }
+set x ${MAKE-make}
+ac_make=`printf "%s\n" "$2" | sed 's/+/p/g; s/[^a-zA-Z0-9_]/_/g'`
+if eval test \${ac_cv_prog_make_${ac_make}_set+y}
+then :
+  printf %s "(cached) " >&6
+else $as_nop
+  cat >conftest.make <<\_ACEOF
+SHELL = /bin/sh
+all:
+	@echo '@@@%%%=$(MAKE)=@@@%%%'
+_ACEOF
+# GNU make sometimes prints "make[1]: Entering ...", which would confuse us.
+case `${MAKE-make} -f conftest.make 2>/dev/null` in
+  *@@@%%%=?*=@@@%%%*)
+    eval ac_cv_prog_make_${ac_make}_set=yes;;
+  *)
+    eval ac_cv_prog_make_${ac_make}_set=no;;
+esac
+rm -f conftest.make
+fi
+if eval test \$ac_cv_prog_make_${ac_make}_set = yes; then
+  { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: yes" >&5
+printf "%s\n" "yes" >&6; }
+  SET_MAKE=
+else
+  { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5
+printf "%s\n" "no" >&6; }
+  SET_MAKE="MAKE=${MAKE-make}"
+fi
+
+rm -rf .tst 2>/dev/null
+mkdir .tst 2>/dev/null
+if test -d .tst; then
+  am__leading_dot=.
+else
+  am__leading_dot=_
+fi
+rmdir .tst 2>/dev/null
+
+# Check whether --enable-silent-rules was given.
+if test ${enable_silent_rules+y}
+then :
+  enableval=$enable_silent_rules;
+fi
+
+case $enable_silent_rules in # (((
+  yes) AM_DEFAULT_VERBOSITY=0;;
+   no) AM_DEFAULT_VERBOSITY=1;;
+    *) AM_DEFAULT_VERBOSITY=1;;
+esac
+am_make=${MAKE-make}
+{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether $am_make supports nested variables" >&5
+printf %s "checking whether $am_make supports nested variables... " >&6; }
+if test ${am_cv_make_support_nested_variables+y}
+then :
+  printf %s "(cached) " >&6
+else $as_nop
+  if printf "%s\n" 'TRUE=$(BAR$(V))
+BAR0=false
+BAR1=true
+V=1
+am__doit:
+	@$(TRUE)
+.PHONY: am__doit' | $am_make -f - >/dev/null 2>&1; then
+  am_cv_make_support_nested_variables=yes
+else
+  am_cv_make_support_nested_variables=no
+fi
+fi
+{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $am_cv_make_support_nested_variables" >&5
+printf "%s\n" "$am_cv_make_support_nested_variables" >&6; }
+if test $am_cv_make_support_nested_variables = yes; then
+    AM_V='$(V)'
+  AM_DEFAULT_V='$(AM_DEFAULT_VERBOSITY)'
+else
+  AM_V=$AM_DEFAULT_VERBOSITY
+  AM_DEFAULT_V=$AM_DEFAULT_VERBOSITY
+fi
+AM_BACKSLASH='\'
+
+if test "`cd $srcdir && pwd`" != "`pwd`"; then
+  # Use -I$(srcdir) only when $(srcdir) != ., so that make's output
+  # is not polluted with repeated "-I."
+  am__isrc=' -I$(srcdir)'
+  # test to see if srcdir already configured
+  if test -f $srcdir/config.status; then
+    as_fn_error $? "source directory already configured; run \"make distclean\" there first" "$LINENO" 5
+  fi
+fi
+
+# test whether we have cygpath
+if test -z "$CYGPATH_W"; then
+  if (cygpath --version) >/dev/null 2>/dev/null; then
+    CYGPATH_W='cygpath -w'
+  else
+    CYGPATH_W=echo
+  fi
+fi
+
+
+# Define the identity of the package.
+ PACKAGE='apertium-hin'
+ VERSION='0.1.0'
+
+
+printf "%s\n" "#define PACKAGE \"$PACKAGE\"" >>confdefs.h
+
+
+printf "%s\n" "#define VERSION \"$VERSION\"" >>confdefs.h
+
+# Some tools Automake needs.
+
+ACLOCAL=${ACLOCAL-"${am_missing_run}aclocal-${am__api_version}"}
+
+
+AUTOCONF=${AUTOCONF-"${am_missing_run}autoconf"}
+
+
+AUTOMAKE=${AUTOMAKE-"${am_missing_run}automake-${am__api_version}"}
+
+
+AUTOHEADER=${AUTOHEADER-"${am_missing_run}autoheader"}
+
+
+MAKEINFO=${MAKEINFO-"${am_missing_run}makeinfo"}
+
+# For better backward compatibility.  To be removed once Automake 1.9.x
+# dies out for good.  For more background, see:
+# <https://lists.gnu.org/archive/html/automake/2012-07/msg00001.html>
+# <https://lists.gnu.org/archive/html/automake/2012-07/msg00014.html>
+mkdir_p='$(MKDIR_P)'
+
+# We need awk for the "check" target (and possibly the TAP driver).  The
+# system "awk" is bad on some platforms.
+# Always define AMTAR for backward compatibility.  Yes, it's still used
+# in the wild :-(  We should find a proper way to deprecate it ...
+AMTAR='$${TAR-tar}'
+
+
+# We'll loop over all known methods to create a tar archive until one works.
+_am_tools='gnutar  pax cpio none'
+
+am__tar='$${TAR-tar} chof - "$$tardir"' am__untar='$${TAR-tar} xf -'
+
+
+
+
+
+# Variables for tags utilities; see am/tags.am
+if test -z "$CTAGS"; then
+  CTAGS=ctags
+fi
+
+if test -z "$ETAGS"; then
+  ETAGS=etags
+fi
+
+if test -z "$CSCOPE"; then
+  CSCOPE=cscope
+fi
+
+
+
+# POSIX will say in a future version that running "rm -f" with no argument
+# is OK; and we want to be able to make that assumption in our Makefile
+# recipes.  So use an aggressive probe to check that the usage we want is
+# actually supported "in the wild" to an acceptable degree.
+# See automake bug#10828.
+# To make any issue more visible, cause the running configure to be aborted
+# by default if the 'rm' program in use doesn't match our expectations; the
+# user can still override this though.
+if rm -f && rm -fr && rm -rf; then : OK; else
+  cat >&2 <<'END'
+Oops!
+
+Your 'rm' program seems unable to run without file operands specified
+on the command line, even when the '-f' option is present.  This is contrary
+to the behaviour of most rm programs out there, and not conforming with
+the upcoming POSIX standard: <http://austingroupbugs.net/view.php?id=542>
+
+Please tell bug-automake@gnu.org about your system, including the value
+of your $PATH and any error possibly output before this message.  This
+can help us improve future automake versions.
+
+END
+  if test x"$ACCEPT_INFERIOR_RM_PROGRAM" = x"yes"; then
+    echo 'Configuration will proceed anyway, since you have set the' >&2
+    echo 'ACCEPT_INFERIOR_RM_PROGRAM variable to "yes"' >&2
+    echo >&2
+  else
+    cat >&2 <<'END'
+Aborting the configuration process, to ensure you take notice of the issue.
+
+You can download and install GNU coreutils to get an 'rm' implementation
+that behaves properly: <https://www.gnu.org/software/coreutils/>.
+
+If you want to complete the configuration process using your problematic
+'rm' anyway, export the environment variable ACCEPT_INFERIOR_RM_PROGRAM
+to "yes", and re-run configure.
+
+END
+    as_fn_error $? "Your 'rm' program is bad, sorry." "$LINENO" 5
+  fi
+fi
+
+
+
+# Check whether --enable-ospell was given.
+if test ${enable_ospell+y}
+then :
+  enableval=$enable_ospell; hfstospell=${enableval}
+else $as_nop
+  hfstospell=no
+fi
+
+
+
+
+
+
+
+
+if test "x$ac_cv_env_PKG_CONFIG_set" != "xset"; then
+	if test -n "$ac_tool_prefix"; then
+  # Extract the first word of "${ac_tool_prefix}pkg-config", so it can be a program name with args.
+set dummy ${ac_tool_prefix}pkg-config; ac_word=$2
+{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
+printf %s "checking for $ac_word... " >&6; }
+if test ${ac_cv_path_PKG_CONFIG+y}
+then :
+  printf %s "(cached) " >&6
+else $as_nop
+  case $PKG_CONFIG in
+  [\\/]* | ?:[\\/]*)
+  ac_cv_path_PKG_CONFIG="$PKG_CONFIG" # Let the user override the test with a path.
+  ;;
+  *)
+  as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
+for as_dir in $PATH
+do
+  IFS=$as_save_IFS
+  case $as_dir in #(((
+    '') as_dir=./ ;;
+    */) ;;
+    *) as_dir=$as_dir/ ;;
+  esac
+    for ac_exec_ext in '' $ac_executable_extensions; do
+  if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then
+    ac_cv_path_PKG_CONFIG="$as_dir$ac_word$ac_exec_ext"
+    printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5
+    break 2
+  fi
+done
+  done
+IFS=$as_save_IFS
+
+  ;;
+esac
+fi
+PKG_CONFIG=$ac_cv_path_PKG_CONFIG
+if test -n "$PKG_CONFIG"; then
+  { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $PKG_CONFIG" >&5
+printf "%s\n" "$PKG_CONFIG" >&6; }
+else
+  { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5
+printf "%s\n" "no" >&6; }
+fi
+
+
+fi
+if test -z "$ac_cv_path_PKG_CONFIG"; then
+  ac_pt_PKG_CONFIG=$PKG_CONFIG
+  # Extract the first word of "pkg-config", so it can be a program name with args.
+set dummy pkg-config; ac_word=$2
+{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
+printf %s "checking for $ac_word... " >&6; }
+if test ${ac_cv_path_ac_pt_PKG_CONFIG+y}
+then :
+  printf %s "(cached) " >&6
+else $as_nop
+  case $ac_pt_PKG_CONFIG in
+  [\\/]* | ?:[\\/]*)
+  ac_cv_path_ac_pt_PKG_CONFIG="$ac_pt_PKG_CONFIG" # Let the user override the test with a path.
+  ;;
+  *)
+  as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
+for as_dir in $PATH
+do
+  IFS=$as_save_IFS
+  case $as_dir in #(((
+    '') as_dir=./ ;;
+    */) ;;
+    *) as_dir=$as_dir/ ;;
+  esac
+    for ac_exec_ext in '' $ac_executable_extensions; do
+  if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then
+    ac_cv_path_ac_pt_PKG_CONFIG="$as_dir$ac_word$ac_exec_ext"
+    printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5
+    break 2
+  fi
+done
+  done
+IFS=$as_save_IFS
+
+  ;;
+esac
+fi
+ac_pt_PKG_CONFIG=$ac_cv_path_ac_pt_PKG_CONFIG
+if test -n "$ac_pt_PKG_CONFIG"; then
+  { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_pt_PKG_CONFIG" >&5
+printf "%s\n" "$ac_pt_PKG_CONFIG" >&6; }
+else
+  { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5
+printf "%s\n" "no" >&6; }
+fi
+
+  if test "x$ac_pt_PKG_CONFIG" = x; then
+    PKG_CONFIG=""
+  else
+    case $cross_compiling:$ac_tool_warned in
+yes:)
+{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5
+printf "%s\n" "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;}
+ac_tool_warned=yes ;;
+esac
+    PKG_CONFIG=$ac_pt_PKG_CONFIG
+  fi
+else
+  PKG_CONFIG="$ac_cv_path_PKG_CONFIG"
+fi
+
+fi
+if test -n "$PKG_CONFIG"; then
+	_pkg_min_version=0.9.0
+	{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking pkg-config is at least version $_pkg_min_version" >&5
+printf %s "checking pkg-config is at least version $_pkg_min_version... " >&6; }
+	if $PKG_CONFIG --atleast-pkgconfig-version $_pkg_min_version; then
+		{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: yes" >&5
+printf "%s\n" "yes" >&6; }
+	else
+		{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5
+printf "%s\n" "no" >&6; }
+		PKG_CONFIG=""
+	fi
+fi
+if test x$hfstospell = xyes
+then :
+
+
+pkg_failed=no
+{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for hfstospell >= 0.2" >&5
+printf %s "checking for hfstospell >= 0.2... " >&6; }
+
+if test -n "$HFSTOSPELL_CFLAGS"; then
+    pkg_cv_HFSTOSPELL_CFLAGS="$HFSTOSPELL_CFLAGS"
+ elif test -n "$PKG_CONFIG"; then
+    if test -n "$PKG_CONFIG" && \
+    { { printf "%s\n" "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"hfstospell >= 0.2\""; } >&5
+  ($PKG_CONFIG --exists --print-errors "hfstospell >= 0.2") 2>&5
+  ac_status=$?
+  printf "%s\n" "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
+  test $ac_status = 0; }; then
+  pkg_cv_HFSTOSPELL_CFLAGS=`$PKG_CONFIG --cflags "hfstospell >= 0.2" 2>/dev/null`
+		      test "x$?" != "x0" && pkg_failed=yes
+else
+  pkg_failed=yes
+fi
+ else
+    pkg_failed=untried
+fi
+if test -n "$HFSTOSPELL_LIBS"; then
+    pkg_cv_HFSTOSPELL_LIBS="$HFSTOSPELL_LIBS"
+ elif test -n "$PKG_CONFIG"; then
+    if test -n "$PKG_CONFIG" && \
+    { { printf "%s\n" "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"hfstospell >= 0.2\""; } >&5
+  ($PKG_CONFIG --exists --print-errors "hfstospell >= 0.2") 2>&5
+  ac_status=$?
+  printf "%s\n" "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
+  test $ac_status = 0; }; then
+  pkg_cv_HFSTOSPELL_LIBS=`$PKG_CONFIG --libs "hfstospell >= 0.2" 2>/dev/null`
+		      test "x$?" != "x0" && pkg_failed=yes
+else
+  pkg_failed=yes
+fi
+ else
+    pkg_failed=untried
+fi
+
+
+
+if test $pkg_failed = yes; then
+        { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5
+printf "%s\n" "no" >&6; }
+
+if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then
+        _pkg_short_errors_supported=yes
+else
+        _pkg_short_errors_supported=no
+fi
+        if test $_pkg_short_errors_supported = yes; then
+                HFSTOSPELL_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "hfstospell >= 0.2" 2>&1`
+        else
+                HFSTOSPELL_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "hfstospell >= 0.2" 2>&1`
+        fi
+        # Put the nasty error message in config.log where it belongs
+        echo "$HFSTOSPELL_PKG_ERRORS" >&5
+
+        as_fn_error $? "Package requirements (hfstospell >= 0.2) were not met:
+
+$HFSTOSPELL_PKG_ERRORS
+
+Consider adjusting the PKG_CONFIG_PATH environment variable if you
+installed software in a non-standard prefix.
+
+Alternatively, you may set the environment variables HFSTOSPELL_CFLAGS
+and HFSTOSPELL_LIBS to avoid the need to call pkg-config.
+See the pkg-config man page for more details." "$LINENO" 5
+elif test $pkg_failed = untried; then
+        { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5
+printf "%s\n" "no" >&6; }
+        { { printf "%s\n" "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
+printf "%s\n" "$as_me: error: in \`$ac_pwd':" >&2;}
+as_fn_error $? "The pkg-config script could not be found or is too old.  Make sure it
+is in your PATH or set the PKG_CONFIG environment variable to the full
+path to pkg-config.
+
+Alternatively, you may set the environment variables HFSTOSPELL_CFLAGS
+and HFSTOSPELL_LIBS to avoid the need to call pkg-config.
+See the pkg-config man page for more details.
+
+To get pkg-config, see <http://pkg-config.freedesktop.org/>.
+See \`config.log' for more details" "$LINENO" 5; }
+else
+        HFSTOSPELL_CFLAGS=$pkg_cv_HFSTOSPELL_CFLAGS
+        HFSTOSPELL_LIBS=$pkg_cv_HFSTOSPELL_LIBS
+        { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: yes" >&5
+printf "%s\n" "yes" >&6; }
+
+fi
+          printf "%s\n" "#define HAVE_HFSTOSPELL 1" >>confdefs.h
+
+          CXXFLAGS="$CXXFLAGS $HFSTOSPELL_CFLAGS"
+
+fi
+ if test x$hfstospell = xyes; then
+  HAVE_HFSTOSPELL_TRUE=
+  HAVE_HFSTOSPELL_FALSE='#'
+else
+  HAVE_HFSTOSPELL_TRUE='#'
+  HAVE_HFSTOSPELL_FALSE=
+fi
+
+
+
+pkg_failed=no
+{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for apertium >= 3.6.0" >&5
+printf %s "checking for apertium >= 3.6.0... " >&6; }
+
+if test -n "$APERTIUM_CFLAGS"; then
+    pkg_cv_APERTIUM_CFLAGS="$APERTIUM_CFLAGS"
+ elif test -n "$PKG_CONFIG"; then
+    if test -n "$PKG_CONFIG" && \
+    { { printf "%s\n" "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"apertium >= 3.6.0\""; } >&5
+  ($PKG_CONFIG --exists --print-errors "apertium >= 3.6.0") 2>&5
+  ac_status=$?
+  printf "%s\n" "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
+  test $ac_status = 0; }; then
+  pkg_cv_APERTIUM_CFLAGS=`$PKG_CONFIG --cflags "apertium >= 3.6.0" 2>/dev/null`
+		      test "x$?" != "x0" && pkg_failed=yes
+else
+  pkg_failed=yes
+fi
+ else
+    pkg_failed=untried
+fi
+if test -n "$APERTIUM_LIBS"; then
+    pkg_cv_APERTIUM_LIBS="$APERTIUM_LIBS"
+ elif test -n "$PKG_CONFIG"; then
+    if test -n "$PKG_CONFIG" && \
+    { { printf "%s\n" "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"apertium >= 3.6.0\""; } >&5
+  ($PKG_CONFIG --exists --print-errors "apertium >= 3.6.0") 2>&5
+  ac_status=$?
+  printf "%s\n" "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
+  test $ac_status = 0; }; then
+  pkg_cv_APERTIUM_LIBS=`$PKG_CONFIG --libs "apertium >= 3.6.0" 2>/dev/null`
+		      test "x$?" != "x0" && pkg_failed=yes
+else
+  pkg_failed=yes
+fi
+ else
+    pkg_failed=untried
+fi
+
+
+
+if test $pkg_failed = yes; then
+        { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5
+printf "%s\n" "no" >&6; }
+
+if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then
+        _pkg_short_errors_supported=yes
+else
+        _pkg_short_errors_supported=no
+fi
+        if test $_pkg_short_errors_supported = yes; then
+                APERTIUM_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "apertium >= 3.6.0" 2>&1`
+        else
+                APERTIUM_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "apertium >= 3.6.0" 2>&1`
+        fi
+        # Put the nasty error message in config.log where it belongs
+        echo "$APERTIUM_PKG_ERRORS" >&5
+
+        as_fn_error $? "Package requirements (apertium >= 3.6.0) were not met:
+
+$APERTIUM_PKG_ERRORS
+
+Consider adjusting the PKG_CONFIG_PATH environment variable if you
+installed software in a non-standard prefix.
+
+Alternatively, you may set the environment variables APERTIUM_CFLAGS
+and APERTIUM_LIBS to avoid the need to call pkg-config.
+See the pkg-config man page for more details." "$LINENO" 5
+elif test $pkg_failed = untried; then
+        { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5
+printf "%s\n" "no" >&6; }
+        { { printf "%s\n" "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
+printf "%s\n" "$as_me: error: in \`$ac_pwd':" >&2;}
+as_fn_error $? "The pkg-config script could not be found or is too old.  Make sure it
+is in your PATH or set the PKG_CONFIG environment variable to the full
+path to pkg-config.
+
+Alternatively, you may set the environment variables APERTIUM_CFLAGS
+and APERTIUM_LIBS to avoid the need to call pkg-config.
+See the pkg-config man page for more details.
+
+To get pkg-config, see <http://pkg-config.freedesktop.org/>.
+See \`config.log' for more details" "$LINENO" 5; }
+else
+        APERTIUM_CFLAGS=$pkg_cv_APERTIUM_CFLAGS
+        APERTIUM_LIBS=$pkg_cv_APERTIUM_LIBS
+        { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: yes" >&5
+printf "%s\n" "yes" >&6; }
+
+fi
+
+pkg_failed=no
+{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for lttoolbox >= 3.5.0" >&5
+printf %s "checking for lttoolbox >= 3.5.0... " >&6; }
+
+if test -n "$LTTOOLBOX_CFLAGS"; then
+    pkg_cv_LTTOOLBOX_CFLAGS="$LTTOOLBOX_CFLAGS"
+ elif test -n "$PKG_CONFIG"; then
+    if test -n "$PKG_CONFIG" && \
+    { { printf "%s\n" "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"lttoolbox >= 3.5.0\""; } >&5
+  ($PKG_CONFIG --exists --print-errors "lttoolbox >= 3.5.0") 2>&5
+  ac_status=$?
+  printf "%s\n" "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
+  test $ac_status = 0; }; then
+  pkg_cv_LTTOOLBOX_CFLAGS=`$PKG_CONFIG --cflags "lttoolbox >= 3.5.0" 2>/dev/null`
+		      test "x$?" != "x0" && pkg_failed=yes
+else
+  pkg_failed=yes
+fi
+ else
+    pkg_failed=untried
+fi
+if test -n "$LTTOOLBOX_LIBS"; then
+    pkg_cv_LTTOOLBOX_LIBS="$LTTOOLBOX_LIBS"
+ elif test -n "$PKG_CONFIG"; then
+    if test -n "$PKG_CONFIG" && \
+    { { printf "%s\n" "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"lttoolbox >= 3.5.0\""; } >&5
+  ($PKG_CONFIG --exists --print-errors "lttoolbox >= 3.5.0") 2>&5
+  ac_status=$?
+  printf "%s\n" "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
+  test $ac_status = 0; }; then
+  pkg_cv_LTTOOLBOX_LIBS=`$PKG_CONFIG --libs "lttoolbox >= 3.5.0" 2>/dev/null`
+		      test "x$?" != "x0" && pkg_failed=yes
+else
+  pkg_failed=yes
+fi
+ else
+    pkg_failed=untried
+fi
+
+
+
+if test $pkg_failed = yes; then
+        { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5
+printf "%s\n" "no" >&6; }
+
+if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then
+        _pkg_short_errors_supported=yes
+else
+        _pkg_short_errors_supported=no
+fi
+        if test $_pkg_short_errors_supported = yes; then
+                LTTOOLBOX_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "lttoolbox >= 3.5.0" 2>&1`
+        else
+                LTTOOLBOX_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "lttoolbox >= 3.5.0" 2>&1`
+        fi
+        # Put the nasty error message in config.log where it belongs
+        echo "$LTTOOLBOX_PKG_ERRORS" >&5
+
+        as_fn_error $? "Package requirements (lttoolbox >= 3.5.0) were not met:
+
+$LTTOOLBOX_PKG_ERRORS
+
+Consider adjusting the PKG_CONFIG_PATH environment variable if you
+installed software in a non-standard prefix.
+
+Alternatively, you may set the environment variables LTTOOLBOX_CFLAGS
+and LTTOOLBOX_LIBS to avoid the need to call pkg-config.
+See the pkg-config man page for more details." "$LINENO" 5
+elif test $pkg_failed = untried; then
+        { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5
+printf "%s\n" "no" >&6; }
+        { { printf "%s\n" "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
+printf "%s\n" "$as_me: error: in \`$ac_pwd':" >&2;}
+as_fn_error $? "The pkg-config script could not be found or is too old.  Make sure it
+is in your PATH or set the PKG_CONFIG environment variable to the full
+path to pkg-config.
+
+Alternatively, you may set the environment variables LTTOOLBOX_CFLAGS
+and LTTOOLBOX_LIBS to avoid the need to call pkg-config.
+See the pkg-config man page for more details.
+
+To get pkg-config, see <http://pkg-config.freedesktop.org/>.
+See \`config.log' for more details" "$LINENO" 5; }
+else
+        LTTOOLBOX_CFLAGS=$pkg_cv_LTTOOLBOX_CFLAGS
+        LTTOOLBOX_LIBS=$pkg_cv_LTTOOLBOX_LIBS
+        { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: yes" >&5
+printf "%s\n" "yes" >&6; }
+
+fi
+
+pkg_failed=no
+{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for cg3 >= 1.3.0" >&5
+printf %s "checking for cg3 >= 1.3.0... " >&6; }
+
+if test -n "$CG3_CFLAGS"; then
+    pkg_cv_CG3_CFLAGS="$CG3_CFLAGS"
+ elif test -n "$PKG_CONFIG"; then
+    if test -n "$PKG_CONFIG" && \
+    { { printf "%s\n" "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"cg3 >= 1.3.0\""; } >&5
+  ($PKG_CONFIG --exists --print-errors "cg3 >= 1.3.0") 2>&5
+  ac_status=$?
+  printf "%s\n" "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
+  test $ac_status = 0; }; then
+  pkg_cv_CG3_CFLAGS=`$PKG_CONFIG --cflags "cg3 >= 1.3.0" 2>/dev/null`
+		      test "x$?" != "x0" && pkg_failed=yes
+else
+  pkg_failed=yes
+fi
+ else
+    pkg_failed=untried
+fi
+if test -n "$CG3_LIBS"; then
+    pkg_cv_CG3_LIBS="$CG3_LIBS"
+ elif test -n "$PKG_CONFIG"; then
+    if test -n "$PKG_CONFIG" && \
+    { { printf "%s\n" "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"cg3 >= 1.3.0\""; } >&5
+  ($PKG_CONFIG --exists --print-errors "cg3 >= 1.3.0") 2>&5
+  ac_status=$?
+  printf "%s\n" "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
+  test $ac_status = 0; }; then
+  pkg_cv_CG3_LIBS=`$PKG_CONFIG --libs "cg3 >= 1.3.0" 2>/dev/null`
+		      test "x$?" != "x0" && pkg_failed=yes
+else
+  pkg_failed=yes
+fi
+ else
+    pkg_failed=untried
+fi
+
+
+
+if test $pkg_failed = yes; then
+        { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5
+printf "%s\n" "no" >&6; }
+
+if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then
+        _pkg_short_errors_supported=yes
+else
+        _pkg_short_errors_supported=no
+fi
+        if test $_pkg_short_errors_supported = yes; then
+                CG3_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "cg3 >= 1.3.0" 2>&1`
+        else
+                CG3_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "cg3 >= 1.3.0" 2>&1`
+        fi
+        # Put the nasty error message in config.log where it belongs
+        echo "$CG3_PKG_ERRORS" >&5
+
+        as_fn_error $? "Package requirements (cg3 >= 1.3.0) were not met:
+
+$CG3_PKG_ERRORS
+
+Consider adjusting the PKG_CONFIG_PATH environment variable if you
+installed software in a non-standard prefix.
+
+Alternatively, you may set the environment variables CG3_CFLAGS
+and CG3_LIBS to avoid the need to call pkg-config.
+See the pkg-config man page for more details." "$LINENO" 5
+elif test $pkg_failed = untried; then
+        { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5
+printf "%s\n" "no" >&6; }
+        { { printf "%s\n" "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
+printf "%s\n" "$as_me: error: in \`$ac_pwd':" >&2;}
+as_fn_error $? "The pkg-config script could not be found or is too old.  Make sure it
+is in your PATH or set the PKG_CONFIG environment variable to the full
+path to pkg-config.
+
+Alternatively, you may set the environment variables CG3_CFLAGS
+and CG3_LIBS to avoid the need to call pkg-config.
+See the pkg-config man page for more details.
+
+To get pkg-config, see <http://pkg-config.freedesktop.org/>.
+See \`config.log' for more details" "$LINENO" 5; }
+else
+        CG3_CFLAGS=$pkg_cv_CG3_CFLAGS
+        CG3_LIBS=$pkg_cv_CG3_LIBS
+        { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: yes" >&5
+printf "%s\n" "yes" >&6; }
+
+fi
+
+
+pkg_failed=no
+{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for apertium-regtest >= 0.0.1" >&5
+printf %s "checking for apertium-regtest >= 0.0.1... " >&6; }
+
+if test -n "$REGTEST_CFLAGS"; then
+    pkg_cv_REGTEST_CFLAGS="$REGTEST_CFLAGS"
+ elif test -n "$PKG_CONFIG"; then
+    if test -n "$PKG_CONFIG" && \
+    { { printf "%s\n" "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"apertium-regtest >= 0.0.1\""; } >&5
+  ($PKG_CONFIG --exists --print-errors "apertium-regtest >= 0.0.1") 2>&5
+  ac_status=$?
+  printf "%s\n" "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
+  test $ac_status = 0; }; then
+  pkg_cv_REGTEST_CFLAGS=`$PKG_CONFIG --cflags "apertium-regtest >= 0.0.1" 2>/dev/null`
+		      test "x$?" != "x0" && pkg_failed=yes
+else
+  pkg_failed=yes
+fi
+ else
+    pkg_failed=untried
+fi
+if test -n "$REGTEST_LIBS"; then
+    pkg_cv_REGTEST_LIBS="$REGTEST_LIBS"
+ elif test -n "$PKG_CONFIG"; then
+    if test -n "$PKG_CONFIG" && \
+    { { printf "%s\n" "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"apertium-regtest >= 0.0.1\""; } >&5
+  ($PKG_CONFIG --exists --print-errors "apertium-regtest >= 0.0.1") 2>&5
+  ac_status=$?
+  printf "%s\n" "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
+  test $ac_status = 0; }; then
+  pkg_cv_REGTEST_LIBS=`$PKG_CONFIG --libs "apertium-regtest >= 0.0.1" 2>/dev/null`
+		      test "x$?" != "x0" && pkg_failed=yes
+else
+  pkg_failed=yes
+fi
+ else
+    pkg_failed=untried
+fi
+
+
+
+if test $pkg_failed = yes; then
+        { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5
+printf "%s\n" "no" >&6; }
+
+if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then
+        _pkg_short_errors_supported=yes
+else
+        _pkg_short_errors_supported=no
+fi
+        if test $_pkg_short_errors_supported = yes; then
+                REGTEST_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "apertium-regtest >= 0.0.1" 2>&1`
+        else
+                REGTEST_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "apertium-regtest >= 0.0.1" 2>&1`
+        fi
+        # Put the nasty error message in config.log where it belongs
+        echo "$REGTEST_PKG_ERRORS" >&5
+
+        { printf "%s\n" "$as_me:${as_lineno-$LINENO}: WARNING: Running tests requires apertium-regtest" >&5
+printf "%s\n" "$as_me: WARNING: Running tests requires apertium-regtest" >&2;}
+elif test $pkg_failed = untried; then
+        { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5
+printf "%s\n" "no" >&6; }
+        { printf "%s\n" "$as_me:${as_lineno-$LINENO}: WARNING: Running tests requires apertium-regtest" >&5
+printf "%s\n" "$as_me: WARNING: Running tests requires apertium-regtest" >&2;}
+else
+        REGTEST_CFLAGS=$pkg_cv_REGTEST_CFLAGS
+        REGTEST_LIBS=$pkg_cv_REGTEST_LIBS
+        { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: yes" >&5
+printf "%s\n" "yes" >&6; }
+
+fi
+
+
+
+
+  ap_include=$srcdir/ap_include.am
+
+  cat >$srcdir/ap_include.am <<EOF
+
+modes/%.mode: modes.xml
+	apertium-validate-modes \$<
+	apertium-gen-modes \$<
+
+apertium_modesdir=\$(prefix)/share/apertium/modes/
+install-modes: modes.xml
+	apertium-gen-modes -f -l \$< \$(prefix)/share/apertium/\$(BASENAME)
+	\$(MKDIR_P) \$(DESTDIR)\$(apertium_modesdir)
+	modes=\`xmllint --xpath '//mode[@install="yes"]/@name' \$< | sed 's/ *name="\([^"]*\)"/\1.mode /g'\`; \\
+		if test -n "\$\$modes"; then \\
+			\$(INSTALL_DATA) \$\$modes \$(DESTDIR)\$(apertium_modesdir); \\
+			rm \$\$modes; \\
+		fi
+
+uninstall-modes: modes.xml
+	files=\`xmllint --xpath '//mode[@install="yes"]/@name' \$< | sed 's/ *name="\([^"]*\)"/\1.mode /g'\`; \\
+	if test -n "\$\$files"; then \\
+		dir=\$(DESTDIR)\$(apertium_modesdir); \\
+		\$(am__uninstall_files_from_dir); \\
+	fi
+
+.deps/.d:
+	\$(MKDIR_P) .deps
+	touch \$@
+
+.PRECIOUS: .deps/.d
+
+langs:
+	@fail=; \
+	if \$(am__make_keepgoing); then \
+	  failcom='fail=yes'; \
+	else \
+	  failcom='exit 1'; \
+	fi; \
+	dot_seen=no; \
+	list='\$(AP_SUBDIRS)'; \
+	for subdir in \$\$list; do \
+	  echo "Making \$\$subdir"; \
+	  (\$(am__cd) \$\$subdir && \$(MAKE) \$(AM_MAKEFLAGS) all-am) \
+	  || eval \$\$failcom; \
+	done; \
+	\$(MAKE) \$(AM_MAKEFLAGS) all-am || exit 1; \
+	test -z "\$\$fail"
+.PHONY: langs
+
+
+.deps/%.autobil.prefixes: %.autobil.bin .deps/.d
+	lt-print -H $< > .deps/\$*.autobil.att
+	hfst-txt2fst <  .deps/\$*.autobil.att > .deps/\$*.autobil.hfst
+	hfst-project -p upper .deps/\$*.autobil.hfst > .deps/\$*.autobil.upper                                   # bidix
+	echo ' [ ? - %+ ]* ' | hfst-regexp2fst > .deps/\$*.any-nonplus.hfst                                                        # [^+]*
+	hfst-concatenate -1 .deps/\$*.autobil.upper -2 .deps/\$*.any-nonplus.hfst -o .deps/\$*.autobil.nonplussed    # bidix [^+]*
+	echo ' %+ ' | hfst-regexp2fst > .deps/\$*.single-plus.hfst                                                                 # +
+	hfst-concatenate -1 .deps/\$*.single-plus.hfst -2 .deps/\$*.autobil.nonplussed -o .deps/\$*.autobil.postplus # + bidix [^+]*
+	hfst-repeat -f0 -t3 -i .deps/\$*.autobil.postplus -o .deps/\$*.autobil.postplus.0,3                      # (+ bidix [^+]*){0,3} -- gives at most three +
+	hfst-concatenate -1 .deps/\$*.autobil.nonplussed -2 .deps/\$*.autobil.postplus.0,3 -o \$@                 # bidix [^+]* (+ bidix [^+]*){0,3}
+
+%.rlx.bin: \$(BASENAME).%.rlx
+	cg-comp \$< \$@
+
+%.autolex.bin: \$(BASENAME).%.lrx
+	lrx-comp \$< \$@
+
+%.autoseq.bin: \$(BASENAME).%.lsx
+	lsx-comp lr \$< \$@
+
+%.revautoseq.bin: \$(BASENAME).%.lsx
+	lsx-comp rl \$< \$@
+
+%.t1x.bin: \$(BASENAME).%.t1x
+	apertium-validate-transfer \$<
+	apertium-preprocess-transfer \$< \$@
+%.t2x.bin: \$(BASENAME).%.t2x
+	apertium-validate-interchunk \$<
+	apertium-preprocess-transfer \$< \$@
+%.t3x.bin: \$(BASENAME).%.t3x
+	apertium-validate-postchunk \$<
+	apertium-preprocess-transfer \$< \$@
+
+%.rtx.bin: \$(BASENAME).%.rtx
+	rtx-comp \$< \$@
+
+EOF
+
+
+
+ac_config_files="$ac_config_files Makefile apertium-hin.pc"
+
+cat >confcache <<\_ACEOF
+# This file is a shell script that caches the results of configure
+# tests run on this system so they can be shared between configure
+# scripts and configure runs, see configure's option --config-cache.
+# It is not useful on other systems.  If it contains results you don't
+# want to keep, you may remove or edit it.
+#
+# config.status only pays attention to the cache file if you give it
+# the --recheck option to rerun configure.
+#
+# `ac_cv_env_foo' variables (set or unset) will be overridden when
+# loading this file, other *unset* `ac_cv_foo' will be assigned the
+# following values.
+
+_ACEOF
+
+# The following way of writing the cache mishandles newlines in values,
+# but we know of no workaround that is simple, portable, and efficient.
+# So, we kill variables containing newlines.
+# Ultrix sh set writes to stderr and can't be redirected directly,
+# and sets the high bit in the cache file unless we assign to the vars.
+(
+  for ac_var in `(set) 2>&1 | sed -n 's/^\([a-zA-Z_][a-zA-Z0-9_]*\)=.*/\1/p'`; do
+    eval ac_val=\$$ac_var
+    case $ac_val in #(
+    *${as_nl}*)
+      case $ac_var in #(
+      *_cv_*) { printf "%s\n" "$as_me:${as_lineno-$LINENO}: WARNING: cache variable $ac_var contains a newline" >&5
+printf "%s\n" "$as_me: WARNING: cache variable $ac_var contains a newline" >&2;} ;;
+      esac
+      case $ac_var in #(
+      _ | IFS | as_nl) ;; #(
+      BASH_ARGV | BASH_SOURCE) eval $ac_var= ;; #(
+      *) { eval $ac_var=; unset $ac_var;} ;;
+      esac ;;
+    esac
+  done
+
+  (set) 2>&1 |
+    case $as_nl`(ac_space=' '; set) 2>&1` in #(
+    *${as_nl}ac_space=\ *)
+      # `set' does not quote correctly, so add quotes: double-quote
+      # substitution turns \\\\ into \\, and sed turns \\ into \.
+      sed -n \
+	"s/'/'\\\\''/g;
+	  s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='\\2'/p"
+      ;; #(
+    *)
+      # `set' quotes correctly as required by POSIX, so do not add quotes.
+      sed -n "/^[_$as_cr_alnum]*_cv_[_$as_cr_alnum]*=/p"
+      ;;
+    esac |
+    sort
+) |
+  sed '
+     /^ac_cv_env_/b end
+     t clear
+     :clear
+     s/^\([^=]*\)=\(.*[{}].*\)$/test ${\1+y} || &/
+     t end
+     s/^\([^=]*\)=\(.*\)$/\1=${\1=\2}/
+     :end' >>confcache
+if diff "$cache_file" confcache >/dev/null 2>&1; then :; else
+  if test -w "$cache_file"; then
+    if test "x$cache_file" != "x/dev/null"; then
+      { printf "%s\n" "$as_me:${as_lineno-$LINENO}: updating cache $cache_file" >&5
+printf "%s\n" "$as_me: updating cache $cache_file" >&6;}
+      if test ! -f "$cache_file" || test -h "$cache_file"; then
+	cat confcache >"$cache_file"
+      else
+        case $cache_file in #(
+        */* | ?:*)
+	  mv -f confcache "$cache_file"$$ &&
+	  mv -f "$cache_file"$$ "$cache_file" ;; #(
+        *)
+	  mv -f confcache "$cache_file" ;;
+	esac
+      fi
+    fi
+  else
+    { printf "%s\n" "$as_me:${as_lineno-$LINENO}: not updating unwritable cache $cache_file" >&5
+printf "%s\n" "$as_me: not updating unwritable cache $cache_file" >&6;}
+  fi
+fi
+rm -f confcache
+
+test "x$prefix" = xNONE && prefix=$ac_default_prefix
+# Let make expand exec_prefix.
+test "x$exec_prefix" = xNONE && exec_prefix='${prefix}'
+
+# Transform confdefs.h into DEFS.
+# Protect against shell expansion while executing Makefile rules.
+# Protect against Makefile macro expansion.
+#
+# If the first sed substitution is executed (which looks for macros that
+# take arguments), then branch to the quote section.  Otherwise,
+# look for a macro that doesn't take arguments.
+ac_script='
+:mline
+/\\$/{
+ N
+ s,\\\n,,
+ b mline
+}
+t clear
+:clear
+s/^[	 ]*#[	 ]*define[	 ][	 ]*\([^	 (][^	 (]*([^)]*)\)[	 ]*\(.*\)/-D\1=\2/g
+t quote
+s/^[	 ]*#[	 ]*define[	 ][	 ]*\([^	 ][^	 ]*\)[	 ]*\(.*\)/-D\1=\2/g
+t quote
+b any
+:quote
+s/[	 `~#$^&*(){}\\|;'\''"<>?]/\\&/g
+s/\[/\\&/g
+s/\]/\\&/g
+s/\$/$$/g
+H
+:any
+${
+	g
+	s/^\n//
+	s/\n/ /g
+	p
+}
+'
+DEFS=`sed -n "$ac_script" confdefs.h`
+
+
+ac_libobjs=
+ac_ltlibobjs=
+U=
+for ac_i in : $LIBOBJS; do test "x$ac_i" = x: && continue
+  # 1. Remove the extension, and $U if already installed.
+  ac_script='s/\$U\././;s/\.o$//;s/\.obj$//'
+  ac_i=`printf "%s\n" "$ac_i" | sed "$ac_script"`
+  # 2. Prepend LIBOBJDIR.  When used with automake>=1.10 LIBOBJDIR
+  #    will be set to the directory where LIBOBJS objects are built.
+  as_fn_append ac_libobjs " \${LIBOBJDIR}$ac_i\$U.$ac_objext"
+  as_fn_append ac_ltlibobjs " \${LIBOBJDIR}$ac_i"'$U.lo'
+done
+LIBOBJS=$ac_libobjs
+
+LTLIBOBJS=$ac_ltlibobjs
+
+
+{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking that generated files are newer than configure" >&5
+printf %s "checking that generated files are newer than configure... " >&6; }
+   if test -n "$am_sleep_pid"; then
+     # Hide warnings about reused PIDs.
+     wait $am_sleep_pid 2>/dev/null
+   fi
+   { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: done" >&5
+printf "%s\n" "done" >&6; }
+
+if test -z "${HAVE_HFSTOSPELL_TRUE}" && test -z "${HAVE_HFSTOSPELL_FALSE}"; then
+  as_fn_error $? "conditional \"HAVE_HFSTOSPELL\" was never defined.
+Usually this means the macro was only invoked conditionally." "$LINENO" 5
+fi
+
+: "${CONFIG_STATUS=./config.status}"
+ac_write_fail=0
+ac_clean_files_save=$ac_clean_files
+ac_clean_files="$ac_clean_files $CONFIG_STATUS"
+{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: creating $CONFIG_STATUS" >&5
+printf "%s\n" "$as_me: creating $CONFIG_STATUS" >&6;}
+as_write_fail=0
+cat >$CONFIG_STATUS <<_ASEOF || as_write_fail=1
+#! $SHELL
+# Generated by $as_me.
+# Run this file to recreate the current configuration.
+# Compiler output produced by configure, useful for debugging
+# configure, is in config.log if it exists.
+
+debug=false
+ac_cs_recheck=false
+ac_cs_silent=false
+
+SHELL=\${CONFIG_SHELL-$SHELL}
+export SHELL
+_ASEOF
+cat >>$CONFIG_STATUS <<\_ASEOF || as_write_fail=1
+## -------------------- ##
+## M4sh Initialization. ##
+## -------------------- ##
+
+# Be more Bourne compatible
+DUALCASE=1; export DUALCASE # for MKS sh
+as_nop=:
+if test ${ZSH_VERSION+y} && (emulate sh) >/dev/null 2>&1
+then :
+  emulate sh
+  NULLCMD=:
+  # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which
+  # is contrary to our usage.  Disable this feature.
+  alias -g '${1+"$@"}'='"$@"'
+  setopt NO_GLOB_SUBST
+else $as_nop
+  case `(set -o) 2>/dev/null` in #(
+  *posix*) :
+    set -o posix ;; #(
+  *) :
+     ;;
+esac
+fi
+
+
+
+# Reset variables that may have inherited troublesome values from
+# the environment.
+
+# IFS needs to be set, to space, tab, and newline, in precisely that order.
+# (If _AS_PATH_WALK were called with IFS unset, it would have the
+# side effect of setting IFS to empty, thus disabling word splitting.)
+# Quoting is to prevent editors from complaining about space-tab.
+as_nl='
+'
+export as_nl
+IFS=" ""	$as_nl"
+
+PS1='$ '
+PS2='> '
+PS4='+ '
+
+# Ensure predictable behavior from utilities with locale-dependent output.
+LC_ALL=C
+export LC_ALL
+LANGUAGE=C
+export LANGUAGE
+
+# We cannot yet rely on "unset" to work, but we need these variables
+# to be unset--not just set to an empty or harmless value--now, to
+# avoid bugs in old shells (e.g. pre-3.0 UWIN ksh).  This construct
+# also avoids known problems related to "unset" and subshell syntax
+# in other old shells (e.g. bash 2.01 and pdksh 5.2.14).
+for as_var in BASH_ENV ENV MAIL MAILPATH CDPATH
+do eval test \${$as_var+y} \
+  && ( (unset $as_var) || exit 1) >/dev/null 2>&1 && unset $as_var || :
+done
+
+# Ensure that fds 0, 1, and 2 are open.
+if (exec 3>&0) 2>/dev/null; then :; else exec 0</dev/null; fi
+if (exec 3>&1) 2>/dev/null; then :; else exec 1>/dev/null; fi
+if (exec 3>&2)            ; then :; else exec 2>/dev/null; fi
+
+# The user is always right.
+if ${PATH_SEPARATOR+false} :; then
+  PATH_SEPARATOR=:
+  (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 && {
+    (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 ||
+      PATH_SEPARATOR=';'
+  }
+fi
+
+
+# Find who we are.  Look in the path if we contain no directory separator.
+as_myself=
+case $0 in #((
+  *[\\/]* ) as_myself=$0 ;;
+  *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
+for as_dir in $PATH
+do
+  IFS=$as_save_IFS
+  case $as_dir in #(((
+    '') as_dir=./ ;;
+    */) ;;
+    *) as_dir=$as_dir/ ;;
+  esac
+    test -r "$as_dir$0" && as_myself=$as_dir$0 && break
+  done
+IFS=$as_save_IFS
+
+     ;;
+esac
+# We did not find ourselves, most probably we were run as `sh COMMAND'
+# in which case we are not to be found in the path.
+if test "x$as_myself" = x; then
+  as_myself=$0
+fi
+if test ! -f "$as_myself"; then
+  printf "%s\n" "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2
+  exit 1
+fi
+
+
+
+# as_fn_error STATUS ERROR [LINENO LOG_FD]
+# ----------------------------------------
+# Output "`basename $0`: error: ERROR" to stderr. If LINENO and LOG_FD are
+# provided, also output the error to LOG_FD, referencing LINENO. Then exit the
+# script with STATUS, using 1 if that was 0.
+as_fn_error ()
+{
+  as_status=$1; test $as_status -eq 0 && as_status=1
+  if test "$4"; then
+    as_lineno=${as_lineno-"$3"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
+    printf "%s\n" "$as_me:${as_lineno-$LINENO}: error: $2" >&$4
+  fi
+  printf "%s\n" "$as_me: error: $2" >&2
+  as_fn_exit $as_status
+} # as_fn_error
+
+
+
+# as_fn_set_status STATUS
+# -----------------------
+# Set $? to STATUS, without forking.
+as_fn_set_status ()
+{
+  return $1
+} # as_fn_set_status
+
+# as_fn_exit STATUS
+# -----------------
+# Exit the shell with STATUS, even in a "trap 0" or "set -e" context.
+as_fn_exit ()
+{
+  set +e
+  as_fn_set_status $1
+  exit $1
+} # as_fn_exit
+
+# as_fn_unset VAR
+# ---------------
+# Portably unset VAR.
+as_fn_unset ()
+{
+  { eval $1=; unset $1;}
+}
+as_unset=as_fn_unset
+
+# as_fn_append VAR VALUE
+# ----------------------
+# Append the text in VALUE to the end of the definition contained in VAR. Take
+# advantage of any shell optimizations that allow amortized linear growth over
+# repeated appends, instead of the typical quadratic growth present in naive
+# implementations.
+if (eval "as_var=1; as_var+=2; test x\$as_var = x12") 2>/dev/null
+then :
+  eval 'as_fn_append ()
+  {
+    eval $1+=\$2
+  }'
+else $as_nop
+  as_fn_append ()
+  {
+    eval $1=\$$1\$2
+  }
+fi # as_fn_append
+
+# as_fn_arith ARG...
+# ------------------
+# Perform arithmetic evaluation on the ARGs, and store the result in the
+# global $as_val. Take advantage of shells that can avoid forks. The arguments
+# must be portable across $(()) and expr.
+if (eval "test \$(( 1 + 1 )) = 2") 2>/dev/null
+then :
+  eval 'as_fn_arith ()
+  {
+    as_val=$(( $* ))
+  }'
+else $as_nop
+  as_fn_arith ()
+  {
+    as_val=`expr "$@" || test $? -eq 1`
+  }
+fi # as_fn_arith
+
+
+if expr a : '\(a\)' >/dev/null 2>&1 &&
+   test "X`expr 00001 : '.*\(...\)'`" = X001; then
+  as_expr=expr
+else
+  as_expr=false
+fi
+
+if (basename -- /) >/dev/null 2>&1 && test "X`basename -- / 2>&1`" = "X/"; then
+  as_basename=basename
+else
+  as_basename=false
+fi
+
+if (as_dir=`dirname -- /` && test "X$as_dir" = X/) >/dev/null 2>&1; then
+  as_dirname=dirname
+else
+  as_dirname=false
+fi
+
+as_me=`$as_basename -- "$0" ||
+$as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \
+	 X"$0" : 'X\(//\)$' \| \
+	 X"$0" : 'X\(/\)' \| . 2>/dev/null ||
+printf "%s\n" X/"$0" |
+    sed '/^.*\/\([^/][^/]*\)\/*$/{
+	    s//\1/
+	    q
+	  }
+	  /^X\/\(\/\/\)$/{
+	    s//\1/
+	    q
+	  }
+	  /^X\/\(\/\).*/{
+	    s//\1/
+	    q
+	  }
+	  s/.*/./; q'`
+
+# Avoid depending upon Character Ranges.
+as_cr_letters='abcdefghijklmnopqrstuvwxyz'
+as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ'
+as_cr_Letters=$as_cr_letters$as_cr_LETTERS
+as_cr_digits='0123456789'
+as_cr_alnum=$as_cr_Letters$as_cr_digits
+
+
+# Determine whether it's possible to make 'echo' print without a newline.
+# These variables are no longer used directly by Autoconf, but are AC_SUBSTed
+# for compatibility with existing Makefiles.
+ECHO_C= ECHO_N= ECHO_T=
+case `echo -n x` in #(((((
+-n*)
+  case `echo 'xy\c'` in
+  *c*) ECHO_T='	';;	# ECHO_T is single tab character.
+  xy)  ECHO_C='\c';;
+  *)   echo `echo ksh88 bug on AIX 6.1` > /dev/null
+       ECHO_T='	';;
+  esac;;
+*)
+  ECHO_N='-n';;
+esac
+
+# For backward compatibility with old third-party macros, we provide
+# the shell variables $as_echo and $as_echo_n.  New code should use
+# AS_ECHO(["message"]) and AS_ECHO_N(["message"]), respectively.
+as_echo='printf %s\n'
+as_echo_n='printf %s'
+
+rm -f conf$$ conf$$.exe conf$$.file
+if test -d conf$$.dir; then
+  rm -f conf$$.dir/conf$$.file
+else
+  rm -f conf$$.dir
+  mkdir conf$$.dir 2>/dev/null
+fi
+if (echo >conf$$.file) 2>/dev/null; then
+  if ln -s conf$$.file conf$$ 2>/dev/null; then
+    as_ln_s='ln -s'
+    # ... but there are two gotchas:
+    # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail.
+    # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable.
+    # In both cases, we have to default to `cp -pR'.
+    ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe ||
+      as_ln_s='cp -pR'
+  elif ln conf$$.file conf$$ 2>/dev/null; then
+    as_ln_s=ln
+  else
+    as_ln_s='cp -pR'
+  fi
+else
+  as_ln_s='cp -pR'
+fi
+rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file
+rmdir conf$$.dir 2>/dev/null
+
+
+# as_fn_mkdir_p
+# -------------
+# Create "$as_dir" as a directory, including parents if necessary.
+as_fn_mkdir_p ()
+{
+
+  case $as_dir in #(
+  -*) as_dir=./$as_dir;;
+  esac
+  test -d "$as_dir" || eval $as_mkdir_p || {
+    as_dirs=
+    while :; do
+      case $as_dir in #(
+      *\'*) as_qdir=`printf "%s\n" "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'(
+      *) as_qdir=$as_dir;;
+      esac
+      as_dirs="'$as_qdir' $as_dirs"
+      as_dir=`$as_dirname -- "$as_dir" ||
+$as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
+	 X"$as_dir" : 'X\(//\)[^/]' \| \
+	 X"$as_dir" : 'X\(//\)$' \| \
+	 X"$as_dir" : 'X\(/\)' \| . 2>/dev/null ||
+printf "%s\n" X"$as_dir" |
+    sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
+	    s//\1/
+	    q
+	  }
+	  /^X\(\/\/\)[^/].*/{
+	    s//\1/
+	    q
+	  }
+	  /^X\(\/\/\)$/{
+	    s//\1/
+	    q
+	  }
+	  /^X\(\/\).*/{
+	    s//\1/
+	    q
+	  }
+	  s/.*/./; q'`
+      test -d "$as_dir" && break
+    done
+    test -z "$as_dirs" || eval "mkdir $as_dirs"
+  } || test -d "$as_dir" || as_fn_error $? "cannot create directory $as_dir"
+
+
+} # as_fn_mkdir_p
+if mkdir -p . 2>/dev/null; then
+  as_mkdir_p='mkdir -p "$as_dir"'
+else
+  test -d ./-p && rmdir ./-p
+  as_mkdir_p=false
+fi
+
+
+# as_fn_executable_p FILE
+# -----------------------
+# Test if FILE is an executable regular file.
+as_fn_executable_p ()
+{
+  test -f "$1" && test -x "$1"
+} # as_fn_executable_p
+as_test_x='test -x'
+as_executable_p=as_fn_executable_p
+
+# Sed expression to map a string onto a valid CPP name.
+as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'"
+
+# Sed expression to map a string onto a valid variable name.
+as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'"
+
+
+exec 6>&1
+## ----------------------------------- ##
+## Main body of $CONFIG_STATUS script. ##
+## ----------------------------------- ##
+_ASEOF
+test $as_write_fail = 0 && chmod +x $CONFIG_STATUS || ac_write_fail=1
+
+cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
+# Save the log message, to keep $0 and so on meaningful, and to
+# report actual input values of CONFIG_FILES etc. instead of their
+# values after options handling.
+ac_log="
+This file was extended by Apertium Hindi $as_me 0.1.0, which was
+generated by GNU Autoconf 2.71.  Invocation command line was
+
+  CONFIG_FILES    = $CONFIG_FILES
+  CONFIG_HEADERS  = $CONFIG_HEADERS
+  CONFIG_LINKS    = $CONFIG_LINKS
+  CONFIG_COMMANDS = $CONFIG_COMMANDS
+  $ $0 $@
+
+on `(hostname || uname -n) 2>/dev/null | sed 1q`
+"
+
+_ACEOF
+
+case $ac_config_files in *"
+"*) set x $ac_config_files; shift; ac_config_files=$*;;
+esac
+
+
+
+cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
+# Files that config.status was made for.
+config_files="$ac_config_files"
+
+_ACEOF
+
+cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
+ac_cs_usage="\
+\`$as_me' instantiates files and other configuration actions
+from templates according to the current configuration.  Unless the files
+and actions are specified as TAGs, all are instantiated by default.
+
+Usage: $0 [OPTION]... [TAG]...
+
+  -h, --help       print this help, then exit
+  -V, --version    print version number and configuration settings, then exit
+      --config     print configuration, then exit
+  -q, --quiet, --silent
+                   do not print progress messages
+  -d, --debug      don't remove temporary files
+      --recheck    update $as_me by reconfiguring in the same conditions
+      --file=FILE[:TEMPLATE]
+                   instantiate the configuration file FILE
+
+Configuration files:
+$config_files
+
+Report bugs to <francis.tyers@gmail.com>."
+
+_ACEOF
+ac_cs_config=`printf "%s\n" "$ac_configure_args" | sed "$ac_safe_unquote"`
+ac_cs_config_escaped=`printf "%s\n" "$ac_cs_config" | sed "s/^ //; s/'/'\\\\\\\\''/g"`
+cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
+ac_cs_config='$ac_cs_config_escaped'
+ac_cs_version="\\
+Apertium Hindi config.status 0.1.0
+configured by $0, generated by GNU Autoconf 2.71,
+  with options \\"\$ac_cs_config\\"
+
+Copyright (C) 2021 Free Software Foundation, Inc.
+This config.status script is free software; the Free Software Foundation
+gives unlimited permission to copy, distribute and modify it."
+
+ac_pwd='$ac_pwd'
+srcdir='$srcdir'
+INSTALL='$INSTALL'
+MKDIR_P='$MKDIR_P'
+AWK='$AWK'
+test -n "\$AWK" || AWK=awk
+_ACEOF
+
+cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
+# The default lists apply if the user does not specify any file.
+ac_need_defaults=:
+while test $# != 0
+do
+  case $1 in
+  --*=?*)
+    ac_option=`expr "X$1" : 'X\([^=]*\)='`
+    ac_optarg=`expr "X$1" : 'X[^=]*=\(.*\)'`
+    ac_shift=:
+    ;;
+  --*=)
+    ac_option=`expr "X$1" : 'X\([^=]*\)='`
+    ac_optarg=
+    ac_shift=:
+    ;;
+  *)
+    ac_option=$1
+    ac_optarg=$2
+    ac_shift=shift
+    ;;
+  esac
+
+  case $ac_option in
+  # Handling of the options.
+  -recheck | --recheck | --rechec | --reche | --rech | --rec | --re | --r)
+    ac_cs_recheck=: ;;
+  --version | --versio | --versi | --vers | --ver | --ve | --v | -V )
+    printf "%s\n" "$ac_cs_version"; exit ;;
+  --config | --confi | --conf | --con | --co | --c )
+    printf "%s\n" "$ac_cs_config"; exit ;;
+  --debug | --debu | --deb | --de | --d | -d )
+    debug=: ;;
+  --file | --fil | --fi | --f )
+    $ac_shift
+    case $ac_optarg in
+    *\'*) ac_optarg=`printf "%s\n" "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;;
+    '') as_fn_error $? "missing file argument" ;;
+    esac
+    as_fn_append CONFIG_FILES " '$ac_optarg'"
+    ac_need_defaults=false;;
+  --he | --h |  --help | --hel | -h )
+    printf "%s\n" "$ac_cs_usage"; exit ;;
+  -q | -quiet | --quiet | --quie | --qui | --qu | --q \
+  | -silent | --silent | --silen | --sile | --sil | --si | --s)
+    ac_cs_silent=: ;;
+
+  # This is an error.
+  -*) as_fn_error $? "unrecognized option: \`$1'
+Try \`$0 --help' for more information." ;;
+
+  *) as_fn_append ac_config_targets " $1"
+     ac_need_defaults=false ;;
+
+  esac
+  shift
+done
+
+ac_configure_extra_args=
+
+if $ac_cs_silent; then
+  exec 6>/dev/null
+  ac_configure_extra_args="$ac_configure_extra_args --silent"
+fi
+
+_ACEOF
+cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
+if \$ac_cs_recheck; then
+  set X $SHELL '$0' $ac_configure_args \$ac_configure_extra_args --no-create --no-recursion
+  shift
+  \printf "%s\n" "running CONFIG_SHELL=$SHELL \$*" >&6
+  CONFIG_SHELL='$SHELL'
+  export CONFIG_SHELL
+  exec "\$@"
+fi
+
+_ACEOF
+cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
+exec 5>>config.log
+{
+  echo
+  sed 'h;s/./-/g;s/^.../## /;s/...$/ ##/;p;x;p;x' <<_ASBOX
+## Running $as_me. ##
+_ASBOX
+  printf "%s\n" "$ac_log"
+} >&5
+
+_ACEOF
+cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
+_ACEOF
+
+cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
+
+# Handling of arguments.
+for ac_config_target in $ac_config_targets
+do
+  case $ac_config_target in
+    "Makefile") CONFIG_FILES="$CONFIG_FILES Makefile" ;;
+    "apertium-hin.pc") CONFIG_FILES="$CONFIG_FILES apertium-hin.pc" ;;
+
+  *) as_fn_error $? "invalid argument: \`$ac_config_target'" "$LINENO" 5;;
+  esac
+done
+
+
+# If the user did not use the arguments to specify the items to instantiate,
+# then the envvar interface is used.  Set only those that are not.
+# We use the long form for the default assignment because of an extremely
+# bizarre bug on SunOS 4.1.3.
+if $ac_need_defaults; then
+  test ${CONFIG_FILES+y} || CONFIG_FILES=$config_files
+fi
+
+# Have a temporary directory for convenience.  Make it in the build tree
+# simply because there is no reason against having it here, and in addition,
+# creating and moving files from /tmp can sometimes cause problems.
+# Hook for its removal unless debugging.
+# Note that there is a small window in which the directory will not be cleaned:
+# after its creation but before its name has been assigned to `$tmp'.
+$debug ||
+{
+  tmp= ac_tmp=
+  trap 'exit_status=$?
+  : "${ac_tmp:=$tmp}"
+  { test ! -d "$ac_tmp" || rm -fr "$ac_tmp"; } && exit $exit_status
+' 0
+  trap 'as_fn_exit 1' 1 2 13 15
+}
+# Create a (secure) tmp directory for tmp files.
+
+{
+  tmp=`(umask 077 && mktemp -d "./confXXXXXX") 2>/dev/null` &&
+  test -d "$tmp"
+}  ||
+{
+  tmp=./conf$$-$RANDOM
+  (umask 077 && mkdir "$tmp")
+} || as_fn_error $? "cannot create a temporary directory in ." "$LINENO" 5
+ac_tmp=$tmp
+
+# Set up the scripts for CONFIG_FILES section.
+# No need to generate them if there are no CONFIG_FILES.
+# This happens for instance with `./config.status config.h'.
+if test -n "$CONFIG_FILES"; then
+
+if $AWK 'BEGIN { getline <"/dev/null" }' </dev/null 2>/dev/null; then
+  ac_cs_awk_getline=:
+  ac_cs_awk_pipe_init=
+  ac_cs_awk_read_file='
+      while ((getline aline < (F[key])) > 0)
+	print(aline)
+      close(F[key])'
+  ac_cs_awk_pipe_fini=
+else
+  ac_cs_awk_getline=false
+  ac_cs_awk_pipe_init="print \"cat <<'|#_!!_#|' &&\""
+  ac_cs_awk_read_file='
+      print "|#_!!_#|"
+      print "cat " F[key] " &&"
+      '$ac_cs_awk_pipe_init
+  # The final `:' finishes the AND list.
+  ac_cs_awk_pipe_fini='END { print "|#_!!_#|"; print ":" }'
+fi
+ac_cr=`echo X | tr X '\015'`
+# On cygwin, bash can eat \r inside `` if the user requested igncr.
+# But we know of no other shell where ac_cr would be empty at this
+# point, so we can use a bashism as a fallback.
+if test "x$ac_cr" = x; then
+  eval ac_cr=\$\'\\r\'
+fi
+ac_cs_awk_cr=`$AWK 'BEGIN { print "a\rb" }' </dev/null 2>/dev/null`
+if test "$ac_cs_awk_cr" = "a${ac_cr}b"; then
+  ac_cs_awk_cr='\\r'
+else
+  ac_cs_awk_cr=$ac_cr
+fi
+
+echo 'BEGIN {' >"$ac_tmp/subs1.awk" &&
+_ACEOF
+
+# Create commands to substitute file output variables.
+{
+  echo "cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1" &&
+  echo 'cat >>"\$ac_tmp/subs1.awk" <<\\_ACAWK &&' &&
+  echo "$ac_subst_files" | sed 's/.*/F["&"]="$&"/' &&
+  echo "_ACAWK" &&
+  echo "_ACEOF"
+} >conf$$files.sh &&
+. ./conf$$files.sh ||
+  as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5
+rm -f conf$$files.sh
+
+{
+  echo "cat >conf$$subs.awk <<_ACEOF" &&
+  echo "$ac_subst_vars" | sed 's/.*/&!$&$ac_delim/' &&
+  echo "_ACEOF"
+} >conf$$subs.sh ||
+  as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5
+ac_delim_num=`echo "$ac_subst_vars" | grep -c '^'`
+ac_delim='%!_!# '
+for ac_last_try in false false false false false :; do
+  . ./conf$$subs.sh ||
+    as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5
+
+  ac_delim_n=`sed -n "s/.*$ac_delim\$/X/p" conf$$subs.awk | grep -c X`
+  if test $ac_delim_n = $ac_delim_num; then
+    break
+  elif $ac_last_try; then
+    as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5
+  else
+    ac_delim="$ac_delim!$ac_delim _$ac_delim!! "
+  fi
+done
+rm -f conf$$subs.sh
+
+cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
+cat >>"\$ac_tmp/subs1.awk" <<\\_ACAWK &&
+_ACEOF
+sed -n '
+h
+s/^/S["/; s/!.*/"]=/
+p
+g
+s/^[^!]*!//
+:repl
+t repl
+s/'"$ac_delim"'$//
+t delim
+:nl
+h
+s/\(.\{148\}\)..*/\1/
+t more1
+s/["\\]/\\&/g; s/^/"/; s/$/\\n"\\/
+p
+n
+b repl
+:more1
+s/["\\]/\\&/g; s/^/"/; s/$/"\\/
+p
+g
+s/.\{148\}//
+t nl
+:delim
+h
+s/\(.\{148\}\)..*/\1/
+t more2
+s/["\\]/\\&/g; s/^/"/; s/$/"/
+p
+b
+:more2
+s/["\\]/\\&/g; s/^/"/; s/$/"\\/
+p
+g
+s/.\{148\}//
+t delim
+' <conf$$subs.awk | sed '
+/^[^""]/{
+  N
+  s/\n//
+}
+' >>$CONFIG_STATUS || ac_write_fail=1
+rm -f conf$$subs.awk
+cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
+_ACAWK
+cat >>"\$ac_tmp/subs1.awk" <<_ACAWK &&
+  for (key in S) S_is_set[key] = 1
+  FS = ""
+  \$ac_cs_awk_pipe_init
+}
+{
+  line = $ 0
+  nfields = split(line, field, "@")
+  substed = 0
+  len = length(field[1])
+  for (i = 2; i < nfields; i++) {
+    key = field[i]
+    keylen = length(key)
+    if (S_is_set[key]) {
+      value = S[key]
+      line = substr(line, 1, len) "" value "" substr(line, len + keylen + 3)
+      len += length(value) + length(field[++i])
+      substed = 1
+    } else
+      len += 1 + keylen
+  }
+  if (nfields == 3 && !substed) {
+    key = field[2]
+    if (F[key] != "" && line ~ /^[	 ]*@.*@[	 ]*$/) {
+      \$ac_cs_awk_read_file
+      next
+    }
+  }
+  print line
+}
+\$ac_cs_awk_pipe_fini
+_ACAWK
+_ACEOF
+cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
+if sed "s/$ac_cr//" < /dev/null > /dev/null 2>&1; then
+  sed "s/$ac_cr\$//; s/$ac_cr/$ac_cs_awk_cr/g"
+else
+  cat
+fi < "$ac_tmp/subs1.awk" > "$ac_tmp/subs.awk" \
+  || as_fn_error $? "could not setup config files machinery" "$LINENO" 5
+_ACEOF
+
+# VPATH may cause trouble with some makes, so we remove sole $(srcdir),
+# ${srcdir} and @srcdir@ entries from VPATH if srcdir is ".", strip leading and
+# trailing colons and then remove the whole line if VPATH becomes empty
+# (actually we leave an empty line to preserve line numbers).
+if test "x$srcdir" = x.; then
+  ac_vpsub='/^[	 ]*VPATH[	 ]*=[	 ]*/{
+h
+s///
+s/^/:/
+s/[	 ]*$/:/
+s/:\$(srcdir):/:/g
+s/:\${srcdir}:/:/g
+s/:@srcdir@:/:/g
+s/^:*//
+s/:*$//
+x
+s/\(=[	 ]*\).*/\1/
+G
+s/\n//
+s/^[^=]*=[	 ]*$//
+}'
+fi
+
+cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
+fi # test -n "$CONFIG_FILES"
+
+
+eval set X "  :F $CONFIG_FILES      "
+shift
+for ac_tag
+do
+  case $ac_tag in
+  :[FHLC]) ac_mode=$ac_tag; continue;;
+  esac
+  case $ac_mode$ac_tag in
+  :[FHL]*:*);;
+  :L* | :C*:*) as_fn_error $? "invalid tag \`$ac_tag'" "$LINENO" 5;;
+  :[FH]-) ac_tag=-:-;;
+  :[FH]*) ac_tag=$ac_tag:$ac_tag.in;;
+  esac
+  ac_save_IFS=$IFS
+  IFS=:
+  set x $ac_tag
+  IFS=$ac_save_IFS
+  shift
+  ac_file=$1
+  shift
+
+  case $ac_mode in
+  :L) ac_source=$1;;
+  :[FH])
+    ac_file_inputs=
+    for ac_f
+    do
+      case $ac_f in
+      -) ac_f="$ac_tmp/stdin";;
+      *) # Look for the file first in the build tree, then in the source tree
+	 # (if the path is not absolute).  The absolute path cannot be DOS-style,
+	 # because $ac_f cannot contain `:'.
+	 test -f "$ac_f" ||
+	   case $ac_f in
+	   [\\/$]*) false;;
+	   *) test -f "$srcdir/$ac_f" && ac_f="$srcdir/$ac_f";;
+	   esac ||
+	   as_fn_error 1 "cannot find input file: \`$ac_f'" "$LINENO" 5;;
+      esac
+      case $ac_f in *\'*) ac_f=`printf "%s\n" "$ac_f" | sed "s/'/'\\\\\\\\''/g"`;; esac
+      as_fn_append ac_file_inputs " '$ac_f'"
+    done
+
+    # Let's still pretend it is `configure' which instantiates (i.e., don't
+    # use $as_me), people would be surprised to read:
+    #    /* config.h.  Generated by config.status.  */
+    configure_input='Generated from '`
+	  printf "%s\n" "$*" | sed 's|^[^:]*/||;s|:[^:]*/|, |g'
+	`' by configure.'
+    if test x"$ac_file" != x-; then
+      configure_input="$ac_file.  $configure_input"
+      { printf "%s\n" "$as_me:${as_lineno-$LINENO}: creating $ac_file" >&5
+printf "%s\n" "$as_me: creating $ac_file" >&6;}
+    fi
+    # Neutralize special characters interpreted by sed in replacement strings.
+    case $configure_input in #(
+    *\&* | *\|* | *\\* )
+       ac_sed_conf_input=`printf "%s\n" "$configure_input" |
+       sed 's/[\\\\&|]/\\\\&/g'`;; #(
+    *) ac_sed_conf_input=$configure_input;;
+    esac
+
+    case $ac_tag in
+    *:-:* | *:-) cat >"$ac_tmp/stdin" \
+      || as_fn_error $? "could not create $ac_file" "$LINENO" 5 ;;
+    esac
+    ;;
+  esac
+
+  ac_dir=`$as_dirname -- "$ac_file" ||
+$as_expr X"$ac_file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
+	 X"$ac_file" : 'X\(//\)[^/]' \| \
+	 X"$ac_file" : 'X\(//\)$' \| \
+	 X"$ac_file" : 'X\(/\)' \| . 2>/dev/null ||
+printf "%s\n" X"$ac_file" |
+    sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
+	    s//\1/
+	    q
+	  }
+	  /^X\(\/\/\)[^/].*/{
+	    s//\1/
+	    q
+	  }
+	  /^X\(\/\/\)$/{
+	    s//\1/
+	    q
+	  }
+	  /^X\(\/\).*/{
+	    s//\1/
+	    q
+	  }
+	  s/.*/./; q'`
+  as_dir="$ac_dir"; as_fn_mkdir_p
+  ac_builddir=.
+
+case "$ac_dir" in
+.) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;;
+*)
+  ac_dir_suffix=/`printf "%s\n" "$ac_dir" | sed 's|^\.[\\/]||'`
+  # A ".." for each directory in $ac_dir_suffix.
+  ac_top_builddir_sub=`printf "%s\n" "$ac_dir_suffix" | sed 's|/[^\\/]*|/..|g;s|/||'`
+  case $ac_top_builddir_sub in
+  "") ac_top_builddir_sub=. ac_top_build_prefix= ;;
+  *)  ac_top_build_prefix=$ac_top_builddir_sub/ ;;
+  esac ;;
+esac
+ac_abs_top_builddir=$ac_pwd
+ac_abs_builddir=$ac_pwd$ac_dir_suffix
+# for backward compatibility:
+ac_top_builddir=$ac_top_build_prefix
+
+case $srcdir in
+  .)  # We are building in place.
+    ac_srcdir=.
+    ac_top_srcdir=$ac_top_builddir_sub
+    ac_abs_top_srcdir=$ac_pwd ;;
+  [\\/]* | ?:[\\/]* )  # Absolute name.
+    ac_srcdir=$srcdir$ac_dir_suffix;
+    ac_top_srcdir=$srcdir
+    ac_abs_top_srcdir=$srcdir ;;
+  *) # Relative name.
+    ac_srcdir=$ac_top_build_prefix$srcdir$ac_dir_suffix
+    ac_top_srcdir=$ac_top_build_prefix$srcdir
+    ac_abs_top_srcdir=$ac_pwd/$srcdir ;;
+esac
+ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix
+
+
+  case $ac_mode in
+  :F)
+  #
+  # CONFIG_FILE
+  #
+
+  case $INSTALL in
+  [\\/$]* | ?:[\\/]* ) ac_INSTALL=$INSTALL ;;
+  *) ac_INSTALL=$ac_top_build_prefix$INSTALL ;;
+  esac
+  ac_MKDIR_P=$MKDIR_P
+  case $MKDIR_P in
+  [\\/$]* | ?:[\\/]* ) ;;
+  */*) ac_MKDIR_P=$ac_top_build_prefix$MKDIR_P ;;
+  esac
+_ACEOF
+
+cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
+# If the template does not know about datarootdir, expand it.
+# FIXME: This hack should be removed a few years after 2.60.
+ac_datarootdir_hack=; ac_datarootdir_seen=
+ac_sed_dataroot='
+/datarootdir/ {
+  p
+  q
+}
+/@datadir@/p
+/@docdir@/p
+/@infodir@/p
+/@localedir@/p
+/@mandir@/p'
+case `eval "sed -n \"\$ac_sed_dataroot\" $ac_file_inputs"` in
+*datarootdir*) ac_datarootdir_seen=yes;;
+*@datadir@*|*@docdir@*|*@infodir@*|*@localedir@*|*@mandir@*)
+  { printf "%s\n" "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&5
+printf "%s\n" "$as_me: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&2;}
+_ACEOF
+cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
+  ac_datarootdir_hack='
+  s&@datadir@&$datadir&g
+  s&@docdir@&$docdir&g
+  s&@infodir@&$infodir&g
+  s&@localedir@&$localedir&g
+  s&@mandir@&$mandir&g
+  s&\\\${datarootdir}&$datarootdir&g' ;;
+esac
+_ACEOF
+
+# Neutralize VPATH when `$srcdir' = `.'.
+# Shell code in configure.ac might set extrasub.
+# FIXME: do we really want to maintain this feature?
+cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
+ac_sed_extra="$ac_vpsub
+$extrasub
+_ACEOF
+cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
+:t
+/@[a-zA-Z_][a-zA-Z_0-9]*@/!b
+s|@configure_input@|$ac_sed_conf_input|;t t
+s&@top_builddir@&$ac_top_builddir_sub&;t t
+s&@top_build_prefix@&$ac_top_build_prefix&;t t
+s&@srcdir@&$ac_srcdir&;t t
+s&@abs_srcdir@&$ac_abs_srcdir&;t t
+s&@top_srcdir@&$ac_top_srcdir&;t t
+s&@abs_top_srcdir@&$ac_abs_top_srcdir&;t t
+s&@builddir@&$ac_builddir&;t t
+s&@abs_builddir@&$ac_abs_builddir&;t t
+s&@abs_top_builddir@&$ac_abs_top_builddir&;t t
+s&@INSTALL@&$ac_INSTALL&;t t
+s&@MKDIR_P@&$ac_MKDIR_P&;t t
+$ac_datarootdir_hack
+"
+eval sed \"\$ac_sed_extra\" "$ac_file_inputs" |
+if $ac_cs_awk_getline; then
+  $AWK -f "$ac_tmp/subs.awk"
+else
+  $AWK -f "$ac_tmp/subs.awk" | $SHELL
+fi \
+  >$ac_tmp/out || as_fn_error $? "could not create $ac_file" "$LINENO" 5
+
+test -z "$ac_datarootdir_hack$ac_datarootdir_seen" &&
+  { ac_out=`sed -n '/\${datarootdir}/p' "$ac_tmp/out"`; test -n "$ac_out"; } &&
+  { ac_out=`sed -n '/^[	 ]*datarootdir[	 ]*:*=/p' \
+      "$ac_tmp/out"`; test -z "$ac_out"; } &&
+  { printf "%s\n" "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file contains a reference to the variable \`datarootdir'
+which seems to be undefined.  Please make sure it is defined" >&5
+printf "%s\n" "$as_me: WARNING: $ac_file contains a reference to the variable \`datarootdir'
+which seems to be undefined.  Please make sure it is defined" >&2;}
+
+  rm -f "$ac_tmp/stdin"
+  case $ac_file in
+  -) cat "$ac_tmp/out" && rm -f "$ac_tmp/out";;
+  *) rm -f "$ac_file" && mv "$ac_tmp/out" "$ac_file";;
+  esac \
+  || as_fn_error $? "could not create $ac_file" "$LINENO" 5
+ ;;
+
+
+
+  esac
+
+done # for ac_tag
+
+
+as_fn_exit 0
+_ACEOF
+ac_clean_files=$ac_clean_files_save
+
+test $ac_write_fail = 0 ||
+  as_fn_error $? "write failure creating $CONFIG_STATUS" "$LINENO" 5
+
+
+# configure is writing to config.log, and then calls config.status.
+# config.status does its own redirection, appending to config.log.
+# Unfortunately, on DOS this fails, as config.log is still kept open
+# by configure, so config.status won't be able to write to it; its
+# output is simply discarded.  So we exec the FD to /dev/null,
+# effectively closing config.log, so it can be properly (re)opened and
+# appended to by config.status.  When coming back to configure, we
+# need to make the FD available again.
+if test "$no_create" != yes; then
+  ac_cs_success=:
+  ac_config_status_args=
+  test "$silent" = yes &&
+    ac_config_status_args="$ac_config_status_args --quiet"
+  exec 5>/dev/null
+  $SHELL $CONFIG_STATUS $ac_config_status_args || ac_cs_success=false
+  exec 5>>config.log
+  # Use ||, not &&, to avoid exiting from the if with $? = 1, which
+  # would make configure fail if this is the last instruction.
+  $ac_cs_success || as_fn_exit 1
+fi
+if test -n "$ac_unrecognized_opts" && test "$enable_option_checking" != no; then
+  { printf "%s\n" "$as_me:${as_lineno-$LINENO}: WARNING: unrecognized options: $ac_unrecognized_opts" >&5
+printf "%s\n" "$as_me: WARNING: unrecognized options: $ac_unrecognized_opts" >&2;}
+fi
+
+
diff --git a/configure.ac b/configure.ac
index af495ab..cd7140c 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,66 +1,29 @@
 AC_PREREQ(2.52)
 
-AC_INIT([apertium-hin], [0.1.0], [francis.tyers@gmail.com])
-AM_INIT_AUTOMAKE([apertium-hin], [0.1.0], no-define)
-AC_PROG_LN_S
-AC_PROG_AWK
-
-m4_define([required_apertium_version], [3.2.0])
-PKG_CHECK_MODULES(APERTIUM,   apertium >= required_apertium_version, [], [PKG_CHECK_MODULES(APERTIUM,   apertium-3.2 >= required_apertium_version)])
-                          
-
-#AC_DEFUN([PKG_CHECK_HFST], [
-#  HFST_VER=0
-#  PKG_CHECK_MODULES(HFST, hfst-3.2 >= 3.2.0,
-#  [
-#      HFST_VER=32
-#  ],
-#  [
-#      PKG_CHECK_MODULES(HFST, hfst-3.1 >= 3.1.0,
-#      [
-#          HFST_VER=31
-#      ],
-#      [
-#          PKG_CHECK_MODULES(HFST, hfst-3.0 >= 3.0.0,
-#          [
-#              HFST_VER=30
-#          ])
-#      ])
-#  ])
-#  AC_SUBST(HFST_VER)
-#])
-#                          
-#PKG_CHECK_HFST
-
-AC_PATH_PROG(LTPRINT, lt-print, no)
-if test x$ac_cv_path_LTPRINT = x
-then
-  AC_MSG_ERROR([You don't have lt-print installed.])
-fi
-if test x$ac_cv_path_LTPRINT = xno
-then
-  AC_MSG_ERROR([You don't have lt-print installed.])
-fi
-
-AC_PATH_PROG(CGCOMP, cg-comp, no)
-if test x$ac_cv_path_CGCOMP = x
-then
-  AC_MSG_ERROR([You don't have cg-comp installed.])
-fi
-if test x$ac_cv_path_CGPROC = xno
-then
-  AC_MSG_ERROR([You don't have cg-comp installed.])
-fi
-
-AC_PATH_PROG(PKG_CONFIG, pkg-config, no)
-if test x$ac_cv_path_PKG_CONFIG = x
-then
-  AC_MSG_ERROR([You don't have pkg-config installed.])
-fi
-if test x$ac_cv_path_PKG_CONFIG = xno
-then
-  AC_MSG_ERROR([You don't have pkg-config installed.])
-fi
-
+AC_INIT([Apertium Hindi], [0.1.0], [francis.tyers@gmail.com], [apertium-hin])
+AM_INIT_AUTOMAKE
+
+dnl HFST support
+AH_TEMPLATE(HAVE_HFSTOSPELL, [Have HFSTOSPELL])
+AC_ARG_ENABLE(ospell, AC_HELP_STRING([--enable-ospell],
+        [enable HFST spellchecking backend]),
+        [hfstospell=${enableval}], [hfstospell=no])
+dnl must be AS_IF for some aclocals to pick PKG_CHECK_MODULES somehow.
+dnl AC_PROVIDE_IFELSE doesn't work on mac?
+AS_IF([test x$hfstospell = xyes], [
+      PKG_CHECK_MODULES([HFSTOSPELL], [hfstospell >= 0.2])
+          AC_DEFINE(HAVE_HFSTOSPELL, 1)
+          CXXFLAGS="$CXXFLAGS $HFSTOSPELL_CFLAGS"
+        ])
+AM_CONDITIONAL([HAVE_HFSTOSPELL], [test x$hfstospell = xyes])
+
+PKG_CHECK_MODULES(APERTIUM, apertium >= 3.6.0)
+PKG_CHECK_MODULES(LTTOOLBOX, lttoolbox >= 3.5.0)
+PKG_CHECK_MODULES(CG3, cg3 >= 1.3.0)
+
+PKG_CHECK_MODULES(REGTEST, apertium-regtest >= 0.0.1, [],
+                  [AC_MSG_WARN([Running tests requires apertium-regtest])])
+
+AP_MKINCLUDE
 
 AC_OUTPUT([Makefile apertium-hin.pc])
diff --git a/debian/changelog b/debian/changelog
index b25a427..7bfd342 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,10 @@
+apertium-hin (0.1.0+git20220801.1.c5912a8-1) UNRELEASED; urgency=low
+
+  * New upstream snapshot.
+  * Drop patch 01_remove_libdir.diff, present upstream.
+
+ -- Debian Janitor <janitor@jelmer.uk>  Thu, 09 Feb 2023 19:22:33 -0000
+
 apertium-hin (0.1.0~r59158-4) unstable; urgency=low
 
   * debian/control:
diff --git a/debian/patches/01_remove_libdir.diff b/debian/patches/01_remove_libdir.diff
deleted file mode 100644
index 6d6dac8..0000000
--- a/debian/patches/01_remove_libdir.diff
+++ /dev/null
@@ -1,13 +0,0 @@
-Description: Remove libdir from pkg-config
-Index: b/apertium-hin.pc.in
-===================================================================
---- a/apertium-hin.pc.in
-+++ b/apertium-hin.pc.in
-@@ -1,7 +1,5 @@
- prefix=@prefix@
- exec_prefix=@exec_prefix@
--libdir=@libdir@
--dir=@libdir@/apertium/apertium-hin
- srcdir=@datarootdir@/apertium/apertium-hin
- 
- Name: apertium-hin
diff --git a/debian/patches/series b/debian/patches/series
index 45a75f8..e69de29 100644
--- a/debian/patches/series
+++ b/debian/patches/series
@@ -1 +0,0 @@
-01_remove_libdir.diff
diff --git a/dev/codes.txt b/dev/codes.txt
deleted file mode 100644
index 748327d..0000000
--- a/dev/codes.txt
+++ /dev/null
@@ -1,4 +0,0 @@
-p = pronoun, n = noun, v = verb, j = adjective,
-r = postposition, a = adverb, c = coordinator, s = subordinator
-d = determiner, m = numeral, x = clitic/other, t = placename
-k = male name, ž = female name, g = family name
diff --git a/dev/hin.freq.categorised.txt b/dev/hin.freq.categorised.txt
deleted file mode 100644
index fb9fb44..0000000
--- a/dev/hin.freq.categorised.txt
+++ /dev/null
@@ -1,2905 +0,0 @@
-t  48301 ^भारत/*भारत$
-n  30713 ^आदि/*आदि$
-a  30713 ^आदि/*आदि$
-j  22859 ^अधिक/*अधिक$
-r  22859 ^अधिक/*अधिक$
-a  22859 ^अधिक/*अधिक$
-j  21924 ^वाले/*वाले$
-j  21817 ^स्थित/*स्थित$
-r  19134 ^अन्तर्गत/*अन्तर्गत$
-a  14809 ^न/*न$
-g  12784 ^मण्डल/*मण्डल$
-n  12784 ^मण्डल/*मण्डल$
-j  12784 ^मण्डल/*मण्डल$
-n  12259 ^साथ/*साथ$
-a  12259 ^साथ/*साथ$
-r  12259 ^साथ/*साथ$
-c  12128 ^व/*व$
-j  11061 ^तहसील/*तहसील$
-t  11001 ^उत्तराखण्ड/*उत्तराखण्ड$
-j  10632 ^प्रचलित/*प्रचलित$
-j  10468 ^वाली/*वाली$
-r   9801 ^दौरान/*दौरान$
-j   9441 ^उपरोक्त/*उपरोक्त$
-n   9210 ^हिन्दी/*हिन्दी$
-n   9104 ^कलियुग/*कलियुग$
-d   9031 ^विक्रमी/*विक्रमी$
-n   8793 ^ईसा/*ईसा$
-j   8358 ^विभिन्न/*विभिन्न$
-t   7720 ^अमेरिका/*अमेरिका$
-j   7481 ^तौर/*तौर$
-n   7297 ^कुमाऊँ/*कुमाऊँ$
-j   6780 ^वाला/*वाला$
-a   6442 ^जहां/*जहां$
-j   6217 ^नामक/*नामक$
-j   5883 ^प्रसिद्ध/*प्रसिद्ध$
-c   5762 ^जबकि/*जबकि$
-n   5586 ^ए/*ए$
-r   5487 ^अलावा/*अलावा$
-v   5419 ^ऑफ़/*ऑफ़$
-k   5345 ^श्री/*श्री$
-a   4980 ^अक्सर/*अक्सर$
-   4903 ^ई/*ई$
-p   4746 ^अमेरिकी/*अमेरिकी$
-j   4725 ^जिनमें/*जिनमें$
-t   4678 ^आन्ध्रप्रदेश/*आन्ध्रप्रदेश$
-a   4415 ^अधिकांश/*अधिकांश$
-a   4410 ^बिना/*बिना$
-r   4410 ^बिना/*बिना$
-c   4279 ^एंड/*एंड$
-a   4077 ^क्या/*क्या$
-t   3983 ^गढ़वाल/*गढ़वाल$
-p   3943 ^अंग्रेजी/*अंग्रेजी$
-   3603 ^डी/*डी$
-p   3261 ^यही/*यही$
-j   3226 ^सहित/*सहित$
-a   3226 ^सहित/*सहित$
-p   3138 ^जिन्हें/*जिन्हें$
-v   2905 ^निर्मित/*निर्मित$
-v   2884 ^बी/*बी$
-a   2822 ^वहां/*वहां$
-p   2797 ^अंग्रेज़ी/*अंग्रेज़ी$
-a   2786 ^आमतौर/*आमतौर$
-c   2764 ^खिलाफ/*खिलाफ$
-r   2652 ^अंतर्गत/*अंतर्गत$
-n   2607 ^रेलवे/*रेलवे$
-   2539 ^स्/*स्$
-d   2526 ^जे/*जे$
-s   2515 ^तहत/*तहत$
-j   2504 ^अच्छी/*अच्छी$
-v   2496 ^हों/*हों$
-v   2496 ^एम/*एम$
-t   2494 ^अल्मोड़ा/*अल्मोड़ा$
-n   2487 ^एल्बम/*एल्बम$
-t   2432 ^ब्रिटेन/*ब्रिटेन$
-p   2413 ^वो/*वो$
-n   2380 ^पौड़ी/*पौड़ी$
-a   2367 ^तरफ/*तरफ$
-v   2348 ^गैर/*गैर$
-k   2346 ^जॉन/*जॉन$
-t   2331 ^एशिया/*एशिया$
-t   2286 ^नैनीताल/*नैनीताल$
-p   2283 ^खुद/*खुद$
-a   2272 ^नही/*नही$
-j   2242 ^स्थापित/*स्थापित$
-j   2231 ^पुराने/*पुराने$
-j   2196 ^य/*य$
-a   2184 ^पुनः/*पुनः$
-p   2183 ^डॉ/*डॉ$
-d   2175 ^आसपास/*आसपास$
-t   2155 ^इंग्लैंड/*इंग्लैंड$
-n   2031 ^नेटवर्क/*नेटवर्क$
-a   2026 ^इत्यादि/*इत्यादि$
-r   2006 ^अधिकतर/*अधिकतर$
-a   1971 ^इतना/*इतना$
-j   1971 ^इतना/*इतना$
-c   1971 ^इतना/*इतना$
-r   1971 ^इतना/*इतना$
-p   1930 ^हे/*हे$
-n   1929 ^मॉडल/*मॉडल$
-j   1917 ^सारे/*सारे$
-p   1915 ^हिन्दू/*हिन्दू$
-j   1911 ^विस्तृत/*विस्तृत$
-m   1896 ^डॉलर/*डॉलर$
-t   1886 ^न्यूयॉर्क/*न्यूयॉर्क$
-a   1882 ^सा/*सा$
-r   1876 ^ना/*ना$
-j   1865 ^निकट/*निकट$
-a   1865 ^निकट/*निकट$
-n   1855 ^कृष्ण/*कृष्ण$
-c   1851 ^बजाय/*बजाय$
-a   1851 ^बजाय/*बजाय$
-n   1828 ^कंप्यूटर/*कंप्यूटर$
-v   1826 ^रिकॉर्ड/*रिकॉर्ड$
-n   1824 ^गांव/*गांव$
-
-t   1810 ^अफ्रीका/*अफ्रीका$
-t   1806 ^लंदन/*लंदन$
-x   1801 ^अ/*अ$
-t   1795 ^जर्मनी/*जर्मनी$
-n   1792 ^विकिपीडिया/*विकिपीडिया$
-n   1765 ^एन/*एन$
-x   1746 ^वीं/*वीं$
-t   1739 ^इलाहाबाद/*इलाहाबाद$
-j   1737 ^पारंपरिक/*पारंपरिक$
-n   1702 ^निश्चित/*निश्चित$
-c   1697 ^अर्थात्/*अर्थात्$
-a   1659 ^परिणामस्वरूप/*परिणामस्वरूप$
-a   1656 ^अतः/*अतः$
-j   1654 ^वही/*वही$
-p   1654 ^वही/*वही$
-j   1651 ^सफल/*सफल$
-j   1599 ^नियमित/*नियमित$
-a   1599 ^नियमित/*नियमित$
-n   1576 ^रुप/*रुप$
-n   1554 ^गूगल/*गूगल$
-t   1539 ^आगरा/*आगरा$
-t   1532 ^मगध/*मगध$
-t   1527 ^कनाडा/*कनाडा$
-n   1525 ^मुस्लिम/*मुस्लिम$
-a   1524 ^कैसे/*कैसे$
-n   1523 ^गांधी/*गांधी$
-a   1519 ^ज्यादातर/*ज्यादातर$
-j   1515 ^युक्त/*युक्त$
-r   1501 ^विरुद्ध/*विरुद्ध$
-n   1501 ^जैन/*जैन$
-t   1493 ^अदिलाबादु/*अदिलाबादु$
-x   1489 ^सिस्टम/*सिस्टम$
-p   1477 ^वालों/*वालों$
-t   1462 ^मुंबई/*मुंबई$
-t   1447 ^चमोली/*चमोली$
-n   1441 ^रॉक/*रॉक$
-j   1438 ^अर्थात/*अर्थात$
-t   1432 ^रायगढ़/*रायगढ़$
-a   1428 ^अंततः/*अंततः$
-v   1426 ^रिलीज़/*रिलीज़$
-j   1426 ^रिलीज़/*रिलीज़$
-n   1413 ^मन्दिर/*मन्दिर$
-k   1408 ^विष्णु/*विष्णु$
-n   1399 ^टीवी/*टीवी$
-x   1389 ^किमी/*किमी$
-j   1387 ^विविध/*विविध$
-j   1385 ^बाहरी/*बाहरी$
-t   1384 ^पिथोरागढ/*पिथोरागढ$
-j   1376 ^अच्छे/*अच्छे$
-t   1374 ^इंडिया/*इंडिया$
-t   1364 ^अमरीका/*अमरीका$
-t   1361 ^अल/*अल$
-n   1356 ^वेब/*वेब$
-t   1339 ^ग्रेगोरी/*ग्रेगोरी$
-t   1332 ^रूस/*रूस$
-t   1326 ^अलीगढ़/*अलीगढ़$
-n   1323 ^सॉफ्टवेयर/*सॉफ्टवेयर$
-x   1316 ^वहीं/*वहीं$
-j   1315 ^पश्चात्/*पश्चात्$
-n   1314 ^ईसाई/*ईसाई$
-j   1314 ^ईसाई/*ईसाई$
-n   1311 ^वर्ल्ड/*वर्ल्ड$
-a   1311 ^अपेक्षाकृत/*अपेक्षाकृत$
-t   1308 ^बागेश्वर/*बागेश्वर$
-x   1304 ^चैनल/*चैनल$
-n   1300 ^अरबी/*अरबी$
-n   1297 ^सिटी/*सिटी$
-n   1297 ^तमिल/*तमिल$
-k   1293 ^कुमार/*कुमार$
-n   1289 ^मां/*मां$
-j   1285 ^अन्तर्राष्ट्रीय/*अन्तर्राष्ट्रीय$
-x   1282 ^त/*त$
-t   1259 ^औरंगाबाद/*औरंगाबाद$.
-a   1254 ^वैसे/*वैसे$
-n   1254 ^पहाड़ी/*पहाड़ी$
-c   1254 ^इतनी/*इतनी$
-a   1253 ^पश्चात/*पश्चात$
-t   1252 ^फर्रुखाबाद/*फर्रुखाबाद$
-k   1250 ^विलियम/*विलियम$
-p   1245 ^उन्होने/*उन्होने$
-n   1244 ^गेम/*गेम$
-m   1236 ^टू/*टू$
-v   1236 ^गतिविधियों/*गतिविधियों$
-n   1226 ^इंटरनेट/*इंटरनेट$
-j   1218 ^आंतरिक/*आंतरिक$
-x   1203 ^स/*स$
-a   1203 ^पुन/*पुन$
-x   1203 ^ओ/*ओ$
-n   1202 ^देव/*देव$
-n   1184 ^ऊंचाई/*ऊंचाई$
-t   1178 ^इटली/*इटली$
-j   1175 ^प्रभावित/*प्रभावित$
-c   1167 ^फलस्वरूप/*फलस्वरूप$
-a   1167 ^फलस्वरूप/*फलस्वरूप$
-p   1152 ^आपके/*आपके$
-s   1149 ^यानि/*यानि$
-x   1146 ^क/*क$
-x   1143 ^कहलाता/*कहलाता$
-n   1138 ^अली/*अली$
-j   1129 ^उत्पन्न/*उत्पन्न$
-x   1128 ^पू/*पू$
-a   1126 ^बाकी/*बाकी$
-n   1120 ^निर्देशक/*निर्देशक$
-a   1114 ^सामान्यतः/*सामान्यतः$
-n   1110 ^सूक्ष्म/*सूक्ष्म$
-a   1110 ^बारे/*बारे$
-j   1110 ^बारे/*बारे$
-j   1108 ^सोवियत/*सोवियत$
-j   1106 ^संचालित/*संचालित$
-n   1103 ^रे/*रे$
-m   1102 ^तीनों/*तीनों$
-c   1087 ^फॉर/*फॉर$
-n   1087 ^टाइम्स/*टाइम्स$
-n   1085 ^वैदिक/*वैदिक$
-x   1084 ^रूपों/*रूपों$
-j   1080 ^रूसी/*रूसी$
-n   1080 ^रूसी/*रूसी$
-n   1075 ^ब्लैक/*ब्लैक$
-v   1065 ^लाया/*लाया$
-v   1061 ^पुनःप्राप्त/*पुनःप्राप्त$
-k   1060 ^माइकल/*माइकल$
-j   1056 ^नेशनल/*नेशनल$
-v   1053 ^लाने/*लाने$
-n   1053 ^एक्स्प्रेस/*एक्स्प्रेस$
-v   1053 ^एक्स्प्रेस/*एक्स्प्रेस$
-k   1047 ^डेविड/*डेविड$
-p   1045 ^डा/*डा$
-j   1045 ^अवश्य/*अवश्य$
-a   1045 ^अवश्य/*अवश्य$
-p   1039 ^कौन/*कौन$
-n   1038 ^उर्दू/*उर्दू$
-t   1034 ^कन्नौज/*कन्नौज$
-m   1033 ^सर्वप्रथम/*सर्वप्रथम$
-v   1021 ^जारी/*जारी$
-x   1018 ^यानी/*यानी$
-j   1018 ^जापानी/*जापानी$
-j   1017 ^यहीं/*यहीं$
-n   1014 ^ख़ुदा/*ख़ुदा$
-j   1002 ^वैश्विक/*वैश्विक$
-n    998 ^बुद्ध/*बुद्ध$
-j    998 ^ऑन/*ऑन$
-a    998 ^ऑन/*ऑन$
-m    989 ^तीसरी/*तीसरी$
-k    989 ^जॉर्ज/*जॉर्ज$
-j    982 ^सारी/*सारी$
-p    976 ^हें/*हें$
-t    974 ^ईरान/*ईरान$
-n    973 ^डे/*डे$
-n    972 ^स्टार/*स्टार$
-v    972 ^स्टार/*स्टार$
-t    971 ^कश्मीर/*कश्मीर$
-t    970 ^ला/*ला$
-x    970 ^एफ/*एफ$
-n    963 ^महाभारत/*महाभारत$
-p    959 ^उपयोगकर्ता/*उपयोगकर्ता$
-r    953 ^जाय/*जाय$
-x    947 ^पीपी/*पीपी$
-x    947 ^आस/*आस$
-v    932 ^लगाया/*लगाया$
-c    932 ^इसलिये/*इसलिये$
-v    923 ^सम्बंधित/*सम्बंधित$
-j    923 ^सम्बंधित/*सम्बंधित$
-t    923 ^चम्पावत/*चम्पावत$
-n    921 ^हिमालय/*हिमालय$
-j    912 ^यूनाइटेड/*यूनाइटेड$
-t    909 ^काशी/*काशी$
-t    906 ^अनंतपुर/*अनंतपुर$
-x    903 ^पृ/*पृ$
-v    901 ^करवाया/*करवाया$
-j    898 ^ज़्यादा/*ज़्यादा$
-a    898 ^ज़्यादा/*ज़्यादा$
-c    898 ^इसीलिए/*इसीलिए$
-n    891 ^डिजिटल/*डिजिटल$
-n    885 ^संबंधों/*संबंधों$
-k    884 ^अर्जुन/*अर्जुन$
-v    882 ^लाइव/*लाइव$
-k    879 ^शंकर/*शंकर$
-n    863 ^लिमिटेड/*लिमिटेड$
-t    862 ^बेगूसराय/*बेगूसराय$
-c    861 ^इतने/*इतने$
-c    860 ^एण्ड/*एण्ड$
-t    858 ^कर्नूलु/*कर्नूलु$
-j    855 ^वाणिज्यिक/*वाणिज्यिक$
-j    852 ^सौर/*सौर$
-n    851 ^पीढ़ी/*पीढ़ी$
-n    850 ^भाँति/*भाँति$
-n    850 ^अवार्ड/*अवार्ड$
-v    850 ^अवार्ड/*अवार्ड$
-t    841 ^पौडी/*पौडी$
-v    837 ^संदर्भित/*संदर्भित$
-j    834 ^ऑनलाइन/*ऑनलाइन$
-g    833 ^शर्मा/*शर्मा$
-x    829 ^च/*च$
-n    827 ^मै/*मै$
-j    826 ^प्रशासनिक/*प्रशासनिक$
-j    825 ^नवीन/*नवीन$
-k    824 ^रॉबर्ट/*रॉबर्ट$
-k    822 ^चार्ल्स/*चार्ल्स$
-k    817 ^अकबर/*अकबर$
-k    811 ^पॉल/*पॉल$
-n    810 ^हॉल/*हॉल$
-k    810 ^हेनरी/*हेनरी$
-j    799 ^एकदिवसीय/*एकदिवसीय$
-n    793 ^बॉक्स/*बॉक्स$
-t    793 ^कैलिफोर्निया/*कैलिफोर्निया$
-a    793 ^आंशिक/*आंशिक$
-j    793 ^आंशिक/*आंशिक$
-n    791 ^विदेश/*विदेश$
-t    788 ^स्पेन/*स्पेन$
-n    788 ^निवासियों/*निवासियों$
-k    785 ^अशोक/*अशोक$
-n    784 ^प्रणालियों/*प्रणालियों$
-n    783 ^ब्रह्म/*ब्रह्म$
-g    782 ^वर्मा/*वर्मा$
-n    780 ^सेवाएं/*सेवाएं$
-n    780 ^वेबसाइट/*वेबसाइट$
-p    778 ^एशियाई/*एशियाई$
-n    776 ^सीज़न/*सीज़न$
-v    776 ^रिकॉर्डिंग/*रिकॉर्डिंग$
-v    776 ^पालन/*पालन$
-v    776 ^कां/*कां$
-a    775 ^क्रमश/*क्रमश$
-j    773 ^इन्हीं/*इन्हीं$
-p    769 ^महाराजा/*महाराजा$
-m    769 ^दोनो/*दोनो$
-j    768 ^लम्बी/*लम्बी$
-j    767 ^खो/*खो$
-n    767 ^किंग/*किंग$
-n    759 ^विद्यमान/*विद्यमान$
-a    754 ^प्रतिष्ठित/*प्रतिष्ठित$
-v    753 ^हास्य/*हास्य$
-n    753 ^ब्रांड/*ब्रांड$
-v    749 ^फुटबॉल/*फुटबॉल$
-n    744 ^फ्रेंच/*फ्रेंच$
-j    740 ^घटक/*घटक$
-n    738 ^रॉयल/*रॉयल$
-m    733 ^नवम्बर/*नवम्बर$
-p    733 ^उन्हीं/*उन्हीं$
-x    730 ^व्/*व्$
-n    727 ^ऑस्ट्रेलियाई/*ऑस्ट्रेलियाई$
-n    726 ^विकि/*विकि$
-j    725 ^प्रस्तुत/*प्रस्तुत$
-n    722 ^माह/*माह$
-a    720 ^व्यावहारिक/*व्यावहारिक$
-t    717 ^गणराज्य/*गणराज्य$
-j    709 ^अग्रणी/*अग्रणी$
-j    707 ^दुर्लभ/*दुर्लभ$
-j    704 ^स्वाभाविक/*स्वाभाविक$
-n    702 ^मराठी/*मराठी$
-n    701 ^यहूदी/*यहूदी$
-a    699 ^आकर्षक/*आकर्षक$
-a    698 ^आसान/*आसान$
-j    696 ^सफ़ेद/*सफ़ेद$
-j    692 ^सारा/*सारा$
-a    691 ^सं/*सं$
-n    690 ^ऑक्सीजन/*ऑक्सीजन$
-n    688 ^जर्नल/*जर्नल$
-x    688 ^ख/*ख$
-n    687 ^ऑफिस/*ऑफिस$
-n    686 ^पेशकश/*पेशकश$
-a    686 ^जिब्राल्टर/*जिब्राल्टर$
-n    684 ^किंगडम/*किंगडम$
-n    679 ^श्रीकृष्ण/*श्रीकृष्ण$
-k    678 ^हैरी/*हैरी$
-k    678 ^लॉस/*लॉस$
-n    677 ^फ़ारसी/*फ़ारसी$
-t    674 ^भागलपुर/*भागलपुर$
-j    672 ^उतना/*उतना$
-t    670 ^पेरिस/*पेरिस$
-j    670 ^तरी/*तरी$
-n    669 ^महात्मा/*महात्मा$
-j    665 ^लम्बे/*लम्बे$
-k    665 ^पीटर/*पीटर$
-j    664 ^बैठक/*बैठक$
-n    661 ^फ्रांसीसी/*फ्रांसीसी$
-v    661 ^गुना/*गुना$
-v    660 ^हिट/*हिट$
-g    659 ^सैन/*सैन$
-n    656 ^यमुना/*यमुना$
-k    655 ^रिचर्ड/*रिचर्ड$
-x    654 ^उ/*उ$
-n    650 ^कम्प्यूटर/*कम्प्यूटर$
-a    647 ^निहित/*निहित$
-j    646 ^सदर/*सदर$
-t    644 ^सिंगापुर/*सिंगापुर$
-n    643 ^जंक्शन/*जंक्शन$
-n    641 ^हार्ट/*हार्ट$
-g    641 ^नेहरू/*नेहरू$
-x    638 ^प/*प$
-n    636 ^आर्य/*आर्य$
-v    634 ^रहीं/*रहीं$
-j    633 ^बिल्कुल/*बिल्कुल$
-j    633 ^इलेक्ट्रॉनिक/*इलेक्ट्रॉनिक$
-n    632 ^रामायण/*रामायण$
-j    630 ^शल्य/*शल्य$
-t    630 ^कोरिया/*कोरिया$
-n    630 ^उपनिषदों/*उपनिषदों$
-v    625 ^पॉप/*पॉप$
-j    624 ^विशेषताओं/*विशेषताओं$
-n    622 ^बहु/*बहु$
-v    622 ^बनवाया/*बनवाया$
-x    621 ^ऐ/*ऐ$
-v    618 ^खड़ी/*खड़ी$
-n    617 ^निर्माताओं/*निर्माताओं$
-n    614 ^ट्रैक/*ट्रैक$
-j    610 ^कृपया/*कृपया$
-a    608 ^कारकों/*कारकों$
-j    607 ^अनुमानित/*अनुमानित$
-v    605 ^लगाने/*लगाने$
-t    605 ^कलकत्ता/*कलकत्ता$
-j    604 ^शक्तियों/*शक्तियों$
-a    603 ^प्रीमियर/*प्रीमियर$
-c    601 ^हालाँकि/*हालाँकि$
-t    600 ^अररिया/*अररिया$
-a    599 ^विमानक्षेत्र/*विमानक्षेत्र$
-n    596 ^इतालवी/*इतालवी$
-j    595 ^प्रेरित/*प्रेरित$
-n    593 ^साइट/*साइट$
-n    593 ^शुक्ल/*शुक्ल$
-t    592 ^पुर्णिया/*पुर्णिया$
-n    592 ^डॉक्टर/*डॉक्टर$
-k    591 ^गाँधी/*गाँधी$
-j    590 ^स्वस्थ/*स्वस्थ$
-j    589 ^पारिवारिक/*पारिवारिक$
-j    589 ^कायम/*कायम$
-a    586 ^उद्योगों/*उद्योगों$
-n    583 ^ईस्ट/*ईस्ट$
-j    581 ^मुख्यत/*मुख्यत$
-g    575 ^स्मिथ/*स्मिथ$
-m    575 ^दशकों/*दशकों$
-x    574 ^डबल्यू/*डबल्यू$
-k    570 ^विक्रम/*विक्रम$
-n    570 ^एड्स/*एड्स$
-m    570 ^एट/*एट$
-n    570 ^अफ्रीकी/*अफ्रीकी$
-j    569 ^बिलकुल/*बिलकुल$
-t    568 ^आयरलैंड/*आयरलैंड$
-j    567 ^केंद्रित/*केंद्रित$
-n    565 ^दि/*दि$
-r    565 ^कीं/*कीं$
-j    564 ^शुरु/*शुरु$
-t    564 ^यमकेश्वर/*यमकेश्वर$
-v    563 ^हासिल/*हासिल$
-j    562 ^शैक्षिक/*शैक्षिक$
-a    562 ^शुरुआती/*शुरुआती$
-g    557 ^ख़ान/*ख़ान$
-j    555 ^अध्ययनों/*अध्ययनों$
-r    554 ^जोकि/*जोकि$
-j    554 ^उपरांत/*उपरांत$
-n    552 ^स्टॉक/*स्टॉक$
-k    552 ^थॉमस/*थॉमस$
-n    551 ^ज़मीन/*ज़मीन$
-a    550 ^युनाइटेड/*युनाइटेड$
-n    548 ^पढ़ाई/*पढ़ाई$
-t    547 ^पुणे/*पुणे$
-n    546 ^ऑव/*ऑव$
-t    545 ^वाराणसी/*वाराणसी$
-v    545 ^मुताबिक/*मुताबिक$
-a    545 ^कहलाते/*कहलाते$
-n    543 ^पूंजी/*पूंजी$
-k    543 ^एडवर्ड/*एडवर्ड$
-j    541 ^मानचित्र/*मानचित्र$
-n    538 ^बीबीसी/*बीबीसी$
-a    538 ^तें/*तें$
-j    538 ^तरफ़/*तरफ़$
-j    537 ^ऑल/*ऑल$
-n    532 ^क्रेडिट/*क्रेडिट$
-a    530 ^आवासीय/*आवासीय$
-n    529 ^सूचीबद्ध/*सूचीबद्ध$
-n    529 ^भारती/*भारती$
-j    527 ^संभवत/*संभवत$
-a    526 ^विफल/*विफल$
-j    526 ^प्रदान/*प्रदान$
-j    525 ^नामित/*नामित$
-c    523 ^सम्बन्धी/*सम्बन्धी$
-t    521 ^अफ़्रीका/*अफ़्रीका$
-j    520 ^उपयोगकर्ताओं/*उपयोगकर्ताओं$
-a    519 ^सच/*सच$
-n    519 ^देवनागरी/*देवनागरी$
-j    519 ^खासकर/*खासकर$
-n    518 ^लिंक/*लिंक$
-n    516 ^नील/*नील$
-a    516 ^आणि/*आणि$
-j    515 ^समक्ष/*समक्ष$
-n    515 ^लोकसभा/*लोकसभा$
-j    513 ^अतएव/*अतएव$
-n    511 ^ब्लू/*ब्लू$
-k    510 ^मार्टिन/*मार्टिन$
-t    508 ^फूलपुर/*फूलपुर$
-a    508 ^पटकथा/*पटकथा$
-n    507 ^पंजाबी/*पंजाबी$
-n    507 ^ज़िले/*ज़िले$
-k    507 ^ऑस्टिन/*ऑस्टिन$
-j    506 ^नो/*नो$
-m    506 ^कितनी/*कितनी$
-j    506 ^अन्यथा/*अन्यथा$
-t    504 ^लन्दन/*लन्दन$
-x    503 ^पं/*पं$
-n    502 ^मानकों/*मानकों$
-j    502 ^बिग/*बिग$
-j    501 ^सुपर/*सुपर$
-a    500 ^विभक्त/*विभक्त$
-n    499 ^विश्/*विश्$
-a    498 ^निर्देशित/*निर्देशित$
-j    498 ^खगोलीय/*खगोलीय$
-a    497 ^ऊंची/*ऊंची$
-g    496 ^विलियम्स/*विलियम्स$
-v    496 ^रक्तचाप/*रक्तचाप$
-k    494 ^भूषण/*भूषण$
-n    494 ^प्रखण्ड/*प्रखण्ड$
-n    494 ^ग्रीन/*ग्रीन$
-p    492 ^उन्हे/*उन्हे$
-a    491 ^बजाए/*बजाए$
-j    491 ^इसपर/*इसपर$
-n    489 ^हनुमान/*हनुमान$
-t    489 ^लाहौर/*लाहौर$
-n    489 ^एचआईवी/*एचआईवी$
-g    488 ^राव/*राव$
-t    488 ^मथुरा/*मथुरा$
-n    488 ^गणेश/*गणेश$
-j    488 ^ख़ास/*ख़ास$
-j    488 ^कडप/*कडप$
-k    488 ^अमर/*अमर$
-a    487 ^पहाड़ियों/*पहाड़ियों$
-n    486 ^लखीसराय/*लखीसराय$
-j    485 ^कितना/*कितना$
-n    484 ^व्हाइट/*व्हाइट$
-t    484 ^मैसूर/*मैसूर$
-n    484 ^बृहस्पति/*बृहस्पति$
-z    483 ^श्रीमती/*श्रीमती$
-x    482 ^भा/*भा$
-t    479 ^शिकागो/*शिकागो$
-t    479 ^अल्मोडा/*अल्मोडा$
-p    477 ^मि/*मि$
-n    477 ^ऑक्सफोर्ड/*ऑक्सफोर्ड$
-t    475 ^हिन्दुस्तान/*हिन्दुस्तान$
-j    474 ^हॉट/*हॉट$
-n    474 ^मुनि/*मुनि$
-k    474 ^न्यूटन/*न्यूटन$
-t    473 ^तिब्बत/*तिब्बत$
-n    473 ^गठबंधन/*गठबंधन$
-n    471 ^मुंह/*मुंह$
-j    470 ^प्रसारित/*प्रसारित$
-t    470 ^न्यूजीलैंड/*न्यूजीलैंड$
-a    467 ^ख़त्म/*ख़त्म$
-p    466 ^जिनमे/*जिनमे$
-n    465 ^माइक्रोसॉफ्ट/*माइक्रोसॉफ्ट$
-n    465 ^इलेक्ट्रिक/*इलेक्ट्रिक$
-n    464 ^बिलबोर्ड/*बिलबोर्ड$
-j    463 ^व्यवस्थित/*व्यवस्थित$
-k    461 ^मनु/*मनु$
-a    460 ^प्रतिवर्ष/*प्रतिवर्ष$
-j    460 ^जरिए/*जरिए$
-n    459 ^काउंसिल/*काउंसिल$
-k    458 ^टॉम/*टॉम$
-j    458 ^कहलाती/*कहलाती$
-k    456 ^मोहम्मद/*मोहम्मद$
-j    456 ^पार्वती/*पार्वती$
-a    456 ^करियर/*करियर$
-n    454 ^स्टोन/*स्टोन$
-z    454 ^गीता/*गीता$
-n    453 ^टूर/*टूर$
-t    451 ^मियामी/*मियामी$
-j    451 ^नीतियों/*नीतियों$
-j    451 ^चीज़/*चीज़$
-a    448 ^अपितु/*अपितु$
-n    447 ^स्टील/*स्टील$
-j    446 ^गणितीय/*गणितीय$
-j    445 ^प्रतिकूल/*प्रतिकूल$
-n    444 ^इर्द/*इर्द$
-n    443 ^हॉलीवुड/*हॉलीवुड$
-n    441 ^महर्षि/*महर्षि$
-t    440 ^ब्रज/*ब्रज$
-j    440 ^ओपन/*ओपन$
-x    440 ^इ/*इ$
-j    439 ^सुविधाएं/*सुविधाएं$
-n    439 ^माई/*माई$
-n    438 ^विधानसभा/*विधानसभा$
-t    438 ^बनाम/*बनाम$
-n    437 ^मैकमोहन/*मैकमोहन$
-g    436 ^हार्डी/*हार्डी$
-z    436 ^राधा/*राधा$
-n    435 ^ईरानी/*ईरानी$
-t    434 ^जम्मू/*जम्मू$
-x    433 ^ज/*ज$
-j    432 ^सिविल/*सिविल$
-v    432 ^बैंकिंग/*बैंकिंग$
-v    432 ^खड़े/*खड़े$
-n    431 ^प्रो/*प्रो$
-k    430 ^शिवाजी/*शिवाजी$
-x    430 ^जें/*जें$
-n    428 ^सोसायटी/*सोसायटी$
-a    428 ^भांति/*भांति$
-n    428 ^टैग/*टैग$
-n    426 ^एयरलाइंस/*एयरलाइंस$
-j    425 ^वितरित/*वितरित$
-n    425 ^पूजन/*पूजन$
-n    425 ^पुर्तगाली/*पुर्तगाली$
-n    423 ^डीवीडी/*डीवीडी$
-k    423 ^क्रिस/*क्रिस$
-j    423 ^ऊंचा/*ऊंचा$
-a    422 ^साक्ष्य/*साक्ष्य$
-j    422 ^भिकियासैण/*भिकियासैण$
-j    422 ^प्रतिबंधित/*प्रतिबंधित$
-n    422 ^नोबेल/*नोबेल$
-n    420 ^वैष्णव/*वैष्णव$
-n    419 ^मुख्यमंत्री/*मुख्यमंत्री$
-a    417 ^सिद्ध/*सिद्ध$
-x    417 ^प्र/*प्र$
-j    417 ^पारस्परिक/*पारस्परिक$
-t    416 ^स्कॉटलैंड/*स्कॉटलैंड$
-k    415 ^आर्थर/*आर्थर$
-j    414 ^हा/*हा$
-v    414 ^रिसर्च/*रिसर्च$
-j    414 ^टॉप/*टॉप$
-n    413 ^जिम/*जिम$
-n    412 ^पैटर्न/*पैटर्न$
-n    412 ^क्रिसमस/*क्रिसमस$
-k    412 ^एलन/*एलन$
-n    411 ^महादेव/*महादेव$
-n    410 ^एंजिल्स/*एंजिल्स$
-z    408 ^रूचि/*रूचि$
-n    407 ^हिन्द/*हिन्द$
-k    407 ^परशुराम/*परशुराम$
-a    406 ^सफाई/*सफाई$
-a    406 ^तय/*तय$
-p    406 ^उन्होनें/*उन्होनें$
-n    405 ^हिस्ट्री/*हिस्ट्री$
-j    405 ^समेत/*समेत$
-a    405 ^तेज़ी/*तेज़ी$
-p    405 ^तू/*तू$
-g    405 ^ठाकुर/*ठाकुर$
-k    405 ^जोन्स/*जोन्स$
-n    404 ^ईसवी/*ईसवी$
-n    403 ^पूर्णिमा/*पूर्णिमा$
-n    403 ^जावा/*जावा$
-a    402 ^कृत/*कृत$
-t    401 ^वाशिंगटन/*वाशिंगटन$
-j    401 ^महान्/*महान्$
-a    400 ^रचनाकाल/*रचनाकाल$
-n    400 ^बॉन्ड/*बॉन्ड$
-n    400 ^आंकड़ों/*आंकड़ों$
-j    399 ^सिर्फ़/*सिर्फ़$
-a    398 ^तेज़/*तेज़$
-x    398 ^ट/*ट$
-t    398 ^कायमगंज/*कायमगंज$
-c    398 ^ऐंड/*ऐंड$
-z    398 ^इंदिरा/*इंदिरा$
-a    398 ^इधर/*इधर$
-k    397 ^लक्ष्मण/*लक्ष्मण$
-j    397 ^तटीय/*तटीय$
-g    396 ^शास्त्री/*शास्त्री$
-v    396 ^लाए/*लाए$
-v    395 ^प्रतिस्थापित/*प्रतिस्थापित$
-j    395 ^ऊंचे/*ऊंचे$
-j    394 ^शुरूआती/*शुरूआती$
-z    394 ^लक्ष्मी/*लक्ष्मी$
-n    394 ^कंपनियां/*कंपनियां$
-n    393 ^वैध/*वैध$
-j    393 ^प्राकृत/*प्राकृत$
-k    393 ^इन्द्र/*इन्द्र$
-v    391 ^ग्रस्त/*ग्रस्त$
-n    391 ^क़ानून/*क़ानून$
-n    391 ^उत्तरार्ध/*उत्तरार्ध$
-v    390 ^संरक्षित/*संरक्षित$
-n    390 ^इंग्लिश/*इंग्लिश$
-j    388 ^निकटतम/*निकटतम$
-n    388 ^कोशिकाएं/*कोशिकाएं$
-n    388 ^आंकड़े/*आंकड़े$
-n    387 ^सीबीएस/*सीबीएस$
-v    387 ^लागू/*लागू$
-n    387 ^पूर्णतया/*पूर्णतया$
-n    387 ^ऋग्वेद/*ऋग्वेद$
-t    386 ^बंबई/*बंबई$
-k    386 ^पृथ्वीराज/*पृथ्वीराज$
-n    386 ^दुर्गा/*दुर्गा$
-x    385 ^यों/*यों$
-n    385 ^प्रोटोकॉल/*प्रोटोकॉल$
-j    385 ^प्रयाग/*प्रयाग$
-n    385 ^थिएटर/*थिएटर$
-n    385 ^गुजराती/*गुजराती$
-j    384 ^हार्ड/*हार्ड$
-n    384 ^संसदीय/*संसदीय$
-j    384 ^बेस्ट/*बेस्ट$
-v    383 ^लीप/*लीप$
-n    382 ^राजपूत/*राजपूत$
-j    381 ^समुचित/*समुचित$
-v    381 ^व्यतीत/*व्यतीत$
-n    381 ^गोल्ड/*गोल्ड$
-v    381 ^कोइल/*कोइल$
-a    380 ^स्वचालित/*स्वचालित$
-n    380 ^रिकॉर्ड्स/*रिकॉर्ड्स$
-j    380 ^केन्द्रित/*केन्द्रित$
-j    380 ^आपसी/*आपसी$
-a    379 ^बलों/*बलों$
-n    379 ^फीट/*फीट$
-n    378 ^ब्रदर्स/*ब्रदर्स$
-n    378 ^नाइट/*नाइट$
-j    378 ^ट्रीय/*ट्रीय$
-a    378 ^उत्/*उत्$
-n    377 ^मूर/*मूर$
-n    377 ^पोर्ट/*पोर्ट$
-n    376 ^कन्नड़/*कन्नड़$
-x    375 ^रा/*रा$
-n    375 ^जनक/*जनक$
-j    375 ^घटकों/*घटकों$
-n    375 ^उपमहाद्वीप/*उपमहाद्वीप$
-t    374 ^स्वीडन/*स्वीडन$
-n    374 ^बंगाली/*बंगाली$
-n    374 ^टाटा/*टाटा$
-n    372 ^महारानी/*महारानी$
-m    372 ^ट्रिपल/*ट्रिपल$
-k    370 ^स्टीव/*स्टीव$
-n    370 ^फाउंडेशन/*फाउंडेशन$
-j    370 ^पंजीकृत/*पंजीकृत$
-n    369 ^बहरहाल/*बहरहाल$
-x    369 ^छ/*छ$
-n    369 ^चन्द्र/*चन्द्र$
-n    369 ^एपिसोड/*एपिसोड$
-n    368 ^होगन/*होगन$
-j    368 ^विदेशों/*विदेशों$
-n    368 ^रेस्तरां/*रेस्तरां$
-t    368 ^ब्राजील/*ब्राजील$
-v    367 ^लगाए/*लगाए$
-n    367 ^गांवों/*गांवों$
-p    367 ^उसपर/*उसपर$
-c    367 ^आफ/*आफ$
-t    366 ^फ्लोरिडा/*फ्लोरिडा$
-k    365 ^हुसैन/*हुसैन$
-k    365 ^मोहन/*मोहन$
-t    365 ^थलीसैंण/*थलीसैंण$
-m    365 ^टु/*टु$
-j    365 ^उन्/*उन्$
-v    364 ^लुप्त/*लुप्त$
-v    362 ^खिलाफ़/*खिलाफ़$
-k    362 ^औरंगजेब/*औरंगजेब$
-n    361 ^यौगिकों/*यौगिकों$
-j    361 ^भाषी/*भाषी$
-n    361 ^जातक/*जातक$
-a    361 ^अर्ध/*अर्ध$
-n    360 ^वाहक/*वाहक$
-t    360 ^रानीखेत/*रानीखेत$
-n    360 ^मेट्रो/*मेट्रो$
-a    359 ^सर्वथा/*सर्वथा$
-j    359 ^व्युत्पन्न/*व्युत्पन्न$
-n    359 ^क्रॉस/*क्रॉस$
-n    358 ^सामग्रियों/*सामग्रियों$
-j    358 ^समस्याएं/*समस्याएं$
-a    358 ^फार्म/*फार्म$
-j    358 ^चूँकि/*चूँकि$
-n    358 ^गोल्डन/*गोल्डन$
-j    357 ^विश्वसनीय/*विश्वसनीय$
-k    357 ^कालिदास/*कालिदास$
-k    357 ^एरिक/*एरिक$
-n    357 ^आयुर्वेद/*आयुर्वेद$
-n    356 ^रेसिंग/*रेसिंग$
-t    356 ^यूके/*यूके$
-n    356 ^पैलेस/*पैलेस$
-x    356 ^ग/*ग$
-k    355 ^गौतम/*गौतम$
-n    354 ^आयरिश/*आयरिश$
-n    353 ^ध्रुवीय/*ध्रुवीय$
-p    353 ^जिसपर/*जिसपर$
-n    353 ^उदाहरणार्थ/*उदाहरणार्थ$
-t    352 ^सिडनी/*सिडनी$
-n    352 ^बाई/*बाई$
-t    352 ^फ़्रांस/*फ़्रांस$
-n    352 ^कॉमेडी/*कॉमेडी$
-j    351 ^समर्थित/*समर्थित$
-g    351 ^पुरी/*पुरी$
-a    351 ^नवीनतम/*नवीनतम$
-m    351 ^दुसरे/*दुसरे$
-t    351 ^अयोध्या/*अयोध्या$
-n    350 ^निर्णायक/*निर्णायक$
-n    349 ^शोधकर्ताओं/*शोधकर्ताओं$
-t    349 ^बर्मा/*बर्मा$
-n    349 ^कॉर्पोरेट/*कॉर्पोरेट$
-t    348 ^अहमदाबाद/*अहमदाबाद$
-j    348 ^अपशिष्ट/*अपशिष्ट$
-p    346 ^उनपर/*उनपर$
-n    345 ^स्पेनिश/*स्पेनिश$
-n    345 ^लॉर्ड/*लॉर्ड$
-j    345 ^उपर/*उपर$
-a    343 ^संलग्न/*संलग्न$
-p    343 ^मेँ/*मेँ$
-g    343 ^भट्ट/*भट्ट$
-x    343 ^ब/*ब$
-n    343 ^पिथौरागढ/*पिथौरागढ$
-t    343 ^दुबई/*दुबई$
-t    343 ^ग्वालियर/*ग्वालियर$
-g    342 ^बोस/*बोस$
-j    342 ^एकादशी/*एकादशी$
-n    341 ^साइड/*साइड$
-j    341 ^ग्रैंड/*ग्रैंड$
-n    340 ^ऐल्बम/*ऐल्बम$
-n    340 ^एनरॉन/*एनरॉन$
-n    339 ^विद्वान्/*विद्वान्$
-j    339 ^प्राचीनतम/*प्राचीनतम$
-n    339 ^नेपाली/*नेपाली$
-n    339 ^टर्मिनल/*टर्मिनल$
-j    338 ^शॉट/*शॉट$
-n    338 ^न्यूज़/*न्यूज़$
-a    338 ^दर्ज/*दर्ज$
-t    337 ^नागपुर/*नागपुर$
-n    337 ^डीएनए/*डीएनए$
-n    336 ^शिवलिंग/*शिवलिंग$
-n    336 ^पर्ल/*पर्ल$
-n    336 ^ग्लोब/*ग्लोब$
-n    336 ^ऑटो/*ऑटो$
-n    336 ^एंटीबायोटिक/*एंटीबायोटिक$
-j    335 ^वा/*वा$
-g    335 ^मौर्य/*मौर्य$
-t    335 ^भरत/*भरत$
-n    335 ^बॉल/*बॉल$
-n    335 ^ग्लोबल/*ग्लोबल$
-a    334 ^सम्मानित/*सम्मानित$
-n    334 ^दांत/*दांत$
-n    334 ^गंगोलीहाट/*गंगोलीहाट$
-j    334 ^करवा/*करवा$
-a    334 ^आर्ट्स/*आर्ट्स$
-t    333 ^बनारस/*बनारस$
-n    333 ^तेलुगु/*तेलुगु$
-n    332 ^सिंड्रोम/*सिंड्रोम$
-n    332 ^रुपए/*रुपए$
-k    332 ^अन्ना/*अन्ना$
-k    331 ^युधिष्ठिर/*युधिष्ठिर$
-n    331 ^फोर्ड/*फोर्ड$
-n    330 ^विश्वयुद्ध/*विश्वयुद्ध$
-j    330 ^रेंज/*रेंज$
-a    330 ^रेटिंग/*रेटिंग$
-k    330 ^अंकित/*अंकित$
-j    329 ^मेन/*मेन$
-t    329 ^बीकानेर/*बीकानेर$
-j    329 ^जन्मे/*जन्मे$
-a    328 ^विलुप्त/*विलुप्त$
-n    328 ^लॉ/*लॉ$
-j    328 ^एक्सचेंज/*एक्सचेंज$
-n    327 ^सर्किट/*सर्किट$
-n    327 ^रसूल/*रसूल$
-j    327 ^पारम्परिक/*पारम्परिक$
-a    327 ^दीर्घकालिक/*दीर्घकालिक$
-n    327 ^एनबीसी/*एनबीसी$
-j    327 ^एज/*एज$
-j    326 ^जाएं/*जाएं$
-t    326 ^कानपुर/*कानपुर$
-a    325 ^संरचनात्मक/*संरचनात्मक$
-v    325 ^विस्तारित/*विस्तारित$
-n    325 ^फाइबर/*फाइबर$
-k    325 ^कार्ल/*कार्ल$
-j    324 ^भावनात्मक/*भावनात्मक$
-a    324 ^उधर/*उधर$
-j    323 ^भूमध्य/*भूमध्य$
-a    322 ^वैसा/*वैसा$
-k    322 ^बेन/*बेन$
-t    322 ^छिबरामऊ/*छिबरामऊ$
-n    322 ^गुर्दे/*गुर्दे$
-n    321 ^स्पोर्ट्स/*स्पोर्ट्स$
-t    321 ^जोधपुर/*जोधपुर$
-j    321 ^ऐसें/*ऐसें$
-k    321 ^अहमद/*अहमद$
-c    320 ^सें/*सें$
-t    320 ^बेल्जियम/*बेल्जियम$
-n    320 ^इनपुट/*इनपुट$
-n    319 ^शंकराचार्य/*शंकराचार्य$
-a    319 ^बरकरार/*बरकरार$
-j    319 ^नाट्य/*नाट्य$
-k    318 ^सांता/*सांता$
-x    317 ^ल/*ल$
-n    317 ^प्रजातियां/*प्रजातियां$
-j    317 ^चौड़ी/*चौड़ी$
-a    317 ^क्षत्रिय/*क्षत्रिय$
-n    317 ^कॉफी/*कॉफी$
-j    317 ^ऑपरेटिंग/*ऑपरेटिंग$
-n    317 ^अल्लाह/*अल्लाह$
-y    316 ^यॉर्क/*यॉर्क$
-n    316 ^उत्तरदायी/*उत्तरदायी$
-p    316 ^इन्होने/*इन्होने$
-j    316 ^आधी/*आधी$
-j    315 ^हू/*हू$
-v    315 ^जाएंगे/*जाएंगे$
-j    315 ^आखिर/*आखिर$
-n    314 ^हिन्दुओं/*हिन्दुओं$
-t    314 ^वरन्/*वरन्$
-n    314 ^महिलाएं/*महिलाएं$
-n    314 ^चैंपियनशिप/*चैंपियनशिप$
-n    313 ^सती/*सती$
-n    313 ^वुड्स/*वुड्स$
-j    313 ^विरूद्ध/*विरूद्ध$
-j    313 ^लगीं/*लगीं$
-a    313 ^राज्/*राज्$
-j    313 ^नजदीक/*नजदीक$
-n    313 ^कॉल/*कॉल$
-n    313 ^अफ़्रीकी/*अफ़्रीकी$
-a    312 ^स्वत/*स्वत$
-k    312 ^सिद्धार्थ/*सिद्धार्थ$
-j    312 ^खण्ड/*खण्ड$
-n    311 ^मेटल/*मेटल$
-j    311 ^चौबटाखाल/*चौबटाखाल$
-p    311 ^अहम/*अहम$
-n    310 ^वीज़ा/*वीज़ा$
-n    310 ^म्यूज़िक/*म्यूज़िक$
-n    310 ^प्रमेय/*प्रमेय$
-j    310 ^पारिस्थितिकी/*पारिस्थितिकी$
-n    310 ^थराली/*थराली$
-a    310 ^तथाकथित/*तथाकथित$
-n    310 ^गेम्स/*गेम्स$
-j    309 ^स्वतः/*स्वतः$
-n    309 ^डिज़्नी/*डिज़्नी$
-z    309 ^जेरिको/*जेरिको$
-n    309 ^ओवेन/*ओवेन$
-n    308 ^स्कॉट/*स्कॉट$
-p    308 ^वें/*वें$
-n    308 ^बोइंग/*बोइंग$
-j    308 ^प्रतिरोधी/*प्रतिरोधी$
-t    308 ^प्रतापगढ़/*प्रतापगढ़$
-n    308 ^काच/*काच$
-j    307 ^शूटिंग/*शूटिंग$
-n    307 ^शाकाहारी/*शाकाहारी$
-n    307 ^रावण/*रावण$
-x    307 ^र/*र$
-n    307 ^यम/*यम$
-j    307 ^निर्दिष्ट/*निर्दिष्ट$
-t    307 ^अतरौली/*अतरौली$
-g    306 ^होम्स/*होम्स$
-g    305 ^ब्लूज़/*ब्लूज़$
-n    305 ^एजेंसियों/*एजेंसियों$
-g    304 ^विल्सन/*विल्सन$
-a    303 ^सुलभ/*सुलभ$
-k    303 ^विल/*विल$
-r    303 ^लाई/*लाई$
-n    303 ^जाट/*जाट$
-n    303 ^चांदी/*चांदी$
-n    303 ^खगड़िया/*खगड़िया$
-t    303 ^उदयपुर/*उदयपुर$
-n    302 ^स्टेट्स/*स्टेट्स$
-j    302 ^सामान्यतया/*सामान्यतया$
-k    302 ^लुईस/*लुईस$
-v    302 ^लगाकर/*लगाकर$
-n    302 ^द्विवेदी/*द्विवेदी$
-j    302 ^तप/*तप$
-v    301 ^सिंध/*सिंध$
-j    301 ^विषयक/*विषयक$
-n    300 ^वक़्त/*वक़्त$
-n    300 ^भयानक/*भयानक$
-m    300 ^उन्नीसवीं/*उन्नीसवीं$
-g    299 ^पटेल/*पटेल$
-t    299 ^उज्जैन/*उज्जैन$
-n    299 ^ईमेल/*ईमेल$
-k    298 ^विक्रमादित्य/*विक्रमादित्य$
-n    298 ^लम्बा/*लम्बा$
-n    298 ^मैनचेस्टर/*मैनचेस्टर$
-j    298 ^दरअसल/*दरअसल$
-m    298 ^छठे/*छठे$
-n    297 ^ऑडियो/*ऑडियो$
-a    297 ^अवशोषित/*अवशोषित$
-n    296 ^जेट/*जेट$
-j    296 ^कहां/*कहां$
-n    295 ^ब्रजभाषा/*ब्रजभाषा$
-n    295 ^तिलक/*तिलक$
-n    295 ^ख़ुद/*ख़ुद$
-n    295 ^कहानियां/*कहानियां$
-x    294 ^ड/*ड$
-n    293 ^सम्राट्/*सम्राट्$
-k    293 ^बर्लिन/*बर्लिन$
-g    293 ^जोशी/*जोशी$
-n    293 ^क्वीन/*क्वीन$
-n    293 ^केन/*केन$
-n    293 ^ओलंपिक/*ओलंपिक$
-n    293 ^ईसापूर्व/*ईसापूर्व$
-p    292 ^हि/*हि$
-a    292 ^सूचक/*सूचक$
-k    292 ^दुर्योधन/*दुर्योधन$
-g    292 ^चौधरी/*चौधरी$
-t    292 ^गोवा/*गोवा$
-j    291 ^सुप्रसिद्ध/*सुप्रसिद्ध$
-n    291 ^फ़रवरी/*फ़रवरी$
-t    291 ^पोलैंड/*पोलैंड$
-v    291 ^एक्सेस/*एक्सेस$
-j    291 ^उद्धृत/*उद्धृत$
-p    291 ^इनमे/*इनमे$
-g    290 ^सोनी/*सोनी$
-t    290 ^मालवा/*मालवा$
-n    290 ^बेरीनाग/*बेरीनाग$
-j    289 ^रॉ/*रॉ$
-k    289 ^बॉब/*बॉब$
-n    289 ^बिजनेस/*बिजनेस$
-t    289 ^फ्रांसिस्को/*फ्रांसिस्को$
-j    289 ^घूर्णन/*घूर्णन$
-t    289 ^ग्रीस/*ग्रीस$
-v    289 ^अभियांत्रिकी/*अभियांत्रिकी$
-n    288 ^डॉन/*डॉन$
-a    288 ^आर्यों/*आर्यों$
-a    287 ^शासित/*शासित$
-n    287 ^पिट/*पिट$
-n    287 ^धाम/*धाम$
-g    287 ^चौहान/*चौहान$
-n    287 ^खुसरो/*खुसरो$
-j    287 ^आतां/*आतां$
-k    286 ^ब्रायन/*ब्रायन$
-n    286 ^बांग्ला/*बांग्ला$
-n    285 ^श्रीराम/*श्रीराम$
-t    285 ^वियतनाम/*वियतनाम$
-n    285 ^भागवत/*भागवत$
-j    285 ^नैशनल/*नैशनल$
-j    285 ^ज़्यादातर/*ज़्यादातर$
-t    285 ^अवध/*अवध$
-n    284 ^संस्/*संस्$
-n    284 ^ब्लेक/*ब्लेक$
-a    284 ^फ़िर/*फ़िर$
-n    284 ^जिलाधिकारी/*जिलाधिकारी$
-n    284 ^कोरियाई/*कोरियाई$
-n    284 ^कांच/*कांच$
-j    284 ^कास्त्रो/*कास्त्रो$
-k    284 ^आकर्षित/*आकर्षित$
-a    283 ^वस्तुएं/*वस्तुएं$
-n    283 ^बॉलीवुड/*बॉलीवुड$
-j    283 ^पद्य/*पद्य$
-j    283 ^नाहीं/*नाहीं$
-t    283 ^ईस्टवुड/*ईस्टवुड$
-j    282 ^विशेषताएं/*विशेषताएं$
-n    282 ^मुंगेर/*मुंगेर$
-n    282 ^प्रोजेक्ट/*प्रोजेक्ट$
-t    282 ^गोरखपुर/*गोरखपुर$
-t    282 ^कैम्ब्रिज/*कैम्ब्रिज$
-t    281 ^हरिद्वार/*हरिद्वार$
-n    281 ^स्वीकृत/*स्वीकृत$
-j    280 ^राष्/*राष्$
-n    280 ^मॉडलों/*मॉडलों$
-k    280 ^जैक्सन/*जैक्सन$
-a    280 ^क्षमताओं/*क्षमताओं$
-a    279 ^वस्तुतः/*वस्तुतः$
-j    279 ^अवशोषण/*अवशोषण$
-k    278 ^भीम/*भीम$
-n    278 ^प्रतियोगिताओं/*प्रतियोगिताओं$
-n    277 ^लीड्स/*लीड्स$
-j    277 ^उल्लिखित/*उल्लिखित$
-k    276 ^समर्थ/*समर्थ$
-k    276 ^प्रेमचंद/*प्रेमचंद$
-a    276 ^ज्यों/*ज्यों$
-j    276 ^असे/*असे$
-r    275 ^लगाई/*लगाई$
-j    275 ^पहुंचाने/*पहुंचाने$
-z    275 ^द्रौपदी/*द्रौपदी$
-j    275 ^गोलाकार/*गोलाकार$
-x    275 ^इट/*इट$
-t    275 ^अटलांटिक/*अटलांटिक$
-k    274 ^मैक्स/*मैक्स$
-t    274 ^मध्यप्रदेश/*मध्यप्रदेश$
-n    273 ^हार्वर्ड/*हार्वर्ड$
-x    273 ^नें/*नें$
-j    273 ^उत्सर्जित/*उत्सर्जित$
-a    273 ^अनुसूचित/*अनुसूचित$
-j    272 ^संवत्/*संवत्$
-a    272 ^मिल्वौकी/*मिल्वौकी$
-n    272 ^टॉवर/*टॉवर$
-j    272 ^ज़रा/*ज़रा$
-n    272 ^चुम्बकीय/*चुम्बकीय$
-j    272 ^क्लासिक/*क्लासिक$
-k    272 ^कश्यप/*कश्यप$
-z    271 ^सतपुली/*सतपुली$
-j    271 ^यज्ञोपवीत/*यज्ञोपवीत$
-g    271 ^गोस्वामी/*गोस्वामी$
-n    271 ^कॉम/*कॉम$
-n    271 ^ओलम्पिक/*ओलम्पिक$
-j    270 ^शैल/*शैल$
-t    270 ^यूएस/*यूएस$
-k    270 ^फ्रैंक/*फ्रैंक$
-t    270 ^कर्णप्रयाग/*कर्णप्रयाग$
-t    270 ^इंग्लैण्ड/*इंग्लैण्ड$
-n    269 ^हरि/*हरि$
-n    269 ^शनिवार/*शनिवार$
-t    269 ^वॉशिंगटन/*वॉशिंगटन$
-n    269 ^भगवती/*भगवती$
-n    268 ^विथ/*विथ$
-j    268 ^यहा/*यहा$
-n    268 ^म्यूजिक/*म्यूजिक$
-j    268 ^बगैर/*बगैर$
-n    268 ^पायलट/*पायलट$
-j    268 ^क्रमिक/*क्रमिक$
-n    267 ^विषम/*विषम$
-n    267 ^महत्/*महत्$
-t    267 ^टेक्सास/*टेक्सास$
-a    267 ^ज़रूरी/*ज़रूरी$
-n    267 ^गेंदबाज़ी/*गेंदबाज़ी$
-n    267 ^कांडा/*कांडा$
-j    267 ^उपजाऊ/*उपजाऊ$
-n    267 ^आउटपुट/*आउटपुट$
-n    266 ^वॉन/*वॉन$
-j    266 ^डेली/*डेली$
-a    266 ^चिकित्सकीय/*चिकित्सकीय$
-n    266 ^कोच/*कोच$
-n    266 ^उत्परिवर्तन/*उत्परिवर्तन$
-n    265 ^प्रयोक्ता/*प्रयोक्ता$
-t    265 ^डेनमार्क/*डेनमार्क$
-n    265 ^डिवीजन/*डिवीजन$
-j    265 ^जनित/*जनित$
-n    265 ^गठित/*गठित$
-n    265 ^ग़ज़ल/*ग़ज़ल$
-g    264 ^दत्त/*दत्त$
-j    264 ^अनौपचारिक/*अनौपचारिक$
-n    263 ^राजभाषा/*राजभाषा$
-v    263 ^अहिंसा/*अहिंसा$
-n    262 ^हल्द्वानी/*हल्द्वानी$
-n    262 ^स्क्वायर/*स्क्वायर$
-n    262 ^राजस्थानी/*राजस्थानी$
-j    262 ^बाएं/*बाएं$
-k    262 ^जोसेफ/*जोसेफ$
-t    261 ^नीदरलैंड/*नीदरलैंड$
-n    261 ^दिवसीय/*दिवसीय$
-n    261 ^एंटीबॉडी/*एंटीबॉडी$
-n    261 ^उदहारण/*उदहारण$
-t    261 ^इण्डिया/*इण्डिया$
-j    260 ^व्यस्त/*व्यस्त$
-n    260 ^युवाओं/*युवाओं$
-n    260 ^भाषाओँ/*भाषाओँ$
-j    260 ^चर्चित/*चर्चित$
-n    260 ^अद्यतन/*अद्यतन$
-n    259 ^सीडी/*सीडी$
-n    259 ^साधक/*साधक$
-n    259 ^पाण्डवों/*पाण्डवों$
-j    259 ^नमः/*नमः$
-v    258 ^संगठित/*संगठित$
-n    258 ^फीचर/*फीचर$
-j    258 ^अवार्ड्स/*अवार्ड्स$
-j    258 ^अधिकांशतः/*अधिकांशतः$
-k    256 ^महमूद/*महमूद$
-k    256 ^ब्रूस/*ब्रूस$
-j    256 ^नियत/*नियत$
-n    256 ^घटनाएं/*घटनाएं$
-n    256 ^क्लोराइड/*क्लोराइड$
-n    256 ^कश्मीरी/*कश्मीरी$
-v    255 ^संग्रहित/*संग्रहित$
-n    255 ^सेल्सियस/*सेल्सियस$
-z    255 ^शिया/*शिया$
-k    255 ^वार्नर/*वार्नर$
-n    255 ^गामा/*गामा$
-k    254 ^सिकंदर/*सिकंदर$
-j    254 ^विशेषताएँ/*विशेषताएँ$
-n    254 ^वास्तु/*वास्तु$
-j    254 ^लाकर/*लाकर$
-n    254 ^राइट/*राइट$
-n    254 ^पुरातात्विक/*पुरातात्विक$
-j    254 ^तैसें/*तैसें$
-n    254 ^ग़ैर/*ग़ैर$
-n    253 ^रोज़/*रोज़$
-n    253 ^मूलत/*मूलत$
-k    253 ^फिलिप/*फिलिप$
-g    253 ^पॉटर/*पॉटर$
-n    253 ^ऑस्कर/*ऑस्कर$
-n    253 ^एयरपोर्ट/*एयरपोर्ट$
-j    253 ^उचाई/*उचाई$
-t    253 ^अफ़ग़ानिस्तान/*अफ़ग़ानिस्तान$
-n    252 ^लिटिल/*लिटिल$
-j    252 ^जरूर/*जरूर$
-j    252 ^चयनित/*चयनित$
-k    251 ^सैम/*सैम$
-n    251 ^ब्लॉग/*ब्लॉग$
-n    251 ^ट्रेड/*ट्रेड$
-n    250 ^स्ट्रोक/*स्ट्रोक$
-j    250 ^व्यर्थ/*व्यर्थ$
-k    250 ^लुई/*लुई$
-t    250 ^लास/*लास$
-n    250 ^मूर्तियां/*मूर्तियां$
-n    250 ^डेल्टा/*डेल्टा$
-k    250 ^क्लार्क/*क्लार्क$
-n    250 ^कैल्शियम/*कैल्शियम$
-z    250 ^एलिस/*एलिस$
-k    250 ^अब्दुल/*अब्दुल$
-n    249 ^माउंट/*माउंट$
-g    249 ^बच्चन/*बच्चन$
-t    249 ^पुर्तगाल/*पुर्तगाल$
-n    249 ^तार्किक/*तार्किक$
-j    249 ^ज़माने/*ज़माने$
-v    249 ^कटाई/*कटाई$
-t    248 ^श्रीनगर/*श्रीनगर$
-k    248 ^भीष्म/*भीष्म$
-n    248 ^थीम/*थीम$
-n    248 ^गोल्फ/*गोल्फ$
-k    248 ^ऊँ/*ऊँ$
-a    248 ^इसमे/*इसमे$
-n    247 ^सिग्नल/*सिग्नल$
-n    247 ^मान्यताओं/*मान्यताओं$
-c    247 ^फ्रॉम/*फ्रॉम$
-n    247 ^पारसी/*पारसी$
-n    247 ^तेथ/*तेथ$
-j    247 ^तया/*तया$
-n    247 ^कंट्री/*कंट्री$
-n    247 ^अरबों/*अरबों$
-t    247 ^अमृतसर/*अमृतसर$
-j    246 ^होतीं/*होतीं$
-x    246 ^वाई/*वाई$
-n    246 ^प्रसंस्करण/*प्रसंस्करण$
-n    245 ^संहिताओं/*संहिताओं$
-j    245 ^घिरा/*घिरा$
-z    245 ^ऐनी/*ऐनी$
-n    244 ^हॉकी/*हॉकी$
-j    244 ^व्यक्त/*व्यक्त$
-n   244 ^वाल्व/*वाल्व$
-v    244 ^बजाया/*बजाया$
-g    244 ^जॉनसन/*जॉनसन$
-j    244 ^आश्चर्यजनक/*आश्चर्यजनक$
-n    243 ^हिप/*हिप$
-n    243 ^साधारणत/*साधारणत$
-t    243 ^रामनगर/*रामनगर$
-n    243 ^फॉक्स/*फॉक्स$
-y    243 ^न्यूयार्क/*न्यूयार्क$
-n    243 ^नाईट/*नाईट$
-n    243 ^कोकेन/*कोकेन$
-g    242 ^हिटलर/*हिटलर$
-n    242 ^विजयी/*विजयी$
-j    242 ^फील्ड/*फील्ड$
-n    242 ^ज़िला/*ज़िला$
-
-
-p = pronoun, n = noun, v = verb, j = adjective,
-r = postposition, a = adverb, c = coordinator, s = subordinator
-d = determiner, m = numeral, x = clitic/other, t = placename
-k = male name, ž = female name, g = family name
-n    241 ^हीमोग्लोबिन/*हीमोग्लोबिन$
-k    241 ^हान/*हान$
-k    241 ^हसन/*हसन$
-j    241 ^हज़ारों/*हज़ारों$
-x   241 ^ह/*ह$
-    241 ^यहूदियों/*यहूदियों$
-    241 ^मेरठ/*मेरठ$
-n   241 ^मेजबानी/*मेजबानी$
-n    241 ^क्लान/*क्लान$
-n    241 ^कार्निवल/*कार्निवल$
-t   241 ^अजमेर/*अजमेर$
-n   240 ^स्टाइल/*स्टाइल$
-v    240 ^लाना/*लाना$
-n    240 ^नगरपालिका/*नगरपालिका$
-    240 ^उदा/*उदा$
-n    240 ^इंस्टीट्यूट/*इंस्टीट्यूट$
-n    240 ^इक्विटी/*इक्विटी$
-v   239 ^सम्बद्ध/*सम्बद्ध$
-n     239 ^सम्बद्ध/*सम्बद्ध$
-n    239 ^एडम्स/*एडम्स$
-n    239 ^ईस्टर/*ईस्टर$
-n  239 ^अंडरटेकर/*अंडरटेकर$
-j    238 ^सुसज्जित/*सुसज्जित$
-n    238 ^वॉल/*वॉल$
-n    238 ^मिस्टर/*मिस्टर$
-    238 ^प्रतियां/*प्रतियां$
-j    238 ^आतंरिक/*आतंरिक$
-    237 ^वृत्तचित्र/*वृत्तचित्र$
-n    237 ^मुग़ल/*मुग़ल$
-    237 ^दीं/*दीं$
-k    237 ^डिएगो/*डिएगो$
-n    237 ^चमड़े/*चमड़े$
-k   237 ^क़रीब/*क़रीब$
-n    236 ^सिन्धु/*सिन्धु$
-z   236 ^सिन्धु/*सिन्धु$
-p    236 ^वर्षो/*वर्षो$
-j   236 ^वर्षो/*वर्षो$
-n    236 ^पूंछ/*पूंछ$
-    236 ^उर्फ/*उर्फ$
-n    235 ^मुख्/*मुख्$
-t   235 ^बुंदेलखंड/*बुंदेलखंड$
-    235 ^फिल्मांकन/*फिल्मांकन$
-    235 ^ध/*ध$
-    235 ^द्वाराहाट/*द्वाराहाट$
-n    235 ^गेहूं/*गेहूं$
-    235 ^कॉमिक्स/*कॉमिक्स$
-t    235 ^आस्ट्रेलिया/*आस्ट्रेलिया$
-j    234 ^राउंड/*राउंड$
-n   234 ^राउंड/*राउंड$
-j    234 ^पूर्वक/*पूर्वक$
-j    234 ^नॉर्थ/*नॉर्थ$
-k   234 ^डेविस/*डेविस$
-n    234 ^ख़़ुदा/*ख़़ुदा$
-n   234 ^एयरलाइन/*एयरलाइन$
-t    233 ^हांगकांग/*हांगकांग$
-n    233 ^विंडोज/*विंडोज$
-k    233 ^रोहित/*रोहित$
-j    233 ^रियल/*रियल$
-j    233 ^दोहरी/*दोहरी$
-k    233 ^तुलसीदास/*तुलसीदास$
-v    233 ^डांस/*डांस$
-n   233 ^डांस/*डांस$
-j    233 ^डार्क/*डार्क$
-    233 ^चोल/*चोल$
-n    233 ^गल्फ/*गल्फ$
-t      233 ^गल्फ/*गल्फ$
-    233 ^अधिवर्ष/*अधिवर्ष$
-v    232 ^सर्च/*सर्च$
-n    232 ^शेफ़ील्ड/*शेफ़ील्ड$
-t    232 ^शेफ़ील्ड/*शेफ़ील्ड
-k    232 ^शेक्सपियर/*शेक्सपियर$
-z    232 ^लीला/*लीला$
-v   232 ^लीला/*लीला$
-n   232 ^प्राप्/*प्राप्$
-    232 ^डॉग/*डॉग$
-    232 ^गैरसैण/*गैरसैण$
-j    232 ^आकस्मिक/*आकस्मिक$
-j    232 ^अंतत/*अंतत$
-    232 ^ॐ/*ॐ$
-j    231 ^सीरीज़/*सीरीज़$
-j   231 ^समायोजित/*समायोजित$
-v  231 ^समायोजित/*समायोजित$
-g    231 ^नायर/*नायर$
-n    231 ^टाइगर/*टाइगर$
-v    231 ^चालित/*चालित$
-j     ^चालित/*चालित$
-    231 ^कोश्याँकुटोली/*कोश्याँकुटोली$
-n    231 ^कैफीन/*कैफीन$
-    231 ^केली/*केली$
-n    230 ^हफ्ते/*हफ्ते$
-v    230 ^स्वीकार्य/*स्वीकार्य$
-j    230 ^सौन्दर्य/*सौन्दर्य$
-t    230 ^वेगास/*वेगास$
-n    230 ^यूनिट/*यूनिट$
-n    230 ^मॉल/*मॉल$
-j    230 ^बिली/*बिली$
-k    230 ^करण/*करण$
-n   230 ^इलेक्ट्रॉन/*इलेक्ट्रॉन$
-v   229 ^हॉप/*हॉप$
-t    229 ^स्टैनफोर्ड/*स्टैनफोर्ड$
-t    229 ^सीरिया/*सीरिया$
-a    229 ^सिवा/*सिवा$
-j    229 ^सल्ट/*सल्ट$
-n    229 ^म्हणे/*म्हणे$
-    229 ^मॉनमाउथ/*मॉनमाउथ$
-j    229 ^प्रयोगात्मक/*प्रयोगात्मक$
-n    228 ^नागरी/*नागरी$
-    228 ^अर्द्ध/*अर्द्ध$
-n    227 ^रोबोट/*रोबोट$
-    227 ^मिथिला/*मिथिला$
-n    227 ^बाबर/*बाबर$
-n    227 ^जगन्नाथ/*जगन्नाथ$
-k    227 ^जगन्नाथ/*जगन्नाथ$
-j    227 ^एनिमेटेड/*एनिमेटेड$
-j    227 ^एकाधिक/*एकाधिक$
-v    226 ^सम्पादन/*सम्पादन$
-j    226 ^विशेषत/*विशेषत$
-    226 ^मॉरिसन/*मॉरिसन$
-    226 ^बनीं/*बनीं$
-    226 ^तर/*तर$
-k    226 ^जोएल/*जोएल$
-n    226 ^चरित्रों/*चरित्रों$
-k    226 ^क्लैप्टन/*क्लैप्टन$
-k    226 ^केविन/*केविन$
-    225 ^साइटों/*साइटों$
-v    225 ^नेटवर्किंग/*नेटवर्किंग$
-n    225 ^ड्रैगन/*ड्रैगन$
-    225 ^जुड़वां/*जुड़वां$
-a    225 ^उतने/*उतने$
-n    225 ^इंद्र/*इंद्र$
-k    225 ^इंद्र/*इंद्र$
-n    225 ^अवधी/*अवधी$
-n    224 ^पंकज/*पंकज$
-k   224 ^पंकज/*पंकज$
-n    224 ^टेलर/*टेलर$
-k    224 ^जेरी/*जेरी$
-v    224 ^इंकार/*इंकार$
-    224 ^अभिनीत/*अभिनीत$
-t    223 ^हंगरी/*हंगरी$
-p    223 ^हिम/*हिम$
-    223 ^स्वायत्त/*स्वायत्त$
-n    223 ^वज़न/*वज़न$
-n   223 ^बास्केटबॉल/*बास्केटबॉल$
-j    223 ^फर्स्ट/*फर्स्ट$
-n    223 ^नोकिया/*नोकिया$
-z    223 ^गौरी/*गौरी$
-    222 ^स्त्रोत/*स्त्रोत$
-n    222 ^लक्ष्यों/*लक्ष्यों$
-n    222 ^यूनिकोड/*यूनिकोड$
-n    222 ^मराठा/*मराठा$
-    222 ^बिस्मिल/*बिस्मिल$
-a    222 ^तत्पश्चात्/*तत्पश्चात्$
-n    222 ^टरबाइन/*टरबाइन$
-n    222 ^चैनलों/*चैनलों$
-v    222 ^एक्ट/*एक्ट$
-t    222 ^उत्तराखंड/*उत्तराखंड$
-n    221 ^शैव/*शैव$
-n    221 ^विश्वनाथ/*विश्वनाथ$
-k      221 ^विश्वनाथ/*विश्वनाथ$
-k    221 ^माधव/*माधव$
-    221 ^बाह/*बाह$
-    221 ^पिनांग/*पिनांग$
-n    221 ^पाठ्य/*पाठ्य$
-j    221 ^जुलती/*जुलती$
-    221 ^कॉर्पोरेशन/*कॉर्पोरेशन$
-v    221 ^कवरेज/*कवरेज$
-k    220 ^स्टीफन/*स्टीफन$
-j   220 ^सम्मुख/*सम्मुख$
-a    220 ^वापिस/*वापिस$
-v    220 ^मॉडलिंग/*मॉडलिंग$
-n    220 ^मूवी/*मूवी$
-k    220 ^नारद/*नारद$
-n    220 ^कॉमिक/*कॉमिक$
-n    219 ^नर्मदा/*नर्मदा$
-    219 ^डीडीहाट/*डीडीहाट$
-    219 ^जुलता/*जुलता$
-j    219 ^ओल्ड/*ओल्ड$
-t    218 ^साइबेरिया/*साइबेरिया$
-k    218 ^शेरशाह/*शेरशाह$
-v    218 ^ड्रीम/*ड्रीम$
-n    218 ^ड्रीम/*ड्रीम$
-n   218 ^इंटरफेस/*इंटरफेस$
-n    217 ^बिट/*बिट$
-    217 ^प्रतीकों/*प्रतीकों$
-j    217 ^तकरीबन/*तकरीबन$
-j    217 ^जैसें/*जैसें$
-a   217 ^जैसें/*जैसें$
-t    217 ^जैसलमेर/*जैसलमेर$
-k    216 ^हैमिल्टन/*हैमिल्टन$
-n    216 ^स्टाफ/*स्टाफ$
-n   216 ^बफ़ेलो/*बफ़ेलो$
-    216 ^जोली/*जोली$
-n    216 ^कैलगरी/*कैलगरी$
-n    216 ^ऑटोमोबाइल/*ऑटोमोबाइल$
-j    215 ^हिन्दु/*हिन्दु$
-n   215 ^हिन्दु/*हिन्दु$
-v    215 ^लाये/*लाये$
-j    215 ^बाएँ/*बाएँ$
-    215 ^पश्/*पश्$
-j    215 ^थल/*थल$
-j    215 ^डेढ़/*डेढ़$
-v    214 ^होय/*होय$
-n   214 ^भोजपुरी/*भोजपुरी$
-n    214 ^भनोली/*भनोली$
-j    214 ^निचली/*निचली$
-k    214 ^जवाहरलाल/*जवाहरलाल$
-j    214 ^कार्यात्मक/*कार्यात्मक$
-c    214 ^एंव/*एंव$
-c    214 ^एम्/*एम्$
-    213 ^स्टर्लिंग/*स्टर्लिंग$
-j    213 ^विजुअल/*विजुअल$
-    213 ^म्हणोनि/*म्हणोनि$
-n    213 ^मेजबान/*मेजबान$
-j      213 ^मेजबान/*मेजबान$
-n    213 ^प्रांतों/*प्रांतों$
-    213 ^जॉनी/*जॉनी$
-j    213 ^क्वांटम/*क्वांटम$
-n    213 ^कन्नड/*कन्नड$
-v   213 ^इंटर/*इंटर$
-x    213 ^आहे/*आहे$
-x   212 ^हां/*हां$
-j    212 ^स्वतन्त्रता/*स्वतन्त्रता$
-n    212 ^स्टारबक्स/*स्टारबक्स$
-n   212 ^समाजों/*समाजों$
-    212 ^लग्न/*लग्न$
-v    212 ^लगाते/*लगाते$
-    212 ^यु/*यु$
-    212 ^बोवी/*बोवी$
-n    212 ^टीबी/*टीबी$
-n   212 ^एंटी/*एंटी$
-j    212 ^आलोचनात्मक/*आलोचनात्मक$
-n    211 ^संवर्धन/*संवर्धन$
-n   211 ^विकी/*विकी$
-j    211 ^लक्षित/*लक्षित$
-k    211 ^फ़्रांसिसी/*फ़्रांसिसी$
-v   211 ^पडा/*पडा$
-    211 ^न्/*न्$
-v    211 ^क़ब्ज़ा/*क़ब्ज़ा$
-n    210 ^शेयरधारकों/*शेयरधारकों$
-n    210 ^मैनेजमेंट/*मैनेजमेंट$
-    210 ^भाजपा/*भाजपा$
-    209 ^सामरिक/*सामरिक$
-v    209 ^लगाना/*लगाना$
-z    209 ^मीर/*मीर$
-    209 ^महासचिव/*महासचिव$
-n   209 ^बाराकोट/*बाराकोट$
-n    209 ^चौखुटिया/*चौखुटिया$
-    209 ^कोस्ट/*कोस्ट$
-n   209 ^आदिवासियों/*आदिवासियों$
-j     209 ^आदिवासियों/*आदिवासियों$
-n    208 ^सूफी/*सूफी$
-j      208 ^सूफी/*सूफी$
-    208 ^सीईओ/*सीईओ$
-j    208 ^सातवें/*सातवें$
-z    208 ^वैशाली/*वैशाली$
-j   208 ^लोकतांत्रिक/*लोकतांत्रिक$
-t   208 ^बोस्टन/*बोस्टन$
-v    208 ^प्रोडक्शन/*प्रोडक्शन$
-    208 ^परिलक्षित/*परिलक्षित$
-v    208 ^ऐक्शन/*ऐक्शन$
-n    208 ^आईटी/*आईटी$
-n    207 ^लैंड/*लैंड$
-k    207 ^मसीह/*मसीह$
-    207 ^फलत/*फलत$
-t    207 ^पोर्टलैंड/*पोर्टलैंड$
-j    207 ^दोहरे/*दोहरे$
-n    207 ^दवाएं/*दवाएं$
-n   207 ^टेलिविज़न/*टेलिविज़न$
-k    207 ^कार्तिक/*कार्तिक$
-t    207 ^कराची/*कराची$
-n    207 ^एयरबस/*एयरबस$
-v   207 ^उभर/*उभर$
-n    206 ^स्टोरी/*स्टोरी$
-j    206 ^मध्यकाल/*मध्यकाल$
-n    206 ^बुक्स/*बुक्स$
-v    206 ^तैसा/*तैसा$
-a    206 ^तत्पश्चात/*तत्पश्चात$
-v    206 ^करवाने/*करवाने$
-k    206 ^अनिरुद्ध/*अनिरुद्ध$
-    205 ^भाषाविज्ञान/*भाषाविज्ञान$
-k    205 ^बेखम/*बेखम$
-k    205 ^द्रविड़/*द्रविड़$
-    205 ^खनिजों/*खनिजों$
-v    205 ^ऑर्डर/*ऑर्डर$
-n    205 ^एफबीआई/*एफबीआई$
-n    205 ^इंसुलिन/*इंसुलिन$
-j    205 ^आपातकालीन/*आपातकालीन$
-n    204 ^स्टेम/*स्टेम$
-j    204 ^सेमी/*सेमी$
-k    204 ^सलीम/*सलीम$
-    204 ^सदस्/*सदस्$
-j    204 ^शॉन/*शॉन$
-j    204 ^रोमांटिक/*रोमांटिक$
-n   204 ^ब्लड/*ब्लड$
-t   204 ^बंगलौर/*बंगलौर$
-k    204 ^फ्रांसिस/*फ्रांसिस$
-n    204 ^दांतों/*दांतों$
-v    204 ^कनेक्शन/*कनेक्शन$
-n    204 ^उपनिषद/*उपनिषद$
-j    203 ^हाइब्रिड/*हाइब्रिड$
-j    203 ^संकलित/*संकलित$
-n    203 ^लेखांकन/*लेखांकन$
-v    203 ^रॉय/*रॉय$
-n   203 ^योर/*योर$
-z    203 ^मैडोना/*मैडोना$
-j    203 ^मातृवंश/*मातृवंश$
-v    203 ^बजाने/*बजाने$
-n    203 ^पिक्चर्स/*पिक्चर्स$
-    203 ^दस्तावेज़/*दस्तावेज़$
-n    203 ^कुण्ड/*कुण्ड$
-j   203 ^उभरा/*उभरा$
-x    202 ^हैँ/*हैँ$
-    202 ^म्हणौनि/*म्हणौनि$
-n    202 ^मैक/*मैक$
-n    202 ^फिलिप्स/*फिलिप्स$
-k      202 ^फिलिप्स/*फिलिप्स$
-z   202 ^कैथरीन/*कैथरीन$
-k    201 ^होज़े/*होज़े$
-  201 ^वोल्टता/*वोल्टता$
-k   201 ^टोनी/*टोनी$
-n    200 ^श्रृंखलाओं/*श्रृंखलाओं$
-n   200 ^रचनाएं/*रचनाएं$
-n    200 ^फ़ोन/*फ़ोन$
-j   200 ^प्रणालियां/*प्रणालियां$
-v    200 ^नियुक्त/*नियुक्त$
-a    200 ^कॉफ़ी/*कॉफ़ी$
-k    200 ^एंड्रयू/*एंड्रयू$
-v    200 ^आरती/*आरती$
-n   200 ^आईसीसी/*आईसीसी$
-v   199 ^होंने/*होंने$
-k    199 ^भगत/*भगत$
-v    199 ^फांसी/*फांसी$
-n   199 ^फांसी/*फांसी$
-j   199 ^पांचवें/*पांचवें$
-j   199 ^धारक/*धारक$
-j    199 ^तन्त्र/*तन्त्र$
-    199 ^कूट/*कूट$
-z    198 ^स्प्रिंगस्टीन/*स्प्रिंगस्टीन$
-j    198 ^सांद्रता/*सांद्रता$
-n    198 ^साउंडट्रैक/*साउंडट्रैक$
-n    198 ^विन्डोज़/*विन्डोज़$
-    198 ^मसलन/*मसलन$
-n   198 ^पदार्थो/*पदार्थो$    198 ^ट्यूमर/*ट्यूमर$
-j    198 ^जरुरी/*जरुरी$
-a    198 ^जरा/*जरा$
-   198 ^जटिलताओं/*जटिलताओं$
-n    198 ^गैलेक्सी/*गैलेक्सी$
-j  197 ^समांतर/*समांतर$
-n    197 ^वेन/*वेन$
-n    197 ^विण्डोज़/*विण्डोज़$
-j   197 ^विकल्पों/*विकल्पों$
-    197 ^रावत/*रावत$
-n   197 ^मिसाइल/*मिसाइल$
-    197 ^पीढ़ियों/*पीढ़ियों$
-d    197 ^इज़/*इज़$
-n    196 ^सोमेश्वर/*सोमेश्वर$
-j   196 ^मोशन/*मोशन$
-k    196 ^मिलर/*मिलर$
-j    196 ^फिक्शन/*फिक्शन$
-j    196 ^चौड़े/*चौड़े$
-c    196 ^इसीलिये/*इसीलिये$
-j    195 ^रोमांस/*रोमांस$
-    195 ^बतौर/*बतौर$
-n    195 ^प्रजापति/*प्रजापति$
-x   195 ^तूं/*तूं$
-n   195 ^डिज्नी/*डिज्नी$
-    195 ^ज़रिए/*ज़रिए$
-n    195 ^चौपाल/*चौपाल$
-n    195 ^गर्ल/*गर्ल$
-n   195 ^कैपिटल/*कैपिटल$
-t    195 ^कैपिटल/*कैपिटल$
-t    195 ^इंदौर/*इंदौर$
-j    194 ^सुप्रीम/*सुप्रीम$
-z    194 ^मिशेल/*मिशेल$
-k   194 ^बुश/*बुश$
-n    194 ^पिक्चर/*पिक्चर$
-n    194 ^टावर/*टावर$
-j    194 ^जुडी/*जुडी$
-t    194 ^काबुल/*काबुल$
-n    194 ^एस्पिरिन/*एस्पिरिन$
-j    194 ^उच्चतर/*उच्चतर$
-n    194 ^अंगूठी/*अंगूठी$
-j    193 ^स्विफ्ट/*स्विफ्ट$
-    193 ^सिखों/*सिखों$
-k    193 ^लैंस/*लैंस$
-n   193 ^मैगज़ीन/*मैगज़ीन$
-v   193 ^बतलाया/*बतलाया$
-    193 ^परवरदिगार/*परवरदिगार$
-n    193 ^न्यूज/*न्यूज$
-k    193 ^नरेन्द्र/*नरेन्द्र$
-v    193 ^दीक्षित/*दीक्षित$
-v    193 ^दिखलाई/*दिखलाई$
-k    193 ^जयसिंह/*जयसिंह$
-k    193 ^केशव/*केशव$
-    193 ^कॅरियर/*कॅरियर$
-n    193 ^आइलैंड/*आइलैंड$
-z   192 ^महादेवी/*महादेवी$
-k    192 ^बेनोइट/*बेनोइट$
-n   192 ^डब्लू/*डब्लू$
-j    192 ^जरूरतों/*जरूरतों$
-k   192 ^क्रूज़/*क्रूज़$
-a    191 ^सम्/*सम्$
-j    191 ^वैधानिक/*वैधानिक$
-j    191 ^वेस्टर्न/*वेस्टर्न$
-t    191 ^रॉबर्ट्स/*रॉबर्ट्स$
-t    191 ^रामपुर/*रामपुर$
-k   191 ^रहमान/*रहमान$
-p    191 ^मैने/*मैने$
-j    191 ^पोटेंशिअल/*पोटेंशिअल$
-j    191 ^पितृवंश/*पितृवंश$
-n   191 ^निसान/*निसान$
-n    191 ^डाइऑक्साइड/*डाइऑक्साइड$
-j    191 ^गतिविधियां/*गतिविधियां$
-j    190 ^व्यवसायिक/*व्यवसायिक$
-k    190 ^वैसी/*वैसी$
-n    190 ^नदियां/*नदियां$
-k   190 ^एंडरसन/*एंडरसन$
-z    190 ^एलिजाबेथ/*एलिजाबेथ$
-n   189 ^स्टार्च/*स्टार्च$
-v    189 ^सुलझाने/*सुलझाने$
-    189 ^मुद्रित/*मुद्रित$
-n    189 ^बॉण्ड/*बॉण्ड$
-n   189 ^प्लेयर/*प्लेयर$
-j   189 ^प्लेयर/*प्लेयर$
-    189 ^तंव/*तंव$
-    189 ^डैविल/*डैविल$
-n    189 ^डेबिट/*डेबिट$
-n    189 ^टेक्स्ट/*टेक्स्ट$
-j    189 ^खुफिया/*खुफिया$
-n  189 ^कुरान/*कुरान$
-z    189 ^एलिज़ाबेथ/*एलिज़ाबेथ$
-z  189 ^इति/*इति$
-n  188 ^स्कूली/*स्कूली$
-v   188 ^सेवानिवृत्त/*सेवानिवृत्त$
-v   188 ^शॉपिंग/*शॉपिंग$
-n   188 ^मैट/*मैट$
-n   188 ^पिच/*पिच$
-j   188 ^दूरदर्शी/*दूरदर्शी$
-p    188 ^तेरे/*तेरे$
-n    188 ^कैमरून/*कैमरून$
-    188 ^कर्मियों/*कर्मियों$
-k   188 ^इंडियाना/*इंडियाना$
-k    188 ^इगलास/*इगलास$
-j    188 ^आवश्यकतानुसार/*आवश्यकतानुसार$
-z    187 ^हज़रत/*हज़रत$
-n    187 ^सिल्वर/*सिल्वर$
-j   187 ^वैवाहिक/*वैवाहिक$
-    187 ^विश्वव्यापी/*विश्वव्यापी$
-n   187 ^लोहिया/*लोहिया$
-k    187 ^महाराणा/*महाराणा$
-    187 ^प्लाज्मा/*प्लाज्मा$
-n    187 ^पोखरी/*पोखरी$
-j    187 ^डेटाबेस/*डेटाबेस$
-    187 ^जोशीमठ/*जोशीमठ$
-    187 ^कवक/*कवक$
-j    187 ^कड़े/*कड़े$
-j    186 ^स्कॉटिश/*स्कॉटिश$
-n   186 ^वायुसेना/*वायुसेना$
-n    186 ^लोहाघाट/*लोहाघाट$
-v    186 ^रोलिंग/*रोलिंग$
-j    186 ^रोलिंग/*रोलिंग$
-    186 ^यादृच्छिक/*यादृच्छिक$
-n    186 ^गरुङ/*गरुङ$
-a    186 ^किन्हीं/*किन्हीं$
-n    186 ^एंजाइम/*एंजाइम$
-d    186 ^एव/*एव$
-n    186 ^एक्सरे/*एक्सरे$
-j   186 ^उभरते/*उभरते$
-j   185 ^साढ़े/*साढ़े$
-n    185 ^विद्यापीठ/*विद्यापीठ$
-n    185 ^यूनिक्स/*यूनिक्स$
-v    185 ^मानों/*मानों$
-t    185 ^टोरंटो/*टोरंटो$
-k    185 ^चन्द्रगुप्त/*चन्द्रगुप्त$
-k    185 ^क्रिस्टोफर/*क्रिस्टोफर$
-n    185 ^कल्चर/*कल्चर$
-    185 ^करतीं/*करतीं$
-n    184 ^सल्फेट/*सल्फेट$
-j    184 ^विनियमित/*विनियमित$
-j    184 ^यूनिवर्सल/*यूनिवर्सल$
-n    184 ^बाईं/*बाईं$
-p    184 ^बाईं/*बाईं$
-    184 ^पिंक/*पिंक$
-x   184 ^पत्/*पत्$
-k    184 ^निकोलस/*निकोलस$
-p    184 ^तु/*तु$
-t    184 ^अफ़्ग़ानिस्तान/*अफ़्ग़ानिस्तान$
-n    184 ^अपोलो/*अपोलो$
-j    183 ^सहन/*सहन$
-    183 ^रोजर/*रोजर$
-v  183 ^रो/*रो$
-k   183 ^मुरलीधरन/*मुरलीधरन$
-    183 ^मानद/*मानद$
-j    183 ^महंगे/*महंगे$
-j    183 ^महंगा/*महंगा$
-j   183 ^ढाई/*ढाई$
-    183 ^डि/*डि$
-n    183 ^गौड़/*गौड़$
-n    182 ^बुधवार/*बुधवार$
-j    182 ^बन्द/*बन्द$
-n    182 ^पेंगुइन/*पेंगुइन$
-n    182 ^नेटस्केप/*नेटस्केप$
-k    182 ^डैनियल/*डैनियल$
-t    182 ^जबलपुर/*जबलपुर$
-    182 ^कामयाबी/*कामयाबी$
-j    182 ^एंग्लो/*एंग्लो$
-n    182 ^एल्बमों/*एल्बमों$
-j    182 ^इंटरनैशनल/*इंटरनैशनल$
-    182 ^इमामगंज/*इमामगंज$
-    182 ^अलाउद्दीन/*अलाउद्दीन$
-n    181 ^स्पैनिश/*स्पैनिश$
-    181 ^सॉसेज/*सॉसेज$
-    181 ^वॉ/*वॉ$
-n    181 ^लेक/*लेक$
-    181 ^फ्रेडरिक/*फ्रेडरिक$
-j    181 ^प्रेसीडेंसी/*प्रेसीडेंसी$
-    181 ^पैं/*पैं$
-    181 ^पुस्तकालयों/*पुस्तकालयों$
-v    181 ^नेचर/*नेचर$
-j    181 ^जेन/*जेन$
-    181 ^कॉपीराइट/*कॉपीराइट$
-j    181 ^आज़ादी/*आज़ादी$
-j    180 ^होस्ट/*होस्ट$
-n    180 ^वाल्मीकि/*वाल्मीकि$
-n    180 ^रैंक/*रैंक$
-j    180 ^बायर/*बायर$
-j    180 ^प्रतिबन्ध/*प्रतिबन्ध$
-n    180 ^पड़ोस/*पड़ोस$
-    180 ^थाई/*थाई$
-n    180 ^काँच/*काँच$
-    180 ^ऑप्टिकल/*ऑप्टिकल$
-    180 ^एक्यूपंक्चर/*एक्यूपंक्चर$
-j    180 ^अम्लीय/*अम्लीय$
-j    179 ^हरेक/*हरेक$
-j    179 ^लॉस्ट/*लॉस्ट$
-    179 ^रॉन/*रॉन$
-n    179 ^फेस्टिवल/*फेस्टिवल$
-t    179 ^फिलाडेल्फिया/*फिलाडेल्फिया$
-    179 ^नॉटिंघम/*नॉटिंघम$
-k    179 ^नागार्जुन/*नागार्जुन$
-t   179 ^अर्जेंटीना/*अर्जेंटीना$
-    178 ^सुनिश्चित/*सुनिश्चित$
-j    178 ^सुदृढ़/*सुदृढ़$
-    178 ^शेंगेन/*शेंगेन$
-j   178 ^विजयनगर/*विजयनगर$
-b   178 ^लिखीं/*लिखीं$
-j   178 ^मिथ्या/*मिथ्या$
-v   178 ^फिल/*फिल$
-n    178 ^डेथ/*डेथ$
-j    178 ^कैनेडी/*कैनेडी$
-    178 ^किण्वन/*किण्वन$
-    177 ^स्पेंसर/*स्पेंसर$
-j   177 ^स्पर्धा/*स्पर्धा$
-    177 ^म्/*म्$
-    177 ^भैरव/*भैरव$
-    177 ^पीएच/*पीएच$
-    177 ^थ्री/*थ्री$
-    177 ^थ/*थ$
-n    177 ^डीसी/*डीसी$
-j    177 ^ग्रीष्मकालीन/*ग्रीष्मकालीन$
-k  177 ^गोविन्द/*गोविन्द$
-z   177 ^गायत्री/*गायत्री$
-z    177 ^कौटिल्य/*कौटिल्य$
-n  177 ^कॉलेजों/*कॉलेजों$
-n    177 ^इंस्टिट्यूट/*इंस्टिट्यूट$
-j  177 ^आंत/*आंत$
-k   177 ^अग्रवाल/*अग्रवाल$
-v   176 ^हड़ताल/*हड़ताल$
-j   176 ^विशेषतः/*विशेषतः$
-n    176 ^वाटर्स/*वाटर्स$
-t    176 ^रोचेस्टर/*रोचेस्टर$
-n    176 ^रैंकिंग/*रैंकिंग$
-k   176 ^मैथिली/*मैथिली$
-    176 ^पंचांग/*पंचांग$
-    176 ^धोखाधड़ी/*धोखाधड़ी$
-k    176 ^डगलस/*डगलस$
-a   176 ^ज़रूर/*ज़रूर$
-j   176 ^घिरे/*घिरे$
-n    175 ^स्पाइवेयर/*स्पाइवेयर$
-n    175 ^सुभाष/*सुभाष$
-j    175 ^विषाक्त/*विषाक्त$
-n   175 ^लिट्टे/*लिट्टे$
-    175 ^लि/*लि$
-    175 ^रसायनों/*रसायनों$
-p    175 ^मुझसे/*मुझसे$
-t    175 ^मिसौरी/*मिसौरी$
-j    175 ^फारस/*फारस$
-    175 ^प्रात/*प्रात$
-    175 ^प्रशासकीय/*प्रशासकीय$
-n   175 ^दांव/*दांव$
-n    175 ^इंटेल/*इंटेल$
-n    174 ^सिस्टम्स/*सिस्टम्स$
-j    174 ^सज़ा/*सज़ा$
-k    174 ^वपूर्ण/*वपूर्ण$
-k  174 ^लेसनर/*लेसनर$
-v   174 ^लगाये/*लगाये$
-k    174 ^राजेन्द्र/*राजेन्द्र$
-j   174 ^मातृभाषा/*मातृभाषा$
-n   174 ^मातृभाषा/*मातृभाषा$
-n    174 ^मन्दिरों/*मन्दिरों$
-j    174 ^पोलिश/*पोलिश$
-v    174 ^पॉलिन/*पॉलिन$
-    174 ^ज़रिये/*ज़रिये$
-j    174 ^ग़लत/*ग़लत$
-a    174 ^कैसा/*कैसा$
-t    174 ^केदारनाथ/*केदारनाथ$
-j    174 ^कीन/*कीन$
-j    174 ^कमाल/*कमाल$
-j    174 ^अमेरिकियों/*अमेरिकियों$
-    174 ^अन्यत्र/*अन्यत्र$
-j    173 ^स्वीडिश/*स्वीडिश$
-    173 ^द्र/*द्र$
-j   173 ^डिजाइनर/*डिजाइनर$
-    173 ^गुरुआ/*गुरुआ$
-k    173 ^कोबेन/*कोबेन$
-    173 ^किरौली/*किरौली$
-n   173 ^अमीरात/*अमीरात$
-n    172 ^हेपेटाइटिस/*हेपेटाइटिस$
-j    172 ^वेशभूषा/*वेशभूषा$
-    172 ^वायुमंडलीय/*वायुमंडलीय$
-      172 ^लास्ट/*लास्ट$
-t 172 ^मैरीलैंड/*मैरीलैंड$
-n   172 ^फोकस/*फोकस$
-    172 ^प्रत्यारोपण/*प्रत्यारोपण$
-v    172 ^प्रक्रियाएं/*प्रक्रियाएं$
-v    172 ^पॉवर/*पॉवर$
-    172 ^नी/*नी$
-j   172 ^निराश/*निराश$
-n    172 ^तंत्रों/*तंत्रों$
-  172 ^जया/*जया$
-    172 ^ऑयल/*ऑयल$
-j   172 ^ऊर्ध्वाधर/*ऊर्ध्वाधर$
-j    171 ^शोधकर्ता/*शोधकर्ता$
-j   171 ^राष्ट्रभाषा/*राष्ट्रभाषा$
-n   171 ^यूनेस्को/*यूनेस्को$
-k    171 ^युवराज/*युवराज$
-v    171 ^फोर्स/*फोर्स$
-    171 ^परिणत/*परिणत$
-    171 ^नानक/*नानक$
-n    171 ^टीके/*टीके$
-k    171 ^जिमी/*जिमी$
-j   171 ^क़ानूनी/*क़ानूनी$
-n    170 ^स्पीयर्स/*स्पीयर्स$
-    170 ^समीक्षाएं/*समीक्षाएं$
-v    170 ^व्यू/*व्यू$
-t    170 ^मैनहटन/*मैनहटन$
-t   170 ^बम्बई/*बम्बई$
-j   170 ^प्रसिद्द/*प्रसिद्द$
-n    170 ^डेंगू/*डेंगू$
-n   170 ^जीनोम/*जीनोम$
-v    170 ^आइ/*आइ$
-    169 ^विभव/*विभव$
-v    169 ^लाते/*लाते$
-n    169 ^रूट/*रूट$
-n    169 ^माईस्पेस/*माईस्पेस$
-n    169 ^भूमिकाएं/*भूमिकाएं$
-a    169 ^फिलहाल/*फिलहाल$
-t    169 ^फ़तेहाबाद/*फ़तेहाबाद$
-n    169 ^प्रिंट/*प्रिंट$
-b    169 ^तांत्रिक/*तांत्रिक$
-t    169 ^टोक्यो/*टोक्यो$
-j   169 ^गेंदबाज/*गेंदबाज$
-n    169 ^कीबोर्ड/*कीबोर्ड$
-v    169 ^कार्यो/*कार्यो$
-    169 ^अस/*अस$
-    168 ^स्तनधारी/*स्तनधारी$
-j    168 ^महासभा/*महासभा$
-n    168 ^बॉडी/*बॉडी$
-v   168 ^पडता/*पडता$
-n    168 ^चीज़ों/*चीज़ों$
-c    168 ^क्यूंकि/*क्यूंकि$
-j    168 ^अंग्रेज़/*अंग्रेज़$
-   168 ^अम्लों/*अम्लों$
-n    167 ^हिल्स/*हिल्स$
-n    167 ^हब/*हब$
-j    167 ^वॉल्यूम/*वॉल्यूम$
-j    167 ^विभिन्/*विभिन्$
-t    167 ^बीजापुर/*बीजापुर$
-n    167 ^प्लांट/*प्लांट$
-j    167 ^प्रतिभागियों/*प्रतिभागियों$
-    167 ^पश्चिमोत्तर/*पश्चिमोत्तर$
-j   167 ^दरबारी/*दरबारी$
-n    167 ^कुक/*कुक$
-    167 ^किंग्स/*किंग्स$
-j    167 ^आर्कटिक/*आर्कटिक$
-j    167 ^आरम्भिक/*आरम्भिक$
-    166 ^संप्रदायों/*संप्रदायों$
-t    166 ^सिएटल/*सिएटल$
-j    166 ^विद्युतीय/*विद्युतीय$
-v   166 ^रेसलिंग/*रेसलिंग$
-n    166 ^मज/*मज$
-j    166 ^बसंत/*बसंत$
-j    166 ^पोजीशन/*पोजीशन$
-j    166 ^पारिस्थितिक/*पारिस्थितिक$
-t    166 ^नीलगिरी/*नीलगिरी$
-j    166 ^तिरवा/*तिरवा$
-    166 ^डब्ल्यूडब्ल्यूएफ/*डब्ल्यूडब्ल्यूएफ$
-    166 ^क्लाइंट/*क्लाइंट$
-j    166 ^आर्द्रता/*आर्द्रता$
-j   166 ^आठवें/*आठवें$
-n   165 ^सेठ/*सेठ$
-n    165 ^सुन्नी/*सुन्नी$
-j    165 ^लॉजिक/*लॉजिक$
-    165 ^यीशु/*यीशु$
-k    165 ^मुखर्जी/*मुखर्जी$
-    165 ^भि/*भि$
-    165 ^बुल/*बुल$
-t   165 ^थाईलैंड/*थाईलैंड$
-n    165 ^डॉक्टरों/*डॉक्टरों$
-k   165 ^चार्ली/*चार्ली$
-k    165 ^गोल्डबर्ग/*गोल्डबर्ग$
-v    165 ^कहलाने/*कहलाने$
-    165 ^एबीसी/*एबीसी$
-n    164 ^सेंटीग्रेड/*सेंटीग्रेड$
-v  164 ^सम्बंध/*सम्बंध$
-n    164 ^शिवजी/*शिवजी$
-    164 ^रेकी/*रेकी$
-k    164 ^मॉर्गन/*मॉर्गन$
-    164 ^नैनोट्यूब/*नैनोट्यूब$
-v    164 ^थापना/*थापना$
-j    164 ^तब्दील/*तब्दील$
-    164 ^जुलते/*जुलते$
-    164 ^गंतव्य/*गंतव्य$
-n    164 ^गर्ल्स/*गर्ल्स$
-j   164 ^ईसाइयों/*ईसाइयों$
-k    164 ^अमिताभ/*अमिताभ$
-    163 ^हीं/*हीं$
-j    163 ^स्वयंसेवक/*स्वयंसेवक$
-n    163 ^सांप/*सांप$
-n    163 ^वॉल्ट/*वॉल्ट$
-t  163 ^मिशिगन/*मिशिगन$
-n   163 ^फोर्ट/*फोर्ट$
-n    163 ^डेस्कटॉप/*डेस्कटॉप$
-v   163 ^जैम/*जैम$
-n   163 ^जैम/*जैम$
-k    163 ^एमिनेम/*एमिनेम$
-j   163 ^इलेक्ट्रॉनिक्स/*इलेक्ट्रॉनिक्स$
-n   163 ^इलेक्ट्रॉनिक्स/*इलेक्ट्रॉनिक्स$
-x    163 ^इज/*इज$
-j    163 ^आज़ाद/*आज़ाद$
-    163 ^अद्वैत/*अद्वैत$
-j    162 ^सिंधी/*सिंधी$
-j    162 ^विदेशियों/*विदेशियों$
-    162 ^मल्ला/*मल्ला$
-j    162 ^फेडरल/*फेडरल$
-v    162 ^प्रायोजित/*प्रायोजित$
-n   162 ^नॉन/*नॉन$
-k    162 ^दामोदर/*दामोदर$
-v    162 ^चार्टर/*चार्टर$
-k   162 ^गैरी/*गैरी$
-k    162 ^एबरडीन/*एबरडीन$
-k    162 ^ऋषिकेश/*ऋषिकेश$
-p    162 ^उनमे/*उनमे$
-    162 ^असुरक्षित/*असुरक्षित$
-j   161 ^सभ्यताओं/*सभ्यताओं$
-j    161 ^सभ्य/*सभ्य$
-j    161 ^शत/*शत$
-n    161 ^विश्वामित्र/*विश्वामित्र$
-n    161 ^विधाओं/*विधाओं$
-    161 ^मेगाडेथ/*मेगाडेथ$
-    161 ^मुहैया/*मुहैया$
-n   161 ^मलय/*मलय$
-n    161 ^फॉर्म/*फॉर्म$
-j    161 ^फर्क/*फर्क$
-j    161 ^पक्की/*पक्की$
-    161 ^नं/*नं$
-k   161 ^गार्सिया/*गार्सिया$
-k    161 ^अल्बर्ट/*अल्बर्ट$
-    161 ^अञ्चल/*अञ्चल$
-   160 ^सीनेट/*सीनेट$
-j    160 ^मोटर्स/*मोटर्स$
-n    160 ^परीक्षाओं/*परीक्षाओं$
-n   160 ^डेविडसन/*डेविडसन$
-k   160 ^झा/*झा$
-n   160 ^ग्राउंड/*ग्राउंड$
-k    160 ^गोविंद/*गोविंद$
-j    160 ^कोइ/*कोइ$
-n   160 ^किंगफिशर/*किंगफिशर$
-k    160 ^ओलिवर/*ओलिवर$
-k   160 ^एलेक्स/*एलेक्स$
-k    159 ^हार्ले/*हार्ले$
-z   159 ^विश्वकर्मा/*विश्वकर्मा$
-n    159 ^विवरणों/*विवरणों$
-    159 ^विद/*विद$
-t    159 ^लिवरपूल/*लिवरपूल$
-t    159 ^मैसाचुसेट्स/*मैसाचुसेट्स$
-t   159 ^भरतपुर/*भरतपुर$
-k    159 ^ब्रायंट/*ब्रायंट$
-n   159 ^बाइबल/*बाइबल$
-n    159 ^फूड/*फूड$
-j   159 ^पीड़ितों/*पीड़ितों$
-n    159 ^घई/*घई$
-t    159 ^गुवाहाटी/*गुवाहाटी$
-    159 ^खैरागढ़/*खैरागढ़$
-t    158 ^स्टीवन/*स्टीवन$
-k    158 ^लेम्बोर्गिनी/*लेम्बोर्गिनी$
-k   158 ^रॉबिन/*रॉबिन$
-k    158 ^राजू/*राजू$
-k    158 ^मैथ्यू/*मैथ्यू$
-    158 ^मास्को/*मास्को$
-j    158 ^मय/*मय$
-n    158 ^बर्मी/*बर्मी$
-j   158 ^पूज्य/*पूज्य$
-n    158 ^पिज़्ज़ा/*पिज़्ज़ा$
-k    158 ^नेल्सन/*नेल्सन$
-    158 ^ग्रांड/*ग्रांड$
-j    158 ^ख़िलाफ़/*ख़िलाफ़$
-j    158 ^किराए/*किराए$
-n  158 ^आंकड़ा/*आंकड़ा$
-n   157 ^सड़कें/*सड़कें$
-    157 ^रॉस/*रॉस$
-z   157 ^मारिया/*मारिया$
-n    157 ^बीटल/*बीटल$
-j    157 ^फ़िल्मी/*फ़िल्मी$
-j   157 ^प्रीमियम/*प्रीमियम$
-j   157 ^प्राचीनकाल/*प्राचीनकाल$
-n    157 ^पेंटिंग/*पेंटिंग$
-    157 ^नाडु/*नाडु$
-j    157 ^डीप/*डीप$
-    157 ^आरएनए/*आरएनए$
-k    157 ^असिमोव/*असिमोव$
-n    156 ^सऊदी/*सऊदी$
-j   156 ^शाश्वत/*शाश्वत$
-n    156 ^वोक्सवैगन/*वोक्सवैगन$
-n    156 ^वीजा/*वीजा$
-j    156 ^विस्थापित/*विस्थापित$
-n    156 ^पश्तो/*पश्तो$
-n    156 ^दरभंगा/*दरभंगा$
-
-k    156 ^डेप/*डेप$
-n    156 ^जनसँख्या/*जनसँख्या$
-n    156 ^खांसी/*खांसी$
-k    156 ^किपलिंग/*किपलिंग$
-n    156 ^एनीमेशन/*एनीमेशन$
-v    156 ^एनीमेशन/*एनीमेशन$
-j    156 ^अंग्रेज़ों/*अंग्रेज़ों$
-k    156 ^अल्फा/*अल्फा$
-v    155 ^स्विंग/*स्विंग$
-n    155 ^सीमाएं/*सीमाएं$
-n    155 ^मॉनिटर/*मॉनिटर$
-t    155 ^मेवाड़/*मेवाड़$
-z    155 ^बेकेट/*बेकेट$
-t    155 ^फिनलैंड/*फिनलैंड$
-j    155 ^प्रसन्न/*प्रसन्न$
-k    155 ^नितांत/*नितांत$
-k    155 ^गभाना/*गभाना$
-    155 ^कैन्टन/*कैन्टन$
-t    155 ^कुवैत/*कुवैत$
-n    155 ^कांगो/*कांगो$
-t    155 ^एमआईटी/*एमआईटी$
-a    155 ^एनी/*एनी$
-n    155 ^उत्तरार्द्ध/*उत्तरार्द्ध$
-p    155 ^इन्हे/*इन्हे$
-j    154 ^स्वादिष्ट/*स्वादिष्ट$
-n    154 ^स्टैंड/*स्टैंड$
-v   154 ^स्टैंड/*स्टैंड$
-n    154 ^सेक्शन/*सेक्शन$
-k    154 ^श्वार्ज़नेगर/*श्वार्ज़नेगर$
-k   154 ^शेन/*शेन$
-    154 ^वामन/*वामन$
-k    154 ^मैनुअल/*मैनुअल$
-j   154 ^मैनुअल/*मैनुअल$
-t    154 ^मैक्सिको/*मैक्सिको$
-j    154 ^माध्यमों/*माध्यमों$
-n    154 ^माध्यमों/*माध्यमों$
-n    154 ^बेसिन/*बेसिन$
-k    154 ^बद्रीनाथ/*बद्रीनाथ$
-n    154 ^प्रोफाइल/*प्रोफाइल$
-n    154 ^नेट/*नेट$
-x    154 ^डू/*डू$
-    154 ^डिंभ/*डिंभ$
-n    154 ^टेक्नोलॉजी/*टेक्नोलॉजी$
-v    154 ^जार्ज/*जार्ज$
-n    154 ^चैम्पियन/*चैम्पियन$
-j     154 ^चैम्पियन/*चैम्पियन$
-n    154 ^ग्रीनहाउस/*ग्रीनहाउस$
-k    154 ^कैलाश/*कैलाश$
-z   154 ^कैरी/*कैरी$
-n    154 ^कारन/*कारन$
-    154 ^कपकोट/*कपकोट$
-n    154 ^एवेन्यू/*एवेन्यू$
-   154 ^आंध्र/*आंध्र$
-j    153 ^संतोषजनक/*संतोषजनक$
-j    153 ^वाइस/*वाइस$
-t    153 ^रोमानिया/*रोमानिया$
-t    153 ^मैड्रिड/*मैड्रिड$
-k    153 ^माउंटबेटन/*माउंटबेटन$
-k    153 ^तांबे/*तांबे$
-p   153 ^जिन्होनें/*जिन्होनें$
-a    153 ^जहा/*जहा$
-    153 ^चैत्र/*चैत्र$
-k    153 ^गांधीजी/*गांधीजी$
-n   153 ^एंटरटेनमेंट/*एंटरटेनमेंट$
-j    153 ^एनालॉग/*एनालॉग$
-n    153 ^इन्टरनेट/*इन्टरनेट$
-n    153 ^आईएसबीएन/*आईएसबीएन$
-k    152 ^हैरिस/*हैरिस$
-n   152 ^स्ट्रॉस/*स्ट्रॉस$
-n    152 ^सिलेंडर/*सिलेंडर$
-j     152 ^सिलेंडर/*सिलेंडर$
-k    152 ^श्रीवास्तव/*श्रीवास्तव$
-k    152 ^शाहजहाँ/*शाहजहाँ$
-k    152 ^वाजपेयी/*वाजपेयी$
-z    152 ^वर्जीनिया/*वर्जीनिया$
-    152 ^लॉग/*लॉग$
-c    152 ^लिंकन/*लिंकन$
-z    152 ^मेरिल/*मेरिल$
-n    152 ^मन्त्री/*मन्त्री$
-    152 ^बॉन/*बॉन$
-j    152 ^बायीं/*बायीं$
-    152 ^पाटी/*पाटी$
-k    152 ^न्यूर्क/*न्यूर्क$
-k   152 ^नरसिंह/*नरसिंह$
-    152 ^क्षारीय/*क्षारीय$
-    152 ^क्रिश्चियन/*क्रिश्चियन$
-n    152 ^कैल्सियम/*कैल्सियम$
-n    152 ^काण्ड/*काण्ड$
-j    152 ^काण्ड/*काण्ड$
-t    152 ^एथेंस/*एथेंस$
-j    152 ^अनंतर/*अनंतर$
-j    151 ^स्वर्गीय/*स्वर्गीय$
-n    151 ^संदर्भों/*संदर्भों$
-k    151 ^सिकन्दर/*सिकन्दर$
-z   151 ^विपक्षी/*विपक्षी$
-n    151 ^भाषाएं/*भाषाएं$
-j    151 ^भयभीत/*भयभीत$
-n    151 ^फ्रंट/*फ्रंट$
-n    151 ^फ़ुट/*फ़ुट$
-n    151 ^प्रयोक्ताओं/*प्रयोक्ताओं$
-k    151 ^तिरुपति/*तिरुपति$
-n    151 ^तिरुपति/*तिरुपति$
-    151 ^तरंगदैर्ध्य/*तरंगदैर्ध्य$
-j    151 ^चौबीस/*चौबीस$
-n    151 ^गोदावरी/*गोदावरी$
-    151 ^इकाइयां/*इकाइयां$
-n    151 ^आईबीएम/*आईबीएम$
-n    150 ^लिनक्स/*लिनक्स$
-t    150 ^मालदीव/*मालदीव$
-a    150 ^मायने/*मायने$
-    150 ^फलित/*फलित$
-j    150 ^प्रबन्धक/*प्रबन्धक$
-n    150 ^प्रबन्धक/*प्रबन्धक$
-k    150 ^निक/*निक$
-k   150 ^डेनिस/*डेनिस$
-k   150 ^टिम/*टिम$
-k    150 ^चांद/*चांद$
-n    150 ^कोलेस्ट्रॉल/*कोलेस्ट्रॉल$
-    150 ^कालाढूगी/*कालाढूगी$
-j    150 ^ऑस्ट्रेलियन/*ऑस्ट्रेलियन$
-c    150 ^एवम/*एवम$
-t    150 ^इसराइल/*इसराइल$
-p    150 ^इन्ही/*इन्ही$
-k    149 ^विक्टर/*विक्टर$
-    149 ^वास्/*वास्$
-k    149 ^मूसा/*मूसा$
-    149 ^प्रिक्स/*प्रिक्स$
-n    149 ^पांडवों/*पांडवों$
-n    149 ^दिक्/*दिक्$
-n    149 ^दरगाह/*दरगाह$
-n    149 ^ताजमहल/*ताजमहल$
-t    149 ^ताजमहल/*ताजमहल$
-k    149 ^डार्विन/*डार्विन$
-v   149 ^डाउनलोड/*डाउनलोड$
-n   149 ^डाउनलोड/*डाउनलोड$
-x    149 ^ज़/*ज़$
-n    149 ^ग्लैडीएटर/*ग्लैडीएटर$
-j    149 ^ग्लैडीएटर/*ग्लैडीएटर$
-    149 ^गोलार्ध/*गोलार्ध$
-n    149 ^खुदा/*खुदा$
-j    149 ^ख़िताब/*ख़िताब$
-j    149 ^उभरे/*उभरे$
-j    148 ^संग्रहीत/*संग्रहीत$
-k    148 ^वर्मन/*वर्मन$
-n   148 ^रॉकेट/*रॉकेट$
-v    148 ^मुलाक़ात/*मुलाक़ात$
-v    148 ^मार्केटिंग/*मार्केटिंग$
-n    148 ^मार्केटिंग/*मार्केटिंग$
-k    148 ^बेकर/*बेकर$
-v    148 ^बेकर/*बेकर$
-j    148 ^बेकर/*बेकर$
-t    148 ^न्यूज़ीलैंड/*न्यूज़ीलैंड$
-k    148 ^डेल/*डेल$
-p    148 ^जिनपर/*जिनपर$
-k    148 ^चक्रवर्ती/*चक्रवर्ती$
-n    148 ^खण्डों/*खण्डों$
-n    148 ^कंस/*कंस$
-n    148 ^केप/*केप$
-z    148 ^एमी/*एमी$
-n    148 ^एप्पल/*एप्पल$
-k    148 ^इमाम/*इमाम$
-n    148 ^अनुसन्धान/*अनुसन्धान$
-    148 ^अज़ाब/*अज़ाब$
-v    147 ^हवन/*हवन$
-n    147 ^स्पार्क/*स्पार्क$
-n    147 ^संस्थाएं/*संस्थाएं$
-j    147 ^लीटर/*लीटर$
-n    147 ^लीटर/*लीटर$
-k    147 ^लियोन/*लियोन$
-k    147 ^राहु/*राहु$
-j    147 ^फेम/*फेम$
-n    147 ^प्रोटोटाइप/*प्रोटोटाइप$
-n    147 ^पाण्डव/*पाण्डव$
-j    147 ^दुर्बल/*दुर्बल$
-k    147 ^त्रिपाठी/*त्रिपाठी$
-z    147 ^त्रिपाठी/*त्रिपाठी$
-v    147 ^डेवलपमेंट/*डेवलपमेंट$
-j   147 ^डेवलपमेंट/*डेवलपमेंट$
-    147 ^कांट/*कांट$
-n    147 ^उपनिषद्/*उपनिषद्$
-a    146 ^स्टेनली/*स्टेनली$
-j    146 ^संगीतमय/*संगीतमय$
-k    146 ^सेबी/*सेबी$
-k    146 ^सूरी/*सूरी$
-n    146 ^शाखाएं/*शाखाएं$
-z    146 ^मीरा/*मीरा$
-n    146 ^ब्राउजर/*ब्राउजर$
-    146 ^बेंजामिन/*बेंजामिन$
-k    146 ^निर्वात/*निर्वात$
-    146 ^निम्नांकित/*निम्नांकित$
-j    146 ^तापीय/*तापीय$
-k    146 ^डोनाल्ड/*डोनाल्ड$
-n    146 ^डिवाइस/*डिवाइस$
-k    146 ^चैप्लिन/*चैप्लिन$
-n    146 ^चिप/*चिप$
-x    146 ^क़ी/*क़ी$
-x    146 ^औ/*औ$
-n   146 ^एमटीवी/*एमटीवी$
-t    145 ^स्विट्जरलैंड/*स्विट्जरलैंड$
-v    145 ^स्क्रीनिंग/*स्क्रीनिंग$
-k    145 ^सिन्हा/*सिन्हा$
-z    145 ^सिन्हा/*सिन्हा$
-n    145 ^सम्मलेन/*सम्मलेन$
-k    145 ^रामचंद्र/*रामचंद्र$
-    145 ^मंडी/*मंडी$
-k    145 ^मेहता/*मेहता$
-j   145 ^मांसाहारी/*मांसाहारी$
-k    145 ^महेश/*महेश$
-    145 ^मनोरोग/*मनोरोग$
-t    145 ^भूटान/*भूटान$
-k    145 ^ब्रेट/*ब्रेट$
-n    145 ^बाउल/*बाउल$
-n    145 ^फ्लैश/*फ्लैश$
-v    145 ^फ्लैश/*फ्लैश$
-n    145 ^प्रस्/*प्रस्$
-    145 ^पुर्तगालियों/*पुर्तगालियों$
-n    145 ^द्रव्यों/*द्रव्यों$
-x   145 ^त्/*त्$
-c    145 ^क्योकि/*क्योकि$
-    145 ^क़बीले/*क़बीले$
-k   145 ^अम्बेडकर/*अम्बेडकर$
-j    144 ^सुव्यवस्थित/*सुव्यवस्थित$
-n    144 ^शक्तियाँ/*शक्तियाँ$
-n    144 ^राज्यसभा/*राज्यसभा$
-n    144 ^मिटटी/*मिटटी$
-j    144 ^बॉय/*बॉय$
-n    144 ^फोरम/*फोरम$
-k    144 ^डेव/*डेव$
-    144 ^टेल/*टेल$
-j    144 ^गुणात्मक/*गुणात्मक$
-j    144 ^इस्लामिक/*इस्लामिक$
-n    144 ^इयर/*इयर$
-    144 ^आवंटित/*आवंटित$
-    144 ^आरण्यक/*आरण्यक$
-t    144 ^अमृतपुर/*अमृतपुर$
-k    143 ^सैनी/*सैनी$
-n    143 ^साउंड/*साउंड$
-v    143 ^शकीरा/*शकीरा$
-j    143 ^विरल/*विरल$
-n    143 ^म्युज़िक/*म्युज़िक$
-n    143 ^प्लेस/*प्लेस$
-k    143 ^पैट्रिक/*पैट्रिक$
-n    143 ^पहाडी/*पहाडी$
-v    143 ^जप/*जप$
-z    143 ^असमिया/*असमिया$
-x    142 ^हिब्रू/*हिब्रू$
-j    142 ^वीकली/*वीकली$
-n    142 ^वीकली/*वीकली$
-    142 ^विश्वासों/*विश्वासों$
-    142 ^लेग/*लेग$
-n    142 ^मुनियों/*मुनियों$
-j    142 ^मुनियों/*मुनियों$
-j    142 ^महानतम/*महानतम$
-n    142 ^बोल्ट/*बोल्ट$
-    142 ^बलिया/*बलिया$
-n    142 ^फेडरेशन/*फेडरेशन$
-k    142 ^फर्ग्यूसन/*फर्ग्यूसन$
-    142 ^ताजिकिस्तान/*ताजिकिस्तान$
-p    142 ^जिन्होने/*जिन्होने$
-j    142 ^कोशिकीय/*कोशिकीय$
-k    142 ^कार्टर/*कार्टर$
-z    142 ^एलेन/*एलेन$
-t    142 ^इराक़/*इराक़$
-p    142 ^आपसे/*आपसे$
-n    141 ^हीलियम/*हीलियम$
-n    141 ^स्टेरॉयड/*स्टेरॉयड$
-    141 ^संचिका/*संचिका$
-n    141 ^साईट/*साईट$
-v    141 ^साईट/*साईट$
-t    141 ^साईट/*साईट$
-    141 ^सत्रों/*सत्रों$
-n    141 ^शीट/*शीट$
-k    141 ^लुइस/*लुइस$
-    141 ^मानदंडों/*मानदंडों$
-j    141 ^मध्/*मध्$
-n    141 ^ब्रॉडबैंड/*ब्रॉडबैंड$
-j    141 ^फास्ट/*फास्ट$
-c    141 ^त्यों/*त्यों$
-t    141 ^ताइवान/*ताइवान$
-n    141 ^टूल/*टूल$
-    141 ^जिन्ना/*जिन्ना$
-n    141 ^चेन/*चेन$
-j   141 ^ग्राफिक/*ग्राफिक$
-n    141 ^गुड़/*गुड़$
-n    141 ^गिल्ड/*गिल्ड$
-t    141 ^कुरुक्षेत्र/*कुरुक्षेत्र$
-j    141 ^एथ/*एथ$
-n    141 ^एडवेंचर/*एडवेंचर$
-    141 ^ईस्वी/*ईस्वी$
-n    141 ^इंडीज/*इंडीज$
-    141 ^आंत्र/*आंत्र$
-    141 ^अध्/*अध्$
-j    141 ^अत्याधिक/*अत्याधिक$
-k    140 ^हिमलर/*हिमलर$
-    140 ^सैयद/*सैयद$
-n    140 ^शक्तियां/*शक्तियां$
-k   140 ^रामचन्द्र/*रामचन्द्र$
-j    140 ^रणनीतिक/*रणनीतिक$
-j    140 ^महायुद्ध/*महायुद्ध$
-j    140 ^बन्धन/*बन्धन$
-n    140 ^फेरारी/*फेरारी$
-t    140 ^पूना/*पूना$
-n    140 ^पांव/*पांव$
-v    140 ^पहुंचाया/*पहुंचाया$
-n    140 ^डेविल/*डेविल$
-j    140 ^ट्रांस/*ट्रांस$
-k    140 ^जगदीश/*जगदीश$
-j    140 ^ग्रेटर/*ग्रेटर$
-n    140 ^ग्राफिक्स/*ग्राफिक्स$
-j    140 ^करोड़ों/*करोड़ों$
-n    140 ^एलर्जी/*एलर्जी$
-n    139 ^हीरोज़/*हीरोज़$
-p    139 ^हमसे/*हमसे$
-t    139 ^स्विट्ज़रलैंड/*स्विट्ज़रलैंड$
-z    139 ^सावित्री/*सावित्री$
-    139 ^सनहौला/*सनहौला$
-k    139 ^वूल्वरिन/*वूल्वरिन$
-    139 ^विलेय/*विलेय$
-j    139 ^विघटित/*विघटित$
-v    139 ^रिटर्न/*रिटर्न$
-j    139 ^राजनयिक/*राजनयिक$
-j    139 ^प्रबंधित/*प्रबंधित$
-k    139 ^पेले/*पेले$
-    139 ^नगला/*नगला$
-n    139 ^डिपार्टमेंट/*डिपार्टमेंट$
-c    139 ^एवम्/*एवम्$
-p    139 ^उन्ही/*उन्ही$
-n    139 ^आईपी/*आईपी$
-j    139 ^अंडर/*अंडर$
-n    138 ^हिप्पोकैम्पस/*हिप्पोकैम्पस$
-n    138 ^स्पैरो/*स्पैरो$
-j    138 ^समयावधि/*समयावधि$
-    138 ^रैखिक/*रैखिक$
-n    138 ^रेफरी/*रेफरी$
-k    138 ^राजेश/*राजेश$
-j    138 ^महंगी/*महंगी$
-x    138 ^नॉट/*नॉट$
-j    138 ^नतीजतन/*नतीजतन$
-    138 ^उल/*उल$
-k    138 ^अजय/*अजय$
-n    137 ^स्तनधारियों/*स्तनधारियों$
-j    137 ^सुदर्शन/*सुदर्शन$
-n    137 ^सिलिकॉन/*सिलिकॉन$
-k    137 ^सवाई/*सवाई$
-    137 ^शोधन/*शोधन$
-t    137 ^वृंदावन/*वृंदावन$
-x    137 ^वाँ/*वाँ$
-n    137 ^वविद्यालय/*वविद्यालय$
-k    137 ^लॉयड/*लॉयड$
-j    137 ^लाइक/*लाइक$
-n    137 ^यूसीएलए/*यूसीएलए$
-n    137 ^महायान/*महायान$
-t    137 ^फ्रैंकफर्ट/*फ्रैंकफर्ट$
-    137 ^पूर्वार्ध/*पूर्वार्ध$
-j    137 ^धृतराष्ट्र/*धृतराष्ट्र$
-n    137 ^तरीक़े/*तरीक़े$
-j    137 ^डेमोक्रेटिक/*डेमोक्रेटिक$
-n    137 ^डाउनटाउन/*डाउनटाउन$
-t    137 ^डाउनटाउन/*डाउनटाउन$
-n    137 ^टीकाकरण/*टीकाकरण$
-n    137 ^क्लाउड/*क्लाउड$
-k    137 ^केन्/*केन्$
-k    137 ^ओबामा/*ओबामा$
-n    137 ^ऑपरेटर/*ऑपरेटर$
-n    137 ^उमर/*उमर$
-t    137 ^इथियोपिया/*इथियोपिया$
-v    137 ^आन/*आन$
-    136 ^श/*श$
-n    136 ^वसुदेव/*वसुदेव$
-n    136 ^रीड/*रीड$
-k    136 ^रामकृष्ण/*रामकृष्ण$
-k    136 ^यमन/*यमन$
-j    136 ^प्रभावकारी/*प्रभावकारी$
-j    136 ^थापित/*थापित$
-n    136 ^ड्रमर/*ड्रमर$
-n    136 ^ट्विटर/*ट्विटर$
-    136 ^खां/*खां$
-n    136 ^इंटरफ़ेस/*इंटरफ़ेस$
-    136 ^अबू/*अबू$
-t    135 ^हस्तिनापुर/*हस्तिनापुर$
-j    135 ^स्पीड/*स्पीड$
-n    135 ^स्पीड/*स्पीड$
-n    135 ^सांख्य/*सांख्य$
-k    135 ^साइमन/*साइमन$
-    135 ^रु/*रु$
-n   135 ^मुख्यतया/*मुख्यतया$
-    135 ^मिनोग/*मिनोग$
-j    135 ^मराठों/*मराठों$
-j   135 ^फिल्मी/*फिल्मी$
-n    135 ^पाम/*पाम$
-j    135 ^निष्कर्षों/*निष्कर्षों$
-k    135 ^देवकी/*देवकी$
-j    135 ^दसवें/*दसवें$
-k    135 ^टैगोर/*टैगोर$
-k    135 ^जोनाथन/*जोनाथन$
-t    135 ^आस्ट्रिया/*आस्ट्रिया$
-k    135 ^अलेक्जेंडर/*अलेक्जेंडर$
-k    135 ^अरुण/*अरुण$
-n    135 ^अमीनो/*अमीनो$
-    135 ^अभ्यारण्य/*अभ्यारण्य$
-k    134 ^हावर्ड/*हावर्ड$
-n    134 ^सीबीआई/*सीबीआई$
-t    134 ^रियो/*रियो$
-k    134 ^मैकबेथ/*मैकबेथ$
-n    134 ^मैकबेथ/*मैकबेथ$
-    134 ^माघ/*माघ$
-j    134 ^भावुक/*भावुक$
-k    134 ^बांड/*बांड$
-n    134 ^फेयर/*फेयर$
-k    134 ^दशरथ/*दशरथ$
-    134 ^तव/*तव$
-k    134 ^डेटिंग/*डेटिंग$
-n    134 ^चीज़ें/*चीज़ें$
-k    134 ^ग्राहम/*ग्राहम$
-k    134 ^गार्डनर/*गार्डनर$
-n    134 ^गार्डनर/*गार्डनर$
-j    134 ^गार्डनर/*गार्डनर$
-n    134 ^एस्टेट/*एस्टेट$
-n    134 ^एडिडास/*एडिडास$
-    134 ^उभरी/*उभरी$
-n    134 ^उड़िया/*उड़िया$
-j    134 ^उड़िया/*उड़िया$
-    133 ^हैः/*हैः$
-n   133 ^स्क्रिप्ट/*स्क्रिप्ट$
-    133 ^सू/*सू$
-n   133 ^सन्त/*सन्त$
-j   133 ^शैतान/*शैतान$
-v   133 ^विलीन/*विलीन$
-n   133 ^विकिया/*विकिया$
-j   133 ^वर्चुअल/*वर्चुअल$
-k   133 ^मोदी/*मोदी$
-n   133 ^मैकडॉनल्ड्स/*मैकडॉनल्ड्स$
-n   133 ^प्रोफ़ाइल/*प्रोफ़ाइल$
-n   133 ^पेशवा/*पेशवा$
-k   133 ^पेशवा/*पेशवा$
-j   133 ^पेशवा/*पेशवा$
-n   133 ^नीम/*नीम$
-k   133 ^जेड/*जेड$
-    133 ^कदाचित्/*कदाचित्$
-z   132 ^हजरत/*हजरत$
-j   132 ^श्रेष्ठता/*श्रेष्ठता$
-p   132 ^शी/*शी$
-    132 ^लोहान/*लोहान$
-k   132 ^रामदेव/*रामदेव$
-    132 ^महाद्वीपों/*महाद्वीपों$
-n   132 ^बैठकों/*बैठकों$
-j   132 ^बांस/*बांस$
-n   132 ^बार्कलेज/*बार्कलेज$
-k   132 ^फ्रैंकलिन/*फ्रैंकलिन$
-k   132 ^फ्रेंकलिन/*फ्रेंकलिन$
-n   132 ^प्रियस/*प्रियस$
-n   132 ^पोर्शे/*पोर्शे$
-n   132 ^द्वारका/*द्वारका$
-n   132 ^तेजाजी/*तेजाजी$
-    132 ^टेड/*टेड$
-n   132 ^टर्मिनस/*टर्मिनस$
-n   132 ^गॉर्डन/*गॉर्डन$
-c   132 ^क्यौंकि/*क्यौंकि$
-n   132 ^कंप्यूटरों/*कंप्यूटरों$
-j   132 ^एशियन/*एशियन$
-j   132 ^उदासीन/*उदासीन$
-    132 ^इयान/*इयान$
-j   132 ^अभीष्ट/*अभीष्ट$
-k   132 ^अब्राहम/*अब्राहम$
-    132 ^अनुवादित/*अनुवादित$
-j  132 ^अधिकारिक/*अधिकारिक$
-k   131 ^सूर/*सूर$
-j   131 ^सुनहरे/*सुनहरे$
-k   131 ^शीन/*शीन$
-k   131 ^विश्लेषणात्मक/*विश्लेषणात्मक$
-    131 ^वन्यजीव/*वन्यजीव$
-v   131 ^लैंडिंग/*लैंडिंग$
-n   131 ^रेसलमेनिया/*रेसलमेनिया$
-k   131 ^मर्फी/*मर्फी$
-t   131 ^बिलासपुर/*बिलासपुर$
-v   131 ^बिज़नेस/*बिज़नेस$
-n   131 ^बिज़नेस/*बिज़नेस$
-j  131 ^परम्पराओं/*परम्पराओं$
-t  131 ^न्यूकैसल/*न्यूकैसल$
-    131 ^नीरो/*नीरो$
-n   131 ^नमाज़/*नमाज़$
-n   131 ^थ्योरी/*थ्योरी$
-n   131 ^ट्रॉफी/*ट्रॉफी$
-t   131 ^ज़ांज़ीबार/*ज़ांज़ीबार$
-j   131 ^चारो/*चारो$
-v   131 ^कैच/*कैच$
-    131 ^ऐन/*ऐन$
-n   131 ^एनर्जी/*एनर्जी$
-n   131 ^आक्रमणों/*आक्रमणों$
-n   131 ^अल्फ़ा/*अल्फ़ा$
-t   131 ^अलास्का/*अलास्का$
-j   130 ^संगठनात्मक/*संगठनात्मक$
-    130 ^समुद्रतल/*समुद्रतल$
-j   130 ^विश्वभर/*विश्वभर$
-    130 ^विन्स/*विन्स$
-    130 ^विधियां/*विधियां$
-k   130 ^वाल्टर/*वाल्टर$
-v   130 ^लिविंग/*लिविंग$
-j   130 ^लिविंग/*लिविंग$
-    130 ^रोधी/*रोधी$
-k  130 ^भटनागर/*भटनागर$
-n  130 ^प्यूज़ो/*प्यूज़ो$
-t  130 ^पैरिस/*पैरिस$
-    130 ^पीर/*पीर$
-    130 ^पां/*पां$
-n  130 ^नाड़ी/*नाड़ी$
-j  130 ^नजारा/*नजारा$
-n  130 ^देवा/*देवा$
-n 130 ^ज़िन्दगी/*ज़िन्दगी$
-    130 ^चॅक/*चॅक$
-k   130 ^गेट्स/*गेट्स$
-t   130 ^उत्तरप्रदेश/*उत्तरप्रदेश$
-a   130 ^अकसर/*अकसर$
-k   129 ^स्टीवर्ट/*स्टीवर्ट$
-    129 ^सूरा/*सूरा$
-j   129 ^सटीकता/*सटीकता$
-z   129 ^शकुन्तला/*शकुन्तला$
-j   129 ^वशिष्ठ/*वशिष्ठ$
-    129 ^यो/*यो$
-t   129 ^मिसिसिपी/*मिसिसिपी$
-t   129 ^बेथलहम/*बेथलहम$
-k   129 ^प्लूटो/*प्लूटो$
-    129 ^प्रत्/*प्रत्$
-j   129 ^प्रतिरक्षी/*प्रतिरक्षी$
-n   129 ^नोट्स/*नोट्स$
-k   129 ^नेपोलियन/*नेपोलियन$
-n   129 ^निर्णयों/*निर्णयों$
-k   129 ^कॉर्नेल/*कॉर्नेल$
-k   129 ^कलाम/*कलाम$
-n   128 ^स्काई/*स्काई$
-    128 ^वर्गीकृत/*वर्गीकृत$
-n   128 ^राजपूतों/*राजपूतों$
-j   128 ^राजपूतों/*राजपूतों$
-a  128 ^यथासंभव/*यथासंभव$
-n   128 ^म्यूजियम/*म्यूजियम$
-t   128 ^मालाबार/*मालाबार$
-n   128 ^बीजगणित/*बीजगणित$
-n   128 ^प्वाइंट/*प्वाइंट$
-n   128 ^प्रिंटर/*प्रिंटर$
-    128 ^गृहयुद्ध/*गृहयुद्ध$
-n   128 ^कॉनकॉर्ड/*कॉनकॉर्ड$
-k   128 ^कुंभ/*कुंभ$
-n   128 ^कार्बोनेट/*कार्बोनेट$
-j   128 ^काउबॉय/*काउबॉय$
-n   128 ^काउबॉय/*काउबॉय$
-j   128 ^इच्छानुसार/*इच्छानुसार$
-n   127 ^श्रावण/*श्रावण$
-z   127 ^शारदा/*शारदा$
-j   127 ^वायरल/*वायरल$
-k   127 ^भीमसेन/*भीमसेन$
-j   127 ^बहुराष्ट्रीय/*बहुराष्ट्रीय$
-n   127 ^फ्रेड/*फ्रेड$
-j   127 ^प्रकाशीय/*प्रकाशीय$
-j   127 ^दुर्गम/*दुर्गम$
-n   127 ^थेरेपी/*थेरेपी$
-p   127 ^तुमसे/*तुमसे$
-n   127 ^जेथ/*जेथ$
-n 127 ^चेल्सी/*चेल्सी$
-k    127 ^चाणक्य/*चाणक्य$
-    127 ^ख़/*ख़$
-j   127 ^उल्टा/*उल्टा$
-j   127 ^अन्ततः/*अन्ततः$
-n   126 ^स्क्वैश/*स्क्वैश$
-n   126 ^रसेल/*रसेल$
-v   126 ^बीट/*बीट$
-j   126 ^फोर/*फोर$
-j   126 ^प्री/*प्री$
-j   126 ^नीच/*नीच$
-k   126 ^देवराज/*देवराज$
-n   126 ^चिन्ता/*चिन्ता$
-    126 ^ग्रा/*ग्रा$
-n   126 ^कौरवों/*कौरवों$
-n   126 ^काठमांडू/*काठमांडू$
-    126 ^कनाडाई/*कनाडाई$
-n   126 ^ईथरनेट/*ईथरनेट$
-    126 ^आण्विक/*आण्विक$
-j   125 ^हेवी/*हेवी$
-k   125 ^राजस्/*राजस्$
-j   125 ^मैंगा/*मैंगा$
-j   125 ^मीन/*मीन$
-k   125 ^फ़्रांसीसी/*फ़्रांसीसी$
-n   125 ^फैक्ट्री/*फैक्ट्री$
-j   125 ^प्रतिबद्ध/*प्रतिबद्ध$
-    125 ^दिग्गज/*दिग्गज$
-n   125 ^दशहरा/*दशहरा$
-n   125 ^डीलर/*डीलर$
-    125 ^जीमेल/*जीमेल$
-n   125 ^चिकन/*चिकन$
-n   125 ^गोरखा/*गोरखा$ 
-j   125 ^कैप्टन/*कैप्टन$
-n   125 ^कैप्टन/*कैप्टन$
-z   125 ^केट/*केट$
-n   125 ^कार्गो/*कार्गो$
-v   125 ^करवाई/*करवाई$
-    125 ^उन्नयन/*उन्नयन$
-k   125 ^इब्न/*इब्न$
-j    125 ^आपातकाल/*आपातकाल$
-    125 ^अलवर/*अलवर$
-j   124 ^सिक्स/*सिक्स$
-j   124 ^साकार/*साकार$
-n   124 ^वेदव्यास/*वेदव्यास$
-j   124 ^लॉक/*लॉक$
-n   124 ^लॉक/*लॉक$
-v   124 ^लॉक/*लॉक$
-t  124 ^यूएसए/*यूएसए$
-t    124 ^मुजफ्फरपुर/*मुजफ्फरपुर$
-k    124 ^माइकल्स/*माइकल्स$
-    124 ^बॉयज़/*बॉयज़$
-n    124 ^बेसबॉल/*बेसबॉल$
-n    124 ^बीड/*बीड$
-v    124 ^बजाते/*बजाते$
-    124 ^परिसंपत्तियों/*परिसंपत्तियों$
-    124 ^नीत्शे/*नीत्शे$
-t    124 ^धनबाद/*धनबाद$
-k    124 ^टर्नर/*टर्नर$
-j    124 ^ज्ञाता/*ज्ञाता$
-k    124 ^गरुड़/*गरुड़$
-    124 ^कोणीय/*कोणीय$
-k    124 ^कूपर/*कूपर$
-n    124 ^एसिटिक/*एसिटिक$
-k    124 ^एडम/*एडम$
-n    123 ^हैवीवेट/*हैवीवेट$
-n    123 ^संलयन/*संलयन$
-n    123 ^सोर्स/*सोर्स$
-k    123 ^मनमोहन/*मनमोहन$
-n    123 ^मदर/*मदर$
-z    123 ^बेली/*बेली$
-n    123 ^बर्टन/*बर्टन$
-c    123 ^बट/*बट$
-j    123 ^फ़ॉर/*फ़ॉर$
-    123 ^प्रतिजन/*प्रतिजन$
-j   123 ^पित्ताशय/*पित्ताशय$
-t   123 ^पाटलिपुत्र/*पाटलिपुत्र$
-t   123 ^नालंदा/*नालंदा$
-k   123 ^द्रोणाचार्य/*द्रोणाचार्य$
-k   123 ^टायसन/*टायसन$
-k   123 ^चालुक्य/*चालुक्य$
-v   123 ^क्राई/*क्राई$
-j   123 ^कॉपी/*कॉपी$
-    123 ^कुष्ठरोग/*कुष्ठरोग$
-j   123 ^उत्सुक/*उत्सुक$
-n   123 ^अल्बम/*अल्बम$
-j   122 ^सेन्ट्रल/*सेन्ट्रल$
-n   122 ^सेन्ट्रल/*सेन्ट्रल$
-i    122 ^साइबर/*साइबर$
-n    122 ^सल्फर/*सल्फर$
-    122 ^विदिशा/*विदिशा$
-x    122 ^वस्/*वस्$
-k   122 ^लोपेज़/*लोपेज़$
-k    122 ^लॉरेंस/*लॉरेंस$
-n    122 ^मर्सिडीज/*मर्सिडीज$
-t    122 ^बॉम्बे/*बॉम्बे$
-    122 ^फुफ्फुसीय/*फुफ्फुसीय$
-j    122 ^फिटनेस/*फिटनेस$
-n    122 ^फिटनेस/*फिटनेस$
-n    122 ^पोटेशियम/*पोटेशियम$
-    122 ^नज़रिए/*नज़रिए$
-    122 ^ध्/*ध्$
-k    122 ^देसाई/*देसाई$
-j    122 ^तीर्थंकर/*तीर्थंकर$
-k    122 ^जोवी/*जोवी$
-n    122 ^जैज़/*जैज़$
-p    122 ^जिन्हे/*जिन्हे$
-k    122 ^चतुर्वेदी/*चतुर्वेदी$
-j    122 ^ग्रैमी/*ग्रैमी$
-a    122 ^गौर/*गौर$
-k    122 ^गिग्स/*गिग्स$
-k    122 ^गान्धी/*गान्धी$
-k    122 . ^गणपति/*गणपति$
-n    122 . ^गणपति/*गणपति$
-v  122 ^ऑडिशन/*ऑडिशन$
-k    122 ^एंथोनी/*एंथोनी$
-    122 ^उद्यमी/*उद्यमी$
-    122 ^अथर्ववेद/*अथर्ववेद$
-k    121 ^हक़/*हक़$
-n    121 ^स्मैकडाउन/*स्मैकडाउन$
-k    121 ^सूरदास/*सूरदास$
-    121 ^सामंत/*सामंत$
-j    121 ^श्राद्ध/*श्राद्ध$
-    121 ^वॉचमेन/*वॉचमेन$
-i    121 ^मार्क्सवादी/*मार्क्सवादी$
-t    121 ^भगवानपुर/*भगवानपुर$
-j    121 ^प्रोटीनों/*प्रोटीनों$
-n    121 ^पेंटियम/*पेंटियम$
-n    121 ^नेटवर्कों/*नेटवर्कों$
-v    121 ^डॉट/*डॉट$
-n    121 ^ट्रम्प/*ट्रम्प$
-k   121 ^एंडी/*एंडी$
-j   121 ^अभिगमित/*अभिगमित$
-j   120 ^हस्तांतरित/*हस्तांतरित$
-n   120 ^सेटिंग/*सेटिंग$
-    120 ^शल्यक्रिया/*शल्यक्रिया$
-    120 ^शनै/*शनै$
-t   120 ^वेनिस/*वेनिस$
-n   120 ^यूएफओ/*यूएफओ$
-n   120 ^मैट्रिक्स/*मैट्रिक्स$
-i   120 ^माइक्रो/*माइक्रो$
-j   120 ^बैड/*बैड$
-k   120 ^बेंज/*बेंज$
-n   120 ^फेस/*फेस$
-n   120 ^फ़ूड/*फ़ूड$
-k   120 ^परीक्षित/*परीक्षित$
-k   120 ^परमार/*परमार$
-n   120 ^तूफ़ान/*तूफ़ान$
-v   120 ^ज़ोन/*ज़ोन$
-z   120 ^जैंती/*जैंती$
-n   120 ^ज़ूमा/*ज़ूमा$
-n   120 ^चैंपियंस/*चैंपियंस$
-j   120 ^गोल्डेन/*गोल्डेन$
-z   120 ^किम/*किम$
-k   120 ^एजेंटों/*एजेंटों$
-n    120 ^इमेज/*इमेज$
-i    120 ^आयुर्वेदिक/*आयुर्वेदिक$
-x    119 ^हाउ/*हाउ$
-j    119 ^व्यवहारिक/*व्यवहारिक$
-k    119 ^वॉटसन/*वॉटसन$
-j    119 ^वैश्य/*वैश्य$
-j    119 ^लेबनान/*लेबनान$
-n    119 ^रिलायंस/*रिलायंस$
-t    119 ^मैनहट्टन/*मैनहट्टन$
-    119 ^भवानी/*भवानी$
-    119 ^बॉयल/*बॉयल$
-n    119 ^फेसबुक/*फेसबुक$
-j    119 ^प्रकाशनों/*प्रकाशनों$
-z    119 ^पंत/*पंत$
-    119 ^पेशेवरों/*पेशेवरों$
-k    119 ^पाटिल/*पाटिल$
-    119 ^घ/*घ$
-v    119 ^ग्रांट/*ग्रांट$
-t    119 ^गंगोत्री/*गंगोत्री$
-n    119 ^गंगोत्री/*गंगोत्री$
-t    119 ^खजुराहो/*खजुराहो$
-t    119 ^क्योटो/*क्योटो$
-n    119 ^कॉर्न/*कॉर्न$
-t    119 ^कथाकार/*कथाकार$
-n    119 ^एफडीए/*एफडीए$
-    119 ^एजी/*एजी$
-j    119 ^एकांकी/*एकांकी$
-t    119 ^उज़बेक/*उज़बेक$
-    119 ^इमेजिंग/*इमेजिंग$
-    118 ^हैंक्स/*हैंक्स$
-n    118 ^सप्ताहों/*सप्ताहों$
-n    118 ^सउदी/*सउदी$
-t    118 ^सउदी/*सउदी$
-n    118 ^शेयरधारक/*शेयरधारक$
-    118 ^विलिस/*विलिस$
-n    118 ^लेआउट/*लेआउट$
-v    118 ^लाता/*लाता$
-n    118 ^रॉसी/*रॉसी$
-k    118 ^रुद्र/*रुद्र$
-n    118 ^ब्रह्मपुत्र/*ब्रह्मपुत्र$
-t    118 ^बरेली/*बरेली$
-t    118 ^फतेहपुर/*फतेहपुर$
-v    118 ^प्रबन्ध/*प्रबन्ध$
-n    118 ^नवरात्रि/*नवरात्रि$
-n    118 ^कॉलोनी/*कॉलोनी$
-c    118 ^कुन्ती/*कुन्ती$
-    118 ^कालान्तर/*कालान्तर$
-n    118 ^अर्जुना/*अर्जुना$
-j    118 ^अर्जुना/*अर्जुना$
-j    117 ^सुगम/*सुगम$
-n    117 ^वेबसाइटों/*वेबसाइटों$
-    117 ^वर्षगांठ/*वर्षगांठ$
-n  117 ^रामानंद/*रामानंद$
-n    117 ^योजनाएं/*योजनाएं$
-n    117 ^मैग्नीशियम/*मैग्नीशियम$
-    117 ^माध्/*माध्$
-    117 ^बीजिंग/*बीजिंग$
-j    117 ^बिच/*बिच$
-    117 ^पौत्र/*पौत्र$
-j    117 ^पैकेजिंग/*पैकेजिंग$
-n    117 ^नोड/*नोड$
-    117 ^ध्वनिक/*ध्वनिक$
-    117 ^धनरूआ/*धनरूआ$
-n    117 ^दीवानी/*दीवानी$
-    117 ^तेलुगू/*तेलुगू$
-    117 ^डुमरिया/*डुमरिया$
-n    117 ^डिस्ट्रिक्ट/*डिस्ट्रिक्ट$
-v    117 ^डिविजन/*डिविजन$
-n    117 ^डिविजन/*डिविजन$
-t    117 ^जमैका/*जमैका$
-k    117 ^गेल/*गेल$
-n    117 ^कॉन्सर्ट/*कॉन्सर्ट$
-v    117 ^कांटैक्ट/*कांटैक्ट$
-k    117 ^क़दम/*क़दम$
-n    117 ^क़दम/*क़दम$
-n    117 ^एसी/*एसी$
-n   117 ^एकेडमी/*एकेडमी$
-i    117 ^उत्साही/*उत्साही$
-i   117 ^इंटेलिजेंस/*इंटेलिजेंस$
-k    117 ^इब्राहिम/*इब्राहिम$
-    117 ^अनूदित/*अनूदित$
-    116 ^संख्/*संख्$
-k    116 ^सुनील/*सुनील$
-i    116 ^सर्वोपरि/*सर्वोपरि$
-    116 ^सब्बाथ/*सब्बाथ$
-j    116 ^वॉर्स/*वॉर्स$
-t    116 ^वृन्दावन/*वृन्दावन$
-n    116 ^लोड/*लोड$
-n    116 ^लैस/*लैस$
-n    116 ^लाभों/*लाभों$
-    116 ^रयान/*रयान$
-t    116 ^येल/*येल$
-n    116 ^मेड/*मेड$
-t   116 ^बेतालघाट/*बेतालघाट$
-  116 ^बारबरा/*बारबरा$
-i    116 ^पर्सनल/*पर्सनल$
-    116 ^निर्माणाधीन/*निर्माणाधीन$
-i    116 ^दाएँ/*दाएँ$
-k    116 ^जहांगीर/*जहांगीर$
-    116 ^घुलनशील/*घुलनशील$
-n   116 ^कोका/*कोका$
-v   116 ^करन/*करन$
-k  116 ^एडवर्ड्स/*एडवर्ड्स$
-    116 ^आवश्/*आवश्$
-i  116 ^आल/*आल$
-i    116 ^असहयोग/*असहयोग$
-i    116 ^अन्यान्य/*अन्यान्य$
-n   115 ^हेरिटेज/*हेरिटेज$
-n   115 ^शक्/*शक्$
-n   115 ^वेबसाईट/*वेबसाईट$
-    115 ^वित्तपोषण/*वित्तपोषण$
-k   115 ^लूथर/*लूथर$
-n    115 ^रिएक्टर/*रिएक्टर$
-n    115 ^बर्बरीक/*बर्बरीक$
-k    115 ^फोर्ब्स/*फोर्ब्स$
-    115 ^फॉण्ट/*फॉण्ट$
-n   115 ^फ़ारस/*फ़ारस$
-n    115 ^प्लस/*प्लस$
-v 115 ^प्रोसेसिंग/*प्रोसेसिंग$
-n 115 ^प्राणायाम/*प्राणायाम$
-n 115 ^पेसमेकर/*पेसमेकर$
-    115 ^पालीगंज/*पालीगंज$
-i 115 ^परिवर्तनशील/*परिवर्तनशील$
-n  115 ^दुष्प्रभाव/*दुष्प्रभाव$
-k   115 ^दिलीप/*दिलीप$
-n 115 ^डायमंड/*डायमंड$
-n  115 ^ट्री/*ट्री$
-a  115 ^टुडे/*टुडे$
-i  115 ^ज्ञानपीठ/*ज्ञानपीठ$
-    115 ^जू/*जू$
-k   115 ^गोकुल/*गोकुल$
-
diff --git a/dev/hin.freq.lemmatised.txt b/dev/hin.freq.lemmatised.txt
deleted file mode 100644
index 5a6681f..0000000
--- a/dev/hin.freq.lemmatised.txt
+++ /dev/null
@@ -1,116 +0,0 @@
-t  48301 ^भारत/*भारत$
-n  30713 ^आदि/*आदि$
-a  30713 ^आदि/*आदि$
-j  22859 ^अधिक/*अधिक$
-r  22859 ^अधिक/*अधिक$
-a  22859 ^अधिक/*अधिक$
-j  21924 ^वाले/*वाला$
-j  21817 ^स्थित/*स्थित$
-r  19134 ^अन्तर्गत/*अन्तर्गत$
-a  14809 ^न/*न$
-g  12784 ^मण्डल/*मण्डल$
-n  12784 ^मण्डल/*मण्डल$
-j  12784 ^मण्डल/*मण्डल$
-n  12259 ^साथ/*साथ$
-a  12259 ^साथ/*साथ$
-r  12259 ^साथ/*साथ$
-c  12128 ^व/*व$
-j  11061 ^तहसील/*तहसील$
-t  11001 ^उत्तराखण्ड/*उत्तराखण्ड$
-j  10632 ^प्रचलित/* प्रचलन$
-j  10468 ^वाली/*वाली$
-r   9801 ^दौरान/*दौर$
-j   9441 ^उपरोक्त/*उपरोक्त$
-n   9210 ^हिन्दी/*हिन्दी$
-j   9210 ^हिन्दी/*हिन्दी$
-n   9104 ^कलियुग/*कलियुग$
-d   9031 ^विक्रमी/*विक्रमी$
-n   8793 ^ईसा/*ईसा$
-j   8358 ^विभिन्न/*विभिन्न$
-t   7720 ^अमेरिका/*अमेरिका$
-j   7481 ^तौर/*तौर$
-n   7297 ^कुमाऊँ/*कुमाऊँ$
-j   6780 ^वाला/*वाला$
-a   6442 ^जहां/*जहां$
-j   6217 ^नामक/*नामक$ 
-j   5883 ^प्रसिद्ध/*प्रसिद्ध$
-c   5762 ^जबकि/*जबकि$
-n   5586 ^ए/*ए$
-r   5487 ^अलावा/*अलावा$
-v   5419 ^ऑफ़/*ऑफ़$
-k   5345 ^श्री/*श्री$
-a   4980 ^अक्सर/*अक्सर$
-   4903 ^ई/*ई$
-p   4746 ^अमेरिकी/*अमेरिकी$
-j   4725 ^जिनमें/*जिनमें$
-t   4678 ^आन्ध्रप्रदेश/*आन्ध्रप्रदेश$
-a   4415 ^अधिकांश/*अधिकांश$
-a   4410 ^बिना/*बिना$
-r   4410 ^बिना/*बिना$
-c   4279 ^एंड/*एंड$
-a   4077 ^क्या/*क्या$
-t   3983 ^गढ़वाल/*गढ़वाल$
-p   3943 ^अंग्रेजी/*अंग्रेजी$
-   3603 ^डी/*डी$
-p   3261 ^यही/*यही$
-j   3226 ^सहित/*सहित$
-a   3226 ^सहित/*सहित$
-p   3138 ^जिन्हें/*जिन्हें$
-v   2905 ^निर्मित/*निर्मित$
-v   2884 ^बी/*बी$
-a   2822 ^वहां/*वहां$
-p   2797 ^अंग्रेज़ी/*अंग्रेज़ी$
-a   2786 ^आमतौर/*आमतौर$
-c   2764 ^खिलाफ/*खिलाफ$
-r   2652 ^अंतर्गत/*अंतर्गत$
-n   2607 ^रेलवे/*रेलवे$
-   2539 ^स्/*स्$
-d   2526 ^जे/*जे$
-s   2515 ^तहत/*तहत$
-j   2504 ^अच्छी/*अच्छी$
-v   2496 ^हों/*हो$
-v   2496 ^एम/*एम$
-t   2494 ^अल्मोड़ा/*अल्मोड़ा$
-n   2487 ^एल्बम/*एल्बम$
-t   2432 ^ब्रिटेन/*ब्रिटेन$
-p   2413 ^वो/*वो$
-n   2380 ^पौड़ी/*पौड़ी$
-a   2367 ^तरफ/*तरफ$
-v   2348 ^गैर/*गैर$
-k   2346 ^जॉन/*जॉन$
-t   2331 ^एशिया/*एशिया$
-t   2286 ^नैनीताल/*नैनीताल$
-p   2283 ^खुद/*खुद$
-a   2272 ^नही/*नही$
-v  2242 ^स्थापित/*स्थापना$
-j   2231 ^पुराने/*पुराना$
-j   2196 ^य/*य$
-a   2184 ^पुनः/*पुनः$
-p   2183 ^डॉ/*डॉ$
-d   2175 ^आसपास/*आसपास$
-t   2155 ^इंग्लैंड/*इंग्लैंड$
-n   2031 ^नेटवर्क/*नेटवर्क$
-a   2026 ^इत्यादि/*इत्यादि$
-r   2006 ^अधिकतर/*अधिकतर$
-a   1971 ^इतना/*इतना$
-j   1971 ^इतना/*इतना$
-c   1971 ^इतना/*इतना$
-r   1971 ^इतना/*इतना$
-p   1930 ^हे/*हे$
-n   1929 ^मॉडल/*मॉडल$
-j   1917 ^सारे/*सारे$
-p   1915 ^हिन्दू/*हिन्दू$
-j   1911 ^विस्तृत/*विस्तृत$
-m   1896 ^डॉलर/*डॉलर$
-t   1886 ^न्यूयॉर्क/*न्यूयॉर्क$
-a   1882 ^सा/*सा$
-r   1876 ^ना/*ना$
-j   1865 ^निकट/*निकट$
-a   1865 ^निकट/*निकट$
-n   1855 ^कृष्ण/*कृष्ण$
-c   1851 ^बजाय/*बजाय$
-a   1851 ^बजाय/*बजाया$
-n   1828 ^कंप्यूटर/*कंप्यूटर$
-v   1826 ^रिकॉर्ड/*रिकॉर्ड$
-n   1824 ^गांव/*गांव$
-
diff --git a/install-sh b/install-sh
new file mode 100755
index 0000000..ec298b5
--- /dev/null
+++ b/install-sh
@@ -0,0 +1,541 @@
+#!/bin/sh
+# install - install a program, script, or datafile
+
+scriptversion=2020-11-14.01; # UTC
+
+# This originates from X11R5 (mit/util/scripts/install.sh), which was
+# later released in X11R6 (xc/config/util/install.sh) with the
+# following copyright and license.
+#
+# Copyright (C) 1994 X Consortium
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to
+# deal in the Software without restriction, including without limitation the
+# rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
+# sell copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL THE
+# X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
+# AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNEC-
+# TION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+#
+# Except as contained in this notice, the name of the X Consortium shall not
+# be used in advertising or otherwise to promote the sale, use or other deal-
+# ings in this Software without prior written authorization from the X Consor-
+# tium.
+#
+#
+# FSF changes to this file are in the public domain.
+#
+# Calling this script install-sh is preferred over install.sh, to prevent
+# 'make' implicit rules from creating a file called install from it
+# when there is no Makefile.
+#
+# This script is compatible with the BSD install script, but was written
+# from scratch.
+
+tab='	'
+nl='
+'
+IFS=" $tab$nl"
+
+# Set DOITPROG to "echo" to test this script.
+
+doit=${DOITPROG-}
+doit_exec=${doit:-exec}
+
+# Put in absolute file names if you don't have them in your path;
+# or use environment vars.
+
+chgrpprog=${CHGRPPROG-chgrp}
+chmodprog=${CHMODPROG-chmod}
+chownprog=${CHOWNPROG-chown}
+cmpprog=${CMPPROG-cmp}
+cpprog=${CPPROG-cp}
+mkdirprog=${MKDIRPROG-mkdir}
+mvprog=${MVPROG-mv}
+rmprog=${RMPROG-rm}
+stripprog=${STRIPPROG-strip}
+
+posix_mkdir=
+
+# Desired mode of installed file.
+mode=0755
+
+# Create dirs (including intermediate dirs) using mode 755.
+# This is like GNU 'install' as of coreutils 8.32 (2020).
+mkdir_umask=22
+
+backupsuffix=
+chgrpcmd=
+chmodcmd=$chmodprog
+chowncmd=
+mvcmd=$mvprog
+rmcmd="$rmprog -f"
+stripcmd=
+
+src=
+dst=
+dir_arg=
+dst_arg=
+
+copy_on_change=false
+is_target_a_directory=possibly
+
+usage="\
+Usage: $0 [OPTION]... [-T] SRCFILE DSTFILE
+   or: $0 [OPTION]... SRCFILES... DIRECTORY
+   or: $0 [OPTION]... -t DIRECTORY SRCFILES...
+   or: $0 [OPTION]... -d DIRECTORIES...
+
+In the 1st form, copy SRCFILE to DSTFILE.
+In the 2nd and 3rd, copy all SRCFILES to DIRECTORY.
+In the 4th, create DIRECTORIES.
+
+Options:
+     --help     display this help and exit.
+     --version  display version info and exit.
+
+  -c            (ignored)
+  -C            install only if different (preserve data modification time)
+  -d            create directories instead of installing files.
+  -g GROUP      $chgrpprog installed files to GROUP.
+  -m MODE       $chmodprog installed files to MODE.
+  -o USER       $chownprog installed files to USER.
+  -p            pass -p to $cpprog.
+  -s            $stripprog installed files.
+  -S SUFFIX     attempt to back up existing files, with suffix SUFFIX.
+  -t DIRECTORY  install into DIRECTORY.
+  -T            report an error if DSTFILE is a directory.
+
+Environment variables override the default commands:
+  CHGRPPROG CHMODPROG CHOWNPROG CMPPROG CPPROG MKDIRPROG MVPROG
+  RMPROG STRIPPROG
+
+By default, rm is invoked with -f; when overridden with RMPROG,
+it's up to you to specify -f if you want it.
+
+If -S is not specified, no backups are attempted.
+
+Email bug reports to bug-automake@gnu.org.
+Automake home page: https://www.gnu.org/software/automake/
+"
+
+while test $# -ne 0; do
+  case $1 in
+    -c) ;;
+
+    -C) copy_on_change=true;;
+
+    -d) dir_arg=true;;
+
+    -g) chgrpcmd="$chgrpprog $2"
+        shift;;
+
+    --help) echo "$usage"; exit $?;;
+
+    -m) mode=$2
+        case $mode in
+          *' '* | *"$tab"* | *"$nl"* | *'*'* | *'?'* | *'['*)
+            echo "$0: invalid mode: $mode" >&2
+            exit 1;;
+        esac
+        shift;;
+
+    -o) chowncmd="$chownprog $2"
+        shift;;
+
+    -p) cpprog="$cpprog -p";;
+
+    -s) stripcmd=$stripprog;;
+
+    -S) backupsuffix="$2"
+        shift;;
+
+    -t)
+        is_target_a_directory=always
+        dst_arg=$2
+        # Protect names problematic for 'test' and other utilities.
+        case $dst_arg in
+          -* | [=\(\)!]) dst_arg=./$dst_arg;;
+        esac
+        shift;;
+
+    -T) is_target_a_directory=never;;
+
+    --version) echo "$0 $scriptversion"; exit $?;;
+
+    --) shift
+        break;;
+
+    -*) echo "$0: invalid option: $1" >&2
+        exit 1;;
+
+    *)  break;;
+  esac
+  shift
+done
+
+# We allow the use of options -d and -T together, by making -d
+# take the precedence; this is for compatibility with GNU install.
+
+if test -n "$dir_arg"; then
+  if test -n "$dst_arg"; then
+    echo "$0: target directory not allowed when installing a directory." >&2
+    exit 1
+  fi
+fi
+
+if test $# -ne 0 && test -z "$dir_arg$dst_arg"; then
+  # When -d is used, all remaining arguments are directories to create.
+  # When -t is used, the destination is already specified.
+  # Otherwise, the last argument is the destination.  Remove it from $@.
+  for arg
+  do
+    if test -n "$dst_arg"; then
+      # $@ is not empty: it contains at least $arg.
+      set fnord "$@" "$dst_arg"
+      shift # fnord
+    fi
+    shift # arg
+    dst_arg=$arg
+    # Protect names problematic for 'test' and other utilities.
+    case $dst_arg in
+      -* | [=\(\)!]) dst_arg=./$dst_arg;;
+    esac
+  done
+fi
+
+if test $# -eq 0; then
+  if test -z "$dir_arg"; then
+    echo "$0: no input file specified." >&2
+    exit 1
+  fi
+  # It's OK to call 'install-sh -d' without argument.
+  # This can happen when creating conditional directories.
+  exit 0
+fi
+
+if test -z "$dir_arg"; then
+  if test $# -gt 1 || test "$is_target_a_directory" = always; then
+    if test ! -d "$dst_arg"; then
+      echo "$0: $dst_arg: Is not a directory." >&2
+      exit 1
+    fi
+  fi
+fi
+
+if test -z "$dir_arg"; then
+  do_exit='(exit $ret); exit $ret'
+  trap "ret=129; $do_exit" 1
+  trap "ret=130; $do_exit" 2
+  trap "ret=141; $do_exit" 13
+  trap "ret=143; $do_exit" 15
+
+  # Set umask so as not to create temps with too-generous modes.
+  # However, 'strip' requires both read and write access to temps.
+  case $mode in
+    # Optimize common cases.
+    *644) cp_umask=133;;
+    *755) cp_umask=22;;
+
+    *[0-7])
+      if test -z "$stripcmd"; then
+        u_plus_rw=
+      else
+        u_plus_rw='% 200'
+      fi
+      cp_umask=`expr '(' 777 - $mode % 1000 ')' $u_plus_rw`;;
+    *)
+      if test -z "$stripcmd"; then
+        u_plus_rw=
+      else
+        u_plus_rw=,u+rw
+      fi
+      cp_umask=$mode$u_plus_rw;;
+  esac
+fi
+
+for src
+do
+  # Protect names problematic for 'test' and other utilities.
+  case $src in
+    -* | [=\(\)!]) src=./$src;;
+  esac
+
+  if test -n "$dir_arg"; then
+    dst=$src
+    dstdir=$dst
+    test -d "$dstdir"
+    dstdir_status=$?
+    # Don't chown directories that already exist.
+    if test $dstdir_status = 0; then
+      chowncmd=""
+    fi
+  else
+
+    # Waiting for this to be detected by the "$cpprog $src $dsttmp" command
+    # might cause directories to be created, which would be especially bad
+    # if $src (and thus $dsttmp) contains '*'.
+    if test ! -f "$src" && test ! -d "$src"; then
+      echo "$0: $src does not exist." >&2
+      exit 1
+    fi
+
+    if test -z "$dst_arg"; then
+      echo "$0: no destination specified." >&2
+      exit 1
+    fi
+    dst=$dst_arg
+
+    # If destination is a directory, append the input filename.
+    if test -d "$dst"; then
+      if test "$is_target_a_directory" = never; then
+        echo "$0: $dst_arg: Is a directory" >&2
+        exit 1
+      fi
+      dstdir=$dst
+      dstbase=`basename "$src"`
+      case $dst in
+	*/) dst=$dst$dstbase;;
+	*)  dst=$dst/$dstbase;;
+      esac
+      dstdir_status=0
+    else
+      dstdir=`dirname "$dst"`
+      test -d "$dstdir"
+      dstdir_status=$?
+    fi
+  fi
+
+  case $dstdir in
+    */) dstdirslash=$dstdir;;
+    *)  dstdirslash=$dstdir/;;
+  esac
+
+  obsolete_mkdir_used=false
+
+  if test $dstdir_status != 0; then
+    case $posix_mkdir in
+      '')
+        # With -d, create the new directory with the user-specified mode.
+        # Otherwise, rely on $mkdir_umask.
+        if test -n "$dir_arg"; then
+          mkdir_mode=-m$mode
+        else
+          mkdir_mode=
+        fi
+
+        posix_mkdir=false
+	# The $RANDOM variable is not portable (e.g., dash).  Use it
+	# here however when possible just to lower collision chance.
+	tmpdir=${TMPDIR-/tmp}/ins$RANDOM-$$
+
+	trap '
+	  ret=$?
+	  rmdir "$tmpdir/a/b" "$tmpdir/a" "$tmpdir" 2>/dev/null
+	  exit $ret
+	' 0
+
+	# Because "mkdir -p" follows existing symlinks and we likely work
+	# directly in world-writeable /tmp, make sure that the '$tmpdir'
+	# directory is successfully created first before we actually test
+	# 'mkdir -p'.
+	if (umask $mkdir_umask &&
+	    $mkdirprog $mkdir_mode "$tmpdir" &&
+	    exec $mkdirprog $mkdir_mode -p -- "$tmpdir/a/b") >/dev/null 2>&1
+	then
+	  if test -z "$dir_arg" || {
+	       # Check for POSIX incompatibilities with -m.
+	       # HP-UX 11.23 and IRIX 6.5 mkdir -m -p sets group- or
+	       # other-writable bit of parent directory when it shouldn't.
+	       # FreeBSD 6.1 mkdir -m -p sets mode of existing directory.
+	       test_tmpdir="$tmpdir/a"
+	       ls_ld_tmpdir=`ls -ld "$test_tmpdir"`
+	       case $ls_ld_tmpdir in
+		 d????-?r-*) different_mode=700;;
+		 d????-?--*) different_mode=755;;
+		 *) false;;
+	       esac &&
+	       $mkdirprog -m$different_mode -p -- "$test_tmpdir" && {
+		 ls_ld_tmpdir_1=`ls -ld "$test_tmpdir"`
+		 test "$ls_ld_tmpdir" = "$ls_ld_tmpdir_1"
+	       }
+	     }
+	  then posix_mkdir=:
+	  fi
+	  rmdir "$tmpdir/a/b" "$tmpdir/a" "$tmpdir"
+	else
+	  # Remove any dirs left behind by ancient mkdir implementations.
+	  rmdir ./$mkdir_mode ./-p ./-- "$tmpdir" 2>/dev/null
+	fi
+	trap '' 0;;
+    esac
+
+    if
+      $posix_mkdir && (
+        umask $mkdir_umask &&
+        $doit_exec $mkdirprog $mkdir_mode -p -- "$dstdir"
+      )
+    then :
+    else
+
+      # mkdir does not conform to POSIX,
+      # or it failed possibly due to a race condition.  Create the
+      # directory the slow way, step by step, checking for races as we go.
+
+      case $dstdir in
+        /*) prefix='/';;
+        [-=\(\)!]*) prefix='./';;
+        *)  prefix='';;
+      esac
+
+      oIFS=$IFS
+      IFS=/
+      set -f
+      set fnord $dstdir
+      shift
+      set +f
+      IFS=$oIFS
+
+      prefixes=
+
+      for d
+      do
+        test X"$d" = X && continue
+
+        prefix=$prefix$d
+        if test -d "$prefix"; then
+          prefixes=
+        else
+          if $posix_mkdir; then
+            (umask $mkdir_umask &&
+             $doit_exec $mkdirprog $mkdir_mode -p -- "$dstdir") && break
+            # Don't fail if two instances are running concurrently.
+            test -d "$prefix" || exit 1
+          else
+            case $prefix in
+              *\'*) qprefix=`echo "$prefix" | sed "s/'/'\\\\\\\\''/g"`;;
+              *) qprefix=$prefix;;
+            esac
+            prefixes="$prefixes '$qprefix'"
+          fi
+        fi
+        prefix=$prefix/
+      done
+
+      if test -n "$prefixes"; then
+        # Don't fail if two instances are running concurrently.
+        (umask $mkdir_umask &&
+         eval "\$doit_exec \$mkdirprog $prefixes") ||
+          test -d "$dstdir" || exit 1
+        obsolete_mkdir_used=true
+      fi
+    fi
+  fi
+
+  if test -n "$dir_arg"; then
+    { test -z "$chowncmd" || $doit $chowncmd "$dst"; } &&
+    { test -z "$chgrpcmd" || $doit $chgrpcmd "$dst"; } &&
+    { test "$obsolete_mkdir_used$chowncmd$chgrpcmd" = false ||
+      test -z "$chmodcmd" || $doit $chmodcmd $mode "$dst"; } || exit 1
+  else
+
+    # Make a couple of temp file names in the proper directory.
+    dsttmp=${dstdirslash}_inst.$$_
+    rmtmp=${dstdirslash}_rm.$$_
+
+    # Trap to clean up those temp files at exit.
+    trap 'ret=$?; rm -f "$dsttmp" "$rmtmp" && exit $ret' 0
+
+    # Copy the file name to the temp name.
+    (umask $cp_umask &&
+     { test -z "$stripcmd" || {
+	 # Create $dsttmp read-write so that cp doesn't create it read-only,
+	 # which would cause strip to fail.
+	 if test -z "$doit"; then
+	   : >"$dsttmp" # No need to fork-exec 'touch'.
+	 else
+	   $doit touch "$dsttmp"
+	 fi
+       }
+     } &&
+     $doit_exec $cpprog "$src" "$dsttmp") &&
+
+    # and set any options; do chmod last to preserve setuid bits.
+    #
+    # If any of these fail, we abort the whole thing.  If we want to
+    # ignore errors from any of these, just make sure not to ignore
+    # errors from the above "$doit $cpprog $src $dsttmp" command.
+    #
+    { test -z "$chowncmd" || $doit $chowncmd "$dsttmp"; } &&
+    { test -z "$chgrpcmd" || $doit $chgrpcmd "$dsttmp"; } &&
+    { test -z "$stripcmd" || $doit $stripcmd "$dsttmp"; } &&
+    { test -z "$chmodcmd" || $doit $chmodcmd $mode "$dsttmp"; } &&
+
+    # If -C, don't bother to copy if it wouldn't change the file.
+    if $copy_on_change &&
+       old=`LC_ALL=C ls -dlL "$dst"     2>/dev/null` &&
+       new=`LC_ALL=C ls -dlL "$dsttmp"  2>/dev/null` &&
+       set -f &&
+       set X $old && old=:$2:$4:$5:$6 &&
+       set X $new && new=:$2:$4:$5:$6 &&
+       set +f &&
+       test "$old" = "$new" &&
+       $cmpprog "$dst" "$dsttmp" >/dev/null 2>&1
+    then
+      rm -f "$dsttmp"
+    else
+      # If $backupsuffix is set, and the file being installed
+      # already exists, attempt a backup.  Don't worry if it fails,
+      # e.g., if mv doesn't support -f.
+      if test -n "$backupsuffix" && test -f "$dst"; then
+        $doit $mvcmd -f "$dst" "$dst$backupsuffix" 2>/dev/null
+      fi
+
+      # Rename the file to the real destination.
+      $doit $mvcmd -f "$dsttmp" "$dst" 2>/dev/null ||
+
+      # The rename failed, perhaps because mv can't rename something else
+      # to itself, or perhaps because mv is so ancient that it does not
+      # support -f.
+      {
+        # Now remove or move aside any old file at destination location.
+        # We try this two ways since rm can't unlink itself on some
+        # systems and the destination file might be busy for other
+        # reasons.  In this case, the final cleanup might fail but the new
+        # file should still install successfully.
+        {
+          test ! -f "$dst" ||
+          $doit $rmcmd "$dst" 2>/dev/null ||
+          { $doit $mvcmd -f "$dst" "$rmtmp" 2>/dev/null &&
+            { $doit $rmcmd "$rmtmp" 2>/dev/null; :; }
+          } ||
+          { echo "$0: cannot unlink or rename $dst" >&2
+            (exit 1); exit 1
+          }
+        } &&
+
+        # Now rename the file to the real destination.
+        $doit $mvcmd "$dsttmp" "$dst"
+      }
+    fi || exit 1
+
+    trap '' 0
+  fi
+done
+
+# Local variables:
+# eval: (add-hook 'before-save-hook 'time-stamp)
+# time-stamp-start: "scriptversion="
+# time-stamp-format: "%:y-%02m-%02d.%02H"
+# time-stamp-time-zone: "UTC0"
+# time-stamp-end: "; # UTC"
+# End:
diff --git a/missing b/missing
new file mode 100755
index 0000000..1fe1611
--- /dev/null
+++ b/missing
@@ -0,0 +1,215 @@
+#! /bin/sh
+# Common wrapper for a few potentially missing GNU programs.
+
+scriptversion=2018-03-07.03; # UTC
+
+# Copyright (C) 1996-2021 Free Software Foundation, Inc.
+# Originally written by Fran,cois Pinard <pinard@iro.umontreal.ca>, 1996.
+
+# This program is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 2, or (at your option)
+# any later version.
+
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+# GNU General Public License for more details.
+
+# You should have received a copy of the GNU General Public License
+# along with this program.  If not, see <https://www.gnu.org/licenses/>.
+
+# As a special exception to the GNU General Public License, if you
+# distribute this file as part of a program that contains a
+# configuration script generated by Autoconf, you may include it under
+# the same distribution terms that you use for the rest of that program.
+
+if test $# -eq 0; then
+  echo 1>&2 "Try '$0 --help' for more information"
+  exit 1
+fi
+
+case $1 in
+
+  --is-lightweight)
+    # Used by our autoconf macros to check whether the available missing
+    # script is modern enough.
+    exit 0
+    ;;
+
+  --run)
+    # Back-compat with the calling convention used by older automake.
+    shift
+    ;;
+
+  -h|--h|--he|--hel|--help)
+    echo "\
+$0 [OPTION]... PROGRAM [ARGUMENT]...
+
+Run 'PROGRAM [ARGUMENT]...', returning a proper advice when this fails due
+to PROGRAM being missing or too old.
+
+Options:
+  -h, --help      display this help and exit
+  -v, --version   output version information and exit
+
+Supported PROGRAM values:
+  aclocal   autoconf  autoheader   autom4te  automake  makeinfo
+  bison     yacc      flex         lex       help2man
+
+Version suffixes to PROGRAM as well as the prefixes 'gnu-', 'gnu', and
+'g' are ignored when checking the name.
+
+Send bug reports to <bug-automake@gnu.org>."
+    exit $?
+    ;;
+
+  -v|--v|--ve|--ver|--vers|--versi|--versio|--version)
+    echo "missing $scriptversion (GNU Automake)"
+    exit $?
+    ;;
+
+  -*)
+    echo 1>&2 "$0: unknown '$1' option"
+    echo 1>&2 "Try '$0 --help' for more information"
+    exit 1
+    ;;
+
+esac
+
+# Run the given program, remember its exit status.
+"$@"; st=$?
+
+# If it succeeded, we are done.
+test $st -eq 0 && exit 0
+
+# Also exit now if we it failed (or wasn't found), and '--version' was
+# passed; such an option is passed most likely to detect whether the
+# program is present and works.
+case $2 in --version|--help) exit $st;; esac
+
+# Exit code 63 means version mismatch.  This often happens when the user
+# tries to use an ancient version of a tool on a file that requires a
+# minimum version.
+if test $st -eq 63; then
+  msg="probably too old"
+elif test $st -eq 127; then
+  # Program was missing.
+  msg="missing on your system"
+else
+  # Program was found and executed, but failed.  Give up.
+  exit $st
+fi
+
+perl_URL=https://www.perl.org/
+flex_URL=https://github.com/westes/flex
+gnu_software_URL=https://www.gnu.org/software
+
+program_details ()
+{
+  case $1 in
+    aclocal|automake)
+      echo "The '$1' program is part of the GNU Automake package:"
+      echo "<$gnu_software_URL/automake>"
+      echo "It also requires GNU Autoconf, GNU m4 and Perl in order to run:"
+      echo "<$gnu_software_URL/autoconf>"
+      echo "<$gnu_software_URL/m4/>"
+      echo "<$perl_URL>"
+      ;;
+    autoconf|autom4te|autoheader)
+      echo "The '$1' program is part of the GNU Autoconf package:"
+      echo "<$gnu_software_URL/autoconf/>"
+      echo "It also requires GNU m4 and Perl in order to run:"
+      echo "<$gnu_software_URL/m4/>"
+      echo "<$perl_URL>"
+      ;;
+  esac
+}
+
+give_advice ()
+{
+  # Normalize program name to check for.
+  normalized_program=`echo "$1" | sed '
+    s/^gnu-//; t
+    s/^gnu//; t
+    s/^g//; t'`
+
+  printf '%s\n' "'$1' is $msg."
+
+  configure_deps="'configure.ac' or m4 files included by 'configure.ac'"
+  case $normalized_program in
+    autoconf*)
+      echo "You should only need it if you modified 'configure.ac',"
+      echo "or m4 files included by it."
+      program_details 'autoconf'
+      ;;
+    autoheader*)
+      echo "You should only need it if you modified 'acconfig.h' or"
+      echo "$configure_deps."
+      program_details 'autoheader'
+      ;;
+    automake*)
+      echo "You should only need it if you modified 'Makefile.am' or"
+      echo "$configure_deps."
+      program_details 'automake'
+      ;;
+    aclocal*)
+      echo "You should only need it if you modified 'acinclude.m4' or"
+      echo "$configure_deps."
+      program_details 'aclocal'
+      ;;
+   autom4te*)
+      echo "You might have modified some maintainer files that require"
+      echo "the 'autom4te' program to be rebuilt."
+      program_details 'autom4te'
+      ;;
+    bison*|yacc*)
+      echo "You should only need it if you modified a '.y' file."
+      echo "You may want to install the GNU Bison package:"
+      echo "<$gnu_software_URL/bison/>"
+      ;;
+    lex*|flex*)
+      echo "You should only need it if you modified a '.l' file."
+      echo "You may want to install the Fast Lexical Analyzer package:"
+      echo "<$flex_URL>"
+      ;;
+    help2man*)
+      echo "You should only need it if you modified a dependency" \
+           "of a man page."
+      echo "You may want to install the GNU Help2man package:"
+      echo "<$gnu_software_URL/help2man/>"
+    ;;
+    makeinfo*)
+      echo "You should only need it if you modified a '.texi' file, or"
+      echo "any other file indirectly affecting the aspect of the manual."
+      echo "You might want to install the Texinfo package:"
+      echo "<$gnu_software_URL/texinfo/>"
+      echo "The spurious makeinfo call might also be the consequence of"
+      echo "using a buggy 'make' (AIX, DU, IRIX), in which case you might"
+      echo "want to install GNU make:"
+      echo "<$gnu_software_URL/make/>"
+      ;;
+    *)
+      echo "You might have modified some files without having the proper"
+      echo "tools for further handling them.  Check the 'README' file, it"
+      echo "often tells you about the needed prerequisites for installing"
+      echo "this package.  You may also peek at any GNU archive site, in"
+      echo "case some other package contains this missing '$1' program."
+      ;;
+  esac
+}
+
+give_advice "$1" | sed -e '1s/^/WARNING: /' \
+                       -e '2,$s/^/         /' >&2
+
+# Propagate the correct exit status (expected to be 127 for a program
+# not found, 63 for a program that failed due to version mismatch).
+exit $st
+
+# Local variables:
+# eval: (add-hook 'before-save-hook 'time-stamp)
+# time-stamp-start: "scriptversion="
+# time-stamp-format: "%:y-%02m-%02d.%02H"
+# time-stamp-time-zone: "UTC0"
+# time-stamp-end: "; # UTC"
+# End:
diff --git a/modes.xml b/modes.xml
index 383d75a..cacc279 100644
--- a/modes.xml
+++ b/modes.xml
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <modes>
 
-  <mode name="hin-morph">
+  <mode name="hin-morph" install="yes">
     <pipeline>
       <program name="lt-proc -w">
         <file name="hin.automorf.bin"/>
@@ -9,7 +9,7 @@
     </pipeline>
   </mode>
 
-  <mode name="hin-gener">
+  <mode name="hin-gener" install="yes">
     <pipeline>
       <program name="lt-proc -g">
         <file name="hin.autogen.bin"/>
@@ -17,7 +17,7 @@
     </pipeline>
   </mode>
 
-  <mode name="hin-tagger">
+  <mode name="hin-tagger" install="yes">
     <pipeline>
       <program name="lt-proc -w">
         <file name="hin.automorf.bin"/>
@@ -25,10 +25,13 @@
       <program name="cg-proc -w">
         <file name="hin.rlx.bin"/>
       </program>
+      <program name="apertium-tagger -u 2 -g">
+        <file name="hin.prob"/>
+      </program>
     </pipeline>
   </mode>
 
-  <mode name="hin-disam">
+  <mode name="hin-disam" install="yes">
     <pipeline>
       <program name="lt-proc -w">
         <file name="hin.automorf.bin"/>
@@ -40,5 +43,20 @@
     </pipeline>
   </mode>
 
+	<mode name="hin-tokenise" install="yes">
+		<pipeline>
+			<program name="hfst-proc">
+				<file name=".deps/acceptor.default.hfst"/>
+			</program>
+		</pipeline>
+	</mode>
+
+  <mode name="hin-spell" install="yes">
+    <pipeline>
+      <program name="hfst-ospell -S -n 10">
+        <file name="hin.zhfst"/>
+      </program>
+    </pipeline>
+  </mode>
 
 </modes>

More details

Full run details

Historical runs