You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@joshua.apache.org by mj...@apache.org on 2016/09/15 11:17:33 UTC

[1/9] incubator-joshua git commit: moved new unit tests (former regression tests) to correct location in joshua 7 (joshua-core/src)

Repository: incubator-joshua
Updated Branches:
  refs/heads/7 732997be4 -> 85aa03232


http://git-wip-us.apache.org/repos/asf/incubator-joshua/blob/ee7398f7/src/test/resources/decoder/lowercaser/joshua.config
----------------------------------------------------------------------
diff --git a/src/test/resources/decoder/lowercaser/joshua.config b/src/test/resources/decoder/lowercaser/joshua.config
deleted file mode 100644
index 6f5a46b..0000000
--- a/src/test/resources/decoder/lowercaser/joshua.config
+++ /dev/null
@@ -1,140 +0,0 @@
-# This file is a template for the Joshua pipeline; variables enclosed
-# in <angle-brackets> are substituted by the pipeline script as
-# appropriate.  This file also serves to document Joshua's many
-# parameters.
-
-# These are the grammar file specifications.  Joshua supports an
-# arbitrary number of grammar files, each specified on its own line
-# using the following format:
-#
-#   tm = TYPE OWNER LIMIT FILE
-# 
-# TYPE is "packed", "thrax", or "samt".  The latter denotes the format
-# used in Zollmann and Venugopal's SAMT decoder
-# (http://www.cs.cmu.edu/~zollmann/samt/).
-# 
-# OWNER is the "owner" of the rules in the grammar; this is used to
-# determine which set of phrasal features apply to the grammar's
-# rules.  Having different owners allows different features to be
-# applied to different grammars, and for grammars to share features
-# across files.
-#
-# LIMIT is the maximum input span permitted for the application of
-# grammar rules found in the grammar file.  A value of -1 implies no limit.
-#
-# FILE is the grammar file (or directory when using packed grammars).
-# The file can be compressed with gzip, which is determined by the
-# presence or absence of a ".gz" file extension.
-#
-# By a convention defined by Chiang (2007), the grammars are split
-# into two files: the main translation grammar containing all the
-# learned translation rules, and a glue grammar which supports
-# monotonic concatenation of hierarchical phrases. The glue grammar's
-# main distinction from the regular grammar is that the span limit
-# does not apply to it.  
-
-tm = hiero -maxspan 20 -path src/test/resources/decoder/lowercaser/grammar.test -owner pt
-tm = thrax -path src/test/resources/decoder/lowercaser/grammar.glue -maxspan -1 -owner glue
-
-# This symbol is used over unknown words in the source language
-
-default-non-terminal = X
-
-# This is the goal nonterminal, used to determine when a complete
-# parse is found.  It should correspond to the root-level rules in the
-# glue grammar.
-
-goal-symbol = GOAL
-
-# Language model config.
-#
-# Multiple language models are supported.  For each language model,
-# create one of the following lines:
-#
-# feature-function = LanguageModel -lm_type TYPE -lm_order ORDER -lm_file FILE
-# feature-function = StateMinimizingLanguageModel -lm_order ORDER -lm_file FILE
-#
-# - TYPE is one of "kenlm" or "berkeleylm"
-# - ORDER is the order of the language model (default 5)
-# - FILE is the path to the LM file. This can be binarized if appropriate to the type
-#   (e.g., KenLM has a compiled format)
-#
-# A state-minimizing LM collapses left-state. Currently only KenLM supports this.
-#
-# For each LM, add a weight lm_INDEX below, where indexing starts from 0.
-
-
-
-# The suffix _OOV is appended to unknown source-language words if this
-# is set to true.
-
-mark-oovs = false
-
-# The search algorithm: "cky" for hierarchical / phrase-based decoding, 
-# "stack" for phrase-based decoding
-search = cky
-
-# The pop-limit for decoding.  This determines how many hypotheses are
-# considered over each span of the input.
-
-pop-limit = 100
-
-# How many hypotheses to output
-
-top-n = 1
-
-# Whether those hypotheses should be distinct strings
-
-use-unique-nbest = true
-
-# This is the default format of the ouput printed to STDOUT.  The variables that can be
-# substituted are:
-#
-# %i: the sentence number (0-indexed)
-# %s: the translated sentence
-# %t: the derivation tree
-# %f: the feature string
-# %c: the model cost
-
-output-format = %s
-
-# When printing the trees (%t in 'output-format'), this controls whether the alignments
-# are also printed.
-
-include-align-index = false
-
-# And these are the feature functions to activate.
-feature-function = OOVPenalty
-feature-function = WordPenalty
-
-## Model weights #####################################################
-
-# For each langage model line listed above, create a weight in the
-# following format: the keyword "lm", a 0-based index, and the weight.
-# lm_INDEX WEIGHT
-
-
-# The phrasal weights correspond to weights stored with each of the
-# grammar rules.  The format is
-#
-#   tm_OWNER_COLUMN WEIGHT
-#
-# where COLUMN denotes the 0-based order of the parameter in the
-# grammar file and WEIGHT is the corresponding weight.  In the future,
-# we plan to add a sparse feature representation which will simplify
-# this.
-
-# The wordpenalty feature counts the number of words in each hypothesis.
-
-
-# This feature counts the number of unknown words in the hypothesis.
-
-
-# This feature weights paths through an input lattice.  It is only activated
-# when decoding lattices.
-
-WordPenalty -4.72455379476569
-OOVPenalty 0.7897219562429866
-tm_pt_0 0.3137696816891433
-tm_glue_0 -0.04493059277470993
-

http://git-wip-us.apache.org/repos/asf/incubator-joshua/blob/ee7398f7/src/test/resources/decoder/moses-compat/NEEDS_UPDATING
----------------------------------------------------------------------
diff --git a/src/test/resources/decoder/moses-compat/NEEDS_UPDATING b/src/test/resources/decoder/moses-compat/NEEDS_UPDATING
deleted file mode 100644
index 90402c6..0000000
--- a/src/test/resources/decoder/moses-compat/NEEDS_UPDATING
+++ /dev/null
@@ -1 +0,0 @@
-Needs to be moved to a unit test. The parameter JoshuaConfiguration.moses is handled by JoshuaDecoder. Therefore, the CLI must be made testable before a unit test can be created.

http://git-wip-us.apache.org/repos/asf/incubator-joshua/blob/ee7398f7/src/test/resources/phrase_decoder/config.packed
----------------------------------------------------------------------
diff --git a/src/test/resources/phrase_decoder/config.packed b/src/test/resources/phrase_decoder/config.packed
deleted file mode 100644
index 9987b1a..0000000
--- a/src/test/resources/phrase_decoder/config.packed
+++ /dev/null
@@ -1,29 +0,0 @@
-tm = moses -owner pt -maxspan 0 -path rules.packed -max-source-len 5
-feature-function = StateMinimizingLanguageModel -lm_order 5 -lm_file lm.1.gz
-
-search = stack
-
-mark-oovs = false
-pop-limit = 10
-top-n = 1
-
-output-format = %i ||| %s ||| %f ||| %c
-
-include-align-index = false
-reordering-limit = 6
-
-# And these are the feature functions to activate.
-feature-function = OOVPenalty
-feature-function = WordPenalty
-feature-function = Distortion
-feature-function = PhrasePenalty -owner pt
-
-OOVPenalty 1.0
-Distortion 0.114849
-WordPenalty -0.201544
-PhrasePenalty -0.236965
-tm_pt_0 0.0370068
-tm_pt_1 0.0495759
-tm_pt_2 0.196742
-tm_pt_3 0.0745423
-lm_0 0.204412452147565

http://git-wip-us.apache.org/repos/asf/incubator-joshua/blob/ee7398f7/src/test/resources/phrase_decoder/rules.packed/config
----------------------------------------------------------------------
diff --git a/src/test/resources/phrase_decoder/rules.packed/config b/src/test/resources/phrase_decoder/rules.packed/config
deleted file mode 100644
index 2251fe6..0000000
--- a/src/test/resources/phrase_decoder/rules.packed/config
+++ /dev/null
@@ -1,2 +0,0 @@
-version = 4
-max-source-len = 3

http://git-wip-us.apache.org/repos/asf/incubator-joshua/blob/ee7398f7/src/test/resources/phrase_decoder/rules.packed/encoding
----------------------------------------------------------------------
diff --git a/src/test/resources/phrase_decoder/rules.packed/encoding b/src/test/resources/phrase_decoder/rules.packed/encoding
deleted file mode 100644
index 57e7b75..0000000
Binary files a/src/test/resources/phrase_decoder/rules.packed/encoding and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-joshua/blob/ee7398f7/src/test/resources/phrase_decoder/rules.packed/slice_00000.features
----------------------------------------------------------------------
diff --git a/src/test/resources/phrase_decoder/rules.packed/slice_00000.features b/src/test/resources/phrase_decoder/rules.packed/slice_00000.features
deleted file mode 100644
index 2a77e43..0000000
Binary files a/src/test/resources/phrase_decoder/rules.packed/slice_00000.features and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-joshua/blob/ee7398f7/src/test/resources/phrase_decoder/rules.packed/slice_00000.source
----------------------------------------------------------------------
diff --git a/src/test/resources/phrase_decoder/rules.packed/slice_00000.source b/src/test/resources/phrase_decoder/rules.packed/slice_00000.source
deleted file mode 100644
index c384c54..0000000
Binary files a/src/test/resources/phrase_decoder/rules.packed/slice_00000.source and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-joshua/blob/ee7398f7/src/test/resources/phrase_decoder/rules.packed/slice_00000.target
----------------------------------------------------------------------
diff --git a/src/test/resources/phrase_decoder/rules.packed/slice_00000.target b/src/test/resources/phrase_decoder/rules.packed/slice_00000.target
deleted file mode 100644
index 8375cf0..0000000
Binary files a/src/test/resources/phrase_decoder/rules.packed/slice_00000.target and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-joshua/blob/ee7398f7/src/test/resources/phrase_decoder/rules.packed/slice_00000.target.lookup
----------------------------------------------------------------------
diff --git a/src/test/resources/phrase_decoder/rules.packed/slice_00000.target.lookup b/src/test/resources/phrase_decoder/rules.packed/slice_00000.target.lookup
deleted file mode 100644
index 3e8c294..0000000
Binary files a/src/test/resources/phrase_decoder/rules.packed/slice_00000.target.lookup and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-joshua/blob/ee7398f7/src/test/resources/phrase_decoder/rules.packed/vocabulary
----------------------------------------------------------------------
diff --git a/src/test/resources/phrase_decoder/rules.packed/vocabulary b/src/test/resources/phrase_decoder/rules.packed/vocabulary
deleted file mode 100644
index 528a970..0000000
Binary files a/src/test/resources/phrase_decoder/rules.packed/vocabulary and /dev/null differ


[9/9] incubator-joshua git commit: Fixed packed grammar test case by repacking under 7

Posted by mj...@apache.org.
Fixed packed grammar test case by repacking under 7


Project: http://git-wip-us.apache.org/repos/asf/incubator-joshua/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-joshua/commit/85aa0323
Tree: http://git-wip-us.apache.org/repos/asf/incubator-joshua/tree/85aa0323
Diff: http://git-wip-us.apache.org/repos/asf/incubator-joshua/diff/85aa0323

Branch: refs/heads/7
Commit: 85aa032327843626f2a24bcd392ac018a9a153f6
Parents: 2768b61
Author: Matt Post <po...@cs.jhu.edu>
Authored: Thu Sep 15 13:15:58 2016 +0200
Committer: Matt Post <po...@cs.jhu.edu>
Committed: Thu Sep 15 13:15:58 2016 +0200

----------------------------------------------------------------------
 .../packed/grammar.packed/slice_00000.features  | Bin 4631480 -> 4631480 bytes
 .../packed/grammar.packed/slice_00000.source    | Bin 4240012 -> 4240012 bytes
 .../packed/grammar.packed/slice_00000.target    | Bin 162776 -> 162776 bytes
 .../bn-en/packed/grammar.packed/vocabulary      | Bin 257542 -> 257451 bytes
 4 files changed, 0 insertions(+), 0 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-joshua/blob/85aa0323/joshua-core/src/test/resources/bn-en/packed/grammar.packed/slice_00000.features
----------------------------------------------------------------------
diff --git a/joshua-core/src/test/resources/bn-en/packed/grammar.packed/slice_00000.features b/joshua-core/src/test/resources/bn-en/packed/grammar.packed/slice_00000.features
index 4bd5e88..634a6cc 100644
Binary files a/joshua-core/src/test/resources/bn-en/packed/grammar.packed/slice_00000.features and b/joshua-core/src/test/resources/bn-en/packed/grammar.packed/slice_00000.features differ

http://git-wip-us.apache.org/repos/asf/incubator-joshua/blob/85aa0323/joshua-core/src/test/resources/bn-en/packed/grammar.packed/slice_00000.source
----------------------------------------------------------------------
diff --git a/joshua-core/src/test/resources/bn-en/packed/grammar.packed/slice_00000.source b/joshua-core/src/test/resources/bn-en/packed/grammar.packed/slice_00000.source
index a7312fa..a7517ca 100644
Binary files a/joshua-core/src/test/resources/bn-en/packed/grammar.packed/slice_00000.source and b/joshua-core/src/test/resources/bn-en/packed/grammar.packed/slice_00000.source differ

http://git-wip-us.apache.org/repos/asf/incubator-joshua/blob/85aa0323/joshua-core/src/test/resources/bn-en/packed/grammar.packed/slice_00000.target
----------------------------------------------------------------------
diff --git a/joshua-core/src/test/resources/bn-en/packed/grammar.packed/slice_00000.target b/joshua-core/src/test/resources/bn-en/packed/grammar.packed/slice_00000.target
index f9ee8b3..1604efe 100644
Binary files a/joshua-core/src/test/resources/bn-en/packed/grammar.packed/slice_00000.target and b/joshua-core/src/test/resources/bn-en/packed/grammar.packed/slice_00000.target differ

http://git-wip-us.apache.org/repos/asf/incubator-joshua/blob/85aa0323/joshua-core/src/test/resources/bn-en/packed/grammar.packed/vocabulary
----------------------------------------------------------------------
diff --git a/joshua-core/src/test/resources/bn-en/packed/grammar.packed/vocabulary b/joshua-core/src/test/resources/bn-en/packed/grammar.packed/vocabulary
index cd41d75..c8a7e3f 100644
Binary files a/joshua-core/src/test/resources/bn-en/packed/grammar.packed/vocabulary and b/joshua-core/src/test/resources/bn-en/packed/grammar.packed/vocabulary differ


[2/9] incubator-joshua git commit: moved new unit tests (former regression tests) to correct location in joshua 7 (joshua-core/src)

Posted by mj...@apache.org.
http://git-wip-us.apache.org/repos/asf/incubator-joshua/blob/ee7398f7/src/test/resources/bn-en/samt/output.gold
----------------------------------------------------------------------
diff --git a/src/test/resources/bn-en/samt/output.gold b/src/test/resources/bn-en/samt/output.gold
deleted file mode 100644
index 1c1c36d..0000000
--- a/src/test/resources/bn-en/samt/output.gold
+++ /dev/null
@@ -1,862 +0,0 @@
-"-230.669 rabindranath was born in kolkata is a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family"
-"-230.837 rabindranath was born in a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family"
-"-231.593 rabindranath was born in kolkata is one \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family"
-"-231.977 rabindranath was born in kolkata in a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family"
-"-232.054 rabindranath was born in kolkata a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family"
-"-232.473 rabindranath was born in the a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family"
-"-26.695 in recent times of india with united states relationship between improved ."
-"-27.174 in recent times india with united states relationship between improved ."
-"-27.329 in recent times of india with the united states relationship between improved ."
-"-27.367 in recent times of india with united states relation between improved ."
-"-27.695 in recent times in india with united states relationship between improved ."
-"-27.807 in recent times india with the united states relationship between improved ."
-"-27.845 in recent times india with united states relation between improved ."
-"-28.000 in recent times of india with the united states relation between improved ."
-"-28.037 in recent times of india with united states relation improved ."
-"-28.367 in recent times in india with united states relation between improved ."
-"-12.270 mathematics is science language ."
-"-12.290 mathematics so science language ."
-"-14.648 mathematics hence science language ."
-"-14.684 mathematics that is why science language ."
-"-14.686 mathematics that science language ."
-"-14.843 mathematics is science languages ."
-"-14.864 mathematics so science languages ."
-"-14.908 mathematics is reasons language ."
-"-329.615 from this can easily it can be understood that this \u09ae\u09c7\u099f\u09cd\u09b0\u09bf\u0995\u099f\u09bf will be \u098f\u09ab\u0986\u09b0\u09a1\u09ac\u09cd\u09b2\u09bf\u0989 \u09ae\u09c7\u099f\u09cd\u09b0\u09bf\u0995 ."
-"-329.869 from this easily it can be understood that this \u09ae\u09c7\u099f\u09cd\u09b0\u09bf\u0995\u099f\u09bf will be \u098f\u09ab\u0986\u09b0\u09a1\u09ac\u09cd\u09b2\u09bf\u0989 \u09ae\u09c7\u099f\u09cd\u09b0\u09bf\u0995 ."
-"-330.539 from this can easily it can be understood that this \u09ae\u09c7\u099f\u09cd\u09b0\u09bf\u0995\u099f\u09bf would be \u098f\u09ab\u0986\u09b0\u09a1\u09ac\u09cd\u09b2\u09bf\u0989 \u09ae\u09c7\u099f\u09cd\u09b0\u09bf\u0995 ."
-"-330.631 from this can easily it can be understood that this \u09ae\u09c7\u099f\u09cd\u09b0\u09bf\u0995\u099f\u09bf will \u098f\u09ab\u0986\u09b0\u09a1\u09ac\u09cd\u09b2\u09bf\u0989 \u09ae\u09c7\u099f\u09cd\u09b0\u09bf\u0995 ."
-"-330.793 from this easily it can be understood that this \u09ae\u09c7\u099f\u09cd\u09b0\u09bf\u0995\u099f\u09bf would be \u098f\u09ab\u0986\u09b0\u09a1\u09ac\u09cd\u09b2\u09bf\u0989 \u09ae\u09c7\u099f\u09cd\u09b0\u09bf\u0995 ."
-"-330.878 from this can easily it can be understood that in this \u09ae\u09c7\u099f\u09cd\u09b0\u09bf\u0995\u099f\u09bf will be \u098f\u09ab\u0986\u09b0\u09a1\u09ac\u09cd\u09b2\u09bf\u0989 \u09ae\u09c7\u099f\u09cd\u09b0\u09bf\u0995 ."
-"-330.886 from this easily it can be understood that this \u09ae\u09c7\u099f\u09cd\u09b0\u09bf\u0995\u099f\u09bf will \u098f\u09ab\u0986\u09b0\u09a1\u09ac\u09cd\u09b2\u09bf\u0989 \u09ae\u09c7\u099f\u09cd\u09b0\u09bf\u0995 ."
-"-331.119 from this can easily it can be understood that these \u09ae\u09c7\u099f\u09cd\u09b0\u09bf\u0995\u099f\u09bf will be \u098f\u09ab\u0986\u09b0\u09a1\u09ac\u09cd\u09b2\u09bf\u0989 \u09ae\u09c7\u099f\u09cd\u09b0\u09bf\u0995 ."
-"-331.132 from this easily it can be understood that in this \u09ae\u09c7\u099f\u09cd\u09b0\u09bf\u0995\u099f\u09bf will be \u098f\u09ab\u0986\u09b0\u09a1\u09ac\u09cd\u09b2\u09bf\u0989 \u09ae\u09c7\u099f\u09cd\u09b0\u09bf\u0995 ."
-"-331.188 from this can easily it can be understood that the \u09ae\u09c7\u099f\u09cd\u09b0\u09bf\u0995\u099f\u09bf will be \u098f\u09ab\u0986\u09b0\u09a1\u09ac\u09cd\u09b2\u09bf\u0989 \u09ae\u09c7\u099f\u09cd\u09b0\u09bf\u0995 ."
-"-244.715 in the same with the earthcentered \u09b8\u09be\u09ae\u09a8\u09cd\u09a4\u09a4\u09a8\u09cd\u09a4\u09cd\u09b0\u09c7\u09b0 \u09aa\u09a4\u09a8\u09c7\u09b0 indication match from this novel ."
-"-244.892 in the same with the earthcentered \u09b8\u09be\u09ae\u09a8\u09cd\u09a4\u09a4\u09a8\u09cd\u09a4\u09cd\u09b0\u09c7\u09b0 \u09aa\u09a4\u09a8\u09c7\u09b0 indication match this novel from ."
-"-245.063 the same with the earthcentered \u09b8\u09be\u09ae\u09a8\u09cd\u09a4\u09a4\u09a8\u09cd\u09a4\u09cd\u09b0\u09c7\u09b0 \u09aa\u09a4\u09a8\u09c7\u09b0 indication match this novel from ."
-"-245.074 on the same with the earthcentered \u09b8\u09be\u09ae\u09a8\u09cd\u09a4\u09a4\u09a8\u09cd\u09a4\u09cd\u09b0\u09c7\u09b0 \u09aa\u09a4\u09a8\u09c7\u09b0 indication match this novel from ."
-"-245.208 in the same with the earthcentered \u09b8\u09be\u09ae\u09a8\u09cd\u09a4\u09a4\u09a8\u09cd\u09a4\u09cd\u09b0\u09c7\u09b0 \u09aa\u09a4\u09a8\u09c7\u09b0 presage match this novel from ."
-"-245.411 in the same with the earthcentered \u09b8\u09be\u09ae\u09a8\u09cd\u09a4\u09a4\u09a8\u09cd\u09a4\u09cd\u09b0\u09c7\u09b0 \u09aa\u09a4\u09a8\u09c7\u09b0 indication match in this novel from ."
-"-245.823 in the same time with the earthcentered \u09b8\u09be\u09ae\u09a8\u09cd\u09a4\u09a4\u09a8\u09cd\u09a4\u09cd\u09b0\u09c7\u09b0 \u09aa\u09a4\u09a8\u09c7\u09b0 indication match from this novel ."
-"-245.993 in the same with the earthcentered \u09b8\u09be\u09ae\u09a8\u09cd\u09a4\u09a4\u09a8\u09cd\u09a4\u09cd\u09b0\u09c7\u09b0 \u09aa\u09a4\u09a8\u09c7\u09b0 indication match this novel to ."
-"-246.000 in the same time with the earthcentered \u09b8\u09be\u09ae\u09a8\u09cd\u09a4\u09a4\u09a8\u09cd\u09a4\u09cd\u09b0\u09c7\u09b0 \u09aa\u09a4\u09a8\u09c7\u09b0 indication match this novel from ."
-"-246.051 in the same with the earthcentered \u09b8\u09be\u09ae\u09a8\u09cd\u09a4\u09a4\u09a8\u09cd\u09a4\u09cd\u09b0\u09c7\u09b0 \u09aa\u09a4\u09a8\u09c7\u09b0 indication match this novel from the ."
-"-222.050 \u09a8\u09bf\u09b0\u09cd\u09ac\u099a\u09a8\u09c7 mujib and his party \u09a8\u09bf\u09b0\u0999\u09cd\u0995\u09c1\u09b7 majority in the ."
-"-223.836 \u09a8\u09bf\u09b0\u09cd\u09ac\u099a\u09a8\u09c7 mujib and his party \u09a8\u09bf\u09b0\u0999\u09cd\u0995\u09c1\u09b7 majority in ."
-"-224.380 \u09a8\u09bf\u09b0\u09cd\u09ac\u099a\u09a8\u09c7 mujib and his party \u09a8\u09bf\u09b0\u0999\u09cd\u0995\u09c1\u09b7 majority , in the ."
-"-224.789 \u09a8\u09bf\u09b0\u09cd\u09ac\u099a\u09a8\u09c7 mujib and his party \u09a8\u09bf\u09b0\u0999\u09cd\u0995\u09c1\u09b7 majority in the goods ."
-"-224.989 \u09a8\u09bf\u09b0\u09cd\u09ac\u099a\u09a8\u09c7 seikh mujib and his party \u09a8\u09bf\u09b0\u0999\u09cd\u0995\u09c1\u09b7 majority in the ."
-"-224.991 \u09a8\u09bf\u09b0\u09cd\u09ac\u099a\u09a8\u09c7 mujib and his party \u09a8\u09bf\u09b0\u0999\u09cd\u0995\u09c1\u09b7 majority in the . ."
-"-225.383 \u09a8\u09bf\u09b0\u09cd\u09ac\u099a\u09a8\u09c7 mujib and his party \u09a8\u09bf\u09b0\u0999\u09cd\u0995\u09c1\u09b7 majority in the of ."
-"-225.396 \u09a8\u09bf\u09b0\u09cd\u09ac\u099a\u09a8\u09c7 mujib and his party \u09a8\u09bf\u09b0\u0999\u09cd\u0995\u09c1\u09b7 majority in the , ."
-"-439.395 \u09b9\u09bf\u099f\u09b2\u09be\u09b0\u0993 \u09ac\u09be\u09ad\u09be\u09b0\u09bf\u09af\u09bc\u09be\u09b0 \u09ae\u09bf\u0989\u09a8\u09bf\u0996 \u09b6\u09b9\u09b0\u09c7\u0987 his work with to that ."
-"-439.526 \u09b9\u09bf\u099f\u09b2\u09be\u09b0\u0993 \u09ac\u09be\u09ad\u09be\u09b0\u09bf\u09af\u09bc\u09be\u09b0 \u09ae\u09bf\u0989\u09a8\u09bf\u0996 \u09b6\u09b9\u09b0\u09c7\u0987 his work with can and pajama ."
-"-440.155 \u09b9\u09bf\u099f\u09b2\u09be\u09b0\u0993 \u09ac\u09be\u09ad\u09be\u09b0\u09bf\u09af\u09bc\u09be\u09b0 \u09ae\u09bf\u0989\u09a8\u09bf\u0996 \u09b6\u09b9\u09b0\u09c7\u0987 his work with to and pajama ."
-"-440.188 \u09b9\u09bf\u099f\u09b2\u09be\u09b0\u0993 \u09ac\u09be\u09ad\u09be\u09b0\u09bf\u09af\u09bc\u09be\u09b0 \u09ae\u09bf\u0989\u09a8\u09bf\u0996 \u09b6\u09b9\u09b0\u09c7\u0987 his work with can that ."
-"-440.260 \u09b9\u09bf\u099f\u09b2\u09be\u09b0\u0993 \u09ac\u09be\u09ad\u09be\u09b0\u09bf\u09af\u09bc\u09be\u09b0 \u09ae\u09bf\u0989\u09a8\u09bf\u0996 \u09b6\u09b9\u09b0\u09c7\u0987 of his work with to that ."
-"-440.280 \u09b9\u09bf\u099f\u09b2\u09be\u09b0\u0993 \u09ac\u09be\u09ad\u09be\u09b0\u09bf\u09af\u09bc\u09be\u09b0 \u09ae\u09bf\u0989\u09a8\u09bf\u0996 \u09b6\u09b9\u09b0\u09c7\u0987 his works with to that ."
-"-440.347 \u09b9\u09bf\u099f\u09b2\u09be\u09b0\u0993 \u09ac\u09be\u09ad\u09be\u09b0\u09bf\u09af\u09bc\u09be\u09b0 \u09ae\u09bf\u0989\u09a8\u09bf\u0996 \u09b6\u09b9\u09b0\u09c7\u0987 in his work with to that ."
-"-440.391 \u09b9\u09bf\u099f\u09b2\u09be\u09b0\u0993 \u09ac\u09be\u09ad\u09be\u09b0\u09bf\u09af\u09bc\u09be\u09b0 \u09ae\u09bf\u0989\u09a8\u09bf\u0996 \u09b6\u09b9\u09b0\u09c7\u0987 of his work with can and pajama ."
-"-440.410 \u09b9\u09bf\u099f\u09b2\u09be\u09b0\u0993 \u09ac\u09be\u09ad\u09be\u09b0\u09bf\u09af\u09bc\u09be\u09b0 \u09ae\u09bf\u0989\u09a8\u09bf\u0996 \u09b6\u09b9\u09b0\u09c7\u0987 his works with can and pajama ."
-"-440.477 \u09b9\u09bf\u099f\u09b2\u09be\u09b0\u0993 \u09ac\u09be\u09ad\u09be\u09b0\u09bf\u09af\u09bc\u09be\u09b0 \u09ae\u09bf\u0989\u09a8\u09bf\u0996 \u09b6\u09b9\u09b0\u09c7\u0987 in his work with can and pajama ."
-"-252.878 task apart from \u0993\u098f\u09b8-\u099f\u09cd\u09af\u09be\u09a8 and also some linux \u09aa\u09cd\u09b0\u09a4\u09bf\u09a8\u09bf\u09a7\u09bf\u09a4\u09cd\u09ac\u0995\u09be\u09b0\u09c0 character is , but these are very is not ."
-"-252.999 task apart from \u0993\u098f\u09b8-\u099f\u09cd\u09af\u09be\u09a8 and also some linux \u09aa\u09cd\u09b0\u09a4\u09bf\u09a8\u09bf\u09a7\u09bf\u09a4\u09cd\u09ac\u0995\u09be\u09b0\u09c0 character there are , but these are very is not ."
-"-253.123 task other than \u0993\u098f\u09b8-\u099f\u09cd\u09af\u09be\u09a8 and also some linux \u09aa\u09cd\u09b0\u09a4\u09bf\u09a8\u09bf\u09a7\u09bf\u09a4\u09cd\u09ac\u0995\u09be\u09b0\u09c0 character is , but these are very is not ."
-"-253.207 task apart from \u0993\u098f\u09b8-\u099f\u09cd\u09af\u09be\u09a8 and also some linux \u09aa\u09cd\u09b0\u09a4\u09bf\u09a8\u09bf\u09a7\u09bf\u09a4\u09cd\u09ac\u0995\u09be\u09b0\u09c0 character are , but these are very is not ."
-"-253.244 task other than \u0993\u098f\u09b8-\u099f\u09cd\u09af\u09be\u09a8 and also some linux \u09aa\u09cd\u09b0\u09a4\u09bf\u09a8\u09bf\u09a7\u09bf\u09a4\u09cd\u09ac\u0995\u09be\u09b0\u09c0 character there are , but these are very is not ."
-"-253.351 task apart from \u0993\u098f\u09b8-\u099f\u09cd\u09af\u09be\u09a8 and also some linux \u09aa\u09cd\u09b0\u09a4\u09bf\u09a8\u09bf\u09a7\u09bf\u09a4\u09cd\u09ac\u0995\u09be\u09b0\u09c0 character there is , but these are very is not ."
-"-253.526 task apart from \u0993\u098f\u09b8-\u099f\u09cd\u09af\u09be\u09a8 and also some of linux \u09aa\u09cd\u09b0\u09a4\u09bf\u09a8\u09bf\u09a7\u09bf\u09a4\u09cd\u09ac\u0995\u09be\u09b0\u09c0 character is , but these are very is not ."
-"-253.999 task apart from \u0993\u098f\u09b8-\u099f\u09cd\u09af\u09be\u09a8 and also some of linux \u09aa\u09cd\u09b0\u09a4\u09bf\u09a8\u09bf\u09a7\u09bf\u09a4\u09cd\u09ac\u0995\u09be\u09b0\u09c0 character there is , but these are very is not ."
-"-254.604 task apart from \u0993\u098f\u09b8-\u099f\u09cd\u09af\u09be\u09a8 and also some linux \u09aa\u09cd\u09b0\u09a4\u09bf\u09a8\u09bf\u09a7\u09bf\u09a4\u09cd\u09ac\u0995\u09be\u09b0\u09c0 character is , but these are very common not ."
-"-254.725 task apart from \u0993\u098f\u09b8-\u099f\u09cd\u09af\u09be\u09a8 and also some linux \u09aa\u09cd\u09b0\u09a4\u09bf\u09a8\u09bf\u09a7\u09bf\u09a4\u09cd\u09ac\u0995\u09be\u09b0\u09c0 character there are , but these are very common not ."
-"-264.205 it social situation in \u09b8\u09bf\u09a6\u09cd\u09a7\u09be\u09a8\u09cd\u09a4\u0997\u09cd\u09b0\u09b9\u09a8\u0995\u09be\u09b0\u09c0 his oppositions with \u0995\u09cd\u09b0\u09c0\u09a1\u09bc\u09be\u0995\u09cd\u09b7\u09c7\u09a4\u09cd\u09b0\u09c7 decision making the rule of the vagina ."
-"-264.435 it social situation in \u09b8\u09bf\u09a6\u09cd\u09a7\u09be\u09a8\u09cd\u09a4\u0997\u09cd\u09b0\u09b9\u09a8\u0995\u09be\u09b0\u09c0 his oppositions with the \u0995\u09cd\u09b0\u09c0\u09a1\u09bc\u09be\u0995\u09cd\u09b7\u09c7\u09a4\u09cd\u09b0\u09c7 decision making the rule of the vagina ."
-"-264.473 it social situation in view \u09b8\u09bf\u09a6\u09cd\u09a7\u09be\u09a8\u09cd\u09a4\u0997\u09cd\u09b0\u09b9\u09a8\u0995\u09be\u09b0\u09c0 his oppositions with \u0995\u09cd\u09b0\u09c0\u09a1\u09bc\u09be\u0995\u09cd\u09b7\u09c7\u09a4\u09cd\u09b0\u09c7 decision making the rule of the vagina ."
-"-264.567 it social situation in view of \u09b8\u09bf\u09a6\u09cd\u09a7\u09be\u09a8\u09cd\u09a4\u0997\u09cd\u09b0\u09b9\u09a8\u0995\u09be\u09b0\u09c0 his oppositions with \u0995\u09cd\u09b0\u09c0\u09a1\u09bc\u09be\u0995\u09cd\u09b7\u09c7\u09a4\u09cd\u09b0\u09c7 decision making the rule of the vagina ."
-"-264.703 it social situation in view \u09b8\u09bf\u09a6\u09cd\u09a7\u09be\u09a8\u09cd\u09a4\u0997\u09cd\u09b0\u09b9\u09a8\u0995\u09be\u09b0\u09c0 his oppositions with the \u0995\u09cd\u09b0\u09c0\u09a1\u09bc\u09be\u0995\u09cd\u09b7\u09c7\u09a4\u09cd\u09b0\u09c7 decision making the rule of the vagina ."
-"-264.755 this social situation in \u09b8\u09bf\u09a6\u09cd\u09a7\u09be\u09a8\u09cd\u09a4\u0997\u09cd\u09b0\u09b9\u09a8\u0995\u09be\u09b0\u09c0 his oppositions with \u0995\u09cd\u09b0\u09c0\u09a1\u09bc\u09be\u0995\u09cd\u09b7\u09c7\u09a4\u09cd\u09b0\u09c7 decision making the rule of the vagina ."
-"-264.796 it social situation in view of \u09b8\u09bf\u09a6\u09cd\u09a7\u09be\u09a8\u09cd\u09a4\u0997\u09cd\u09b0\u09b9\u09a8\u0995\u09be\u09b0\u09c0 his oppositions with the \u0995\u09cd\u09b0\u09c0\u09a1\u09bc\u09be\u0995\u09cd\u09b7\u09c7\u09a4\u09cd\u09b0\u09c7 decision making the rule of the vagina ."
-"-264.875 it social situation in \u09b8\u09bf\u09a6\u09cd\u09a7\u09be\u09a8\u09cd\u09a4\u0997\u09cd\u09b0\u09b9\u09a8\u0995\u09be\u09b0\u09c0 his oppositions with \u0995\u09cd\u09b0\u09c0\u09a1\u09bc\u09be\u0995\u09cd\u09b7\u09c7\u09a4\u09cd\u09b0\u09c7 decision making the rule of the in the ."
-"-264.985 this social situation in \u09b8\u09bf\u09a6\u09cd\u09a7\u09be\u09a8\u09cd\u09a4\u0997\u09cd\u09b0\u09b9\u09a8\u0995\u09be\u09b0\u09c0 his oppositions with the \u0995\u09cd\u09b0\u09c0\u09a1\u09bc\u09be\u0995\u09cd\u09b7\u09c7\u09a4\u09cd\u09b0\u09c7 decision making the rule of the vagina ."
-"-264.988 it social situation in \u09b8\u09bf\u09a6\u09cd\u09a7\u09be\u09a8\u09cd\u09a4\u0997\u09cd\u09b0\u09b9\u09a8\u0995\u09be\u09b0\u09c0 his oppositions with \u0995\u09cd\u09b0\u09c0\u09a1\u09bc\u09be\u0995\u09cd\u09b7\u09c7\u09a4\u09cd\u09b0\u09c7 decision making the rules of the vagina ."
-"-324.551 \u09ac\u09c3\u09b7\u09cd\u099f\u09bf\u09aa\u09be\u09a4\u0983 annual \u09e8\u09eb\u09ea\u09e6 \u09ae\u09bf\u09b2\u09bf meter"
-"-324.635 \u09ac\u09c3\u09b7\u09cd\u099f\u09bf\u09aa\u09be\u09a4\u0983 arrange \u09e8\u09eb\u09ea\u09e6 \u09ae\u09bf\u09b2\u09bf meter"
-"-324.722 \u09ac\u09c3\u09b7\u09cd\u099f\u09bf\u09aa\u09be\u09a4\u0983 annual \u09e8\u09eb\u09ea\u09e6 \u09ae\u09bf\u09b2\u09bf meters"
-"-324.806 \u09ac\u09c3\u09b7\u09cd\u099f\u09bf\u09aa\u09be\u09a4\u0983 arrange \u09e8\u09eb\u09ea\u09e6 \u09ae\u09bf\u09b2\u09bf meters"
-"-326.046 \u09ac\u09c3\u09b7\u09cd\u099f\u09bf\u09aa\u09be\u09a4\u0983 annual \u09e8\u09eb\u09ea\u09e6 \u09ae\u09bf\u09b2\u09bf metres"
-"-326.131 \u09ac\u09c3\u09b7\u09cd\u099f\u09bf\u09aa\u09be\u09a4\u0983 arrange \u09e8\u09eb\u09ea\u09e6 \u09ae\u09bf\u09b2\u09bf metres"
-"-327.121 \u09ac\u09c3\u09b7\u09cd\u099f\u09bf\u09aa\u09be\u09a4\u0983 annual \u09e8\u09eb\u09ea\u09e6 \u09ae\u09bf\u09b2\u09bf above"
-"-327.206 \u09ac\u09c3\u09b7\u09cd\u099f\u09bf\u09aa\u09be\u09a4\u0983 arrange \u09e8\u09eb\u09ea\u09e6 \u09ae\u09bf\u09b2\u09bf above"
-"-675.013 in 2004 \u09ae\u09cd\u09af\u09be\u09b8\u09be\u099a\u09c1\u09b8\u09c7\u099f\u09b8 \u0985\u0999\u09cd\u0997\u09b0\u09be\u099c\u09cd\u09af\u09c7\u09b0 \u09ac\u09b8\u09cd\u099f\u09a8 in the city in \u09a1\u09c7\u09ae\u09cb\u0995\u09cd\u09b0\u09cd\u09af\u09be\u099f as the national conference was he main speech -lrb- keynote speech -rrb- on the ."
-"-675.262 in 2004 \u09ae\u09cd\u09af\u09be\u09b8\u09be\u099a\u09c1\u09b8\u09c7\u099f\u09b8 \u0985\u0999\u09cd\u0997\u09b0\u09be\u099c\u09cd\u09af\u09c7\u09b0 \u09ac\u09b8\u09cd\u099f\u09a8 in the city in \u09a1\u09c7\u09ae\u09cb\u0995\u09cd\u09b0\u09cd\u09af\u09be\u099f as the national conference was he main speech -lrb- keynote speech -rrb- to the ."
-"-675.282 in 2004 \u09ae\u09cd\u09af\u09be\u09b8\u09be\u099a\u09c1\u09b8\u09c7\u099f\u09b8 \u0985\u0999\u09cd\u0997\u09b0\u09be\u099c\u09cd\u09af\u09c7\u09b0 \u09ac\u09b8\u09cd\u099f\u09a8 in the city in \u09a1\u09c7\u09ae\u09cb\u0995\u09cd\u09b0\u09cd\u09af\u09be\u099f the national conference was he main speech -lrb- keynote speech -rrb- on the ."
-"-675.530 in 2004 \u09ae\u09cd\u09af\u09be\u09b8\u09be\u099a\u09c1\u09b8\u09c7\u099f\u09b8 \u0985\u0999\u09cd\u0997\u09b0\u09be\u099c\u09cd\u09af\u09c7\u09b0 \u09ac\u09b8\u09cd\u099f\u09a8 in the city in \u09a1\u09c7\u09ae\u09cb\u0995\u09cd\u09b0\u09cd\u09af\u09be\u099f the national conference was he main speech -lrb- keynote speech -rrb- to the ."
-"-675.766 in 2004 \u09ae\u09cd\u09af\u09be\u09b8\u09be\u099a\u09c1\u09b8\u09c7\u099f\u09b8 \u0985\u0999\u09cd\u0997\u09b0\u09be\u099c\u09cd\u09af\u09c7\u09b0 \u09ac\u09b8\u09cd\u099f\u09a8 in the city in \u09a1\u09c7\u09ae\u09cb\u0995\u09cd\u09b0\u09cd\u09af\u09be\u099f as the national conference was he the speech -lrb- keynote speech -rrb- on the ."
-"-675.800 in 2004 \u09ae\u09cd\u09af\u09be\u09b8\u09be\u099a\u09c1\u09b8\u09c7\u099f\u09b8 \u0985\u0999\u09cd\u0997\u09b0\u09be\u099c\u09cd\u09af\u09c7\u09b0 \u09ac\u09b8\u09cd\u099f\u09a8 in the city in \u09a1\u09c7\u09ae\u09cb\u0995\u09cd\u09b0\u09cd\u09af\u09be\u099f as the national conference was he main speech -lrb- keynote speech -rrb- , the ."
-"-675.864 in 2004 \u09ae\u09cd\u09af\u09be\u09b8\u09be\u099a\u09c1\u09b8\u09c7\u099f\u09b8 \u0985\u0999\u09cd\u0997\u09b0\u09be\u099c\u09cd\u09af\u09c7\u09b0 \u09ac\u09b8\u09cd\u099f\u09a8 in the city in \u09a1\u09c7\u09ae\u09cb\u0995\u09cd\u09b0\u09cd\u09af\u09be\u099f party national conference was he main speech -lrb- keynote speech -rrb- on the ."
-"-675.940 in 2004 \u09ae\u09cd\u09af\u09be\u09b8\u09be\u099a\u09c1\u09b8\u09c7\u099f\u09b8 \u0985\u0999\u09cd\u0997\u09b0\u09be\u099c\u09cd\u09af\u09c7\u09b0 \u09ac\u09b8\u09cd\u099f\u09a8 in the city in \u09a1\u09c7\u09ae\u09cb\u0995\u09cd\u09b0\u09cd\u09af\u09be\u099f as the national conference was he the main speech -lrb- keynote speech -rrb- on the ."
-"-676.015 in 2004 \u09ae\u09cd\u09af\u09be\u09b8\u09be\u099a\u09c1\u09b8\u09c7\u099f\u09b8 \u0985\u0999\u09cd\u0997\u09b0\u09be\u099c\u09cd\u09af\u09c7\u09b0 \u09ac\u09b8\u09cd\u099f\u09a8 in the city in \u09a1\u09c7\u09ae\u09cb\u0995\u09cd\u09b0\u09cd\u09af\u09be\u099f as the national conference was he the speech -lrb- keynote speech -rrb- to the ."
-"-676.035 in 2004 \u09ae\u09cd\u09af\u09be\u09b8\u09be\u099a\u09c1\u09b8\u09c7\u099f\u09b8 \u0985\u0999\u09cd\u0997\u09b0\u09be\u099c\u09cd\u09af\u09c7\u09b0 \u09ac\u09b8\u09cd\u099f\u09a8 in the city in \u09a1\u09c7\u09ae\u09cb\u0995\u09cd\u09b0\u09cd\u09af\u09be\u099f the national conference was he the speech -lrb- keynote speech -rrb- on the ."
-"-199.719 population on the power distribution of east pakistan where due to the west pakistan " one unit theory , " is a \u0985\u09ad\u09bf\u09a8\u09ac they started to the , where the whole of west pakistan is a province considered as the ."
-"-199.743 population on the power distribution of east pakistan where due to the west pakistan " one unit theory , " is a \u0985\u09ad\u09bf\u09a8\u09ac they started to the , where the whole of west pakistan a province considered as the ."
-"-199.975 population on the power distribution of east pakistan where due to the west pakistan " one unit theory " is a \u0985\u09ad\u09bf\u09a8\u09ac they started to the , where the whole of west pakistan is a province considered as the ."
-"-199.999 population on the power distribution of east pakistan where due to the west pakistan " one unit theory " is a \u0985\u09ad\u09bf\u09a8\u09ac they started to the , where the whole of west pakistan a province considered as the ."
-"-200.182 population on the power distribution of east pakistan where due to the west pakistan " one unit theory , " is a \u0985\u09ad\u09bf\u09a8\u09ac they started to the , where the west pakistan is a province considered as the ."
-"-200.206 population on the power distribution of east pakistan where due to the west pakistan " one unit theory , " is a \u0985\u09ad\u09bf\u09a8\u09ac they started to the , where the west pakistan a province considered as the ."
-"-200.259 population based on this distribution of east pakistan where due to the west pakistan " one unit theory , " is a \u0985\u09ad\u09bf\u09a8\u09ac they started to the , where the west pakistan is a province considered as the ."
-"-200.280 population on the power distribution of east pakistan where due to the west pakistan , " one unit theory , " is a \u0985\u09ad\u09bf\u09a8\u09ac they started to the , where the whole of west pakistan is a province considered as the ."
-"-200.283 population based on this distribution of east pakistan where due to the west pakistan " one unit theory , " is a \u0985\u09ad\u09bf\u09a8\u09ac they started to the , where the west pakistan a province considered as the ."
-"-200.304 population on the power distribution of east pakistan where due to the west pakistan , " one unit theory , " is a \u0985\u09ad\u09bf\u09a8\u09ac they started to the , where the whole of west pakistan a province considered as the ."
-"-113.022 the \u09aa\u09b0\u09bf\u09ae\u09be\u09aa\u09a8 theory"
-"-113.373 mathematical \u09aa\u09b0\u09bf\u09ae\u09be\u09aa\u09a8 theory"
-"-113.486 \u2022 \u09aa\u09b0\u09bf\u09ae\u09be\u09aa\u09a8 theory"
-"-115.266 the \u09aa\u09b0\u09bf\u09ae\u09be\u09aa\u09a8 theory of"
-"-115.559 the theory of \u09aa\u09b0\u09bf\u09ae\u09be\u09aa\u09a8"
-"-115.616 mathematical \u09aa\u09b0\u09bf\u09ae\u09be\u09aa\u09a8 theory of"
-"-115.729 \u2022 \u09aa\u09b0\u09bf\u09ae\u09be\u09aa\u09a8 theory of"
-"-117.032 the \u09aa\u09b0\u09bf\u09ae\u09be\u09aa\u09a8 is"
-"-6.764 external links of"
-"-7.040 relation with outside of"
-"-7.543 external link of"
-"-7.776 external communication of"
-"-8.099 external connections of"
-"-8.379 external connection of"
-"-8.600 external link by"
-"-8.928 external communication by"
-"-9.099 external links by"
-"-9.281 external connections by"
-"-159.669 tata communication foreign this \u09a8\u09bf\u0997\u09ae limited building , it is the telecommunication system is a is one of the main providers"
-"-159.792 tata communicationer foreign this \u09a8\u09bf\u0997\u09ae limited building , it is the telecommunication system is a is one of the main providers"
-"-160.578 tata communication foreign this \u09a8\u09bf\u0997\u09ae limited building , it is the city telecommunication system is a is one of the main providers"
-"-160.606 tata communication foreign this \u09a8\u09bf\u0997\u09ae limited building , it is in the telecommunication system is a is one of the main providers"
-"-160.701 tata communicationer foreign this \u09a8\u09bf\u0997\u09ae limited building , it is the city telecommunication system is a is one of the main providers"
-"-161.029 tata communication foreign this \u09a8\u09bf\u0997\u09ae limited building , it is the telecommunication system is a one of the main providers"
-"-161.034 tata communication foreign this \u09a8\u09bf\u0997\u09ae limited building , it is in the city telecommunication system is a is one of the main providers"
-"-161.049 tata communication foreign this \u09a8\u09bf\u0997\u09ae limited building , it is the telecommunication system of a is one of the main providers"
-"-161.152 tata communicationer foreign this \u09a8\u09bf\u0997\u09ae limited building , it is the telecommunication system is a one of the main providers"
-"-161.157 tata communicationer foreign this \u09a8\u09bf\u0997\u09ae limited building , it is in the city telecommunication system is a is one of the main providers"
-"-342.060 he that year \u09ea\u0987 \u09a8\u09ad\u09c7\u09ae\u09cd\u09ac\u09b0\u09c7\u09b0 national election \u099c\u09af\u09bc\u09c0 in and was elected as the 44th president of the united states ."
-"-342.499 he that year \u09ea\u0987 \u09a8\u09ad\u09c7\u09ae\u09cd\u09ac\u09b0\u09c7\u09b0 national election \u099c\u09af\u09bc\u09c0 in and the 44th president of the united states was elected as ."
-"-342.884 he that year \u09ea\u0987 \u09a8\u09ad\u09c7\u09ae\u09cd\u09ac\u09b0\u09c7\u09b0 national election \u099c\u09af\u09bc\u09c0 in and the 44th president of the united states elected as ."
-"-343.137 he that year \u09ea\u0987 \u09a8\u09ad\u09c7\u09ae\u09cd\u09ac\u09b0\u09c7\u09b0 national election \u099c\u09af\u09bc\u09c0 in the 44th president of the united states and was elected as ."
-"-343.290 he that year \u09ea\u0987 \u09a8\u09ad\u09c7\u09ae\u09cd\u09ac\u09b0\u09c7\u09b0 national election \u099c\u09af\u09bc\u09c0 was and the 44th president of the united states was elected as ."
-"-343.354 he in that year \u09ea\u0987 \u09a8\u09ad\u09c7\u09ae\u09cd\u09ac\u09b0\u09c7\u09b0 national election \u099c\u09af\u09bc\u09c0 in and the 44th president of the united states was elected as ."
-"-343.597 he that year \u09ea\u0987 \u09a8\u09ad\u09c7\u09ae\u09cd\u09ac\u09b0\u09c7\u09b0 national election \u099c\u09af\u09bc\u09c0 to and the 44th president of the united states was elected as ."
-"-343.600 he that year \u09ea\u0987 \u09a8\u09ad\u09c7\u09ae\u09cd\u09ac\u09b0\u09c7\u09b0 national election \u099c\u09af\u09bc\u09c0 was and was elected as the 44th president of the united states ."
-"-343.619 he that year \u09ea\u0987 \u09a8\u09ad\u09c7\u09ae\u09cd\u09ac\u09b0\u09c7\u09b0 national election \u099c\u09af\u09bc\u09c0 the and the 44th president of the united states was elected as ."
-"-343.622 he that year \u09ea\u0987 \u09a8\u09ad\u09c7\u09ae\u09cd\u09ac\u09b0\u09c7\u09b0 of national election \u099c\u09af\u09bc\u09c0 in and was elected as the 44th president of the united states ."
-"-337.568 many of the indian \u09aa\u09cd\u09b0\u099c\u09be\u09a4\u09bf fighting \u099c\u09be\u09a4 \u099f\u09c7\u0995\u09cd\u09b8\u09be from the upper stage"
-"-337.736 many of the indian \u09aa\u09cd\u09b0\u099c\u09be\u09a4\u09bf fighting \u099c\u09be\u09a4 \u099f\u09c7\u0995\u09cd\u09b8\u09be from upper stage"
-"-338.457 many indian \u09aa\u09cd\u09b0\u099c\u09be\u09a4\u09bf fighting \u099c\u09be\u09a4 \u099f\u09c7\u0995\u09cd\u09b8\u09be from the upper stage"
-"-338.537 many of the \u09aa\u09cd\u09b0\u099c\u09be\u09a4\u09bf fighting \u099c\u09be\u09a4 \u099f\u09c7\u0995\u09cd\u09b8\u09be from the upper stage"
-"-338.625 many indian \u09aa\u09cd\u09b0\u099c\u09be\u09a4\u09bf fighting \u099c\u09be\u09a4 \u099f\u09c7\u0995\u09cd\u09b8\u09be from upper stage"
-"-338.705 many of the \u09aa\u09cd\u09b0\u099c\u09be\u09a4\u09bf fighting \u099c\u09be\u09a4 \u099f\u09c7\u0995\u09cd\u09b8\u09be from upper stage"
-"-338.832 many of the indian \u09aa\u09cd\u09b0\u099c\u09be\u09a4\u09bf fighting \u099c\u09be\u09a4 \u099f\u09c7\u0995\u09cd\u09b8\u09be to upper stage"
-"-339.032 many of indian \u09aa\u09cd\u09b0\u099c\u09be\u09a4\u09bf fighting \u099c\u09be\u09a4 \u099f\u09c7\u0995\u09cd\u09b8\u09be from upper stage"
-"-339.800 many of the \u09aa\u09cd\u09b0\u099c\u09be\u09a4\u09bf fighting \u099c\u09be\u09a4 \u099f\u09c7\u0995\u09cd\u09b8\u09be to upper stage"
-"-144.560 britain writers written drama , novels , stories and recently scripts in the \u0986\u09a6\u09c3\u09a4 ."
-"-144.892 britain writers written drama , novels , stories and recently scripts in \u0986\u09a6\u09c3\u09a4 ."
-"-144.986 britain writers written drama , novels , stories and recently script in the \u0986\u09a6\u09c3\u09a4 ."
-"-145.290 britain writers written drama , novels , stories and in the recent scripts in the \u0986\u09a6\u09c3\u09a4 ."
-"-145.319 britain writers of written drama , novels , stories and recently scripts in the \u0986\u09a6\u09c3\u09a4 ."
-"-145.319 britain writers written drama , novels , stories and recently script in \u0986\u09a6\u09c3\u09a4 ."
-"-145.402 britain writers of the drama , novels , stories and recently scripts in the \u0986\u09a6\u09c3\u09a4 ."
-"-145.623 britain writers written drama , novels , stories and in the recent scripts in \u0986\u09a6\u09c3\u09a4 ."
-"-145.651 britain writers of written drama , novels , stories and recently scripts in \u0986\u09a6\u09c3\u09a4 ."
-"-145.717 britain writers written drama , novels , stories and in the recent script in the \u0986\u09a6\u09c3\u09a4 ."
-"-29.082 1919 , on may month it saogat magazine was published in the ."
-"-29.173 1919 on may month it saogat magazine was published in the ."
-"-29.196 1919 , on may month it saogat magazine was published ."
-"-29.287 1919 on may month it saogat magazine was published ."
-"-29.459 1919 , on may month it is saogat magazine was published in the ."
-"-29.550 1919 on may month it is saogat magazine was published in the ."
-"-29.572 1919 , on may month it is saogat magazine was published ."
-"-29.663 1919 on may month it is saogat magazine was published ."
-"-29.879 1919 , on may month it saogat magazine was published in ."
-"-29.971 1919 on may month it saogat magazine was published in ."
-"-460.093 in 2005 , \u0989\u0987\u09ae\u09c7\u09a8\u09b8 tennis association tour \u099f\u09be\u09af\u09bc\u09be\u09b0-\u09a5\u09cd\u09b0\u09bf \u099f\u09c1\u09b0\u09cd\u09a8\u09be\u09ae\u09c7\u09a8\u09cd\u099f \u09b8\u09be\u09a8\u09ab\u09bf\u09b8\u09cd\u099f open netaji indoor stadium was arranged ."
-"-460.244 2005 , \u0989\u0987\u09ae\u09c7\u09a8\u09b8 tennis association tour \u099f\u09be\u09af\u09bc\u09be\u09b0-\u09a5\u09cd\u09b0\u09bf \u099f\u09c1\u09b0\u09cd\u09a8\u09be\u09ae\u09c7\u09a8\u09cd\u099f \u09b8\u09be\u09a8\u09ab\u09bf\u09b8\u09cd\u099f open netaji indoor stadium was arranged ."
-"-460.557 in year 2005 \u0989\u0987\u09ae\u09c7\u09a8\u09b8 tennis association tour \u099f\u09be\u09af\u09bc\u09be\u09b0-\u09a5\u09cd\u09b0\u09bf \u099f\u09c1\u09b0\u09cd\u09a8\u09be\u09ae\u09c7\u09a8\u09cd\u099f \u09b8\u09be\u09a8\u09ab\u09bf\u09b8\u09cd\u099f open netaji indoor stadium was arranged ."
-"-460.712 in 2005 , \u0989\u0987\u09ae\u09c7\u09a8\u09b8 tennis association of the tour \u099f\u09be\u09af\u09bc\u09be\u09b0-\u09a5\u09cd\u09b0\u09bf \u099f\u09c1\u09b0\u09cd\u09a8\u09be\u09ae\u09c7\u09a8\u09cd\u099f \u09b8\u09be\u09a8\u09ab\u09bf\u09b8\u09cd\u099f open netaji indoor stadium was arranged ."
-"-460.863 2005 , \u0989\u0987\u09ae\u09c7\u09a8\u09b8 tennis association of the tour \u099f\u09be\u09af\u09bc\u09be\u09b0-\u09a5\u09cd\u09b0\u09bf \u099f\u09c1\u09b0\u09cd\u09a8\u09be\u09ae\u09c7\u09a8\u09cd\u099f \u09b8\u09be\u09a8\u09ab\u09bf\u09b8\u09cd\u099f open netaji indoor stadium was arranged ."
-"-461.115 in 2005 , \u0989\u0987\u09ae\u09c7\u09a8\u09b8 tennis association tour \u099f\u09be\u09af\u09bc\u09be\u09b0-\u09a5\u09cd\u09b0\u09bf \u099f\u09c1\u09b0\u09cd\u09a8\u09be\u09ae\u09c7\u09a8\u09cd\u099f \u09b8\u09be\u09a8\u09ab\u09bf\u09b8\u09cd\u099f open netaji indoor stadium is the ."
-"-461.266 2005 , \u0989\u0987\u09ae\u09c7\u09a8\u09b8 tennis association tour \u099f\u09be\u09af\u09bc\u09be\u09b0-\u09a5\u09cd\u09b0\u09bf \u099f\u09c1\u09b0\u09cd\u09a8\u09be\u09ae\u09c7\u09a8\u09cd\u099f \u09b8\u09be\u09a8\u09ab\u09bf\u09b8\u09cd\u099f open netaji indoor stadium is the ."
-"-461.734 in 2005 , \u0989\u0987\u09ae\u09c7\u09a8\u09b8 tennis association of the tour \u099f\u09be\u09af\u09bc\u09be\u09b0-\u09a5\u09cd\u09b0\u09bf \u099f\u09c1\u09b0\u09cd\u09a8\u09be\u09ae\u09c7\u09a8\u09cd\u099f \u09b8\u09be\u09a8\u09ab\u09bf\u09b8\u09cd\u099f open netaji indoor stadium is the ."
-"-461.872 in 2005 , \u0989\u0987\u09ae\u09c7\u09a8\u09b8 tennis association tour \u099f\u09be\u09af\u09bc\u09be\u09b0-\u09a5\u09cd\u09b0\u09bf \u099f\u09c1\u09b0\u09cd\u09a8\u09be\u09ae\u09c7\u09a8\u09cd\u099f \u09b8\u09be\u09a8\u09ab\u09bf\u09b8\u09cd\u099f open netaji indoor stadium arranged in the ."
-"-461.885 2005 , \u0989\u0987\u09ae\u09c7\u09a8\u09b8 tennis association of the tour \u099f\u09be\u09af\u09bc\u09be\u09b0-\u09a5\u09cd\u09b0\u09bf \u099f\u09c1\u09b0\u09cd\u09a8\u09be\u09ae\u09c7\u09a8\u09cd\u099f \u09b8\u09be\u09a8\u09ab\u09bf\u09b8\u09cd\u099f open netaji indoor stadium is the ."
-"-21.333 to prevent this several measures are taken ."
-"-23.640 to prevent this several measures are in the ."
-"-23.669 to prevent this several measures are the ."
-"-23.707 to prevent this several measures are ."
-"-24.099 to prevent this several measures are in ."
-"-24.504 to avoid this possibility several measures are taken ."
-"-342.312 \u09e7\u09ef\u09ec\u09ec on 5 february \u09b2\u09be\u09b9\u09cb\u09b0\u09c7 of \u09a6\u09b2\u09b8\u09ae\u09c2\u09b9\u09c7\u09b0 a national was held in ."
-"-342.432 \u09e7\u09ef\u09ec\u09ec on 5 february \u09b2\u09be\u09b9\u09cb\u09b0\u09c7 opposition \u09a6\u09b2\u09b8\u09ae\u09c2\u09b9\u09c7\u09b0 a national was held in ."
-"-342.506 \u09e7\u09ef\u09ec\u09ec on february 5 \u09b2\u09be\u09b9\u09cb\u09b0\u09c7 of \u09a6\u09b2\u09b8\u09ae\u09c2\u09b9\u09c7\u09b0 a national was held in ."
-"-342.592 \u09e7\u09ef\u09ec\u09ec on 5 february \u09b2\u09be\u09b9\u09cb\u09b0\u09c7 against \u09a6\u09b2\u09b8\u09ae\u09c2\u09b9\u09c7\u09b0 a national was held in ."
-"-342.627 \u09e7\u09ef\u09ec\u09ec on february 5 \u09b2\u09be\u09b9\u09cb\u09b0\u09c7 opposition \u09a6\u09b2\u09b8\u09ae\u09c2\u09b9\u09c7\u09b0 a national was held in ."
-"-342.668 \u09e7\u09ef\u09ec\u09ec on 5th february \u09b2\u09be\u09b9\u09cb\u09b0\u09c7 of \u09a6\u09b2\u09b8\u09ae\u09c2\u09b9\u09c7\u09b0 a national was held in ."
-"-342.787 \u09e7\u09ef\u09ec\u09ec on february 5 \u09b2\u09be\u09b9\u09cb\u09b0\u09c7 against \u09a6\u09b2\u09b8\u09ae\u09c2\u09b9\u09c7\u09b0 a national was held in ."
-"-342.948 \u09e7\u09ef\u09ec\u09ec on 5th february \u09b2\u09be\u09b9\u09cb\u09b0\u09c7 against \u09a6\u09b2\u09b8\u09ae\u09c2\u09b9\u09c7\u09b0 a national was held in ."
-"-343.049 \u09e7\u09ef\u09ec\u09ec , on 5 february \u09b2\u09be\u09b9\u09cb\u09b0\u09c7 of \u09a6\u09b2\u09b8\u09ae\u09c2\u09b9\u09c7\u09b0 a national was held in ."
-"-343.128 \u09e7\u09ef\u09ec\u09ec on 5 february \u09b2\u09be\u09b9\u09cb\u09b0\u09c7 of \u09a6\u09b2\u09b8\u09ae\u09c2\u09b9\u09c7\u09b0 is a national was held in ."
-"-348.887 bangladesh \u0985\u09b0\u09cd\u0997\u09be\u09a8\u09be\u0987\u099c\u09c7\u09b6\u09a8 of the islamic \u0995\u09a8\u09ab\u09be\u09b0\u09c7\u09a8\u09cd\u09b8 and islamic \u09a1\u09c7\u09ad\u09c7\u09b2\u09aa\u09ae\u09c7\u09a3\u09cd\u099f bank secured its place in in the ."
-"-349.144 bangladesh \u0985\u09b0\u09cd\u0997\u09be\u09a8\u09be\u0987\u099c\u09c7\u09b6\u09a8 of the islamic \u0995\u09a8\u09ab\u09be\u09b0\u09c7\u09a8\u09cd\u09b8 and islamic \u09a1\u09c7\u09ad\u09c7\u09b2\u09aa\u09ae\u09c7\u09a3\u09cd\u099f bank secured its place in took the ."
-"-349.389 bangladesh \u0985\u09b0\u09cd\u0997\u09be\u09a8\u09be\u0987\u099c\u09c7\u09b6\u09a8 of the islamic \u0995\u09a8\u09ab\u09be\u09b0\u09c7\u09a8\u09cd\u09b8 and islamic \u09a1\u09c7\u09ad\u09c7\u09b2\u09aa\u09ae\u09c7\u09a3\u09cd\u099f bank secured its place in adopted ."
-"-349.516 bangladesh \u0985\u09b0\u09cd\u0997\u09be\u09a8\u09be\u0987\u099c\u09c7\u09b6\u09a8 of the islamic \u0995\u09a8\u09ab\u09be\u09b0\u09c7\u09a8\u09cd\u09b8 and islamic \u09a1\u09c7\u09ad\u09c7\u09b2\u09aa\u09ae\u09c7\u09a3\u09cd\u099f bank secured its place in took ."
-"-349.627 bangladesh \u0985\u09b0\u09cd\u0997\u09be\u09a8\u09be\u0987\u099c\u09c7\u09b6\u09a8 of the islamic \u0995\u09a8\u09ab\u09be\u09b0\u09c7\u09a8\u09cd\u09b8 and islamic \u09a1\u09c7\u09ad\u09c7\u09b2\u09aa\u09ae\u09c7\u09a3\u09cd\u099f bank secured its place in in ."
-"-350.110 bangladesh \u0985\u09b0\u09cd\u0997\u09be\u09a8\u09be\u0987\u099c\u09c7\u09b6\u09a8 of the islamic \u0995\u09a8\u09ab\u09be\u09b0\u09c7\u09a8\u09cd\u09b8 and islamic \u09a1\u09c7\u09ad\u09c7\u09b2\u09aa\u09ae\u09c7\u09a3\u09cd\u099f bank secured its place in adopted the ."
-"-350.210 the bangladesh \u0985\u09b0\u09cd\u0997\u09be\u09a8\u09be\u0987\u099c\u09c7\u09b6\u09a8 of the islamic \u0995\u09a8\u09ab\u09be\u09b0\u09c7\u09a8\u09cd\u09b8 and islamic \u09a1\u09c7\u09ad\u09c7\u09b2\u09aa\u09ae\u09c7\u09a3\u09cd\u099f bank secured its place in in the ."
-"-350.262 bangladesh \u0985\u09b0\u09cd\u0997\u09be\u09a8\u09be\u0987\u099c\u09c7\u09b6\u09a8 of the islamic \u0995\u09a8\u09ab\u09be\u09b0\u09c7\u09a8\u09cd\u09b8 and the islamic \u09a1\u09c7\u09ad\u09c7\u09b2\u09aa\u09ae\u09c7\u09a3\u09cd\u099f bank secured its place in in the ."
-"-350.466 the bangladesh \u0985\u09b0\u09cd\u0997\u09be\u09a8\u09be\u0987\u099c\u09c7\u09b6\u09a8 of the islamic \u0995\u09a8\u09ab\u09be\u09b0\u09c7\u09a8\u09cd\u09b8 and islamic \u09a1\u09c7\u09ad\u09c7\u09b2\u09aa\u09ae\u09c7\u09a3\u09cd\u099f bank secured its place in took the ."
-"-350.518 bangladesh \u0985\u09b0\u09cd\u0997\u09be\u09a8\u09be\u0987\u099c\u09c7\u09b6\u09a8 of the islamic \u0995\u09a8\u09ab\u09be\u09b0\u09c7\u09a8\u09cd\u09b8 and the islamic \u09a1\u09c7\u09ad\u09c7\u09b2\u09aa\u09ae\u09c7\u09a3\u09cd\u099f bank secured its place in took the ."
-"0.287 subject category : encyclopedia"
-"-0.402 subject class : encyclopedia"
-"-0.446 subject matter : encyclopedia"
-"-0.476 subject : encyclopedia"
-"-0.771 category : encyclopedia"
-"-136.409 russia , france and israel is the main \u0985\u09b8\u09cd\u09a4\u09cd\u09b0\u09b8\u09b0\u09ac\u09b0\u09be\u09b9\u0995\u09be\u09b0\u09c0 country and defense sub country ."
-"-136.785 russia , france and israel is the main \u0985\u09b8\u09cd\u09a4\u09cd\u09b0\u09b8\u09b0\u09ac\u09b0\u09be\u09b9\u0995\u09be\u09b0\u09c0 state and defense sub country ."
-"-137.263 russia , france and israel is the main \u0985\u09b8\u09cd\u09a4\u09cd\u09b0\u09b8\u09b0\u09ac\u09b0\u09be\u09b9\u0995\u09be\u09b0\u09c0 country and the defense sub country ."
-"-137.272 russia , france and israel is the main \u0985\u09b8\u09cd\u09a4\u09cd\u09b0\u09b8\u09b0\u09ac\u09b0\u09be\u09b9\u0995\u09be\u09b0\u09c0 country and defence sub country ."
-"-138.633 russia , france and israel is the main \u0985\u09b8\u09cd\u09a4\u09cd\u09b0\u09b8\u09b0\u09ac\u09b0\u09be\u09b9\u0995\u09be\u09b0\u09c0 country and defense subsidiary country ."
-"-138.974 russia , france and israel is the main \u0985\u09b8\u09cd\u09a4\u09cd\u09b0\u09b8\u09b0\u09ac\u09b0\u09be\u09b9\u0995\u09be\u09b0\u09c0 country and defense coordinating country ."
-"-139.126 russia , france and the israel is the main \u0985\u09b8\u09cd\u09a4\u09cd\u09b0\u09b8\u09b0\u09ac\u09b0\u09be\u09b9\u0995\u09be\u09b0\u09c0 country and defense sub country ."
-"-139.429 russia , france and israel is the main \u0985\u09b8\u09cd\u09a4\u09cd\u09b0\u09b8\u09b0\u09ac\u09b0\u09be\u09b9\u0995\u09be\u09b0\u09c0 country and defense sub country of ."
-"-139.441 russia , france and of israel is the main \u0985\u09b8\u09cd\u09a4\u09cd\u09b0\u09b8\u09b0\u09ac\u09b0\u09be\u09b9\u0995\u09be\u09b0\u09c0 country and defense sub country ."
-"-139.502 russia , france and the israel is the main \u0985\u09b8\u09cd\u09a4\u09cd\u09b0\u09b8\u09b0\u09ac\u09b0\u09be\u09b9\u0995\u09be\u09b0\u09c0 state and defense sub country ."
-"-155.661 this is our known as an imaginary unit which with the help of mathematics formed the real number set from the complex number \u09b8\u09c7\u099f\u09c7 par with the ."
-"-155.793 this is our known as imaginary unit which with the help of mathematics formed the real number set from the complex number \u09b8\u09c7\u099f\u09c7 par with the ."
-"-156.117 this is our known as an imaginary unit which with the help of mathematics formed the real number set from complex number \u09b8\u09c7\u099f\u09c7 par with the ."
-"-156.225 this is our known as an imaginary unit which with the help of mathematics formed the real number set from the complex numbers \u09b8\u09c7\u099f\u09c7 par with the ."
-"-156.249 this is our known as imaginary unit which with the help of mathematics formed the real number set from complex number \u09b8\u09c7\u099f\u09c7 par with the ."
-"-156.297 this is our known as an imaginary unit which with the help of mathematics formed the real number set from the complex number \u09b8\u09c7\u099f\u09c7 par with ."
-"-156.357 this is our known as imaginary unit which with the help of mathematics formed the real number set from the complex numbers \u09b8\u09c7\u099f\u09c7 par with the ."
-"-156.402 this is our known imaginary unit which with the help of mathematics formed the real number set from the complex number \u09b8\u09c7\u099f\u09c7 par with the ."
-"-156.430 this is our known as imaginary unit which with the help of mathematics formed the real number set from the complex number \u09b8\u09c7\u099f\u09c7 par with ."
-"-156.753 this is our known as an imaginary unit which with the help of mathematics formed the real number set from complex number \u09b8\u09c7\u099f\u09c7 par with ."
-"-21.727 <address>"
-"-126.861 " \u09a0\u09bf\u0995\u09be\u09a8\u09be ""
-"-127.198 <district>kumilla</district> \u09a0\u09bf\u0995\u09be\u09a8\u09be ""
-"-127.412 " \u09a0\u09bf\u0995\u09be\u09a8\u09be >"
-"-127.534 < \u09a0\u09bf\u0995\u09be\u09a8\u09be ""
-"-127.749 <district>kumilla</district> \u09a0\u09bf\u0995\u09be\u09a8\u09be >"
-"0.260 september"
-"-3.522 september ."
-"-104.738 \u09b8\u09c7\u09aa\u09cd\u099f\u09c7\u09ae\u09cd\u09ac\u09b0"
-"-147.375 this theory from , in the \u09ac\u09bf\u09b8\u09cd\u09ab\u09cb\u09b0\u09a3\u09cb\u09b0 against can not be , rather it can be supported ."
-"-147.379 this theory from , in the big \u09ac\u09bf\u09b8\u09cd\u09ab\u09cb\u09b0\u09a3\u09cb\u09b0 against can not be , rather it can be supported ."
-"-147.384 this theory from , in the \u09ac\u09bf\u09b8\u09cd\u09ab\u09cb\u09b0\u09a3\u09cb\u09b0 against can not be , but it can be supported ."
-"-147.388 this theory from , in the big \u09ac\u09bf\u09b8\u09cd\u09ab\u09cb\u09b0\u09a3\u09cb\u09b0 against can not be , but it can be supported ."
-"-147.623 in this theory from , in the big \u09ac\u09bf\u09b8\u09cd\u09ab\u09cb\u09b0\u09a3\u09cb\u09b0 against can not be , rather it can be supported ."
-"-147.632 in this theory from , in the big \u09ac\u09bf\u09b8\u09cd\u09ab\u09cb\u09b0\u09a3\u09cb\u09b0 against can not be , but it can be supported ."
-"-147.916 this theory from however , the \u09ac\u09bf\u09b8\u09cd\u09ab\u09cb\u09b0\u09a3\u09cb\u09b0 against can not be , rather it can be supported ."
-"-147.925 this theory from however , the \u09ac\u09bf\u09b8\u09cd\u09ab\u09cb\u09b0\u09a3\u09cb\u09b0 against can not be , but it can be supported ."
-"-147.965 this theory from however , the big \u09ac\u09bf\u09b8\u09cd\u09ab\u09cb\u09b0\u09a3\u09cb\u09b0 against can not be , rather it can be supported ."
-"-147.974 this theory from however , the big \u09ac\u09bf\u09b8\u09cd\u09ab\u09cb\u09b0\u09a3\u09cb\u09b0 against can not be , but it can be supported ."
-"-265.370 agricultural in production france is the most important country , it is mainly \u0996\u09be\u09a6\u09cd\u09af\u09b6\u09b8\u09cd\u09af , wine , cheese and other \u0995\u09c3\u09b7\u09bf\u09a6\u09cd\u09b0\u09ac\u09cd\u09af europe and in the whole world export ."
-"-265.446 agricultural in production france is the most important country ; it is mainly \u0996\u09be\u09a6\u09cd\u09af\u09b6\u09b8\u09cd\u09af , wine , cheese and other \u0995\u09c3\u09b7\u09bf\u09a6\u09cd\u09b0\u09ac\u09cd\u09af europe and in the whole world export ."
-"-266.013 agricultural in production france is the most important country , it is mainly \u0996\u09be\u09a6\u09cd\u09af\u09b6\u09b8\u09cd\u09af , wine , cheese and other \u0995\u09c3\u09b7\u09bf\u09a6\u09cd\u09b0\u09ac\u09cd\u09af europe and the whole world export ."
-"-266.089 agricultural in production france is the most important country ; it is mainly \u0996\u09be\u09a6\u09cd\u09af\u09b6\u09b8\u09cd\u09af , wine , cheese and other \u0995\u09c3\u09b7\u09bf\u09a6\u09cd\u09b0\u09ac\u09cd\u09af europe and the whole world export ."
-"-266.264 agricultural in production france is the most important country , it is mainly \u0996\u09be\u09a6\u09cd\u09af\u09b6\u09b8\u09cd\u09af , the wine , cheese and other \u0995\u09c3\u09b7\u09bf\u09a6\u09cd\u09b0\u09ac\u09cd\u09af europe and in the whole world export ."
-"-266.340 agricultural in production france is the most important country ; it is mainly \u0996\u09be\u09a6\u09cd\u09af\u09b6\u09b8\u09cd\u09af , the wine , cheese and other \u0995\u09c3\u09b7\u09bf\u09a6\u09cd\u09b0\u09ac\u09cd\u09af europe and in the whole world export ."
-"-266.392 agricultural in production france is the most important country , it is basically \u0996\u09be\u09a6\u09cd\u09af\u09b6\u09b8\u09cd\u09af , wine , cheese and other \u0995\u09c3\u09b7\u09bf\u09a6\u09cd\u09b0\u09ac\u09cd\u09af europe and in the whole world export ."
-"-266.490 agricultural in production france is the most important country ; it is \u0996\u09be\u09a6\u09cd\u09af\u09b6\u09b8\u09cd\u09af , wine , cheese and other \u0995\u09c3\u09b7\u09bf\u09a6\u09cd\u09b0\u09ac\u09cd\u09af europe and in the whole world export ."
-"-266.548 agricultural in production france is the most important country , it is mainly \u0996\u09be\u09a6\u09cd\u09af\u09b6\u09b8\u09cd\u09af , why , cheese and other \u0995\u09c3\u09b7\u09bf\u09a6\u09cd\u09b0\u09ac\u09cd\u09af europe and in the whole world export ."
-"-266.623 agricultural in production france is the most important country ; it is mainly \u0996\u09be\u09a6\u09cd\u09af\u09b6\u09b8\u09cd\u09af , why , cheese and other \u0995\u09c3\u09b7\u09bf\u09a6\u09cd\u09b0\u09ac\u09cd\u09af europe and in the whole world export ."
-"-118.675 their in mathematics \u09aa\u09be\u099f\u09c0\u0997\u09a3\u09bf\u09a4\u09c7\u09b0 person was ."
-"-119.589 their in mathematics \u09aa\u09be\u099f\u09c0\u0997\u09a3\u09bf\u09a4\u09c7\u09b0 priority was ."
-"-119.755 their in mathematics \u09aa\u09be\u099f\u09c0\u0997\u09a3\u09bf\u09a4\u09c7\u09b0 were was ."
-"-119.974 in their in mathematics \u09aa\u09be\u099f\u09c0\u0997\u09a3\u09bf\u09a4\u09c7\u09b0 person was ."
-"-120.094 their in mathematics \u09aa\u09be\u099f\u09c0\u0997\u09a3\u09bf\u09a4\u09c7\u09b0 are was ."
-"-120.273 they in mathematics \u09aa\u09be\u099f\u09c0\u0997\u09a3\u09bf\u09a4\u09c7\u09b0 person was ."
-"-120.375 of their in mathematics \u09aa\u09be\u099f\u09c0\u0997\u09a3\u09bf\u09a4\u09c7\u09b0 person was ."
-"-120.399 their in mathematics \u09aa\u09be\u099f\u09c0\u0997\u09a3\u09bf\u09a4\u09c7\u09b0 dominance was ."
-"-120.487 their in mathematics \u09aa\u09be\u099f\u09c0\u0997\u09a3\u09bf\u09a4\u09c7\u09b0 in was ."
-"-605.242 deshgulo are : france , call , make noise , china , belgium , switzerland , germany , denmark , sweden , austria , chekoslovakia , argentina , italy , norway , \u09b9\u09be\u0999\u09cd\u0997\u09c7\u09b0\u09c0 , yugoslavia , bulgaria , rumania , \u0997\u09cd\u09b0\u09c0\u09b8 , egypt , singapore , indonesia , \u09a5\u09be\u0987\u09b2\u09cd\u09af\u09be\u09a8\u09cd\u09a1 , japan , burma , \u09b9\u09b2\u09cd\u09af\u09be\u09a8\u09cd\u09a1 , the soviet russia , iran , iraq and sri lanka ."
-"-605.394 deshgulo are : france , call , make noise , china , belgium , switzerland , germany , denmark , sweden , austria , chekoslovakia , argentina , italy , in norway , \u09b9\u09be\u0999\u09cd\u0997\u09c7\u09b0\u09c0 , yugoslavia , bulgaria , rumania , \u0997\u09cd\u09b0\u09c0\u09b8 , egypt , singapore , indonesia , \u09a5\u09be\u0987\u09b2\u09cd\u09af\u09be\u09a8\u09cd\u09a1 , japan , burma , \u09b9\u09b2\u09cd\u09af\u09be\u09a8\u09cd\u09a1 , the soviet russia , iran , iraq and sri lanka ."
-"-605.592 deshgulo are : france , call , make noise , china , belgium , switzerland , germany , denmark , sweden , austria , chekoslovakia , argentina , italy , norway , \u09b9\u09be\u0999\u09cd\u0997\u09c7\u09b0\u09c0 , yugoslavia , bulgaria , romania , \u0997\u09cd\u09b0\u09c0\u09b8 , egypt , singapore , indonesia , \u09a5\u09be\u0987\u09b2\u09cd\u09af\u09be\u09a8\u09cd\u09a1 , japan , burma , \u09b9\u09b2\u09cd\u09af\u09be\u09a8\u09cd\u09a1 , the soviet russia , iran , iraq and sri lanka ."
-"-605.619 deshgulo are : france , call , make noise , china , belgium , switzerland , germany , denmark , in sweden , austria , chekoslovakia , argentina , italy , norway , \u09b9\u09be\u0999\u09cd\u0997\u09c7\u09b0\u09c0 , yugoslavia , bulgaria , rumania , \u0997\u09cd\u09b0\u09c0\u09b8 , egypt , singapore , indonesia , \u09a5\u09be\u0987\u09b2\u09cd\u09af\u09be\u09a8\u09cd\u09a1 , japan , burma , \u09b9\u09b2\u09cd\u09af\u09be\u09a8\u09cd\u09a1 , the soviet russia , iran , iraq and sri lanka ."
-"-605.745 deshgulo are : france , call , make noise , china , belgium , switzerland , germany , denmark , sweden , austria , chekoslovakia , argentina , italy , in norway , \u09b9\u09be\u0999\u09cd\u0997\u09c7\u09b0\u09c0 , yugoslavia , bulgaria , romania , \u0997\u09cd\u09b0\u09c0\u09b8 , egypt , singapore , indonesia , \u09a5\u09be\u0987\u09b2\u09cd\u09af\u09be\u09a8\u09cd\u09a1 , japan , burma , \u09b9\u09b2\u09cd\u09af\u09be\u09a8\u09cd\u09a1 , the soviet russia , iran , iraq and sri lanka ."
-"-605.771 deshgulo are : france , call , make noise , china , belgium , switzerland , germany , denmark , in sweden , austria , chekoslovakia , argentina , italy , in norway , \u09b9\u09be\u0999\u09cd\u0997\u09c7\u09b0\u09c0 , yugoslavia , bulgaria , rumania , \u0997\u09cd\u09b0\u09c0\u09b8 , egypt , singapore , indonesia , \u09a5\u09be\u0987\u09b2\u09cd\u09af\u09be\u09a8\u09cd\u09a1 , japan , burma , \u09b9\u09b2\u09cd\u09af\u09be\u09a8\u09cd\u09a1 , the soviet russia , iran , iraq and sri lanka ."
-"-605.951 deshgulo are : france , call , make noise , china , belgium , switzerland , germany , denmark , sweden , austria , chekoslovakia , argentina , italy , norway , \u09b9\u09be\u0999\u09cd\u0997\u09c7\u09b0\u09c0 , and yugoslavia , bulgaria , rumania , \u0997\u09cd\u09b0\u09c0\u09b8 , egypt , singapore , indonesia , \u09a5\u09be\u0987\u09b2\u09cd\u09af\u09be\u09a8\u09cd\u09a1 , japan , burma , \u09b9\u09b2\u09cd\u09af\u09be\u09a8\u09cd\u09a1 , the soviet russia , iran , iraq and sri lanka ."
-"-605.969 deshgulo are : france , call , make noise , china , belgium , switzerland , germany , denmark , in sweden , austria , chekoslovakia , argentina , italy , norway , \u09b9\u09be\u0999\u09cd\u0997\u09c7\u09b0\u09c0 , yugoslavia , bulgaria , romania , \u0997\u09cd\u09b0\u09c0\u09b8 , egypt , singapore , indonesia , \u09a5\u09be\u0987\u09b2\u09cd\u09af\u09be\u09a8\u09cd\u09a1 , japan , burma , \u09b9\u09b2\u09cd\u09af\u09be\u09a8\u09cd\u09a1 , the soviet russia , iran , iraq and sri lanka ."
-"-605.983 deshgulo are : france , call , make noise , china , belgium , switzerland , germany , denmark , sweden , austria , chekoslovakia , argentina , italy , norway , \u09b9\u09be\u0999\u09cd\u0997\u09c7\u09b0\u09c0 , yugoslavia , bulgaria , rumania , \u0997\u09cd\u09b0\u09c0\u09b8 , egypt , singapore , indonesia , \u09a5\u09be\u0987\u09b2\u09cd\u09af\u09be\u09a8\u09cd\u09a1 , japan , burma , \u09b9\u09b2\u09cd\u09af\u09be\u09a8\u09cd\u09a1 , the soviet russia , iran , iraq and after visiting srilanka ."
-"-606.122 deshgulo are : france , call , make noise , china , belgium , switzerland , germany , denmark , in sweden , austria , chekoslovakia , argentina , italy , in norway , \u09b9\u09be\u0999\u09cd\u0997\u09c7\u09b0\u09c0 , yugoslavia , bulgaria , romania , \u0997\u09cd\u09b0\u09c0\u09b8 , egypt , singapore , indonesia , \u09a5\u09be\u0987\u09b2\u09cd\u09af\u09be\u09a8\u09cd\u09a1 , japan , burma , \u09b9\u09b2\u09cd\u09af\u09be\u09a8\u09cd\u09a1 , the soviet russia , iran , iraq and sri lanka ."
-"-119.423 this \u09ac\u09cd\u09af\u09be\u09b8\u09bf\u09b2\u09bf\u0995\u09be\u09b0 places now bank of england is situated ."
-"-119.722 in this \u09ac\u09cd\u09af\u09be\u09b8\u09bf\u09b2\u09bf\u0995\u09be\u09b0 places now bank of england is situated ."
-"-119.957 this \u09ac\u09cd\u09af\u09be\u09b8\u09bf\u09b2\u09bf\u0995\u09be\u09b0 places is now bank of england is situated ."
-"-120.301 this \u09ac\u09cd\u09af\u09be\u09b8\u09bf\u09b2\u09bf\u0995\u09be\u09b0 places now bank of england is located ."
-"-120.554 this \u09ac\u09cd\u09af\u09be\u09b8\u09bf\u09b2\u09bf\u0995\u09be\u09b0 places now bank of england is situated in ."
-"-120.695 this \u09ac\u09cd\u09af\u09be\u09b8\u09bf\u09b2\u09bf\u0995\u09be\u09b0 places now bank of england is situated at ."
-"-120.727 this \u09ac\u09cd\u09af\u09be\u09b8\u09bf\u09b2\u09bf\u0995\u09be\u09b0 places now bank of england is located in ."
-"-120.834 this \u09ac\u09cd\u09af\u09be\u09b8\u09bf\u09b2\u09bf\u0995\u09be\u09b0 places is now bank of england is located ."
-"-120.852 in this \u09ac\u09cd\u09af\u09be\u09b8\u09bf\u09b2\u09bf\u0995\u09be\u09b0 places now bank of england is situated in ."
-"-121.016 this \u09ac\u09cd\u09af\u09be\u09b8\u09bf\u09b2\u09bf\u0995\u09be\u09b0 places are bank of england is situated in ."
-"-461.835 in the north of this country \u09ac\u09bf\u09b8\u09cd\u0995\u09be\u0987 sub-sea , on the south \u099c\u09bf\u09ac\u09cd\u09b0\u09be\u09b2\u09cd\u099f\u09be\u09b0 strait , \u09aa\u09cd\u09b0\u09a3\u09be\u09b2\u09c0\u09b0 in the south \u09ae\u09b0\u0995\u09cd\u0995\u09cb , west and the towards the atlantic ocean ."
-"-462.322 in the north of this country \u09ac\u09bf\u09b8\u09cd\u0995\u09be\u0987 sub-sea , on the south \u099c\u09bf\u09ac\u09cd\u09b0\u09be\u09b2\u09cd\u099f\u09be\u09b0 strait , \u09aa\u09cd\u09b0\u09a3\u09be\u09b2\u09c0\u09b0 in the south \u09ae\u09b0\u0995\u09cd\u0995\u09cb , west and the side of atlantic ocean ."
-"-462.361 in the north of this country \u09ac\u09bf\u09b8\u09cd\u0995\u09be\u0987 sub-sea , on the south \u099c\u09bf\u09ac\u09cd\u09b0\u09be\u09b2\u09cd\u099f\u09be\u09b0 strait , \u09aa\u09cd\u09b0\u09a3\u09be\u09b2\u09c0\u09b0 in the south \u09ae\u09b0\u0995\u09cd\u0995\u09cb , west and the of atlantic ocean ."
-"-462.532 in the north of this country \u09ac\u09bf\u09b8\u09cd\u0995\u09be\u0987 sub-sea , on the south \u099c\u09bf\u09ac\u09cd\u09b0\u09be\u09b2\u09cd\u099f\u09be\u09b0 strait , \u09aa\u09cd\u09b0\u09a3\u09be\u09b2\u09c0\u09b0 in the south \u09ae\u09b0\u0995\u09cd\u0995\u09cb , west and the of the atlantic ocean ."
-"-462.573 in the north of this country \u09ac\u09bf\u09b8\u09cd\u0995\u09be\u0987 sub-sea , on the south \u099c\u09bf\u09ac\u09cd\u09b0\u09be\u09b2\u09cd\u099f\u09be\u09b0 strait , \u09aa\u09cd\u09b0\u09a3\u09be\u09b2\u09c0\u09b0 in the south \u09ae\u09b0\u0995\u09cd\u0995\u09cb , west and the side of the atlantic ocean ."
-"-462.634 on the north of the country is the \u09ac\u09bf\u09b8\u09cd\u0995\u09be\u0987 sub-sea , on the south \u099c\u09bf\u09ac\u09cd\u09b0\u09be\u09b2\u09cd\u099f\u09be\u09b0 strait , \u09aa\u09cd\u09b0\u09a3\u09be\u09b2\u09c0\u09b0 in the south \u09ae\u09b0\u0995\u09cd\u0995\u09cb , west and the towards the atlantic ocean ."
-"-462.712 in the north of this country \u09ac\u09bf\u09b8\u09cd\u0995\u09be\u0987 sub-sea , on the south \u099c\u09bf\u09ac\u09cd\u09b0\u09be\u09b2\u09cd\u099f\u09be\u09b0 strait , \u09aa\u09cd\u09b0\u09a3\u09be\u09b2\u09c0\u09b0 in the south \u09ae\u09b0\u0995\u09cd\u0995\u09cb , west and the the atlantic ocean ."
-"-462.825 in the north of this country \u09ac\u09bf\u09b8\u09cd\u0995\u09be\u0987 sub-sea , on the south \u099c\u09bf\u09ac\u09cd\u09b0\u09be\u09b2\u09cd\u099f\u09be\u09b0 strait , \u09aa\u09cd\u09b0\u09a3\u09be\u09b2\u09c0\u09b0 in \u09ae\u09b0\u0995\u09cd\u0995\u09cb , west and the towards the atlantic ocean ."
-"-462.833 in the north of this country \u09ac\u09bf\u09b8\u09cd\u0995\u09be\u0987 sub-sea , on the south \u099c\u09bf\u09ac\u09cd\u09b0\u09be\u09b2\u09cd\u099f\u09be\u09b0 strait , \u09aa\u09cd\u09b0\u09a3\u09be\u09b2\u09c0\u09b0 in the south \u09ae\u09b0\u0995\u09cd\u0995\u09cb , west and the on the atlantic ocean ."
-"-462.991 in the north of this country \u09ac\u09bf\u09b8\u09cd\u0995\u09be\u0987 sub-sea , on the south \u099c\u09bf\u09ac\u09cd\u09b0\u09be\u09b2\u09cd\u099f\u09be\u09b0 strait , \u09aa\u09cd\u09b0\u09a3\u09be\u09b2\u09c0\u09b0 the \u09ae\u09b0\u0995\u09cd\u0995\u09cb , west and the towards the atlantic ocean ."
-"-349.945 apart from this situation it can be understood that a \u09ae\u09c1\u09b9\u09c2\u09b0\u09cd\u09a4\u09c7 of the united nations of the decision \u09a8\u09c7\u09ac\u09be\u09b0 \u0985\u0995\u09cd\u09b7\u09ae\u09a4\u09be ."
-"-350.476 apart from that , this situation it can be understood that a \u09ae\u09c1\u09b9\u09c2\u09b0\u09cd\u09a4\u09c7 of the united nations of the decision \u09a8\u09c7\u09ac\u09be\u09b0 \u0985\u0995\u09cd\u09b7\u09ae\u09a4\u09be ."
-"-350.589 apart from this situation it can be understood a \u09ae\u09c1\u09b9\u09c2\u09b0\u09cd\u09a4\u09c7 of the united nations of the decision \u09a8\u09c7\u09ac\u09be\u09b0 \u0985\u0995\u09cd\u09b7\u09ae\u09a4\u09be ."
-"-350.844 apart from this situation it can be understood that a \u09ae\u09c1\u09b9\u09c2\u09b0\u09cd\u09a4\u09c7 of the united nations the decision \u09a8\u09c7\u09ac\u09be\u09b0 \u0985\u0995\u09cd\u09b7\u09ae\u09a4\u09be ."
-"-351.121 apart from that , this situation it can be understood a \u09ae\u09c1\u09b9\u09c2\u09b0\u09cd\u09a4\u09c7 of the united nations of the decision \u09a8\u09c7\u09ac\u09be\u09b0 \u0985\u0995\u09cd\u09b7\u09ae\u09a4\u09be ."
-"-351.262 apart from that , for this situation it can be understood that a \u09ae\u09c1\u09b9\u09c2\u09b0\u09cd\u09a4\u09c7 of the united nations of the decision \u09a8\u09c7\u09ac\u09be\u09b0 \u0985\u0995\u09cd\u09b7\u09ae\u09a4\u09be ."
-"-351.267 apart from these , this situation it can be understood that a \u09ae\u09c1\u09b9\u09c2\u09b0\u09cd\u09a4\u09c7 of the united nations of the decision \u09a8\u09c7\u09ac\u09be\u09b0 \u0985\u0995\u09cd\u09b7\u09ae\u09a4\u09be ."
-"-351.327 apart from this situation it can be understood that a \u09ae\u09c1\u09b9\u09c2\u09b0\u09cd\u09a4\u09c7 of united nation of the decision \u09a8\u09c7\u09ac\u09be\u09b0 \u0985\u0995\u09cd\u09b7\u09ae\u09a4\u09be ."
-"-351.427 apart from this situation it can be understood that a \u09ae\u09c1\u09b9\u09c2\u09b0\u09cd\u09a4\u09c7 of the united nations fast decision \u09a8\u09c7\u09ac\u09be\u09b0 \u0985\u0995\u09cd\u09b7\u09ae\u09a4\u09be ."
-"-351.449 apart from this situation it can be understood that a \u09ae\u09c1\u09b9\u09c2\u09b0\u09cd\u09a4\u09c7 of the united nations rapidly decision \u09a8\u09c7\u09ac\u09be\u09b0 \u0985\u0995\u09cd\u09b7\u09ae\u09a4\u09be ."
-"-129.293 \u0995\u09be\u09b0\u09cd\u09b2 there is work through it by the ."
-"-130.169 \u0995\u09be\u09b0\u09cd\u09b2 there is work through it is controlled by ."
-"-130.397 \u0995\u09be\u09b0\u09cd\u09b2 there is work through it controlled by the ."
-"-130.442 \u0995\u09be\u09b0\u09cd\u09b2 there is work through it by ."
-"-130.455 \u0995\u09be\u09b0\u09cd\u09b2 there is work through this controlled by the ."
-"-130.463 \u0995\u09be\u09b0\u09cd\u09b2 there is only through it by the ."
-"-130.546 \u0995\u09be\u09b0\u09cd\u09b2 there is work through this by the ."
-"-130.628 \u0995\u09be\u09b0\u09cd\u09b2 place there is work through it by the ."
-"-130.739 \u0995\u09be\u09b0\u09cd\u09b2 there is work through this are conducted by the ."
-"-131.107 \u0995\u09be\u09b0\u09cd\u09b2 there is work through it are conducted by the ."
-"-165.025 the subject of sometimes puran -lrb- from , sometimes in the middle age love story from , sometimes again today 's social and political \u0998\u099f\u09a8\u09be\u09ac\u09b2\u09bf from accepted ."
-"-165.876 the subject of sometimes puran -lrb- from , sometimes in the middle age love story from , sometimes again today 's social and political \u0998\u099f\u09a8\u09be\u09ac\u09b2\u09bf taken from ."
-"-165.884 the subject of sometimes puran -lrb- from , sometimes in the middle age love story from , sometimes again today 's social and political \u0998\u099f\u09a8\u09be\u09ac\u09b2\u09bf from the accepted ."
-"-166.021 the subject of some puran -lrb- from , sometimes in the middle age love story from , sometimes again today 's social and political \u0998\u099f\u09a8\u09be\u09ac\u09b2\u09bf from accepted ."
-"-166.116 the subject of sometimes puran -lrb- from , sometimes in the middle age love story to , sometimes again today 's social and political \u0998\u099f\u09a8\u09be\u09ac\u09b2\u09bf from accepted ."
-"-166.120 the subject of sometimes puran -lrb- from , sometimes in the middle age love story from , sometimes again today 's social and political \u0998\u099f\u09a8\u09be\u09ac\u09b2\u09bf to accepted ."
-"-166.162 the subject of sometimes puran -lrb- from , sometimes in middle age love story from , sometimes again today 's social and political \u0998\u099f\u09a8\u09be\u09ac\u09b2\u09bf from accepted ."
-"-166.174 the subject of sometimes puran -lrb- from , sometimes in the middle age love story from the , sometimes again today 's social and political \u0998\u099f\u09a8\u09be\u09ac\u09b2\u09bf from accepted ."
-"-166.244 the subject of sometimes puran -lrb- from , sometimes in the middle age love story from , sometimes again at the present age social and political \u0998\u099f\u09a8\u09be\u09ac\u09b2\u09bf from accepted ."
-"-166.279 the subject of sometime puran -lrb- from , sometimes in the middle age love story from , sometimes again today 's social and political \u0998\u099f\u09a8\u09be\u09ac\u09b2\u09bf from accepted ."
-"-354.717 three measure on the basis of the universe that age is found that is almost \u09e7\u09e9.\u09ed � \u09e6.\u09e8 billion years ."
-"-355.390 three measure on the basis of the universe that the age is found that is almost \u09e7\u09e9.\u09ed � \u09e6.\u09e8 billion years ."
-"-355.566 three measure on the basis of the universe that age is found that are almost \u09e7\u09e9.\u09ed � \u09e6.\u09e8 billion years ."
-"-355.918 three measure on the basis of the universe that age is found that is about \u09e7\u09e9.\u09ed � \u09e6.\u09e8 billion years ."
-"-355.947 three measure on the basis of the universe the age is found that is almost \u09e7\u09e9.\u09ed � \u09e6.\u09e8 billion years ."
-"-356.235 three measure on the basis of the universe that age found in that is almost \u09e7\u09e9.\u09ed � \u09e6.\u09e8 billion years ."
-"-356.239 three measure on the basis of the universe that the age is found that are almost \u09e7\u09e9.\u09ed � \u09e6.\u09e8 billion years ."
-"-356.484 three measure on the basis of the universe that age is found in the almost \u09e7\u09e9.\u09ed � \u09e6.\u09e8 billion years ."
-"-356.558 three measure on the basis of the universe that age is found that is around \u09e7\u09e9.\u09ed � \u09e6.\u09e8 billion years ."
-"-356.591 three measure on the basis of the universe that the age is found that is about \u09e7\u09e9.\u09ed � \u09e6.\u09e8 billion years ."
-"-242.737 \u0995\u09be\u099b\u09c7\u0987 there are east russia , which \u0993\u0996\u099f\u09b8\u09cd\u0995 sea and japan sea on the other can be is situated ."
-"-243.137 \u0995\u09be\u099b\u09c7\u0987 there are east russia , which is \u0993\u0996\u099f\u09b8\u09cd\u0995 sea and japan sea on the other can be is situated ."
-"-243.852 \u0995\u09be\u099b\u09c7\u0987 there are east russia , which \u0993\u0996\u099f\u09b8\u09cd\u0995 sea and japan sea on the other can be situated in ."
-"-243.867 \u0995\u09be\u099b\u09c7\u0987 there are east russia , which \u0993\u0996\u099f\u09b8\u09cd\u0995 sea and japan sea on the other can be is situated in ."
-"-243.900 \u0995\u09be\u099b\u09c7\u0987 there are east russia , which \u0993\u0996\u099f\u09b8\u09cd\u0995 sea and japan sea on the other can be situated in the ."
-"-244.008 \u0995\u09be\u099b\u09c7\u0987 there are east russia , which \u0993\u0996\u099f\u09b8\u09cd\u0995 sea and japan sea on the other can be is situated at ."
-"-244.031 \u0995\u09be\u099b\u09c7\u0987 there are east russia , which \u0993\u0996\u099f\u09b8\u09cd\u0995 sea and japan sea on the other can be situated ."
-"-244.041 \u0995\u09be\u099b\u09c7\u0987 there are east russia , which \u0993\u0996\u099f\u09b8\u09cd\u0995 sea and japan sea on the other can be is located in ."
-"-244.052 \u0995\u09be\u099b\u09c7\u0987 there are east russia , which \u0993\u0996\u099f\u09b8\u09cd\u0995 sea and japan sea on the other can is situated in ."
-"-244.075 \u0995\u09be\u099b\u09c7\u0987 are east russia , which \u0993\u0996\u099f\u09b8\u09cd\u0995 sea and japan sea on the other can be is situated in ."
-"-123.312 in kolkata is located in the national library of the leading public \u09b2\u09be\u0987\u09ac\u09cd\u09b0\u09c7\u09b0\u09bf ."
-"-123.654 in kolkata is located in the national library of the country was public \u09b2\u09be\u0987\u09ac\u09cd\u09b0\u09c7\u09b0\u09bf ."
-"-123.951 in kolkata is located in the national library of the country leading public \u09b2\u09be\u0987\u09ac\u09cd\u09b0\u09c7\u09b0\u09bf ."
-"-124.144 in kolkata is located in the national library the leading public \u09b2\u09be\u0987\u09ac\u09cd\u09b0\u09c7\u09b0\u09bf ."
-"-124.779 in kolkata is located in the national library , is the leading public \u09b2\u09be\u0987\u09ac\u09cd\u09b0\u09c7\u09b0\u09bf ."
-"-125.068 in kolkata is located in the national library of the country is leading public \u09b2\u09be\u0987\u09ac\u09cd\u09b0\u09c7\u09b0\u09bf ."
-"-125.571 in kolkata is located in the national library countries leading public \u09b2\u09be\u0987\u09ac\u09cd\u09b0\u09c7\u09b0\u09bf ."
-"-125.601 in kolkata is located in the national library of the country , the pioneering public \u09b2\u09be\u0987\u09ac\u09cd\u09b0\u09c7\u09b0\u09bf ."
-"-125.684 in kolkata is located in the national library the country leading public \u09b2\u09be\u0987\u09ac\u09cd\u09b0\u09c7\u09b0\u09bf ."
-"-126.253 in kolkata is located in the national library of the leading public \u09b2\u09be\u0987\u09ac\u09cd\u09b0\u09c7\u09b0\u09bf . ."
-"-104.738 \u099b\u09a4\u09cd\u09b0\u09be\u0995\u09ac\u09bf\u09a6\u09cd\u09af\u09be"
-"-222.227 \u09b0\u09be\u09b7\u09cd\u099f\u09cd\u09b0\u09b8\u0999\u09cd\u0998\u09c7\u09b0 secretary general \u09ac\u09be\u09a8 ki moon"
-"-222.626 \u09b0\u09be\u09b7\u09cd\u099f\u09cd\u09b0\u09b8\u0999\u09cd\u0998\u09c7\u09b0 general secretary \u09ac\u09be\u09a8 ki moon"
-"-224.534 \u09b0\u09be\u09b7\u09cd\u099f\u09cd\u09b0\u09b8\u0999\u09cd\u0998\u09c7\u09b0 chief secretary \u09ac\u09be\u09a8 ki moon"
-"-225.003 \u09b0\u09be\u09b7\u09cd\u099f\u09cd\u09b0\u09b8\u0999\u09cd\u0998\u09c7\u09b0 secretary general \u09ac\u09be\u09a8 what moon"
-"-225.402 \u09b0\u09be\u09b7\u09cd\u099f\u09cd\u09b0\u09b8\u0999\u09cd\u0998\u09c7\u09b0 general secretary \u09ac\u09be\u09a8 what moon"
-"-226.183 \u09b0\u09be\u09b7\u09cd\u099f\u09cd\u09b0\u09b8\u0999\u09cd\u0998\u09c7\u09b0 chief secretary of \u09ac\u09be\u09a8 ki moon"
-"-226.565 \u09b0\u09be\u09b7\u09cd\u099f\u09cd\u09b0\u09b8\u0999\u09cd\u0998\u09c7\u09b0 chief secretary \u09ac\u09be\u09a8 what moon"
-"-226.669 \u09b0\u09be\u09b7\u09cd\u099f\u09cd\u09b0\u09b8\u0999\u09cd\u0998\u09c7\u09b0 secretary general \u09ac\u09be\u09a8 what salt"
-"-344.577 \u09ae\u09bf\u09a8\u09bf\u0995\u09cd\u09b8\u09c7\u09b0 of india was smells \u099f\u09be\u09a8\u09c7\u09a8\u09ac\u09ae , a famous operating system designing \u09aa\u09cd\u09b0\u09b6\u09bf\u0995\u09cd\u09b7\u0995 ."
-"-344.611 \u09ae\u09bf\u09a8\u09bf\u0995\u09cd\u09b8\u09c7\u09b0 of india was smells \u099f\u09be\u09a8\u09c7\u09a8\u09ac\u09ae , a famous operating system design \u09aa\u09cd\u09b0\u09b6\u09bf\u0995\u09cd\u09b7\u0995 ."
-"-344.995 \u09ae\u09bf\u09a8\u09bf\u0995\u09cd\u09b8\u09c7\u09b0 of india was smells \u099f\u09be\u09a8\u09c7\u09a8\u09ac\u09ae , in a famous operating system designing \u09aa\u09cd\u09b0\u09b6\u09bf\u0995\u09cd\u09b7\u0995 ."
-"-345.029 \u09ae\u09bf\u09a8\u09bf\u0995\u09cd\u09b8\u09c7\u09b0 of india was smells \u099f\u09be\u09a8\u09c7\u09a8\u09ac\u09ae , in a famous operating system design \u09aa\u09cd\u09b0\u09b6\u09bf\u0995\u09cd\u09b7\u0995 ."
-"-345.466 \u09ae\u09bf\u09a8\u09bf\u0995\u09cd\u09b8\u09c7\u09b0 of was smells \u099f\u09be\u09a8\u09c7\u09a8\u09ac\u09ae , a famous operating system designing \u09aa\u09cd\u09b0\u09b6\u09bf\u0995\u09cd\u09b7\u0995 ."
-"-345.499 \u09ae\u09bf\u09a8\u09bf\u0995\u09cd\u09b8\u09c7\u09b0 of was smells \u099f\u09be\u09a8\u09c7\u09a8\u09ac\u09ae , a famous operating system design \u09aa\u09cd\u09b0\u09b6\u09bf\u0995\u09cd\u09b7\u0995 ."
-"-345.884 \u09ae\u09bf\u09a8\u09bf\u0995\u09cd\u09b8\u09c7\u09b0 of was smells \u099f\u09be\u09a8\u09c7\u09a8\u09ac\u09ae , in a famous operating system designing \u09aa\u09cd\u09b0\u09b6\u09bf\u0995\u09cd\u09b7\u0995 ."
-"-345.906 \u09ae\u09bf\u09a8\u09bf\u0995\u09cd\u09b8\u09c7\u09b0 of were smells \u099f\u09be\u09a8\u09c7\u09a8\u09ac\u09ae , a famous operating system designing \u09aa\u09cd\u09b0\u09b6\u09bf\u0995\u09cd\u09b7\u0995 ."
-"-345.918 \u09ae\u09bf\u09a8\u09bf\u0995\u09cd\u09b8\u09c7\u09b0 of was smells \u099f\u09be\u09a8\u09c7\u09a8\u09ac\u09ae , in a famous operating system design \u09aa\u09cd\u09b0\u09b6\u09bf\u0995\u09cd\u09b7\u0995 ."
-"-345.940 \u09ae\u09bf\u09a8\u09bf\u0995\u09cd\u09b8\u09c7\u09b0 of were smells \u099f\u09be\u09a8\u09c7\u09a8\u09ac\u09ae , a famous operating system design \u09aa\u09cd\u09b0\u09b6\u09bf\u0995\u09cd\u09b7\u0995 ."
-"-1735.945 the \u099f\u09be\u0987\u09ae\u09cd of 's of \u0987\u09a8\u09cd\u09a1\u09bf\u09af\u09bc\u09be-\u09a4\u09c7 written in the " it is absurd to compare it with any other indian cinema ... pather panchali is pure cinema " -lrb- " it other by the indian films with compared to unreal ... pather panchali are pure film " -rrb- ."
-"-1736.149 the \u099f\u09be\u0987\u09ae\u09cd of 's of \u0987\u09a8\u09cd\u09a1\u09bf\u09af\u09bc\u09be-\u09a4\u09c7 written in the " it is absurd to compare it with any other indian cinema ... pather panchali is pure cinema " -lrb- " it in other by the indian films with compared to unreal ... pather panchali are pure film " -rrb- ."
-"-1736.151 the \u099f\u09be\u0987\u09ae\u09cd of 's of \u0987\u09a8\u09cd\u09a1\u09bf\u09af\u09bc\u09be-\u09a4\u09c7 written in that " it is absurd to compare it with any other indian cinema ... pather panchali is pure cinema " -lrb- " it other by the indian films with compared to unreal ... pather panchali are pure film " -rrb- ."
-"-1736.297 the \u099f\u09be\u0987\u09ae\u09cd of 's of \u0987\u09a8\u09cd\u09a1\u09bf\u09af\u09bc\u09be-\u09a4\u09c7 written in the " it is absurd to compare it with any other indian cinema ... pather panchali is pure cinema " -lrb- " it is the by the indian films with compared to unreal ... pather panchali are pure film " -rrb- ."
-"-1736.355 the \u099f\u09be\u0987\u09ae\u09cd of 's of \u0987\u09a8\u09cd\u09a1\u09bf\u09af\u09bc\u09be-\u09a4\u09c7 written in that " it is absurd to compare it with any other indian cinema ... pather panchali is pure cinema " -lrb- " it in other by the indian films with compared to unreal ... pather panchali are pure film " -rrb- ."
-"-1736.363 the \u099f\u09be\u0987\u09ae\u09cd of 's of \u0987\u09a8\u09cd\u09a1\u09bf\u09af\u09bc\u09be-\u09a4\u09c7 written in the " it is absurd to compare it with any other indian cinema ... pather panchali is pure cinema , " -lrb- " it other by the indian films with compared to unreal ... pather panchali are pure film " -rrb- ."
-"-1736.461 the \u099f\u09be\u0987\u09ae\u09cd of 's of \u0987\u09a8\u09cd\u09a1\u09bf\u09af\u09bc\u09be-\u09a4\u09c7 written in the " it is absurd to compare it with any other indian cinema ... pather panchali is pure cinema " -lrb- " it other by the indian films with compared to unreal ... pather panchali is pure film " -rrb- ."
-"-1736.503 the \u099f\u09be\u0987\u09ae\u09cd of 's of \u0987\u09a8\u09cd\u09a1\u09bf\u09af\u09bc\u09be-\u09a4\u09c7 written in that " it is absurd to compare it with any other indian cinema ... pather panchali is pure cinema " -lrb- " it is the by the indian films with compared to unreal ... pather panchali are pure film " -rrb- ."
-"-1736.517 the \u099f\u09be\u0987\u09ae\u09cd of 's of \u0987\u09a8\u09cd\u09a1\u09bf\u09af\u09bc\u09be-\u09a4\u09c7 written in that , " it is absurd to compare it with any other indian cinema ... pather panchali is pure cinema " -lrb- " it other by the indian films with compared to unreal ... pather panchali are pure film " -rrb- ."
-"-1736.518 the \u099f\u09be\u0987\u09ae\u09cd of 's of \u0987\u09a8\u09cd\u09a1\u09bf\u09af\u09bc\u09be-\u09a4\u09c7 written in the " it is absurd to compare it with any other indian cinema ... pather panchali is pure cinema ' -lrb- " it other by the indian films with compared to unreal ... pather panchali are pure film " -rrb- ."
-"-345.817 after this 1953 , in the month of may nazrul and \u09aa\u09cd\u09b0\u09ae\u09c0\u09b2\u09be \u09a6\u09c7\u09ac\u09c0\u0995\u09c7 \u099a\u09bf\u0995\u09bf\u09ce\u09b8\u09be\u09b0 for london sent to ."
-"-345.874 after this 1953 on may month nazrul and \u09aa\u09cd\u09b0\u09ae\u09c0\u09b2\u09be \u09a6\u09c7\u09ac\u09c0\u0995\u09c7 \u099a\u09bf\u0995\u09bf\u09ce\u09b8\u09be\u09b0 for london sent to ."
-"-345.956 after that , 1953 may month nazrul and \u09aa\u09cd\u09b0\u09ae\u09c0\u09b2\u09be \u09a6\u09c7\u09ac\u09c0\u0995\u09c7 \u099a\u09bf\u0995\u09bf\u09ce\u09b8\u09be\u09b0 for london sent to ."
-"-346.040 after that 1953 on may month nazrul and \u09aa\u09cd\u09b0\u09ae\u09c0\u09b2\u09be \u09a6\u09c7\u09ac\u09c0\u0995\u09c7 \u099a\u09bf\u0995\u09bf\u09ce\u09b8\u09be\u09b0 for london sent to ."
-"-346.057 after this 1953 , in the month of may nazrul and \u09aa\u09cd\u09b0\u09ae\u09c0\u09b2\u09be \u09a6\u09c7\u09ac\u09c0\u0995\u09c7 \u099a\u09bf\u0995\u09bf\u09ce\u09b8\u09be\u09b0 for london sent to the ."
-"-346.113 after this 1953 on may month nazrul and \u09aa\u09cd\u09b0\u09ae\u09c0\u09b2\u09be \u09a6\u09c7\u09ac\u09c0\u0995\u09c7 \u099a\u09bf\u0995\u09bf\u09ce\u09b8\u09be\u09b0 for london sent to the ."
-"-346.160 after this 1953 , in the month of may najrul and \u09aa\u09cd\u09b0\u09ae\u09c0\u09b2\u09be \u09a6\u09c7\u09ac\u09c0\u0995\u09c7 \u099a\u09bf\u0995\u09bf\u09ce\u09b8\u09be\u09b0 for london sent to ."
-"-346.195 after that , 1953 may month nazrul and \u09aa\u09cd\u09b0\u09ae\u09c0\u09b2\u09be \u09a6\u09c7\u09ac\u09c0\u0995\u09c7 \u099a\u09bf\u0995\u09bf\u09ce\u09b8\u09be\u09b0 for london sent to the ."
-"-346.217 after this 1953 on may month najrul and \u09aa\u09cd\u09b0\u09ae\u09c0\u09b2\u09be \u09a6\u09c7\u09ac\u09c0\u0995\u09c7 \u099a\u09bf\u0995\u09bf\u09ce\u09b8\u09be\u09b0 for london sent to ."
-"-346.279 after that 1953 on may month nazrul and \u09aa\u09cd\u09b0\u09ae\u09c0\u09b2\u09be \u09a6\u09c7\u09ac\u09c0\u0995\u09c7 \u099a\u09bf\u0995\u09bf\u09ce\u09b8\u09be\u09b0 for london sent to the ."
-"-250.818 the southern and the east there is \u09ac\u09bf\u09b8\u09cd\u09a4\u09c0\u09b0\u09cd\u09a3 plain , west and on the north there are \u09b0\u09c1\u0995\u09cd\u09b7 mountain and mountain ."
-"-250.835 the southern and the east there is \u09ac\u09bf\u09b8\u09cd\u09a4\u09c0\u09b0\u09cd\u09a3 land , west and on the north there are \u09b0\u09c1\u0995\u09cd\u09b7 mountain and mountain ."
-"-251.000 the southern and the east there is \u09ac\u09bf\u09b8\u09cd\u09a4\u09c0\u09b0\u09cd\u09a3 plain , west and on the north there is \u09b0\u09c1\u0995\u09cd\u09b7 mountain and mountain ."
-"-251.017 the southern and the east there is \u09ac\u09bf\u09b8\u09cd\u09a4\u09c0\u09b0\u09cd\u09a3 land , west and on the north there is \u09b0\u09c1\u0995\u09cd\u09b7 mountain and mountain ."
-"-251.127 the southern and the east there is \u09ac\u09bf\u09b8\u09cd\u09a4\u09c0\u09b0\u09cd\u09a3 plain , west and in the north there are \u09b0\u09c1\u0995\u09cd\u09b7 mountain and mountain ."
-"-251.145 the southern and the east there is \u09ac\u09bf\u09b8\u09cd\u09a4\u09c0\u09b0\u09cd\u09a3 land , west and in the north there are \u09b0\u09c1\u0995\u09cd\u09b7 mountain and mountain ."
-"-251.255 the south and the east there is \u09ac\u09bf\u09b8\u09cd\u09a4\u09c0\u09b0\u09cd\u09a3 land , west and on the north there are \u09b0\u09c1\u0995\u09cd\u09b7 mountain and mountain ."
-"-251.309 the southern and the east there is \u09ac\u09bf\u09b8\u09cd\u09a4\u09c0\u09b0\u09cd\u09a3 plain , west and in the north there is \u09b0\u09c1\u0995\u09cd\u09b7 mountain and mountain ."
-"-251.317 the southern and the east there is \u09ac\u09bf\u09b8\u09cd\u09a4\u09c0\u09b0\u09cd\u09a3 plain , west and on the north are \u09b0\u09c1\u0995\u09cd\u09b7 mountain and mountain ."
-"-251.327 the southern and the east there is \u09ac\u09bf\u09b8\u09cd\u09a4\u09c0\u09b0\u09cd\u09a3 land , west and in the north there is \u09b0\u09c1\u0995\u09cd\u09b7 mountain and mountain ."
-"-104.738 \u099f\u09cd\u09b0\u09c7\u09a1\u09ae\u09be\u09b0\u09cd\u0995"
-"-450.843 \u09b2\u09b0\u09cd\u09a1 \u0993\u09af\u09bc\u09c7\u09b2\u09c7\u09b8\u09b2\u09bf\u09b0 -lrb- \u0997\u09ad\u09b0\u09cd\u09a8\u09b0-\u099c\u09c7\u09a8\u09be\u09b0\u09c7\u09b2 \u09e7\u09ed\u09ef\u09ed-\u09e7\u09ee\u09e6\u09eb -rrb- during his of the city are the ghotechilo"
-"-450.967 \u09b2\u09b0\u09cd\u09a1 \u0993\u09af\u09bc\u09c7\u09b2\u09c7\u09b8\u09b2\u09bf\u09b0 -lrb- \u0997\u09ad\u09b0\u09cd\u09a8\u09b0-\u099c\u09c7\u09a8\u09be\u09b0\u09c7\u09b2 \u09e7\u09ed\u09ef\u09ed-\u09e7\u09ee\u09e6\u09eb -rrb- during his of the city are the already happened"
-"-451.585 \u09b2\u09b0\u09cd\u09a1 \u0993\u09af\u09bc\u09c7\u09b2\u09c7\u09b8\u09b2\u09bf\u09b0 -lrb- \u0997\u09ad\u09b0\u09cd\u09a8\u09b0-\u099c\u09c7\u09a8\u09be\u09b0\u09c7\u09b2 \u09e7\u09ed\u09ef\u09ed-\u09e7\u09ee\u09e6\u09eb -rrb- during his of the city are increased ghotechilo"
-"-451.690 \u09b2\u09b0\u09cd\u09a1 \u0993\u09af\u09bc\u09c7\u09b2\u09c7\u09b8\u09b2\u09bf\u09b0 -lrb- \u0997\u09ad\u09b0\u09cd\u09a8\u09b0-\u099c\u09c7\u09a8\u09be\u09b0\u09c7\u09b2 \u09e7\u09ed\u09ef\u09ed-\u09e7\u09ee\u09e6\u09eb -rrb- during his city are the ghotechilo"
-"-451.813 \u09b2\u09b0\u09cd\u09a1 \u0993\u09af\u09bc\u09c7\u09b2\u09c7\u09b8\u09b2\u09bf\u09b0 -lrb- \u0997\u09ad\u09b0\u09cd\u09a8\u09b0-\u099c\u09c7\u09a8\u09be\u09b0\u09c7\u09b2 \u09e7\u09ed\u09ef\u09ed-\u09e7\u09ee\u09e6\u09eb -rrb- during his city are the already happened"
-"-452.090 \u09b2\u09b0\u09cd\u09a1 \u0993\u09af\u09bc\u09c7\u09b2\u09c7\u09b8\u09b2\u09bf\u09b0 -lrb- \u0997\u09ad\u09b0\u09cd\u09a8\u09b0-\u099c\u09c7\u09a8\u09be\u09b0\u09c7\u09b2 \u09e7\u09ed\u09ef\u09ed-\u09e7\u09ee\u09e6\u09eb -rrb- during his in the city are the ghotechilo"
-"-452.202 \u09b2\u09b0\u09cd\u09a1 \u0993\u09af\u09bc\u09c7\u09b2\u09c7\u09b8\u09b2\u09bf\u09b0 -lrb- \u0997\u09ad\u09b0\u09cd\u09a8\u09b0-\u099c\u09c7\u09a8\u09be\u09b0\u09c7\u09b2 \u09e7\u09ed\u09ef\u09ed-\u09e7\u09ee\u09e6\u09eb -rrb- during his of the city are increased already happened"
-"-452.213 \u09b2\u09b0\u09cd\u09a1 \u0993\u09af\u09bc\u09c7\u09b2\u09c7\u09b8\u09b2\u09bf\u09b0 -lrb- \u0997\u09ad\u09b0\u09cd\u09a8\u09b0-\u099c\u09c7\u09a8\u09be\u09b0\u09c7\u09b2 \u09e7\u09ed\u09ef\u09ed-\u09e7\u09ee\u09e6\u09eb -rrb- during his in the city are the already happened"
-"-452.856 \u09b2\u09b0\u09cd\u09a1 \u0993\u09af\u09bc\u09c7\u09b2\u09c7\u09b8\u09b2\u09bf\u09b0 -lrb- the \u0997\u09ad\u09b0\u09cd\u09a8\u09b0-\u099c\u09c7\u09a8\u09be\u09b0\u09c7\u09b2 \u09e7\u09ed\u09ef\u09ed-\u09e7\u09ee\u09e6\u09eb -rrb- during his of the city are the ghotechilo"
-"-452.980 \u09b2\u09b0\u09cd\u09a1 \u0993\u09af\u09bc\u09c7\u09b2\u09c7\u09b8\u09b2\u09bf\u09b0 -lrb- the \u0997\u09ad\u09b0\u09cd\u09a8\u09b0-\u099c\u09c7\u09a8\u09be\u09b0\u09c7\u09b2 \u09e7\u09ed\u09ef\u09ed-\u09e7\u09ee\u09e6\u09eb -rrb- during his of the city are the already happened"
-"-31.095 many important and real problem to solve complex number apariharza"
-"-31.408 many important and real problem to solve complex number extremely necessary"
-"-31.447 many important and real problem to solve complex number inevitable"
-"-31.534 many important and real problem to for complex number extremely necessary"
-"-31.572 many important and real problem to for complex number inevitable"
-"-31.603 many important and real problems to solve complex number apariharza"
-"-31.917 many important and real problems to solve complex number extremely necessary"
-"-31.920 in many important and real problem to solve complex number extremely necessary"
-"-31.955 many important and real problems to solve complex number inevitable"
-"-32.043 many important and real problems to for complex number extremely necessary"
-"-56.424 the big bang is a famous result are , in the state of the universe so and the recent state from the separate ."
-"-56.531 the big bang is a famous result are , in the state of the universe so and the recent situation from the separate ."
-"-56.639 the big bang is a famous result are , in the state of the universe so and recent state from the separate ."
-"-56.704 the big bang is a famous result is , in the state of the universe so and the recent state from the separate ."
-"-56.811 the big bang is a famous result is , in the state of the universe so and the recent situation from the separate ."
-"-56.919 the big bang is a famous result is , in the state of the universe so and recent state from the separate ."
-"-56.945 the big bang is a famous result are , in the state so and the recent state from the separate ."
-"-57.052 the big bang is a famous result are , in the state so and the recent situation from the separate ."
-"-57.133 the big bang is a famous result are , in the state of the universe so and the recent state from the different ."
-"-57.160 the big bang is a famous result are , in the state so and recent state from the separate ."
-"-106.565 windows \u09ae\u09bf\u09b2\u09bf\u09a8\u09bf\u09af\u09bc\u09be\u09ae"
-"-110.367 of windows \u09ae\u09bf\u09b2\u09bf\u09a8\u09bf\u09af\u09bc\u09be\u09ae"
-"-113.483 the windows \u09ae\u09bf\u09b2\u09bf\u09a8\u09bf\u09af\u09bc\u09be\u09ae"
-"-114.357 of the windows \u09ae\u09bf\u09b2\u09bf\u09a8\u09bf\u09af\u09bc\u09be\u09ae"
-"-209.243 \u0989\u0987\u09a8\u09cd\u09a1\u09cb\u099c \u09ae\u09bf\u09b2\u09bf\u09a8\u09bf\u09af\u09bc\u09be\u09ae"
-"-223.409 rabindranath , in more than one \u09b6\u09c8\u09b2\u09c0 \u0986\u09af\u09bc\u09a4\u09cd\u09a4\u09cd\u09ac was ."
-"-223.899 rabindranath , in more than one \u09b6\u09c8\u09b2\u09c0 \u0986\u09af\u09bc\u09a4\u09cd\u09a4\u09cd\u09ac by ."
-"-223.979 rabindranath , in more than one \u09b6\u09c8\u09b2\u09c0 \u0986\u09af\u09bc\u09a4\u09cd\u09a4\u09cd\u09ac a ."
-"-224.217 rabindranath however , more than one \u09b6\u09c8\u09b2\u09c0 \u0986\u09af\u09bc\u09a4\u09cd\u09a4\u09cd\u09ac was ."
-"-224.221 rabindranath , in more than one \u09b6\u09c8\u09b2\u09c0 \u0986\u09af\u09bc\u09a4\u09cd\u09a4\u09cd\u09ac was being ."
-"-224.482 rabindranath , more than one \u09b6\u09c8\u09b2\u09c0 \u0986\u09af\u09bc\u09a4\u09cd\u09a4\u09cd\u09ac was ."
-"-224.552 rabindranath , in many \u09b6\u09c8\u09b2\u09c0 \u0986\u09af\u09bc\u09a4\u09cd\u09a4\u09cd\u09ac was ."
-"-224.584 rabindranath , in a number of \u09b6\u09c8\u09b2\u09c0 \u0986\u09af\u09bc\u09a4\u09cd\u09a4\u09cd\u09ac was ."
-"-224.720 however , rabindranath more than one \u09b6\u09c8\u09b2\u09c0 \u0986\u09af\u09bc\u09a4\u09cd\u09a4\u09cd\u09ac was ."
-"-224.729 rabindranath , in multiple \u09b6\u09c8\u09b2\u09c0 \u0986\u09af\u09bc\u09a4\u09cd\u09a4\u09cd\u09ac was ."
-"-2.036 labor economy ."
-"-2.248 labour economics"
-"-2.358 labor economy"
-"-4.475 labor economics"
-"-4.807 labour economy"
-"-5.625 labor economy of"
-"-28.193 britain at the same time in the world of the and his economic power was ."
-"-28.201 britain at some point of time the world of the and his economic power was ."
-"-28.256 britain at the same time in the world of the main and his economic power was ."
-"-28.263 britain at some point of time the world of the main and his economic power was ."
-"-28.308 britain at some point of time the world the and his economic power was ."
-"-28.467 britain at some point of time in the world of the and his economic power was ."
-"-28.530 britain at some point of time in the world of the main and his economic power was ."
-"-28.540 britain at a time in the world of the and his economic power was ."
-"-28.715 britain at the same time in the world the and his economic power was ."
-"-29.089 britain at the same time in the world of the and his economical power was ."
-"-279.788 the military rule movement against and the \u0997\u09cb\u09b7\u09cd\u09a0\u09c0\u0997\u09a4 was against protest and movement of the bengalis independence on \u09a7\u09be\u09ac\u09bf\u09a4 to for he widely praised ."
-"-279.948 the military rule movement against and the \u0997\u09cb\u09b7\u09cd\u09a0\u09c0\u0997\u09a4 was protest against and movement of the bengalis independence on \u09a7\u09be\u09ac\u09bf\u09a4 to for he widely praised ."
-"-279.988 the military rule movement against and pakistan \u0997\u09cb\u09b7\u09cd\u09a0\u09c0\u0997\u09a4 was against protest and movement of the bengalis independence on \u09a7\u09be\u09ac\u09bf\u09a4 to for he widely praised ."
-"-279.993 the military rule movement against and the \u0997\u09cb\u09b7\u09cd\u09a0\u09c0\u0997\u09a4 was against protest and of the bengalis movement independence on \u09a7\u09be\u09ac\u09bf\u09a4 to for he widely praised ."
-"-280.102 the military rule movement against and the \u0997\u09cb\u09b7\u09cd\u09a0\u09c0\u0997\u09a4 was against protest and of the bengalis movement of on \u09a7\u09be\u09ac\u09bf\u09a4 to for he widely praised ."
-"-280.103 the military rule movement against and the \u0997\u09cb\u09b7\u09cd\u09a0\u09c0\u0997\u09a4 was against protest and of the bengalis movement of independence on \u09a7\u09be\u09ac\u09bf\u09a4 to for he widely praised ."
-"-280.147 the military rule movement against and pakistan \u0997\u09cb\u09b7\u09cd\u09a0\u09c0\u0997\u09a4 was protest against and movement of the bengalis independence on \u09a7\u09be\u09ac\u09bf\u09a4 to for he widely praised ."
-"-280.152 the military rule movement against and the \u0997\u09cb\u09b7\u09cd\u09a0\u09c0\u0997\u09a4 was protest against and of the bengalis movement independence on \u09a7\u09be\u09ac\u09bf\u09a4 to for he widely praised ."
-"-280.192 the military rule movement against and pakistan \u0997\u09cb\u09b7\u09cd\u09a0\u09c0\u0997\u09a4 was against protest and of the bengalis movement independence on \u09a7\u09be\u09ac\u09bf\u09a4 to for he widely praised ."
-"-280.219 the military rule movement against and the \u0997\u09cb\u09b7\u09cd\u09a0\u09c0\u0997\u09a4 inequality first protest against and movement of the bengalis independence on \u09a7\u09be\u09ac\u09bf\u09a4 to for he widely praised ."
-"-187.414 is mentioned here is required that were internet and world wide web \u2019 s synonymous word to be but actually \u09b6\u09ac\u09cd\u09a6\u09a6\u09cd\u09ac\u09af\u09bc different subject to the ."
-"-187.625 here mentioned is that were internet and world wide web \u2019 s synonymous word to be but actually \u09b6\u09ac\u09cd\u09a6\u09a6\u09cd\u09ac\u09af\u09bc different subject to the ."
-"-187.629 is mentioned here is required that were internet and world wide web \u2019 s synonymous word as considered as but actually \u09b6\u09ac\u09cd\u09a6\u09a6\u09cd\u09ac\u09af\u09bc different subject to the ."
-"-187.840 here mentioned is that were internet and world wide web \u2019 s synonymous word as considered as but actually \u09b6\u09ac\u09cd\u09a6\u09a6\u09cd\u09ac\u09af\u09bc different subject to the ."
-"-187.840 is mentioned here is required that were internet and world wide web \u2019 s synonymous word to be but actually \u09b6\u09ac\u09cd\u09a6\u09a6\u09cd\u09ac\u09af\u09bc different subject to ."
-"-187.927 is mentioned here is required that were internet and world wide web \u2019 s synonymous word to be but actually \u09b6\u09ac\u09cd\u09a6\u09a6\u09cd\u09ac\u09af\u09bc different subject indicates the ."
-"-187.968 here mentioned is required that were internet and world wide web \u2019 s synonymous word to be but actually \u09b6\u09ac\u09cd\u09a6\u09a6\u09cd\u09ac\u09af\u09bc different subject to the ."
-"-188.050 here mentioned is that were internet and world wide web \u2019 s synonymous word to be but actually \u09b6\u09ac\u09cd\u09a6\u09a6\u09cd\u09ac\u09af\u09bc different subject to ."
-"-188.055 is mentioned here is required that were internet and world wide web \u2019 s synonymous word as considered as but actually \u09b6\u09ac\u09cd\u09a6\u09a6\u09cd\u09ac\u09af\u09bc different subject to ."
-"-188.063 is mentioned here is required that were internet and world wide web \u2019 s synonymous word to be though actually \u09b6\u09ac\u09cd\u09a6\u09a6\u09cd\u09ac\u09af\u09bc different subject to the ."
-"-38.983 . z is related polar co-ordinate two is r = ."
-"-39.102 . z is related polar co-ordinate two are r = ."
-"-39.400 . z its related polar co-ordinate two is r = ."
-"-39.519 . z its related polar co-ordinate two are r = ."
-"-39.683 . z it related polar co-ordinate two are r = ."
-"-39.693 . z it 's related polar co-ordinate two are r = ."
-"-39.807 . z the related polar co-ordinate two are r = ."
-"-40.038 . z is the related polar co-ordinate two is r = ."
-"-40.546 . z is the related polar co-ordinate two are r = ."
-"0.257 november"
-"-3.433 november ."
-"-5.024 november of"
-"-345.087 1972 \u0996\u09cd\u09b0\u09c0\u09b8\u09cd\u099f\u09be\u09ac\u09cd\u09a6\u09c7 then \u0986\u09b0\u09aa\u09be\u09a8\u09c7\u099f\u09c7 first \u0987\u09b2\u09c7\u0995\u09cd\u099f\u09cd\u09b0\u09a8\u09bf\u0995 mail to to ."
-"-345.088 1972 \u0996\u09cd\u09b0\u09c0\u09b8\u09cd\u099f\u09be\u09ac\u09cd\u09a6\u09c7 then \u0986\u09b0\u09aa\u09be\u09a8\u09c7\u099f\u09c7 first \u0987\u09b2\u09c7\u0995\u09cd\u099f\u09cd\u09b0\u09a8\u09bf\u0995 mail to be the ."
-"-345.346 1972 \u0996\u09cd\u09b0\u09c0\u09b8\u09cd\u099f\u09be\u09ac\u09cd\u09a6\u09c7 then \u0986\u09b0\u09aa\u09be\u09a8\u09c7\u099f\u09c7 first ever \u0987\u09b2\u09c7\u0995\u09cd\u099f\u09cd\u09b0\u09a8\u09bf\u0995 mail to to ."
-"-345.348 1972 \u0996\u09cd\u09b0\u09c0\u09b8\u09cd\u099f\u09be\u09ac\u09cd\u09a6\u09c7 then \u0986\u09b0\u09aa\u09be\u09a8\u09c7\u099f\u09c7 first ever \u0987\u09b2\u09c7\u0995\u09cd\u099f\u09cd\u09b0\u09a8\u09bf\u0995 mail to be the ."
-"-345.404 1972 \u0996\u09cd\u09b0\u09c0\u09b8\u09cd\u099f\u09be\u09ac\u09cd\u09a6\u09c7 " \u0986\u09b0\u09aa\u09be\u09a8\u09c7\u099f\u09c7 first \u0987\u09b2\u09c7\u0995\u09cd\u099f\u09cd\u09b0\u09a8\u09bf\u0995 mail to to ."
-"-345.406 1972 \u0996\u09cd\u09b0\u09c0\u09b8\u09cd\u099f\u09be\u09ac\u09cd\u09a6\u09c7 " \u0986\u09b0\u09aa\u09be\u09a8\u09c7\u099f\u09c7 first \u0987\u09b2\u09c7\u0995\u09cd\u099f\u09cd\u09b0\u09a8\u09bf\u0995 mail to be the ."
-"-345.424 1972 \u0996\u09cd\u09b0\u09c0\u09b8\u09cd\u099f\u09be\u09ac\u09cd\u09a6\u09c7 then \u0986\u09b0\u09aa\u09be\u09a8\u09c7\u099f\u09c7 first \u0987\u09b2\u09c7\u0995\u09cd\u099f\u09cd\u09b0\u09a8\u09bf\u0995 mail to be ."
-"-345.504 1972 \u0996\u09cd\u09b0\u09c0\u09b8\u09cd\u099f\u09be\u09ac\u09cd\u09a6\u09c7 then professor \u0986\u09b0\u09aa\u09be\u09a8\u09c7\u099f\u09c7 first \u0987\u09b2\u09c7\u0995\u09cd\u099f\u09cd\u09b0\u09a8\u09bf\u0995 mail to to ."
-"-345.505 1972 \u0996\u09cd\u09b0\u09c0\u09b8\u09cd\u099f\u09be\u09ac\u09cd\u09a6\u09c7 then professor \u0986\u09b0\u09aa\u09be\u09a8\u09c7\u099f\u09c7 first \u0987\u09b2\u09c7\u0995\u09cd\u099f\u09cd\u09b0\u09a8\u09bf\u0995 mail to be the ."
-"-345.587 1972 \u0996\u09cd\u09b0\u09c0\u09b8\u09cd\u099f\u09be\u09ac\u09cd\u09a6\u09c7 previously called \u0986\u09b0\u09aa\u09be\u09a8\u09c7\u099f\u09c7 first \u0987\u09b2\u09c7\u0995\u09cd\u099f\u09cd\u09b0\u09a8\u09bf\u0995 mail to to ."
-"-464.793 \u099c\u09c0\u09ac science that \u09b6\u09be\u0996\u09be\u09af\u09bc fungi and its practical subject about to the he was \u099b\u09a4\u09cd\u09b0\u09be\u0995\u09ac\u09bf\u09a6\u09cd\u09af\u09be -lrb- mycology -rrb-"
-"-464.821 \u099c\u09c0\u09ac science that \u09b6\u09be\u0996\u09be\u09af\u09bc fungi and its practical issues about to the he was \u099b\u09a4\u09cd\u09b0\u09be\u0995\u09ac\u09bf\u09a6\u09cd\u09af\u09be -lrb- mycology -rrb-"
-"-464.935 \u099c\u09c0\u09ac science that \u09b6\u09be\u0996\u09be\u09af\u09bc fungi and its practical subject about the to he was \u099b\u09a4\u09cd\u09b0\u09be\u0995\u09ac\u09bf\u09a6\u09cd\u09af\u09be -lrb- mycology -rrb-"
-"-464.963 \u099c\u09c0\u09ac science that \u09b6\u09be\u0996\u09be\u09af\u09bc fungi and its practical issues about the to he was \u099b\u09a4\u09cd\u09b0\u09be\u0995\u09ac\u09bf\u09a6\u09cd\u09af\u09be -lrb- mycology -rrb-"
-"-465.138 \u099c\u09c0\u09ac science that \u09b6\u09be\u0996\u09be\u09af\u09bc fungi and its practical issue about to the he was \u099b\u09a4\u09cd\u09b0\u09be\u0995\u09ac\u09bf\u09a6\u09cd\u09af\u09be -lrb- mycology -rrb-"
-"-465.198 \u099c\u09c0\u09ac science that \u09b6\u09be\u0996\u09be\u09af\u09bc fungi and its practical issues with about to he was \u099b\u09a4\u09cd\u09b0\u09be\u0995\u09ac\u09bf\u09a6\u09cd\u09af\u09be -lrb- mycology -rrb-"
-"-465.199 \u099c\u09c0\u09ac science that \u09b6\u09be\u0996\u09be\u09af\u09bc fungi and the practical subject about to the he was \u099b\u09a4\u09cd\u09b0\u09be\u0995\u09ac\u09bf\u09a6\u09cd\u09af\u09be -lrb- mycology -rrb-"
-"-465.227 \u099c\u09c0\u09ac science that \u09b6\u09be\u0996\u09be\u09af\u09bc fungi and the practical issues about to the he was \u099b\u09a4\u09cd\u09b0\u09be\u0995\u09ac\u09bf\u09a6\u09cd\u09af\u09be -lrb- mycology -rrb-"
-"-465.280 \u099c\u09c0\u09ac science that \u09b6\u09be\u0996\u09be\u09af\u09bc fungi and its practical issue about the to he was \u099b\u09a4\u09cd\u09b0\u09be\u0995\u09ac\u09bf\u09a6\u09cd\u09af\u09be -lrb- mycology -rrb-"
-"-465.303 \u099c\u09c0\u09ac science that \u09b6\u09be\u0996\u09be\u09af\u09bc fungus and its practical subject about to the he was \u099b\u09a4\u09cd\u09b0\u09be\u0995\u09ac\u09bf\u09a6\u09cd\u09af\u09be -lrb- mycology -rrb-"
-"-479.857 water river from \u0989\u09a0\u09be\u09a8\u09cb it was a few purs \u09a6\u09bf\u09af\u09bc\u09c7- \u09a6\u09a1\u09bc\u09bf and \u09ac\u09be\u09b2\u099f\u09bf\u09b0 through water animal by can of world in a method ."
-"-479.921 water river from \u0989\u09a0\u09be\u09a8\u09cb it was a few purs \u09a6\u09bf\u09af\u09bc\u09c7- \u09a6\u09a1\u09bc\u09bf and \u09ac\u09be\u09b2\u099f\u09bf\u09b0 through the water animal by can of world in a method ."
-"-479.965 water river from \u0989\u09a0\u09be\u09a8\u09cb it was a few purs \u09a6\u09bf\u09af\u09bc\u09c7- \u09a6\u09a1\u09bc\u09bf and \u09ac\u09be\u09b2\u099f\u09bf\u09b0 through water animal by can of world a method ."
-"-479.974 water river from \u0989\u09a0\u09be\u09a8\u09cb it was a few purs \u09a6\u09bf\u09af\u09bc\u09c7- \u09a6\u09a1\u09bc\u09bf and \u09ac\u09be\u09b2\u099f\u09bf\u09b0 through water animal by can world in a method ."
-"-480.007 water river from \u0989\u09a0\u09be\u09a8\u09cb it was a few purs \u09a6\u09bf\u09af\u09bc\u09c7- \u09a6\u09a1\u09bc\u09bf and \u09ac\u09be\u09b2\u099f\u09bf\u09b0 through water animal by used of world in a method ."
-"-480.029 water river from \u0989\u09a0\u09be\u09a8\u09cb it was a few purs \u09a6\u09bf\u09af\u09bc\u09c7- \u09a6\u09a1\u09bc\u09bf and \u09ac\u09be\u09b2\u099f\u09bf\u09b0 through the water animal by can of world a method ."
-"-480.029 water river from \u0989\u09a0\u09be\u09a8\u09cb it was a few purs \u09a6\u09bf\u09af\u09bc\u09c7- \u09a6\u09a1\u09bc\u09bf and \u09ac\u09be\u09b2\u099f\u09bf\u09b0 through water animal by can bhola 's a method ."
-"-480.038 water river from \u0989\u09a0\u09be\u09a8\u09cb it was a few purs \u09a6\u09bf\u09af\u09bc\u09c7- \u09a6\u09a1\u09bc\u09bf and \u09ac\u09be\u09b2\u099f\u09bf\u09b0 through the water animal by can world in a method ."
-"-480.071 water river from \u0989\u09a0\u09be\u09a8\u09cb it was a few purs \u09a6\u09bf\u09af\u09bc\u09c7- \u09a6\u09a1\u09bc\u09bf and \u09ac\u09be\u09b2\u099f\u09bf\u09b0 through the water animal by used of world in a method ."
-"-480.081 water river from \u0989\u09a0\u09be\u09a8\u09cb it was a few purs \u09a6\u09bf\u09af\u09bc\u09c7- \u09a6\u09a1\u09bc\u09bf and \u09ac\u09be\u09b2\u099f\u09bf\u09b0 through water animal by can world a method ."
-"-37.853 among these there tribal dance , lokuj dance , classical dance , etc ."
-"-38.404 among these there are tribal dance , lokuj dance , classical dance , etc ."
-"-38.447 among these there tribal dance , influences impact dance , classical dance , etc ."
-"-38.605 among them are tribal dance , lokuj dance , classical dance , etc ."
-"-38.918 among these there tribal dance , lokuj dance , the classical dance , etc ."
-"-38.997 among these there are tribal dance , influences impact dance , classical dance , etc ."
-"-39.468 among these there are tribal dance , lokuj dance , the classical dance , etc ."
-"-132.632 the oldest literature at first \u09ae\u09cc\u0996\u09bf\u0995\u09ad\u09be\u09ac\u09c7 and later written form is the ."
-"-132.742 the oldest literature at first \u09ae\u09cc\u0996\u09bf\u0995\u09ad\u09be\u09ac\u09c7 and later written form is in the ."
-"-132.785 the oldest literature at first \u09ae\u09cc\u0996\u09bf\u0995\u09ad\u09be\u09ac\u09c7 and later written form is ."
-"-133.224 the oldest literature at first \u09ae\u09cc\u0996\u09bf\u0995\u09ad\u09be\u09ac\u09c7 and later written in the form is the ."
-"-133.319 the oldest literature at first \u09ae\u09cc\u0996\u09bf\u0995\u09ad\u09be\u09ac\u09c7 and later written form is in ."
-"-133.334 the oldest literature at first \u09ae\u09cc\u0996\u09bf\u0995\u09ad\u09be\u09ac\u09c7 and later written in the form is in the ."
-"-133.376 the oldest literature at first \u09ae\u09cc\u0996\u09bf\u0995\u09ad\u09be\u09ac\u09c7 and later written in the form is ."
-"-133.443 the oldest literature at first \u09ae\u09cc\u0996\u09bf\u0995\u09ad\u09be\u09ac\u09c7 and later written form the ."
-"-133.812 the oldest literature at first \u09ae\u09cc\u0996\u09bf\u0995\u09ad\u09be\u09ac\u09c7 and later written in the ."
-"-133.910 the oldest literature at first \u09ae\u09cc\u0996\u09bf\u0995\u09ad\u09be\u09ac\u09c7 and later written in the form is in ."
-"-699.161 in 1989 , the \u0997\u09a3\u09b6\u09a4\u09cd\u09b0\u09c1 in the film his conducted \u09a4\u09c1\u09b2\u09a8\u09be\u09ae\u09c2\u09b2\u0995\u09ad\u09be\u09ac\u09c7 \u09a6\u09c1\u09b0\u09cd\u09ac\u09b2 and this \u09a6\u09c0\u09b0\u09cd\u0998\u09a6\u09bf\u09a8\u09c7\u09b0 \u0985\u09b8\u09c1\u09b8\u09cd\u09a5\u09a4\u09be\u09b6\u09c7\u09b7\u09c7 back had come after of satyajit 's films , \u09aa\u09c1\u09a8\u09b0\u09cd\u09aa\u09cd\u09b0\u099a\u09c7\u09b7\u09cd\u099f\u09be a is considered as ."
-"-699.174 in 1989 , the \u0997\u09a3\u09b6\u09a4\u09cd\u09b0\u09c1 in this film his conducted \u09a4\u09c1\u09b2\u09a8\u09be\u09ae\u09c2\u09b2\u0995\u09ad\u09be\u09ac\u09c7 \u09a6\u09c1\u09b0\u09cd\u09ac\u09b2 and this \u09a6\u09c0\u09b0\u09cd\u0998\u09a6\u09bf\u09a8\u09c7\u09b0 \u0985\u09b8\u09c1\u09b8\u09cd\u09a5\u09a4\u09be\u09b6\u09c7\u09b7\u09c7 back had come after of satyajit 's films , \u09aa\u09c1\u09a8\u09b0\u09cd\u09aa\u09cd\u09b0\u099a\u09c7\u09b7\u09cd\u099f\u09be a is considered as ."
-"-699.330 in 1989 , the \u0997\u09a3\u09b6\u09a4\u09cd\u09b0\u09c1 in the film his conducted \u09a4\u09c1\u09b2\u09a8\u09be\u09ae\u09c2\u09b2\u0995\u09ad\u09be\u09ac\u09c7 \u09a6\u09c1\u09b0\u09cd\u09ac\u09b2 and it \u09a6\u09c0\u09b0\u09cd\u0998\u09a6\u09bf\u09a8\u09c7\u09b0 \u0985\u09b8\u09c1\u09b8\u09cd\u09a5\u09a4\u09be\u09b6\u09c7\u09b7\u09c7 back had come after of satyajit 's films , \u09aa\u09c1\u09a8\u09b0\u09cd\u09aa\u09cd\u09b0\u099a\u09c7\u09b7\u09cd\u099f\u09be a is considered as ."
-"-699.343 in 1989 , the \u0997\u09a3\u09b6\u09a4\u09cd\u09b0\u09c1 in this film his conducted \u09a4\u09c1\u09b2\u09a8\u09be\u09ae\u09c2\u09b2\u0995\u09ad\u09be\u09ac\u09c7 \u09a6\u09c1\u09b0\u09cd\u09ac\u09b2 and it \u09a6\u09c0\u09b0\u09cd\u0998\u09a6\u09bf\u09a8\u09c7\u09b0 \u0985\u09b8\u09c1\u09b8\u09cd\u09a5\u09a4\u09be\u09b6\u09c7\u09b7\u09c7 back had come after of satyajit 's films , \u09aa\u09c1\u09a8\u09b0\u09cd\u09aa\u09cd\u09b0\u099a\u09c7\u09b7\u09cd\u099f\u09be a is considered as ."
-"-699.580 in 1989 , the \u0997\u09a3\u09b6\u09a4\u09cd\u09b0\u09c1 in the film of his conducted \u09a4\u09c1\u09b2\u09a8\u09be\u09ae\u09c2\u09b2\u0995\u09ad\u09be\u09ac\u09c7 \u09a6\u09c1\u09b0\u09cd\u09ac\u09b2 and this \u09a6\u09c0\u09b0\u09cd\u0998\u09a6\u09bf\u09a8\u09c7\u09b0 \u0985\u09b8\u09c1\u09b8\u09cd\u09a5\u09a4\u09be\u09b6\u09c7\u09b7\u09c7 back had come after of satyajit 's films , \u09aa\u09c1\u09a8\u09b0\u09cd\u09aa\u09cd\u09b0\u099a\u09c7\u09b7\u09cd\u099f\u09be a is considered as ."
-"-699.725 in 1989 , the \u0997\u09a3\u09b6\u09a4\u09cd\u09b0\u09c1 in the film his conducted \u09a4\u09c1\u09b2\u09a8\u09be\u09ae\u09c2\u09b2\u0995\u09ad\u09be\u09ac\u09c7 \u09a6\u09c1\u09b0\u09cd\u09ac\u09b2 and this \u09a6\u09c0\u09b0\u09cd\u0998\u09a6\u09bf\u09a8\u09c7\u09b0 \u0985\u09b8\u09c1\u09b8\u09cd\u09a5\u09a4\u09be\u09b6\u09c7\u09b7\u09c7 back had come after of satyajit 's films building \u09aa\u09c1\u09a8\u09b0\u09cd\u09aa\u09cd\u09b0\u099a\u09c7\u09b7\u09cd\u099f\u09be a is considered as ."
-"-699.727 in 1989 , the \u0997\u09a3\u09b6\u09a4\u09cd\u09b0\u09c1 in this film of his conducted \u09a4\u09c1\u09b2\u09a8\u09be\u09ae\u09c2\u09b2\u0995\u09ad\u09be\u09ac\u09c7 \u09a6\u09c1\u09b0\u09cd\u09ac\u09b2 and this \u09a6\u09c0\u09b0\u09cd\u0998\u09a6\u09bf\u09a8\u09c7\u09b0 \u0985\u09b8\u09c1\u09b8\u09cd\u09a5\u09a4\u09be\u09b6\u09c7\u09b7\u09c7 back had come after of satyajit 's films , \u09aa\u09c1\u09a8\u09b0\u09cd\u09aa\u09cd\u09b0\u099a\u09c7\u09b7\u09cd\u099f\u09be a is considered as ."
-"-699.739 in 1989 , the \u0997\u09a3\u09b6\u09a4\u09cd\u09b0\u09c1 in this film his conducted \u09a4\u09c1\u09b2\u09a8\u09be\u09ae\u09c2\u09b2\u0995\u09ad\u09be\u09ac\u09c7 \u09a6\u09c1\u09b0\u09cd\u09ac\u09b2 and this \u09a6\u09c0\u09b0\u09cd\u0998\u09a6\u09bf\u09a8\u09c7\u09b0 \u0985\u09b8\u09c1\u09b8\u09cd\u09a5\u09a4\u09be\u09b6\u09c7\u09b7\u09c7 back had come after of satyajit 's films building \u09aa\u09c1\u09a8\u09b0\u09cd\u09aa\u09cd\u09b0\u099a\u09c7\u09b7\u09cd\u099f\u09be a is considered as ."
-"-699.749 in 1989 , the \u0997\u09a3\u09b6\u09a4\u09cd\u09b0\u09c1 in the film of his conducted \u09a4\u09c1\u09b2\u09a8\u09be\u09ae\u09c2\u09b2\u0995\u09ad\u09be\u09ac\u09c7 \u09a6\u09c1\u09b0\u09cd\u09ac\u09b2 and it \u09a6\u09c0\u09b0\u09cd\u0998\u09a6\u09bf\u09a8\u09c7\u09b0 \u0985\u09b8\u09c1\u09b8\u09cd\u09a5\u09a4\u09be\u09b6\u09c7\u09b7\u09c7 back had come after of satyajit 's films , \u09aa\u09c1\u09a8\u09b0\u09cd\u09aa\u09cd\u09b0\u099a\u09c7\u09b7\u09cd\u099f\u09be a is considered as ."
-"-699.773 in 1989 , the \u0997\u09a3\u09b6\u09a4\u09cd\u09b0\u09c1 in the film his between \u09a4\u09c1\u09b2\u09a8\u09be\u09ae\u09c2\u09b2\u0995\u09ad\u09be\u09ac\u09c7 \u09a6\u09c1\u09b0\u09cd\u09ac\u09b2 and this \u09a6\u09c0\u09b0\u09cd\u0998\u09a6\u09bf\u09a8\u09c7\u09b0 \u0985\u09b8\u09c1\u09b8\u09cd\u09a5\u09a4\u09be\u09b6\u09c7\u09b7\u09c7 back had come after of satyajit 's films , \u09aa\u09c1\u09a8\u09b0\u09cd\u09aa\u09cd\u09b0\u099a\u09c7\u09b7\u09cd\u099f\u09be a is considered as ."
-"-110.735 the \u09ac\u09b2\u09ac\u09bf\u09a6\u09cd\u09af\u09be"
-"-111.085 mathematical \u09ac\u09b2\u09ac\u09bf\u09a6\u09cd\u09af\u09be"
-"-111.198 \u2022 \u09ac\u09b2\u09ac\u09bf\u09a6\u09cd\u09af\u09be"
-"-114.066 . \u09ac\u09b2\u09ac\u09bf\u09a6\u09cd\u09af\u09be"
-"-115.120 mathematical theory . \u09ac\u09b2\u09ac\u09bf\u09a6\u09cd\u09af\u09be"
-"-116.452 the mathematical \u09ac\u09b2\u09ac\u09bf\u09a6\u09cd\u09af\u09be"
-"-117.545 of the mathematical \u09ac\u09b2\u09ac\u09bf\u09a6\u09cd\u09af\u09be"
-"-133.431 other \u09b8\u09cd\u09ac\u09a4\u09cd\u09a4\u09cd\u09ac-\u09b8\u0982\u09b0\u0995\u09cd\u09b7\u09bf\u09a4 operating system for windows and mac os to linux in different different ."
-"-133.448 other \u09b8\u09cd\u09ac\u09a4\u09cd\u09a4\u09cd\u09ac-\u09b8\u0982\u09b0\u0995\u09cd\u09b7\u09bf\u09a4 operating system like windows and mac os to linux in different different ."
-"-133.827 other \u09b8\u09cd\u09ac\u09a4\u09cd\u09a4\u09cd\u09ac-\u09b8\u0982\u09b0\u0995\u09cd\u09b7\u09bf\u09a4 operating systems like windows and mac os to linux in different different ."
-"-134.040 other \u09b8\u09cd\u09ac\u09a4\u09cd\u09a4\u09cd\u09ac-\u09b8\u0982\u09b0\u0995\u09cd\u09b7\u09bf\u09a4 operating system for windows and mac os to linux in different separate ."
-"-134.057 other \u09b8\u09cd\u09ac\u09a4\u09cd\u09a4\u09cd\u09ac-\u09b8\u0982\u09b0\u0995\u09cd\u09b7\u09bf\u09a4 operating system like windows and mac os to linux in different separate ."
-"-134.130 the other \u09b8\u09cd\u09ac\u09a4\u09cd\u09a4\u09cd\u09ac-\u09b8\u0982\u09b0\u0995\u09cd\u09b7\u09bf\u09a4 operating system like windows and mac os to linux in different different ."
-"-134.224 other \u09b8\u09cd\u09ac\u09a4\u09cd\u09a4\u09cd\u09ac-\u09b8\u0982\u09b0\u0995\u09cd\u09b7\u09bf\u09a4 operating system for windows and mac os to the linux in different different ."
-"-134.241 other \u09b8\u09cd\u09ac\u09a4\u09cd\u09a4\u09cd\u09ac-\u09b8\u0982\u09b0\u0995\u09cd\u09b7\u09bf\u09a4 operating system like windows and mac os to the linux in different different ."
-"-134.254 other \u09b8\u09cd\u09ac\u09a4\u09cd\u09a4\u09cd\u09ac-\u09b8\u0982\u09b0\u0995\u09cd\u09b7\u09bf\u09a4 operating system for windows and mac os from the linux in different different ."
-"-134.270 other \u09b8\u09cd\u09ac\u09a4\u09cd\u09a4\u09cd\u09ac-\u09b8\u0982\u09b0\u0995\u09cd\u09b7\u09bf\u09a4 operating system like windows and mac os from the linux in different different ."
-"-218.686 asia \u099f\u09be\u0987\u09ae\u09b8\u09c7\u09b0 \u09ad\u09be\u09b7\u09cd\u09af according to ,"
-"-219.408 asia \u099f\u09be\u0987\u09ae\u09b8\u09c7\u09b0 \u09ad\u09be\u09b7\u09cd\u09af according to the ,"
-"-219.724 asia \u099f\u09be\u0987\u09ae\u09b8\u09c7\u09b0 \u09ad\u09be\u09b7\u09cd\u09af to the ,"
-"-220.516 asia \u099f\u09be\u0987\u09ae\u09b8\u09c7\u09b0 \u09ad\u09be\u09b7\u09cd\u09af to ,"
-"-220.701 the \u099f\u09be\u0987\u09ae\u09b8\u09c7\u09b0 \u09ad\u09be\u09b7\u09cd\u09af according to ,"
-"-220.728 asia \u099f\u09be\u0987\u09ae\u09b8\u09c7\u09b0 \u09ad\u09be\u09b7\u09cd\u09af according to , the"
-"-220.812 asia \u099f\u09be\u0987\u09ae\u09b8\u09c7\u09b0 \u09ad\u09be\u09b7\u09cd\u09af according to , and"
-"-221.449 asia \u099f\u09be\u0987\u09ae\u09b8\u09c7\u09b0 \u09ad\u09be\u09b7\u09cd\u09af according to the , the"
-"-221.531 asia \u099f\u09be\u0987\u09ae\u09b8\u09c7\u09b0 \u09ad\u09be\u09b7\u09cd\u09af according to , in"
-"-221.534 asia \u099f\u09be\u0987\u09ae\u09b8\u09c7\u09b0 \u09ad\u09be\u09b7\u09cd\u09af according to the , and"
-"-471.566 open source or open source -lrb- open source -rrb- the money is computer software the source code or main \u09b8\u09be\u0982\u0995\u09c7\u09a4\u09bf\u0995 language open way \u09ac\u09bf\u09a4\u09b0\u09a3 to ."
-"-471.638 open source or open source -lrb- open source -rrb- , the money is computer software the source code or main \u09b8\u09be\u0982\u0995\u09c7\u09a4\u09bf\u0995 language open way \u09ac\u09bf\u09a4\u09b0\u09a3 to ."
-"-471.644 open source or open source -lrb- open source -rrb- the money is computer software of the source code or main \u09b8\u09be\u0982\u0995\u09c7\u09a4\u09bf\u0995 language open way \u09ac\u09bf\u09a4\u09b0\u09a3 to ."
-"-471.711 open source or open source -lrb- open source -rrb- of the money is computer software the source code or main \u09b8\u09be\u0982\u0995\u09c7\u09a4\u09bf\u0995 language open way \u09ac\u09bf\u09a4\u09b0\u09a3 to ."
-"-471.716 open source or open source -lrb- open source -rrb- the money is computer software the source code or main \u09b8\u09be\u0982\u0995\u09c7\u09a4\u09bf\u0995 language free way \u09ac\u09bf\u09a4\u09b0\u09a3 to ."
-"-471.717 open source or open source -lrb- open source -rrb- , the money is computer software of the source code or main \u09b8\u09be\u0982\u0995\u09c7\u09a4\u09bf\u0995 language open way \u09ac\u09bf\u09a4\u09b0\u09a3 to ."
-"-471.789 open source or open source -lrb- open source -rrb- , the money is computer software the source code or main \u09b8\u09be\u0982\u0995\u09c7\u09a4\u09bf\u0995 language free way \u09ac\u09bf\u09a4\u09b0\u09a3 to ."
-"-471.790 open source or open source -lrb- open source -rrb- of the money is computer software of the source code or main \u09b8\u09be\u0982\u0995\u09c7\u09a4\u09bf\u0995 language open way \u09ac\u09bf\u09a4\u09b0\u09a3 to ."
-"-471.794 open source or open source -lrb- open source -rrb- the money is computer software of the source code or main \u09b8\u09be\u0982\u0995\u09c7\u09a4\u09bf\u0995 language free way \u09ac\u09bf\u09a4\u09b0\u09a3 to ."
-"-471.850 open source or open source -lrb- open source -rrb- in the money is computer software the source code or main \u09b8\u09be\u0982\u0995\u09c7\u09a4\u09bf\u0995 language open way \u09ac\u09bf\u09a4\u09b0\u09a3 to ."
-"-109.639 bangladesh \u0985\u09a8\u09b2\u09be\u0987\u09a8\u09c7 dhaka"
-"-110.190 bangladesh \u0985\u09a8\u09b2\u09be\u0987\u09a8\u09c7 of dhaka"
-"-110.961 the bangladesh \u0985\u09a8\u09b2\u09be\u0987\u09a8\u09c7 dhaka"
-"-111.512 the bangladesh \u0985\u09a8\u09b2\u09be\u0987\u09a8\u09c7 of dhaka"
-"-113.950 the first world war germany \u09b9\u09c7\u09b0\u09c7 can be ."
-"-114.276 the first world war of germany \u09b9\u09c7\u09b0\u09c7 can be ."
-"-114.953 the first world war germany \u09b9\u09c7\u09b0\u09c7 can be seen ."
-"-115.018 of the first world war germany \u09b9\u09c7\u09b0\u09c7 can be ."
-"-115.280 the first world war of germany \u09b9\u09c7\u09b0\u09c7 can be seen ."
-"-115.333 the first world war german \u09b9\u09c7\u09b0\u09c7 can be ."
-"-115.345 of the first world war of germany \u09b9\u09c7\u09b0\u09c7 can be ."
-"-115.434 the first world war germany \u09b9\u09c7\u09b0\u09c7 that can be ."
-"-115.553 the first world war conquered \u09b9\u09c7\u09b0\u09c7 can be ."
-"-115.694 first world war germany \u09b9\u09c7\u09b0\u09c7 can be ."
-"-34.990 but this subject is to understand for even research to going on ."
-"-35.178 but this subject is to understand for even research progress going on ."
-"-35.277 but this subject is to understand for at present also research to going on ."
-"-35.392 but in this matter is to understand for even research to going on ."
-"-35.410 but this subject is to understand for today also research to going on ."
-"-35.464 but this subject is to understand for at present also research progress going on ."
-"-35.590 but in this subject is to understand for even research to going on ."
-"-35.623 but this subject is to understand for presently research to going on ."
-"-35.678 but in this matter is to understand for at present also research to going on ."
-"-35.785 but at this subject is to understand for even research to going on ."
-"-104.738 \u09b8\u09c1\u09aa\u09be\u09b0\u098f\u0987\u099a"
-"-122.214 he was the military forces for \u0986\u09a8\u09ab\u09bf\u099f was declared ."
-"-122.669 he was the military forces to \u0986\u09a8\u09ab\u09bf\u099f was declared ."
-"-122.670 he was military forces for \u0986\u09a8\u09ab\u09bf\u099f was declared ."
-"-122.742 he was the military forces for \u0986\u09a8\u09ab\u09bf\u099f declared was ."
-"-123.074 he was the military forces for \u0986\u09a8\u09ab\u09bf\u099f declared the ."
-"-123.125 he was military forces to \u0986\u09a8\u09ab\u09bf\u099f was declared ."
-"-123.198 he was the military forces to \u0986\u09a8\u09ab\u09bf\u099f declared was ."
-"-123.198 he was military forces for \u0986\u09a8\u09ab\u09bf\u099f declared was ."
-"-123.208 he was armed forces for \u0986\u09a8\u09ab\u09bf\u099f was declared ."
-"-123.629 he was the military forces for \u0986\u09a8\u09ab\u09bf\u099f declared in ."
-"-492.585 bhutto \u098f\u09cd\u09af\u09be\u09b8\u09c7\u09ae\u09cd\u09ac\u09b2\u09bf \u09ac\u09af\u09bc\u0995\u099f to 2.5 with declared in the , yahya khan mujib was to form the government to \u099c\u09be\u09a8\u09be\u09b2\u09c7 he that government by \u09a8\u09c7\u09ac\u09c7\u09a8 not ."
-"-492.686 bhutto \u098f\u09cd\u09af\u09be\u09b8\u09c7\u09ae\u09cd\u09ac\u09b2\u09bf \u09ac\u09af\u09bc\u0995\u099f to 2.5 with announced that the , yahya khan mujib was to form the government to \u099c\u09be\u09a8\u09be\u09b2\u09c7 he that government by \u09a8\u09c7\u09ac\u09c7\u09a8 not ."
-"-492.687 bhutto \u098f\u09cd\u09af\u09be\u09b8\u09c7\u09ae\u09cd\u09ac\u09b2\u09bf \u09ac\u09af\u09bc\u0995\u099f to 2.5 to declared in the , yahya khan mujib was to form the government to \u099c\u09be\u09a8\u09be\u09b2\u09c7 he that government by \u09a8\u09c7\u09ac\u09c7\u09a8 not ."
-"-492.743 bhutto \u098f\u09cd\u09af\u09be\u09b8\u09c7\u09ae\u09cd\u09ac\u09b2\u09bf \u09ac\u09af\u09bc\u0995\u099f to 2.5 with declared in the , yahya khan mujib was to form the government on to \u099c\u09be\u09a8\u09be\u09b2\u09c7 he that government by \u09a8\u09c7\u09ac\u09c7\u09a8 not ."
-"-492.760 bhutto \u098f\u09cd\u09af\u09be\u09b8\u09c7\u09ae\u09cd\u09ac\u09b2\u09bf \u09ac\u09af\u09bc\u0995\u099f to 2.5 with declared in the , yahya khan mujib was to form the government for \u099c\u09be\u09a8\u09be\u09b2\u09c7 he that government by \u09a8\u09c7\u09ac\u09c7\u09a8 not ."
-"-492.771 bhutto \u098f\u09cd\u09af\u09be\u09b8\u09c7\u09ae\u09cd\u09ac\u09b2\u09bf \u09ac\u09af\u09bc\u0995\u099f to 2.5 with announced that that , yahya khan mujib was to form the government to \u099c\u09be\u09a8\u09be\u09b2\u09c7 he that government by \u09a8\u09c7\u09ac\u09c7\u09a8 not ."
-"-492.843 bhutto \u098f\u09cd\u09af\u09be\u09b8\u09c7\u09ae\u09cd\u09ac\u09b2\u09bf \u09ac\u09af\u09bc\u0995\u099f to 2.5 with announced that the , yahya khan mujib was to form the government on to \u099c\u09be\u09a8\u09be\u09b2\u09c7 he that government by \u09a8\u09c7\u09ac\u09c7\u09a8 not ."
-"-492.844 bhutto \u098f\u09cd\u09af\u09be\u09b8\u09c7\u09ae\u09cd\u09ac\u09b2\u09bf \u09ac\u09af\u09bc\u0995\u099f to 2.5 to declared in the , yahya khan mujib was to form the government on to \u099c\u09be\u09a8\u09be\u09b2\u09c7 he that government by \u09a8\u09c7\u09ac\u09c7\u09a8 not ."
-"-492.861 bhutto \u098f\u09cd\u09af\u09be\u09b8\u09c7\u09ae\u09cd\u09ac\u09b2\u09bf \u09ac\u09af\u09bc\u0995\u099f to 2.5 with announced that the , yahya khan mujib was to form the government for \u099c\u09be\u09a8\u09be\u09b2\u09c7 he that government by \u09a8\u09c7\u09ac\u09c7\u09a8 not ."
-"-492.862 bhutto \u098f\u09cd\u09af\u09be\u09b8\u09c7\u09ae\u09cd\u09ac\u09b2\u09bf \u09ac\u09af\u09bc\u0995\u099f to 2.5 to declared in the , yahya khan mujib was to form the government for \u099c\u09be\u09a8\u09be\u09b2\u09c7 he that government by \u09a8\u09c7\u09ac\u09c7\u09a8 not ."
-"-220.733 and the computer words money \u0997\u09a3\u09a8\u09be\u0995\u09be\u09b0\u09c0 machine ."
-"-220.783 the computer words money \u0997\u09a3\u09a8\u09be\u0995\u09be\u09b0\u09c0 machine ."
-"-221.198 and the computer word meaning \u0997\u09a3\u09a8\u09be\u0995\u09be\u09b0\u09c0 machine ."
-"-221.210 and computer words money \u0997\u09a3\u09a8\u09be\u0995\u09be\u09b0\u09c0 machine ."
-"-221.248 the computer word meaning \u0997\u09a3\u09a8\u09be\u0995\u09be\u09b0\u09c0 machine ."
-"-221.763 and for computer words money \u0997\u09a3\u09a8\u09be\u0995\u09be\u09b0\u09c0 machine ."
-"-221.835 and the computer words means \u0997\u09a3\u09a8\u09be\u0995\u09be\u09b0\u09c0 machine ."
-"-221.885 the computer words means \u0997\u09a3\u09a8\u09be\u0995\u09be\u09b0\u09c0 machine ."
-"-221.886 and the computer word money \u0997\u09a3\u09a8\u09be\u0995\u09be\u09b0\u09c0 machine ."
-"-222.136 and the computer words money \u0997\u09a3\u09a8\u09be\u0995\u09be\u09b0\u09c0 machines ."
-"-240.825 \u09e7\u09ed\u09ed\u09ec on 4th july this colonies are a independence notice \u099c\u09be\u09b0\u09bf ."
-"-241.490 \u09e7\u09ed\u09ed\u09ec on 4th july this colonies are a independence of notice \u099c\u09be\u09b0\u09bf ."
-"-241.514 \u09e7\u09ed\u09ed\u09ec on 4th july this colonies are a independence written proclamation \u099c\u09be\u09b0\u09bf ."
-"-241.523 \u09e7\u09ed\u09ed\u09ec on 4th july in this colonies are a independence notice \u099c\u09be\u09b0\u09bf ."
-"-241.562 \u09e7\u09ed\u09ed\u09ec , on 4th july this colonies are a independence notice \u099c\u09be\u09b0\u09bf ."
-"-241.593 \u09e7\u09ed\u09ed\u09ec on 4th july this constituents a independence notice \u099c\u09be\u09b0\u09bf ."
-"-241.692 \u09e7\u09ed\u09ed\u09ec on 4th july of this colonies are a independence notice \u099c\u09be\u09b0\u09bf ."
-"-241.990 \u09e7\u09ed\u09ed\u09ec on 4th july this colonies are a independence notice \u099c\u09be\u09b0\u09bf the ."
-"-242.101 \u09e7\u09ed\u09ed\u09ec on 4th july , this colonies are a independence notice \u099c\u09be\u09b0\u09bf ."
-"-242.148 \u09e7\u09ed\u09ed\u09ec on 4th july this colonies are a independence notice \u099c\u09be\u09b0\u09bf by the ."
-"-467.519 germany -lrb- in german : deutschland , \u09a1\u09af\u09bc\u099a\u09cd of \u09b2\u09be\u09a8\u09cd\u099f\u09cd of , pronounced [ d\u0254\u028ft\u0283lant ] -rrb- , the central is a country of europe ."
-"-467.593 germany -lrb- in german : deutschland , \u09a1\u09af\u09bc\u099a\u09cd of \u09b2\u09be\u09a8\u09cd\u099f\u09cd of , pronounced [ d\u0254\u028ft\u0283lant ] -rrb- , the is a country of europe ."
-"-467.745 germany -lrb- in german : deutschland , \u09a1\u09af\u09bc\u099a\u09cd of \u09b2\u09be\u09a8\u09cd\u099f\u09cd of , pronounced [ d\u0254\u028ft\u0283lant ] -rrb- , central is a country of europe ."
-"-467.814 germany -lrb- in german : deutschland , \u09a1\u09af\u09bc\u099a\u09cd the \u09b2\u09be\u09a8\u09cd\u099f\u09cd of , pronounced [ d\u0254\u028ft\u0283lant ] -rrb- , the central is a country of europe ."
-"-467.819 germany -lrb- in german : deutschland , \u09a1\u09af\u09bc\u099a\u09cd of \u09b2\u09be\u09a8\u09cd\u099f\u09cd the , pronounced [ d\u0254\u028ft\u0283lant ] -rrb- , the central is a country of europe ."
-"-467.887 germany -lrb- in german : deutschland , \u09a1\u09af\u09bc\u099a\u09cd the \u09b2\u09be\u09a8\u09cd\u099f\u09cd of , pronounced [ d\u0254\u028ft\u0283lant ] -rrb- , the is a country of europe ."
-"-467.892 germany -lrb- in german : deutschland , \u09a1\u09af\u09bc\u099a\u09cd of \u09b2\u09be\u09a8\u09cd\u099f\u09cd the , pronounced [ d\u0254\u028ft\u0283lant ] -rrb- , the is a country of europe ."
-"-467.986 germany -lrb- in german : deutschland , \u09a1\u09af\u09bc\u099a\u09cd of \u09b2\u09be\u09a8\u09cd\u099f\u09cd of , pronounced [ d\u0254\u028ft\u0283lant ] -rrb- , middle is a country of europe ."
-"-468.038 germany -lrb- in german : deutschland , \u09a1\u09af\u09bc\u099a\u09cd of \u09b2\u09be\u09a8\u09cd\u099f\u09cd of , pronounced [ d\u0254\u028ft\u0283lant ] -rrb- , the middle is a country of europe ."
-"-468.039 germany -lrb- in german : deutschland , \u09a1\u09af\u09bc\u099a\u09cd the \u09b2\u09be\u09a8\u09cd\u099f\u09cd of , pronounced [ d\u0254\u028ft\u0283lant ] -rrb- , central is a country of europe ."
-"-113.803 \u0996\u09cd\u09b0\u09bf\u09b8\u09cd\u099f\u09a7\u09b0\u09cd\u09ae russia the main religion ."
-"-113.989 \u0996\u09cd\u09b0\u09bf\u09b8\u09cd\u099f\u09a7\u09b0\u09cd\u09ae of russia the main religion ."
-"-115.327 \u0996\u09cd\u09b0\u09bf\u09b8\u09cd\u099f\u09a7\u09b0\u09cd\u09ae russia the religion ."
-"-116.365 \u0996\u09cd\u09b0\u09bf\u09b8\u09cd\u099f\u09a7\u09b0\u09cd\u09ae russia the main religion of ."
-"-116.551 \u0996\u09cd\u09b0\u09bf\u09b8\u09cd\u099f\u09a7\u09b0\u09cd\u09ae of russia the main religion of ."
-"-116.584 \u0996\u09cd\u09b0\u09bf\u09b8\u09cd\u099f\u09a7\u09b0\u09cd\u09ae the main religion ."
-"-116.600 \u0996\u09cd\u09b0\u09bf\u09b8\u09cd\u099f\u09a7\u09b0\u09cd\u09ae russia the religion of ."
-"-116.786 \u0996\u09cd\u09b0\u09bf\u09b8\u09cd\u099f\u09a7\u09b0\u09cd\u09ae of russia the religion of ."
-"-325.728 but \u0997\u09b2\u09a6\u09c7\u09b0 education \u09b0\u09cb\u09ae\u09be\u09a8\u09c0\u0995\u09b0\u09a3\u09c7\u09b0 \u0997\u09a4\u09bf was slow down ."
-"-326.536 but \u0997\u09b2\u09a6\u09c7\u09b0 the \u09b0\u09cb\u09ae\u09be\u09a8\u09c0\u0995\u09b0\u09a3\u09c7\u09b0 \u0997\u09a4\u09bf was slow down ."
-"-326.920 but \u0997\u09b2\u09a6\u09c7\u09b0 the educational \u09b0\u09cb\u09ae\u09be\u09a8\u09c0\u0995\u09b0\u09a3\u09c7\u09b0 \u0997\u09a4\u09bf was slow down ."
-"-327.161 but \u0997\u09b2\u09a6\u09c7\u09b0 's education \u09b0\u09cb\u09ae\u09be\u09a8\u09c0\u0995\u09b0\u09a3\u09c7\u09b0 \u0997\u09a4\u09bf was slow down ."
-"-327.169 but \u0997\u09b2\u09a6\u09c7\u09b0 of education \u09b0\u09cb\u09ae\u09be\u09a8\u09c0\u0995\u09b0\u09a3\u09c7\u09b0 \u0997\u09a4\u09bf was slow down ."
-"-327.194 but \u0997\u09b2\u09a6\u09c7\u09b0 education in \u09b0\u09cb\u09ae\u09be\u09a8\u09c0\u0995\u09b0\u09a3\u09c7\u09b0 \u0997\u09a4\u09bf was slow down ."
-"-327.746 but \u0997\u09b2\u09a6\u09c7\u09b0 education \u09b0\u09cb\u09ae\u09be\u09a8\u09c0\u0995\u09b0\u09a3\u09c7\u09b0 \u0997\u09a4\u09bf was too slow ."
-"-327.833 but \u0997\u09b2\u09a6\u09c7\u09b0 education \u09b0\u09cb\u09ae\u09be\u09a8\u09c0\u0995\u09b0\u09a3\u09c7\u09b0 \u0997\u09a4\u09bf was the slow down ."
-"-327.983 but \u0997\u09b2\u09a6\u09c7\u09b0 education \u09b0\u09cb\u09ae\u09be\u09a8\u09c0\u0995\u09b0\u09a3\u09c7\u09b0 \u0997\u09a4\u09bf was become slow ."
-"-6.756 subject category : gnu foundation"
-"-7.225 subject class : the gnu foundation"
-"-7.445 subject class : gnu foundation"
-"-7.489 subject matter : gnu foundation"
-"-7.497 subject category : the gnu foundation"
-"-7.519 subject : gnu foundation"
-"-127.108 economic policy and revenue \u09a8\u09c0\u09a4\u09bf\u0995\u09c7\u0993 it study ."
-"-127.422 economic policy and revenue \u09a8\u09c0\u09a4\u09bf\u0995\u09c7\u0993 it study of the ."
-"-127.668 economic policy and tax \u09a8\u09c0\u09a4\u09bf\u0995\u09c7\u0993 it study ."
-"-127.982 economic policy and tax \u09a8\u09c0\u09a4\u09bf\u0995\u09c7\u0993 it study of the ."
-"-128.096 economic policy and tax revenue \u09a8\u09c0\u09a4\u09bf\u0995\u09c7\u0993 it study ."
-"-128.352 economic policy and revenue \u09a8\u09c0\u09a4\u09bf\u0995\u09c7\u0993 it study the ."
-"-128.370 financial policy and revenue \u09a8\u09c0\u09a4\u09bf\u0995\u09c7\u0993 it study ."
-"-128.410 economic policy and tax revenue \u09a8\u09c0\u09a4\u09bf\u0995\u09c7\u0993 it study of the ."
-"-128.457 economic policy and revenue \u09a8\u09c0\u09a4\u09bf\u0995\u09c7\u0993 this study ."
-"-128.634 economic policy and revenue \u09a8\u09c0\u09a4\u09bf\u0995\u09c7\u0993 it study by the ."
-"-346.223 among these there are : would have \u09a4\u09cb\u09ae\u09be\u09b0 will get seen , \u0993\u09b0\u09c7 at this any \u09b8\u09cd\u09a8\u09c7\u09b9-\u09b8\u09c1\u09b0\u09a7\u09c1\u09a8\u09c0 ."
-"-346.260 among these there are : would have \u09a4\u09cb\u09ae\u09be\u09b0 will get seen , \u0993\u09b0\u09c7 this any \u09b8\u09cd\u09a8\u09c7\u09b9-\u09b8\u09c1\u09b0\u09a7\u09c1\u09a8\u09c0 ."
-"-346.280 among these there are : may be \u09a4\u09cb\u09ae\u09be\u09b0 will get seen , \u0993\u09b0\u09c7 at this any \u09b8\u09cd\u09a8\u09c7\u09b9-\u09b8\u09c1\u09b0\u09a7\u09c1\u09a8\u09c0 ."
-"-346.317 among these there are : may be \u09a4\u09cb\u09ae\u09be\u09b0 will get seen , \u0993\u09b0\u09c7 this any \u09b8\u09cd\u09a8\u09c7\u09b9-\u09b8\u09c1\u09b0\u09a7\u09c1\u09a8\u09c0 ."
-"-346.361 among these there are : would have \u09a4\u09cb\u09ae\u09be\u09b0 get seen , \u0993\u09b0\u09c7 at this any \u09b8\u09cd\u09a8\u09c7\u09b9-\u09b8\u09c1\u09b0\u09a7\u09c1\u09a8\u09c0 ."
-"-346.398 among these there are : would have \u09a4\u09cb\u09ae\u09be\u09b0 get seen , \u0993\u09b0\u09c7 this any \u09b8\u09cd\u09a8\u09c7\u09b9-\u09b8\u09c1\u09b0\u09a7\u09c1\u09a8\u09c0 ."
-"-346.418 among these there are : may be \u09a4\u09cb\u09ae\u09be\u09b0 get seen , \u0993\u09b0\u09c7 at this any \u09b8\u09cd\u09a8\u09c7\u09b9-\u09b8\u09c1\u09b0\u09a7\u09c1\u09a8\u09c0 ."
-"-346.455 among these there are : may be \u09a4\u09cb\u09ae\u09be\u09b0 get seen , \u0993\u09b0\u09c7 this any \u09b8\u09cd\u09a8\u09c7\u09b9-\u09b8\u09c1\u09b0\u09a7\u09c1\u09a8\u09c0 ."
-"-346.560 among these there are : would have \u09a4\u09cb\u09ae\u09be\u09b0 will get seen , \u0993\u09b0\u09c7 for this any \u09b8\u09cd\u09a8\u09c7\u09b9-\u09b8\u09c1\u09b0\u09a7\u09c1\u09a8\u09c0 ."
-"-346.567 among them are : would have \u09a4\u09cb\u09ae\u09be\u09b0 will get seen , \u0993\u09b0\u09c7 at this any \u09b8\u09cd\u09a8\u09c7\u09b9-\u09b8\u09c1\u09b0\u09a7\u09c1\u09a8\u09c0 ."
-"-17.735 on 23rd april 1992 satyajit died ."
-"-18.257 on 23rd april 1992 satyajit expired ."
-"-19.284 on 23rd april 1992 satyajit passed away ."
-"-21.617 on 23rd april 1992 satyajit died . ."
-"-21.773 he died on 23rd april 1992 ."
-"-238.748 in this time nazrul 's medical \u09b0\u09bf\u09aa\u09cb\u09b0\u09cd\u099f earning famous \u099a\u09bf\u0995\u09bf\u09ce\u09b8\u0995\u09a6\u09c7\u09b0 to send to ."
-"-238.899 in this time nazrul 's medical \u09b0\u09bf\u09aa\u09cb\u09b0\u09cd\u099f stay famous \u099a\u09bf\u0995\u09bf\u09ce\u09b8\u0995\u09a6\u09c7\u09b0 to send to ."
-"-239.024 this time nazrul 's medical \u09b0\u09bf\u09aa\u09cb\u09b0\u09cd\u099f earning famous \u099a\u09bf\u0995\u09bf\u09ce\u09b8\u0995\u09a6\u09c7\u09b0 to send to ."
-"-239.101 in this time nazrul medical \u09b0\u09bf\u09aa\u09cb\u09b0\u09cd\u099f earning famous \u099a\u09bf\u0995\u09bf\u09ce\u09b8\u0995\u09a6\u09c7\u09b0 to send to ."
-"-239.116 in this time nazrul 's medical \u09b0\u09bf\u09aa\u09cb\u09b0\u09cd\u099f earning famous \u099a\u09bf\u0995\u09bf\u09ce\u09b8\u0995\u09a6\u09c7\u09b0 to send ."
-"-239.175 this time nazrul 's medical \u09b0\u09bf\u09aa\u09cb\u09b0\u09cd\u099f stay famous \u099a\u09bf\u0995\u09bf\u09ce\u09b8\u0995\u09a6\u09c7\u09b0 to send to ."
-"-239.209 during this time nazrul 's medical \u09b0\u09bf\u09aa\u09cb\u09b0\u09cd\u099f earning famous \u099a\u09bf\u0995\u09bf\u09ce\u09b8\u0995\u09a6\u09c7\u09b0 to send to ."
-"-239.234 at this time nazrul 's medical \u09b0\u09bf\u09aa\u09cb\u09b0\u09cd\u099f earning famous \u099a\u09bf\u0995\u09bf\u09ce\u09b8\u0995\u09a6\u09c7\u09b0 to send to ."
-"-239.252 in this time nazrul medical \u09b0\u09bf\u09aa\u09cb\u09b0\u09cd\u099f stay famous \u099a\u09bf\u0995\u09bf\u09ce\u09b8\u0995\u09a6\u09c7\u09b0 to send to ."
-"-239.262 in this time najrul 's medical \u09b0\u09bf\u09aa\u09cb\u09b0\u09cd\u099f earning famous \u099a\u09bf\u0995\u09bf\u09ce\u09b8\u0995\u09a6\u09c7\u09b0 to send to ."
-"-347.110 acted other than at different times rani \u09ae\u09c1\u0996\u09be\u09b0\u09cd\u099c\u09c0 different \u09a6\u09be\u09a4\u09ac\u09cd\u09af are connected with \u09a5\u09c7\u0995\u09c7\u099b\u09c7\u09a8 ."
-"-347.165 acted apart from at different times rani \u09ae\u09c1\u0996\u09be\u09b0\u09cd\u099c\u09c0 different \u09a6\u09be\u09a4\u09ac\u09cd\u09af are connected with \u09a5\u09c7\u0995\u09c7\u099b\u09c7\u09a8 ."
-"-347.335 acted apart at different times rani \u09ae\u09c1\u0996\u09be\u09b0\u09cd\u099c\u09c0 different \u09a6\u09be\u09a4\u09ac\u09cd\u09af are connected with \u09a5\u09c7\u0995\u09c7\u099b\u09c7\u09a8 ."
-"-347.592 acted , at different times rani \u09ae\u09c1\u0996\u09be\u09b0\u09cd\u099c\u09c0 different \u09a6\u09be\u09a4\u09ac\u09cd\u09af are connected with \u09a5\u09c7\u0995\u09c7\u099b\u09c7\u09a8 ."
-"-347.594 acted apart from different times rani \u09ae\u09c1\u0996\u09be\u09b0\u09cd\u099c\u09c0 different \u09a6\u09be\u09a4\u09ac\u09cd\u09af are connected with \u09a5\u09c7\u0995\u09c7\u099b\u09c7\u09a8 ."
-"-347.830 acted apart from different time rani \u09ae\u09c1\u0996\u09be\u09b0\u09cd\u099c\u09c0 different \u09a6\u09be\u09a4\u09ac\u09cd\u09af are connected with \u09a5\u09c7\u0995\u09c7\u099b\u09c7\u09a8 ."
-"-347.893 acted in addition at different times rani \u09ae\u09c1\u0996\u09be\u09b0\u09cd\u099c\u09c0 different \u09a6\u09be\u09a4\u09ac\u09cd\u09af are connected with \u09a5\u09c7\u0995\u09c7\u099b\u09c7\u09a8 ."
-"-348.081 acted without at different times rani \u09ae\u09c1\u0996\u09be\u09b0\u09cd\u099c\u09c0 different \u09a6\u09be\u09a4\u09ac\u09cd\u09af are connected with \u09a5\u09c7\u0995\u09c7\u099b\u09c7\u09a8 ."
-"-348.245 acted other than at different times rani \u09ae\u09c1\u0996\u09be\u09b0\u09cd\u099c\u09c0 of different \u09a6\u09be\u09a4\u09ac\u09cd\u09af are connected with \u09a5\u09c7\u0995\u09c7\u099b\u09c7\u09a8 ."
-"-349.825 acted other than at different times rani \u09ae\u09c1\u0996\u09be\u09b0\u09cd\u099c\u09c0 different \u09a6\u09be\u09a4\u09ac\u09cd\u09af offices connected with \u09a5\u09c7\u0995\u09c7\u099b\u09c7\u09a8 ."
-"-368.897 bengali literature and culture of his special contribution on \u09b8\u09cd\u09ac\u09c0\u0995\u09c3\u09a4\u09bf\u09b8\u09cd\u09ac\u09b0\u09c1\u09aa year on 9th december , dhaka university he was honorary \u09a1\u09bf.\u09b2\u09bf\u099f \u0989\u09aa\u09be\u09a7\u09bf\u09a4\u09c7 awarded with the ."
-"-369.012 bengali literature and culture in his special contribution on \u09b8\u09cd\u09ac\u09c0\u0995\u09c3\u09a4\u09bf\u09b8\u09cd\u09ac\u09b0\u09c1\u09aa year on 9th december , dhaka university he was honorary \u09a1\u09bf.\u09b2\u09bf\u099f \u0989\u09aa\u09be\u09a7\u09bf\u09a4\u09c7 awarded with the ."
-"-369.196 bengali literature and culture his special contribution on \u09b8\u09cd\u09ac\u09c0\u0995\u09c3\u09a4\u09bf\u09b8\u09cd\u09ac\u09b0\u09c1\u09aa year on 9th december , dhaka university he was honorary \u09a1\u09bf.\u09b2\u09bf\u099f \u0989\u09aa\u09be\u09a7\u09bf\u09a4\u09c7 awarded with the ."
-"-369.213 bengali literature and culture , his special contribution on \u09b8\u09cd\u09ac\u09c0\u0995\u09c3\u09a4\u09bf\u09b8\u09cd\u09ac\u09b0\u09c1\u09aa year on 9th december , dhaka university he was honorary \u09a1\u09bf.\u09b2\u09bf\u099f \u0989\u09aa\u09be\u09a7\u09bf\u09a4\u09c7 awarded with the ."
-"-369.296 bengali literature and culture of his special contribution on \u09b8\u09cd\u09ac\u09c0\u0995\u09c3\u09a4\u09bf\u09b8\u09cd\u09ac\u09b0\u09c1\u09aa year on 9 december , dhaka university he was honorary \u09a1\u09bf.\u09b2\u09bf\u099f \u0989\u09aa\u09be\u09a7\u09bf\u09a4\u09c7 awarded with the ."
-"-369.384 the bengali literature and culture of his special contribution on \u09b8\u09cd\u09ac\u09c0\u0995\u09c3\u09a4\u09bf\u09b8\u09cd\u09ac\u09b0\u09c1\u09aa year on 9th december , dhaka university he was honorary \u09a1\u09bf.\u09b2\u09bf\u099f \u0989\u09aa\u09be\u09a7\u09bf\u09a4\u09c7 awarded with the ."
-"-369.411 bengali literature and culture in his special contribution on \u09b8\u09cd\u09ac\u09c0\u0995\u09c3\u09a4\u09bf\u09b8\u09cd\u09ac\u09b0\u09c1\u09aa year on 9 december , dhaka university he was honorary \u09a1\u09bf.\u09b2\u09bf\u099f \u0989\u09aa\u09be\u09a7\u09bf\u09a4\u09c7 awarded with the ."
-"-369.499 the bengali literature and culture in his special contribution on \u09b8\u09cd\u09ac\u09c0\u0995\u09c3\u09a4\u09bf\u09b8\u09cd\u09ac\u09b0\u09c1\u09aa year on 9th december , dhaka university he was honorary \u09a1\u09bf.\u09b2\u09bf\u099f \u0989\u09aa\u09be\u09a7\u09bf\u09a4\u09c7 awarded with the ."
-"-369.595 bengali literature and culture his special contribution on \u09b8\u09cd\u09ac\u09c0\u0995\u09c3\u09a4\u09bf\u09b8\u09cd\u09ac\u09b0\u09c1\u09aa year on 9 december , dhaka university he was honorary \u09a1\u09bf.\u09b2\u09bf\u099f \u0989\u09aa\u09be\u09a7\u09bf\u09a4\u09c7 awarded with the ."
-"-369.612 bengali literature and culture , his special contribution on \u09b8\u09cd\u09ac\u09c0\u0995\u09c3\u09a4\u09bf\u09b8\u09cd\u09ac\u09b0\u09c1\u09aa year on 9 december , dhaka university he was honorary \u09a1\u09bf.\u09b2\u09bf\u099f \u0989\u09aa\u09be\u09a7\u09bf\u09a4\u09c7 awarded with the ."
-"-136.580 in kolkata durga puja of the city is one of the tourism \u0986\u0995\u09b0\u09cd\u09b7\u09a3\u0993 is also a reason"
-"-136.704 kolkata 's durga puja of the city is one of the tourism \u0986\u0995\u09b0\u09cd\u09b7\u09a3\u0993 is also a reason"
-"-136.923 kolkata durga puja of the city is one of the tourism \u0986\u0995\u09b0\u09cd\u09b7\u09a3\u0993 is also a reason"
-"-137.284 in the durga puja of the city is one of the tourism \u0986\u0995\u09b0\u09cd\u09b7\u09a3\u0993 is also a reason"
-"-137.331 in kolkata durga puja of the city is one of the tourists spot \u0986\u0995\u09b0\u09cd\u09b7\u09a3\u0993 is also a reason"
-"-138.172 in kolkata durga puja in the city is one of the tourism \u0986\u0995\u09b0\u09cd\u09b7\u09a3\u0993 is also a reason"
-"-138.296 kolkata 's durga puja in the city is one of the tourism \u0986\u0995\u09b0\u09cd\u09b7\u09a3\u0993 is also a reason"
-"-138.923 in kolkata durga puja in the city is one of the tourists spot \u0986\u0995\u09b0\u09cd\u09b7\u09a3\u0993 is also a reason"
-"-64.035 but many of east german started living in economically reach and democratic west germany , east germany government built a wall in berlin in 1961 and reinforced its boundaries ."
-"-64.412 but many people of east german started living in economically reach and democratic west germany , east germany government built a wall in berlin in 1961 and reinforced its boundaries ."
-"-64.422 but many of the east german started living in economically reach and democratic west germany , east germany government built a wall in berlin in 1961 and reinforced its boundaries ."
-"-64.469 but many people of east germany started living in economically reach and democratic west germany , east germany government built a wall in berlin in 1961 and reinforced its boundaries ."
-"-65.162 but many of east germany started living in economically reach and democratic west germany , east germany government built a wall in berlin in 1961 and reinforced its boundaries ."
-"-66.368 but many of east german started living in economically reach and democratic west germany , east germany government built a wall in berlin in 1961 of the and its boundaries ."
-"-66.416 but many of east german started living in economically reach and democratic west germany , east germany government built a wall in berlin in 1961 and reinforced its boundaries of ."
-"-66.744 but many people of east german started living in economically reach and democratic west germany , east germany government built a wall in berlin in 1961 of the and its boundaries ."
-"-66.755 but many of the east german started living in economically reach and democratic west germany , east germany government built a wall in berlin in 1961 of the and its boundaries ."
-"-66.793 but many people of east german started living in economically reach and democratic west germany , east germany government built a wall in berlin in 1961 and reinforced its boundaries of ."
-"-914.735 the first one is the film \u09a8\u09bf\u09b0\u09cd\u09ac\u09be\u0995 first seven \u09ae\u09bf\u09a8\u09bf\u099f , which \u099a\u09be\u09b0\u09c1\u09b0 \u098f\u0995\u0998\u09c7\u09af\u09bc\u09c7\u09ae\u09bf life shown them , and the second one is " of the garden \u09a6\u09cb\u09b2\u09a8\u09be\u09b0 scene " , where \u099a\u09be\u09b0\u09c1 \u0985\u09ae\u09b2\u09c7\u09b0 for his love \u09ae\u09c1\u0996\u09cb\u09ae\u09c1\u0996\u09bf ."
-"-914.852 the first one is the film \u09a8\u09bf\u09b0\u09cd\u09ac\u09be\u0995 first seven \u09ae\u09bf\u09a8\u09bf\u099f , which \u099a\u09be\u09b0\u09c1\u09b0 \u098f\u0995\u0998\u09c7\u09af\u09bc\u09c7\u09ae\u09bf life shown them , and the second one is " the \u09a6\u09cb\u09b2\u09a8\u09be\u09b0 scene " , where \u099a\u09be\u09b0\u09c1 \u0985\u09ae\u09b2\u09c7\u09b0 for his love \u09ae\u09c1\u0996\u09cb\u09ae\u09c1\u0996\u09bf ."
-"-915.015 the first one is the film \u09a8\u09bf\u09b0\u09cd\u09ac\u09be\u0995 first seven \u09ae\u09bf\u09a8\u09bf\u099f , which \u099a\u09be\u09b0\u09c1\u09b0 \u098f\u0995\u0998\u09c7\u09af\u09bc\u09c7\u09ae\u09bf life shown them , and the second one is " of the garden \u09a6\u09cb\u09b2\u09a8\u09be\u09b0 scene of " , where \u099a\u09be\u09b0\u09c1 \u0985\u09ae\u09b2\u09c7\u09b0 for his love \u09ae\u09c1\u0996\u09cb\u09ae\u09c1\u0996\u09bf ."
-"-915.060 the first one is the film \u09a8\u09bf\u09b0\u09cd\u09ac\u09be\u0995 first seven \u09ae\u09bf\u09a8\u09bf\u099f , which \u099a\u09be\u09b0\u09c1\u09b0 \u098f\u0995\u0998\u09c7\u09af\u09bc\u09c7\u09ae\u09bf life shown lift , and the second one is " of the garden \u09a6\u09cb\u09b2\u09a8\u09be\u09b0 scene " , where \u099a\u09be\u09b0\u09c1 \u0985\u09ae\u09b2\u09c7\u09b0 for his love \u09ae\u09c1\u0996\u09cb\u09ae\u09c1\u0996\u09bf ."
-"-915.091 the first one is the film \u09a8\u09bf\u09b0\u09cd\u09ac\u09be\u0995 first seven \u09ae\u09bf\u09a8\u09bf\u099f , which \u099a\u09be\u09b0\u09c1\u09b0 \u098f\u0995\u0998\u09c7\u09af\u09bc\u09c7\u09ae\u09bf life shown them , and the second one is " garden \u09a6\u09cb\u09b2\u09a8\u09be\u09b0 scene " , where \u099a\u09be\u09b0\u09c1 \u0985\u09ae\u09b2\u09c7\u09b0 for his love \u09ae\u09c1\u0996\u09cb\u09ae\u09c1\u0996\u09bf ."
-"-915.131 the first one is the film \u09a8\u09bf\u09b0\u09cd\u09ac\u09be\u0995 first seven \u09ae\u09bf\u09a8\u09bf\u099f , which \u099a\u09be\u09b0\u09c1\u09b0 \u098f\u0995\u0998\u09c7\u09af\u09bc\u09c7\u09ae\u09bf life shown them , and the second one is " the \u09a6\u09cb\u09b2\u09a8\u09be\u09b0 scene of " , where \u099a\u09be\u09b0\u09c1 \u0985\u09ae\u09b2\u09c7\u09b0 for his love \u09ae\u09c1\u0996\u09cb\u09ae\u09c1\u0996\u09bf ."
-"-915.136 the first one is the film \u09a8\u09bf\u09b0\u09cd\u09ac\u09be\u0995 first seven \u09ae\u09bf\u09a8\u09bf\u099f , which is \u099a\u09be\u09b0\u09c1\u09b0 \u098f\u0995\u0998\u09c7\u09af\u09bc\u09c7\u09ae\u09bf life shown them , and the second one is " of the garden \u09a6\u09cb\u09b2\u09a8\u09be\u09b0 scene " , where \u099a\u09be\u09b0\u09c1 \u0985\u09ae\u09b2\u09c7\u09b0 for his love \u09ae\u09c1\u0996\u09cb\u09ae\u09c1\u0996\u09bf ."
-"-915.176 the first one is the film \u09a8\u09bf\u09b0\u09cd\u09ac\u09be\u0995 first seven \u09ae\u09bf\u09a8\u09bf\u099f , which \u099a\u09be\u09b0\u09c1\u09b0 \u098f\u0995\u0998\u09c7\u09af\u09bc\u09c7\u09ae\u09bf life shown lift , and the second one is " the \u09a6\u09cb\u09b2\u09a8\u09be\u09b0 scene " , where \u099a\u09be\u09b0\u09c1 \u0985\u09ae\u09b2\u09c7\u09b0 for his love \u09ae\u09c1\u0996\u09cb\u09ae\u09c1\u0996\u09bf ."
-"-915.244 the first one is the film \u09a8\u09bf\u09b0\u09cd\u09ac\u09be\u0995 the seven \u09ae\u09bf\u09a8\u09bf\u099f , which \u099a\u09be\u09b0\u09c1\u09b0 \u098f\u0995\u0998\u09c7\u09af\u09bc\u09c7\u09ae\u09bf life shown them , and the second one is " of the garden \u09a6\u09cb\u09b2\u09a8\u09be\u09b0 scene " , where \u099a\u09be\u09b0\u09c1 \u0985\u09ae\u09b2\u09c7\u09b0 for his love \u09ae\u09c1\u0996\u09cb\u09ae\u09c1\u0996\u09bf ."
-"-915.252 the first one is the film \u09a8\u09bf\u09b0\u09cd\u09ac\u09be\u0995 first seven \u09ae\u09bf\u09a8\u09bf\u099f , which is \u099a\u09be\u09b0\u09c1\u09b0 \u098f\u0995\u0998\u09c7\u09af\u09bc\u09c7\u09ae\u09bf life shown them , and the second one is " the \u09a6\u09cb\u09b2\u09a8\u09be\u09b0 scene " , where \u099a\u09be\u09b0\u09c1 \u0985\u09ae\u09b2\u09c7\u09b0 for his love \u09ae\u09c1\u0996\u09cb\u09ae\u09c1\u0996\u09bf ."
-"-261.213 18th century the a group of \u099a\u09bf\u09a8\u09cd\u09a4\u09be\u09ac\u09bf\u09a6 and writer income and production \u099a\u0995\u09cd\u09b0\u09be\u0995\u09be\u09b0 current through the economic thoughts development it ."
-"-261.415 18th century the a group of \u099a\u09bf\u09a8\u09cd\u09a4\u09be\u09ac\u09bf\u09a6 and writer income and production \u099a\u0995\u09cd\u09b0\u09be\u0995\u09be\u09b0 current through the economic thoughts development of it ."
-"-261.573 18th century the a group of \u099a\u09bf\u09a8\u09cd\u09a4\u09be\u09ac\u09bf\u09a6 and writer income and production \u099a\u0995\u09cd\u09b0\u09be\u0995\u09be\u09b0 current through economic thoughts development it ."
-"-261.583 18th century the a group of \u099a\u09bf\u09a8\u09cd\u09a4\u09be\u09ac\u09bf\u09a6 and writer income and production \u099a\u0995\u09cd\u09b0\u09be\u0995\u09be\u09b0 current through the economic thoughts development people ."
-"-261.743 18th century the a group of \u099a\u09bf\u09a8\u09cd\u09a4\u09be\u09ac\u09bf\u09a6 and writer of income and production \u099a\u0995\u09cd\u09b0\u09be\u0995\u09be\u09b0 current through the economic thoughts development it ."
-"-261.775 18th century the a group of \u099a\u09bf\u09a8\u09cd\u09a4\u09be\u09ac\u09bf\u09a6 and writer income and production \u099a\u0995\u09cd\u09b0\u09be\u0995\u09be\u09b0 current through economic thoughts development of it ."
-"-261.841 the 18th century a group of \u099a\u09bf\u09a8\u09cd\u09a4\u09be\u09ac\u09bf\u09a6 and writer income and production \u099a\u0995\u09cd\u09b0\u09be\u0995\u09be\u09b0 current through the economic thoughts development it ."
-"-261.873 18th century a group of \u099a\u09bf\u09a8\u09cd\u09a4\u09be\u09ac\u09bf\u09a6 and writer income and production \u099a\u0995\u09cd\u09b0\u09be\u0995\u09be\u09b0 current through the economic thoughts development it ."
-"-261.944 18th century the a group of \u099a\u09bf\u09a8\u09cd\u09a4\u09be\u09ac\u09bf\u09a6 and writer income and production \u099a\u0995\u09cd\u09b0\u09be\u0995\u09be\u09b0 current through economic thoughts development people ."
-"-261.946 18th century the a group of \u099a\u09bf\u09a8\u09cd\u09a4\u09be\u09ac\u09bf\u09a6 and writer of income and production \u099a\u0995\u09cd\u09b0\u09be\u0995\u09be\u09b0 current through the economic thoughts development of it ."
-"-25.161 the arousal activities before penetrating male organ into vagina is called foreplay ."
-"-26.500 the arousal activities before penetrating male organ into vagina is called the foreplay ."
-"-27.117 the arousal activities before penetrating male organ into vagina is called as the foreplay ."
-"-27.359 the arousal activities before penetrating male organ into vagina is called as foreplay ."
-"-27.669 the arousal activities before penetrating male organ into vagina is called stimulation ."
-"-349.226 it is mainly \u09b6\u09c2\u0995\u09b0\u09c7\u09b0 in the middle of which was which can \u09b6\u09c2\u0995\u09b0\u0995\u09c7 \u0987\u09a8\u09ab\u09cd\u09b2\u09c1\u09af\u09bc\u09c7\u099e\u09cd\u099c\u09be\u09a4\u09c7 affected by british ."
-"-349.276 it is mainly \u09b6\u09c2\u0995\u09b0\u09c7\u09b0 in the middle of was which can \u09b6\u09c2\u0995\u09b0\u0995\u09c7 \u0987\u09a8\u09ab\u09cd\u09b2\u09c1\u09af\u09bc\u09c7\u099e\u09cd\u099c\u09be\u09a4\u09c7 affected by british ."
-"-349.530 it is mainly \u09b6\u09c2\u0995\u09b0\u09c7\u09b0 in the middle of which was which can \u09b6\u09c2\u0995\u09b0\u0995\u09c7 \u0987\u09a8\u09ab\u09cd\u09b2\u09c1\u09af\u09bc\u09c7\u099e\u09cd\u099c\u09be\u09a4\u09c7 by british ."
-"-349.560 it is mainly \u09b6\u09c2\u0995\u09b0\u09c7\u09b0 in the middle of which was which can \u09b6\u09c2\u0995\u09b0\u0995\u09c7 \u0987\u09a8\u09ab\u09cd\u09b2\u09c1\u09af\u09bc\u09c7\u099e\u09cd\u099c\u09be\u09a4\u09c7 infected by british ."
-"-349.580 it is mainly \u09b6\u09c2\u0995\u09b0\u09c7\u09b0 in the middle of was which can \u09b6\u09c2\u0995\u09b0\u0995\u09c7 \u0987\u09a8\u09ab\u09cd\u09b2\u09c1\u09af\u09bc\u09c7\u099e\u09cd\u099c\u09be\u09a4\u09c7 by british ."
-"-349.585 it is mainly \u09b6\u09c2\u0995\u09b0\u09c7\u09b0 in between in which was which can \u09b6\u09c2\u0995\u09b0\u0995\u09c7 \u0987\u09a8\u09ab\u09cd\u09b2\u09c1\u09af\u09bc\u09c7\u099e\u09cd\u099c\u09be\u09a4\u09c7 affected by british ."
-"-349.610 it is mainly \u09b6\u09c2\u0995\u09b0\u09c7\u09b0 in the middle of was which can \u09b6\u09c2\u0995\u09b0\u0995\u09c7 \u0987\u09a8\u09ab\u09cd\u09b2\u09c1\u09af\u09bc\u09c7\u099e\u09cd\u099c\u09be\u09a4\u09c7 infected by british ."
-"-349.627 it is mainly \u09b6\u09c2\u0995\u09b0\u09c7\u09b0 in between in was which can \u09b6\u09c2\u0995\u09b0\u0995\u09c7 \u0987\u09a8\u09ab\u09cd\u09b2\u09c1\u09af\u09bc\u09c7\u099e\u09cd\u099c\u09be\u09a4\u09c7 affected by british ."
-"-349.663 it is basically \u09b6\u09c2\u0995\u09b0\u09c7\u09b0 in between in which was which can \u09b6\u09c2\u0995\u09b0\u0995\u09c7 \u0987\u09a8\u09ab\u09cd\u09b2\u09c1\u09af\u09bc\u09c7\u099e\u09cd\u099c\u09be\u09a4\u09c7 affected by british ."
-"-349.704 it is basically \u09b6\u09c2\u0995\u09b0\u09c7\u09b0 in between in was which can \u09b6\u09c2\u0995\u09b0\u0995\u09c7 \u0987\u09a8\u09ab\u09cd\u09b2\u09c1\u09af\u09bc\u09c7\u099e\u09cd\u099c\u09be\u09a4\u09c7 affected by british ."
-"-221.617 these are \u098f\u0995\u098f the mycelium structure ."
-"-221.656 these \u098f\u0995\u098f the mycelium structure ."
-"-221.769 these are \u098f\u0995\u098f to mycelium structure ."
-"-221.807 these \u098f\u0995\u098f to mycelium structure ."
-"-222.116 these are \u098f\u0995\u098f the mycelium formed the ."
-"-222.155 these \u098f\u0995\u098f the mycelium formed the ."
-"-222.250 these are \u098f\u0995\u098f the mycelium formed ."
-"-222.268 these are \u098f\u0995\u098f to mycelium formed the ."
-"-222.288 these \u098f\u0995\u098f the mycelium formed ."
-"-222.306 these \u098f\u0995\u098f to mycelium formed the ."
-"-8.527 russia at a democratic country ."
-"-8.727 russia is now a democratic country ."
-"-8.985 russia now a democratic country ."
-"-8.991 russia at present a democratic country ."
-"-9.259 russia is a democratic country ."
-"-9.330 russia at present is a democratic country ."
-"-4.520 penis"
-"-4.864 gender"
-"-5.566 sex"
-"-6.544 sexual organs"
-"-6.916 the"
-"-104.738 \u09b2\u09bf\u0999\u09cd\u0997"
-"-9.024 this state is called orgasm ."
-"-13.083 this state is called orgasm . ."
-"-37.091 history of different period here itself was established royal more than one empire ."
-"-37.533 history of different period here only was established royal more than one empire ."
-"-37.644 history of different period here only established in royal more than one empire ."
-"-37.659 history of different period here itself established in royal more than one empire ."
-"-37.716 history of different period here itself was established royal more empire ."
-"-37.750 history of different period here itself was established royal more than one kingdom ."
-"-37.861 history of different period here was established royal more than one empire ."
-"-37.954 history of different period here itself was established on royal more than one empire ."
-"-38.021 history of different period this was established royal more than one empire ."
-"-38.157 history of different period here only was established royal more empire ."
-"-2.135 micro economics"
-"-2.844 micro economics ."
-"-3.315 macro economics"
-"-5.518 micro economics of"
-"-6.060 micro economics in"
-"-32.828 the user to operating system the visible form of the computer interface ."
-"-33.055 the user to operating system of the visible form of the computer interface ."
-"-33.193 the user to operating system is the visible form of the computer interface ."
-"-33.225 the user to operating system most visible form of the computer interface ."
-"-33.243 the user to operating system is most visible form of the computer interface ."
-"-33.305 the user to operating system is visible form of the computer interface ."
-"-33.333 the user to operating system the most visible form of the computer interface ."
-"-33.773 the user to operating system the visible form of the computers interface ."
-"-33.823 user to operating system of the visible form of the computer interface ."
-"-33.992 user to operating system most visible form of the computer interface ."
-"-113.858 \u09ac\u09bf\u09b8\u09cd\u09a4\u09be\u09b0\u09bf\u09a4\u0983 , 1971 temporary bangladesh government"
-"-11

<TRUNCATED>

[7/9] incubator-joshua git commit: moved new unit tests (former regression tests) to correct location in joshua 7 (joshua-core/src)

Posted by mj...@apache.org.
moved new unit tests (former regression tests) to correct location in joshua 7 (joshua-core/src)


Project: http://git-wip-us.apache.org/repos/asf/incubator-joshua/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-joshua/commit/ee7398f7
Tree: http://git-wip-us.apache.org/repos/asf/incubator-joshua/tree/ee7398f7
Diff: http://git-wip-us.apache.org/repos/asf/incubator-joshua/diff/ee7398f7

Branch: refs/heads/7
Commit: ee7398f7d0c921cf1aaf7937a370a41d31431033
Parents: 732997b
Author: Hieber, Felix <fh...@amazon.de>
Authored: Wed Sep 14 23:19:00 2016 +0200
Committer: Hieber, Felix <fh...@amazon.de>
Committed: Wed Sep 14 23:19:00 2016 +0200

----------------------------------------------------------------------
 .../joshua/decoder/cky/BnEnDecodingTest.java    | 121 +++
 .../joshua/decoder/cky/ConstrainedTest.java     |  65 ++
 .../joshua/decoder/cky/DenormalizationTest.java |  58 ++
 .../joshua/decoder/cky/DoNotCrashTest.java      |  62 ++
 .../joshua/decoder/cky/LeftStateTest.java       |  65 ++
 .../joshua/decoder/cky/LowercaseTest.java       | 115 +++
 .../org/apache/joshua/decoder/cky/NAryTest.java |  64 ++
 .../joshua/decoder/cky/NoGrammarTest.java       |  56 ++
 .../org/apache/joshua/decoder/cky/TestUtil.java |  87 ++
 .../bn-en/hiero/output-berkeleylm.gold          | 943 +++++++++++++++++++
 .../src/test/resources/bn-en/samt/output.gold   | 862 +++++++++++++++++
 .../resources/decoder/lowercaser/joshua.config  | 140 +++
 .../decoder/moses-compat/NEEDS_UPDATING         |   1 +
 .../test/resources/phrase_decoder/config.packed |  29 +
 .../phrase_decoder/rules.packed/config          |   2 +
 .../phrase_decoder/rules.packed/encoding        | Bin 0 -> 87 bytes
 .../rules.packed/slice_00000.features           | Bin 0 -> 4128858 bytes
 .../rules.packed/slice_00000.source             | Bin 0 -> 1982228 bytes
 .../rules.packed/slice_00000.target             | Bin 0 -> 1463856 bytes
 .../rules.packed/slice_00000.target.lookup      | Bin 0 -> 28 bytes
 .../phrase_decoder/rules.packed/vocabulary      | Bin 0 -> 169225 bytes
 .../joshua/decoder/cky/BnEnDecodingTest.java    | 121 ---
 .../joshua/decoder/cky/ConstrainedTest.java     |  65 --
 .../joshua/decoder/cky/DenormalizationTest.java |  58 --
 .../joshua/decoder/cky/DoNotCrashTest.java      |  62 --
 .../joshua/decoder/cky/LeftStateTest.java       |  65 --
 .../joshua/decoder/cky/LowercaseTest.java       | 115 ---
 .../org/apache/joshua/decoder/cky/NAryTest.java |  64 --
 .../joshua/decoder/cky/NoGrammarTest.java       |  56 --
 .../org/apache/joshua/decoder/cky/TestUtil.java |  87 --
 .../bn-en/hiero/output-berkeleylm.gold          | 943 -------------------
 src/test/resources/bn-en/samt/output.gold       | 862 -----------------
 .../resources/decoder/lowercaser/joshua.config  | 140 ---
 .../decoder/moses-compat/NEEDS_UPDATING         |   1 -
 src/test/resources/phrase_decoder/config.packed |  29 -
 .../phrase_decoder/rules.packed/config          |   2 -
 .../phrase_decoder/rules.packed/encoding        | Bin 87 -> 0 bytes
 .../rules.packed/slice_00000.features           | Bin 4128858 -> 0 bytes
 .../rules.packed/slice_00000.source             | Bin 1982228 -> 0 bytes
 .../rules.packed/slice_00000.target             | Bin 1463856 -> 0 bytes
 .../rules.packed/slice_00000.target.lookup      | Bin 28 -> 0 bytes
 .../phrase_decoder/rules.packed/vocabulary      | Bin 169225 -> 0 bytes
 42 files changed, 2670 insertions(+), 2670 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-joshua/blob/ee7398f7/joshua-core/src/test/java/org/apache/joshua/decoder/cky/BnEnDecodingTest.java
----------------------------------------------------------------------
diff --git a/joshua-core/src/test/java/org/apache/joshua/decoder/cky/BnEnDecodingTest.java b/joshua-core/src/test/java/org/apache/joshua/decoder/cky/BnEnDecodingTest.java
new file mode 100644
index 0000000..82faa58
--- /dev/null
+++ b/joshua-core/src/test/java/org/apache/joshua/decoder/cky/BnEnDecodingTest.java
@@ -0,0 +1,121 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *  http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+package org.apache.joshua.decoder.cky;
+
+import static org.apache.joshua.decoder.cky.TestUtil.decodeList;
+import static org.apache.joshua.decoder.cky.TestUtil.loadStringsFromFile;
+import static org.testng.Assert.assertEquals;
+
+import java.util.List;
+
+import org.apache.joshua.decoder.Decoder;
+import org.apache.joshua.decoder.JoshuaConfiguration;
+import org.apache.joshua.util.io.KenLmTestUtil;
+import org.testng.annotations.AfterMethod;
+import org.testng.annotations.Test;
+
+public class BnEnDecodingTest {
+
+	private JoshuaConfiguration joshuaConfig;
+	private Decoder decoder;
+
+	@AfterMethod
+	public void tearDown() throws Exception {
+		if(decoder != null) {
+			decoder.cleanUp();
+			decoder = null;
+		}
+	}
+
+	@Test
+	public void givenBnEnInput_whenPhraseDecoding_thenScoreAndTranslationCorrect() throws Exception {
+		// Given
+		List<String> inputStrings = loadStringsFromFile("src/test/resources/bn-en/hiero/input.bn");
+
+		// When
+		configureDecoder("src/test/resources/bn-en/hiero/joshua.config");
+		List<String> decodedStrings = decodeList(inputStrings, decoder, joshuaConfig);
+
+		// Then
+		List<String> goldStrings = loadStringsFromFile("src/test/resources/bn-en/hiero/output.gold");
+		assertEquals(decodedStrings, goldStrings);
+	}
+
+	@Test
+	public void givenBnEnInput_whenPhraseDecodingWithBerkeleyLM_thenScoreAndTranslationCorrect() throws Exception {
+		// Given
+		List<String> inputStrings = loadStringsFromFile("src/test/resources/bn-en/hiero/input.bn");
+
+		// When
+		configureDecoder("src/test/resources/bn-en/hiero/joshua-berkeleylm.config");
+		List<String> decodedStrings = decodeList(inputStrings, decoder, joshuaConfig);
+
+		// Then
+		List<String> goldStrings = loadStringsFromFile("src/test/resources/bn-en/hiero/output-berkeleylm.gold");
+		assertEquals(decodedStrings, goldStrings);
+	}
+
+	@Test
+	public void givenBnEnInput_whenPhraseDecodingWithClassLM_thenScoreAndTranslationCorrect() throws Exception {
+		// Given
+		List<String> inputStrings = loadStringsFromFile("src/test/resources/bn-en/hiero/input.bn");
+
+		// When
+		configureDecoder("src/test/resources/bn-en/hiero/joshua-classlm.config");
+		List<String> decodedStrings = decodeList(inputStrings, decoder, joshuaConfig);
+
+		// Then
+		List<String> goldStrings = loadStringsFromFile("src/test/resources/bn-en/hiero/output-classlm.gold");
+		assertEquals(decodedStrings, goldStrings);
+	}
+	
+	@Test
+	public void givenBnEnInput_whenPhraseDecodingWithPackedGrammar_thenScoreAndTranslationCorrect() throws Exception {
+		// Given
+		List<String> inputStrings = loadStringsFromFile("src/test/resources/bn-en/packed/input.bn");
+
+		// When
+		configureDecoder("src/test/resources/bn-en/packed/joshua.config");
+		List<String> decodedStrings = decodeList(inputStrings, decoder, joshuaConfig);
+
+		// Then
+		List<String> goldStrings = loadStringsFromFile("src/test/resources/bn-en/packed/output.gold");
+		assertEquals(decodedStrings, goldStrings);
+	}
+	
+	@Test
+	public void givenBnEnInput_whenPhraseDecodingWithSAMT_thenScoreAndTranslationCorrect() throws Exception {
+		// Given
+		List<String> inputStrings = loadStringsFromFile("src/test/resources/bn-en/samt/input.bn");
+
+		// When
+		configureDecoder("src/test/resources/bn-en/samt/joshua.config");
+		List<String> decodedStrings = decodeList(inputStrings, decoder, joshuaConfig);
+
+		// Then
+		List<String> goldStrings = loadStringsFromFile("src/test/resources/bn-en/samt/output.gold");
+		assertEquals(decodedStrings, goldStrings);
+	}
+	
+	public void configureDecoder(String pathToConfig) throws Exception {
+		joshuaConfig = new JoshuaConfiguration();
+		joshuaConfig.readConfigFile(pathToConfig);
+		KenLmTestUtil.Guard(() -> decoder = new Decoder(joshuaConfig));
+	}
+}

http://git-wip-us.apache.org/repos/asf/incubator-joshua/blob/ee7398f7/joshua-core/src/test/java/org/apache/joshua/decoder/cky/ConstrainedTest.java
----------------------------------------------------------------------
diff --git a/joshua-core/src/test/java/org/apache/joshua/decoder/cky/ConstrainedTest.java b/joshua-core/src/test/java/org/apache/joshua/decoder/cky/ConstrainedTest.java
new file mode 100644
index 0000000..c8d2304
--- /dev/null
+++ b/joshua-core/src/test/java/org/apache/joshua/decoder/cky/ConstrainedTest.java
@@ -0,0 +1,65 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *  http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+package org.apache.joshua.decoder.cky;
+
+import static org.apache.joshua.decoder.cky.TestUtil.decodeList;
+import static org.apache.joshua.decoder.cky.TestUtil.loadStringsFromFile;
+import static org.testng.Assert.assertEquals;
+
+import java.util.List;
+
+import org.apache.joshua.decoder.Decoder;
+import org.apache.joshua.decoder.JoshuaConfiguration;
+import org.apache.joshua.util.io.KenLmTestUtil;
+import org.testng.annotations.AfterMethod;
+import org.testng.annotations.Test;
+
+public class ConstrainedTest {
+
+	private JoshuaConfiguration joshuaConfig;
+	private Decoder decoder;
+
+	@AfterMethod
+	public void tearDown() throws Exception {
+		if(decoder != null) {
+			decoder.cleanUp();
+			decoder = null;
+		}
+	}
+
+	@Test
+	public void givenInput_whenConstrainedDecoding_thenScoreAndTranslationCorrect() throws Exception {
+		// Given
+		List<String> inputStrings = loadStringsFromFile("src/test/resources/decoder/constrained/input.bn");
+
+		// When
+		configureDecoder("src/test/resources/decoder/constrained/joshua.config");
+		List<String> decodedStrings = decodeList(inputStrings, decoder, joshuaConfig);
+
+		// Then
+		List<String> goldStrings = loadStringsFromFile("src/test/resources/decoder/constrained/output.gold");
+		assertEquals(decodedStrings, goldStrings);
+	}
+	
+	public void configureDecoder(String pathToConfig) throws Exception {
+		joshuaConfig = new JoshuaConfiguration();
+		joshuaConfig.readConfigFile(pathToConfig);
+		KenLmTestUtil.Guard(() -> decoder = new Decoder(joshuaConfig));
+	}
+}
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/incubator-joshua/blob/ee7398f7/joshua-core/src/test/java/org/apache/joshua/decoder/cky/DenormalizationTest.java
----------------------------------------------------------------------
diff --git a/joshua-core/src/test/java/org/apache/joshua/decoder/cky/DenormalizationTest.java b/joshua-core/src/test/java/org/apache/joshua/decoder/cky/DenormalizationTest.java
new file mode 100644
index 0000000..f51844f
--- /dev/null
+++ b/joshua-core/src/test/java/org/apache/joshua/decoder/cky/DenormalizationTest.java
@@ -0,0 +1,58 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *  http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+package org.apache.joshua.decoder.cky;
+
+import static org.apache.joshua.decoder.cky.TestUtil.translate;
+import static org.testng.Assert.assertEquals;
+
+import org.apache.joshua.decoder.Decoder;
+import org.apache.joshua.decoder.JoshuaConfiguration;
+import org.testng.annotations.AfterMethod;
+import org.testng.annotations.BeforeMethod;
+import org.testng.annotations.Test;
+
+public class DenormalizationTest {
+
+	private static final String INPUT = "� who you lookin' at , mr. ?";
+	private static final String GOLD = "�Who you lookin' at, Mr.?";
+	
+	private JoshuaConfiguration joshuaConfig = null;
+	private Decoder decoder = null;
+	
+	@BeforeMethod
+	public void setUp() throws Exception {
+		joshuaConfig = new JoshuaConfiguration();
+		joshuaConfig.outputFormat = "%S";
+		joshuaConfig.mark_oovs = false;
+		joshuaConfig.topN = 1;
+		decoder = new Decoder(joshuaConfig);
+	}
+
+	@AfterMethod
+	public void tearDown() throws Exception {
+		decoder.cleanUp();
+		decoder = null;
+	}
+	
+	@Test
+	public void givenTokenizedInputWithSpecialCharacters_whenDecoding_thenOutputNormalized() {
+		String output = translate(INPUT, decoder, joshuaConfig);
+		assertEquals(output.trim(), GOLD);
+	}	
+}
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/incubator-joshua/blob/ee7398f7/joshua-core/src/test/java/org/apache/joshua/decoder/cky/DoNotCrashTest.java
----------------------------------------------------------------------
diff --git a/joshua-core/src/test/java/org/apache/joshua/decoder/cky/DoNotCrashTest.java b/joshua-core/src/test/java/org/apache/joshua/decoder/cky/DoNotCrashTest.java
new file mode 100644
index 0000000..4623040
--- /dev/null
+++ b/joshua-core/src/test/java/org/apache/joshua/decoder/cky/DoNotCrashTest.java
@@ -0,0 +1,62 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *  http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+package org.apache.joshua.decoder.cky;
+
+import static org.apache.joshua.decoder.cky.TestUtil.decodeList;
+import static org.apache.joshua.decoder.cky.TestUtil.loadStringsFromFile;
+
+import java.io.IOException;
+import java.util.List;
+
+import org.apache.joshua.decoder.Decoder;
+import org.apache.joshua.decoder.JoshuaConfiguration;
+import org.testng.annotations.AfterMethod;
+import org.testng.annotations.BeforeMethod;
+import org.testng.annotations.Test;
+
+public class DoNotCrashTest {
+
+	private JoshuaConfiguration joshuaConfig = null;
+	private Decoder decoder = null;
+
+	@BeforeMethod
+	public void setUp() throws Exception {
+		joshuaConfig = new JoshuaConfiguration();
+		decoder = new Decoder(joshuaConfig);
+	}
+
+	@AfterMethod
+	public void tearDown() throws Exception {
+		decoder.cleanUp();
+		decoder = null;
+	}
+
+	@Test
+	public void givenProblematicInput_whenDecoding_thenNoCrash() throws IOException {
+		// Given
+		List<String> inputStrings = loadStringsFromFile("src/test/resources/decoder/dont-crash/input");
+		
+		// When
+		decodeList(inputStrings, decoder, joshuaConfig);
+		
+		// Then
+		// Did not crash
+	}
+
+}

http://git-wip-us.apache.org/repos/asf/incubator-joshua/blob/ee7398f7/joshua-core/src/test/java/org/apache/joshua/decoder/cky/LeftStateTest.java
----------------------------------------------------------------------
diff --git a/joshua-core/src/test/java/org/apache/joshua/decoder/cky/LeftStateTest.java b/joshua-core/src/test/java/org/apache/joshua/decoder/cky/LeftStateTest.java
new file mode 100644
index 0000000..602808c
--- /dev/null
+++ b/joshua-core/src/test/java/org/apache/joshua/decoder/cky/LeftStateTest.java
@@ -0,0 +1,65 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *  http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+package org.apache.joshua.decoder.cky;
+
+import static org.apache.joshua.decoder.cky.TestUtil.decodeList;
+import static org.apache.joshua.decoder.cky.TestUtil.loadStringsFromFile;
+import static org.testng.Assert.assertEquals;
+
+import java.util.List;
+
+import org.apache.joshua.decoder.Decoder;
+import org.apache.joshua.decoder.JoshuaConfiguration;
+import org.apache.joshua.util.io.KenLmTestUtil;
+import org.testng.annotations.AfterMethod;
+import org.testng.annotations.Test;
+
+public class LeftStateTest {
+
+	private JoshuaConfiguration joshuaConfig;
+	private Decoder decoder;
+
+	@AfterMethod
+	public void tearDown() throws Exception {
+		if(decoder != null) {
+			decoder.cleanUp();
+			decoder = null;
+		}
+	}
+
+	@Test
+	public void givenInput_whenLeftStateDecoding_thenScoreAndTranslationCorrect() throws Exception {
+		// Given
+		List<String> inputStrings = loadStringsFromFile("src/test/resources/decoder/left-state/input.bn");
+
+		// When
+		configureDecoder("src/test/resources/decoder/left-state/joshua.config");
+		List<String> decodedStrings = decodeList(inputStrings, decoder, joshuaConfig);
+
+		// Then
+		List<String> goldStrings = loadStringsFromFile("src/test/resources/decoder/left-state/output.gold");
+		assertEquals(decodedStrings, goldStrings);
+	}
+	
+	public void configureDecoder(String pathToConfig) throws Exception {
+		joshuaConfig = new JoshuaConfiguration();
+		joshuaConfig.readConfigFile(pathToConfig);
+		KenLmTestUtil.Guard(() -> decoder = new Decoder(joshuaConfig));
+	}
+}

http://git-wip-us.apache.org/repos/asf/incubator-joshua/blob/ee7398f7/joshua-core/src/test/java/org/apache/joshua/decoder/cky/LowercaseTest.java
----------------------------------------------------------------------
diff --git a/joshua-core/src/test/java/org/apache/joshua/decoder/cky/LowercaseTest.java b/joshua-core/src/test/java/org/apache/joshua/decoder/cky/LowercaseTest.java
new file mode 100644
index 0000000..2d8cb49
--- /dev/null
+++ b/joshua-core/src/test/java/org/apache/joshua/decoder/cky/LowercaseTest.java
@@ -0,0 +1,115 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *  http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+package org.apache.joshua.decoder.cky;
+
+import static org.apache.joshua.decoder.cky.TestUtil.translate;
+import static org.testng.Assert.assertEquals;
+
+import org.apache.joshua.decoder.Decoder;
+import org.apache.joshua.decoder.JoshuaConfiguration;
+import org.testng.annotations.AfterMethod;
+import org.testng.annotations.Test;
+
+public class LowercaseTest {
+
+  private static final String INPUT_ALL_UPPERCASED = "ELLA";
+  private static final String INPUT_CAPITALIZED = "Ella";
+
+  private static final String GOLD_UNTRANSLATED_ALL_UPPERCASED = "ELLA";
+  private static final String GOLD_LOWERCASED = "she";
+  private static final String GOLD_CAPITALIZED = "She";
+  private static final String GOLD_ALL_UPPERCASED = "SHE";
+  
+  private static final String JOSHUA_CONFIG_PATH = "src/test/resources/decoder/lowercaser/joshua.config";
+
+  private JoshuaConfiguration joshuaConfig;
+  private Decoder decoder;
+
+  /**
+   * No match in phrase table (only contains ella), therefore passed through
+   * untranslated.
+   * @throws Exception 
+   */
+  @Test
+  public void givenAllUppercasedInput_whenNotLowercasing_thenLowercasedRuleNotFound() throws Exception {
+    setUp(false, false, false);
+    String output = translate(INPUT_ALL_UPPERCASED, decoder, joshuaConfig);
+    assertEquals(output.trim(), GOLD_UNTRANSLATED_ALL_UPPERCASED);
+  }
+  
+  /**
+   * Match in phrase table (only contains ella), therefore translated.
+   * @throws Exception
+   */
+  @Test
+  public void givenAllUppercasedInput_whenLowercasing_thenLowercasedRuleFound() throws Exception {
+    setUp(true, false, false);
+    String output = translate(INPUT_ALL_UPPERCASED, decoder, joshuaConfig);
+    assertEquals(output.trim(), GOLD_LOWERCASED);
+  }
+  
+  /**
+   * Matches phrase table, not capitalized because projected from first word of sentence
+   * @throws Exception
+   */
+  @Test
+  public void givenCapitalizedInput_whenLowercasingAndProjecting_thenLowercased() throws Exception {
+    setUp(true, true, false);
+    String output = translate(INPUT_CAPITALIZED, decoder, joshuaConfig);
+    assertEquals(output.trim(), GOLD_LOWERCASED);
+  }
+  
+  /**
+   * Matches phrase table, capitalized because of output-format
+   * @throws Exception
+   */
+  @Test
+  public void givenCapitalizedInput_whenLowercasingAndOutputFormatCapitalization_thenCapitalized() throws Exception {
+    setUp(true, true, true);
+    String output = translate(INPUT_CAPITALIZED, decoder, joshuaConfig);
+    assertEquals(output.trim(), GOLD_CAPITALIZED);
+  }
+  
+  /**
+   * Matches phrase table, capitalized because of output-format
+   * @throws Exception
+   */
+  @Test
+  public void givenAllUppercasedInput_whenLowercasingAndProjecting_thenAllUppercased() throws Exception {
+    setUp(true, true, false);
+    String output = translate(INPUT_ALL_UPPERCASED, decoder, joshuaConfig);
+    assertEquals(output.trim(), GOLD_ALL_UPPERCASED);
+  }
+
+  public void setUp(boolean lowercase, boolean projectCase, boolean capitalize) throws Exception {
+    joshuaConfig = new JoshuaConfiguration();
+    joshuaConfig.readConfigFile(JOSHUA_CONFIG_PATH);
+    joshuaConfig.lowercase = lowercase;
+    joshuaConfig.project_case = projectCase;
+    joshuaConfig.outputFormat = capitalize ? "%S" : "%s";
+    decoder = new Decoder(joshuaConfig);
+  }
+  
+  @AfterMethod
+  public void tearDown() throws Exception {
+    decoder.cleanUp();
+    decoder = null;
+  }
+  
+}

http://git-wip-us.apache.org/repos/asf/incubator-joshua/blob/ee7398f7/joshua-core/src/test/java/org/apache/joshua/decoder/cky/NAryTest.java
----------------------------------------------------------------------
diff --git a/joshua-core/src/test/java/org/apache/joshua/decoder/cky/NAryTest.java b/joshua-core/src/test/java/org/apache/joshua/decoder/cky/NAryTest.java
new file mode 100644
index 0000000..5440407
--- /dev/null
+++ b/joshua-core/src/test/java/org/apache/joshua/decoder/cky/NAryTest.java
@@ -0,0 +1,64 @@
+package org.apache.joshua.decoder.cky;
+
+import static org.apache.joshua.decoder.cky.TestUtil.decodeList;
+import static org.apache.joshua.decoder.cky.TestUtil.loadStringsFromFile;
+import static org.testng.Assert.assertEquals;
+
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *  http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import java.util.List;
+
+import org.apache.joshua.decoder.Decoder;
+import org.apache.joshua.decoder.JoshuaConfiguration;
+import org.apache.joshua.util.io.KenLmTestUtil;
+import org.testng.annotations.AfterMethod;
+import org.testng.annotations.Test;
+
+public class NAryTest {
+  private JoshuaConfiguration joshuaConfig;
+  private Decoder decoder;
+
+  @AfterMethod
+  public void tearDown() throws Exception {
+    if (decoder != null) {
+      decoder.cleanUp();
+      decoder = null;
+    }
+  }
+
+  @Test
+  public void givenInput_whenNAryDecoding_thenScoreAndTranslationCorrect() throws Exception {
+    // Given
+    List<String> inputStrings = loadStringsFromFile("src/test/resources/decoder/n-ary/input.txt");
+
+    // When
+    configureDecoder("src/test/resources/decoder/n-ary/joshua.config");
+    List<String> decodedStrings = decodeList(inputStrings, decoder, joshuaConfig);
+
+    // Then
+    List<String> goldStrings = loadStringsFromFile("src/test/resources/decoder/n-ary/output.gold");
+    assertEquals(decodedStrings, goldStrings);
+  }
+
+  public void configureDecoder(String pathToConfig) throws Exception {
+    joshuaConfig = new JoshuaConfiguration();
+    joshuaConfig.readConfigFile(pathToConfig);
+    KenLmTestUtil.Guard(() -> decoder = new Decoder(joshuaConfig));
+  }
+}

http://git-wip-us.apache.org/repos/asf/incubator-joshua/blob/ee7398f7/joshua-core/src/test/java/org/apache/joshua/decoder/cky/NoGrammarTest.java
----------------------------------------------------------------------
diff --git a/joshua-core/src/test/java/org/apache/joshua/decoder/cky/NoGrammarTest.java b/joshua-core/src/test/java/org/apache/joshua/decoder/cky/NoGrammarTest.java
new file mode 100644
index 0000000..398fb79
--- /dev/null
+++ b/joshua-core/src/test/java/org/apache/joshua/decoder/cky/NoGrammarTest.java
@@ -0,0 +1,56 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *  http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+package org.apache.joshua.decoder.cky;
+
+import static org.apache.joshua.decoder.cky.TestUtil.translate;
+import static org.testng.Assert.assertEquals;
+
+import org.apache.joshua.decoder.Decoder;
+import org.apache.joshua.decoder.JoshuaConfiguration;
+import org.testng.annotations.AfterMethod;
+import org.testng.annotations.BeforeMethod;
+import org.testng.annotations.Test;
+
+public class NoGrammarTest {
+
+	private static final String INPUT = "those who hurt others hurt themselves";
+	private static final String GOLD = "0 ||| those_OOV who_OOV hurt_OOV others_OOV hurt_OOV themselves_OOV ||| tm_glue_0=6.000 ||| 0.000";
+	
+	private JoshuaConfiguration joshuaConfig = null;
+	private Decoder decoder = null;
+	
+	@BeforeMethod
+	public void setUp() throws Exception {
+		joshuaConfig = new JoshuaConfiguration();
+		joshuaConfig.mark_oovs = true;
+		decoder = new Decoder(joshuaConfig);
+	}
+
+	@AfterMethod
+	public void tearDown() throws Exception {
+		decoder.cleanUp();
+		decoder = null;
+	}
+	
+	@Test
+	public void givenInput_whenDecodingWithoutGrammar_thenOutputAllOOV() {
+		String output = translate(INPUT, decoder, joshuaConfig);
+		assertEquals(output.trim(), GOLD);
+	}	
+}

http://git-wip-us.apache.org/repos/asf/incubator-joshua/blob/ee7398f7/joshua-core/src/test/java/org/apache/joshua/decoder/cky/TestUtil.java
----------------------------------------------------------------------
diff --git a/joshua-core/src/test/java/org/apache/joshua/decoder/cky/TestUtil.java b/joshua-core/src/test/java/org/apache/joshua/decoder/cky/TestUtil.java
new file mode 100644
index 0000000..35800c6
--- /dev/null
+++ b/joshua-core/src/test/java/org/apache/joshua/decoder/cky/TestUtil.java
@@ -0,0 +1,87 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *  http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+package org.apache.joshua.decoder.cky;
+
+import java.io.IOException;
+import java.nio.file.Files;
+import java.nio.file.Paths;
+import java.util.ArrayList;
+import java.util.Arrays;
+import java.util.List;
+import java.util.stream.Collectors;
+
+import org.apache.joshua.decoder.Decoder;
+import org.apache.joshua.decoder.JoshuaConfiguration;
+import org.apache.joshua.decoder.segment_file.Sentence;
+
+public class TestUtil {
+
+	public static final String N_BEST_SEPARATOR = "\n";
+
+	/**
+	 * Loads a text file and returns a list containing one string per line
+	 * in the file.
+	 * @param pathToFile
+	 * @return
+	 * @throws IOException
+	 */
+	public static List<String> loadStringsFromFile(String pathToFile) throws IOException {
+		List<String> inputLines = Files.lines(Paths.get(pathToFile)).collect(Collectors.toList());
+		return inputLines;
+	}
+
+	/**
+	 * 
+	 * @param inputStrings
+	 *            A list of strings that should be decoded,
+	 * @param decoder
+	 *            An initialized decoder,
+	 * @param joshuaConfig
+	 *            The JoshuaConfiguration corresponding to the decoder.
+	 * @return A list of decoded strings. If the decoder produces a n-best list
+	 *         (separated by N_BEST_SEPARATOR), then each translation of the
+	 *         n-best list has its own entry in the returned list.
+	 */
+	public static List<String> decodeList(List<String> inputStrings, Decoder decoder,
+			JoshuaConfiguration joshuaConfig) {
+		final List<String> decodedStrings = new ArrayList<>();
+
+		for (String inputString : inputStrings) {
+			final Sentence sentence = new Sentence(inputString, 0, joshuaConfig);
+			final String[] nBestList = decoder.decode(sentence).toString().split(N_BEST_SEPARATOR);
+			decodedStrings.addAll(Arrays.asList(nBestList));
+		}
+
+		return decodedStrings;
+	}
+	
+	/**
+	 * Translates the given input string and returns the translation
+	 * converted into a string.
+	 * @param input
+	 * @param decoder
+	 * @param joshuaConfig
+	 * @return
+	 */
+	public static String translate(String input, Decoder decoder, JoshuaConfiguration joshuaConfig) {
+	    final Sentence sentence = new Sentence(input, 0, joshuaConfig);
+	    return decoder.decode(sentence).toString();
+	}
+
+}


[3/9] incubator-joshua git commit: moved new unit tests (former regression tests) to correct location in joshua 7 (joshua-core/src)

Posted by mj...@apache.org.
http://git-wip-us.apache.org/repos/asf/incubator-joshua/blob/ee7398f7/src/test/resources/bn-en/hiero/output-berkeleylm.gold
----------------------------------------------------------------------
diff --git a/src/test/resources/bn-en/hiero/output-berkeleylm.gold b/src/test/resources/bn-en/hiero/output-berkeleylm.gold
deleted file mode 100644
index ef11275..0000000
--- a/src/test/resources/bn-en/hiero/output-berkeleylm.gold
+++ /dev/null
@@ -1,943 +0,0 @@
-"-226.302 rabindranath was born in a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family"
-"-226.523 rabindranath born in kolkata is a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family"
-"-226.884 rabindranath was born in kolkata is a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family"
-"-227.201 rabindranath 's birth in kolkata is a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family"
-"-227.217 rabindranath was born in kolkata a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family"
-"-227.707 rabindranath born in kolkata is one \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family"
-"-227.982 rabindranath was born in the a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family"
-"-228.069 rabindranath was born in kolkata is one \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family"
-"-228.133 rabindranath was born in kolkata in a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family"
-"-228.160 rabindranath was born in kolkata one \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family"
-"-21.022 recently with united states with the relationship between improved ."
-"-21.210 recently with united states with the relation between improved ."
-"-21.900 in recent times with united states with the relationship between improved ."
-"-22.055 in recent times india with united states relationship between improved ."
-"-22.088 in recent times with united states with the relation between improved ."
-"-22.129 recently india with united states relationship between improved ."
-"-22.329 in recent times of india with united states relationship between improved ."
-"-22.334 recently with the united states relationship between improved ."
-"-22.473 recently with the united states with the relationship between improved ."
-"-22.538 recently with united states with the relation improved ."
-"-10.471 mathematics so science language ."
-"-10.543 mathematics is science language ."
-"-11.587 mathematics that science language ."
-"-12.065 science mathematics that language ."
-"-12.259 mathematics so that the science language ."
-"-12.352 mathematics hence science language ."
-"-12.590 mathematics that is science language ."
-"-12.619 mathematics , science language ."
-"-12.751 mathematics that is why science language ."
-"-12.755 mathematics in science language ."
-"-322.621 from this it it can be understood that this \u09ae\u09c7\u099f\u09cd\u09b0\u09bf\u0995\u099f\u09bf will be \u098f\u09ab\u0986\u09b0\u09a1\u09ac\u09cd\u09b2\u09bf\u0989 \u09ae\u09c7\u099f\u09cd\u09b0\u09bf\u0995 ."
-"-322.636 from this it it can be understood that in this \u09ae\u09c7\u099f\u09cd\u09b0\u09bf\u0995\u099f\u09bf will be \u098f\u09ab\u0986\u09b0\u09a1\u09ac\u09cd\u09b2\u09bf\u0989 \u09ae\u09c7\u099f\u09cd\u09b0\u09bf\u0995 ."
-"-322.853 from this easily it can be understood that this \u09ae\u09c7\u099f\u09cd\u09b0\u09bf\u0995\u099f\u09bf will be \u098f\u09ab\u0986\u09b0\u09a1\u09ac\u09cd\u09b2\u09bf\u0989 \u09ae\u09c7\u099f\u09cd\u09b0\u09bf\u0995 ."
-"-322.867 from this easily it can be understood that in this \u09ae\u09c7\u099f\u09cd\u09b0\u09bf\u0995\u099f\u09bf will be \u098f\u09ab\u0986\u09b0\u09a1\u09ac\u09cd\u09b2\u09bf\u0989 \u09ae\u09c7\u099f\u09cd\u09b0\u09bf\u0995 ."
-"-322.952 from this can easily it can be understood that this \u09ae\u09c7\u099f\u09cd\u09b0\u09bf\u0995\u099f\u09bf will be \u098f\u09ab\u0986\u09b0\u09a1\u09ac\u09cd\u09b2\u09bf\u0989 \u09ae\u09c7\u099f\u09cd\u09b0\u09bf\u0995 ."
-"-322.966 from this can easily it can be understood that in this \u09ae\u09c7\u099f\u09cd\u09b0\u09bf\u0995\u099f\u09bf will be \u098f\u09ab\u0986\u09b0\u09a1\u09ac\u09cd\u09b2\u09bf\u0989 \u09ae\u09c7\u099f\u09cd\u09b0\u09bf\u0995 ."
-"-322.982 from this it can be understood easily that this \u09ae\u09c7\u099f\u09cd\u09b0\u09bf\u0995\u099f\u09bf will be \u098f\u09ab\u0986\u09b0\u09a1\u09ac\u09cd\u09b2\u09bf\u0989 \u09ae\u09c7\u099f\u09cd\u09b0\u09bf\u0995 ."
-"-322.995 it can be understood from this easily that this \u09ae\u09c7\u099f\u09cd\u09b0\u09bf\u0995\u099f\u09bf will be \u098f\u09ab\u0986\u09b0\u09a1\u09ac\u09cd\u09b2\u09bf\u0989 \u09ae\u09c7\u099f\u09cd\u09b0\u09bf\u0995 ."
-"-322.996 from this it can be understood easily that in this \u09ae\u09c7\u099f\u09cd\u09b0\u09bf\u0995\u099f\u09bf will be \u098f\u09ab\u0986\u09b0\u09a1\u09ac\u09cd\u09b2\u09bf\u0989 \u09ae\u09c7\u099f\u09cd\u09b0\u09bf\u0995 ."
-"-323.010 it can be understood from this easily that in this \u09ae\u09c7\u099f\u09cd\u09b0\u09bf\u0995\u099f\u09bf will be \u098f\u09ab\u0986\u09b0\u09a1\u09ac\u09cd\u09b2\u09bf\u0989 \u09ae\u09c7\u099f\u09cd\u09b0\u09bf\u0995 ."
-"-236.836 the same with the earthcentered \u09b8\u09be\u09ae\u09a8\u09cd\u09a4\u09a4\u09a8\u09cd\u09a4\u09cd\u09b0\u09c7\u09b0 \u09aa\u09a4\u09a8\u09c7\u09b0 indication match from this novel ."
-"-236.965 the same with the earthcentered \u09b8\u09be\u09ae\u09a8\u09cd\u09a4\u09a4\u09a8\u09cd\u09a4\u09cd\u09b0\u09c7\u09b0 \u09aa\u09a4\u09a8\u09c7\u09b0 presage match from this novel ."
-"-237.005 in the same with the earthcentered \u09b8\u09be\u09ae\u09a8\u09cd\u09a4\u09a4\u09a8\u09cd\u09a4\u09cd\u09b0\u09c7\u09b0 \u09aa\u09a4\u09a8\u09c7\u09b0 indication match from this novel ."
-"-237.135 in the same with the earthcentered \u09b8\u09be\u09ae\u09a8\u09cd\u09a4\u09a4\u09a8\u09cd\u09a4\u09cd\u09b0\u09c7\u09b0 \u09aa\u09a4\u09a8\u09c7\u09b0 presage match from this novel ."
-"-237.590 on the same with the earthcentered \u09b8\u09be\u09ae\u09a8\u09cd\u09a4\u09a4\u09a8\u09cd\u09a4\u09cd\u09b0\u09c7\u09b0 \u09aa\u09a4\u09a8\u09c7\u09b0 indication match from this novel ."
-"-237.670 the same along with the earthcentered \u09b8\u09be\u09ae\u09a8\u09cd\u09a4\u09a4\u09a8\u09cd\u09a4\u09cd\u09b0\u09c7\u09b0 \u09aa\u09a4\u09a8\u09c7\u09b0 indication match from this novel ."
-"-237.720 on the same with the earthcentered \u09b8\u09be\u09ae\u09a8\u09cd\u09a4\u09a4\u09a8\u09cd\u09a4\u09cd\u09b0\u09c7\u09b0 \u09aa\u09a4\u09a8\u09c7\u09b0 presage match from this novel ."
-"-237.800 the same along with the earthcentered \u09b8\u09be\u09ae\u09a8\u09cd\u09a4\u09a4\u09a8\u09cd\u09a4\u09cd\u09b0\u09c7\u09b0 \u09aa\u09a4\u09a8\u09c7\u09b0 presage match from this novel ."
-"-237.839 in the same along with the earthcentered \u09b8\u09be\u09ae\u09a8\u09cd\u09a4\u09a4\u09a8\u09cd\u09a4\u09cd\u09b0\u09c7\u09b0 \u09aa\u09a4\u09a8\u09c7\u09b0 indication match from this novel ."
-"-237.965 same with the earthcentered \u09b8\u09be\u09ae\u09a8\u09cd\u09a4\u09a4\u09a8\u09cd\u09a4\u09cd\u09b0\u09c7\u09b0 \u09aa\u09a4\u09a8\u09c7\u09b0 indication match from this novel ."
-"-217.895 \u09a8\u09bf\u09b0\u09cd\u09ac\u099a\u09a8\u09c7 mujib and his party \u09a8\u09bf\u09b0\u0999\u09cd\u0995\u09c1\u09b7 majority in the ."
-"-220.097 \u09a8\u09bf\u09b0\u09cd\u09ac\u099a\u09a8\u09c7 mujib and his party \u09a8\u09bf\u09b0\u0999\u09cd\u0995\u09c1\u09b7 majority that the ."
-"-220.171 \u09a8\u09bf\u09b0\u09cd\u09ac\u099a\u09a8\u09c7 mujib and his party \u09a8\u09bf\u09b0\u0999\u09cd\u0995\u09c1\u09b7 majority where the ."
-"-220.174 \u09a8\u09bf\u09b0\u09cd\u09ac\u099a\u09a8\u09c7 mujib and his party \u09a8\u09bf\u09b0\u0999\u09cd\u0995\u09c1\u09b7 single absolute majority in the ."
-"-220.184 \u09a8\u09bf\u09b0\u09cd\u09ac\u099a\u09a8\u09c7 mujib and his party \u09a8\u09bf\u09b0\u0999\u09cd\u0995\u09c1\u09b7 majority in the goods ."
-"-220.511 \u09a8\u09bf\u09b0\u09cd\u09ac\u099a\u09a8\u09c7 seikh mujib and his party \u09a8\u09bf\u09b0\u0999\u09cd\u0995\u09c1\u09b7 majority in the ."
-"-220.827 \u09a8\u09bf\u09b0\u09cd\u09ac\u099a\u09a8\u09c7 mujib and his party majority in the \u09a8\u09bf\u09b0\u0999\u09cd\u0995\u09c1\u09b7 ."
-"-220.946 mujib and his party \u09a8\u09bf\u09b0\u09cd\u09ac\u099a\u09a8\u09c7 \u09a8\u09bf\u09b0\u0999\u09cd\u0995\u09c1\u09b7 majority in the ."
-"-221.426 \u09a8\u09bf\u09b0\u09cd\u09ac\u099a\u09a8\u09c7 mujib and his party \u09a8\u09bf\u09b0\u0999\u09cd\u0995\u09c1\u09b7 majority , in the ."
-"-221.431 \u09a8\u09bf\u09b0\u09cd\u09ac\u099a\u09a8\u09c7 mujib and his party \u09a8\u09bf\u09b0\u0999\u09cd\u0995\u09c1\u09b7 the majority in ."
-"-432.357 \u09b9\u09bf\u099f\u09b2\u09be\u09b0\u0993 \u09ac\u09be\u09ad\u09be\u09b0\u09bf\u09af\u09bc\u09be\u09b0 \u09ae\u09bf\u0989\u09a8\u09bf\u0996 \u09b6\u09b9\u09b0\u09c7\u0987 his work with to that ."
-"-433.284 \u09b9\u09bf\u099f\u09b2\u09be\u09b0\u0993 \u09ac\u09be\u09ad\u09be\u09b0\u09bf\u09af\u09bc\u09be\u09b0 \u09ae\u09bf\u0989\u09a8\u09bf\u0996 \u09b6\u09b9\u09b0\u09c7\u0987 his work with can and pajama ."
-"-433.453 \u09b9\u09bf\u099f\u09b2\u09be\u09b0\u0993 \u09ac\u09be\u09ad\u09be\u09b0\u09bf\u09af\u09bc\u09be\u09b0 \u09ae\u09bf\u0989\u09a8\u09bf\u0996 \u09b6\u09b9\u09b0\u09c7\u0987 his work with to and pajama ."
-"-433.520 \u09b9\u09bf\u099f\u09b2\u09be\u09b0\u0993 \u09ac\u09be\u09ad\u09be\u09b0\u09bf\u09af\u09bc\u09be\u09b0 \u09ae\u09bf\u0989\u09a8\u09bf\u0996 \u09b6\u09b9\u09b0\u09c7\u0987 his work with can that ."
-"-433.577 \u09b9\u09bf\u099f\u09b2\u09be\u09b0\u0993 \u09ac\u09be\u09ad\u09be\u09b0\u09bf\u09af\u09bc\u09be\u09b0 \u09ae\u09bf\u0989\u09a8\u09bf\u0996 \u09b6\u09b9\u09b0\u09c7\u0987 his work with that can ."
-"-433.863 \u09b9\u09bf\u099f\u09b2\u09be\u09b0\u0993 \u09ac\u09be\u09ad\u09be\u09b0\u09bf\u09af\u09bc\u09be\u09b0 \u09ae\u09bf\u0989\u09a8\u09bf\u0996 \u09b6\u09b9\u09b0\u09c7\u0987 his works with to that ."
-"-433.962 \u09b9\u09bf\u099f\u09b2\u09be\u09b0\u0993 \u09ac\u09be\u09ad\u09be\u09b0\u09bf\u09af\u09bc\u09be\u09b0 \u09ae\u09bf\u0989\u09a8\u09bf\u0996 \u09b6\u09b9\u09b0\u09c7\u0987 with his work to that ."
-"-433.974 \u09b9\u09bf\u099f\u09b2\u09be\u09b0\u0993 \u09ac\u09be\u09ad\u09be\u09b0\u09bf\u09af\u09bc\u09be\u09b0 \u09ae\u09bf\u0989\u09a8\u09bf\u0996 \u09b6\u09b9\u09b0\u09c7\u0987 his work with a that ."
-"-434.091 \u09b9\u09bf\u099f\u09b2\u09be\u09b0\u0993 \u09ac\u09be\u09ad\u09be\u09b0\u09bf\u09af\u09bc\u09be\u09b0 \u09ae\u09bf\u0989\u09a8\u09bf\u0996 \u09b6\u09b9\u09b0\u09c7\u0987 his work with a and pajama ."
-"-434.368 \u09b9\u09bf\u099f\u09b2\u09be\u09b0\u0993 \u09ac\u09be\u09ad\u09be\u09b0\u09bf\u09af\u09bc\u09be\u09b0 \u09ae\u09bf\u0989\u09a8\u09bf\u0996 \u09b6\u09b9\u09b0\u09c7\u0987 in his work with to that ."
-"-246.114 other than task \u0993\u098f\u09b8-\u099f\u09cd\u09af\u09be\u09a8 and also some linux \u09aa\u09cd\u09b0\u09a4\u09bf\u09a8\u09bf\u09a7\u09bf\u09a4\u09cd\u09ac\u0995\u09be\u09b0\u09c0 character there are but these are very is not ."
-"-246.373 other than task \u0993\u098f\u09b8-\u099f\u09cd\u09af\u09be\u09a8 and some more linux \u09aa\u09cd\u09b0\u09a4\u09bf\u09a8\u09bf\u09a7\u09bf\u09a4\u09cd\u09ac\u0995\u09be\u09b0\u09c0 character there are but these are very is not ."
-"-246.508 other than task \u0993\u098f\u09b8-\u099f\u09cd\u09af\u09be\u09a8 and also some linux \u09aa\u09cd\u09b0\u09a4\u09bf\u09a8\u09bf\u09a7\u09bf\u09a4\u09cd\u09ac\u0995\u09be\u09b0\u09c0 character is but these are very is not ."
-"-246.730 task apart from \u0993\u098f\u09b8-\u099f\u09cd\u09af\u09be\u09a8 and also some linux \u09aa\u09cd\u09b0\u09a4\u09bf\u09a8\u09bf\u09a7\u09bf\u09a4\u09cd\u09ac\u0995\u09be\u09b0\u09c0 character there are but these are very is not ."
-"-246.767 other than task \u0993\u098f\u09b8-\u099f\u09cd\u09af\u09be\u09a8 and some more linux \u09aa\u09cd\u09b0\u09a4\u09bf\u09a8\u09bf\u09a7\u09bf\u09a4\u09cd\u09ac\u0995\u09be\u09b0\u09c0 character is but these are very is not ."
-"-246.771 other than task \u0993\u098f\u09b8-\u099f\u09cd\u09af\u09be\u09a8 and also some linux \u09aa\u09cd\u09b0\u09a4\u09bf\u09a8\u09bf\u09a7\u09bf\u09a4\u09cd\u09ac\u0995\u09be\u09b0\u09c0 character there is but these are very is not ."
-"-246.863 apart from task \u0993\u098f\u09b8-\u099f\u09cd\u09af\u09be\u09a8 and also some linux \u09aa\u09cd\u09b0\u09a4\u09bf\u09a8\u09bf\u09a7\u09bf\u09a4\u09cd\u09ac\u0995\u09be\u09b0\u09c0 character there are but these are very is not ."
-"-246.890 task other than \u0993\u098f\u09b8-\u099f\u09cd\u09af\u09be\u09a8 and also some linux \u09aa\u09cd\u09b0\u09a4\u09bf\u09a8\u09bf\u09a7\u09bf\u09a4\u09cd\u09ac\u0995\u09be\u09b0\u09c0 character there are but these are very is not ."
-"-246.912 other than task \u0993\u098f\u09b8-\u099f\u09cd\u09af\u09be\u09a8 and also some linux \u09aa\u09cd\u09b0\u09a4\u09bf\u09a8\u09bf\u09a7\u09bf\u09a4\u09cd\u09ac\u0995\u09be\u09b0\u09c0 character are but these are very is not ."
-"-246.989 task apart from \u0993\u098f\u09b8-\u099f\u09cd\u09af\u09be\u09a8 and some more linux \u09aa\u09cd\u09b0\u09a4\u09bf\u09a8\u09bf\u09a7\u09bf\u09a4\u09cd\u09ac\u0995\u09be\u09b0\u09c0 character there are but these are very is not ."
-"-255.565 it social situation in \u09b8\u09bf\u09a6\u09cd\u09a7\u09be\u09a8\u09cd\u09a4\u0997\u09cd\u09b0\u09b9\u09a8\u0995\u09be\u09b0\u09c0 his oppositions with \u0995\u09cd\u09b0\u09c0\u09a1\u09bc\u09be\u0995\u09cd\u09b7\u09c7\u09a4\u09cd\u09b0\u09c7 decision making the rule of the vagina ."
-"-255.977 this social situation in \u09b8\u09bf\u09a6\u09cd\u09a7\u09be\u09a8\u09cd\u09a4\u0997\u09cd\u09b0\u09b9\u09a8\u0995\u09be\u09b0\u09c0 his oppositions with \u0995\u09cd\u09b0\u09c0\u09a1\u09bc\u09be\u0995\u09cd\u09b7\u09c7\u09a4\u09cd\u09b0\u09c7 decision making the rule of the vagina ."
-"-256.602 it social situation in \u09b8\u09bf\u09a6\u09cd\u09a7\u09be\u09a8\u09cd\u09a4\u0997\u09cd\u09b0\u09b9\u09a8\u0995\u09be\u09b0\u09c0 his oppositions with \u0995\u09cd\u09b0\u09c0\u09a1\u09bc\u09be\u0995\u09cd\u09b7\u09c7\u09a4\u09cd\u09b0\u09c7 decision making the rules of the vagina ."
-"-256.654 it social situation in \u09b8\u09bf\u09a6\u09cd\u09a7\u09be\u09a8\u09cd\u09a4\u0997\u09cd\u09b0\u09b9\u09a8\u0995\u09be\u09b0\u09c0 his oppositions with the \u0995\u09cd\u09b0\u09c0\u09a1\u09bc\u09be\u0995\u09cd\u09b7\u09c7\u09a4\u09cd\u09b0\u09c7 decision making the rule of the vagina ."
-"-256.668 it social situation in \u09b8\u09bf\u09a6\u09cd\u09a7\u09be\u09a8\u09cd\u09a4\u0997\u09cd\u09b0\u09b9\u09a8\u0995\u09be\u09b0\u09c0 his oppositions with \u0995\u09cd\u09b0\u09c0\u09a1\u09bc\u09be\u0995\u09cd\u09b7\u09c7\u09a4\u09cd\u09b0\u09c7 decision making the rule of the fingers ."
-"-256.721 it social situation in \u09b8\u09bf\u09a6\u09cd\u09a7\u09be\u09a8\u09cd\u09a4\u0997\u09cd\u09b0\u09b9\u09a8\u0995\u09be\u09b0\u09c0 the oppositions with \u0995\u09cd\u09b0\u09c0\u09a1\u09bc\u09be\u0995\u09cd\u09b7\u09c7\u09a4\u09cd\u09b0\u09c7 decision making the rule of the vagina ."
-"-256.940 it social situation in his oppositions \u09b8\u09bf\u09a6\u09cd\u09a7\u09be\u09a8\u09cd\u09a4\u0997\u09cd\u09b0\u09b9\u09a8\u0995\u09be\u09b0\u09c0 with \u0995\u09cd\u09b0\u09c0\u09a1\u09bc\u09be\u0995\u09cd\u09b7\u09c7\u09a4\u09cd\u09b0\u09c7 decision making the rule of the vagina ."
-"-256.967 it social situation in view \u09b8\u09bf\u09a6\u09cd\u09a7\u09be\u09a8\u09cd\u09a4\u0997\u09cd\u09b0\u09b9\u09a8\u0995\u09be\u09b0\u09c0 his oppositions with \u0995\u09cd\u09b0\u09c0\u09a1\u09bc\u09be\u0995\u09cd\u09b7\u09c7\u09a4\u09cd\u09b0\u09c7 decision making the rule of the vagina ."
-"-257.007 in social situation in \u09b8\u09bf\u09a6\u09cd\u09a7\u09be\u09a8\u09cd\u09a4\u0997\u09cd\u09b0\u09b9\u09a8\u0995\u09be\u09b0\u09c0 his oppositions with \u0995\u09cd\u09b0\u09c0\u09a1\u09bc\u09be\u0995\u09cd\u09b7\u09c7\u09a4\u09cd\u09b0\u09c7 decision making the rule of the vagina ."
-"-257.014 this social situation in \u09b8\u09bf\u09a6\u09cd\u09a7\u09be\u09a8\u09cd\u09a4\u0997\u09cd\u09b0\u09b9\u09a8\u0995\u09be\u09b0\u09c0 his oppositions with \u0995\u09cd\u09b0\u09c0\u09a1\u09bc\u09be\u0995\u09cd\u09b7\u09c7\u09a4\u09cd\u09b0\u09c7 decision making the rules of the vagina ."
-"-321.077 \u09ac\u09c3\u09b7\u09cd\u099f\u09bf\u09aa\u09be\u09a4\u0983 annual \u09e8\u09eb\u09ea\u09e6 \u09ae\u09bf\u09b2\u09bf meters"
-"-321.092 \u09ac\u09c3\u09b7\u09cd\u099f\u09bf\u09aa\u09be\u09a4\u0983 annual \u09e8\u09eb\u09ea\u09e6 \u09ae\u09bf\u09b2\u09bf meter"
-"-321.673 \u09ac\u09c3\u09b7\u09cd\u099f\u09bf\u09aa\u09be\u09a4\u0983 arrange \u09e8\u09eb\u09ea\u09e6 \u09ae\u09bf\u09b2\u09bf meters"
-"-321.689 \u09ac\u09c3\u09b7\u09cd\u099f\u09bf\u09aa\u09be\u09a4\u0983 arrange \u09e8\u09eb\u09ea\u09e6 \u09ae\u09bf\u09b2\u09bf meter"
-"-322.768 \u09ac\u09c3\u09b7\u09cd\u099f\u09bf\u09aa\u09be\u09a4\u0983 annual \u09e8\u09eb\u09ea\u09e6 \u09ae\u09bf\u09b2\u09bf metres"
-"-323.365 \u09ac\u09c3\u09b7\u09cd\u099f\u09bf\u09aa\u09be\u09a4\u0983 arrange \u09e8\u09eb\u09ea\u09e6 \u09ae\u09bf\u09b2\u09bf metres"
-"-324.195 \u09ac\u09c3\u09b7\u09cd\u099f\u09bf\u09aa\u09be\u09a4\u0983 annual \u09e8\u09eb\u09ea\u09e6 \u09ae\u09bf\u09b2\u09bf above"
-"-324.476 \u09ac\u09c3\u09b7\u09cd\u099f\u09bf\u09aa\u09be\u09a4\u0983 annual \u09e8\u09eb\u09ea\u09e6 \u09ae\u09bf\u09b2\u09bf is"
-"-324.792 \u09ac\u09c3\u09b7\u09cd\u099f\u09bf\u09aa\u09be\u09a4\u0983 arrange \u09e8\u09eb\u09ea\u09e6 \u09ae\u09bf\u09b2\u09bf above"
-"-325.073 \u09ac\u09c3\u09b7\u09cd\u099f\u09bf\u09aa\u09be\u09a4\u0983 arrange \u09e8\u09eb\u09ea\u09e6 \u09ae\u09bf\u09b2\u09bf is"
-"-664.033 on the year 2004 \u09ae\u09cd\u09af\u09be\u09b8\u09be\u099a\u09c1\u09b8\u09c7\u099f\u09b8 \u0985\u0999\u09cd\u0997\u09b0\u09be\u099c\u09cd\u09af\u09c7\u09b0 \u09ac\u09b8\u09cd\u099f\u09a8 in the city in \u09a1\u09c7\u09ae\u09cb\u0995\u09cd\u09b0\u09cd\u09af\u09be\u099f the national he was the main speech -lrb- keynote speech -rrb- on the ."
-"-664.104 on the year 2004 \u09ae\u09cd\u09af\u09be\u09b8\u09be\u099a\u09c1\u09b8\u09c7\u099f\u09b8 \u0985\u0999\u09cd\u0997\u09b0\u09be\u099c\u09cd\u09af\u09c7\u09b0 \u09ac\u09b8\u09cd\u099f\u09a8 in the city in \u09a1\u09c7\u09ae\u09cb\u0995\u09cd\u09b0\u09cd\u09af\u09be\u099f the national he was the main speech -lrb- keynote speech -rrb- to the ."
-"-664.428 on the year 2004 \u09ae\u09cd\u09af\u09be\u09b8\u09be\u099a\u09c1\u09b8\u09c7\u099f\u09b8 \u0985\u0999\u09cd\u0997\u09b0\u09be\u099c\u09cd\u09af\u09c7\u09b0 \u09ac\u09b8\u09cd\u099f\u09a8 city in \u09a1\u09c7\u09ae\u09cb\u0995\u09cd\u09b0\u09cd\u09af\u09be\u099f the national he was the main speech -lrb- keynote speech -rrb- on the ."
-"-664.430 on the year 2004 \u09ae\u09cd\u09af\u09be\u09b8\u09be\u099a\u09c1\u09b8\u09c7\u099f\u09b8 \u0985\u0999\u09cd\u0997\u09b0\u09be\u099c\u09cd\u09af\u09c7\u09b0 \u09ac\u09b8\u09cd\u099f\u09a8 in the city in \u09a1\u09c7\u09ae\u09cb\u0995\u09cd\u09b0\u09cd\u09af\u09be\u099f the national he was the main speech -lrb- keynote speech -rrb- , the ."
-"-664.498 on the year 2004 \u09ae\u09cd\u09af\u09be\u09b8\u09be\u099a\u09c1\u09b8\u09c7\u099f\u09b8 \u0985\u0999\u09cd\u0997\u09b0\u09be\u099c\u09cd\u09af\u09c7\u09b0 \u09ac\u09b8\u09cd\u099f\u09a8 city in \u09a1\u09c7\u09ae\u09cb\u0995\u09cd\u09b0\u09cd\u09af\u09be\u099f the national he was the main speech -lrb- keynote speech -rrb- to the ."
-"-664.501 on the year 2004 \u09ae\u09cd\u09af\u09be\u09b8\u09be\u099a\u09c1\u09b8\u09c7\u099f\u09b8 \u0985\u0999\u09cd\u0997\u09b0\u09be\u099c\u09cd\u09af\u09c7\u09b0 \u09ac\u09b8\u09cd\u099f\u09a8 held in the national \u09a1\u09c7\u09ae\u09cb\u0995\u09cd\u09b0\u09cd\u09af\u09be\u099f party he was the main speech -lrb- keynote speech -rrb- on the ."
-"-664.506 on the year 2004 \u09ae\u09cd\u09af\u09be\u09b8\u09be\u099a\u09c1\u09b8\u09c7\u099f\u09b8 \u0985\u0999\u09cd\u0997\u09b0\u09be\u099c\u09cd\u09af\u09c7\u09b0 \u09ac\u09b8\u09cd\u099f\u09a8 held in the city \u09a1\u09c7\u09ae\u09cb\u0995\u09cd\u09b0\u09cd\u09af\u09be\u099f the national he was the main speech -lrb- keynote speech -rrb- on the ."
-"-664.549 on the year 2004 \u09ae\u09cd\u09af\u09be\u09b8\u09be\u099a\u09c1\u09b8\u09c7\u099f\u09b8 \u0985\u0999\u09cd\u0997\u09b0\u09be\u099c\u09cd\u09af\u09c7\u09b0 \u09ac\u09b8\u09cd\u099f\u09a8 held in the city as the national \u09a1\u09c7\u09ae\u09cb\u0995\u09cd\u09b0\u09cd\u09af\u09be\u099f he was the main speech -lrb- keynote speech -rrb- on the ."
-"-664.571 on the year 2004 \u09ae\u09cd\u09af\u09be\u09b8\u09be\u099a\u09c1\u09b8\u09c7\u099f\u09b8 \u0985\u0999\u09cd\u0997\u09b0\u09be\u099c\u09cd\u09af\u09c7\u09b0 \u09ac\u09b8\u09cd\u099f\u09a8 held in the national \u09a1\u09c7\u09ae\u09cb\u0995\u09cd\u09b0\u09cd\u09af\u09be\u099f party he was the main speech -lrb- keynote speech -rrb- to the ."
-"-664.576 on the year 2004 \u09ae\u09cd\u09af\u09be\u09b8\u09be\u099a\u09c1\u09b8\u09c7\u099f\u09b8 \u0985\u0999\u09cd\u0997\u09b0\u09be\u099c\u09cd\u09af\u09c7\u09b0 \u09ac\u09b8\u09cd\u099f\u09a8 held in the city \u09a1\u09c7\u09ae\u09cb\u0995\u09cd\u09b0\u09cd\u09af\u09be\u099f the national he was the main speech -lrb- keynote speech -rrb- to the ."
-"-186.010 power distribution of population on east pakistan where to west pakistan " one unit theory " is a \u0985\u09ad\u09bf\u09a8\u09ac started with the where the whole of west pakistan was considered as a province ."
-"-186.122 power distribution of population on east pakistan where to west pakistan " one unit theory , " is a \u0985\u09ad\u09bf\u09a8\u09ac started with the where the whole of west pakistan was considered as a province ."
-"-186.163 power distribution of population on east pakistan where to west pakistan " one unit theory " is a \u0985\u09ad\u09bf\u09a8\u09ac started with the where the whole of west pakistan was regarded as a province ."
-"-186.196 power distribution of population on east pakistan where to west pakistan " one unit theory " is a \u0985\u09ad\u09bf\u09a8\u09ac they started the where the whole of west pakistan was considered as a province ."
-"-186.266 power distribution of population on east pakistan where to west pakistan " one unit theory " is a \u0985\u09ad\u09bf\u09a8\u09ac started with the where the whole of west pakistan a province considered as the ."
-"-186.276 power distribution of population on east pakistan where to west pakistan " one unit theory , " is a \u0985\u09ad\u09bf\u09a8\u09ac started with the where the whole of west pakistan was regarded as a province ."
-"-186.308 power distribution of population on east pakistan where to west pakistan " one unit theory , " is a \u0985\u09ad\u09bf\u09a8\u09ac they started the where the whole of west pakistan was considered as a province ."
-"-186.341 power distribution of population on east pakistan where to west pakistan " one unit theory " is a \u0985\u09ad\u09bf\u09a8\u09ac started with the where the west pakistan was considered as a province ."
-"-186.349 power distribution of population on east pakistan where to west pakistan " one unit theory " is a \u0985\u09ad\u09bf\u09a8\u09ac they started the where the whole of west pakistan was regarded as a province ."
-"-186.363 based on power distribution of population east pakistan where to west pakistan " one unit theory " is a \u0985\u09ad\u09bf\u09a8\u09ac started with the where the whole of west pakistan was considered as a province ."
-"-110.415 the \u09aa\u09b0\u09bf\u09ae\u09be\u09aa\u09a8 theory"
-"-110.598 the theory of \u09aa\u09b0\u09bf\u09ae\u09be\u09aa\u09a8"
-"-110.707 mathematical \u09aa\u09b0\u09bf\u09ae\u09be\u09aa\u09a8 theory"
-"-111.160 \u2022 \u09aa\u09b0\u09bf\u09ae\u09be\u09aa\u09a8 theory"
-"-111.550 . \u09aa\u09b0\u09bf\u09ae\u09be\u09aa\u09a8 theory"
-"-112.134 theory of the \u09aa\u09b0\u09bf\u09ae\u09be\u09aa\u09a8"
-"-112.488 mathematical theory of \u09aa\u09b0\u09bf\u09ae\u09be\u09aa\u09a8"
-"-113.624 theory of . \u09aa\u09b0\u09bf\u09ae\u09be\u09aa\u09a8"
-"-113.990 \u2022 theory of \u09aa\u09b0\u09bf\u09ae\u09be\u09aa\u09a8"
-"-114.359 theory of \u2022 \u09aa\u09b0\u09bf\u09ae\u09be\u09aa\u09a8"
-"-4.318 external links of"
-"-5.206 relation with outside of"
-"-5.587 external link of"
-"-5.674 outer link of"
-"-5.747 external communication of"
-"-6.128 outer communication of"
-"-6.575 external connections of"
-"-6.594 external links by"
-"-6.664 external link by"
-"-6.751 outer link by"
-"-48.733 tata communicationer " foreign sanchar nigam limited building it is the telecommunication system is one of the main providers"
-"-48.866 tata communication " foreign sanchar nigam limited building it is the telecommunication system is one of the main providers"
-"-49.068 tata communicationer " foreign sanchar nigam limited . it is the telecommunication system is one of the main providers"
-"-49.201 tata communication " foreign sanchar nigam limited . it is the telecommunication system is one of the main providers"
-"-49.362 tata communicationer " foreign sanchar nigam limited building it is the telecommunication system is a one of the main providers"
-"-49.495 tata communication " foreign sanchar nigam limited building it is the telecommunication system is a one of the main providers"
-"-49.639 tata communicationer " foreign sanchar nigam limited building it in the telecommunication system is one of the main providers"
-"-49.659 tata communicationer " foreign sanchar nigam limited building it in telecommunication system is one of the main providers"
-"-49.697 tata communicationer " foreign sanchar nigam limited . it is the telecommunication system is a one of the main providers"
-"-49.772 tata communication " foreign sanchar nigam limited building it in the telecommunication system is one of the main providers"
-"-241.090 he that year \u09ea\u0987 \u09a8\u09ad\u09c7\u09ae\u09cd\u09ac\u09b0\u09c7\u09b0 national assembly in election won all and was elected as the 44th president of the united states ."
-"-241.262 he that year \u09ea\u0987 \u09a8\u09ad\u09c7\u09ae\u09cd\u09ac\u09b0\u09c7\u09b0 national assembly in the won all and was elected as the 44th president of the united states ."
-"-241.368 in the same year \u09ea\u0987 \u09a8\u09ad\u09c7\u09ae\u09cd\u09ac\u09b0\u09c7\u09b0 national assembly in election won all and was elected as the 44th president of the united states ."
-"-241.540 in the same year \u09ea\u0987 \u09a8\u09ad\u09c7\u09ae\u09cd\u09ac\u09b0\u09c7\u09b0 national assembly in the won all and was elected as the 44th president of the united states ."
-"-241.586 he that year \u09ea\u0987 \u09a8\u09ad\u09c7\u09ae\u09cd\u09ac\u09b0\u09c7\u09b0 assembly in election of national won all and was elected as the 44th president of the united states ."
-"-241.636 he that year \u09ea\u0987 \u09a8\u09ad\u09c7\u09ae\u09cd\u09ac\u09b0\u09c7\u09b0 assembly at the national election won all and was elected as the 44th president of the united states ."
-"-241.820 he that year \u09ea\u0987 \u09a8\u09ad\u09c7\u09ae\u09cd\u09ac\u09b0\u09c7\u09b0 assembly in national election won all and was elected as the 44th president of the united states ."
-"-241.865 in the same year \u09ea\u0987 \u09a8\u09ad\u09c7\u09ae\u09cd\u09ac\u09b0\u09c7\u09b0 assembly in election of national won all and was elected as the 44th president of the united states ."
-"-241.881 he that year \u09ea\u0987 \u09a8\u09ad\u09c7\u09ae\u09cd\u09ac\u09b0\u09c7\u09b0 assembly the national election won all and was elected as the 44th president of the united states ."
-"-241.915 in the same year \u09ea\u0987 \u09a8\u09ad\u09c7\u09ae\u09cd\u09ac\u09b0\u09c7\u09b0 assembly at the national election won all and was elected as the 44th president of the united states ."
-"-332.122 many indian \u09aa\u09cd\u09b0\u099c\u09be\u09a4\u09bf fighting \u099c\u09be\u09a4 \u099f\u09c7\u0995\u09cd\u09b8\u09be from upper stage"
-"-332.706 many indian \u09aa\u09cd\u09b0\u099c\u09be\u09a4\u09bf fighting \u099c\u09be\u09a4 \u099f\u09c7\u0995\u09cd\u09b8\u09be from the upper stage"
-"-333.093 many of the indian \u09aa\u09cd\u09b0\u099c\u09be\u09a4\u09bf fighting \u099c\u09be\u09a4 \u099f\u09c7\u0995\u09cd\u09b8\u09be from upper stage"
-"-333.394 many indian \u09aa\u09cd\u09b0\u099c\u09be\u09a4\u09bf fighting \u099c\u09be\u09a4 from \u099f\u09c7\u0995\u09cd\u09b8\u09be upper stage"
-"-333.411 many indian \u09aa\u09cd\u09b0\u099c\u09be\u09a4\u09bf fighting \u099c\u09be\u09a4 \u099f\u09c7\u0995\u09cd\u09b8\u09be to upper stage"
-"-333.558 many of indian \u09aa\u09cd\u09b0\u099c\u09be\u09a4\u09bf fighting \u099c\u09be\u09a4 \u099f\u09c7\u0995\u09cd\u09b8\u09be from upper stage"
-"-333.676 many of the indian \u09aa\u09cd\u09b0\u099c\u09be\u09a4\u09bf fighting \u099c\u09be\u09a4 \u099f\u09c7\u0995\u09cd\u09b8\u09be from the upper stage"
-"-333.877 many the indian \u09aa\u09cd\u09b0\u099c\u09be\u09a4\u09bf fighting \u099c\u09be\u09a4 \u099f\u09c7\u0995\u09cd\u09b8\u09be from upper stage"
-"-334.019 of the indian \u09aa\u09cd\u09b0\u099c\u09be\u09a4\u09bf fighting \u099c\u09be\u09a4 \u099f\u09c7\u0995\u09cd\u09b8\u09be from upper stage"
-"-334.071 many indian \u09aa\u09cd\u09b0\u099c\u09be\u09a4\u09bf fighting \u099c\u09be\u09a4 \u099f\u09c7\u0995\u09cd\u09b8\u09be upper stage from"
-"-140.670 britain writers written drama novels and stories recently scripts in \u0986\u09a6\u09c3\u09a4 ."
-"-140.804 britain writers written drama stories and novels recently scripts in \u0986\u09a6\u09c3\u09a4 ."
-"-140.876 britain writers written drama novels stories and recently scripts in \u0986\u09a6\u09c3\u09a4 ."
-"-141.370 britain writers written drama novels stories and in the recent scripts in \u0986\u09a6\u09c3\u09a4 ."
-"-141.436 britain writers written drama novel stories and recently scripts in \u0986\u09a6\u09c3\u09a4 ."
-"-141.631 britain writers written drama novels and stories recently script in \u0986\u09a6\u09c3\u09a4 ."
-"-141.695 britain writers written drama novels and stories in the recent scripts in \u0986\u09a6\u09c3\u09a4 ."
-"-141.720 britain writers written drama novels story and recently scripts in \u0986\u09a6\u09c3\u09a4 ."
-"-141.731 britain writers written drama novels and stories recently scripts in the \u0986\u09a6\u09c3\u09a4 ."
-"-141.765 britain writers written drama stories and novels recently script in \u0986\u09a6\u09c3\u09a4 ."
-"-19.086 on may 1919 , it was published in saogat magazine ."
-"-19.117 1919 , in the month of may it was published in saogat magazine ."
-"-19.140 in the month of may , 1919 it was published in saogat magazine ."
-"-19.206 during the month of may , 1919 it was published in saogat magazine ."
-"-19.348 1919 , it was published in saogat magazine in the month of may ."
-"-19.582 in 1919 in the month of may it was published in saogat magazine ."
-"-19.883 1919 on it was published in saogat magazine in the month of may ."
-"-20.040 1919 on the month of may , it was published in saogat magazine ."
-"-20.253 in 1919 it was published in saogat magazine in the month of may ."
-"-20.411 1919 , during the month of may it was published in saogat magazine ."
-"-452.293 2005 , \u0989\u0987\u09ae\u09c7\u09a8\u09b8 tennis association tour \u099f\u09be\u09af\u09bc\u09be\u09b0-\u09a5\u09cd\u09b0\u09bf \u099f\u09c1\u09b0\u09cd\u09a8\u09be\u09ae\u09c7\u09a8\u09cd\u099f \u09b8\u09be\u09a8\u09ab\u09bf\u09b8\u09cd\u099f open netaji indoor stadium was arranged ."
-"-452.393 in year 2005 \u0989\u0987\u09ae\u09c7\u09a8\u09b8 tennis association tour \u099f\u09be\u09af\u09bc\u09be\u09b0-\u09a5\u09cd\u09b0\u09bf \u099f\u09c1\u09b0\u09cd\u09a8\u09be\u09ae\u09c7\u09a8\u09cd\u099f \u09b8\u09be\u09a8\u09ab\u09bf\u09b8\u09cd\u099f open netaji indoor stadium was arranged ."
-"-452.637 2005 , \u0989\u0987\u09ae\u09c7\u09a8\u09b8 tennis association tour \u099f\u09be\u09af\u09bc\u09be\u09b0-\u09a5\u09cd\u09b0\u09bf \u099f\u09c1\u09b0\u09cd\u09a8\u09be\u09ae\u09c7\u09a8\u09cd\u099f \u09b8\u09be\u09a8\u09ab\u09bf\u09b8\u09cd\u099f open netaji indoor stadium is the ."
-"-452.714 2005 , \u0989\u0987\u09ae\u09c7\u09a8\u09b8 tennis association tour \u099f\u09be\u09af\u09bc\u09be\u09b0-\u09a5\u09cd\u09b0\u09bf \u099f\u09c1\u09b0\u09cd\u09a8\u09be\u09ae\u09c7\u09a8\u09cd\u099f \u09b8\u09be\u09a8\u09ab\u09bf\u09b8\u09cd\u099f open netaji indoor stadium was organized ."
-"-452.736 in year 2005 \u0989\u0987\u09ae\u09c7\u09a8\u09b8 tennis association tour \u099f\u09be\u09af\u09bc\u09be\u09b0-\u09a5\u09cd\u09b0\u09bf \u099f\u09c1\u09b0\u09cd\u09a8\u09be\u09ae\u09c7\u09a8\u09cd\u099f \u09b8\u09be\u09a8\u09ab\u09bf\u09b8\u09cd\u099f open netaji indoor stadium is the ."
-"-452.814 in year 2005 \u0989\u0987\u09ae\u09c7\u09a8\u09b8 tennis association tour \u099f\u09be\u09af\u09bc\u09be\u09b0-\u09a5\u09cd\u09b0\u09bf \u099f\u09c1\u09b0\u09cd\u09a8\u09be\u09ae\u09c7\u09a8\u09cd\u099f \u09b8\u09be\u09a8\u09ab\u09bf\u09b8\u09cd\u099f open netaji indoor stadium was organized ."
-"-453.284 in 2005 , \u0989\u0987\u09ae\u09c7\u09a8\u09b8 tennis association tour \u099f\u09be\u09af\u09bc\u09be\u09b0-\u09a5\u09cd\u09b0\u09bf \u099f\u09c1\u09b0\u09cd\u09a8\u09be\u09ae\u09c7\u09a8\u09cd\u099f \u09b8\u09be\u09a8\u09ab\u09bf\u09b8\u09cd\u099f open netaji indoor stadium was arranged ."
-"-453.595 2005 , \u0989\u0987\u09ae\u09c7\u09a8\u09b8 tennis association tour \u099f\u09be\u09af\u09bc\u09be\u09b0-\u09a5\u09cd\u09b0\u09bf \u099f\u09c1\u09b0\u09cd\u09a8\u09be\u09ae\u09c7\u09a8\u09cd\u099f \u09b8\u09be\u09a8\u09ab\u09bf\u09b8\u09cd\u099f open netaji indoor stadium was arranged in ."
-"-453.627 in 2005 , \u0989\u0987\u09ae\u09c7\u09a8\u09b8 tennis association tour \u099f\u09be\u09af\u09bc\u09be\u09b0-\u09a5\u09cd\u09b0\u09bf \u099f\u09c1\u09b0\u09cd\u09a8\u09be\u09ae\u09c7\u09a8\u09cd\u099f \u09b8\u09be\u09a8\u09ab\u09bf\u09b8\u09cd\u099f open netaji indoor stadium is the ."
-"-453.695 in year 2005 \u0989\u0987\u09ae\u09c7\u09a8\u09b8 tennis association tour \u099f\u09be\u09af\u09bc\u09be\u09b0-\u09a5\u09cd\u09b0\u09bf \u099f\u09c1\u09b0\u09cd\u09a8\u09be\u09ae\u09c7\u09a8\u09cd\u099f \u09b8\u09be\u09a8\u09ab\u09bf\u09b8\u09cd\u099f open netaji indoor stadium was arranged in ."
-"-12.088 to prevent this several measures are taken ."
-"-13.100 to avoid this possibility several measures are taken ."
-"-15.767 to prevent this several measures are the ."
-"-16.171 to prevent this several measures are in the ."
-"-16.336 to prevent this several measures are in ."
-"-16.521 to prevent this several measures are used ."
-"-17.568 to prevent this several measures are given ."
-"-17.627 to prevent this several measures are to ."
-"-17.788 to prevent this several measures are was ."
-"-17.853 to prevent this likely event many precautions are taken ."
-"-334.940 on 5th february , \u09e7\u09ef\u09ec\u09ec \u09b2\u09be\u09b9\u09cb\u09b0\u09c7 of \u09a6\u09b2\u09b8\u09ae\u09c2\u09b9\u09c7\u09b0 a national was held in ."
-"-335.202 on 5th february , \u09e7\u09ef\u09ec\u09ec \u09b2\u09be\u09b9\u09cb\u09b0\u09c7 \u09a6\u09b2\u09b8\u09ae\u09c2\u09b9\u09c7\u09b0 against a national was held in ."
-"-335.223 on 5th february , \u09e7\u09ef\u09ec\u09ec \u09b2\u09be\u09b9\u09cb\u09b0\u09c7 against \u09a6\u09b2\u09b8\u09ae\u09c2\u09b9\u09c7\u09b0 a national was held in ."
-"-335.450 on 5th february , \u09e7\u09ef\u09ec\u09ec \u09b2\u09be\u09b9\u09cb\u09b0\u09c7 opposition \u09a6\u09b2\u09b8\u09ae\u09c2\u09b9\u09c7\u09b0 a national was held in ."
-"-335.695 on 5th february , \u09e7\u09ef\u09ec\u09ec against \u09b2\u09be\u09b9\u09cb\u09b0\u09c7 \u09a6\u09b2\u09b8\u09ae\u09c2\u09b9\u09c7\u09b0 a national was held in ."
-"-336.039 \u09e7\u09ef\u09ec\u09ec on 5th february , \u09b2\u09be\u09b9\u09cb\u09b0\u09c7 of \u09a6\u09b2\u09b8\u09ae\u09c2\u09b9\u09c7\u09b0 a national was held in ."
-"-336.226 on february 5 , \u09e7\u09ef\u09ec\u09ec \u09b2\u09be\u09b9\u09cb\u09b0\u09c7 of \u09a6\u09b2\u09b8\u09ae\u09c2\u09b9\u09c7\u09b0 a national was held in ."
-"-336.232 on 5th february , \u09e7\u09ef\u09ec\u09ec \u09a6\u09b2\u09b8\u09ae\u09c2\u09b9\u09c7\u09b0 against \u09b2\u09be\u09b9\u09cb\u09b0\u09c7 a national was held in ."
-"-336.272 on 5th february , \u09e7\u09ef\u09ec\u09ec \u09b2\u09be\u09b9\u09cb\u09b0\u09c7 of a national was held in \u09a6\u09b2\u09b8\u09ae\u09c2\u09b9\u09c7\u09b0 ."
-"-336.289 on 5th february , \u09e7\u09ef\u09ec\u09ec \u09b2\u09be\u09b9\u09cb\u09b0\u09c7 of \u09a6\u09b2\u09b8\u09ae\u09c2\u09b9\u09c7\u09b0 is a national was held in ."
-"-341.281 bangladesh \u0985\u09b0\u09cd\u0997\u09be\u09a8\u09be\u0987\u099c\u09c7\u09b6\u09a8 of the islamic \u0995\u09a8\u09ab\u09be\u09b0\u09c7\u09a8\u09cd\u09b8 and islamic \u09a1\u09c7\u09ad\u09c7\u09b2\u09aa\u09ae\u09c7\u09a3\u09cd\u099f bank secured its place in in the ."
-"-341.957 bangladesh \u0985\u09b0\u09cd\u0997\u09be\u09a8\u09be\u0987\u099c\u09c7\u09b6\u09a8 of the islamic \u0995\u09a8\u09ab\u09be\u09b0\u09c7\u09a8\u09cd\u09b8 and islamic \u09a1\u09c7\u09ad\u09c7\u09b2\u09aa\u09ae\u09c7\u09a3\u09cd\u099f bank secured its place in took the ."
-"-342.020 bangladesh \u0985\u09b0\u09cd\u0997\u09be\u09a8\u09be\u0987\u099c\u09c7\u09b6\u09a8 of the islamic \u0995\u09a8\u09ab\u09be\u09b0\u09c7\u09a8\u09cd\u09b8 and islamic \u09a1\u09c7\u09ad\u09c7\u09b2\u09aa\u09ae\u09c7\u09a3\u09cd\u099f bank took secured its place in the ."
-"-342.820 bangladesh \u0985\u09b0\u09cd\u0997\u09be\u09a8\u09be\u0987\u099c\u09c7\u09b6\u09a8 of the islamic \u0995\u09a8\u09ab\u09be\u09b0\u09c7\u09a8\u09cd\u09b8 and islamic \u09a1\u09c7\u09ad\u09c7\u09b2\u09aa\u09ae\u09c7\u09a3\u09cd\u099f bank had accepted secured its place in the ."
-"-342.985 bangladesh \u0985\u09b0\u09cd\u0997\u09be\u09a8\u09be\u0987\u099c\u09c7\u09b6\u09a8 of the islamic \u0995\u09a8\u09ab\u09be\u09b0\u09c7\u09a8\u09cd\u09b8 and islamic \u09a1\u09c7\u09ad\u09c7\u09b2\u09aa\u09ae\u09c7\u09a3\u09cd\u099f took bank secured its place in the ."
-"-343.243 bangladesh \u0985\u09b0\u09cd\u0997\u09be\u09a8\u09be\u0987\u099c\u09c7\u09b6\u09a8 of the islamic \u0995\u09a8\u09ab\u09be\u09b0\u09c7\u09a8\u09cd\u09b8 and islamic \u09a1\u09c7\u09ad\u09c7\u09b2\u09aa\u09ae\u09c7\u09a3\u09cd\u099f bank secured its place in adopted the ."
-"-343.351 bangladesh \u0985\u09b0\u09cd\u0997\u09be\u09a8\u09be\u0987\u099c\u09c7\u09b6\u09a8 of the islamic \u0995\u09a8\u09ab\u09be\u09b0\u09c7\u09a8\u09cd\u09b8 and islamic \u09a1\u09c7\u09ad\u09c7\u09b2\u09aa\u09ae\u09c7\u09a3\u09cd\u099f bank secured its place in on the ."
-"-343.428 bangladesh \u0985\u09b0\u09cd\u0997\u09be\u09a8\u09be\u0987\u099c\u09c7\u09b6\u09a8 of the islamic \u0995\u09a8\u09ab\u09be\u09b0\u09c7\u09a8\u09cd\u09b8 and islamic \u09a1\u09c7\u09ad\u09c7\u09b2\u09aa\u09ae\u09c7\u09a3\u09cd\u099f bank adopted the secured its place in the ."
-"-343.571 bangladesh \u0985\u09b0\u09cd\u0997\u09be\u09a8\u09be\u0987\u099c\u09c7\u09b6\u09a8 of the islamic \u0995\u09a8\u09ab\u09be\u09b0\u09c7\u09a8\u09cd\u09b8 and islamic \u09a1\u09c7\u09ad\u09c7\u09b2\u09aa\u09ae\u09c7\u09a3\u09cd\u099f bank secured its place in in the goods ."
-"-343.740 bangladesh \u0985\u09b0\u09cd\u0997\u09be\u09a8\u09be\u0987\u099c\u09c7\u09b6\u09a8 of the islamic \u0995\u09a8\u09ab\u09be\u09b0\u09c7\u09a8\u09cd\u09b8 and islamic \u09a1\u09c7\u09ad\u09c7\u09b2\u09aa\u09ae\u09c7\u09a3\u09cd\u099f bank secured its place in the in ."
-"1.726 subject category : encyclopedia"
-"0.624 subject class : encyclopedia"
-"0.479 subject matter : encyclopedia"
-"0.305 subject : encyclopedia"
-"-0.153 category : encyclopedia"
-"-0.593 special class : encyclopedia"
-"-1.331 subject-class : encyclopedia"
-"-1.831 contents : encyclopedia"
-"-1.855 topics : encyclopedia"
-"-2.030 special category : encyclopedia"
-"-132.240 russia france and israel is the main \u0985\u09b8\u09cd\u09a4\u09cd\u09b0\u09b8\u09b0\u09ac\u09b0\u09be\u09b9\u0995\u09be\u09b0\u09c0 country and defense sub country ."
-"-132.586 russia france and israel the main \u0985\u09b8\u09cd\u09a4\u09cd\u09b0\u09b8\u09b0\u09ac\u09b0\u09be\u09b9\u0995\u09be\u09b0\u09c0 state of india and defense sub country ."
-"-132.627 russia france and israel is the main \u0985\u09b8\u09cd\u09a4\u09cd\u09b0\u09b8\u09b0\u09ac\u09b0\u09be\u09b9\u0995\u09be\u09b0\u09c0 state and defense sub country ."
-"-132.977 russia france and israel india 's main \u0985\u09b8\u09cd\u09a4\u09cd\u09b0\u09b8\u09b0\u09ac\u09b0\u09be\u09b9\u0995\u09be\u09b0\u09c0 country and defense sub country ."
-"-133.044 russia france and israel the main \u0985\u09b8\u09cd\u09a4\u09cd\u09b0\u09b8\u09b0\u09ac\u09b0\u09be\u09b9\u0995\u09be\u09b0\u09c0 country and defense sub country ."
-"-133.069 russia france and israel is the main \u0985\u09b8\u09cd\u09a4\u09cd\u09b0\u09b8\u09b0\u09ac\u09b0\u09be\u09b9\u0995\u09be\u09b0\u09c0 country and defence sub country ."
-"-133.110 russia france and israel is the main \u0985\u09b8\u09cd\u09a4\u09cd\u09b0\u09b8\u09b0\u09ac\u09b0\u09be\u09b9\u0995\u09be\u09b0\u09c0 countries and defense sub country ."
-"-133.257 russia france and israel the main \u0985\u09b8\u09cd\u09a4\u09cd\u09b0\u09b8\u09b0\u09ac\u09b0\u09be\u09b9\u0995\u09be\u09b0\u09c0 country of india and defense sub country ."
-"-133.364 russia france and israel india 's main \u0985\u09b8\u09cd\u09a4\u09cd\u09b0\u09b8\u09b0\u09ac\u09b0\u09be\u09b9\u0995\u09be\u09b0\u09c0 state and defense sub country ."
-"-133.416 russia france and israel the main \u0985\u09b8\u09cd\u09a4\u09cd\u09b0\u09b8\u09b0\u09ac\u09b0\u09be\u09b9\u0995\u09be\u09b0\u09c0 state of india and defence sub country ."
-"-143.878 this is our known as an imaginary unit of mathematics formed with the help of which are set of real numbers from \u09b8\u09c7\u099f\u09c7 par with the complex number ."
-"-144.029 this is our known as an imaginary unit which with the help of mathematics formed the set of real numbers from \u09b8\u09c7\u099f\u09c7 par with the complex number ."
-"-144.250 this is our known as an imaginary unit of mathematics formed with the help of which the set of real numbers from \u09b8\u09c7\u099f\u09c7 par with the complex number ."
-"-144.501 this is our known as imaginary unit of mathematics formed with the help of which are set of real numbers from \u09b8\u09c7\u099f\u09c7 par with the complex number ."
-"-144.534 this is our known as an imaginary unit of mathematics formed with the help of which the real number set from \u09b8\u09c7\u099f\u09c7 par with the complex number ."
-"-144.652 this is our known as imaginary unit which with the help of mathematics formed the set of real numbers from \u09b8\u09c7\u099f\u09c7 par with the complex number ."
-"-144.714 this is our known as an imaginary unit of mathematics formed with the help of which are set of real number from \u09b8\u09c7\u099f\u09c7 par with the complex number ."
-"-144.865 this is our known as an imaginary unit which with the help of mathematics formed the set of real number from \u09b8\u09c7\u099f\u09c7 par with the complex number ."
-"-144.873 this is our known as imaginary unit of mathematics formed with the help of which the set of real numbers from \u09b8\u09c7\u099f\u09c7 par with the complex number ."
-"-144.943 this is our known as an imaginary unit of mathematics formed with the help of which are set of real numbers to \u09b8\u09c7\u099f\u09c7 par with the complex number ."
-"-13.673 <address>"
-"-120.820 < \u09a0\u09bf\u0995\u09be\u09a8\u09be >"
-"-219.955 < \u09a0\u09bf\u0995\u09be\u09a8\u09be , gt ,"
-"-220.429 , lt , \u09a0\u09bf\u0995\u09be\u09a8\u09be >"
-"-220.805 < \u09a0\u09bf\u0995\u09be\u09a8\u09be , gt ;"
-"-221.451 , lt ; \u09a0\u09bf\u0995\u09be\u09a8\u09be >"
-"-221.528 the lt \u09a0\u09bf\u0995\u09be\u09a8\u09be >"
-"-221.814 < \u09a0\u09bf\u0995\u09be\u09a8\u09be , gt and"
-"-221.893 < \u09a0\u09bf\u0995\u09be\u09a8\u09be , gt ."
-"-221.973 , lt and \u09a0\u09bf\u0995\u09be\u09a8\u09be >"
-"1.148 september"
-"-3.006 september ."
-"-103.288 \u09b8\u09c7\u09aa\u09cd\u099f\u09c7\u09ae\u09cd\u09ac\u09b0"
-"-133.987 from this theory though big \u09ac\u09bf\u09b8\u09cd\u09ab\u09cb\u09b0\u09a3\u09cb\u09b0 against can not be but it can be support ."
-"-134.257 from this theory though big \u09ac\u09bf\u09b8\u09cd\u09ab\u09cb\u09b0\u09a3\u09cb\u09b0 against can not be rather it can be support ."
-"-134.405 from this theory though big \u09ac\u09bf\u09b8\u09cd\u09ab\u09cb\u09b0\u09a3\u09cb\u09b0 against can not be but it can be supported ."
-"-134.676 from this theory though big \u09ac\u09bf\u09b8\u09cd\u09ab\u09cb\u09b0\u09a3\u09cb\u09b0 against can not be rather it can be supported ."
-"-134.713 from this theory though the big \u09ac\u09bf\u09b8\u09cd\u09ab\u09cb\u09b0\u09a3\u09cb\u09b0 against can not be but it can be support ."
-"-134.731 this theory from though big \u09ac\u09bf\u09b8\u09cd\u09ab\u09cb\u09b0\u09a3\u09cb\u09b0 against can not be but it can be support ."
-"-134.984 from this theory though the big \u09ac\u09bf\u09b8\u09cd\u09ab\u09cb\u09b0\u09a3\u09cb\u09b0 against can not be rather it can be support ."
-"-134.994 however , from this theory the \u09ac\u09bf\u09b8\u09cd\u09ab\u09cb\u09b0\u09a3\u09cb\u09b0 against can not be but it can be support ."
-"-135.001 this theory from though big \u09ac\u09bf\u09b8\u09cd\u09ab\u09cb\u09b0\u09a3\u09cb\u09b0 against can not be rather it can be support ."
-"-135.101 from this theory , in the \u09ac\u09bf\u09b8\u09cd\u09ab\u09cb\u09b0\u09a3\u09cb\u09b0 against can not be but it can be support ."
-"-252.851 agricultural in production france is the most important country ; it is mainly \u0996\u09be\u09a6\u09cd\u09af\u09b6\u09b8\u09cd\u09af wine cheese and other \u0995\u09c3\u09b7\u09bf\u09a6\u09cd\u09b0\u09ac\u09cd\u09af europe and export the in the whole world ."
-"-253.026 agricultural in production france is the most important country ; it is mainly \u0996\u09be\u09a6\u09cd\u09af\u09b6\u09b8\u09cd\u09af wine cheese and other \u0995\u09c3\u09b7\u09bf\u09a6\u09cd\u09b0\u09ac\u09cd\u09af europe and export of the in the whole world ."
-"-253.145 agricultural in production france is the most important country , it is mainly \u0996\u09be\u09a6\u09cd\u09af\u09b6\u09b8\u09cd\u09af wine cheese and other \u0995\u09c3\u09b7\u09bf\u09a6\u09cd\u09b0\u09ac\u09cd\u09af europe and export the in the whole world ."
-"-253.194 agricultural in production france is the most important country ; it is mainly \u0996\u09be\u09a6\u09cd\u09af\u09b6\u09b8\u09cd\u09af wine cheese and other \u0995\u09c3\u09b7\u09bf\u09a6\u09cd\u09b0\u09ac\u09cd\u09af europe and export in the whole world ."
-"-253.320 agricultural in production france is the most important country , it is mainly \u0996\u09be\u09a6\u09cd\u09af\u09b6\u09b8\u09cd\u09af wine cheese and other \u0995\u09c3\u09b7\u09bf\u09a6\u09cd\u09b0\u09ac\u09cd\u09af europe and export of the in the whole world ."
-"-253.344 agricultural in production france is the most important country ; it is mainly \u0996\u09be\u09a6\u09cd\u09af\u09b6\u09b8\u09cd\u09af wine cheese and other \u0995\u09c3\u09b7\u09bf\u09a6\u09cd\u09b0\u09ac\u09cd\u09af europe and in the whole world export the ."
-"-253.374 agricultural in production france is the most important country of europe , it is mainly \u0996\u09be\u09a6\u09cd\u09af\u09b6\u09b8\u09cd\u09af wine cheese and other \u0995\u09c3\u09b7\u09bf\u09a6\u09cd\u09b0\u09ac\u09cd\u09af europe and export the in the whole world ."
-"-253.376 agricultural in production france is the most important country ; it is mainly \u0996\u09be\u09a6\u09cd\u09af\u09b6\u09b8\u09cd\u09af wine cheese and other \u0995\u09c3\u09b7\u09bf\u09a6\u09cd\u09b0\u09ac\u09cd\u09af europe and export by the in the whole world ."
-"-253.489 agricultural in production france is the most important country , it is mainly \u0996\u09be\u09a6\u09cd\u09af\u09b6\u09b8\u09cd\u09af wine cheese and other \u0995\u09c3\u09b7\u09bf\u09a6\u09cd\u09b0\u09ac\u09cd\u09af europe and export in the whole world ."
-"-253.549 agricultural in production france is the most important country of europe , it is mainly \u0996\u09be\u09a6\u09cd\u09af\u09b6\u09b8\u09cd\u09af wine cheese and other \u0995\u09c3\u09b7\u09bf\u09a6\u09cd\u09b0\u09ac\u09cd\u09af europe and export of the in the whole world ."
-"-115.913 their in mathematics \u09aa\u09be\u099f\u09c0\u0997\u09a3\u09bf\u09a4\u09c7\u09b0 person was ."
-"-117.241 their mathematics explains \u09aa\u09be\u099f\u09c0\u0997\u09a3\u09bf\u09a4\u09c7\u09b0 person was ."
-"-117.692 their in mathematics \u09aa\u09be\u099f\u09c0\u0997\u09a3\u09bf\u09a4\u09c7\u09b0 were was ."
-"-117.711 in mathematics their \u09aa\u09be\u099f\u09c0\u0997\u09a3\u09bf\u09a4\u09c7\u09b0 person was ."
-"-117.775 they in mathematics \u09aa\u09be\u099f\u09c0\u0997\u09a3\u09bf\u09a4\u09c7\u09b0 person was ."
-"-117.823 in mathematics of their \u09aa\u09be\u099f\u09c0\u0997\u09a3\u09bf\u09a4\u09c7\u09b0 person was ."
-"-117.940 their in mathematics \u09aa\u09be\u099f\u09c0\u0997\u09a3\u09bf\u09a4\u09c7\u09b0 are was ."
-"-118.017 their in mathematics was \u09aa\u09be\u099f\u09c0\u0997\u09a3\u09bf\u09a4\u09c7\u09b0 were ."
-"-118.034 their in mathematics \u09aa\u09be\u099f\u09c0\u0997\u09a3\u09bf\u09a4\u09c7\u09b0 priority was ."
-"-118.221 their in mathematics \u09aa\u09be\u099f\u09c0\u0997\u09a3\u09bf\u09a4\u09c7\u09b0 in was ."
-"-548.678 deshgulo are : france call , make noise china belgium switzerland germany denmark sweden austria chekoslovakia argentina italy norway \u09b9\u09be\u0999\u09cd\u0997\u09c7\u09b0\u09c0 yugoslavia bulgaria romania \u0997\u09cd\u09b0\u09c0\u09b8 egypt singapore indonesia \u09a5\u09be\u0987\u09b2\u09cd\u09af\u09be\u09a8\u09cd\u09a1 japan burma \u09b9\u09b2\u09cd\u09af\u09be\u09a8\u09cd\u09a1 soviet russia iran iraq and sri lanka ."
-"-549.105 deshgulo are : france call , make noise china belgium switzerland germany denmark sweden austria chekoslovakia argentina italy norway \u09b9\u09be\u0999\u09cd\u0997\u09c7\u09b0\u09c0 yugoslavia bulgaria rumania \u0997\u09cd\u09b0\u09c0\u09b8 egypt singapore indonesia \u09a5\u09be\u0987\u09b2\u09cd\u09af\u09be\u09a8\u09cd\u09a1 japan burma \u09b9\u09b2\u09cd\u09af\u09be\u09a8\u09cd\u09a1 soviet russia iran iraq and sri lanka ."
-"-549.276 deshgulo are : france call , make noise china belgium switzerland germany denmark sweden austria chekoslovakia argentina italy norway \u09b9\u09be\u0999\u09cd\u0997\u09c7\u09b0\u09c0 yugoslavia bulgaria romania \u0997\u09cd\u09b0\u09c0\u09b8 egypt singapore indonesia \u09a5\u09be\u0987\u09b2\u09cd\u09af\u09be\u09a8\u09cd\u09a1 japan burma \u09b9\u09b2\u09cd\u09af\u09be\u09a8\u09cd\u09a1 the soviet russia iran iraq and sri lanka ."
-"-549.440 deshgulo are : france call , make noise china belgium switzerland germany denmark sweden austria chekoslovakia argentina italy norway \u09b9\u09be\u0999\u09cd\u0997\u09c7\u09b0\u09c0 yugoslavia bulgaria romania \u0997\u09cd\u09b0\u09c0\u09b8 egypt singapore indonesia \u09a5\u09be\u0987\u09b2\u09cd\u09af\u09be\u09a8\u09cd\u09a1 japan burma \u09b9\u09b2\u09cd\u09af\u09be\u09a8\u09cd\u09a1 soviet russia iran iraq and after visiting srilanka ."
-"-549.702 deshgulo are : france call , make noise china belgium switzerland germany denmark sweden austria chekoslovakia argentina italy norway \u09b9\u09be\u0999\u09cd\u0997\u09c7\u09b0\u09c0 yugoslavia bulgaria rumania \u0997\u09cd\u09b0\u09c0\u09b8 egypt singapore indonesia \u09a5\u09be\u0987\u09b2\u09cd\u09af\u09be\u09a8\u09cd\u09a1 japan burma \u09b9\u09b2\u09cd\u09af\u09be\u09a8\u09cd\u09a1 the soviet russia iran iraq and sri lanka ."
-"-549.867 deshgulo are : france call , make noise china belgium switzerland germany denmark sweden austria chekoslovakia argentina italy norway \u09b9\u09be\u0999\u09cd\u0997\u09c7\u09b0\u09c0 yugoslavia bulgaria rumania \u0997\u09cd\u09b0\u09c0\u09b8 egypt singapore indonesia \u09a5\u09be\u0987\u09b2\u09cd\u09af\u09be\u09a8\u09cd\u09a1 japan burma \u09b9\u09b2\u09cd\u09af\u09be\u09a8\u09cd\u09a1 soviet russia iran iraq and after visiting srilanka ."
-"-550.038 deshgulo are : france call , make noise china belgium switzerland germany denmark sweden austria chekoslovakia argentina italy norway \u09b9\u09be\u0999\u09cd\u0997\u09c7\u09b0\u09c0 yugoslavia bulgaria romania \u0997\u09cd\u09b0\u09c0\u09b8 egypt singapore indonesia \u09a5\u09be\u0987\u09b2\u09cd\u09af\u09be\u09a8\u09cd\u09a1 japan burma \u09b9\u09b2\u09cd\u09af\u09be\u09a8\u09cd\u09a1 the soviet russia iran iraq and after visiting srilanka ."
-"-550.040 deshgulo france are : call , make noise china belgium switzerland germany denmark sweden austria chekoslovakia argentina italy norway \u09b9\u09be\u0999\u09cd\u0997\u09c7\u09b0\u09c0 yugoslavia bulgaria romania \u0997\u09cd\u09b0\u09c0\u09b8 egypt singapore indonesia \u09a5\u09be\u0987\u09b2\u09cd\u09af\u09be\u09a8\u09cd\u09a1 japan burma \u09b9\u09b2\u09cd\u09af\u09be\u09a8\u09cd\u09a1 soviet russia iran iraq and sri lanka ."
-"-550.464 deshgulo are : france call , make noise china belgium switzerland germany denmark sweden austria chekoslovakia argentina italy norway \u09b9\u09be\u0999\u09cd\u0997\u09c7\u09b0\u09c0 yugoslavia bulgaria rumania \u0997\u09cd\u09b0\u09c0\u09b8 egypt singapore indonesia \u09a5\u09be\u0987\u09b2\u09cd\u09af\u09be\u09a8\u09cd\u09a1 japan burma \u09b9\u09b2\u09cd\u09af\u09be\u09a8\u09cd\u09a1 the soviet russia iran iraq and after visiting srilanka ."
-"-550.466 deshgulo france are : call , make noise china belgium switzerland germany denmark sweden austria chekoslovakia argentina italy norway \u09b9\u09be\u0999\u09cd\u0997\u09c7\u09b0\u09c0 yugoslavia bulgaria rumania \u0997\u09cd\u09b0\u09c0\u09b8 egypt singapore indonesia \u09a5\u09be\u0987\u09b2\u09cd\u09af\u09be\u09a8\u09cd\u09a1 japan burma \u09b9\u09b2\u09cd\u09af\u09be\u09a8\u09cd\u09a1 soviet russia iran iraq and sri lanka ."
-"-117.393 this \u09ac\u09cd\u09af\u09be\u09b8\u09bf\u09b2\u09bf\u0995\u09be\u09b0 places now bank of england is situated ."
-"-117.416 this \u09ac\u09cd\u09af\u09be\u09b8\u09bf\u09b2\u09bf\u0995\u09be\u09b0 places are located at the bank of england ."
-"-117.876 this \u09ac\u09cd\u09af\u09be\u09b8\u09bf\u09b2\u09bf\u0995\u09be\u09b0 places is located at the bank of england ."
-"-117.961 in this \u09ac\u09cd\u09af\u09be\u09b8\u09bf\u09b2\u09bf\u0995\u09be\u09b0 places now bank of england is situated ."
-"-117.978 this \u09ac\u09cd\u09af\u09be\u09b8\u09bf\u09b2\u09bf\u0995\u09be\u09b0 places are located in the bank of england ."
-"-117.984 in this \u09ac\u09cd\u09af\u09be\u09b8\u09bf\u09b2\u09bf\u0995\u09be\u09b0 places are located at the bank of england ."
-"-118.034 this \u09ac\u09cd\u09af\u09be\u09b8\u09bf\u09b2\u09bf\u0995\u09be\u09b0 parts is located at the bank of england ."
-"-118.042 this \u09ac\u09cd\u09af\u09be\u09b8\u09bf\u09b2\u09bf\u0995\u09be\u09b0 parts are located at the bank of england ."
-"-118.233 this \u09ac\u09cd\u09af\u09be\u09b8\u09bf\u09b2\u09bf\u0995\u09be\u09b0 parts now bank of england is situated ."
-"-118.272 this \u09ac\u09cd\u09af\u09be\u09b8\u09bf\u09b2\u09bf\u0995\u09be\u09b0 places are situated in the bank of england ."
-"-445.620 on the north of the country is the \u09ac\u09bf\u09b8\u09cd\u0995\u09be\u0987 sub-sea on the south \u099c\u09bf\u09ac\u09cd\u09b0\u09be\u09b2\u09cd\u099f\u09be\u09b0 strait \u09aa\u09cd\u09b0\u09a3\u09be\u09b2\u09c0\u09b0 in the south \u09ae\u09b0\u0995\u09cd\u0995\u09cb on the west and the atlantic ocean ."
-"-445.962 on the north of the country is the \u09ac\u09bf\u09b8\u09cd\u0995\u09be\u0987 sub-sea on the south \u099c\u09bf\u09ac\u09cd\u09b0\u09be\u09b2\u09cd\u099f\u09be\u09b0 strait \u09aa\u09cd\u09b0\u09a3\u09be\u09b2\u09c0\u09b0 in the south \u09ae\u09b0\u0995\u09cd\u0995\u09cb to the west and the atlantic ocean ."
-"-446.099 on the north of the country is the \u09ac\u09bf\u09b8\u09cd\u0995\u09be\u0987 sub-sea to the south \u099c\u09bf\u09ac\u09cd\u09b0\u09be\u09b2\u09cd\u099f\u09be\u09b0 strait \u09aa\u09cd\u09b0\u09a3\u09be\u09b2\u09c0\u09b0 in the south \u09ae\u09b0\u0995\u09cd\u0995\u09cb on the west and the atlantic ocean ."
-"-446.336 on the north of the country is the \u09ac\u09bf\u09b8\u09cd\u0995\u09be\u0987 sub-sea on the south \u099c\u09bf\u09ac\u09cd\u09b0\u09be\u09b2\u09cd\u099f\u09be\u09b0 strait \u09aa\u09cd\u09b0\u09a3\u09be\u09b2\u09c0\u09b0 in the south of the \u09ae\u09b0\u0995\u09cd\u0995\u09cb on the west and the atlantic ocean ."
-"-446.387 on the north of the country is the \u09ac\u09bf\u09b8\u09cd\u0995\u09be\u0987 sub-sea on the south \u099c\u09bf\u09ac\u09cd\u09b0\u09be\u09b2\u09cd\u099f\u09be\u09b0 strait \u09aa\u09cd\u09b0\u09a3\u09be\u09b2\u09c0\u09b0 in \u09ae\u09b0\u0995\u09cd\u0995\u09cb on the west and the atlantic ocean ."
-"-446.434 in the north of this country \u09ac\u09bf\u09b8\u09cd\u0995\u09be\u0987 sub-sea on the south \u099c\u09bf\u09ac\u09cd\u09b0\u09be\u09b2\u09cd\u099f\u09be\u09b0 strait \u09aa\u09cd\u09b0\u09a3\u09be\u09b2\u09c0\u09b0 in the south \u09ae\u09b0\u0995\u09cd\u0995\u09cb on the west and the atlantic ocean ."
-"-446.441 on the north of the country is the \u09ac\u09bf\u09b8\u09cd\u0995\u09be\u0987 sub-sea to the south \u099c\u09bf\u09ac\u09cd\u09b0\u09be\u09b2\u09cd\u099f\u09be\u09b0 strait \u09aa\u09cd\u09b0\u09a3\u09be\u09b2\u09c0\u09b0 in the south \u09ae\u09b0\u0995\u09cd\u0995\u09cb to the west and the atlantic ocean ."
-"-446.444 on the north of the country is the \u09ac\u09bf\u09b8\u09cd\u0995\u09be\u0987 sub-sea on the south \u099c\u09bf\u09ac\u09cd\u09b0\u09be\u09b2\u09cd\u099f\u09be\u09b0 strait \u09aa\u09cd\u09b0\u09a3\u09be\u09b2\u09c0\u09b0 the \u09ae\u09b0\u0995\u09cd\u0995\u09cb on the west and the atlantic ocean ."
-"-446.552 on the north of the country is the \u09ac\u09bf\u09b8\u09cd\u0995\u09be\u0987 sub-sea on the south \u099c\u09bf\u09ac\u09cd\u09b0\u09be\u09b2\u09cd\u099f\u09be\u09b0 strait \u09aa\u09cd\u09b0\u09a3\u09be\u09b2\u09c0\u09b0 south \u09ae\u09b0\u0995\u09cd\u0995\u09cb on the west and the atlantic ocean ."
-"-446.624 on the north of the country is the \u09ac\u09bf\u09b8\u09cd\u0995\u09be\u0987 sub-sea on the south \u099c\u09bf\u09ac\u09cd\u09b0\u09be\u09b2\u09cd\u099f\u09be\u09b0 strait \u09aa\u09cd\u09b0\u09a3\u09be\u09b2\u09c0\u09b0 in the south \u09ae\u09b0\u0995\u09cd\u0995\u09cb towards the west and the atlantic ocean ."
-"-248.040 apart from this situation it can be understood that a \u09ae\u09c1\u09b9\u09c2\u09b0\u09cd\u09a4\u09c7 within \u0985\u0995\u09cd\u09b7\u09ae\u09a4\u09be after taking the decision of the united nations ."
-"-248.164 other than this situation it can be understood that a \u09ae\u09c1\u09b9\u09c2\u09b0\u09cd\u09a4\u09c7 within \u0985\u0995\u09cd\u09b7\u09ae\u09a4\u09be after taking the decision of the united nations ."
-"-248.648 apart from this situation it can be understood that a \u09ae\u09c1\u09b9\u09c2\u09b0\u09cd\u09a4\u09c7 fast within \u0985\u0995\u09cd\u09b7\u09ae\u09a4\u09be after taking decision of the united nations ."
-"-248.772 other than this situation it can be understood that a \u09ae\u09c1\u09b9\u09c2\u09b0\u09cd\u09a4\u09c7 fast within \u0985\u0995\u09cd\u09b7\u09ae\u09a4\u09be after taking decision of the united nations ."
-"-248.779 apart from this situation it can be understood that a \u09ae\u09c1\u09b9\u09c2\u09b0\u09cd\u09a4\u09c7 the within \u0985\u0995\u09cd\u09b7\u09ae\u09a4\u09be after taking decision of the united nations ."
-"-248.791 apart from this situation it can be understood that a \u09ae\u09c1\u09b9\u09c2\u09b0\u09cd\u09a4\u09c7 of the united nations the decision within \u0985\u0995\u09cd\u09b7\u09ae\u09a4\u09be after taking ."
-"-248.825 apart from this situation it can be understood that a \u09ae\u09c1\u09b9\u09c2\u09b0\u09cd\u09a4\u09c7 the decision of the united nations within \u0985\u0995\u09cd\u09b7\u09ae\u09a4\u09be after taking ."
-"-248.903 other than this situation it can be understood that a \u09ae\u09c1\u09b9\u09c2\u09b0\u09cd\u09a4\u09c7 the within \u0985\u0995\u09cd\u09b7\u09ae\u09a4\u09be after taking decision of the united nations ."
-"-248.906 apart from this situation it can be understood that a \u09ae\u09c1\u09b9\u09c2\u09b0\u09cd\u09a4\u09c7 quickly within \u0985\u0995\u09cd\u09b7\u09ae\u09a4\u09be after taking decision of the united nations ."
-"-248.916 other than this situation it can be understood that a \u09ae\u09c1\u09b9\u09c2\u09b0\u09cd\u09a4\u09c7 of the united nations the decision within \u0985\u0995\u09cd\u09b7\u09ae\u09a4\u09be after taking ."
-"-125.132 \u0995\u09be\u09b0\u09cd\u09b2 there is work through it is controlled by ."
-"-125.409 \u0995\u09be\u09b0\u09cd\u09b2 there is work through it by the ."
-"-125.984 \u0995\u09be\u09b0\u09cd\u09b2 there is work through this are conducted by the ."
-"-125.986 \u0995\u09be\u09b0\u09cd\u09b2 there is works that it is controlled by ."
-"-126.112 \u0995\u09be\u09b0\u09cd\u09b2 there is work that it is controlled by ."
-"-126.220 \u0995\u09be\u09b0\u09cd\u09b2 there is work through this is controlled by ."
-"-126.432 \u0995\u09be\u09b0\u09cd\u09b2 there is work through it are conducted by the ."
-"-126.447 \u0995\u09be\u09b0\u09cd\u09b2 there is only through it is controlled by ."
-"-126.480 \u0995\u09be\u09b0\u09cd\u09b2 there is work through this by the ."
-"-126.723 \u0995\u09be\u09b0\u09cd\u09b2 there is only through it by the ."
-"-157.897 the subject matters sometimes puran -lrb- from sometimes in the middle age love story sometimes again from today 's social and political \u0998\u099f\u09a8\u09be\u09ac\u09b2\u09bf taken from ."
-"-158.142 the subject matters sometimes puran -lrb- from sometimes in the middle age love story sometimes again from today 's social and political \u0998\u099f\u09a8\u09be\u09ac\u09b2\u09bf from accepted ."
-"-158.165 this subject matters sometimes puran -lrb- from sometimes in the middle age love story sometimes again from today 's social and political \u0998\u099f\u09a8\u09be\u09ac\u09b2\u09bf taken from ."
-"-158.179 the subject matters sometimes puran -lrb- from sometimes in the middle age love story from sometimes again today 's social and political \u0998\u099f\u09a8\u09be\u09ac\u09b2\u09bf taken from ."
-"-158.362 the subject matters sometimes from puran -lrb- sometimes in the middle age love story sometimes again from today 's social and political \u0998\u099f\u09a8\u09be\u09ac\u09b2\u09bf taken from ."
-"-158.411 this subject matters sometimes puran -lrb- from sometimes in the middle age love story sometimes again from today 's social and political \u0998\u099f\u09a8\u09be\u09ac\u09b2\u09bf from accepted ."
-"-158.424 the subject matters sometimes puran -lrb- from sometimes in the middle age love story from sometimes again today 's social and political \u0998\u099f\u09a8\u09be\u09ac\u09b2\u09bf from accepted ."
-"-158.448 this subject matters sometimes puran -lrb- from sometimes in the middle age love story from sometimes again today 's social and political \u0998\u099f\u09a8\u09be\u09ac\u09b2\u09bf taken from ."
-"-158.455 the subject sometimes puran -lrb- from sometimes in the middle age love story sometimes again from today 's social and political \u0998\u099f\u09a8\u09be\u09ac\u09b2\u09bf taken from ."
-"-158.578 the subject matters sometimes puran -lrb- from sometime in the middle age love story sometimes again from today 's social and political \u0998\u099f\u09a8\u09be\u09ac\u09b2\u09bf taken from ."
-"-344.330 three measure based on the age of the universe is found that is almost \u09e7\u09e9.\u09ed � \u09e6.\u09e8 billion years ."
-"-344.654 three measure base on the age of the universe is found that is almost \u09e7\u09e9.\u09ed � \u09e6.\u09e8 billion years ."
-"-344.804 measure three based on the age of the universe is found that is almost \u09e7\u09e9.\u09ed � \u09e6.\u09e8 billion years ."
-"-345.137 on the basis of three measure the age of the universe is found that is almost \u09e7\u09e9.\u09ed � \u09e6.\u09e8 billion years ."
-"-345.520 three measure based on the age of the universe is found it is almost \u09e7\u09e9.\u09ed � \u09e6.\u09e8 billion years ."
-"-345.570 three measure based on the the age of the universe is found that is almost \u09e7\u09e9.\u09ed � \u09e6.\u09e8 billion years ."
-"-345.844 three measure base on the age of the universe is found it is almost \u09e7\u09e9.\u09ed � \u09e6.\u09e8 billion years ."
-"-345.865 three measure based on the age of the universe is found that is about \u09e7\u09e9.\u09ed � \u09e6.\u09e8 billion years ."
-"-345.894 three measure base on the the age of the universe is found that is almost \u09e7\u09e9.\u09ed � \u09e6.\u09e8 billion years ."
-"-345.994 measure three based on the age of the universe is found it is almost \u09e7\u09e9.\u09ed � \u09e6.\u09e8 billion years ."
-"-235.028 there are \u0995\u09be\u099b\u09c7\u0987 east russia which \u0993\u0996\u099f\u09b8\u09cd\u0995 sea and japan sea on the other can be is situated ."
-"-235.123 \u0995\u09be\u099b\u09c7\u0987 there are east russia which \u0993\u0996\u099f\u09b8\u09cd\u0995 sea and japan sea on the other can be is situated ."
-"-235.131 there are \u0995\u09be\u099b\u09c7\u0987 east russia which \u0993\u0996\u099f\u09b8\u09cd\u0995 sea and japan sea is situated on the other can be ."
-"-235.226 \u0995\u09be\u099b\u09c7\u0987 there are east russia which \u0993\u0996\u099f\u09b8\u09cd\u0995 sea and japan sea is situated on the other can be ."
-"-235.390 there are \u0995\u09be\u099b\u09c7\u0987 east russia which \u0993\u0996\u099f\u09b8\u09cd\u0995 sea and japan sea on the other can be situated ."
-"-235.484 \u0995\u09be\u099b\u09c7\u0987 there are east russia which \u0993\u0996\u099f\u09b8\u09cd\u0995 sea and japan sea on the other can be situated ."
-"-235.675 there is \u0995\u09be\u099b\u09c7\u0987 east russia which \u0993\u0996\u099f\u09b8\u09cd\u0995 sea and japan sea on the other can be is situated ."
-"-235.708 there are \u0995\u09be\u099b\u09c7\u0987 east russia which \u0993\u0996\u099f\u09b8\u09cd\u0995 sea and japan sea is situated in the other can be ."
-"-235.713 there are \u0995\u09be\u099b\u09c7\u0987 east russia which \u0993\u0996\u099f\u09b8\u09cd\u0995 sea and japan sea on the other can be located ."
-"-235.778 there is \u0995\u09be\u099b\u09c7\u0987 east russia which \u0993\u0996\u099f\u09b8\u09cd\u0995 sea and japan sea is situated on the other can be ."
-"-119.076 in kolkata is located at the national library of india the leading public \u09b2\u09be\u0987\u09ac\u09cd\u09b0\u09c7\u09b0\u09bf ."
-"-119.169 in kolkata is located in the national library of india the leading public \u09b2\u09be\u0987\u09ac\u09cd\u09b0\u09c7\u09b0\u09bf ."
-"-119.263 in kolkata is situated at the national library of india the leading public \u09b2\u09be\u0987\u09ac\u09cd\u09b0\u09c7\u09b0\u09bf ."
-"-119.665 in kolkata is situated in the national library of india the leading public \u09b2\u09be\u0987\u09ac\u09cd\u09b0\u09c7\u09b0\u09bf ."
-"-119.838 kolkata is located at the national library of india the leading public \u09b2\u09be\u0987\u09ac\u09cd\u09b0\u09c7\u09b0\u09bf ."
-"-119.931 kolkata is located in the national library of india the leading public \u09b2\u09be\u0987\u09ac\u09cd\u09b0\u09c7\u09b0\u09bf ."
-"-120.024 kolkata is situated at the national library of india the leading public \u09b2\u09be\u0987\u09ac\u09cd\u09b0\u09c7\u09b0\u09bf ."
-"-120.410 in kolkata is the national library of india the leading public \u09b2\u09be\u0987\u09ac\u09cd\u09b0\u09c7\u09b0\u09bf ."
-"-120.427 kolkata is situated in the national library of india the leading public \u09b2\u09be\u0987\u09ac\u09cd\u09b0\u09c7\u09b0\u09bf ."
-"-120.447 national library of india is situated in kolkata the leading public \u09b2\u09be\u0987\u09ac\u09cd\u09b0\u09c7\u09b0\u09bf ."
-"-103.288 \u099b\u09a4\u09cd\u09b0\u09be\u0995\u09ac\u09bf\u09a6\u09cd\u09af\u09be"
-"-218.172 \u09b0\u09be\u09b7\u09cd\u099f\u09cd\u09b0\u09b8\u0999\u09cd\u0998\u09c7\u09b0 general secretary \u09ac\u09be\u09a8 ki moon"
-"-218.226 \u09b0\u09be\u09b7\u09cd\u099f\u09cd\u09b0\u09b8\u0999\u09cd\u0998\u09c7\u09b0 secretary general \u09ac\u09be\u09a8 ki moon"
-"-220.109 \u09b0\u09be\u09b7\u09cd\u099f\u09cd\u09b0\u09b8\u0999\u09cd\u0998\u09c7\u09b0 chief secretary \u09ac\u09be\u09a8 ki moon"
-"-221.235 \u09ac\u09be\u09a8 \u09b0\u09be\u09b7\u09cd\u099f\u09cd\u09b0\u09b8\u0999\u09cd\u0998\u09c7\u09b0 general secretary ki moon"
-"-221.542 \u09b0\u09be\u09b7\u09cd\u099f\u09cd\u09b0\u09b8\u0999\u09cd\u0998\u09c7\u09b0 general secretary \u09ac\u09be\u09a8 what moon"
-"-221.596 \u09b0\u09be\u09b7\u09cd\u099f\u09cd\u09b0\u09b8\u0999\u09cd\u0998\u09c7\u09b0 secretary general \u09ac\u09be\u09a8 what moon"
-"-222.569 \u09ac\u09be\u09a8 ki moon \u09b0\u09be\u09b7\u09cd\u099f\u09cd\u09b0\u09b8\u0999\u09cd\u0998\u09c7\u09b0 general secretary"
-"-223.027 \u09b0\u09be\u09b7\u09cd\u099f\u09cd\u09b0\u09b8\u0999\u09cd\u0998\u09c7\u09b0 general secretary \u09ac\u09be\u09a8 what salt"
-"-223.081 \u09b0\u09be\u09b7\u09cd\u099f\u09cd\u09b0\u09b8\u0999\u09cd\u0998\u09c7\u09b0 secretary general \u09ac\u09be\u09a8 what salt"
-"-223.292 \u09b0\u09be\u09b7\u09cd\u099f\u09cd\u09b0\u09b8\u0999\u09cd\u0998\u09c7\u09b0 general secretary \u09ac\u09be\u09a8 the moon"
-"-337.188 \u09ae\u09bf\u09a8\u09bf\u0995\u09cd\u09b8\u09c7\u09b0 of india was smells \u099f\u09be\u09a8\u09c7\u09a8\u09ac\u09ae a famous operating system design \u09aa\u09cd\u09b0\u09b6\u09bf\u0995\u09cd\u09b7\u0995 ."
-"-337.335 \u09ae\u09bf\u09a8\u09bf\u0995\u09cd\u09b8\u09c7\u09b0 of india was smells \u099f\u09be\u09a8\u09c7\u09a8\u09ac\u09ae a famous operating system designing \u09aa\u09cd\u09b0\u09b6\u09bf\u0995\u09cd\u09b7\u0995 ."
-"-337.851 \u09ae\u09bf\u09a8\u09bf\u0995\u09cd\u09b8\u09c7\u09b0 of was smells \u099f\u09be\u09a8\u09c7\u09a8\u09ac\u09ae a famous operating system design \u09aa\u09cd\u09b0\u09b6\u09bf\u0995\u09cd\u09b7\u0995 ."
-"-337.998 \u09ae\u09bf\u09a8\u09bf\u0995\u09cd\u09b8\u09c7\u09b0 of was smells \u099f\u09be\u09a8\u09c7\u09a8\u09ac\u09ae a famous operating system designing \u09aa\u09cd\u09b0\u09b6\u09bf\u0995\u09cd\u09b7\u0995 ."
-"-338.299 \u09ae\u09bf\u09a8\u09bf\u0995\u09cd\u09b8\u09c7\u09b0 of india was smells \u099f\u09be\u09a8\u09c7\u09a8\u09ac\u09ae in a famous operating system design \u09aa\u09cd\u09b0\u09b6\u09bf\u0995\u09cd\u09b7\u0995 ."
-"-338.446 \u09ae\u09bf\u09a8\u09bf\u0995\u09cd\u09b8\u09c7\u09b0 of india was smells \u099f\u09be\u09a8\u09c7\u09a8\u09ac\u09ae in a famous operating system designing \u09aa\u09cd\u09b0\u09b6\u09bf\u0995\u09cd\u09b7\u0995 ."
-"-338.750 \u09ae\u09bf\u09a8\u09bf\u0995\u09cd\u09b8\u09c7\u09b0 to was smells \u099f\u09be\u09a8\u09c7\u09a8\u09ac\u09ae a famous operating system design \u09aa\u09cd\u09b0\u09b6\u09bf\u0995\u09cd\u09b7\u0995 ."
-"-338.838 \u09ae\u09bf\u09a8\u09bf\u0995\u09cd\u09b8\u09c7\u09b0 of were smells \u099f\u09be\u09a8\u09c7\u09a8\u09ac\u09ae a famous operating system design \u09aa\u09cd\u09b0\u09b6\u09bf\u0995\u09cd\u09b7\u0995 ."
-"-338.896 \u09ae\u09bf\u09a8\u09bf\u0995\u09cd\u09b8\u09c7\u09b0 to was smells \u099f\u09be\u09a8\u09c7\u09a8\u09ac\u09ae a famous operating system designing \u09aa\u09cd\u09b0\u09b6\u09bf\u0995\u09cd\u09b7\u0995 ."
-"-338.962 \u09ae\u09bf\u09a8\u09bf\u0995\u09cd\u09b8\u09c7\u09b0 of was smells \u099f\u09be\u09a8\u09c7\u09a8\u09ac\u09ae in a famous operating system design \u09aa\u09cd\u09b0\u09b6\u09bf\u0995\u09cd\u09b7\u0995 ."
-"-1714.540 the \u099f\u09be\u0987\u09ae\u09cd the 's of \u0987\u09a8\u09cd\u09a1\u09bf\u09af\u09bc\u09be-\u09a4\u09c7 written in the " it is absurd to compare it with any other indian cinema ... pather panchali is pure cinema " -lrb- " it other by the indian films with compared to unreal ... pather panchali are pure film " -rrb- ."
-"-1714.622 the \u099f\u09be\u0987\u09ae\u09cd of 's of \u0987\u09a8\u09cd\u09a1\u09bf\u09af\u09bc\u09be-\u09a4\u09c7 written in the " it is absurd to compare it with any other indian cinema ... pather panchali is pure cinema " -lrb- " it other by the indian films with compared to unreal ... pather panchali are pure film " -rrb- ."
-"-1714.748 the \u099f\u09be\u0987\u09ae\u09cd the 's of \u0987\u09a8\u09cd\u09a1\u09bf\u09af\u09bc\u09be-\u09a4\u09c7 written in that " it is absurd to compare it with any other indian cinema ... pather panchali is pure cinema " -lrb- " it other by the indian films with compared to unreal ... pather panchali are pure film " -rrb- ."
-"-1714.769 the \u099f\u09be\u0987\u09ae\u09cd the 's of \u0987\u09a8\u09cd\u09a1\u09bf\u09af\u09bc\u09be-\u09a4\u09c7 written in the " it is absurd to compare it with any other indian cinema ... pather panchali is pure cinema " -lrb- " it other by indian films with compared to unreal ... pather panchali are pure film " -rrb- ."
-"-1714.830 the \u099f\u09be\u0987\u09ae\u09cd of 's of \u0987\u09a8\u09cd\u09a1\u09bf\u09af\u09bc\u09be-\u09a4\u09c7 written in that " it is absurd to compare it with any other indian cinema ... pather panchali is pure cinema " -lrb- " it other by the indian films with compared to unreal ... pather panchali are pure film " -rrb- ."
-"-1714.851 the \u099f\u09be\u0987\u09ae\u09cd of 's of \u0987\u09a8\u09cd\u09a1\u09bf\u09af\u09bc\u09be-\u09a4\u09c7 written in the " it is absurd to compare it with any other indian cinema ... pather panchali is pure cinema " -lrb- " it other by indian films with compared to unreal ... pather panchali are pure film " -rrb- ."
-"-1714.978 the \u099f\u09be\u0987\u09ae\u09cd the 's of \u0987\u09a8\u09cd\u09a1\u09bf\u09af\u09bc\u09be-\u09a4\u09c7 written in that " it is absurd to compare it with any other indian cinema ... pather panchali is pure cinema " -lrb- " it other by indian films with compared to unreal ... pather panchali are pure film " -rrb- ."
-"-1715.009 the \u099f\u09be\u0987\u09ae\u09cd the 's of \u0987\u09a8\u09cd\u09a1\u09bf\u09af\u09bc\u09be-\u09a4\u09c7 written in the " it is absurd to compare it with any other indian cinema ... pather panchali is pure cinema " -lrb- " it other by the indian films with compared to unreal ... pather panchali is pure film " -rrb- ."
-"-1715.032 the \u099f\u09be\u0987\u09ae\u09cd the 's of \u0987\u09a8\u09cd\u09a1\u09bf\u09af\u09bc\u09be-\u09a4\u09c7 written in that , " , it is absurd to compare it with any other indian cinema ... pather panchali is pure cinema " -lrb- " it other by the indian films with compared to unreal ... pather panchali are pure film " -rrb- ."
-"-1715.060 the \u099f\u09be\u0987\u09ae\u09cd of 's of \u0987\u09a8\u09cd\u09a1\u09bf\u09af\u09bc\u09be-\u09a4\u09c7 written in that " it is absurd to compare it with any other indian cinema ... pather panchali is pure cinema " -lrb- " it other by indian films with compared to unreal ... pather panchali are pure film " -rrb- ."
-"-336.768 after that , 1953 in the month of may nazrul and \u09aa\u09cd\u09b0\u09ae\u09c0\u09b2\u09be \u09a6\u09c7\u09ac\u09c0\u0995\u09c7 \u099a\u09bf\u0995\u09bf\u09ce\u09b8\u09be\u09b0 for london sent to ."
-"-336.868 after that the in the month of may , 1953 nazrul and \u09aa\u09cd\u09b0\u09ae\u09c0\u09b2\u09be \u09a6\u09c7\u09ac\u09c0\u0995\u09c7 \u099a\u09bf\u0995\u09bf\u09ce\u09b8\u09be\u09b0 for london sent to ."
-"-336.929 after that in the month of may , 1953 nazrul and \u09aa\u09cd\u09b0\u09ae\u09c0\u09b2\u09be \u09a6\u09c7\u09ac\u09c0\u0995\u09c7 \u099a\u09bf\u0995\u09bf\u09ce\u09b8\u09be\u09b0 for london sent to ."
-"-337.044 after that 1953 , in the month of may nazrul and \u09aa\u09cd\u09b0\u09ae\u09c0\u09b2\u09be \u09a6\u09c7\u09ac\u09c0\u0995\u09c7 \u099a\u09bf\u0995\u09bf\u09ce\u09b8\u09be\u09b0 for london sent to ."
-"-337.100 after that , 1953 during the month of may nazrul and \u09aa\u09cd\u09b0\u09ae\u09c0\u09b2\u09be \u09a6\u09c7\u09ac\u09c0\u0995\u09c7 \u099a\u09bf\u0995\u09bf\u09ce\u09b8\u09be\u09b0 for london sent to ."
-"-337.124 after that , 1953 in the month of may nazrul and \u09aa\u09cd\u09b0\u09ae\u09c0\u09b2\u09be \u09a6\u09c7\u09ac\u09c0\u0995\u09c7 \u099a\u09bf\u0995\u09bf\u09ce\u09b8\u09be\u09b0 for london sent to the ."
-"-337.225 after that the in the month of may , 1953 nazrul and \u09aa\u09cd\u09b0\u09ae\u09c0\u09b2\u09be \u09a6\u09c7\u09ac\u09c0\u0995\u09c7 \u099a\u09bf\u0995\u09bf\u09ce\u09b8\u09be\u09b0 for london sent to the ."
-"-337.286 after that in the month of may , 1953 nazrul and \u09aa\u09cd\u09b0\u09ae\u09c0\u09b2\u09be \u09a6\u09c7\u09ac\u09c0\u0995\u09c7 \u099a\u09bf\u0995\u09bf\u09ce\u09b8\u09be\u09b0 for london sent to the ."
-"-337.301 after that , 1953 in the month of may najrul and \u09aa\u09cd\u09b0\u09ae\u09c0\u09b2\u09be \u09a6\u09c7\u09ac\u09c0\u0995\u09c7 \u099a\u09bf\u0995\u09bf\u09ce\u09b8\u09be\u09b0 for london sent to ."
-"-337.367 after this 1953 , in the month of may nazrul and \u09aa\u09cd\u09b0\u09ae\u09c0\u09b2\u09be \u09a6\u09c7\u09ac\u09c0\u0995\u09c7 \u099a\u09bf\u0995\u09bf\u09ce\u09b8\u09be\u09b0 for london sent to ."
-"-242.245 the southern and the east there is \u09ac\u09bf\u09b8\u09cd\u09a4\u09c0\u09b0\u09cd\u09a3 land , west and in the north there are \u09b0\u09c1\u0995\u09cd\u09b7 mountain and mountain ."
-"-242.290 the southern and the east there is \u09ac\u09bf\u09b8\u09cd\u09a4\u09c0\u09b0\u09cd\u09a3 land , west and on the north there are \u09b0\u09c1\u0995\u09cd\u09b7 mountain and mountain ."
-"-242.774 the southern and the east there is \u09ac\u09bf\u09b8\u09cd\u09a4\u09c0\u09b0\u09cd\u09a3 land , west and in the north there is \u09b0\u09c1\u0995\u09cd\u09b7 mountain and mountain ."
-"-242.776 the southern and the east there is \u09ac\u09bf\u09b8\u09cd\u09a4\u09c0\u09b0\u09cd\u09a3 plain , west and in the north there are \u09b0\u09c1\u0995\u09cd\u09b7 mountain and mountain ."
-"-242.819 the southern and the east there is \u09ac\u09bf\u09b8\u09cd\u09a4\u09c0\u09b0\u09cd\u09a3 land , west and on the north there is \u09b0\u09c1\u0995\u09cd\u09b7 mountain and mountain ."
-"-242.822 the southern and the east there is \u09ac\u09bf\u09b8\u09cd\u09a4\u09c0\u09b0\u09cd\u09a3 plain , west and on the north there are \u09b0\u09c1\u0995\u09cd\u09b7 mountain and mountain ."
-"-242.915 the south and the east there is \u09ac\u09bf\u09b8\u09cd\u09a4\u09c0\u09b0\u09cd\u09a3 land , west and in the north there are \u09b0\u09c1\u0995\u09cd\u09b7 mountain and mountain ."
-"-242.960 the south and the east there is \u09ac\u09bf\u09b8\u09cd\u09a4\u09c0\u09b0\u09cd\u09a3 land , west and on the north there are \u09b0\u09c1\u0995\u09cd\u09b7 mountain and mountain ."
-"-242.973 the southern and the east there is \u09ac\u09bf\u09b8\u09cd\u09a4\u09c0\u09b0\u09cd\u09a3 land , west and in the north there are \u09b0\u09c1\u0995\u09cd\u09b7 hill and mountain ."
-"-243.018 the southern and the east there is \u09ac\u09bf\u09b8\u09cd\u09a4\u09c0\u09b0\u09cd\u09a3 land , west and on the north there are \u09b0\u09c1\u0995\u09cd\u09b7 hill and mountain ."
-"-103.288 \u099f\u09cd\u09b0\u09c7\u09a1\u09ae\u09be\u09b0\u09cd\u0995"
-"-443.070 \u09b2\u09b0\u09cd\u09a1 \u0993\u09af\u09bc\u09c7\u09b2\u09c7\u09b8\u09b2\u09bf\u09b0 -lrb- \u0997\u09ad\u09b0\u09cd\u09a8\u09b0-\u099c\u09c7\u09a8\u09be\u09b0\u09c7\u09b2 \u09e7\u09ed\u09ef\u09ed-\u09e7\u09ee\u09e6\u09eb -rrb- during his city are the ghotechilo"
-"-443.197 \u09b2\u09b0\u09cd\u09a1 \u0993\u09af\u09bc\u09c7\u09b2\u09c7\u09b8\u09b2\u09bf\u09b0 -lrb- \u0997\u09ad\u09b0\u09cd\u09a8\u09b0-\u099c\u09c7\u09a8\u09be\u09b0\u09c7\u09b2 \u09e7\u09ed\u09ef\u09ed-\u09e7\u09ee\u09e6\u09eb -rrb- during his city are the already happened"
-"-443.864 \u09b2\u09b0\u09cd\u09a1 \u0993\u09af\u09bc\u09c7\u09b2\u09c7\u09b8\u09b2\u09bf\u09b0 -lrb- \u0997\u09ad\u09b0\u09cd\u09a8\u09b0-\u099c\u09c7\u09a8\u09be\u09b0\u09c7\u09b2 \u09e7\u09ed\u09ef\u09ed-\u09e7\u09ee\u09e6\u09eb -rrb- during his in the city are the ghotechilo"
-"-443.926 \u09b2\u09b0\u09cd\u09a1 \u0993\u09af\u09bc\u09c7\u09b2\u09c7\u09b8\u09b2\u09bf\u09b0 -lrb- \u0997\u09ad\u09b0\u09cd\u09a8\u09b0-\u099c\u09c7\u09a8\u09be\u09b0\u09c7\u09b2 \u09e7\u09ed\u09ef\u09ed-\u09e7\u09ee\u09e6\u09eb -rrb- during his the mentionable are the ghotechilo"
-"-443.991 \u09b2\u09b0\u09cd\u09a1 \u0993\u09af\u09bc\u09c7\u09b2\u09c7\u09b8\u09b2\u09bf\u09b0 -lrb- \u0997\u09ad\u09b0\u09cd\u09a8\u09b0-\u099c\u09c7\u09a8\u09be\u09b0\u09c7\u09b2 \u09e7\u09ed\u09ef\u09ed-\u09e7\u09ee\u09e6\u09eb -rrb- during his in the city are the already happened"
-"-444.003 \u09b2\u09b0\u09cd\u09a1 \u0993\u09af\u09bc\u09c7\u09b2\u09c7\u09b8\u09b2\u09bf\u09b0 -lrb- \u0997\u09ad\u09b0\u09cd\u09a8\u09b0-\u099c\u09c7\u09a8\u09be\u09b0\u09c7\u09b2 \u09e7\u09ed\u09ef\u09ed-\u09e7\u09ee\u09e6\u09eb -rrb- during his the are the ghotechilo"
-"-444.050 \u09b2\u09b0\u09cd\u09a1 \u0993\u09af\u09bc\u09c7\u09b2\u09c7\u09b8\u09b2\u09bf\u09b0 -lrb- \u0997\u09ad\u09b0\u09cd\u09a8\u09b0-\u099c\u09c7\u09a8\u09be\u09b0\u09c7\u09b2 \u09e7\u09ed\u09ef\u09ed-\u09e7\u09ee\u09e6\u09eb -rrb- during his the city are the ghotechilo"
-"-444.053 \u09b2\u09b0\u09cd\u09a1 \u0993\u09af\u09bc\u09c7\u09b2\u09c7\u09b8\u09b2\u09bf\u09b0 -lrb- \u0997\u09ad\u09b0\u09cd\u09a8\u09b0-\u099c\u09c7\u09a8\u09be\u09b0\u09c7\u09b2 \u09e7\u09ed\u09ef\u09ed-\u09e7\u09ee\u09e6\u09eb -rrb- during his the mentionable are the already happened"
-"-444.124 \u09b2\u09b0\u09cd\u09a1 \u0993\u09af\u09bc\u09c7\u09b2\u09c7\u09b8\u09b2\u09bf\u09b0 -lrb- \u0997\u09ad\u09b0\u09cd\u09a8\u09b0-\u099c\u09c7\u09a8\u09be\u09b0\u09c7\u09b2 \u09e7\u09ed\u09ef\u09ed-\u09e7\u09ee\u09e6\u09eb -rrb- during his city are increased ghotechilo"
-"-444.130 \u09b2\u09b0\u09cd\u09a1 \u0993\u09af\u09bc\u09c7\u09b2\u09c7\u09b8\u09b2\u09bf\u09b0 -lrb- \u0997\u09ad\u09b0\u09cd\u09a8\u09b0-\u099c\u09c7\u09a8\u09be\u09b0\u09c7\u09b2 \u09e7\u09ed\u09ef\u09ed-\u09e7\u09ee\u09e6\u09eb -rrb- during his the are the already happened"
-"-26.515 many important and real extremely necessary to solve problems complex number"
-"-26.733 many important and real to solve problems complex number apariharza"
-"-26.848 many important and real to solve problems extremely necessary complex number"
-"-26.857 many important and real problem to solve complex number apariharza"
-"-27.272 many important and real problem to for complex number apariharza"
-"-27.273 many important and real to solve problems complex number inevitable"
-"-27.283 many important and real extremely necessary to solve problems complex numbers"
-"-27.298 many important and real problem extremely necessary to solve complex number"
-"-27.308 many important and real to solve problems complex number extremely necessary"
-"-27.330 many important and real to solve problems complex numbers apariharza"
-"-45.363 the big bang is a famous result in the state of the universe so and recent situation from the separate ."
-"-45.486 the big bang is a famous result are in the state of the universe so and recent situation from the separate ."
-"-45.659 the big bang is a famous result is in the state of the universe so and recent situation from the separate ."
-"-45.867 the big bang is a famous result in the state of the universe so and recent situation from the the ."
-"-45.920 the big bang is a famous result in the state of the universe so and recent situation from the different ."
-"-45.989 the big bang is a famous result are in the state of the universe so and recent situation from the the ."
-"-46.043 the big bang is a famous result are in the state of the universe so and recent situation from the different ."
-"-46.162 the big bang is a famous result is in the state of the universe so and recent situation from the the ."
-"-46.216 the big bang is a famous result is in the state of the universe so and recent situation from the different ."
-"-46.242 the big bang is a famous result in the state of the universe so and recent state from the separate ."
-"-104.858 windows \u09ae\u09bf\u09b2\u09bf\u09a8\u09bf\u09af\u09bc\u09be\u09ae"
-"-207.084 \u0989\u0987\u09a8\u09cd\u09a1\u09cb\u099c \u09ae\u09bf\u09b2\u09bf\u09a8\u09bf\u09af\u09bc\u09be\u09ae"
-"-219.540 however , rabindranath more than one \u09b6\u09c8\u09b2\u09c0 \u0986\u09af\u09bc\u09a4\u09cd\u09a4\u09cd\u09ac was ."
-"-219.826 rabindranath , more than one \u09b6\u09c8\u09b2\u09c0 \u0986\u09af\u09bc\u09a4\u09cd\u09a4\u09cd\u09ac was ."
-"-219.926 rabindranath however , more than one \u09b6\u09c8\u09b2\u09c0 \u0986\u09af\u09bc\u09a4\u09cd\u09a4\u09cd\u09ac was ."
-"-219.999 rabindranath , in more than one \u09b6\u09c8\u09b2\u09c0 \u0986\u09af\u09bc\u09a4\u09cd\u09a4\u09cd\u09ac was ."
-"-220.052 however , rabindranath more than one \u09b6\u09c8\u09b2\u09c0 \u0986\u09af\u09bc\u09a4\u09cd\u09a4\u09cd\u09ac a ."
-"-220.167 however , rabindranath more than one \u09b6\u09c8\u09b2\u09c0 \u0986\u09af\u09bc\u09a4\u09cd\u09a4\u09cd\u09ac by ."
-"-220.337 rabindranath , more than one \u09b6\u09c8\u09b2\u09c0 \u0986\u09af\u09bc\u09a4\u09cd\u09a4\u09cd\u09ac a ."
-"-220.438 rabindranath however , more than one \u09b6\u09c8\u09b2\u09c0 \u0986\u09af\u09bc\u09a4\u09cd\u09a4\u09cd\u09ac a ."
-"-220.452 rabindranath , more than one \u09b6\u09c8\u09b2\u09c0 \u0986\u09af\u09bc\u09a4\u09cd\u09a4\u09cd\u09ac by ."
-"-220.511 rabindranath , in more than one \u09b6\u09c8\u09b2\u09c0 \u0986\u09af\u09bc\u09a4\u09cd\u09a4\u09cd\u09ac a ."
-"-0.994 labour economics"
-"-1.238 labor economy"
-"-2.085 labor economy ."
-"-2.997 labour economics ."
-"-3.592 labor economics"
-"-3.911 the labour economics"
-"-4.189 labour economy"
-"-4.211 the labor economy"
-"-4.983 labor economics ."
-"-5.030 labour economy ."
-"-20.224 britain at some point of time the was the main and his economic power in the world ."
-"-20.653 britain at some point of time the was the main and his economical power in the world ."
-"-20.657 britain at some point of time was the main and his economic power in the world ."
-"-20.876 britain was once upon a time the main and his economic power in the world ."
-"-20.964 britain at one point of time the was the main and his economic power in the world ."
-"-21.086 britain at some point of time was the main and his economical power in the world ."
-"-21.159 britain was once upon a time the and his economic power in the world ."
-"-21.165 britain at one point of time was the main and his economic power in the world ."
-"-21.293 britain was once upon a time his and the main economic power in the world ."
-"-21.392 britain at one point of time the was the main and his economical power in the world ."
-"-266.155 the military rule movement against pakistan and \u0997\u09cb\u09b7\u09cd\u09a0\u09c0\u0997\u09a4 was against protest and independence movement of the bengalis , \u09a7\u09be\u09ac\u09bf\u09a4 to for he widely praised ."
-"-266.275 movement against the military rule and \u0997\u09cb\u09b7\u09cd\u09a0\u09c0\u0997\u09a4 of pakistan was against protest and independence movement of the bengalis , \u09a7\u09be\u09ac\u09bf\u09a4 to for he widely praised ."
-"-266.292 the military rule movement against and \u0997\u09cb\u09b7\u09cd\u09a0\u09c0\u0997\u09a4 of pakistan was against protest and independence movement of the bengalis , \u09a7\u09be\u09ac\u09bf\u09a4 to for he widely praised ."
-"-266.384 the military rule movement against pakistan and \u0997\u09cb\u09b7\u09cd\u09a0\u09c0\u0997\u09a4 was against protest and independence movement of the bengalis from \u09a7\u09be\u09ac\u09bf\u09a4 to for he widely praised ."
-"-266.393 movement against the military rule and pakistan \u0997\u09cb\u09b7\u09cd\u09a0\u09c0\u0997\u09a4 was against protest and independence movement of the bengalis , \u09a7\u09be\u09ac\u09bf\u09a4 to for he widely praised ."
-"-266.410 the military rule movement against and pakistan \u0997\u09cb\u09b7\u09cd\u09a0\u09c0\u0997\u09a4 was against protest and independence movement of the bengalis , \u09a7\u09be\u09ac\u09bf\u09a4 to for he widely praised ."
-"-266.449 the military rule movement against pakistan and \u0997\u09cb\u09b7\u09cd\u09a0\u09c0\u0997\u09a4 was against protest and movement of the bengalis independence , \u09a7\u09be\u09ac\u09bf\u09a4 to for he widely praised ."
-"-266.475 the military rule movement against pakistan and \u0997\u09cb\u09b7\u09cd\u09a0\u09c0\u0997\u09a4 protest against inequality first and independence movement of the bengalis , \u09a7\u09be\u09ac\u09bf\u09a4 to for he widely praised ."
-"-266.487 movement against the pakistani military rule and \u0997\u09cb\u09b7\u09cd\u09a0\u09c0\u0997\u09a4 of pakistan was against protest and independence movement of the bengalis , \u09a7\u09be\u09ac\u09bf\u09a4 to for he widely praised ."
-"-266.505 movement against the military rule and \u0997\u09cb\u09b7\u09cd\u09a0\u09c0\u0997\u09a4 of pakistan was against protest and independence movement of the bengalis from \u09a7\u09be\u09ac\u09bf\u09a4 to for he widely praised ."
-"-171.397 here is mentioned that were internet and other name of world wide web word to be but actually \u09b6\u09ac\u09cd\u09a6\u09a6\u09cd\u09ac\u09af\u09bc different subject to the ."
-"-171.639 here is mentioned that were internet and other name of world wide web word to be , but actually \u09b6\u09ac\u09cd\u09a6\u09a6\u09cd\u09ac\u09af\u09bc different subject to the ."
-"-171.640 here is mentioned that were internet and world wide web \u2019 s synonymous to be word , but actually \u09b6\u09ac\u09cd\u09a6\u09a6\u09cd\u09ac\u09af\u09bc different subject to the ."
-"-171.721 here is mentioned that were internet and other name of world wide web to be word , but actually \u09b6\u09ac\u09cd\u09a6\u09a6\u09cd\u09ac\u09af\u09bc different subject to the ."
-"-172.203 here is mentioned that were internet and other name of world wide web word to be though actually \u09b6\u09ac\u09cd\u09a6\u09a6\u09cd\u09ac\u09af\u09bc different subject to the ."
-"-172.436 here is mentioned that were internet and other name of world wide web word to be but actually \u09b6\u09ac\u09cd\u09a6\u09a6\u09cd\u09ac\u09af\u09bc different subject indicates the ."
-"-172.478 here is mentioned that were internet and world wide web \u2019 s synonymous to be word but actually \u09b6\u09ac\u09cd\u09a6\u09a6\u09cd\u09ac\u09af\u09bc different subject to the ."
-"-172.482 here is mentioned that were internet and other name of world wide web word as considered as but actually \u09b6\u09ac\u09cd\u09a6\u09a6\u09cd\u09ac\u09af\u09bc different subject to the ."
-"-172.559 here is mentioned that were internet and other name of world wide web to be word but actually \u09b6\u09ac\u09cd\u09a6\u09a6\u09cd\u09ac\u09af\u09bc different subject to the ."
-"-172.606 here is mentioned that were internet and world wide web \u2019 s synonymous word to be but actually \u09b6\u09ac\u09cd\u09a6\u09a6\u09cd\u09ac\u09af\u09bc different subject to the ."
-"-31.445 . the related z polar co-ordinate two are r = ."
-"-31.908 . the related z polar co-ordinate two is r = ."
-"-32.274 . the related of z polar co-ordinate two are r = ."
-"-32.647 . z is related polar co-ordinate two are r = ."
-"-32.722 . z its related polar co-ordinate two are r = ."
-"-32.737 . the related of z polar co-ordinate two is r = ."
-"-32.749 in the related z polar co-ordinate two are r = ."
-"-32.809 . z the related polar co-ordinate two are r = ."
-"-32.876 . the related polar co-ordinate two z is r = ."
-"-32.950 . z it related polar co-ordinate two are r = ."
-"1.122 november"
-"-4.248 november ."
-"-103.288 \u09a8\u09ad\u09c7\u09ae\u09cd\u09ac\u09b0"
-"-337.642 1972 \u0996\u09cd\u09b0\u09c0\u09b8\u09cd\u099f\u09be\u09ac\u09cd\u09a6\u09c7 then \u0986\u09b0\u09aa\u09be\u09a8\u09c7\u099f\u09c7 first \u0987\u09b2\u09c7\u0995\u09cd\u099f\u09cd\u09b0\u09a8\u09bf\u0995 mail to to ."
-"-338.308 1972 \u0996\u09cd\u09b0\u09c0\u09b8\u09cd\u099f\u09be\u09ac\u09cd\u09a6\u09c7 then \u0986\u09b0\u09aa\u09be\u09a8\u09c7\u099f\u09c7 first \u0987\u09b2\u09c7\u0995\u09cd\u099f\u09cd\u09b0\u09a8\u09bf\u0995 mail sent to ."
-"-338.450 1972 \u0996\u09cd\u09b0\u09c0\u09b8\u09cd\u099f\u09be\u09ac\u09cd\u09a6\u09c7 " \u0986\u09b0\u09aa\u09be\u09a8\u09c7\u099f\u09c7 first \u0987\u09b2\u09c7\u0995\u09cd\u099f\u09cd\u09b0\u09a8\u09bf\u0995 mail to to ."
-"-338.529 1972 \u0996\u09cd\u09b0\u09c0\u09b8\u09cd\u099f\u09be\u09ac\u09cd\u09a6\u09c7 then \u0986\u09b0\u09aa\u09be\u09a8\u09c7\u099f\u09c7 first ever \u0987\u09b2\u09c7\u0995\u09cd\u099f\u09cd\u09b0\u09a8\u09bf\u0995 mail to to ."
-"-338.826 1972 \u0996\u09cd\u09b0\u09c0\u09b8\u09cd\u099f\u09be\u09ac\u09cd\u09a6\u09c7 then \u0986\u09b0\u09aa\u09be\u09a8\u09c7\u099f\u09c7 first \u0987\u09b2\u09c7\u0995\u09cd\u099f\u09cd\u09b0\u09a8\u09bf\u0995 mail to used ."
-"-338.911 1972 \u0996\u09cd\u09b0\u09c0\u09b8\u09cd\u099f\u09be\u09ac\u09cd\u09a6\u09c7 then \u0986\u09b0\u09aa\u09be\u09a8\u09c7\u099f\u09c7 first \u0987\u09b2\u09c7\u0995\u09cd\u099f\u09cd\u09b0\u09a8\u09bf\u0995 mail to be the ."
-"-339.004 1972 \u0996\u09cd\u09b0\u09c0\u09b8\u09cd\u099f\u09be\u09ac\u09cd\u09a6\u09c7 then \u0986\u09b0\u09aa\u09be\u09a8\u09c7\u099f\u09c7 first \u0987\u09b2\u09c7\u0995\u09cd\u099f\u09cd\u09b0\u09a8\u09bf\u0995 to mail to ."
-"-339.052 1972 \u0996\u09cd\u09b0\u09c0\u09b8\u09cd\u099f\u09be\u09ac\u09cd\u09a6\u09c7 then \u0986\u09b0\u09aa\u09be\u09a8\u09c7\u099f\u09c7 first \u0987\u09b2\u09c7\u0995\u09cd\u099f\u09cd\u09b0\u09a8\u09bf\u0995 mail sent to the ."
-"-339.066 \u0996\u09cd\u09b0\u09c0\u09b8\u09cd\u099f\u09be\u09ac\u09cd\u09a6\u09c7 1972 then \u0986\u09b0\u09aa\u09be\u09a8\u09c7\u099f\u09c7 first \u0987\u09b2\u09c7\u0995\u09cd\u099f\u09cd\u09b0\u09a8\u09bf\u0995 mail to to ."
-"-339.127 1972 \u0996\u09cd\u09b0\u09c0\u09b8\u09cd\u099f\u09be\u09ac\u09cd\u09a6\u09c7 then \u0986\u09b0\u09aa\u09be\u09a8\u09c7\u099f\u09c7 first \u0987\u09b2\u09c7\u0995\u09cd\u099f\u09cd\u09b0\u09a8\u09bf\u0995 mail to to the ."
-"-453.504 \u099c\u09c0\u09ac science that \u09b6\u09be\u0996\u09be\u09af\u09bc fungi and the practical about the subject to he was \u099b\u09a4\u09cd\u09b0\u09be\u0995\u09ac\u09bf\u09a6\u09cd\u09af\u09be -lrb- mycology -rrb-"
-"-453.963 \u099c\u09c0\u09ac science that \u09b6\u09be\u0996\u09be\u09af\u09bc fungi and its practical about the subject to he was \u099b\u09a4\u09cd\u09b0\u09be\u0995\u09ac\u09bf\u09a6\u09cd\u09af\u09be -lrb- mycology -rrb-"
-"-454.443 \u099c\u09c0\u09ac science that \u09b6\u09be\u0996\u09be\u09af\u09bc fungi and the practical about the subject to he \u099b\u09a4\u09cd\u09b0\u09be\u0995\u09ac\u09bf\u09a6\u09cd\u09af\u09be -lrb- mycology -rrb-"
-"-454.447 \u099c\u09c0\u09ac science that \u09b6\u09be\u0996\u09be\u09af\u09bc fungus and the practical about the subject to he was \u099b\u09a4\u09cd\u09b0\u09be\u0995\u09ac\u09bf\u09a6\u09cd\u09af\u09be -lrb- mycology -rrb-"
-"-454.737 \u099c\u09c0\u09ac science the \u09b6\u09be\u0996\u09be\u09af\u09bc fungi and the practical about the subject to he was \u099b\u09a4\u09cd\u09b0\u09be\u0995\u09ac\u09bf\u09a6\u09cd\u09af\u09be -lrb- mycology -rrb-"
-"-454.788 \u099c\u09c0\u09ac science that \u09b6\u09be\u0996\u09be\u09af\u09bc fungi and the practical subject about to the he was \u099b\u09a4\u09cd\u09b0\u09be\u0995\u09ac\u09bf\u09a6\u09cd\u09af\u09be -lrb- mycology -rrb-"
-"-454.823 \u099c\u09c0\u09ac science that \u09b6\u09be\u0996\u09be\u09af\u09bc fungi and the about the practical subject to he was \u099b\u09a4\u09cd\u09b0\u09be\u0995\u09ac\u09bf\u09a6\u09cd\u09af\u09be -lrb- mycology -rrb-"
-"-454.872 \u099c\u09c0\u09ac science that \u09b6\u09be\u0996\u09be\u09af\u09bc fungi and the practical about the issue to he was \u099b\u09a4\u09cd\u09b0\u09be\u0995\u09ac\u09bf\u09a6\u09cd\u09af\u09be -lrb- mycology -rrb-"
-"-454.901 \u099c\u09c0\u09ac science that \u09b6\u09be\u0996\u09be\u09af\u09bc fungi and its practical about the subject to he \u099b\u09a4\u09cd\u09b0\u09be\u0995\u09ac\u09bf\u09a6\u09cd\u09af\u09be -lrb- mycology -rrb-"
-"-454.903 \u099c\u09c0\u09ac science that the \u09b6\u09be\u0996\u09be\u09af\u09bc fungi and the practical about the subject to he was \u099b\u09a4\u09cd\u09b0\u09be\u0995\u09ac\u09bf\u09a6\u09cd\u09af\u09be -lrb- mycology -rrb-"
-"-467.773 water river from \u0989\u09a0\u09be\u09a8\u09cb was some a \u09a6\u09bf\u09af\u09bc\u09c7- \u09a6\u09a1\u09bc\u09bf and \u09ac\u09be\u09b2\u099f\u09bf\u09b0 through water used by animal world a system ."
-"-467.834 water from the river \u0989\u09a0\u09be\u09a8\u09cb was some a \u09a6\u09bf\u09af\u09bc\u09c7- \u09a6\u09a1\u09bc\u09bf and \u09ac\u09be\u09b2\u099f\u09bf\u09b0 through water used by animal world a system ."
-"-468.060 water river from \u0989\u09a0\u09be\u09a8\u09cb was some a \u09a6\u09bf\u09af\u09bc\u09c7- \u09a6\u09a1\u09bc\u09bf and \u09ac\u09be\u09b2\u099f\u09bf\u09b0 through water used by animal world a method ."
-"-468.122 water from the river \u0989\u09a0\u09be\u09a8\u09cb was some a \u09a6\u09bf\u09af\u09bc\u09c7- \u09a6\u09a1\u09bc\u09bf and \u09ac\u09be\u09b2\u099f\u09bf\u09b0 through water used by animal world a method ."
-"-468.149 water river from \u0989\u09a0\u09be\u09a8\u09cb was a few a \u09a6\u09bf\u09af\u09bc\u09c7- \u09a6\u09a1\u09bc\u09bf and \u09ac\u09be\u09b2\u099f\u09bf\u09b0 through water used by animal world a system ."
-"-468.162 water river from \u0989\u09a0\u09be\u09a8\u09cb was some purs \u09a6\u09bf\u09af\u09bc\u09c7- \u09a6\u09a1\u09bc\u09bf and \u09ac\u09be\u09b2\u099f\u09bf\u09b0 through water used by animal world a system ."
-"-468.211 water from the river \u0989\u09a0\u09be\u09a8\u09cb was a few a \u09a6\u09bf\u09af\u09bc\u09c7- \u09a6\u09a1\u09bc\u09bf and \u09ac\u09be\u09b2\u099f\u09bf\u09b0 through water used by animal world a system ."
-"-468.224 water from the river \u0989\u09a0\u09be\u09a8\u09cb was some purs \u09a6\u09bf\u09af\u09bc\u09c7- \u09a6\u09a1\u09bc\u09bf and \u09ac\u09be\u09b2\u099f\u09bf\u09b0 through water used by animal world a system ."
-"-468.238 water river from \u0989\u09a0\u09be\u09a8\u09cb was some a \u09a6\u09bf\u09af\u09bc\u09c7- \u09a6\u09a1\u09bc\u09bf and \u09ac\u09be\u09b2\u099f\u09bf\u09b0 through water used by animal world a process ."
-"-468.293 water river from \u0989\u09a0\u09be\u09a8\u09cb it was some a \u09a6\u09bf\u09af\u09bc\u09c7- \u09a6\u09a1\u09bc\u09bf and \u09ac\u09be\u09b2\u099f\u09bf\u09b0 through water used by animal world a system ."
-"-25.170 among these there are tribal dance lokuj dance classical dance etc ."
-"-25.620 among these there are tribal dance influences impact dance classical dance etc ."
-"-26.831 among them are tribal dance lokuj dance classical dance etc ."
-"-26.999 among these there tribal dance lokuj dance classical dance etc ."
-"-27.046 among these there is tribal dance lokuj dance classical dance etc ."
-"-27.280 among them are tribal dance influences impact dance classical dance etc ."
-"-27.316 among them there are tribal dance lokuj dance classical dance etc ."
-"-27.449 among these there tribal dance influences impact dance classical dance etc ."
-"-27.496 among these there is tribal dance influences impact dance classical dance etc ."
-"-27.539 among these are tribal dance lokuj dance classical dance etc ."
-"-128.172 the oldest literature at first \u09ae\u09cc\u0996\u09bf\u0995\u09ad\u09be\u09ac\u09c7 and later written form is the ."
-"-128.707 the oldest literature at first \u09ae\u09cc\u0996\u09bf\u0995\u09ad\u09be\u09ac\u09c7 and later written form is in the ."
-"-128.982 the oldest literature at first \u09ae\u09cc\u0996\u09bf\u0995\u09ad\u09be\u09ac\u09c7 and later written form is in ."
-"-129.166 the oldest literature at first \u09ae\u09cc\u0996\u09bf\u0995\u09ad\u09be\u09ac\u09c7 and later written form is used ."
-"-129.172 the oldest literature at first \u09ae\u09cc\u0996\u09bf\u0995\u09ad\u09be\u09ac\u09c7 and then written form is the ."
-"-129.327 the oldest literature at first \u09ae\u09cc\u0996\u09bf\u0995\u09ad\u09be\u09ac\u09c7 and later written in the form is the ."
-"-129.377 the oldest literature at first \u09ae\u09cc\u0996\u09bf\u0995\u09ad\u09be\u09ac\u09c7 and later written in the in the ."
-"-129.578 the oldest literature at first \u09ae\u09cc\u0996\u09bf\u0995\u09ad\u09be\u09ac\u09c7 and later written in the the ."
-"-129.592 the oldest literature at first \u09ae\u09cc\u0996\u09bf\u0995\u09ad\u09be\u09ac\u09c7 and later written in is the ."
-"-129.626 the oldest literature at first \u09ae\u09cc\u0996\u09bf\u0995\u09ad\u09be\u09ac\u09c7 and after written form is the ."
-"-681.400 in 1989 , the \u0997\u09a3\u09b6\u09a4\u09cd\u09b0\u09c1 in this film his conducted \u09a4\u09c1\u09b2\u09a8\u09be\u09ae\u09c2\u09b2\u0995\u09ad\u09be\u09ac\u09c7 \u09a6\u09c1\u09b0\u09cd\u09ac\u09b2 and this \u09a6\u09c0\u09b0\u09cd\u0998\u09a6\u09bf\u09a8\u09c7\u09b0 \u0985\u09b8\u09c1\u09b8\u09cd\u09a5\u09a4\u09be\u09b6\u09c7\u09b7\u09c7 came back , after \u09aa\u09c1\u09a8\u09b0\u09cd\u09aa\u09cd\u09b0\u099a\u09c7\u09b7\u09cd\u099f\u09be of satyajit 's films , a is considered as ."
-"-681.602 in 1989 , the \u0997\u09a3\u09b6\u09a4\u09cd\u09b0\u09c1 in this film his conducted \u09a4\u09c1\u09b2\u09a8\u09be\u09ae\u09c2\u09b2\u0995\u09ad\u09be\u09ac\u09c7 \u09a6\u09c1\u09b0\u09cd\u09ac\u09b2 and this \u09a6\u09c0\u09b0\u09cd\u0998\u09a6\u09bf\u09a8\u09c7\u09b0 \u0985\u09b8\u09c1\u09b8\u09cd\u09a5\u09a4\u09be\u09b6\u09c7\u09b7\u09c7 came back , after \u09aa\u09c1\u09a8\u09b0\u09cd\u09aa\u09cd\u09b0\u099a\u09c7\u09b7\u09cd\u099f\u09be of satyajit \u2019 s films , a is considered as ."
-"-681.620 in 1989 , the \u0997\u09a3\u09b6\u09a4\u09cd\u09b0\u09c1 in this film his between \u09a4\u09c1\u09b2\u09a8\u09be\u09ae\u09c2\u09b2\u0995\u09ad\u09be\u09ac\u09c7 \u09a6\u09c1\u09b0\u09cd\u09ac\u09b2 and this \u09a6\u09c0\u09b0\u09cd\u0998\u09a6\u09bf\u09a8\u09c7\u09b0 \u0985\u09b8\u09c1\u09b8\u09cd\u09a5\u09a4\u09be\u09b6\u09c7\u09b7\u09c7 came back , after \u09aa\u09c1\u09a8\u09b0\u09cd\u09aa\u09cd\u09b0\u099a\u09c7\u09b7\u09cd\u099f\u09be of satyajit 's films , a is considered as ."
-"-681.675 in the year 1989 the \u0997\u09a3\u09b6\u09a4\u09cd\u09b0\u09c1 in this film his conducted \u09a4\u09c1\u09b2\u09a8\u09be\u09ae\u09c2\u09b2\u0995\u09ad\u09be\u09ac\u09c7 \u09a6\u09c1\u09b0\u09cd\u09ac\u09b2 and this \u09a6\u09c0\u09b0\u09cd\u0998\u09a6\u09bf\u09a8\u09c7\u09b0 \u0985\u09b8\u09c1\u09b8\u09cd\u09a5\u09a4\u09be\u09b6\u09c7\u09b7\u09c7 came back , after \u09aa\u09c1\u09a8\u09b0\u09cd\u09aa\u09cd\u09b0\u099a\u09c7\u09b7\u09cd\u099f\u09be of satyajit 's films , a is considered as ."
-"-681.684 in 1989 , the \u0997\u09a3\u09b6\u09a4\u09cd\u09b0\u09c1 film his conducted \u09a4\u09c1\u09b2\u09a8\u09be\u09ae\u09c2\u09b2\u0995\u09ad\u09be\u09ac\u09c7 \u09a6\u09c1\u09b0\u09cd\u09ac\u09b2 and this \u09a6\u09c0\u09b0\u09cd\u0998\u09a6\u09bf\u09a8\u09c7\u09b0 \u0985\u09b8\u09c1\u09b8\u09cd\u09a5\u09a4\u09be\u09b6\u09c7\u09b7\u09c7 came back , after \u09aa\u09c1\u09a8\u09b0\u09cd\u09aa\u09cd\u09b0\u099a\u09c7\u09b7\u09cd\u099f\u09be of satyajit 's films , a is considered as ."
-"-681.822 in 1989 , the \u0997\u09a3\u09b6\u09a4\u09cd\u09b0\u09c1 in this film his between \u09a4\u09c1\u09b2\u09a8\u09be\u09ae\u09c2\u09b2\u0995\u09ad\u09be\u09ac\u09c7 \u09a6\u09c1\u09b0\u09cd\u09ac\u09b2 and this \u09a6\u09c0\u09b0\u09cd\u0998\u09a6\u09bf\u09a8\u09c7\u09b0 \u0985\u09b8\u09c1\u09b8\u09cd\u09a5\u09a4\u09be\u09b6\u09c7\u09b7\u09c7 came back , after \u09aa\u09c1\u09a8\u09b0\u09cd\u09aa\u09cd\u09b0\u099a\u09c7\u09b7\u09cd\u099f\u09be of satyajit \u2019 s films , a is considered as ."
-"-681.844 on the year 1989 the \u0997\u09a3\u09b6\u09a4\u09cd\u09b0\u09c1 in this film his conducted \u09a4\u09c1\u09b2\u09a8\u09be\u09ae\u09c2\u09b2\u0995\u09ad\u09be\u09ac\u09c7 \u09a6\u09c1\u09b0\u09cd\u09ac\u09b2 and this \u09a6\u09c0\u09b0\u09cd\u0998\u09a6\u09bf\u09a8\u09c7\u09b0 \u0985\u09b8\u09c1\u09b8\u09cd\u09a5\u09a4\u09be\u09b6\u09c7\u09b7\u09c7 came back , after \u09aa\u09c1\u09a8\u09b0\u09cd\u09aa\u09cd\u09b0\u099a\u09c7\u09b7\u09cd\u099f\u09be of satyajit 's films , a is considered as ."
-"-681.861 in 1989 , the \u0997\u09a3\u09b6\u09a4\u09cd\u09b0\u09c1 in this film his , \u09a4\u09c1\u09b2\u09a8\u09be\u09ae\u09c2\u09b2\u0995\u09ad\u09be\u09ac\u09c7 \u09a6\u09c1\u09b0\u09cd\u09ac\u09b2 and this \u09a6\u09c0\u09b0\u09cd\u0998\u09a6\u09bf\u09a8\u09c7\u09b0 \u0985\u09b8\u09c1\u09b8\u09cd\u09a5\u09a4\u09be\u09b6\u09c7\u09b7\u09c7 came back , after \u09aa\u09c1\u09a8\u09b0\u09cd\u09aa\u09cd\u09b0\u099a\u09c7\u09b7\u09cd\u099f\u09be of satyajit 's films , a is considered as ."
-"-681.877 in the year 1989 the \u0997\u09a3\u09b6\u09a4\u09cd\u09b0\u09c1 in this film his conducted \u09a4\u09c1\u09b2\u09a8\u09be\u09ae\u09c2\u09b2\u0995\u09ad\u09be\u09ac\u09c7 \u09a6\u09c1\u09b0\u09cd\u09ac\u09b2 and this \u09a6\u09c0\u09b0\u09cd\u0998\u09a6\u09bf\u09a8\u09c7\u09b0 \u0985\u09b8\u09c1\u09b8\u09cd\u09a5\u09a4\u09be\u09b6\u09c7\u09b7\u09c7 came back , after \u09aa\u09c1\u09a8\u09b0\u09cd\u09aa\u09cd\u09b0\u099a\u09c7\u09b7\u09cd\u099f\u09be of satyajit \u2019 s films , a is considered as ."
-"-681.886 in 1989 , the \u0997\u09a3\u09b6\u09a4\u09cd\u09b0\u09c1 film his conducted \u09a4\u09c1\u09b2\u09a8\u09be\u09ae\u09c2\u09b2\u0995\u09ad\u09be\u09ac\u09c7 \u09a6\u09c1\u09b0\u09cd\u09ac\u09b2 and this \u09a6\u09c0\u09b0\u09cd\u0998\u09a6\u09bf\u09a8\u09c7\u09b0 \u0985\u09b8\u09c1\u09b8\u09cd\u09a5\u09a4\u09be\u09b6\u09c7\u09b7\u09c7 came back , after \u09aa\u09c1\u09a8\u09b0\u09cd\u09aa\u09cd\u09b0\u099a\u09c7\u09b7\u09cd\u099f\u09be of satyajit \u2019 s films , a is considered as ."
-"-108.280 the \u09ac\u09b2\u09ac\u09bf\u09a6\u09cd\u09af\u09be"
-"-108.571 mathematical \u09ac\u09b2\u09ac\u09bf\u09a6\u09cd\u09af\u09be"
-"-109.025 \u2022 \u09ac\u09b2\u09ac\u09bf\u09a6\u09cd\u09af\u09be"
-"-109.415 . \u09ac\u09b2\u09ac\u09bf\u09a6\u09cd\u09af\u09be"
-"-110.926 \u09ac\u09b2\u09ac\u09bf\u09a6\u09cd\u09af\u09be mathematical theory ."
-"-113.178 mathematical theory . \u09ac\u09b2\u09ac\u09bf\u09a6\u09cd\u09af\u09be"
-"-126.793 other \u09b8\u09cd\u09ac\u09a4\u09cd\u09a4\u09cd\u09ac-\u09b8\u0982\u09b0\u0995\u09cd\u09b7\u09bf\u09a4 operating system like windows and mac os to linux in different different ."
-"-126.966 other \u09b8\u09cd\u09ac\u09a4\u09cd\u09a4\u09cd\u09ac-\u09b8\u0982\u09b0\u0995\u09cd\u09b7\u09bf\u09a4 operating systems like windows and mac os to linux in different different ."
-"-127.340 other \u09b8\u09cd\u09ac\u09a4\u09cd\u09a4\u09cd\u09ac-\u09b8\u0982\u09b0\u0995\u09cd\u09b7\u09bf\u09a4 operating system for windows and mac os to linux in different different ."
-"-127.419 other \u09b8\u09cd\u09ac\u09a4\u09cd\u09a4\u09cd\u09ac-\u09b8\u0982\u09b0\u0995\u09cd\u09b7\u09bf\u09a4 operating system such as windows and mac os to linux in different different ."
-"-127.754 other \u09b8\u09cd\u09ac\u09a4\u09cd\u09a4\u09cd\u09ac-\u09b8\u0982\u09b0\u0995\u09cd\u09b7\u09bf\u09a4 operating system like the windows and mac os to linux in different different ."
-"-127.852 other \u09b8\u09cd\u09ac\u09a4\u09cd\u09a4\u09cd\u09ac-\u09b8\u0982\u09b0\u0995\u09cd\u09b7\u09bf\u09a4 operating system like windows and mac os from linux in different different ."
-"-127.927 other \u09b8\u09cd\u09ac\u09a4\u09cd\u09a4\u09cd\u09ac-\u09b8\u0982\u09b0\u0995\u09cd\u09b7\u09bf\u09a4 operating systems like the windows and mac os to linux in different different ."
-"-128.024 other \u09b8\u09cd\u09ac\u09a4\u09cd\u09a4\u09cd\u09ac-\u09b8\u0982\u09b0\u0995\u09cd\u09b7\u09bf\u09a4 operating systems like windows and mac os from linux in different different ."
-"-128.239 other \u09b8\u09cd\u09ac\u09a4\u09cd\u09a4\u09cd\u09ac-\u09b8\u0982\u09b0\u0995\u09cd\u09b7\u09bf\u09a4 linux operating system like the windows and mac os to do their different ."
-"-128.260 other \u09b8\u09cd\u09ac\u09a4\u09cd\u09a4\u09cd\u09ac-\u09b8\u0982\u09b0\u0995\u09cd\u09b7\u09bf\u09a4 operating system like windows and mac os linux in different from different ."
-"-215.125 asia \u099f\u09be\u0987\u09ae\u09b8\u09c7\u09b0 \u09ad\u09be\u09b7\u09cd\u09af according to ,"
-"-215.700 asia \u099f\u09be\u0987\u09ae\u09b8\u09c7\u09b0 according to the \u09ad\u09be\u09b7\u09cd\u09af ,"
-"-216.133 asia \u099f\u09be\u0987\u09ae\u09b8\u09c7\u09b0 according to \u09ad\u09be\u09b7\u09cd\u09af ,"
-"-217.133 asia \u099f\u09be\u0987\u09ae\u09b8\u09c7\u09b0 \u09ad\u09be\u09b7\u09cd\u09af to the ,"
-"-217.215 asia \u099f\u09be\u0987\u09ae\u09b8\u09c7\u09b0 \u09ad\u09be\u09b7\u09cd\u09af to ,"
-"-217.239 asia \u099f\u09be\u0987\u09ae\u09b8\u09c7\u09b0 \u09ad\u09be\u09b7\u09cd\u09af according to the ,"
-"-217.435 the \u099f\u09be\u0987\u09ae\u09b8\u09c7\u09b0 \u09ad\u09be\u09b7\u09cd\u09af according to ,"
-"-218.010 the \u099f\u09be\u0987\u09ae\u09b8\u09c7\u09b0 according to the \u09ad\u09be\u09b7\u09cd\u09af ,"
-"-218.033 asia \u099f\u09be\u0987\u09ae\u09b8\u09c7\u09b0 \u09ad\u09be\u09b7\u09cd\u09af according to , ,"
-"-218.080 \u099f\u09be\u0987\u09ae\u09b8\u09c7\u09b0 asia \u09ad\u09be\u09b7\u09cd\u09af according to ,"
-"-461.854 open source or open source -lrb- open source -rrb- the money is computer software the source code or the \u09b8\u09be\u0982\u0995\u09c7\u09a4\u09bf\u0995 language open way \u09ac\u09bf\u09a4\u09b0\u09a3 to ."
-"-461.897 open source or open source -lrb- open source -rrb- the money is computer software the source code or main \u09b8\u09be\u0982\u0995\u09c7\u09a4\u09bf\u0995 language open way \u09ac\u09bf\u09a4\u09b0\u09a3 to ."
-"-462.229 open source or open source -lrb- open source -rrb- the money is computer software the source code or the \u09b8\u09be\u0982\u0995\u09c7\u09a4\u09bf\u0995 language open way \u09ac\u09bf\u09a4\u09b0\u09a3 is ."
-"-462.237 open source or open source -lrb- open source -rrb- the money is computer software the source code or the \u09b8\u09be\u0982\u0995\u09c7\u09a4\u09bf\u0995 language \u09ac\u09bf\u09a4\u09b0\u09a3 to open way ."
-"-462.272 open source or open source -lrb- open source -rrb- the money is computer software the source code or main \u09b8\u09be\u0982\u0995\u09c7\u09a4\u09bf\u0995 language open way \u09ac\u09bf\u09a4\u09b0\u09a3 is ."
-"-462.279 open source or open source -lrb- open source -rrb- the money is computer software the source code or main \u09b8\u09be\u0982\u0995\u09c7\u09a4\u09bf\u0995 language \u09ac\u09bf\u09a4\u09b0\u09a3 to open way ."
-"-462.343 open source or open source -lrb- open source -rrb- the money is the source code of computer software or main \u09b8\u09be\u0982\u0995\u09c7\u09a4\u09bf\u0995 language open way \u09ac\u09bf\u09a4\u09b0\u09a3 to ."
-"-462.350 open source or open source -lrb- open source -rrb- the money is computer software the source code or the \u09b8\u09be\u0982\u0995\u09c7\u09a4\u09bf\u0995 language free way \u09ac\u09bf\u09a4\u09b0\u09a3 to ."
-"-462.362 open source or open source -lrb- open source -rrb- the money is the source code of computer software or the \u09b8\u09be\u0982\u0995\u09c7\u09a4\u09bf\u0995 language open way \u09ac\u09bf\u09a4\u09b0\u09a3 to ."
-"-462.392 open source or open source -lrb- open source -rrb- the money is computer software the source code or main \u09b8\u09be\u0982\u0995\u09c7\u09a4\u09bf\u0995 language free way \u09ac\u09bf\u09a4\u09b0\u09a3 to ."
-"-107.382 bangladesh \u0985\u09a8\u09b2\u09be\u0987\u09a8\u09c7 dhaka"
-"-108.858 bangladesh \u0985\u09a8\u09b2\u09be\u0987\u09a8\u09c7 of dhaka"
-"-110.883 bangladesh \u0985\u09a8\u09b2\u09be\u0987\u09a8\u09c7 the"
-"-111.022 \u0985\u09a8\u09b2\u09be\u0987\u09a8\u09c7 dhaka of bangladesh"
-"-111.027 \u0985\u09a8\u09b2\u09be\u0987\u09a8\u09c7 of bangladesh dhaka"
-"-111.126 bangladesh dhaka \u0985\u09a8\u09b2\u09be\u0987\u09a8\u09c7"
-"-111.514 \u0985\u09a8\u09b2\u09be\u0987\u09a8\u09c7 bangladesh dhaka"
-"-111.709 bangladesh \u0985\u09a8\u09b2\u09be\u0987\u09a8\u09c7 activities of dhaka"
-"-112.113 bangladesh \u0985\u09a8\u09b2\u09be\u0987\u09a8\u09c7 dacca"
-"-112.178 \u0985\u09a8\u09b2\u09be\u0987\u09a8\u09c7 of dhaka of bangladesh"
-"-109.139 the first world war germany \u09b9\u09c7\u09b0\u09c7 can be seen ."
-"-109.520 the first world war germany \u09b9\u09c7\u09b0\u09c7 can be ."
-"-110.263 the first world war germany can be \u09b9\u09c7\u09b0\u09c7 ."
-"-110.711 the first world war german \u09b9\u09c7\u09b0\u09c7 can be seen ."
-"-111.092 the first world war german \u09b9\u09c7\u09b0\u09c7 can be ."
-"-111.122 germany the first world war \u09b9\u09c7\u09b0\u09c7 can be seen ."
-"-111.131 germany can be \u09b9\u09c7\u09b0\u09c7 the first world war ."
-"-111.437 the first world war germany \u09b9\u09c7\u09b0\u09c7 can be identified ."
-"-111.503 germany the first world war \u09b9\u09c7\u09b0\u09c7 can be ."
-"-111.598 first world war germany \u09b9\u09c7\u09b0\u09c7 can be seen ."
-"-32.160 but this subject is to understand for even research to going on ."
-"-32.389 but this subject is to understand for even research progress going on ."
-"-32.514 but this subject is to understand even for research to going on ."
-"-32.599 but this subject is to understand for presently research to going on ."
-"-32.608 but this subject is to understand presently for research to going on ."
-"-32.743 but this subject is to understand even for research progress going on ."
-"-32.828 but this subject is to understand for presently research progress going on ."
-"-32.836 but this subject is to understand presently for research progress going on ."
-"-33.085 but this subject is to for even research to going on ."
-"-33.109 but this is to understand for even research to going on ."
-"-103.288 \u09b8\u09c1\u09aa\u09be\u09b0\u098f\u0987\u099a"
-"-118.584 he was military forces for \u0986\u09a8\u09ab\u09bf\u099f was declared ."
-"-118.970 he was military forces for \u0986\u09a8\u09ab\u09bf\u099f declared was ."
-"-118.987 he was declared \u0986\u09a8\u09ab\u09bf\u099f for military forces ."
-"-119.007 he was military forces for \u0986\u09a8\u09ab\u09bf\u099f declared was made ."
-"-119.052 he was for military forces \u0986\u09a8\u09ab\u09bf\u099f was declared ."
-"-119.140 he was the military forces for \u0986\u09a8\u09ab\u09bf\u099f was declared ."
-"-119.195 he was military forces to \u0986\u09a8\u09ab\u09bf\u099f was declared ."
-"-119.315 he was military forces for \u0986\u09a8\u09ab\u09bf\u099f declared the ."
-"-119.424 he was military forces for \u0986\u09a8\u09ab\u09bf\u099f declared was created ."
-"-119.437 he was for military forces \u0986\u09a8\u09ab\u09bf\u099f declared was ."
-"-478.493 bhutto \u098f\u09cd\u09af\u09be\u09b8\u09c7\u09ae\u09cd\u09ac\u09b2\u09bf \u09ac\u09af\u09bc\u0995\u099f to 2.5 with announced that the yahya khan mujib was to form the government to \u099c\u09be\u09a8\u09be\u09b2\u09c7 he that government by \u09a8\u09c7\u09ac\u09c7\u09a8 not ."
-"-478.537 bhutto \u098f\u09cd\u09af\u09be\u09b8\u09c7\u09ae\u09cd\u09ac\u09b2\u09bf \u09ac\u09af\u09bc\u0995\u099f to 2.5 to form the government mujib announced that the yahya khan for for \u099c\u09be\u09a8\u09be\u09b2\u09c7 he that government by \u09a8\u09c7\u09ac\u09c7\u09a8 not ."
-"-478.680 bhutto \u098f\u09cd\u09af\u09be\u09b8\u09c7\u09ae\u09cd\u09ac\u09b2\u09bf \u09ac\u09af\u09bc\u0995\u099f to 2.5 with announced that the yahya khan mujib was to form the government for \u099c\u09be\u09a8\u09be\u09b2\u09c7 he that government by \u09a8\u09c7\u09ac\u09c7\u09a8 not ."
-"-478.753 bhutto \u098f\u09cd\u09af\u09be\u09b8\u09c7\u09ae\u09cd\u09ac\u09b2\u09bf \u09ac\u09af\u09bc\u0995\u099f to 2.5 with announced that the yahya khan mujib was to form the government to \u099c\u09be\u09a8\u09be\u09b2\u09c7 he that to by \u09a8\u09c7\u09ac\u09c7\u09a8 not ."
-"-478.796 bhutto \u098f\u09cd\u09af\u09be\u09b8\u09c7\u09ae\u09cd\u09ac\u09b2\u09bf \u09ac\u09af\u09bc\u0995\u099f to 2.5 to form the government mujib announced that the yahya khan for for \u099c\u09be\u09a8\u09be\u09b2\u09c7 he that to by \u09a8\u09c7\u09ac\u09c7\u09a8 not ."
-"-478.940 bhutto \u098f\u09cd\u09af\u09be\u09b8\u09c7\u09ae\u09cd\u09ac\u09b2\u09bf \u09ac\u09af\u09bc\u0995\u099f to 2.5 with announced that the yahya khan mujib was to form the government for \u099c\u09be\u09a8\u09be\u09b2\u09c7 he that to by \u09a8\u09c7\u09ac\u09c7\u09a8 not ."
-"-478.984 bhutto \u098f\u09cd\u09af\u09be\u09b8\u09c7\u09ae\u09cd\u09ac\u09b2\u09bf \u09ac\u09af\u09bc\u0995\u099f to 2.5 with announced that the yahya khan mujib was to form the government to \u099c\u09be\u09a8\u09be\u09b2\u09c7 he that government with \u09a8\u09c7\u09ac\u09c7\u09a8 not ."
-"-478.985 bhutto \u098f\u09cd\u09af\u09be\u09b8\u09c7\u09ae\u09cd\u09ac\u09b2\u09bf \u09ac\u09af\u09bc\u0995\u099f to 2.5 with announced that the yahya khan mujib for to form the government \u099c\u09be\u09a8\u09be\u09b2\u09c7 he that government by \u09a8\u09c7\u09ac\u09c7\u09a8 not ."
-"-479.021 bhutto \u098f\u09cd\u09af\u09be\u09b8\u09c7\u09ae\u09cd\u09ac\u09b2\u09bf \u09ac\u09af\u09bc\u0995\u099f to 2.5 to form the government mujib announced that that yahya khan for for \u099c\u09be\u09a8\u09be\u09b2\u09c7 he that government by \u09a8\u09c7\u09ac\u09c7\u09a8 not ."
-"-479.028 bhutto \u098f\u09cd\u09af\u09be\u09b8\u09c7\u09ae\u09cd\u09ac\u09b2\u09bf \u09ac\u09af\u09bc\u0995\u099f to 2.5 to form the government mujib announced that the yahya khan for for \u099c\u09be\u09a8\u09be\u09b2\u09c7 he that government with \u09a8\u09c7\u09ac\u09c7\u09a8 not ."
-"-217.956 and computer words money \u0997\u09a3\u09a8\u09be\u0995\u09be\u09b0\u09c0 machine ."
-"-218.249 the computer words money \u0997\u09a3\u09a8\u09be\u0995\u09be\u09b0\u09c0 machine ."
-"-218.350 and computer word meaning \u0997\u09a3\u09a8\u09be\u0995\u09be\u09b0\u09c0 machine ."
-"-218.435 and the computer words money \u0997\u09a3\u09a8\u09be\u0995\u09be\u09b0\u09c0 machine ."
-"-218.643 the computer word meaning \u0997\u09a3\u09a8\u09be\u0995\u09be\u09b0\u09c0 machine ."
-"-218.670 and computer words of the \u0997\u09a3\u09a8\u09be\u0995\u09be\u09b0\u09c0 machine ."
-"-218.829 and the computer word meaning \u0997\u09a3\u09a8\u09be\u0995\u09be\u09b0\u09c0 machine ."
-"-218.855 and computer words means \u0997\u09a3\u09a8\u09be\u0995\u09be\u09b0\u09c0 machine ."
-"-218.963 the computer words of the \u0997\u09a3\u09a8\u09be\u0995\u09be\u09b0\u09c0 machine ."
-"-219.032 and computer words meaning \u0997\u09a3\u09a8\u09be\u0995\u09be\u09b0\u09c0 machine ."
-"-236.748 on 4th july \u09e7\u09ed\u09ed\u09ec this constituents of a independence notice \u099c\u09be\u09b0\u09bf the ."
-"-236.808 on 4th july \u09e7\u09ed\u09ed\u09ec this colonies are a independence notice \u099c\u09be\u09b0\u09bf the ."
-"-236.813 \u09e7\u09ed\u09ed\u09ec on 4th july this constituents of a independence notice \u099c\u09be\u09b0\u09bf the ."
-"-236.833 on 4th july \u09e7\u09ed\u09ed\u09ec this constituents a independence notice \u099c\u09be\u09b0\u09bf the ."
-"-236.873 \u09e7\u09ed\u09ed\u09ec on 4th july this colonies are a independence notice \u099c\u09be\u09b0\u09bf the ."
-"-236.899 \u09e7\u09ed\u09ed\u09ec on 4th july this constituents a independence notice \u099c\u09be\u09b0\u09bf the ."
-"-237.042 on 4th july \u09e7\u09ed\u09ed\u09ec this constituents of a independence written proclamation \u099c\u09be\u09b0\u09bf the ."
-"-237.102 on 4th july \u09e7\u09ed\u09ed\u09ec this colonies are a independence written proclamation \u099c\u09be\u09b0\u09bf the ."
-"-237.108 \u09e7\u09ed\u09ed\u09ec on 4th july this constituents of a independence written proclamation \u099c\u09be\u09b0\u09bf the ."
-"-237.127 on 4th july \u09e7\u09ed\u09ed\u09ec this constituents a independence written proclamation \u099c\u09be\u09b0\u09bf the ."
-"-446.865 germany -lrb- in german : deutschland \u09a1\u09af\u09bc\u099a\u09cd the \u09b2\u09be\u09a8\u09cd\u099f\u09cd of pronounced [ d\u0254\u028ft\u0283lant through ] -rrb- is a country of europe ."
-"-447.278 germany -lrb- in german : deutschland \u09a1\u09af\u09bc\u099a\u09cd the \u09b2\u09be\u09a8\u09cd\u099f\u09cd of pronounced [ d\u0254\u028ft\u0283lant ] -rrb- through a country of europe ."
-"-447.639 germany -lrb- in german : deutschland \u09a1\u09af\u09bc\u099a\u09cd the \u09b2\u09be\u09a8\u09cd\u099f\u09cd of pronounced [ through d\u0254\u028ft\u0283lant ] -rrb- is a country of europe ."
-"-447.763 germany -lrb- in german : deutschland \u09a1\u09af\u09bc\u099a\u09cd the \u09b2\u09be\u09a8\u09cd\u099f\u09cd of pronounced [ d\u0254\u028ft\u0283lant through ] -rrb- is a country in europe ."
-"-447.852 germany -lrb- in german : deutschland \u09a1\u09af\u09bc\u099a\u09cd the \u09b2\u09be\u09a8\u09cd\u099f\u09cd of pronounced [ d\u0254\u028ft\u0283lant ] through -rrb- is a country of europe ."
-"-447.894 germany -lrb- in german : deutschland \u09a1\u09af\u09bc\u099a\u09cd the \u09b2\u09be\u09a8\u09cd\u099f\u09cd of through pronounced [ d\u0254\u028ft\u0283lant ] -rrb- is a country of europe ."
-"-447.969 germany -lrb- in german : deutschland \u09a1\u09af\u09bc\u099a\u09cd the \u09b2\u09be\u09a8\u09cd\u099f\u09cd of pronounced [ d\u0254\u028ft\u0283lant ] -rrb- the is a country of europe ."
-"-447.976 germany -lrb- in german : deutschland \u09a1\u09af\u09bc\u099a\u09cd the \u09b2\u09be\u09a8\u09cd\u099f\u09cd of pronounced [ d\u0254\u028ft\u0283lant ] -rrb- through is a country of europe ."
-"-448.142 germany -lrb- in german : deutschland \u09a1\u09af\u09bc\u099a\u09cd the \u09b2\u09be\u09a8\u09cd\u099f\u09cd of pronounced [ d\u0254\u028ft\u0283lant ] -rrb- middle is a country of europe ."
-"-448.203 germany -lrb- in german : deutschland \u09a1\u09af\u09bc\u099a\u09cd the \u09b2\u09be\u09a8\u09cd\u099f\u09cd of pronounced [ d\u0254\u028ft\u0283lant ] -rrb- central is a country of europe ."
-"-110.479 the main religion \u0996\u09cd\u09b0\u09bf\u09b8\u09cd\u099f\u09a7\u09b0\u09cd\u09ae from russia ."
-"-110.595 \u0996\u09cd\u09b0\u09bf\u09b8\u09cd\u099f\u09a7\u09b0\u09cd\u09ae the main religion ."
-"-110.737 \u0996\u09cd\u09b0\u09bf\u09b8\u09cd\u099f\u09a7\u09b0\u09cd\u09ae russia the main religion ."
-"-111.472 \u0996\u09cd\u09b0\u09bf\u09b8\u09cd\u099f\u09a7\u09b0\u09cd\u09ae russia main religion ."
-"-111.545 the main religion of \u0996\u09cd\u09b0\u09bf\u09b8\u09cd\u099f\u09a7\u09b0\u09cd\u09ae russia ."
-"-111.696 \u0996\u09cd\u09b0\u09bf\u09b8\u09cd\u099f\u09a7\u09b0\u09cd\u09ae the religion of russia ."
-"-111.802 the main religion \u0996\u09cd\u09b0\u09bf\u09b8\u09cd\u099f\u09a7\u09b0\u09cd\u09ae russia ."
-"-112.120 \u0996\u09cd\u09b0\u09bf\u09b8\u09cd\u099f\u09a7\u09b0\u09cd\u09ae russia of the main religion ."
-"-112.320 \u0996\u09cd\u09b0\u09bf\u09b8\u09cd\u099f\u09a7\u09b0\u09cd\u09ae russia the religion ."
-"-112.458 \u0996\u09cd\u09b0\u09bf\u09b8\u09cd\u099f\u09a7\u09b0\u09cd\u09ae the main religion of russia ."
-"-321.499 but \u0997\u09b2\u09a6\u09c7\u09b0 education \u09b0\u09cb\u09ae\u09be\u09a8\u09c0\u0995\u09b0\u09a3\u09c7\u09b0 \u0997\u09a4\u09bf was slow down ."
-"-322.246 but \u0997\u09b2\u09a6\u09c7\u09b0 the \u09b0\u09cb\u09ae\u09be\u09a8\u09c0\u0995\u09b0\u09a3\u09c7\u09b0 \u0997\u09a4\u09bf was slow down ."
-"-323.577 but \u0997\u09b2\u09a6\u09c7\u09b0 the educational \u09b0\u09cb\u09ae\u09be\u09a8\u09c0\u0995\u09b0\u09a3\u09c7\u09b0 \u0997\u09a4\u09bf was slow down ."
-"-323.606 but \u0997\u09b2\u09a6\u09c7\u09b0 the two \u09b0\u09cb\u09ae\u09be\u09a8\u09c0\u0995\u09b0\u09a3\u09c7\u09b0 \u0997\u09a4\u09bf was slow down ."
-"-323.608 but \u0997\u09b2\u09a6\u09c7\u09b0 are \u09b0\u09cb\u09ae\u09be\u09a8\u09c0\u0995\u09b0\u09a3\u09c7\u09b0 \u0997\u09a4\u09bf was slow down ."
-"-323.760 but \u0997\u09b2\u09a6\u09c7\u09b0 education \u09b0\u09cb\u09ae\u09be\u09a8\u09c0\u0995\u09b0\u09a3\u09c7\u09b0 \u0997\u09a4\u09bf was too slow ."
-"-323.936 but the \u0997\u09b2\u09a6\u09c7\u09b0 education \u09b0\u09cb\u09ae\u09be\u09a8\u09c0\u0995\u09b0\u09a3\u09c7\u09b0 \u0997\u09a4\u09bf was slow down ."
-"-324.047 but \u0997\u09b2\u09a6\u09c7\u09b0 's education \u09b0\u09cb\u09ae\u09be\u09a8\u09c0\u0995\u09b0\u09a3\u09c7\u09b0 \u0997\u09a4\u09bf was slow down ."
-"-324.089 but \u0997\u09b2\u09a6\u09c7\u09b0 education \u09b0\u09cb\u09ae\u09be\u09a8\u09c0\u0995\u09b0\u09a3\u09c7\u09b0 \u0997\u09a4\u09bf was become slow ."
-"-324.129 but \u0997\u09b2\u09a6\u09c7\u09b0 \u09b0\u09cb\u09ae\u09be\u09a8\u09c0\u0995\u09b0\u09a3\u09c7\u09b0 education \u0997\u09a4\u09bf was slow down ."
-"-4.645 subject category : gnu foundation"
-"-5.747 subject class : gnu foundation"
-"-5.884 subject matter : gnu foundation"
-"-6.057 subject : gnu foundation"
-"-6.361 subject category : gonu foundation"
-"-6.519 category : gnu foundation"
-"-6.886 subject category : the gnu foundation"
-"-6.965 special class : gnu foundation"
-"-7.280 subject category : by foundation"
-"-7.292 subject class : the gnu foundation"
-"-124.215 economic policy and revenue \u09a8\u09c0\u09a4\u09bf\u0995\u09c7\u0993 it study the ."
-"-124.324 economic policy and tax \u09a8\u09c0\u09a4\u09bf\u0995\u09c7\u0993 it study the ."
-"-124.637 economic policy and tax revenue \u09a8\u09c0\u09a4\u09bf\u0995\u09c7\u0993 it study the ."
-"-125.264 economic policy and for \u09a8\u09c0\u09a4\u09bf\u0995\u09c7\u0993 it study the ."
-"-125.376 economic policy and revenue \u09a8\u09c0\u09a4\u09bf\u0995\u09c7\u0993 this study the ."
-"-125.398 economic policy and revenue \u09a8\u09c0\u09a4\u09bf\u0995\u09c7\u0993 it study by the ."
-"-125.403 economic policy and revenue \u09a8\u09c0\u09a4\u09bf\u0995\u09c7\u0993 it study ."
-"-125.486 economic policy and tax \u09a8\u09c0\u09a4\u09bf\u0995\u09c7\u0993 this study the ."
-"-125.507 economic policy and revenue \u09a8\u09c0\u09a4\u09bf\u0995\u09c7\u0993 it study in the ."
-"-125.508 economic policy and tax \u09a8\u09c0\u09a4\u09bf\u0995\u09c7\u0993 it study by the ."
-"-335.374 among these there are : may be \u09a4\u09cb\u09ae\u09be\u09b0 get seen \u0993\u09b0\u09c7 this any \u09b8\u09cd\u09a8\u09c7\u09b9-\u09b8\u09c1\u09b0\u09a7\u09c1\u09a8\u09c0 ."
-"-335.614 among these there are : may be \u09a4\u09cb\u09ae\u09be\u09b0 get is \u0993\u09b0\u09c7 this any \u09b8\u09cd\u09a8\u09c7\u09b9-\u09b8\u09c1\u09b0\u09a7\u09c1\u09a8\u09c0 ."
-"-335.670 among these there are : may be \u09a4\u09cb\u09ae\u09be\u09b0 will get seen \u0993\u09b0\u09c7 this any \u09b8\u09cd\u09a8\u09c7\u09b9-\u09b8\u09c1\u09b0\u09a7\u09c1\u09a8\u09c0 ."
-"-335.763 among these there are : would have \u09a4\u09cb\u09ae\u09be\u09b0 get seen \u0993\u09b0\u09c7 this any \u09b8\u09cd\u09a8\u09c7\u09b9-\u09b8\u09c1\u09b0\u09a7\u09c1\u09a8\u09c0 ."
-"-335.855 among these there are : may be \u09a4\u09cb\u09ae\u09be\u09b0 numbers is \u0993\u09b0\u09c7 this any \u09b8\u09cd\u09a8\u09c7\u09b9-\u09b8\u09c1\u09b0\u09a7\u09c1\u09a8\u09c0 ."
-"-335.910 among these there are : may be \u09a4\u09cb\u09ae\u09be\u09b0 will get is \u0993\u09b0\u09c7 this any \u09b8\u09cd\u09a8\u09c7\u09b9-\u09b8\u09c1\u09b0\u09a7\u09c1\u09a8\u09c0 ."
-"-336.003 among these there are : would have \u09a4\u09cb\u09ae\u09be\u09b0 get is \u0993\u09b0\u09c7 this any \u09b8\u09cd\u09a8\u09c7\u09b9-\u09b8\u09c1\u09b0\u09a7\u09c1\u09a8\u09c0 ."
-"-336.003 among these there are : may be \u09a4\u09cb\u09ae\u09be\u09b0 get seen \u0993\u09b0\u09c7 this no \u09b8\u09cd\u09a8\u09c7\u09b9-\u09b8\u09c1\u09b0\u09a7\u09c1\u09a8\u09c0 ."
-"-336.059 among these there are : would have \u09a4\u09cb\u09ae\u09be\u09b0 will get seen \u0993\u09b0\u09c7 this any \u09b8\u09cd\u09a8\u09c7\u09b9-\u09b8\u09c1\u09b0\u09a7\u09c1\u09a8\u09c0 ."
-"-336.104 among these there are : may be \u09a4\u09cb\u09ae\u09be\u09b0 get it \u0993\u09b0\u09c7 this any \u09b8\u09cd\u09a8\u09c7\u09b9-\u09b8\u09c1\u09b0\u09a7\u09c1\u09a8\u09c0 ."
-"-13.054 on 23rd april 1992 satyajit died ."
-"-13.371 on 23rd april 1992 satyajit expired ."
-"-13.855 on 23rd april 1992 satyajit passed away ."
-"-15.479 , on 23rd april 1992 satyajit died ."
-"-15.796 , on 23rd april 1992 satyajit expired ."
-"-15.822 on 23rd april , 1992 satyajit died ."
-"-15.978 satyajit died on 23rd april 1992 ."
-"-16.140 on 23rd april , 1992 satyajit expired ."
-"-16.243 died on 23rd april 1992 satyajit ."
-"-16.280 , on 23rd april 1992 satyajit passed away ."
-"-232.362 at this time nazrul 's medical \u09b0\u09bf\u09aa\u09cb\u09b0\u09cd\u099f stay famous \u099a\u09bf\u0995\u09bf\u09ce\u09b8\u0995\u09a6\u09c7\u09b0 to send to ."
-"-232.364 during this time nazrul 's medical \u09b0\u09bf\u09aa\u09cb\u09b0\u09cd\u099f stay famous \u099a\u09bf\u0995\u09bf\u09ce\u09b8\u0995\u09a6\u09c7\u09b0 to send to ."
-"-232.423 at this time nazrul medical \u09b0\u09bf\u09aa\u09cb\u09b0\u09cd\u099f stay famous \u099a\u09bf\u0995\u09bf\u09ce\u09b8\u0995\u09a6\u09c7\u09b0 to send to ."
-"-232.424 during this time nazrul medical \u09b0\u09bf\u09aa\u09cb\u09b0\u09cd\u099f stay famous \u099a\u09bf\u0995\u09bf\u09ce\u09b8\u0995\u09a6\u09c7\u09b0 to send to ."
-"-232.483 at this time nazrul 's medical \u09b0\u09bf\u09aa\u09cb\u09b0\u09cd\u099f stay famous \u099a\u09bf\u0995\u09bf\u09ce\u09b8\u0995\u09a6\u09c7\u09b0 to sent to ."
-"-232.485 during this time nazrul 's medical \u09b0\u09bf\u09aa\u09cb\u09b0\u09cd\u099f stay famous \u099a\u09bf\u0995\u09bf\u09ce\u09b8\u0995\u09a6\u09c7\u09b0 to sent to ."
-"-232.544 at this time nazrul medical \u09b0\u09bf\u09aa\u09cb\u09b0\u09cd\u099f stay famous \u099a\u09bf\u0995\u09bf\u09ce\u09b8\u0995\u09a6\u09c7\u09b0 to sent to ."
-"-232.545 during this time nazrul medical \u09b0\u09bf\u09aa\u09cb\u09b0\u09cd\u099f stay famous \u099a\u09bf\u0995\u09bf\u09ce\u09b8\u0995\u09a6\u09c7\u09b0 to sent to ."
-"-232.634 at this time , nazrul 's medical \u09b0\u09bf\u09aa\u09cb\u09b0\u09cd\u099f stay famous \u099a\u09bf\u0995\u09bf\u09ce\u09b8\u0995\u09a6\u09c7\u09b0 to send to ."
-"-232.659 at this time nazrul 's medical \u09b0\u09bf\u09aa\u09cb\u09b0\u09cd\u099f earning famous \u099a\u09bf\u0995\u09bf\u09ce\u09b8\u0995\u09a6\u09c7\u09b0 to send to ."
-"-338.434 other than acted at different times rani \u09ae\u09c1\u0996\u09be\u09b0\u09cd\u099c\u09c0 different \u09a6\u09be\u09a4\u09ac\u09cd\u09af are connected with \u09a5\u09c7\u0995\u09c7\u099b\u09c7\u09a8 ."
-"-338.715 apart from acted at different times rani \u09ae\u09c1\u0996\u09be\u09b0\u09cd\u099c\u09c0 different \u09a6\u09be\u09a4\u09ac\u09cd\u09af are connected with \u09a5\u09c7\u0995\u09c7\u099b\u09c7\u09a8 ."
-"-339.387 acted other than at different times rani \u09ae\u09c1\u0996\u09be\u09b0\u09cd\u099c\u09c0 different \u09a6\u09be\u09a4\u09ac\u09cd\u09af are connected with \u09a5\u09c7\u0995\u09c7\u099b\u09c7\u09a8 ."
-"-339.443 acted , at different times rani \u09ae\u09c1\u0996\u09be\u09b0\u09cd\u099c\u09c0 different \u09a6\u09be\u09a4\u09ac\u09cd\u09af are connected with \u09a5\u09c7\u0995\u09c7\u099b\u09c7\u09a8 ."
-"-339.508 acted apart from at different times rani \u09ae\u09c1\u0996\u09be\u09b0\u09cd\u099c\u09c0 different \u09a6\u09be\u09a4\u09ac\u09cd\u09af are connected with \u09a5\u09c7\u0995\u09c7\u099b\u09c7\u09a8 ."
-"-339.589 other than acted rani at different times \u09ae\u09c1\u0996\u09be\u09b0\u09cd\u099c\u09c0 different \u09a6\u09be\u09a4\u09ac\u09cd\u09af are connected with \u09a5\u09c7\u0995\u09c7\u099b\u09c7\u09a8 ."
-"-339.622 acted in at different times rani \u09ae\u09c1\u0996\u09be\u09b0\u09cd\u099c\u09c0 different \u09a6\u09be\u09a4\u09ac\u09cd\u09af are connected with \u09a5\u09c7\u0995\u09c7\u099b\u09c7\u09a8 ."
-"-339.760 acted in different times rani \u09ae\u09c1\u0996\u09be\u09b0\u09cd\u099c\u09c0 different \u09a6\u09be\u09a4\u09ac\u09cd\u09af are connected with \u09a5\u09c7\u0995\u09c7\u099b\u09c7\u09a8 ."
-"-339.774 other than acted rani \u09ae\u09c1\u0996\u09be\u09b0\u09cd\u099c\u09c0 at different times different \u09a6\u09be\u09a4\u09ac\u09cd\u09af are connected with \u09a5\u09c7\u0995\u09c7\u099b\u09c7\u09a8 ."
-"-339.815 other than acted at different times rani \u09ae\u09c1\u0996\u09be\u09b0\u09cd\u099c\u09c0 various \u09a6\u09be\u09a4\u09ac\u09cd\u09af are connected with \u09a5\u09c7\u0995\u09c7\u099b\u09c7\u09a8 ."
-"-358.420 bengali literature and culture a special contribution on \u09b8\u09cd\u09ac\u09c0\u0995\u09c3\u09a4\u09bf\u09b8\u09cd\u09ac\u09b0\u09c1\u09aa year on 9th december , dhaka university he was honorary \u09a1\u09bf.\u09b2\u09bf\u099f \u0989\u09aa\u09be\u09a7\u09bf\u09a4\u09c7 awarded with the ."
-"-358.507 bengali literature and culture his special contribution on \u09b8\u09cd\u09ac\u09c0\u0995\u09c3\u09a4\u09bf\u09b8\u09cd\u09ac\u09b0\u09c1\u09aa year on 9th december , dhaka university he was honorary \u09a1\u09bf.\u09b2\u09bf\u099f \u0989\u09aa\u09be\u09a7\u09bf\u09a4\u09c7 awarded with the ."
-"-359.122 bengali literature and culture in special contribution on \u09b8\u09cd\u09ac\u09c0\u0995\u09c3\u09a4\u09bf\u09b8\u09cd\u09ac\u09b0\u09c1\u09aa year on 9th december , dhaka university he was honorary \u09a1\u09bf.\u09b2\u09bf\u099f \u0989\u09aa\u09be\u09a7\u09bf\u09a4\u09c7 awarded with the ."
-"-359.274 bengali literature and culture a special contribution on \u09b8\u09cd\u09ac\u09c0\u0995\u09c3\u09a4\u09bf\u09b8\u09cd\u09ac\u09b0\u09c1\u09aa on 9th december of year on dhaka university he was honorary \u09a1\u09bf.\u09b2\u09bf\u099f \u0989\u09aa\u09be\u09a7\u09bf\u09a4\u09c7 awarded with the ."
-"-359.359 bengali literature and culture a special contribution on \u09b8\u09cd\u09ac\u09c0\u0995\u09c3\u09a4\u09bf\u09b8\u09cd\u09ac\u09b0\u09c1\u09aa year on 9th december , dhaka university he honorary \u09a1\u09bf.\u09b2\u09bf\u099f \u0989\u09aa\u09be\u09a7\u09bf\u09a4\u09c7 awarded with the ."
-"-359.360 bengali literature and culture his special contribution on \u09b8\u09cd\u09ac\u09c0\u0995\u09c3\u09a4\u09bf\u09b8\u09cd\u09ac\u09b0\u09c1\u09aa on 9th december of year on dhaka university he was honorary \u09a1\u09bf.\u09b2\u09bf\u099f \u0989\u09aa\u09be\u09a7\u09bf\u09a4\u09c7 awarded with the ."
-"-359.371 bengali literature and culture a special contribution on \u09b8\u09cd\u09ac\u09c0\u0995\u09c3\u09a4\u09bf\u09b8\u09cd\u09ac\u09b0\u09c1\u09aa year on 9th december , dhaka university was honorary \u09a1\u09bf.\u09b2\u09bf\u099f \u0989\u09aa\u09be\u09a7\u09bf\u09a4\u09c7 awarded with the ."
-"-359.445 bengali literature and culture his special contribution on \u09b8\u09cd\u09ac\u09c0\u0995\u09c3\u09a4\u09bf\u09b8\u09cd\u09ac\u09b0\u09c1\u09aa year on 9th december , dhaka university he honorary \u09a1\u09bf.\u09b2\u09bf\u099f \u0989\u09aa\u09be\u09a7\u09bf\u09a4\u09c7 awarded with the ."
-"-359.450 bengali literature and culture a special contribution on \u09b8\u09cd\u09ac\u09c0\u0995\u09c3\u09a4\u09bf\u09b8\u09cd\u09ac\u09b0\u09c1\u09aa year on 9th december , he was dhaka university honorary \u09a1\u09bf.\u09b2\u09bf\u099f \u0989\u09aa\u09be\u09a7\u09bf\u09a4\u09c7 awarded with the ."
-"-359.454 bengali literature and culture in his special contribution on \u09b8\u09cd\u09ac\u09c0\u0995\u09c3\u09a4\u09bf\u09b8\u09cd\u09ac\u09b0\u09c1\u09aa year on 9th december , dhaka university he was honorary \u09a1\u09bf.\u09b2\u09bf\u099f \u0989\u09aa\u09be\u09a7\u09bf\u09a4\u09c7 awarded with the ."
-"-131.010 in kolkata durga puja tourism \u0986\u0995\u09b0\u09cd\u09b7\u09a3\u0993 of the city is also a reason"
-"-131.047 kolkata durga puja tourism \u0986\u0995\u09b0\u09cd\u09b7\u09a3\u0993 of the city is also a reason"
-"-131.601 kolkata 's durga puja tourism \u0986\u0995\u09b0\u09cd\u09b7\u09a3\u0993 of the city is also a reason"
-"-131.652 the durga puja tourism \u0986\u0995\u09b0\u09cd\u09b7\u09a3\u0993 of the city is also a reason"
-"-131.669 the kolkata durga puja tourism \u0986\u0995\u09b0\u09cd\u09b7\u09a3\u0993 of the city is also a reason"
-"-131.792 in kolkata durga puja of the city tourism \u0986\u0995\u09b0\u09cd\u09b7\u09a3\u0993 is also a reason"
-"-131.829 kolkata durga puja of the city tourism \u0986\u0995\u09b0\u09cd\u09b7\u09a3\u0993 is also a reason"
-"-131.843 in kolkata durga puja city of tourists spot \u0986\u0995\u09b0\u09cd\u09b7\u09a3\u0993 is also a reason"
-"-131.880 kolkata durga puja city of tourists spot \u0986\u0995\u09b0\u09cd\u09b7\u09a3\u0993 is also a reason"
-"-131.921 in kolkata durga puja city of tourism \u0986\u0995\u09b0\u09cd\u09b7\u09a3\u0993 is also a reason"
-"-38.023 but many people of east germany started living in economically reach and democratic west germany , east germany government built a wall in berlin in 1961 and reinforced its boundaries ."
-"-38.234 but many of east german started living in economically reach and democratic west germany , east germany government built a wall in berlin in 1961 and reinforced its boundaries ."
-"-38.458 but many people of east german started living in economically reach and democratic west germany , east germany government built a wall in berlin in 1961 and reinforced its boundaries ."
-"-39.049 but when millions of east german started living in economically reach and democratic west germany , east germany government built a wall in berlin in 1961 and reinforced its boundaries ."
-"-39.625 but when lakhs of east german started living in economically reach and democratic west germany , east germany government built a wall in berlin in 1961 and reinforced its boundaries ."
-"-39.901 but many of east germany started living in economically reach and democratic west germany , east germany government built a wall in berlin in 1961 and reinforced its boundaries ."
-"-40.562 but when people of east germany started living in economically reach and democratic west germany , east germany government built a wall in berlin in 1961 and reinforced its boundaries ."
-"-40.614 but when lakhs east german started living in economically reach and democratic west germany , east germany government built a wall in berlin in 1961 and reinforced its boundaries ."
-"-40.743 but many lakhs of east german started living in economically reach and democratic west germany , east germany government built a wall in berlin in 1961 and reinforced its boundaries ."
-"-40.786 but when of east german started living in economically reach and democratic west germany , east germany government built a wall in berlin in 1961 and reinforced its boundaries ."
-"-900.700 the first one is the film \u09a8\u09bf\u09b0\u09cd\u09ac\u09be\u0995 first seven \u09ae\u09bf\u09a8\u09bf\u099f which \u099a\u09be\u09b0\u09c1\u09b0 \u098f\u0995\u0998\u09c7\u09af\u09bc\u09c7\u09ae\u09bf life shown level and the second one is " the \u09a6\u09cb\u09b2\u09a8\u09be\u09b0 scene " where \u099a\u09be\u09b0\u09c1 \u0985\u09ae\u09b2\u09c7\u09b0 for his love \u09ae\u09c1\u0996\u09cb\u09ae\u09c1\u0996\u09bf in ."
-"-900.869 the first one is the film \u09a8\u09bf\u09b0\u09cd\u09ac\u09be\u0995 first seven \u09ae\u09bf\u09a8\u09bf\u099f which \u099a\u09be\u09b0\u09c1\u09b0 \u098f\u0995\u0998\u09c7\u09af\u09bc\u09c7\u09ae\u09bf life shown level and the second one is " the \u09a6\u09cb\u09b2\u09a8\u09be\u09b0 scene " where \u099a\u09be\u09b0\u09c1 \u0985\u09ae\u09b2\u09c7\u09b0 for his love \u09ae\u09c1\u0996\u09cb\u09ae\u09c1\u0996\u09bf the ."
-"-900.942 the first one is the film \u09a8\u09bf\u09b0\u09cd\u09ac\u09be\u0995 first seven \u09ae\u09bf\u09a8\u09bf\u099f which \u099a\u09be\u09b0\u09c1\u09b0 \u098f\u0995\u0998\u09c7\u09af\u09bc\u09c7\u09ae\u09bf life shown them and the second one is " the \u09a6\u09cb\u09b2\u09a8\u09be\u09b0 scene " where \u099a\u09be\u09b0\u09c1 \u0985\u09ae\u09b2\u09c7\u09b0 for his love \u09ae\u09c1\u0996\u09cb\u09ae\u09c1\u0996\u09bf in ."
-"-900.963 the first one is the film \u09a8\u09bf\u09b0\u09cd\u09ac\u09be\u0995 first seven \u09ae\u09bf\u09a8\u09bf\u099f which \u099a\u09be\u09b0\u09c1\u09b0 \u098f\u0995\u0998\u09c7\u09af\u09bc\u09c7\u09ae\u09bf life shown level and the second one is " the \u09a6\u09cb\u09b2\u09a8\u09be\u09b0 scene , " , where \u099a\u09be\u09b0\u09c1 \u0985\u09ae\u09b2\u09c7\u09b0 for his love \u09ae\u09c1\u0996\u09cb\u09ae\u09c1\u0996\u09bf in ."
-"-901.052 the first one is the film \u09a8\u09bf\u09b0\u09cd\u09ac\u09be\u0995 first seven \u09ae\u09bf\u09a8\u09bf\u099f which \u099a\u09be\u09b0\u09c1\u09b0 \u098f\u0995\u0998\u09c7\u09af\u09bc\u09c7\u09ae\u09bf life shown sound and the second one is " the \u09a6\u09cb\u09b2\u09a8\u09be\u09b0 scene " where \u099a\u09be\u09b0\u09c1 \u0985\u09ae\u09b2\u09c7\u09b0 for his love \u09ae\u09c1\u0996\u09cb\u09ae\u09c1\u0996\u09bf in ."
-"-901.110 the first one is the film \u09a8\u09bf\u09b0\u09cd\u09ac\u09be\u0995 first seven \u09ae\u09bf\u09a8\u09bf\u099f which \u099a\u09be\u09b0\u09c1\u09b0 \u098f\u0995\u0998\u09c7\u09af\u09bc\u09c7\u09ae\u09bf life shown level and second one is " the \u09a6\u09cb\u09b2\u09a8\u09be\u09b0 scene " where \u099a\u09be\u09b0\u09c1 \u0985\u09ae\u09b2\u09c7\u09b0 for his love \u09ae\u09c1\u0996\u09cb\u09ae\u09c1\u0996\u09bf in ."
-"-901.111 the first one is the film \u09a8\u09bf\u09b0\u09cd\u09ac\u09be\u0995 first seven \u09ae\u09bf\u09a8\u09bf\u099f which \u099a\u09be\u09b0\u09c1\u09b0 \u098f\u0995\u0998\u09c7\u09af\u09bc\u09c7\u09ae\u09bf life shown them and the second one is " the \u09a6\u09cb\u09b2\u09a8\u09be\u09b0 scene " where \u099a\u09be\u09b0\u09c1 \u0985\u09ae\u09b2\u09c7\u09b0 for his love \u09ae\u09c1\u0996\u09cb\u09ae\u09c1\u0996\u09bf the ."
-"-901.132 the first one is the film \u09a8\u09bf\u09b0\u09cd\u09ac\u09be\u0995 first seven \u09ae\u09bf\u09a8\u09bf\u099f which \u099a\u09be\u09b0\u09c1\u09b0 \u098f\u0995\u0998\u09c7\u09af\u09bc\u09c7\u09ae\u09bf life shown level and the second one is " the \u09a6\u09cb\u09b2\u09a8\u09be\u09b0 scene , " , where \u099a\u09be\u09b0\u09c1 \u0985\u09ae\u09b2\u09c7\u09b0 for his love \u09ae\u09c1\u0996\u09cb\u09ae\u09c1\u0996\u09bf the ."
-"-901.177 the first one is the film \u09a8\u09bf\u09b0\u09cd\u09ac\u09be\u0995 first seven \u09ae\u09bf\u09a8\u09bf\u099f which \u099a\u09be\u09b0\u09c1\u09b0 \u098f\u0995\u0998\u09c7\u09af\u09bc\u09c7\u09ae\u09bf life shown level and the second one is " the \u09a6\u09cb\u09b2\u09a8\u09be\u09b0 scene " where \u099a\u09be\u09b0\u09c1 \u0985\u09ae\u09b2\u09c7\u09b0 for his love \u09ae\u09c1\u0996\u09cb\u09ae\u09c1\u0996\u09bf in the ."
-"-901.205 the first one is the film \u09a8\u09bf\u09b0\u09cd\u09ac\u09be\u0995 first seven \u09ae\u09bf\u09a8\u09bf\u099f which \u099a\u09be\u09b0\u09c1\u09b0 \u098f\u0995\u0998\u09c7\u09af\u09bc\u09c7\u09ae\u09bf life shown them and the second one is " the \u09a6\u09cb\u09b2\u09a8\u09be\u09b0 scene , " , where \u099a\u09be\u09b0\u09c1 \u0985\u09ae\u09b2\u09c7\u09b0 for his love \u09ae\u09c1\u0996\u09cb\u09ae\u09c1\u0996\u09bf in ."
-"-251.701 a group of 18th century the \u099a\u09bf\u09a8\u09cd\u09a4\u09be\u09ac\u09bf\u09a6 and writer income and production \u099a\u0995\u09cd\u09b0\u09be\u0995\u09be\u09b0 current through economic thoughts development it ."
-"-251.890 a group of 18th century the \u099a\u09bf\u09a8\u09cd\u09a4\u09be\u09ac\u09bf\u09a6 and writer income and production \u099a\u0995\u09cd\u09b0\u09be\u0995\u09be\u09b0 current through economic thoughts development people ."
-"-252.122 a group of 18th century the \u099a\u09bf\u09a8\u09cd\u09a4\u09be\u09ac\u09bf\u09a6 and writer income and production \u099a\u0995\u09cd\u09b0\u09be\u0995\u09be\u09b0 current through the economic thoughts development it ."
-"-252.311 a group of 18th century the \u099a\u09bf\u09a8\u09cd\u09a4\u09be\u09ac\u09bf\u09a6 and writer income and production \u099a\u0995\u09cd\u09b0\u09be\u0995\u09be\u09b0 current through the economic thoughts development people ."
-"-252.494 a group of 18th century the writer of \u099a\u09bf\u09a8\u09cd\u09a4\u09be\u09ac\u09bf\u09a6 and income and production \u099a\u0995\u09cd\u09b0\u09be\u0995\u09be\u09b0 current through economic thoughts development it ."
-"-252.561 a group of 18th century the \u099a\u09bf\u09a8\u09cd\u09a4\u09be\u09ac\u09bf\u09a6 and writer income and \u099a\u0995\u09cd\u09b0\u09be\u0995\u09be\u09b0 of production current through economic thoughts development it ."
-"-252.624 a group of 18 century the \u099a\u09bf\u09a8\u09cd\u09a4\u09be\u09ac\u09bf\u09a6 and writer income and production \u099a\u0995\u09cd\u09b0\u09be\u0995\u09be\u09b0 current through economic thoughts development it ."
-"-252.684 a group of 18th century the writer of \u099a\u09bf\u09a8\u09cd\u09a4\u09be\u09ac\u09bf\u09a6 and income and production \u099a\u0995\u09cd\u09b0\u09be\u0995\u09be\u09b0 current through economic thoughts development people ."
-"-252.750 a group of 18th century the \u099a\u09bf\u09a8\u09cd\u09a4\u09be\u09ac\u09bf\u09a6 and writer income and \u099a\u0995\u09cd\u09b0\u09be\u0995\u09be\u09b0 of production current through economic thoughts development people ."
-"-252.813 a group of 18 century the \u099a\u09bf\u09a8\u09cd\u09a4\u09be\u09ac\u09bf\u09a6 and writer income and production \u099a\u0995\u09cd\u09b0\u09be\u0995\u09be\u09b0 current through economic thoughts development people ."
-"-16.182 the arousal activities before penetrating male organ into vagina is called foreplay ."
-"-17.804 the arousal activities before penetrating male organ into vagina is known as foreplay ."
-"-17.851 the arousal activities before penetrating male organ into vagina is called as foreplay ."
-"-18.301 excitement before entering penis in to vagina is called as shringar ."
-"-18.399 the arousal activities before penetrating male organ into vagina is called the foreplay ."
-"-18.745 vagina during arousal activities before penetrating male organ into vagina is called foreplay ."
-"-18.916 the arousal activities before penetrating male organ into vagina is called as the foreplay ."
-"-18.991 the arousal activities before penetrating male organ into vagina is called stimulation ."
-"-19.853 the arousal activities before penetrating male organ into vagina is called as shringar ."
-"-19.859 vagina arousal activities before penetrating male organ into vagina is called foreplay ."
-"-341.900 it is mainly \u09b6\u09c2\u0995\u09b0\u09c7\u09b0 in in was which can \u09b6\u09c2\u0995\u09b0\u0995\u09c7 \u0987\u09a8\u09ab\u09cd\u09b2\u09c1\u09af\u09bc\u09c7\u099e\u09cd\u099c\u09be\u09a4\u09c7 affected by british ."
-"-342.098 it is mainly \u09b6\u09c2\u0995\u09b0\u09c7\u09b0 in in was which can \u09b6\u09c2\u0995\u09b0\u0995\u09c7 \u0987\u09a8\u09ab\u09cd\u09b2\u09c1\u09af\u09bc\u09c7\u099e\u09cd\u099c\u09be\u09a4\u09c7 by british ."
-"-342.401 it is mainly \u09b6\u09c2\u0995\u09b0\u09c7\u09b0 in in was which can \u09b6\u09c2\u0995\u09b0\u0995\u09c7 \u0987\u09a8\u09ab\u09cd\u09b2\u09c1\u09af\u09bc\u09c7\u099e\u09cd\u099c\u09be\u09a4\u09c7 infected by british ."
-"-342.474 it is basically \u09b6\u09c2\u0995\u09b0\u09c7\u09b0 in in was which can \u09b6\u09c2\u0995\u09b0\u0995\u09c7 \u0987\u09a8\u09ab\u09cd\u09b2\u09c1\u09af\u09bc\u09c7\u099e\u09cd\u099c\u09be\u09a4\u09c7 affected by british ."
-"-342.625 it is mainly \u09b6\u09c2\u0995\u09b0\u09c7\u09b0 in in which was which can \u09b6\u09c2\u0995\u09b0\u0995\u09c7 \u0987\u09a8\u09ab\u09cd\u09b2\u09c1\u09af\u09bc\u09c7\u099e\u09cd\u099c\u09be\u09a4\u09c7 affected by british ."
-"-342.672 it is basically \u09b6\u09c2\u0995\u09b0\u09c7\u09b0 in in was which can \u09b6\u09c2\u0995\u09b0\u0995\u09c7 \u0987\u09a8\u09ab\u09cd\u09b2\u09c1\u09af\u09bc\u09c7\u099e\u09cd\u099c\u09be\u09a4\u09c7 by british ."
-"-342.823 it is mainly \u09b6\u09c2\u0995\u09b0\u09c7\u09b0 in in which was which can \u09b6\u09c2\u0995\u09b0\u0995\u09c7 \u0987\u09a8\u09ab\u09cd\u09b2\u09c1\u09af\u09bc\u09c7\u099e\u09cd\u099c\u09be\u09a4\u09c7 by british ."
-"-342.966 it is mainly \u09b6\u09c2\u0995\u09b0\u09c7\u09b0 in in in which can \u09b6\u09c2\u0995\u09b0\u0995\u09c7 \u0987\u09a8\u09ab\u09cd\u09b2\u09c1\u09af\u09bc\u09c7\u099e\u09cd\u099c\u09be\u09a4\u09c7 affected by british ."
-"-342.975 it is basically \u09b6\u09c2\u0995\u09b0\u09c7\u09b0 in in was which can \u09b6\u09c2\u0995\u09b0\u0995\u09c7 \u0987\u09a8\u09ab\u09cd\u09b2\u09c1\u09af\u09bc\u09c7\u099e\u09cd\u099c\u09be\u09a4\u09c7 infected by british ."
-"-342.986 it is mainly \u09b6\u09c2\u0995\u09b0\u09c7\u09b0 in to was which can \u09b6\u09c2\u0995\u09b0\u0995\u09c7 \u0987\u09a8\u09ab\u09cd\u09b2\u09c1\u09af\u09bc\u09c7\u099e\u09cd\u099c\u09be\u09a4\u09c7 affected by british ."
-"-217.337 these \u098f\u0995\u098f the mycelium formed the ."
-"-217.640 these \u098f\u0995\u098f to mycelium formed the ."
-"-217.706 these are \u098f\u0995\u098f the mycelium formed the ."
-"-218.008 these are \u098f\u0995\u098f to mycelium formed the ."
-"-218.513 these \u098f\u0995\u098f by mycelium formed the ."
-"-218.612 these \u098f\u0995\u098f by the mycelium formed the ."
-"-218.644 these \u098f\u0995\u098f in mycelium formed the ."
-"-218.675 these \u098f\u0995\u098f the mycelium was formed by the ."
-"-218.772 these \u098f\u0995\u098f the formed the mycelium ."
-"-218.841 these \u098f\u0995\u098f , mycelium formed the ."
-"-6.462 russia at present a democratic country ."
-"-7.292 russia now a democratic country ."
-"-7.364 russia at present is a democratic country ."
-"-7.575 russia at a democratic country ."
-"-7.819 russia is now a democratic country ."
-"-7.854 russia presently a democratic country ."
-"-7.893 russia is a democratic country ."
-"-8.487 russia at present in a democratic country ."
-"-9.018 russia , at present a democratic country ."
-"-9.044 russia at present a democratic state ."
-"-3.566 penis"
-"-3.988 gender"
-"-4.385 sex"
-"-5.681 the"
-"-5.746 sexual organs"
-"-103.288 \u09b2\u09bf\u0999\u09cd\u0997"
-"-3.009 this state is called orgasm ."
-"-7.491 in this state is called orgasm ."
-"-8.316 this state is called the orgasm ."
-"-8.507 this situation is called orgasm ."
-"-8.828 in this situation is called orgasm ."
-"-9.309 this state is called as the orgasm .

<TRUNCATED>

[4/9] incubator-joshua git commit: moved new unit tests (former regression tests) to correct location in joshua 7 (joshua-core/src)

Posted by mj...@apache.org.
http://git-wip-us.apache.org/repos/asf/incubator-joshua/blob/ee7398f7/joshua-core/src/test/resources/decoder/lowercaser/joshua.config
----------------------------------------------------------------------
diff --git a/joshua-core/src/test/resources/decoder/lowercaser/joshua.config b/joshua-core/src/test/resources/decoder/lowercaser/joshua.config
new file mode 100644
index 0000000..6f5a46b
--- /dev/null
+++ b/joshua-core/src/test/resources/decoder/lowercaser/joshua.config
@@ -0,0 +1,140 @@
+# This file is a template for the Joshua pipeline; variables enclosed
+# in <angle-brackets> are substituted by the pipeline script as
+# appropriate.  This file also serves to document Joshua's many
+# parameters.
+
+# These are the grammar file specifications.  Joshua supports an
+# arbitrary number of grammar files, each specified on its own line
+# using the following format:
+#
+#   tm = TYPE OWNER LIMIT FILE
+# 
+# TYPE is "packed", "thrax", or "samt".  The latter denotes the format
+# used in Zollmann and Venugopal's SAMT decoder
+# (http://www.cs.cmu.edu/~zollmann/samt/).
+# 
+# OWNER is the "owner" of the rules in the grammar; this is used to
+# determine which set of phrasal features apply to the grammar's
+# rules.  Having different owners allows different features to be
+# applied to different grammars, and for grammars to share features
+# across files.
+#
+# LIMIT is the maximum input span permitted for the application of
+# grammar rules found in the grammar file.  A value of -1 implies no limit.
+#
+# FILE is the grammar file (or directory when using packed grammars).
+# The file can be compressed with gzip, which is determined by the
+# presence or absence of a ".gz" file extension.
+#
+# By a convention defined by Chiang (2007), the grammars are split
+# into two files: the main translation grammar containing all the
+# learned translation rules, and a glue grammar which supports
+# monotonic concatenation of hierarchical phrases. The glue grammar's
+# main distinction from the regular grammar is that the span limit
+# does not apply to it.  
+
+tm = hiero -maxspan 20 -path src/test/resources/decoder/lowercaser/grammar.test -owner pt
+tm = thrax -path src/test/resources/decoder/lowercaser/grammar.glue -maxspan -1 -owner glue
+
+# This symbol is used over unknown words in the source language
+
+default-non-terminal = X
+
+# This is the goal nonterminal, used to determine when a complete
+# parse is found.  It should correspond to the root-level rules in the
+# glue grammar.
+
+goal-symbol = GOAL
+
+# Language model config.
+#
+# Multiple language models are supported.  For each language model,
+# create one of the following lines:
+#
+# feature-function = LanguageModel -lm_type TYPE -lm_order ORDER -lm_file FILE
+# feature-function = StateMinimizingLanguageModel -lm_order ORDER -lm_file FILE
+#
+# - TYPE is one of "kenlm" or "berkeleylm"
+# - ORDER is the order of the language model (default 5)
+# - FILE is the path to the LM file. This can be binarized if appropriate to the type
+#   (e.g., KenLM has a compiled format)
+#
+# A state-minimizing LM collapses left-state. Currently only KenLM supports this.
+#
+# For each LM, add a weight lm_INDEX below, where indexing starts from 0.
+
+
+
+# The suffix _OOV is appended to unknown source-language words if this
+# is set to true.
+
+mark-oovs = false
+
+# The search algorithm: "cky" for hierarchical / phrase-based decoding, 
+# "stack" for phrase-based decoding
+search = cky
+
+# The pop-limit for decoding.  This determines how many hypotheses are
+# considered over each span of the input.
+
+pop-limit = 100
+
+# How many hypotheses to output
+
+top-n = 1
+
+# Whether those hypotheses should be distinct strings
+
+use-unique-nbest = true
+
+# This is the default format of the ouput printed to STDOUT.  The variables that can be
+# substituted are:
+#
+# %i: the sentence number (0-indexed)
+# %s: the translated sentence
+# %t: the derivation tree
+# %f: the feature string
+# %c: the model cost
+
+output-format = %s
+
+# When printing the trees (%t in 'output-format'), this controls whether the alignments
+# are also printed.
+
+include-align-index = false
+
+# And these are the feature functions to activate.
+feature-function = OOVPenalty
+feature-function = WordPenalty
+
+## Model weights #####################################################
+
+# For each langage model line listed above, create a weight in the
+# following format: the keyword "lm", a 0-based index, and the weight.
+# lm_INDEX WEIGHT
+
+
+# The phrasal weights correspond to weights stored with each of the
+# grammar rules.  The format is
+#
+#   tm_OWNER_COLUMN WEIGHT
+#
+# where COLUMN denotes the 0-based order of the parameter in the
+# grammar file and WEIGHT is the corresponding weight.  In the future,
+# we plan to add a sparse feature representation which will simplify
+# this.
+
+# The wordpenalty feature counts the number of words in each hypothesis.
+
+
+# This feature counts the number of unknown words in the hypothesis.
+
+
+# This feature weights paths through an input lattice.  It is only activated
+# when decoding lattices.
+
+WordPenalty -4.72455379476569
+OOVPenalty 0.7897219562429866
+tm_pt_0 0.3137696816891433
+tm_glue_0 -0.04493059277470993
+

http://git-wip-us.apache.org/repos/asf/incubator-joshua/blob/ee7398f7/joshua-core/src/test/resources/decoder/moses-compat/NEEDS_UPDATING
----------------------------------------------------------------------
diff --git a/joshua-core/src/test/resources/decoder/moses-compat/NEEDS_UPDATING b/joshua-core/src/test/resources/decoder/moses-compat/NEEDS_UPDATING
new file mode 100644
index 0000000..90402c6
--- /dev/null
+++ b/joshua-core/src/test/resources/decoder/moses-compat/NEEDS_UPDATING
@@ -0,0 +1 @@
+Needs to be moved to a unit test. The parameter JoshuaConfiguration.moses is handled by JoshuaDecoder. Therefore, the CLI must be made testable before a unit test can be created.

http://git-wip-us.apache.org/repos/asf/incubator-joshua/blob/ee7398f7/joshua-core/src/test/resources/phrase_decoder/config.packed
----------------------------------------------------------------------
diff --git a/joshua-core/src/test/resources/phrase_decoder/config.packed b/joshua-core/src/test/resources/phrase_decoder/config.packed
new file mode 100644
index 0000000..9987b1a
--- /dev/null
+++ b/joshua-core/src/test/resources/phrase_decoder/config.packed
@@ -0,0 +1,29 @@
+tm = moses -owner pt -maxspan 0 -path rules.packed -max-source-len 5
+feature-function = StateMinimizingLanguageModel -lm_order 5 -lm_file lm.1.gz
+
+search = stack
+
+mark-oovs = false
+pop-limit = 10
+top-n = 1
+
+output-format = %i ||| %s ||| %f ||| %c
+
+include-align-index = false
+reordering-limit = 6
+
+# And these are the feature functions to activate.
+feature-function = OOVPenalty
+feature-function = WordPenalty
+feature-function = Distortion
+feature-function = PhrasePenalty -owner pt
+
+OOVPenalty 1.0
+Distortion 0.114849
+WordPenalty -0.201544
+PhrasePenalty -0.236965
+tm_pt_0 0.0370068
+tm_pt_1 0.0495759
+tm_pt_2 0.196742
+tm_pt_3 0.0745423
+lm_0 0.204412452147565

http://git-wip-us.apache.org/repos/asf/incubator-joshua/blob/ee7398f7/joshua-core/src/test/resources/phrase_decoder/rules.packed/config
----------------------------------------------------------------------
diff --git a/joshua-core/src/test/resources/phrase_decoder/rules.packed/config b/joshua-core/src/test/resources/phrase_decoder/rules.packed/config
new file mode 100644
index 0000000..2251fe6
--- /dev/null
+++ b/joshua-core/src/test/resources/phrase_decoder/rules.packed/config
@@ -0,0 +1,2 @@
+version = 4
+max-source-len = 3

http://git-wip-us.apache.org/repos/asf/incubator-joshua/blob/ee7398f7/joshua-core/src/test/resources/phrase_decoder/rules.packed/encoding
----------------------------------------------------------------------
diff --git a/joshua-core/src/test/resources/phrase_decoder/rules.packed/encoding b/joshua-core/src/test/resources/phrase_decoder/rules.packed/encoding
new file mode 100644
index 0000000..57e7b75
Binary files /dev/null and b/joshua-core/src/test/resources/phrase_decoder/rules.packed/encoding differ

http://git-wip-us.apache.org/repos/asf/incubator-joshua/blob/ee7398f7/joshua-core/src/test/resources/phrase_decoder/rules.packed/slice_00000.features
----------------------------------------------------------------------
diff --git a/joshua-core/src/test/resources/phrase_decoder/rules.packed/slice_00000.features b/joshua-core/src/test/resources/phrase_decoder/rules.packed/slice_00000.features
new file mode 100644
index 0000000..2a77e43
Binary files /dev/null and b/joshua-core/src/test/resources/phrase_decoder/rules.packed/slice_00000.features differ

http://git-wip-us.apache.org/repos/asf/incubator-joshua/blob/ee7398f7/joshua-core/src/test/resources/phrase_decoder/rules.packed/slice_00000.source
----------------------------------------------------------------------
diff --git a/joshua-core/src/test/resources/phrase_decoder/rules.packed/slice_00000.source b/joshua-core/src/test/resources/phrase_decoder/rules.packed/slice_00000.source
new file mode 100644
index 0000000..c384c54
Binary files /dev/null and b/joshua-core/src/test/resources/phrase_decoder/rules.packed/slice_00000.source differ

http://git-wip-us.apache.org/repos/asf/incubator-joshua/blob/ee7398f7/joshua-core/src/test/resources/phrase_decoder/rules.packed/slice_00000.target
----------------------------------------------------------------------
diff --git a/joshua-core/src/test/resources/phrase_decoder/rules.packed/slice_00000.target b/joshua-core/src/test/resources/phrase_decoder/rules.packed/slice_00000.target
new file mode 100644
index 0000000..8375cf0
Binary files /dev/null and b/joshua-core/src/test/resources/phrase_decoder/rules.packed/slice_00000.target differ

http://git-wip-us.apache.org/repos/asf/incubator-joshua/blob/ee7398f7/joshua-core/src/test/resources/phrase_decoder/rules.packed/slice_00000.target.lookup
----------------------------------------------------------------------
diff --git a/joshua-core/src/test/resources/phrase_decoder/rules.packed/slice_00000.target.lookup b/joshua-core/src/test/resources/phrase_decoder/rules.packed/slice_00000.target.lookup
new file mode 100644
index 0000000..3e8c294
Binary files /dev/null and b/joshua-core/src/test/resources/phrase_decoder/rules.packed/slice_00000.target.lookup differ

http://git-wip-us.apache.org/repos/asf/incubator-joshua/blob/ee7398f7/joshua-core/src/test/resources/phrase_decoder/rules.packed/vocabulary
----------------------------------------------------------------------
diff --git a/joshua-core/src/test/resources/phrase_decoder/rules.packed/vocabulary b/joshua-core/src/test/resources/phrase_decoder/rules.packed/vocabulary
new file mode 100644
index 0000000..528a970
Binary files /dev/null and b/joshua-core/src/test/resources/phrase_decoder/rules.packed/vocabulary differ

http://git-wip-us.apache.org/repos/asf/incubator-joshua/blob/ee7398f7/src/test/java/org/apache/joshua/decoder/cky/BnEnDecodingTest.java
----------------------------------------------------------------------
diff --git a/src/test/java/org/apache/joshua/decoder/cky/BnEnDecodingTest.java b/src/test/java/org/apache/joshua/decoder/cky/BnEnDecodingTest.java
deleted file mode 100644
index d11d58f..0000000
--- a/src/test/java/org/apache/joshua/decoder/cky/BnEnDecodingTest.java
+++ /dev/null
@@ -1,121 +0,0 @@
-/*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements.  See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership.  The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License.  You may obtain a copy of the License at
- *
- *  http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied.  See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-package org.apache.joshua.decoder.cky;
-
-import static org.apache.joshua.decoder.cky.TestUtil.decodeList;
-import static org.apache.joshua.decoder.cky.TestUtil.loadStringsFromFile;
-import static org.testng.Assert.assertEquals;
-
-import java.util.List;
-
-import org.apache.joshua.decoder.Decoder;
-import org.apache.joshua.decoder.JoshuaConfiguration;
-import org.apache.joshua.util.io.KenLmTestUtil;
-import org.testng.annotations.AfterMethod;
-import org.testng.annotations.Test;
-
-public class BnEnDecodingTest {
-
-	private JoshuaConfiguration joshuaConfig;
-	private Decoder decoder;
-
-	@AfterMethod
-	public void tearDown() throws Exception {
-		if(decoder != null) {
-			decoder.cleanUp();
-			decoder = null;
-		}
-	}
-
-	@Test
-	public void givenBnEnInput_whenPhraseDecoding_thenScoreAndTranslationCorrect() throws Exception {
-		// Given
-		List<String> inputStrings = loadStringsFromFile("src/test/resources/bn-en/hiero/input.bn");
-
-		// When
-		configureDecoder("src/test/resources/bn-en/hiero/joshua.config");
-		List<String> decodedStrings = decodeList(inputStrings, decoder, joshuaConfig);
-
-		// Then
-		List<String> goldStrings = loadStringsFromFile("src/test/resources/bn-en/hiero/output.gold");
-		assertEquals(decodedStrings, goldStrings);
-	}
-
-	@Test
-	public void givenBnEnInput_whenPhraseDecodingWithBerkeleyLM_thenScoreAndTranslationCorrect() throws Exception {
-		// Given
-		List<String> inputStrings = loadStringsFromFile("src/test/resources/bn-en/hiero/input.bn");
-
-		// When
-		configureDecoder("src/test/resources/bn-en/hiero/joshua-berkeleylm.config");
-		List<String> decodedStrings = decodeList(inputStrings, decoder, joshuaConfig);
-
-		// Then
-		List<String> goldStrings = loadStringsFromFile("src/test/resources/bn-en/hiero/output-berkeleylm.gold");
-		assertEquals(decodedStrings, goldStrings);
-	}
-
-	@Test
-	public void givenBnEnInput_whenPhraseDecodingWithClassLM_thenScoreAndTranslationCorrect() throws Exception {
-		// Given
-		List<String> inputStrings = loadStringsFromFile("src/test/resources/bn-en/hiero/input.bn");
-
-		// When
-		configureDecoder("src/test/resources/bn-en/hiero/joshua-classlm.config");
-		List<String> decodedStrings = decodeList(inputStrings, decoder, joshuaConfig);
-
-		// Then
-		List<String> goldStrings = loadStringsFromFile("src/test/resources/bn-en/hiero/output-classlm.gold");
-		assertEquals(decodedStrings, goldStrings);
-	}
-	
-	@Test
-	public void givenBnEnInput_whenPhraseDecodingWithPackedGrammar_thenScoreAndTranslationCorrect() throws Exception {
-		// Given
-		List<String> inputStrings = loadStringsFromFile("src/test/resources/bn-en/packed/input.bn");
-
-		// When
-		configureDecoder("src/test/resources/bn-en/packed/joshua.config");
-		List<String> decodedStrings = decodeList(inputStrings, decoder, joshuaConfig);
-
-		// Then
-		List<String> goldStrings = loadStringsFromFile("src/test/resources/bn-en/packed/output.gold");
-		assertEquals(decodedStrings, goldStrings);
-	}
-	
-	@Test
-	public void givenBnEnInput_whenPhraseDecodingWithSAMT_thenScoreAndTranslationCorrect() throws Exception {
-		// Given
-		List<String> inputStrings = loadStringsFromFile("src/test/resources/bn-en/samt/input.bn");
-
-		// When
-		configureDecoder("src/test/resources/bn-en/samt/joshua.config");
-		List<String> decodedStrings = decodeList(inputStrings, decoder, joshuaConfig);
-
-		// Then
-		List<String> goldStrings = loadStringsFromFile("src/test/resources/bn-en/samt/output.gold");
-		assertEquals(decodedStrings, goldStrings);
-	}
-	
-	public void configureDecoder(String pathToConfig) throws Exception {
-		joshuaConfig = new JoshuaConfiguration();
-		joshuaConfig.readConfigFile(pathToConfig);
-		KenLmTestUtil.Guard(() -> decoder = new Decoder(joshuaConfig, ""));
-	}
-}

http://git-wip-us.apache.org/repos/asf/incubator-joshua/blob/ee7398f7/src/test/java/org/apache/joshua/decoder/cky/ConstrainedTest.java
----------------------------------------------------------------------
diff --git a/src/test/java/org/apache/joshua/decoder/cky/ConstrainedTest.java b/src/test/java/org/apache/joshua/decoder/cky/ConstrainedTest.java
deleted file mode 100644
index 53bab7a..0000000
--- a/src/test/java/org/apache/joshua/decoder/cky/ConstrainedTest.java
+++ /dev/null
@@ -1,65 +0,0 @@
-/*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements.  See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership.  The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License.  You may obtain a copy of the License at
- *
- *  http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied.  See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-package org.apache.joshua.decoder.cky;
-
-import static org.apache.joshua.decoder.cky.TestUtil.decodeList;
-import static org.apache.joshua.decoder.cky.TestUtil.loadStringsFromFile;
-import static org.testng.Assert.assertEquals;
-
-import java.util.List;
-
-import org.apache.joshua.decoder.Decoder;
-import org.apache.joshua.decoder.JoshuaConfiguration;
-import org.apache.joshua.util.io.KenLmTestUtil;
-import org.testng.annotations.AfterMethod;
-import org.testng.annotations.Test;
-
-public class ConstrainedTest {
-
-	private JoshuaConfiguration joshuaConfig;
-	private Decoder decoder;
-
-	@AfterMethod
-	public void tearDown() throws Exception {
-		if(decoder != null) {
-			decoder.cleanUp();
-			decoder = null;
-		}
-	}
-
-	@Test
-	public void givenInput_whenConstrainedDecoding_thenScoreAndTranslationCorrect() throws Exception {
-		// Given
-		List<String> inputStrings = loadStringsFromFile("src/test/resources/decoder/constrained/input.bn");
-
-		// When
-		configureDecoder("src/test/resources/decoder/constrained/joshua.config");
-		List<String> decodedStrings = decodeList(inputStrings, decoder, joshuaConfig);
-
-		// Then
-		List<String> goldStrings = loadStringsFromFile("src/test/resources/decoder/constrained/output.gold");
-		assertEquals(decodedStrings, goldStrings);
-	}
-	
-	public void configureDecoder(String pathToConfig) throws Exception {
-		joshuaConfig = new JoshuaConfiguration();
-		joshuaConfig.readConfigFile(pathToConfig);
-		KenLmTestUtil.Guard(() -> decoder = new Decoder(joshuaConfig, ""));
-	}
-}
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/incubator-joshua/blob/ee7398f7/src/test/java/org/apache/joshua/decoder/cky/DenormalizationTest.java
----------------------------------------------------------------------
diff --git a/src/test/java/org/apache/joshua/decoder/cky/DenormalizationTest.java b/src/test/java/org/apache/joshua/decoder/cky/DenormalizationTest.java
deleted file mode 100644
index cbfb98b..0000000
--- a/src/test/java/org/apache/joshua/decoder/cky/DenormalizationTest.java
+++ /dev/null
@@ -1,58 +0,0 @@
-/*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements.  See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership.  The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License.  You may obtain a copy of the License at
- *
- *  http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied.  See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-package org.apache.joshua.decoder.cky;
-
-import static org.apache.joshua.decoder.cky.TestUtil.translate;
-import static org.testng.Assert.assertEquals;
-
-import org.apache.joshua.decoder.Decoder;
-import org.apache.joshua.decoder.JoshuaConfiguration;
-import org.testng.annotations.AfterMethod;
-import org.testng.annotations.BeforeMethod;
-import org.testng.annotations.Test;
-
-public class DenormalizationTest {
-
-	private static final String INPUT = "� who you lookin' at , mr. ?";
-	private static final String GOLD = "�Who you lookin' at, Mr.?";
-	
-	private JoshuaConfiguration joshuaConfig = null;
-	private Decoder decoder = null;
-	
-	@BeforeMethod
-	public void setUp() throws Exception {
-		joshuaConfig = new JoshuaConfiguration();
-		joshuaConfig.outputFormat = "%S";
-		joshuaConfig.mark_oovs = false;
-		joshuaConfig.topN = 1;
-		decoder = new Decoder(joshuaConfig, "");
-	}
-
-	@AfterMethod
-	public void tearDown() throws Exception {
-		decoder.cleanUp();
-		decoder = null;
-	}
-	
-	@Test
-	public void givenTokenizedInputWithSpecialCharacters_whenDecoding_thenOutputNormalized() {
-		String output = translate(INPUT, decoder, joshuaConfig);
-		assertEquals(output.trim(), GOLD);
-	}	
-}
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/incubator-joshua/blob/ee7398f7/src/test/java/org/apache/joshua/decoder/cky/DoNotCrashTest.java
----------------------------------------------------------------------
diff --git a/src/test/java/org/apache/joshua/decoder/cky/DoNotCrashTest.java b/src/test/java/org/apache/joshua/decoder/cky/DoNotCrashTest.java
deleted file mode 100644
index 4a7010b..0000000
--- a/src/test/java/org/apache/joshua/decoder/cky/DoNotCrashTest.java
+++ /dev/null
@@ -1,62 +0,0 @@
-/*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements.  See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership.  The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License.  You may obtain a copy of the License at
- *
- *  http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied.  See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-package org.apache.joshua.decoder.cky;
-
-import static org.apache.joshua.decoder.cky.TestUtil.decodeList;
-import static org.apache.joshua.decoder.cky.TestUtil.loadStringsFromFile;
-
-import java.io.IOException;
-import java.util.List;
-
-import org.apache.joshua.decoder.Decoder;
-import org.apache.joshua.decoder.JoshuaConfiguration;
-import org.testng.annotations.AfterMethod;
-import org.testng.annotations.BeforeMethod;
-import org.testng.annotations.Test;
-
-public class DoNotCrashTest {
-
-	private JoshuaConfiguration joshuaConfig = null;
-	private Decoder decoder = null;
-
-	@BeforeMethod
-	public void setUp() throws Exception {
-		joshuaConfig = new JoshuaConfiguration();
-		decoder = new Decoder(joshuaConfig, "");
-	}
-
-	@AfterMethod
-	public void tearDown() throws Exception {
-		decoder.cleanUp();
-		decoder = null;
-	}
-
-	@Test
-	public void givenProblematicInput_whenDecoding_thenNoCrash() throws IOException {
-		// Given
-		List<String> inputStrings = loadStringsFromFile("src/test/resources/decoder/dont-crash/input");
-		
-		// When
-		decodeList(inputStrings, decoder, joshuaConfig);
-		
-		// Then
-		// Did not crash
-	}
-
-}

http://git-wip-us.apache.org/repos/asf/incubator-joshua/blob/ee7398f7/src/test/java/org/apache/joshua/decoder/cky/LeftStateTest.java
----------------------------------------------------------------------
diff --git a/src/test/java/org/apache/joshua/decoder/cky/LeftStateTest.java b/src/test/java/org/apache/joshua/decoder/cky/LeftStateTest.java
deleted file mode 100644
index fff1550..0000000
--- a/src/test/java/org/apache/joshua/decoder/cky/LeftStateTest.java
+++ /dev/null
@@ -1,65 +0,0 @@
-/*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements.  See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership.  The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License.  You may obtain a copy of the License at
- *
- *  http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied.  See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-package org.apache.joshua.decoder.cky;
-
-import static org.apache.joshua.decoder.cky.TestUtil.decodeList;
-import static org.apache.joshua.decoder.cky.TestUtil.loadStringsFromFile;
-import static org.testng.Assert.assertEquals;
-
-import java.util.List;
-
-import org.apache.joshua.decoder.Decoder;
-import org.apache.joshua.decoder.JoshuaConfiguration;
-import org.apache.joshua.util.io.KenLmTestUtil;
-import org.testng.annotations.AfterMethod;
-import org.testng.annotations.Test;
-
-public class LeftStateTest {
-
-	private JoshuaConfiguration joshuaConfig;
-	private Decoder decoder;
-
-	@AfterMethod
-	public void tearDown() throws Exception {
-		if(decoder != null) {
-			decoder.cleanUp();
-			decoder = null;
-		}
-	}
-
-	@Test
-	public void givenInput_whenLeftStateDecoding_thenScoreAndTranslationCorrect() throws Exception {
-		// Given
-		List<String> inputStrings = loadStringsFromFile("src/test/resources/decoder/left-state/input.bn");
-
-		// When
-		configureDecoder("src/test/resources/decoder/left-state/joshua.config");
-		List<String> decodedStrings = decodeList(inputStrings, decoder, joshuaConfig);
-
-		// Then
-		List<String> goldStrings = loadStringsFromFile("src/test/resources/decoder/left-state/output.gold");
-		assertEquals(decodedStrings, goldStrings);
-	}
-	
-	public void configureDecoder(String pathToConfig) throws Exception {
-		joshuaConfig = new JoshuaConfiguration();
-		joshuaConfig.readConfigFile(pathToConfig);
-		KenLmTestUtil.Guard(() -> decoder = new Decoder(joshuaConfig, ""));
-	}
-}

http://git-wip-us.apache.org/repos/asf/incubator-joshua/blob/ee7398f7/src/test/java/org/apache/joshua/decoder/cky/LowercaseTest.java
----------------------------------------------------------------------
diff --git a/src/test/java/org/apache/joshua/decoder/cky/LowercaseTest.java b/src/test/java/org/apache/joshua/decoder/cky/LowercaseTest.java
deleted file mode 100644
index e3f0aac..0000000
--- a/src/test/java/org/apache/joshua/decoder/cky/LowercaseTest.java
+++ /dev/null
@@ -1,115 +0,0 @@
-/*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements.  See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership.  The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License.  You may obtain a copy of the License at
- *
- *  http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied.  See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-package org.apache.joshua.decoder.cky;
-
-import static org.apache.joshua.decoder.cky.TestUtil.translate;
-import static org.testng.Assert.assertEquals;
-
-import org.apache.joshua.decoder.Decoder;
-import org.apache.joshua.decoder.JoshuaConfiguration;
-import org.testng.annotations.AfterMethod;
-import org.testng.annotations.Test;
-
-public class LowercaseTest {
-
-  private static final String INPUT_ALL_UPPERCASED = "ELLA";
-  private static final String INPUT_CAPITALIZED = "Ella";
-
-  private static final String GOLD_UNTRANSLATED_ALL_UPPERCASED = "ELLA";
-  private static final String GOLD_LOWERCASED = "she";
-  private static final String GOLD_CAPITALIZED = "She";
-  private static final String GOLD_ALL_UPPERCASED = "SHE";
-  
-  private static final String JOSHUA_CONFIG_PATH = "src/test/resources/decoder/lowercaser/joshua.config";
-
-  private JoshuaConfiguration joshuaConfig;
-  private Decoder decoder;
-
-  /**
-   * No match in phrase table (only contains ella), therefore passed through
-   * untranslated.
-   * @throws Exception 
-   */
-  @Test
-  public void givenAllUppercasedInput_whenNotLowercasing_thenLowercasedRuleNotFound() throws Exception {
-    setUp(false, false, false);
-    String output = translate(INPUT_ALL_UPPERCASED, decoder, joshuaConfig);
-    assertEquals(output.trim(), GOLD_UNTRANSLATED_ALL_UPPERCASED);
-  }
-  
-  /**
-   * Match in phrase table (only contains ella), therefore translated.
-   * @throws Exception
-   */
-  @Test
-  public void givenAllUppercasedInput_whenLowercasing_thenLowercasedRuleFound() throws Exception {
-    setUp(true, false, false);
-    String output = translate(INPUT_ALL_UPPERCASED, decoder, joshuaConfig);
-    assertEquals(output.trim(), GOLD_LOWERCASED);
-  }
-  
-  /**
-   * Matches phrase table, not capitalized because projected from first word of sentence
-   * @throws Exception
-   */
-  @Test
-  public void givenCapitalizedInput_whenLowercasingAndProjecting_thenLowercased() throws Exception {
-    setUp(true, true, false);
-    String output = translate(INPUT_CAPITALIZED, decoder, joshuaConfig);
-    assertEquals(output.trim(), GOLD_LOWERCASED);
-  }
-  
-  /**
-   * Matches phrase table, capitalized because of output-format
-   * @throws Exception
-   */
-  @Test
-  public void givenCapitalizedInput_whenLowercasingAndOutputFormatCapitalization_thenCapitalized() throws Exception {
-    setUp(true, true, true);
-    String output = translate(INPUT_CAPITALIZED, decoder, joshuaConfig);
-    assertEquals(output.trim(), GOLD_CAPITALIZED);
-  }
-  
-  /**
-   * Matches phrase table, capitalized because of output-format
-   * @throws Exception
-   */
-  @Test
-  public void givenAllUppercasedInput_whenLowercasingAndProjecting_thenAllUppercased() throws Exception {
-    setUp(true, true, false);
-    String output = translate(INPUT_ALL_UPPERCASED, decoder, joshuaConfig);
-    assertEquals(output.trim(), GOLD_ALL_UPPERCASED);
-  }
-
-  public void setUp(boolean lowercase, boolean projectCase, boolean capitalize) throws Exception {
-    joshuaConfig = new JoshuaConfiguration();
-    joshuaConfig.readConfigFile(JOSHUA_CONFIG_PATH);
-    joshuaConfig.lowercase = lowercase;
-    joshuaConfig.project_case = projectCase;
-    joshuaConfig.outputFormat = capitalize ? "%S" : "%s";
-    decoder = new Decoder(joshuaConfig, "");
-  }
-  
-  @AfterMethod
-  public void tearDown() throws Exception {
-    decoder.cleanUp();
-    decoder = null;
-  }
-  
-}

http://git-wip-us.apache.org/repos/asf/incubator-joshua/blob/ee7398f7/src/test/java/org/apache/joshua/decoder/cky/NAryTest.java
----------------------------------------------------------------------
diff --git a/src/test/java/org/apache/joshua/decoder/cky/NAryTest.java b/src/test/java/org/apache/joshua/decoder/cky/NAryTest.java
deleted file mode 100644
index 31a347a..0000000
--- a/src/test/java/org/apache/joshua/decoder/cky/NAryTest.java
+++ /dev/null
@@ -1,64 +0,0 @@
-package org.apache.joshua.decoder.cky;
-
-import static org.apache.joshua.decoder.cky.TestUtil.decodeList;
-import static org.apache.joshua.decoder.cky.TestUtil.loadStringsFromFile;
-import static org.testng.Assert.assertEquals;
-
-/*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements.  See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership.  The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License.  You may obtain a copy of the License at
- *
- *  http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied.  See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-import java.util.List;
-
-import org.apache.joshua.decoder.Decoder;
-import org.apache.joshua.decoder.JoshuaConfiguration;
-import org.apache.joshua.util.io.KenLmTestUtil;
-import org.testng.annotations.AfterMethod;
-import org.testng.annotations.Test;
-
-public class NAryTest {
-  private JoshuaConfiguration joshuaConfig;
-  private Decoder decoder;
-
-  @AfterMethod
-  public void tearDown() throws Exception {
-    if (decoder != null) {
-      decoder.cleanUp();
-      decoder = null;
-    }
-  }
-
-  @Test
-  public void givenInput_whenNAryDecoding_thenScoreAndTranslationCorrect() throws Exception {
-    // Given
-    List<String> inputStrings = loadStringsFromFile("src/test/resources/decoder/n-ary/input.txt");
-
-    // When
-    configureDecoder("src/test/resources/decoder/n-ary/joshua.config");
-    List<String> decodedStrings = decodeList(inputStrings, decoder, joshuaConfig);
-
-    // Then
-    List<String> goldStrings = loadStringsFromFile("src/test/resources/decoder/n-ary/output.gold");
-    assertEquals(decodedStrings, goldStrings);
-  }
-
-  public void configureDecoder(String pathToConfig) throws Exception {
-    joshuaConfig = new JoshuaConfiguration();
-    joshuaConfig.readConfigFile(pathToConfig);
-    KenLmTestUtil.Guard(() -> decoder = new Decoder(joshuaConfig, ""));
-  }
-}

http://git-wip-us.apache.org/repos/asf/incubator-joshua/blob/ee7398f7/src/test/java/org/apache/joshua/decoder/cky/NoGrammarTest.java
----------------------------------------------------------------------
diff --git a/src/test/java/org/apache/joshua/decoder/cky/NoGrammarTest.java b/src/test/java/org/apache/joshua/decoder/cky/NoGrammarTest.java
deleted file mode 100644
index b814d08..0000000
--- a/src/test/java/org/apache/joshua/decoder/cky/NoGrammarTest.java
+++ /dev/null
@@ -1,56 +0,0 @@
-/*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements.  See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership.  The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License.  You may obtain a copy of the License at
- *
- *  http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied.  See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-package org.apache.joshua.decoder.cky;
-
-import static org.apache.joshua.decoder.cky.TestUtil.translate;
-import static org.testng.Assert.assertEquals;
-
-import org.apache.joshua.decoder.Decoder;
-import org.apache.joshua.decoder.JoshuaConfiguration;
-import org.testng.annotations.AfterMethod;
-import org.testng.annotations.BeforeMethod;
-import org.testng.annotations.Test;
-
-public class NoGrammarTest {
-
-	private static final String INPUT = "those who hurt others hurt themselves";
-	private static final String GOLD = "0 ||| those_OOV who_OOV hurt_OOV others_OOV hurt_OOV themselves_OOV ||| tm_glue_0=6.000 ||| 0.000";
-	
-	private JoshuaConfiguration joshuaConfig = null;
-	private Decoder decoder = null;
-	
-	@BeforeMethod
-	public void setUp() throws Exception {
-		joshuaConfig = new JoshuaConfiguration();
-		joshuaConfig.mark_oovs = true;
-		decoder = new Decoder(joshuaConfig, "");
-	}
-
-	@AfterMethod
-	public void tearDown() throws Exception {
-		decoder.cleanUp();
-		decoder = null;
-	}
-	
-	@Test
-	public void givenInput_whenDecodingWithoutGrammar_thenOutputAllOOV() {
-		String output = translate(INPUT, decoder, joshuaConfig);
-		assertEquals(output.trim(), GOLD);
-	}	
-}

http://git-wip-us.apache.org/repos/asf/incubator-joshua/blob/ee7398f7/src/test/java/org/apache/joshua/decoder/cky/TestUtil.java
----------------------------------------------------------------------
diff --git a/src/test/java/org/apache/joshua/decoder/cky/TestUtil.java b/src/test/java/org/apache/joshua/decoder/cky/TestUtil.java
deleted file mode 100644
index 35800c6..0000000
--- a/src/test/java/org/apache/joshua/decoder/cky/TestUtil.java
+++ /dev/null
@@ -1,87 +0,0 @@
-/*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements.  See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership.  The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License.  You may obtain a copy of the License at
- *
- *  http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied.  See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-package org.apache.joshua.decoder.cky;
-
-import java.io.IOException;
-import java.nio.file.Files;
-import java.nio.file.Paths;
-import java.util.ArrayList;
-import java.util.Arrays;
-import java.util.List;
-import java.util.stream.Collectors;
-
-import org.apache.joshua.decoder.Decoder;
-import org.apache.joshua.decoder.JoshuaConfiguration;
-import org.apache.joshua.decoder.segment_file.Sentence;
-
-public class TestUtil {
-
-	public static final String N_BEST_SEPARATOR = "\n";
-
-	/**
-	 * Loads a text file and returns a list containing one string per line
-	 * in the file.
-	 * @param pathToFile
-	 * @return
-	 * @throws IOException
-	 */
-	public static List<String> loadStringsFromFile(String pathToFile) throws IOException {
-		List<String> inputLines = Files.lines(Paths.get(pathToFile)).collect(Collectors.toList());
-		return inputLines;
-	}
-
-	/**
-	 * 
-	 * @param inputStrings
-	 *            A list of strings that should be decoded,
-	 * @param decoder
-	 *            An initialized decoder,
-	 * @param joshuaConfig
-	 *            The JoshuaConfiguration corresponding to the decoder.
-	 * @return A list of decoded strings. If the decoder produces a n-best list
-	 *         (separated by N_BEST_SEPARATOR), then each translation of the
-	 *         n-best list has its own entry in the returned list.
-	 */
-	public static List<String> decodeList(List<String> inputStrings, Decoder decoder,
-			JoshuaConfiguration joshuaConfig) {
-		final List<String> decodedStrings = new ArrayList<>();
-
-		for (String inputString : inputStrings) {
-			final Sentence sentence = new Sentence(inputString, 0, joshuaConfig);
-			final String[] nBestList = decoder.decode(sentence).toString().split(N_BEST_SEPARATOR);
-			decodedStrings.addAll(Arrays.asList(nBestList));
-		}
-
-		return decodedStrings;
-	}
-	
-	/**
-	 * Translates the given input string and returns the translation
-	 * converted into a string.
-	 * @param input
-	 * @param decoder
-	 * @param joshuaConfig
-	 * @return
-	 */
-	public static String translate(String input, Decoder decoder, JoshuaConfiguration joshuaConfig) {
-	    final Sentence sentence = new Sentence(input, 0, joshuaConfig);
-	    return decoder.decode(sentence).toString();
-	}
-
-}



[8/9] incubator-joshua git commit: Fixed some tests

Posted by mj...@apache.org.
Fixed some tests


Project: http://git-wip-us.apache.org/repos/asf/incubator-joshua/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-joshua/commit/2768b61d
Tree: http://git-wip-us.apache.org/repos/asf/incubator-joshua/tree/2768b61d
Diff: http://git-wip-us.apache.org/repos/asf/incubator-joshua/diff/2768b61d

Branch: refs/heads/7
Commit: 2768b61d34198589b4b3825b28013a908d79840f
Parents: ee7398f
Author: Matt Post <po...@cs.jhu.edu>
Authored: Thu Sep 15 13:07:20 2016 +0200
Committer: Matt Post <po...@cs.jhu.edu>
Committed: Thu Sep 15 13:07:20 2016 +0200

----------------------------------------------------------------------
 .../bn-en/hiero/joshua-berkeleylm.config        |  36 +++++++++----------
 .../resources/bn-en/hiero/joshua-classlm.config |  36 +++++++++----------
 .../test/resources/bn-en/hiero/joshua.config    |  36 +++++++++----------
 .../bn-en/packed/grammar.packed/encoding        | Bin 767 -> 767 bytes
 .../bn-en/packed/grammar.packed/vocabulary      | Bin 136522 -> 257542 bytes
 .../test/resources/bn-en/packed/joshua.config   |  36 +++++++++----------
 .../src/test/resources/bn-en/samt/joshua.config |  36 +++++++++----------
 7 files changed, 90 insertions(+), 90 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-joshua/blob/2768b61d/joshua-core/src/test/resources/bn-en/hiero/joshua-berkeleylm.config
----------------------------------------------------------------------
diff --git a/joshua-core/src/test/resources/bn-en/hiero/joshua-berkeleylm.config b/joshua-core/src/test/resources/bn-en/hiero/joshua-berkeleylm.config
index 53c8fe4..7b058ca 100644
--- a/joshua-core/src/test/resources/bn-en/hiero/joshua-berkeleylm.config
+++ b/joshua-core/src/test/resources/bn-en/hiero/joshua-berkeleylm.config
@@ -25,23 +25,23 @@ output-format = "%c %s"
 
 # model weights
 lm_0 1.2373676802179452
-tm_pt_0 -2.4497429277910214
-tm_pt_1 0.7224581556224123
-tm_pt_2 -0.31689069155153504
-tm_pt_3 0.33861043967238036
-tm_pt_4 0.03553113401320236
-tm_pt_5 0.19138972284064748
-tm_pt_6 0.3417994095521415
-tm_pt_7 -0.9936312455671283
-tm_pt_8 0.9070737587091975
-tm_pt_9 0.8202511858619419
-tm_pt_10 0.2593091306160006
-tm_pt_11 0.25597137004462134
-tm_pt_12 0.3538894647790496
-tm_pt_13 -0.36212061186692646
-tm_pt_14 -0.32923261148678096
-tm_pt_15 0.5524863522177359
-tm_pt_16 0.23451595442127693
-tm_glue_0 1
+pt_0 2.4497429277910214
+pt_1 -0.7224581556224123
+pt_2 0.31689069155153504
+pt_3 -0.33861043967238036
+pt_4 -0.03553113401320236
+pt_5 -0.19138972284064748
+pt_6 -0.3417994095521415
+pt_7 0.9936312455671283
+pt_8 -0.9070737587091975
+pt_9 -0.8202511858619419
+pt_10 -0.2593091306160006
+pt_11 -0.25597137004462134
+pt_12 -0.3538894647790496
+pt_13 0.36212061186692646
+pt_14 0.32923261148678096
+pt_15 -0.5524863522177359
+pt_16 -0.23451595442127693
+glue_0 -1
 WordPenalty -3.6942747832593694
 OOVPenalty 1.0

http://git-wip-us.apache.org/repos/asf/incubator-joshua/blob/2768b61d/joshua-core/src/test/resources/bn-en/hiero/joshua-classlm.config
----------------------------------------------------------------------
diff --git a/joshua-core/src/test/resources/bn-en/hiero/joshua-classlm.config b/joshua-core/src/test/resources/bn-en/hiero/joshua-classlm.config
index d0bee40..4958188 100644
--- a/joshua-core/src/test/resources/bn-en/hiero/joshua-classlm.config
+++ b/joshua-core/src/test/resources/bn-en/hiero/joshua-classlm.config
@@ -30,23 +30,23 @@ output-format = "%c %s"
 # model weights
 lm_0 1.2373676802179452
 lm_1 1.2373676802179452
-tm_pt_0 -2.4497429277910214
-tm_pt_1 0.7224581556224123
-tm_pt_2 -0.31689069155153504
-tm_pt_3 0.33861043967238036
-tm_pt_4 0.03553113401320236
-tm_pt_5 0.19138972284064748
-tm_pt_6 0.3417994095521415
-tm_pt_7 -0.9936312455671283
-tm_pt_8 0.9070737587091975
-tm_pt_9 0.8202511858619419
-tm_pt_10 0.2593091306160006
-tm_pt_11 0.25597137004462134
-tm_pt_12 0.3538894647790496
-tm_pt_13 -0.36212061186692646
-tm_pt_14 -0.32923261148678096
-tm_pt_15 0.5524863522177359
-tm_pt_16 0.23451595442127693
-tm_glue_0 1
+pt_0 2.4497429277910214
+pt_1 -0.7224581556224123
+pt_2 0.31689069155153504
+pt_3 -0.33861043967238036
+pt_4 -0.03553113401320236
+pt_5 -0.19138972284064748
+pt_6 -0.3417994095521415
+pt_7 0.9936312455671283
+pt_8 -0.9070737587091975
+pt_9 -0.8202511858619419
+pt_10 -0.2593091306160006
+pt_11 -0.25597137004462134
+pt_12 -0.3538894647790496
+pt_13 0.36212061186692646
+pt_14 0.32923261148678096
+pt_15 -0.5524863522177359
+pt_16 -0.23451595442127693
+glue_0 -1
 WordPenalty -3.6942747832593694
 OOVPenalty 1.0

http://git-wip-us.apache.org/repos/asf/incubator-joshua/blob/2768b61d/joshua-core/src/test/resources/bn-en/hiero/joshua.config
----------------------------------------------------------------------
diff --git a/joshua-core/src/test/resources/bn-en/hiero/joshua.config b/joshua-core/src/test/resources/bn-en/hiero/joshua.config
index 3942a41..4dd7f34 100644
--- a/joshua-core/src/test/resources/bn-en/hiero/joshua.config
+++ b/joshua-core/src/test/resources/bn-en/hiero/joshua.config
@@ -26,23 +26,23 @@ output-format = "%c %s"
 # model weights
 lm_0 1.2373676802179452
 lm_1 1.2373676802179452
-tm_pt_0 -2.4497429277910214
-tm_pt_1 0.7224581556224123
-tm_pt_2 -0.31689069155153504
-tm_pt_3 0.33861043967238036
-tm_pt_4 0.03553113401320236
-tm_pt_5 0.19138972284064748
-tm_pt_6 0.3417994095521415
-tm_pt_7 -0.9936312455671283
-tm_pt_8 0.9070737587091975
-tm_pt_9 0.8202511858619419
-tm_pt_10 0.2593091306160006
-tm_pt_11 0.25597137004462134
-tm_pt_12 0.3538894647790496
-tm_pt_13 -0.36212061186692646
-tm_pt_14 -0.32923261148678096
-tm_pt_15 0.5524863522177359
-tm_pt_16 0.23451595442127693
-tm_glue_0 1
+pt_0 2.4497429277910214
+pt_1 -0.7224581556224123
+pt_2 0.31689069155153504
+pt_3 -0.33861043967238036
+pt_4 -0.03553113401320236
+pt_5 -0.19138972284064748
+pt_6 -0.3417994095521415
+pt_7 0.9936312455671283
+pt_8 -0.9070737587091975
+pt_9 -0.8202511858619419
+pt_10 -0.2593091306160006
+pt_11 -0.25597137004462134
+pt_12 -0.3538894647790496
+pt_13 0.36212061186692646
+pt_14 0.32923261148678096
+pt_15 -0.5524863522177359
+pt_16 -0.23451595442127693
+glue_0 -1
 WordPenalty -3.6942747832593694
 OOVPenalty 1.0

http://git-wip-us.apache.org/repos/asf/incubator-joshua/blob/2768b61d/joshua-core/src/test/resources/bn-en/packed/grammar.packed/encoding
----------------------------------------------------------------------
diff --git a/joshua-core/src/test/resources/bn-en/packed/grammar.packed/encoding b/joshua-core/src/test/resources/bn-en/packed/grammar.packed/encoding
index 97ab6a6..17833a5 100644
Binary files a/joshua-core/src/test/resources/bn-en/packed/grammar.packed/encoding and b/joshua-core/src/test/resources/bn-en/packed/grammar.packed/encoding differ

http://git-wip-us.apache.org/repos/asf/incubator-joshua/blob/2768b61d/joshua-core/src/test/resources/bn-en/packed/grammar.packed/vocabulary
----------------------------------------------------------------------
diff --git a/joshua-core/src/test/resources/bn-en/packed/grammar.packed/vocabulary b/joshua-core/src/test/resources/bn-en/packed/grammar.packed/vocabulary
index aa94d05..cd41d75 100644
Binary files a/joshua-core/src/test/resources/bn-en/packed/grammar.packed/vocabulary and b/joshua-core/src/test/resources/bn-en/packed/grammar.packed/vocabulary differ

http://git-wip-us.apache.org/repos/asf/incubator-joshua/blob/2768b61d/joshua-core/src/test/resources/bn-en/packed/joshua.config
----------------------------------------------------------------------
diff --git a/joshua-core/src/test/resources/bn-en/packed/joshua.config b/joshua-core/src/test/resources/bn-en/packed/joshua.config
index f140cc4..ead1806 100644
--- a/joshua-core/src/test/resources/bn-en/packed/joshua.config
+++ b/joshua-core/src/test/resources/bn-en/packed/joshua.config
@@ -28,23 +28,23 @@ output-format = "%c %s"
 lm_0 1.3200621467242506
 
 #phrasemodel owner column(0-indexed) weight
-tm_pt_0 0.4571255198114019
-tm_pt_1 -0.17399038425384106
-tm_pt_2 -0.784547842535801
-tm_pt_3 0.76254324621594
-tm_pt_4 -0.8628695028838571
-tm_pt_5 0.04258438925263152
-tm_pt_6 0.5278815893934184
-tm_pt_7 0.9255662450788644
-tm_pt_8 0.03385066779097645
-tm_pt_9 0.9918446849428446
-tm_pt_10 0.52186013168725
-tm_pt_11 -0.7874679555197446
-tm_pt_12 -0.03770136145251124
-tm_pt_13 0.37085201114442157
-tm_pt_14 0.34054825749510886
-tm_pt_15 0.008348471483412778
-tm_pt_16 0.7984119288127296
-tm_glue_0 1
+pt_0 -0.4571255198114019
+pt_1 0.17399038425384106
+pt_2 0.784547842535801
+pt_3 -0.76254324621594
+pt_4 0.8628695028838571
+pt_5 -0.04258438925263152
+pt_6 -0.5278815893934184
+pt_7 -0.9255662450788644
+pt_8 -0.03385066779097645
+pt_9 -0.9918446849428446
+pt_10 -0.52186013168725
+pt_11 0.7874679555197446
+pt_12 0.03770136145251124
+pt_13 -0.37085201114442157
+pt_14 -0.34054825749510886
+pt_15 -0.008348471483412778
+pt_16 -0.7984119288127296
+glue_0 -1
 WordPenalty -3.0476045270236662
 OOVPenalty 1.0

http://git-wip-us.apache.org/repos/asf/incubator-joshua/blob/2768b61d/joshua-core/src/test/resources/bn-en/samt/joshua.config
----------------------------------------------------------------------
diff --git a/joshua-core/src/test/resources/bn-en/samt/joshua.config b/joshua-core/src/test/resources/bn-en/samt/joshua.config
index 474e38c..f3a8da0 100644
--- a/joshua-core/src/test/resources/bn-en/samt/joshua.config
+++ b/joshua-core/src/test/resources/bn-en/samt/joshua.config
@@ -29,23 +29,23 @@ output-format = "%c %s"
 lm_0 1.3200621467242506
 
 #phrasemodel owner column(0-indexed) weight
-tm_pt_0 0.4571255198114019
-tm_pt_1 -0.17399038425384106
-tm_pt_2 -0.784547842535801
-tm_pt_3 0.76254324621594
-tm_pt_4 -0.8628695028838571
-tm_pt_5 0.04258438925263152
-tm_pt_6 0.5278815893934184
-tm_pt_7 0.9255662450788644
-tm_pt_8 0.03385066779097645
-tm_pt_9 0.9918446849428446
-tm_pt_10 0.52186013168725
-tm_pt_11 -0.7874679555197446
-tm_pt_12 -0.03770136145251124
-tm_pt_13 0.37085201114442157
-tm_pt_14 0.34054825749510886
-tm_pt_15 0.008348471483412778
-tm_pt_16 0.7984119288127296
-tm_glue_0 1
+pt_0 -0.4571255198114019
+pt_1 0.17399038425384106
+pt_2 0.784547842535801
+pt_3 -0.76254324621594
+pt_4 0.8628695028838571
+pt_5 -0.04258438925263152
+pt_6 -0.5278815893934184
+pt_7 -0.9255662450788644
+pt_8 -0.03385066779097645
+pt_9 -0.9918446849428446
+pt_10 -0.52186013168725
+pt_11 0.7874679555197446
+pt_12 0.03770136145251124
+pt_13 -0.37085201114442157
+pt_14 -0.34054825749510886
+pt_15 -0.008348471483412778
+pt_16 -0.7984119288127296
+glue_0 -1
 WordPenalty -3.0476045270236662
 OOVPenalty 1.0


[6/9] incubator-joshua git commit: moved new unit tests (former regression tests) to correct location in joshua 7 (joshua-core/src)

Posted by mj...@apache.org.
http://git-wip-us.apache.org/repos/asf/incubator-joshua/blob/ee7398f7/joshua-core/src/test/resources/bn-en/hiero/output-berkeleylm.gold
----------------------------------------------------------------------
diff --git a/joshua-core/src/test/resources/bn-en/hiero/output-berkeleylm.gold b/joshua-core/src/test/resources/bn-en/hiero/output-berkeleylm.gold
new file mode 100644
index 0000000..ef11275
--- /dev/null
+++ b/joshua-core/src/test/resources/bn-en/hiero/output-berkeleylm.gold
@@ -0,0 +1,943 @@
+"-226.302 rabindranath was born in a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family"
+"-226.523 rabindranath born in kolkata is a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family"
+"-226.884 rabindranath was born in kolkata is a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family"
+"-227.201 rabindranath 's birth in kolkata is a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family"
+"-227.217 rabindranath was born in kolkata a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family"
+"-227.707 rabindranath born in kolkata is one \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family"
+"-227.982 rabindranath was born in the a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family"
+"-228.069 rabindranath was born in kolkata is one \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family"
+"-228.133 rabindranath was born in kolkata in a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family"
+"-228.160 rabindranath was born in kolkata one \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family"
+"-21.022 recently with united states with the relationship between improved ."
+"-21.210 recently with united states with the relation between improved ."
+"-21.900 in recent times with united states with the relationship between improved ."
+"-22.055 in recent times india with united states relationship between improved ."
+"-22.088 in recent times with united states with the relation between improved ."
+"-22.129 recently india with united states relationship between improved ."
+"-22.329 in recent times of india with united states relationship between improved ."
+"-22.334 recently with the united states relationship between improved ."
+"-22.473 recently with the united states with the relationship between improved ."
+"-22.538 recently with united states with the relation improved ."
+"-10.471 mathematics so science language ."
+"-10.543 mathematics is science language ."
+"-11.587 mathematics that science language ."
+"-12.065 science mathematics that language ."
+"-12.259 mathematics so that the science language ."
+"-12.352 mathematics hence science language ."
+"-12.590 mathematics that is science language ."
+"-12.619 mathematics , science language ."
+"-12.751 mathematics that is why science language ."
+"-12.755 mathematics in science language ."
+"-322.621 from this it it can be understood that this \u09ae\u09c7\u099f\u09cd\u09b0\u09bf\u0995\u099f\u09bf will be \u098f\u09ab\u0986\u09b0\u09a1\u09ac\u09cd\u09b2\u09bf\u0989 \u09ae\u09c7\u099f\u09cd\u09b0\u09bf\u0995 ."
+"-322.636 from this it it can be understood that in this \u09ae\u09c7\u099f\u09cd\u09b0\u09bf\u0995\u099f\u09bf will be \u098f\u09ab\u0986\u09b0\u09a1\u09ac\u09cd\u09b2\u09bf\u0989 \u09ae\u09c7\u099f\u09cd\u09b0\u09bf\u0995 ."
+"-322.853 from this easily it can be understood that this \u09ae\u09c7\u099f\u09cd\u09b0\u09bf\u0995\u099f\u09bf will be \u098f\u09ab\u0986\u09b0\u09a1\u09ac\u09cd\u09b2\u09bf\u0989 \u09ae\u09c7\u099f\u09cd\u09b0\u09bf\u0995 ."
+"-322.867 from this easily it can be understood that in this \u09ae\u09c7\u099f\u09cd\u09b0\u09bf\u0995\u099f\u09bf will be \u098f\u09ab\u0986\u09b0\u09a1\u09ac\u09cd\u09b2\u09bf\u0989 \u09ae\u09c7\u099f\u09cd\u09b0\u09bf\u0995 ."
+"-322.952 from this can easily it can be understood that this \u09ae\u09c7\u099f\u09cd\u09b0\u09bf\u0995\u099f\u09bf will be \u098f\u09ab\u0986\u09b0\u09a1\u09ac\u09cd\u09b2\u09bf\u0989 \u09ae\u09c7\u099f\u09cd\u09b0\u09bf\u0995 ."
+"-322.966 from this can easily it can be understood that in this \u09ae\u09c7\u099f\u09cd\u09b0\u09bf\u0995\u099f\u09bf will be \u098f\u09ab\u0986\u09b0\u09a1\u09ac\u09cd\u09b2\u09bf\u0989 \u09ae\u09c7\u099f\u09cd\u09b0\u09bf\u0995 ."
+"-322.982 from this it can be understood easily that this \u09ae\u09c7\u099f\u09cd\u09b0\u09bf\u0995\u099f\u09bf will be \u098f\u09ab\u0986\u09b0\u09a1\u09ac\u09cd\u09b2\u09bf\u0989 \u09ae\u09c7\u099f\u09cd\u09b0\u09bf\u0995 ."
+"-322.995 it can be understood from this easily that this \u09ae\u09c7\u099f\u09cd\u09b0\u09bf\u0995\u099f\u09bf will be \u098f\u09ab\u0986\u09b0\u09a1\u09ac\u09cd\u09b2\u09bf\u0989 \u09ae\u09c7\u099f\u09cd\u09b0\u09bf\u0995 ."
+"-322.996 from this it can be understood easily that in this \u09ae\u09c7\u099f\u09cd\u09b0\u09bf\u0995\u099f\u09bf will be \u098f\u09ab\u0986\u09b0\u09a1\u09ac\u09cd\u09b2\u09bf\u0989 \u09ae\u09c7\u099f\u09cd\u09b0\u09bf\u0995 ."
+"-323.010 it can be understood from this easily that in this \u09ae\u09c7\u099f\u09cd\u09b0\u09bf\u0995\u099f\u09bf will be \u098f\u09ab\u0986\u09b0\u09a1\u09ac\u09cd\u09b2\u09bf\u0989 \u09ae\u09c7\u099f\u09cd\u09b0\u09bf\u0995 ."
+"-236.836 the same with the earthcentered \u09b8\u09be\u09ae\u09a8\u09cd\u09a4\u09a4\u09a8\u09cd\u09a4\u09cd\u09b0\u09c7\u09b0 \u09aa\u09a4\u09a8\u09c7\u09b0 indication match from this novel ."
+"-236.965 the same with the earthcentered \u09b8\u09be\u09ae\u09a8\u09cd\u09a4\u09a4\u09a8\u09cd\u09a4\u09cd\u09b0\u09c7\u09b0 \u09aa\u09a4\u09a8\u09c7\u09b0 presage match from this novel ."
+"-237.005 in the same with the earthcentered \u09b8\u09be\u09ae\u09a8\u09cd\u09a4\u09a4\u09a8\u09cd\u09a4\u09cd\u09b0\u09c7\u09b0 \u09aa\u09a4\u09a8\u09c7\u09b0 indication match from this novel ."
+"-237.135 in the same with the earthcentered \u09b8\u09be\u09ae\u09a8\u09cd\u09a4\u09a4\u09a8\u09cd\u09a4\u09cd\u09b0\u09c7\u09b0 \u09aa\u09a4\u09a8\u09c7\u09b0 presage match from this novel ."
+"-237.590 on the same with the earthcentered \u09b8\u09be\u09ae\u09a8\u09cd\u09a4\u09a4\u09a8\u09cd\u09a4\u09cd\u09b0\u09c7\u09b0 \u09aa\u09a4\u09a8\u09c7\u09b0 indication match from this novel ."
+"-237.670 the same along with the earthcentered \u09b8\u09be\u09ae\u09a8\u09cd\u09a4\u09a4\u09a8\u09cd\u09a4\u09cd\u09b0\u09c7\u09b0 \u09aa\u09a4\u09a8\u09c7\u09b0 indication match from this novel ."
+"-237.720 on the same with the earthcentered \u09b8\u09be\u09ae\u09a8\u09cd\u09a4\u09a4\u09a8\u09cd\u09a4\u09cd\u09b0\u09c7\u09b0 \u09aa\u09a4\u09a8\u09c7\u09b0 presage match from this novel ."
+"-237.800 the same along with the earthcentered \u09b8\u09be\u09ae\u09a8\u09cd\u09a4\u09a4\u09a8\u09cd\u09a4\u09cd\u09b0\u09c7\u09b0 \u09aa\u09a4\u09a8\u09c7\u09b0 presage match from this novel ."
+"-237.839 in the same along with the earthcentered \u09b8\u09be\u09ae\u09a8\u09cd\u09a4\u09a4\u09a8\u09cd\u09a4\u09cd\u09b0\u09c7\u09b0 \u09aa\u09a4\u09a8\u09c7\u09b0 indication match from this novel ."
+"-237.965 same with the earthcentered \u09b8\u09be\u09ae\u09a8\u09cd\u09a4\u09a4\u09a8\u09cd\u09a4\u09cd\u09b0\u09c7\u09b0 \u09aa\u09a4\u09a8\u09c7\u09b0 indication match from this novel ."
+"-217.895 \u09a8\u09bf\u09b0\u09cd\u09ac\u099a\u09a8\u09c7 mujib and his party \u09a8\u09bf\u09b0\u0999\u09cd\u0995\u09c1\u09b7 majority in the ."
+"-220.097 \u09a8\u09bf\u09b0\u09cd\u09ac\u099a\u09a8\u09c7 mujib and his party \u09a8\u09bf\u09b0\u0999\u09cd\u0995\u09c1\u09b7 majority that the ."
+"-220.171 \u09a8\u09bf\u09b0\u09cd\u09ac\u099a\u09a8\u09c7 mujib and his party \u09a8\u09bf\u09b0\u0999\u09cd\u0995\u09c1\u09b7 majority where the ."
+"-220.174 \u09a8\u09bf\u09b0\u09cd\u09ac\u099a\u09a8\u09c7 mujib and his party \u09a8\u09bf\u09b0\u0999\u09cd\u0995\u09c1\u09b7 single absolute majority in the ."
+"-220.184 \u09a8\u09bf\u09b0\u09cd\u09ac\u099a\u09a8\u09c7 mujib and his party \u09a8\u09bf\u09b0\u0999\u09cd\u0995\u09c1\u09b7 majority in the goods ."
+"-220.511 \u09a8\u09bf\u09b0\u09cd\u09ac\u099a\u09a8\u09c7 seikh mujib and his party \u09a8\u09bf\u09b0\u0999\u09cd\u0995\u09c1\u09b7 majority in the ."
+"-220.827 \u09a8\u09bf\u09b0\u09cd\u09ac\u099a\u09a8\u09c7 mujib and his party majority in the \u09a8\u09bf\u09b0\u0999\u09cd\u0995\u09c1\u09b7 ."
+"-220.946 mujib and his party \u09a8\u09bf\u09b0\u09cd\u09ac\u099a\u09a8\u09c7 \u09a8\u09bf\u09b0\u0999\u09cd\u0995\u09c1\u09b7 majority in the ."
+"-221.426 \u09a8\u09bf\u09b0\u09cd\u09ac\u099a\u09a8\u09c7 mujib and his party \u09a8\u09bf\u09b0\u0999\u09cd\u0995\u09c1\u09b7 majority , in the ."
+"-221.431 \u09a8\u09bf\u09b0\u09cd\u09ac\u099a\u09a8\u09c7 mujib and his party \u09a8\u09bf\u09b0\u0999\u09cd\u0995\u09c1\u09b7 the majority in ."
+"-432.357 \u09b9\u09bf\u099f\u09b2\u09be\u09b0\u0993 \u09ac\u09be\u09ad\u09be\u09b0\u09bf\u09af\u09bc\u09be\u09b0 \u09ae\u09bf\u0989\u09a8\u09bf\u0996 \u09b6\u09b9\u09b0\u09c7\u0987 his work with to that ."
+"-433.284 \u09b9\u09bf\u099f\u09b2\u09be\u09b0\u0993 \u09ac\u09be\u09ad\u09be\u09b0\u09bf\u09af\u09bc\u09be\u09b0 \u09ae\u09bf\u0989\u09a8\u09bf\u0996 \u09b6\u09b9\u09b0\u09c7\u0987 his work with can and pajama ."
+"-433.453 \u09b9\u09bf\u099f\u09b2\u09be\u09b0\u0993 \u09ac\u09be\u09ad\u09be\u09b0\u09bf\u09af\u09bc\u09be\u09b0 \u09ae\u09bf\u0989\u09a8\u09bf\u0996 \u09b6\u09b9\u09b0\u09c7\u0987 his work with to and pajama ."
+"-433.520 \u09b9\u09bf\u099f\u09b2\u09be\u09b0\u0993 \u09ac\u09be\u09ad\u09be\u09b0\u09bf\u09af\u09bc\u09be\u09b0 \u09ae\u09bf\u0989\u09a8\u09bf\u0996 \u09b6\u09b9\u09b0\u09c7\u0987 his work with can that ."
+"-433.577 \u09b9\u09bf\u099f\u09b2\u09be\u09b0\u0993 \u09ac\u09be\u09ad\u09be\u09b0\u09bf\u09af\u09bc\u09be\u09b0 \u09ae\u09bf\u0989\u09a8\u09bf\u0996 \u09b6\u09b9\u09b0\u09c7\u0987 his work with that can ."
+"-433.863 \u09b9\u09bf\u099f\u09b2\u09be\u09b0\u0993 \u09ac\u09be\u09ad\u09be\u09b0\u09bf\u09af\u09bc\u09be\u09b0 \u09ae\u09bf\u0989\u09a8\u09bf\u0996 \u09b6\u09b9\u09b0\u09c7\u0987 his works with to that ."
+"-433.962 \u09b9\u09bf\u099f\u09b2\u09be\u09b0\u0993 \u09ac\u09be\u09ad\u09be\u09b0\u09bf\u09af\u09bc\u09be\u09b0 \u09ae\u09bf\u0989\u09a8\u09bf\u0996 \u09b6\u09b9\u09b0\u09c7\u0987 with his work to that ."
+"-433.974 \u09b9\u09bf\u099f\u09b2\u09be\u09b0\u0993 \u09ac\u09be\u09ad\u09be\u09b0\u09bf\u09af\u09bc\u09be\u09b0 \u09ae\u09bf\u0989\u09a8\u09bf\u0996 \u09b6\u09b9\u09b0\u09c7\u0987 his work with a that ."
+"-434.091 \u09b9\u09bf\u099f\u09b2\u09be\u09b0\u0993 \u09ac\u09be\u09ad\u09be\u09b0\u09bf\u09af\u09bc\u09be\u09b0 \u09ae\u09bf\u0989\u09a8\u09bf\u0996 \u09b6\u09b9\u09b0\u09c7\u0987 his work with a and pajama ."
+"-434.368 \u09b9\u09bf\u099f\u09b2\u09be\u09b0\u0993 \u09ac\u09be\u09ad\u09be\u09b0\u09bf\u09af\u09bc\u09be\u09b0 \u09ae\u09bf\u0989\u09a8\u09bf\u0996 \u09b6\u09b9\u09b0\u09c7\u0987 in his work with to that ."
+"-246.114 other than task \u0993\u098f\u09b8-\u099f\u09cd\u09af\u09be\u09a8 and also some linux \u09aa\u09cd\u09b0\u09a4\u09bf\u09a8\u09bf\u09a7\u09bf\u09a4\u09cd\u09ac\u0995\u09be\u09b0\u09c0 character there are but these are very is not ."
+"-246.373 other than task \u0993\u098f\u09b8-\u099f\u09cd\u09af\u09be\u09a8 and some more linux \u09aa\u09cd\u09b0\u09a4\u09bf\u09a8\u09bf\u09a7\u09bf\u09a4\u09cd\u09ac\u0995\u09be\u09b0\u09c0 character there are but these are very is not ."
+"-246.508 other than task \u0993\u098f\u09b8-\u099f\u09cd\u09af\u09be\u09a8 and also some linux \u09aa\u09cd\u09b0\u09a4\u09bf\u09a8\u09bf\u09a7\u09bf\u09a4\u09cd\u09ac\u0995\u09be\u09b0\u09c0 character is but these are very is not ."
+"-246.730 task apart from \u0993\u098f\u09b8-\u099f\u09cd\u09af\u09be\u09a8 and also some linux \u09aa\u09cd\u09b0\u09a4\u09bf\u09a8\u09bf\u09a7\u09bf\u09a4\u09cd\u09ac\u0995\u09be\u09b0\u09c0 character there are but these are very is not ."
+"-246.767 other than task \u0993\u098f\u09b8-\u099f\u09cd\u09af\u09be\u09a8 and some more linux \u09aa\u09cd\u09b0\u09a4\u09bf\u09a8\u09bf\u09a7\u09bf\u09a4\u09cd\u09ac\u0995\u09be\u09b0\u09c0 character is but these are very is not ."
+"-246.771 other than task \u0993\u098f\u09b8-\u099f\u09cd\u09af\u09be\u09a8 and also some linux \u09aa\u09cd\u09b0\u09a4\u09bf\u09a8\u09bf\u09a7\u09bf\u09a4\u09cd\u09ac\u0995\u09be\u09b0\u09c0 character there is but these are very is not ."
+"-246.863 apart from task \u0993\u098f\u09b8-\u099f\u09cd\u09af\u09be\u09a8 and also some linux \u09aa\u09cd\u09b0\u09a4\u09bf\u09a8\u09bf\u09a7\u09bf\u09a4\u09cd\u09ac\u0995\u09be\u09b0\u09c0 character there are but these are very is not ."
+"-246.890 task other than \u0993\u098f\u09b8-\u099f\u09cd\u09af\u09be\u09a8 and also some linux \u09aa\u09cd\u09b0\u09a4\u09bf\u09a8\u09bf\u09a7\u09bf\u09a4\u09cd\u09ac\u0995\u09be\u09b0\u09c0 character there are but these are very is not ."
+"-246.912 other than task \u0993\u098f\u09b8-\u099f\u09cd\u09af\u09be\u09a8 and also some linux \u09aa\u09cd\u09b0\u09a4\u09bf\u09a8\u09bf\u09a7\u09bf\u09a4\u09cd\u09ac\u0995\u09be\u09b0\u09c0 character are but these are very is not ."
+"-246.989 task apart from \u0993\u098f\u09b8-\u099f\u09cd\u09af\u09be\u09a8 and some more linux \u09aa\u09cd\u09b0\u09a4\u09bf\u09a8\u09bf\u09a7\u09bf\u09a4\u09cd\u09ac\u0995\u09be\u09b0\u09c0 character there are but these are very is not ."
+"-255.565 it social situation in \u09b8\u09bf\u09a6\u09cd\u09a7\u09be\u09a8\u09cd\u09a4\u0997\u09cd\u09b0\u09b9\u09a8\u0995\u09be\u09b0\u09c0 his oppositions with \u0995\u09cd\u09b0\u09c0\u09a1\u09bc\u09be\u0995\u09cd\u09b7\u09c7\u09a4\u09cd\u09b0\u09c7 decision making the rule of the vagina ."
+"-255.977 this social situation in \u09b8\u09bf\u09a6\u09cd\u09a7\u09be\u09a8\u09cd\u09a4\u0997\u09cd\u09b0\u09b9\u09a8\u0995\u09be\u09b0\u09c0 his oppositions with \u0995\u09cd\u09b0\u09c0\u09a1\u09bc\u09be\u0995\u09cd\u09b7\u09c7\u09a4\u09cd\u09b0\u09c7 decision making the rule of the vagina ."
+"-256.602 it social situation in \u09b8\u09bf\u09a6\u09cd\u09a7\u09be\u09a8\u09cd\u09a4\u0997\u09cd\u09b0\u09b9\u09a8\u0995\u09be\u09b0\u09c0 his oppositions with \u0995\u09cd\u09b0\u09c0\u09a1\u09bc\u09be\u0995\u09cd\u09b7\u09c7\u09a4\u09cd\u09b0\u09c7 decision making the rules of the vagina ."
+"-256.654 it social situation in \u09b8\u09bf\u09a6\u09cd\u09a7\u09be\u09a8\u09cd\u09a4\u0997\u09cd\u09b0\u09b9\u09a8\u0995\u09be\u09b0\u09c0 his oppositions with the \u0995\u09cd\u09b0\u09c0\u09a1\u09bc\u09be\u0995\u09cd\u09b7\u09c7\u09a4\u09cd\u09b0\u09c7 decision making the rule of the vagina ."
+"-256.668 it social situation in \u09b8\u09bf\u09a6\u09cd\u09a7\u09be\u09a8\u09cd\u09a4\u0997\u09cd\u09b0\u09b9\u09a8\u0995\u09be\u09b0\u09c0 his oppositions with \u0995\u09cd\u09b0\u09c0\u09a1\u09bc\u09be\u0995\u09cd\u09b7\u09c7\u09a4\u09cd\u09b0\u09c7 decision making the rule of the fingers ."
+"-256.721 it social situation in \u09b8\u09bf\u09a6\u09cd\u09a7\u09be\u09a8\u09cd\u09a4\u0997\u09cd\u09b0\u09b9\u09a8\u0995\u09be\u09b0\u09c0 the oppositions with \u0995\u09cd\u09b0\u09c0\u09a1\u09bc\u09be\u0995\u09cd\u09b7\u09c7\u09a4\u09cd\u09b0\u09c7 decision making the rule of the vagina ."
+"-256.940 it social situation in his oppositions \u09b8\u09bf\u09a6\u09cd\u09a7\u09be\u09a8\u09cd\u09a4\u0997\u09cd\u09b0\u09b9\u09a8\u0995\u09be\u09b0\u09c0 with \u0995\u09cd\u09b0\u09c0\u09a1\u09bc\u09be\u0995\u09cd\u09b7\u09c7\u09a4\u09cd\u09b0\u09c7 decision making the rule of the vagina ."
+"-256.967 it social situation in view \u09b8\u09bf\u09a6\u09cd\u09a7\u09be\u09a8\u09cd\u09a4\u0997\u09cd\u09b0\u09b9\u09a8\u0995\u09be\u09b0\u09c0 his oppositions with \u0995\u09cd\u09b0\u09c0\u09a1\u09bc\u09be\u0995\u09cd\u09b7\u09c7\u09a4\u09cd\u09b0\u09c7 decision making the rule of the vagina ."
+"-257.007 in social situation in \u09b8\u09bf\u09a6\u09cd\u09a7\u09be\u09a8\u09cd\u09a4\u0997\u09cd\u09b0\u09b9\u09a8\u0995\u09be\u09b0\u09c0 his oppositions with \u0995\u09cd\u09b0\u09c0\u09a1\u09bc\u09be\u0995\u09cd\u09b7\u09c7\u09a4\u09cd\u09b0\u09c7 decision making the rule of the vagina ."
+"-257.014 this social situation in \u09b8\u09bf\u09a6\u09cd\u09a7\u09be\u09a8\u09cd\u09a4\u0997\u09cd\u09b0\u09b9\u09a8\u0995\u09be\u09b0\u09c0 his oppositions with \u0995\u09cd\u09b0\u09c0\u09a1\u09bc\u09be\u0995\u09cd\u09b7\u09c7\u09a4\u09cd\u09b0\u09c7 decision making the rules of the vagina ."
+"-321.077 \u09ac\u09c3\u09b7\u09cd\u099f\u09bf\u09aa\u09be\u09a4\u0983 annual \u09e8\u09eb\u09ea\u09e6 \u09ae\u09bf\u09b2\u09bf meters"
+"-321.092 \u09ac\u09c3\u09b7\u09cd\u099f\u09bf\u09aa\u09be\u09a4\u0983 annual \u09e8\u09eb\u09ea\u09e6 \u09ae\u09bf\u09b2\u09bf meter"
+"-321.673 \u09ac\u09c3\u09b7\u09cd\u099f\u09bf\u09aa\u09be\u09a4\u0983 arrange \u09e8\u09eb\u09ea\u09e6 \u09ae\u09bf\u09b2\u09bf meters"
+"-321.689 \u09ac\u09c3\u09b7\u09cd\u099f\u09bf\u09aa\u09be\u09a4\u0983 arrange \u09e8\u09eb\u09ea\u09e6 \u09ae\u09bf\u09b2\u09bf meter"
+"-322.768 \u09ac\u09c3\u09b7\u09cd\u099f\u09bf\u09aa\u09be\u09a4\u0983 annual \u09e8\u09eb\u09ea\u09e6 \u09ae\u09bf\u09b2\u09bf metres"
+"-323.365 \u09ac\u09c3\u09b7\u09cd\u099f\u09bf\u09aa\u09be\u09a4\u0983 arrange \u09e8\u09eb\u09ea\u09e6 \u09ae\u09bf\u09b2\u09bf metres"
+"-324.195 \u09ac\u09c3\u09b7\u09cd\u099f\u09bf\u09aa\u09be\u09a4\u0983 annual \u09e8\u09eb\u09ea\u09e6 \u09ae\u09bf\u09b2\u09bf above"
+"-324.476 \u09ac\u09c3\u09b7\u09cd\u099f\u09bf\u09aa\u09be\u09a4\u0983 annual \u09e8\u09eb\u09ea\u09e6 \u09ae\u09bf\u09b2\u09bf is"
+"-324.792 \u09ac\u09c3\u09b7\u09cd\u099f\u09bf\u09aa\u09be\u09a4\u0983 arrange \u09e8\u09eb\u09ea\u09e6 \u09ae\u09bf\u09b2\u09bf above"
+"-325.073 \u09ac\u09c3\u09b7\u09cd\u099f\u09bf\u09aa\u09be\u09a4\u0983 arrange \u09e8\u09eb\u09ea\u09e6 \u09ae\u09bf\u09b2\u09bf is"
+"-664.033 on the year 2004 \u09ae\u09cd\u09af\u09be\u09b8\u09be\u099a\u09c1\u09b8\u09c7\u099f\u09b8 \u0985\u0999\u09cd\u0997\u09b0\u09be\u099c\u09cd\u09af\u09c7\u09b0 \u09ac\u09b8\u09cd\u099f\u09a8 in the city in \u09a1\u09c7\u09ae\u09cb\u0995\u09cd\u09b0\u09cd\u09af\u09be\u099f the national he was the main speech -lrb- keynote speech -rrb- on the ."
+"-664.104 on the year 2004 \u09ae\u09cd\u09af\u09be\u09b8\u09be\u099a\u09c1\u09b8\u09c7\u099f\u09b8 \u0985\u0999\u09cd\u0997\u09b0\u09be\u099c\u09cd\u09af\u09c7\u09b0 \u09ac\u09b8\u09cd\u099f\u09a8 in the city in \u09a1\u09c7\u09ae\u09cb\u0995\u09cd\u09b0\u09cd\u09af\u09be\u099f the national he was the main speech -lrb- keynote speech -rrb- to the ."
+"-664.428 on the year 2004 \u09ae\u09cd\u09af\u09be\u09b8\u09be\u099a\u09c1\u09b8\u09c7\u099f\u09b8 \u0985\u0999\u09cd\u0997\u09b0\u09be\u099c\u09cd\u09af\u09c7\u09b0 \u09ac\u09b8\u09cd\u099f\u09a8 city in \u09a1\u09c7\u09ae\u09cb\u0995\u09cd\u09b0\u09cd\u09af\u09be\u099f the national he was the main speech -lrb- keynote speech -rrb- on the ."
+"-664.430 on the year 2004 \u09ae\u09cd\u09af\u09be\u09b8\u09be\u099a\u09c1\u09b8\u09c7\u099f\u09b8 \u0985\u0999\u09cd\u0997\u09b0\u09be\u099c\u09cd\u09af\u09c7\u09b0 \u09ac\u09b8\u09cd\u099f\u09a8 in the city in \u09a1\u09c7\u09ae\u09cb\u0995\u09cd\u09b0\u09cd\u09af\u09be\u099f the national he was the main speech -lrb- keynote speech -rrb- , the ."
+"-664.498 on the year 2004 \u09ae\u09cd\u09af\u09be\u09b8\u09be\u099a\u09c1\u09b8\u09c7\u099f\u09b8 \u0985\u0999\u09cd\u0997\u09b0\u09be\u099c\u09cd\u09af\u09c7\u09b0 \u09ac\u09b8\u09cd\u099f\u09a8 city in \u09a1\u09c7\u09ae\u09cb\u0995\u09cd\u09b0\u09cd\u09af\u09be\u099f the national he was the main speech -lrb- keynote speech -rrb- to the ."
+"-664.501 on the year 2004 \u09ae\u09cd\u09af\u09be\u09b8\u09be\u099a\u09c1\u09b8\u09c7\u099f\u09b8 \u0985\u0999\u09cd\u0997\u09b0\u09be\u099c\u09cd\u09af\u09c7\u09b0 \u09ac\u09b8\u09cd\u099f\u09a8 held in the national \u09a1\u09c7\u09ae\u09cb\u0995\u09cd\u09b0\u09cd\u09af\u09be\u099f party he was the main speech -lrb- keynote speech -rrb- on the ."
+"-664.506 on the year 2004 \u09ae\u09cd\u09af\u09be\u09b8\u09be\u099a\u09c1\u09b8\u09c7\u099f\u09b8 \u0985\u0999\u09cd\u0997\u09b0\u09be\u099c\u09cd\u09af\u09c7\u09b0 \u09ac\u09b8\u09cd\u099f\u09a8 held in the city \u09a1\u09c7\u09ae\u09cb\u0995\u09cd\u09b0\u09cd\u09af\u09be\u099f the national he was the main speech -lrb- keynote speech -rrb- on the ."
+"-664.549 on the year 2004 \u09ae\u09cd\u09af\u09be\u09b8\u09be\u099a\u09c1\u09b8\u09c7\u099f\u09b8 \u0985\u0999\u09cd\u0997\u09b0\u09be\u099c\u09cd\u09af\u09c7\u09b0 \u09ac\u09b8\u09cd\u099f\u09a8 held in the city as the national \u09a1\u09c7\u09ae\u09cb\u0995\u09cd\u09b0\u09cd\u09af\u09be\u099f he was the main speech -lrb- keynote speech -rrb- on the ."
+"-664.571 on the year 2004 \u09ae\u09cd\u09af\u09be\u09b8\u09be\u099a\u09c1\u09b8\u09c7\u099f\u09b8 \u0985\u0999\u09cd\u0997\u09b0\u09be\u099c\u09cd\u09af\u09c7\u09b0 \u09ac\u09b8\u09cd\u099f\u09a8 held in the national \u09a1\u09c7\u09ae\u09cb\u0995\u09cd\u09b0\u09cd\u09af\u09be\u099f party he was the main speech -lrb- keynote speech -rrb- to the ."
+"-664.576 on the year 2004 \u09ae\u09cd\u09af\u09be\u09b8\u09be\u099a\u09c1\u09b8\u09c7\u099f\u09b8 \u0985\u0999\u09cd\u0997\u09b0\u09be\u099c\u09cd\u09af\u09c7\u09b0 \u09ac\u09b8\u09cd\u099f\u09a8 held in the city \u09a1\u09c7\u09ae\u09cb\u0995\u09cd\u09b0\u09cd\u09af\u09be\u099f the national he was the main speech -lrb- keynote speech -rrb- to the ."
+"-186.010 power distribution of population on east pakistan where to west pakistan " one unit theory " is a \u0985\u09ad\u09bf\u09a8\u09ac started with the where the whole of west pakistan was considered as a province ."
+"-186.122 power distribution of population on east pakistan where to west pakistan " one unit theory , " is a \u0985\u09ad\u09bf\u09a8\u09ac started with the where the whole of west pakistan was considered as a province ."
+"-186.163 power distribution of population on east pakistan where to west pakistan " one unit theory " is a \u0985\u09ad\u09bf\u09a8\u09ac started with the where the whole of west pakistan was regarded as a province ."
+"-186.196 power distribution of population on east pakistan where to west pakistan " one unit theory " is a \u0985\u09ad\u09bf\u09a8\u09ac they started the where the whole of west pakistan was considered as a province ."
+"-186.266 power distribution of population on east pakistan where to west pakistan " one unit theory " is a \u0985\u09ad\u09bf\u09a8\u09ac started with the where the whole of west pakistan a province considered as the ."
+"-186.276 power distribution of population on east pakistan where to west pakistan " one unit theory , " is a \u0985\u09ad\u09bf\u09a8\u09ac started with the where the whole of west pakistan was regarded as a province ."
+"-186.308 power distribution of population on east pakistan where to west pakistan " one unit theory , " is a \u0985\u09ad\u09bf\u09a8\u09ac they started the where the whole of west pakistan was considered as a province ."
+"-186.341 power distribution of population on east pakistan where to west pakistan " one unit theory " is a \u0985\u09ad\u09bf\u09a8\u09ac started with the where the west pakistan was considered as a province ."
+"-186.349 power distribution of population on east pakistan where to west pakistan " one unit theory " is a \u0985\u09ad\u09bf\u09a8\u09ac they started the where the whole of west pakistan was regarded as a province ."
+"-186.363 based on power distribution of population east pakistan where to west pakistan " one unit theory " is a \u0985\u09ad\u09bf\u09a8\u09ac started with the where the whole of west pakistan was considered as a province ."
+"-110.415 the \u09aa\u09b0\u09bf\u09ae\u09be\u09aa\u09a8 theory"
+"-110.598 the theory of \u09aa\u09b0\u09bf\u09ae\u09be\u09aa\u09a8"
+"-110.707 mathematical \u09aa\u09b0\u09bf\u09ae\u09be\u09aa\u09a8 theory"
+"-111.160 \u2022 \u09aa\u09b0\u09bf\u09ae\u09be\u09aa\u09a8 theory"
+"-111.550 . \u09aa\u09b0\u09bf\u09ae\u09be\u09aa\u09a8 theory"
+"-112.134 theory of the \u09aa\u09b0\u09bf\u09ae\u09be\u09aa\u09a8"
+"-112.488 mathematical theory of \u09aa\u09b0\u09bf\u09ae\u09be\u09aa\u09a8"
+"-113.624 theory of . \u09aa\u09b0\u09bf\u09ae\u09be\u09aa\u09a8"
+"-113.990 \u2022 theory of \u09aa\u09b0\u09bf\u09ae\u09be\u09aa\u09a8"
+"-114.359 theory of \u2022 \u09aa\u09b0\u09bf\u09ae\u09be\u09aa\u09a8"
+"-4.318 external links of"
+"-5.206 relation with outside of"
+"-5.587 external link of"
+"-5.674 outer link of"
+"-5.747 external communication of"
+"-6.128 outer communication of"
+"-6.575 external connections of"
+"-6.594 external links by"
+"-6.664 external link by"
+"-6.751 outer link by"
+"-48.733 tata communicationer " foreign sanchar nigam limited building it is the telecommunication system is one of the main providers"
+"-48.866 tata communication " foreign sanchar nigam limited building it is the telecommunication system is one of the main providers"
+"-49.068 tata communicationer " foreign sanchar nigam limited . it is the telecommunication system is one of the main providers"
+"-49.201 tata communication " foreign sanchar nigam limited . it is the telecommunication system is one of the main providers"
+"-49.362 tata communicationer " foreign sanchar nigam limited building it is the telecommunication system is a one of the main providers"
+"-49.495 tata communication " foreign sanchar nigam limited building it is the telecommunication system is a one of the main providers"
+"-49.639 tata communicationer " foreign sanchar nigam limited building it in the telecommunication system is one of the main providers"
+"-49.659 tata communicationer " foreign sanchar nigam limited building it in telecommunication system is one of the main providers"
+"-49.697 tata communicationer " foreign sanchar nigam limited . it is the telecommunication system is a one of the main providers"
+"-49.772 tata communication " foreign sanchar nigam limited building it in the telecommunication system is one of the main providers"
+"-241.090 he that year \u09ea\u0987 \u09a8\u09ad\u09c7\u09ae\u09cd\u09ac\u09b0\u09c7\u09b0 national assembly in election won all and was elected as the 44th president of the united states ."
+"-241.262 he that year \u09ea\u0987 \u09a8\u09ad\u09c7\u09ae\u09cd\u09ac\u09b0\u09c7\u09b0 national assembly in the won all and was elected as the 44th president of the united states ."
+"-241.368 in the same year \u09ea\u0987 \u09a8\u09ad\u09c7\u09ae\u09cd\u09ac\u09b0\u09c7\u09b0 national assembly in election won all and was elected as the 44th president of the united states ."
+"-241.540 in the same year \u09ea\u0987 \u09a8\u09ad\u09c7\u09ae\u09cd\u09ac\u09b0\u09c7\u09b0 national assembly in the won all and was elected as the 44th president of the united states ."
+"-241.586 he that year \u09ea\u0987 \u09a8\u09ad\u09c7\u09ae\u09cd\u09ac\u09b0\u09c7\u09b0 assembly in election of national won all and was elected as the 44th president of the united states ."
+"-241.636 he that year \u09ea\u0987 \u09a8\u09ad\u09c7\u09ae\u09cd\u09ac\u09b0\u09c7\u09b0 assembly at the national election won all and was elected as the 44th president of the united states ."
+"-241.820 he that year \u09ea\u0987 \u09a8\u09ad\u09c7\u09ae\u09cd\u09ac\u09b0\u09c7\u09b0 assembly in national election won all and was elected as the 44th president of the united states ."
+"-241.865 in the same year \u09ea\u0987 \u09a8\u09ad\u09c7\u09ae\u09cd\u09ac\u09b0\u09c7\u09b0 assembly in election of national won all and was elected as the 44th president of the united states ."
+"-241.881 he that year \u09ea\u0987 \u09a8\u09ad\u09c7\u09ae\u09cd\u09ac\u09b0\u09c7\u09b0 assembly the national election won all and was elected as the 44th president of the united states ."
+"-241.915 in the same year \u09ea\u0987 \u09a8\u09ad\u09c7\u09ae\u09cd\u09ac\u09b0\u09c7\u09b0 assembly at the national election won all and was elected as the 44th president of the united states ."
+"-332.122 many indian \u09aa\u09cd\u09b0\u099c\u09be\u09a4\u09bf fighting \u099c\u09be\u09a4 \u099f\u09c7\u0995\u09cd\u09b8\u09be from upper stage"
+"-332.706 many indian \u09aa\u09cd\u09b0\u099c\u09be\u09a4\u09bf fighting \u099c\u09be\u09a4 \u099f\u09c7\u0995\u09cd\u09b8\u09be from the upper stage"
+"-333.093 many of the indian \u09aa\u09cd\u09b0\u099c\u09be\u09a4\u09bf fighting \u099c\u09be\u09a4 \u099f\u09c7\u0995\u09cd\u09b8\u09be from upper stage"
+"-333.394 many indian \u09aa\u09cd\u09b0\u099c\u09be\u09a4\u09bf fighting \u099c\u09be\u09a4 from \u099f\u09c7\u0995\u09cd\u09b8\u09be upper stage"
+"-333.411 many indian \u09aa\u09cd\u09b0\u099c\u09be\u09a4\u09bf fighting \u099c\u09be\u09a4 \u099f\u09c7\u0995\u09cd\u09b8\u09be to upper stage"
+"-333.558 many of indian \u09aa\u09cd\u09b0\u099c\u09be\u09a4\u09bf fighting \u099c\u09be\u09a4 \u099f\u09c7\u0995\u09cd\u09b8\u09be from upper stage"
+"-333.676 many of the indian \u09aa\u09cd\u09b0\u099c\u09be\u09a4\u09bf fighting \u099c\u09be\u09a4 \u099f\u09c7\u0995\u09cd\u09b8\u09be from the upper stage"
+"-333.877 many the indian \u09aa\u09cd\u09b0\u099c\u09be\u09a4\u09bf fighting \u099c\u09be\u09a4 \u099f\u09c7\u0995\u09cd\u09b8\u09be from upper stage"
+"-334.019 of the indian \u09aa\u09cd\u09b0\u099c\u09be\u09a4\u09bf fighting \u099c\u09be\u09a4 \u099f\u09c7\u0995\u09cd\u09b8\u09be from upper stage"
+"-334.071 many indian \u09aa\u09cd\u09b0\u099c\u09be\u09a4\u09bf fighting \u099c\u09be\u09a4 \u099f\u09c7\u0995\u09cd\u09b8\u09be upper stage from"
+"-140.670 britain writers written drama novels and stories recently scripts in \u0986\u09a6\u09c3\u09a4 ."
+"-140.804 britain writers written drama stories and novels recently scripts in \u0986\u09a6\u09c3\u09a4 ."
+"-140.876 britain writers written drama novels stories and recently scripts in \u0986\u09a6\u09c3\u09a4 ."
+"-141.370 britain writers written drama novels stories and in the recent scripts in \u0986\u09a6\u09c3\u09a4 ."
+"-141.436 britain writers written drama novel stories and recently scripts in \u0986\u09a6\u09c3\u09a4 ."
+"-141.631 britain writers written drama novels and stories recently script in \u0986\u09a6\u09c3\u09a4 ."
+"-141.695 britain writers written drama novels and stories in the recent scripts in \u0986\u09a6\u09c3\u09a4 ."
+"-141.720 britain writers written drama novels story and recently scripts in \u0986\u09a6\u09c3\u09a4 ."
+"-141.731 britain writers written drama novels and stories recently scripts in the \u0986\u09a6\u09c3\u09a4 ."
+"-141.765 britain writers written drama stories and novels recently script in \u0986\u09a6\u09c3\u09a4 ."
+"-19.086 on may 1919 , it was published in saogat magazine ."
+"-19.117 1919 , in the month of may it was published in saogat magazine ."
+"-19.140 in the month of may , 1919 it was published in saogat magazine ."
+"-19.206 during the month of may , 1919 it was published in saogat magazine ."
+"-19.348 1919 , it was published in saogat magazine in the month of may ."
+"-19.582 in 1919 in the month of may it was published in saogat magazine ."
+"-19.883 1919 on it was published in saogat magazine in the month of may ."
+"-20.040 1919 on the month of may , it was published in saogat magazine ."
+"-20.253 in 1919 it was published in saogat magazine in the month of may ."
+"-20.411 1919 , during the month of may it was published in saogat magazine ."
+"-452.293 2005 , \u0989\u0987\u09ae\u09c7\u09a8\u09b8 tennis association tour \u099f\u09be\u09af\u09bc\u09be\u09b0-\u09a5\u09cd\u09b0\u09bf \u099f\u09c1\u09b0\u09cd\u09a8\u09be\u09ae\u09c7\u09a8\u09cd\u099f \u09b8\u09be\u09a8\u09ab\u09bf\u09b8\u09cd\u099f open netaji indoor stadium was arranged ."
+"-452.393 in year 2005 \u0989\u0987\u09ae\u09c7\u09a8\u09b8 tennis association tour \u099f\u09be\u09af\u09bc\u09be\u09b0-\u09a5\u09cd\u09b0\u09bf \u099f\u09c1\u09b0\u09cd\u09a8\u09be\u09ae\u09c7\u09a8\u09cd\u099f \u09b8\u09be\u09a8\u09ab\u09bf\u09b8\u09cd\u099f open netaji indoor stadium was arranged ."
+"-452.637 2005 , \u0989\u0987\u09ae\u09c7\u09a8\u09b8 tennis association tour \u099f\u09be\u09af\u09bc\u09be\u09b0-\u09a5\u09cd\u09b0\u09bf \u099f\u09c1\u09b0\u09cd\u09a8\u09be\u09ae\u09c7\u09a8\u09cd\u099f \u09b8\u09be\u09a8\u09ab\u09bf\u09b8\u09cd\u099f open netaji indoor stadium is the ."
+"-452.714 2005 , \u0989\u0987\u09ae\u09c7\u09a8\u09b8 tennis association tour \u099f\u09be\u09af\u09bc\u09be\u09b0-\u09a5\u09cd\u09b0\u09bf \u099f\u09c1\u09b0\u09cd\u09a8\u09be\u09ae\u09c7\u09a8\u09cd\u099f \u09b8\u09be\u09a8\u09ab\u09bf\u09b8\u09cd\u099f open netaji indoor stadium was organized ."
+"-452.736 in year 2005 \u0989\u0987\u09ae\u09c7\u09a8\u09b8 tennis association tour \u099f\u09be\u09af\u09bc\u09be\u09b0-\u09a5\u09cd\u09b0\u09bf \u099f\u09c1\u09b0\u09cd\u09a8\u09be\u09ae\u09c7\u09a8\u09cd\u099f \u09b8\u09be\u09a8\u09ab\u09bf\u09b8\u09cd\u099f open netaji indoor stadium is the ."
+"-452.814 in year 2005 \u0989\u0987\u09ae\u09c7\u09a8\u09b8 tennis association tour \u099f\u09be\u09af\u09bc\u09be\u09b0-\u09a5\u09cd\u09b0\u09bf \u099f\u09c1\u09b0\u09cd\u09a8\u09be\u09ae\u09c7\u09a8\u09cd\u099f \u09b8\u09be\u09a8\u09ab\u09bf\u09b8\u09cd\u099f open netaji indoor stadium was organized ."
+"-453.284 in 2005 , \u0989\u0987\u09ae\u09c7\u09a8\u09b8 tennis association tour \u099f\u09be\u09af\u09bc\u09be\u09b0-\u09a5\u09cd\u09b0\u09bf \u099f\u09c1\u09b0\u09cd\u09a8\u09be\u09ae\u09c7\u09a8\u09cd\u099f \u09b8\u09be\u09a8\u09ab\u09bf\u09b8\u09cd\u099f open netaji indoor stadium was arranged ."
+"-453.595 2005 , \u0989\u0987\u09ae\u09c7\u09a8\u09b8 tennis association tour \u099f\u09be\u09af\u09bc\u09be\u09b0-\u09a5\u09cd\u09b0\u09bf \u099f\u09c1\u09b0\u09cd\u09a8\u09be\u09ae\u09c7\u09a8\u09cd\u099f \u09b8\u09be\u09a8\u09ab\u09bf\u09b8\u09cd\u099f open netaji indoor stadium was arranged in ."
+"-453.627 in 2005 , \u0989\u0987\u09ae\u09c7\u09a8\u09b8 tennis association tour \u099f\u09be\u09af\u09bc\u09be\u09b0-\u09a5\u09cd\u09b0\u09bf \u099f\u09c1\u09b0\u09cd\u09a8\u09be\u09ae\u09c7\u09a8\u09cd\u099f \u09b8\u09be\u09a8\u09ab\u09bf\u09b8\u09cd\u099f open netaji indoor stadium is the ."
+"-453.695 in year 2005 \u0989\u0987\u09ae\u09c7\u09a8\u09b8 tennis association tour \u099f\u09be\u09af\u09bc\u09be\u09b0-\u09a5\u09cd\u09b0\u09bf \u099f\u09c1\u09b0\u09cd\u09a8\u09be\u09ae\u09c7\u09a8\u09cd\u099f \u09b8\u09be\u09a8\u09ab\u09bf\u09b8\u09cd\u099f open netaji indoor stadium was arranged in ."
+"-12.088 to prevent this several measures are taken ."
+"-13.100 to avoid this possibility several measures are taken ."
+"-15.767 to prevent this several measures are the ."
+"-16.171 to prevent this several measures are in the ."
+"-16.336 to prevent this several measures are in ."
+"-16.521 to prevent this several measures are used ."
+"-17.568 to prevent this several measures are given ."
+"-17.627 to prevent this several measures are to ."
+"-17.788 to prevent this several measures are was ."
+"-17.853 to prevent this likely event many precautions are taken ."
+"-334.940 on 5th february , \u09e7\u09ef\u09ec\u09ec \u09b2\u09be\u09b9\u09cb\u09b0\u09c7 of \u09a6\u09b2\u09b8\u09ae\u09c2\u09b9\u09c7\u09b0 a national was held in ."
+"-335.202 on 5th february , \u09e7\u09ef\u09ec\u09ec \u09b2\u09be\u09b9\u09cb\u09b0\u09c7 \u09a6\u09b2\u09b8\u09ae\u09c2\u09b9\u09c7\u09b0 against a national was held in ."
+"-335.223 on 5th february , \u09e7\u09ef\u09ec\u09ec \u09b2\u09be\u09b9\u09cb\u09b0\u09c7 against \u09a6\u09b2\u09b8\u09ae\u09c2\u09b9\u09c7\u09b0 a national was held in ."
+"-335.450 on 5th february , \u09e7\u09ef\u09ec\u09ec \u09b2\u09be\u09b9\u09cb\u09b0\u09c7 opposition \u09a6\u09b2\u09b8\u09ae\u09c2\u09b9\u09c7\u09b0 a national was held in ."
+"-335.695 on 5th february , \u09e7\u09ef\u09ec\u09ec against \u09b2\u09be\u09b9\u09cb\u09b0\u09c7 \u09a6\u09b2\u09b8\u09ae\u09c2\u09b9\u09c7\u09b0 a national was held in ."
+"-336.039 \u09e7\u09ef\u09ec\u09ec on 5th february , \u09b2\u09be\u09b9\u09cb\u09b0\u09c7 of \u09a6\u09b2\u09b8\u09ae\u09c2\u09b9\u09c7\u09b0 a national was held in ."
+"-336.226 on february 5 , \u09e7\u09ef\u09ec\u09ec \u09b2\u09be\u09b9\u09cb\u09b0\u09c7 of \u09a6\u09b2\u09b8\u09ae\u09c2\u09b9\u09c7\u09b0 a national was held in ."
+"-336.232 on 5th february , \u09e7\u09ef\u09ec\u09ec \u09a6\u09b2\u09b8\u09ae\u09c2\u09b9\u09c7\u09b0 against \u09b2\u09be\u09b9\u09cb\u09b0\u09c7 a national was held in ."
+"-336.272 on 5th february , \u09e7\u09ef\u09ec\u09ec \u09b2\u09be\u09b9\u09cb\u09b0\u09c7 of a national was held in \u09a6\u09b2\u09b8\u09ae\u09c2\u09b9\u09c7\u09b0 ."
+"-336.289 on 5th february , \u09e7\u09ef\u09ec\u09ec \u09b2\u09be\u09b9\u09cb\u09b0\u09c7 of \u09a6\u09b2\u09b8\u09ae\u09c2\u09b9\u09c7\u09b0 is a national was held in ."
+"-341.281 bangladesh \u0985\u09b0\u09cd\u0997\u09be\u09a8\u09be\u0987\u099c\u09c7\u09b6\u09a8 of the islamic \u0995\u09a8\u09ab\u09be\u09b0\u09c7\u09a8\u09cd\u09b8 and islamic \u09a1\u09c7\u09ad\u09c7\u09b2\u09aa\u09ae\u09c7\u09a3\u09cd\u099f bank secured its place in in the ."
+"-341.957 bangladesh \u0985\u09b0\u09cd\u0997\u09be\u09a8\u09be\u0987\u099c\u09c7\u09b6\u09a8 of the islamic \u0995\u09a8\u09ab\u09be\u09b0\u09c7\u09a8\u09cd\u09b8 and islamic \u09a1\u09c7\u09ad\u09c7\u09b2\u09aa\u09ae\u09c7\u09a3\u09cd\u099f bank secured its place in took the ."
+"-342.020 bangladesh \u0985\u09b0\u09cd\u0997\u09be\u09a8\u09be\u0987\u099c\u09c7\u09b6\u09a8 of the islamic \u0995\u09a8\u09ab\u09be\u09b0\u09c7\u09a8\u09cd\u09b8 and islamic \u09a1\u09c7\u09ad\u09c7\u09b2\u09aa\u09ae\u09c7\u09a3\u09cd\u099f bank took secured its place in the ."
+"-342.820 bangladesh \u0985\u09b0\u09cd\u0997\u09be\u09a8\u09be\u0987\u099c\u09c7\u09b6\u09a8 of the islamic \u0995\u09a8\u09ab\u09be\u09b0\u09c7\u09a8\u09cd\u09b8 and islamic \u09a1\u09c7\u09ad\u09c7\u09b2\u09aa\u09ae\u09c7\u09a3\u09cd\u099f bank had accepted secured its place in the ."
+"-342.985 bangladesh \u0985\u09b0\u09cd\u0997\u09be\u09a8\u09be\u0987\u099c\u09c7\u09b6\u09a8 of the islamic \u0995\u09a8\u09ab\u09be\u09b0\u09c7\u09a8\u09cd\u09b8 and islamic \u09a1\u09c7\u09ad\u09c7\u09b2\u09aa\u09ae\u09c7\u09a3\u09cd\u099f took bank secured its place in the ."
+"-343.243 bangladesh \u0985\u09b0\u09cd\u0997\u09be\u09a8\u09be\u0987\u099c\u09c7\u09b6\u09a8 of the islamic \u0995\u09a8\u09ab\u09be\u09b0\u09c7\u09a8\u09cd\u09b8 and islamic \u09a1\u09c7\u09ad\u09c7\u09b2\u09aa\u09ae\u09c7\u09a3\u09cd\u099f bank secured its place in adopted the ."
+"-343.351 bangladesh \u0985\u09b0\u09cd\u0997\u09be\u09a8\u09be\u0987\u099c\u09c7\u09b6\u09a8 of the islamic \u0995\u09a8\u09ab\u09be\u09b0\u09c7\u09a8\u09cd\u09b8 and islamic \u09a1\u09c7\u09ad\u09c7\u09b2\u09aa\u09ae\u09c7\u09a3\u09cd\u099f bank secured its place in on the ."
+"-343.428 bangladesh \u0985\u09b0\u09cd\u0997\u09be\u09a8\u09be\u0987\u099c\u09c7\u09b6\u09a8 of the islamic \u0995\u09a8\u09ab\u09be\u09b0\u09c7\u09a8\u09cd\u09b8 and islamic \u09a1\u09c7\u09ad\u09c7\u09b2\u09aa\u09ae\u09c7\u09a3\u09cd\u099f bank adopted the secured its place in the ."
+"-343.571 bangladesh \u0985\u09b0\u09cd\u0997\u09be\u09a8\u09be\u0987\u099c\u09c7\u09b6\u09a8 of the islamic \u0995\u09a8\u09ab\u09be\u09b0\u09c7\u09a8\u09cd\u09b8 and islamic \u09a1\u09c7\u09ad\u09c7\u09b2\u09aa\u09ae\u09c7\u09a3\u09cd\u099f bank secured its place in in the goods ."
+"-343.740 bangladesh \u0985\u09b0\u09cd\u0997\u09be\u09a8\u09be\u0987\u099c\u09c7\u09b6\u09a8 of the islamic \u0995\u09a8\u09ab\u09be\u09b0\u09c7\u09a8\u09cd\u09b8 and islamic \u09a1\u09c7\u09ad\u09c7\u09b2\u09aa\u09ae\u09c7\u09a3\u09cd\u099f bank secured its place in the in ."
+"1.726 subject category : encyclopedia"
+"0.624 subject class : encyclopedia"
+"0.479 subject matter : encyclopedia"
+"0.305 subject : encyclopedia"
+"-0.153 category : encyclopedia"
+"-0.593 special class : encyclopedia"
+"-1.331 subject-class : encyclopedia"
+"-1.831 contents : encyclopedia"
+"-1.855 topics : encyclopedia"
+"-2.030 special category : encyclopedia"
+"-132.240 russia france and israel is the main \u0985\u09b8\u09cd\u09a4\u09cd\u09b0\u09b8\u09b0\u09ac\u09b0\u09be\u09b9\u0995\u09be\u09b0\u09c0 country and defense sub country ."
+"-132.586 russia france and israel the main \u0985\u09b8\u09cd\u09a4\u09cd\u09b0\u09b8\u09b0\u09ac\u09b0\u09be\u09b9\u0995\u09be\u09b0\u09c0 state of india and defense sub country ."
+"-132.627 russia france and israel is the main \u0985\u09b8\u09cd\u09a4\u09cd\u09b0\u09b8\u09b0\u09ac\u09b0\u09be\u09b9\u0995\u09be\u09b0\u09c0 state and defense sub country ."
+"-132.977 russia france and israel india 's main \u0985\u09b8\u09cd\u09a4\u09cd\u09b0\u09b8\u09b0\u09ac\u09b0\u09be\u09b9\u0995\u09be\u09b0\u09c0 country and defense sub country ."
+"-133.044 russia france and israel the main \u0985\u09b8\u09cd\u09a4\u09cd\u09b0\u09b8\u09b0\u09ac\u09b0\u09be\u09b9\u0995\u09be\u09b0\u09c0 country and defense sub country ."
+"-133.069 russia france and israel is the main \u0985\u09b8\u09cd\u09a4\u09cd\u09b0\u09b8\u09b0\u09ac\u09b0\u09be\u09b9\u0995\u09be\u09b0\u09c0 country and defence sub country ."
+"-133.110 russia france and israel is the main \u0985\u09b8\u09cd\u09a4\u09cd\u09b0\u09b8\u09b0\u09ac\u09b0\u09be\u09b9\u0995\u09be\u09b0\u09c0 countries and defense sub country ."
+"-133.257 russia france and israel the main \u0985\u09b8\u09cd\u09a4\u09cd\u09b0\u09b8\u09b0\u09ac\u09b0\u09be\u09b9\u0995\u09be\u09b0\u09c0 country of india and defense sub country ."
+"-133.364 russia france and israel india 's main \u0985\u09b8\u09cd\u09a4\u09cd\u09b0\u09b8\u09b0\u09ac\u09b0\u09be\u09b9\u0995\u09be\u09b0\u09c0 state and defense sub country ."
+"-133.416 russia france and israel the main \u0985\u09b8\u09cd\u09a4\u09cd\u09b0\u09b8\u09b0\u09ac\u09b0\u09be\u09b9\u0995\u09be\u09b0\u09c0 state of india and defence sub country ."
+"-143.878 this is our known as an imaginary unit of mathematics formed with the help of which are set of real numbers from \u09b8\u09c7\u099f\u09c7 par with the complex number ."
+"-144.029 this is our known as an imaginary unit which with the help of mathematics formed the set of real numbers from \u09b8\u09c7\u099f\u09c7 par with the complex number ."
+"-144.250 this is our known as an imaginary unit of mathematics formed with the help of which the set of real numbers from \u09b8\u09c7\u099f\u09c7 par with the complex number ."
+"-144.501 this is our known as imaginary unit of mathematics formed with the help of which are set of real numbers from \u09b8\u09c7\u099f\u09c7 par with the complex number ."
+"-144.534 this is our known as an imaginary unit of mathematics formed with the help of which the real number set from \u09b8\u09c7\u099f\u09c7 par with the complex number ."
+"-144.652 this is our known as imaginary unit which with the help of mathematics formed the set of real numbers from \u09b8\u09c7\u099f\u09c7 par with the complex number ."
+"-144.714 this is our known as an imaginary unit of mathematics formed with the help of which are set of real number from \u09b8\u09c7\u099f\u09c7 par with the complex number ."
+"-144.865 this is our known as an imaginary unit which with the help of mathematics formed the set of real number from \u09b8\u09c7\u099f\u09c7 par with the complex number ."
+"-144.873 this is our known as imaginary unit of mathematics formed with the help of which the set of real numbers from \u09b8\u09c7\u099f\u09c7 par with the complex number ."
+"-144.943 this is our known as an imaginary unit of mathematics formed with the help of which are set of real numbers to \u09b8\u09c7\u099f\u09c7 par with the complex number ."
+"-13.673 <address>"
+"-120.820 < \u09a0\u09bf\u0995\u09be\u09a8\u09be >"
+"-219.955 < \u09a0\u09bf\u0995\u09be\u09a8\u09be , gt ,"
+"-220.429 , lt , \u09a0\u09bf\u0995\u09be\u09a8\u09be >"
+"-220.805 < \u09a0\u09bf\u0995\u09be\u09a8\u09be , gt ;"
+"-221.451 , lt ; \u09a0\u09bf\u0995\u09be\u09a8\u09be >"
+"-221.528 the lt \u09a0\u09bf\u0995\u09be\u09a8\u09be >"
+"-221.814 < \u09a0\u09bf\u0995\u09be\u09a8\u09be , gt and"
+"-221.893 < \u09a0\u09bf\u0995\u09be\u09a8\u09be , gt ."
+"-221.973 , lt and \u09a0\u09bf\u0995\u09be\u09a8\u09be >"
+"1.148 september"
+"-3.006 september ."
+"-103.288 \u09b8\u09c7\u09aa\u09cd\u099f\u09c7\u09ae\u09cd\u09ac\u09b0"
+"-133.987 from this theory though big \u09ac\u09bf\u09b8\u09cd\u09ab\u09cb\u09b0\u09a3\u09cb\u09b0 against can not be but it can be support ."
+"-134.257 from this theory though big \u09ac\u09bf\u09b8\u09cd\u09ab\u09cb\u09b0\u09a3\u09cb\u09b0 against can not be rather it can be support ."
+"-134.405 from this theory though big \u09ac\u09bf\u09b8\u09cd\u09ab\u09cb\u09b0\u09a3\u09cb\u09b0 against can not be but it can be supported ."
+"-134.676 from this theory though big \u09ac\u09bf\u09b8\u09cd\u09ab\u09cb\u09b0\u09a3\u09cb\u09b0 against can not be rather it can be supported ."
+"-134.713 from this theory though the big \u09ac\u09bf\u09b8\u09cd\u09ab\u09cb\u09b0\u09a3\u09cb\u09b0 against can not be but it can be support ."
+"-134.731 this theory from though big \u09ac\u09bf\u09b8\u09cd\u09ab\u09cb\u09b0\u09a3\u09cb\u09b0 against can not be but it can be support ."
+"-134.984 from this theory though the big \u09ac\u09bf\u09b8\u09cd\u09ab\u09cb\u09b0\u09a3\u09cb\u09b0 against can not be rather it can be support ."
+"-134.994 however , from this theory the \u09ac\u09bf\u09b8\u09cd\u09ab\u09cb\u09b0\u09a3\u09cb\u09b0 against can not be but it can be support ."
+"-135.001 this theory from though big \u09ac\u09bf\u09b8\u09cd\u09ab\u09cb\u09b0\u09a3\u09cb\u09b0 against can not be rather it can be support ."
+"-135.101 from this theory , in the \u09ac\u09bf\u09b8\u09cd\u09ab\u09cb\u09b0\u09a3\u09cb\u09b0 against can not be but it can be support ."
+"-252.851 agricultural in production france is the most important country ; it is mainly \u0996\u09be\u09a6\u09cd\u09af\u09b6\u09b8\u09cd\u09af wine cheese and other \u0995\u09c3\u09b7\u09bf\u09a6\u09cd\u09b0\u09ac\u09cd\u09af europe and export the in the whole world ."
+"-253.026 agricultural in production france is the most important country ; it is mainly \u0996\u09be\u09a6\u09cd\u09af\u09b6\u09b8\u09cd\u09af wine cheese and other \u0995\u09c3\u09b7\u09bf\u09a6\u09cd\u09b0\u09ac\u09cd\u09af europe and export of the in the whole world ."
+"-253.145 agricultural in production france is the most important country , it is mainly \u0996\u09be\u09a6\u09cd\u09af\u09b6\u09b8\u09cd\u09af wine cheese and other \u0995\u09c3\u09b7\u09bf\u09a6\u09cd\u09b0\u09ac\u09cd\u09af europe and export the in the whole world ."
+"-253.194 agricultural in production france is the most important country ; it is mainly \u0996\u09be\u09a6\u09cd\u09af\u09b6\u09b8\u09cd\u09af wine cheese and other \u0995\u09c3\u09b7\u09bf\u09a6\u09cd\u09b0\u09ac\u09cd\u09af europe and export in the whole world ."
+"-253.320 agricultural in production france is the most important country , it is mainly \u0996\u09be\u09a6\u09cd\u09af\u09b6\u09b8\u09cd\u09af wine cheese and other \u0995\u09c3\u09b7\u09bf\u09a6\u09cd\u09b0\u09ac\u09cd\u09af europe and export of the in the whole world ."
+"-253.344 agricultural in production france is the most important country ; it is mainly \u0996\u09be\u09a6\u09cd\u09af\u09b6\u09b8\u09cd\u09af wine cheese and other \u0995\u09c3\u09b7\u09bf\u09a6\u09cd\u09b0\u09ac\u09cd\u09af europe and in the whole world export the ."
+"-253.374 agricultural in production france is the most important country of europe , it is mainly \u0996\u09be\u09a6\u09cd\u09af\u09b6\u09b8\u09cd\u09af wine cheese and other \u0995\u09c3\u09b7\u09bf\u09a6\u09cd\u09b0\u09ac\u09cd\u09af europe and export the in the whole world ."
+"-253.376 agricultural in production france is the most important country ; it is mainly \u0996\u09be\u09a6\u09cd\u09af\u09b6\u09b8\u09cd\u09af wine cheese and other \u0995\u09c3\u09b7\u09bf\u09a6\u09cd\u09b0\u09ac\u09cd\u09af europe and export by the in the whole world ."
+"-253.489 agricultural in production france is the most important country , it is mainly \u0996\u09be\u09a6\u09cd\u09af\u09b6\u09b8\u09cd\u09af wine cheese and other \u0995\u09c3\u09b7\u09bf\u09a6\u09cd\u09b0\u09ac\u09cd\u09af europe and export in the whole world ."
+"-253.549 agricultural in production france is the most important country of europe , it is mainly \u0996\u09be\u09a6\u09cd\u09af\u09b6\u09b8\u09cd\u09af wine cheese and other \u0995\u09c3\u09b7\u09bf\u09a6\u09cd\u09b0\u09ac\u09cd\u09af europe and export of the in the whole world ."
+"-115.913 their in mathematics \u09aa\u09be\u099f\u09c0\u0997\u09a3\u09bf\u09a4\u09c7\u09b0 person was ."
+"-117.241 their mathematics explains \u09aa\u09be\u099f\u09c0\u0997\u09a3\u09bf\u09a4\u09c7\u09b0 person was ."
+"-117.692 their in mathematics \u09aa\u09be\u099f\u09c0\u0997\u09a3\u09bf\u09a4\u09c7\u09b0 were was ."
+"-117.711 in mathematics their \u09aa\u09be\u099f\u09c0\u0997\u09a3\u09bf\u09a4\u09c7\u09b0 person was ."
+"-117.775 they in mathematics \u09aa\u09be\u099f\u09c0\u0997\u09a3\u09bf\u09a4\u09c7\u09b0 person was ."
+"-117.823 in mathematics of their \u09aa\u09be\u099f\u09c0\u0997\u09a3\u09bf\u09a4\u09c7\u09b0 person was ."
+"-117.940 their in mathematics \u09aa\u09be\u099f\u09c0\u0997\u09a3\u09bf\u09a4\u09c7\u09b0 are was ."
+"-118.017 their in mathematics was \u09aa\u09be\u099f\u09c0\u0997\u09a3\u09bf\u09a4\u09c7\u09b0 were ."
+"-118.034 their in mathematics \u09aa\u09be\u099f\u09c0\u0997\u09a3\u09bf\u09a4\u09c7\u09b0 priority was ."
+"-118.221 their in mathematics \u09aa\u09be\u099f\u09c0\u0997\u09a3\u09bf\u09a4\u09c7\u09b0 in was ."
+"-548.678 deshgulo are : france call , make noise china belgium switzerland germany denmark sweden austria chekoslovakia argentina italy norway \u09b9\u09be\u0999\u09cd\u0997\u09c7\u09b0\u09c0 yugoslavia bulgaria romania \u0997\u09cd\u09b0\u09c0\u09b8 egypt singapore indonesia \u09a5\u09be\u0987\u09b2\u09cd\u09af\u09be\u09a8\u09cd\u09a1 japan burma \u09b9\u09b2\u09cd\u09af\u09be\u09a8\u09cd\u09a1 soviet russia iran iraq and sri lanka ."
+"-549.105 deshgulo are : france call , make noise china belgium switzerland germany denmark sweden austria chekoslovakia argentina italy norway \u09b9\u09be\u0999\u09cd\u0997\u09c7\u09b0\u09c0 yugoslavia bulgaria rumania \u0997\u09cd\u09b0\u09c0\u09b8 egypt singapore indonesia \u09a5\u09be\u0987\u09b2\u09cd\u09af\u09be\u09a8\u09cd\u09a1 japan burma \u09b9\u09b2\u09cd\u09af\u09be\u09a8\u09cd\u09a1 soviet russia iran iraq and sri lanka ."
+"-549.276 deshgulo are : france call , make noise china belgium switzerland germany denmark sweden austria chekoslovakia argentina italy norway \u09b9\u09be\u0999\u09cd\u0997\u09c7\u09b0\u09c0 yugoslavia bulgaria romania \u0997\u09cd\u09b0\u09c0\u09b8 egypt singapore indonesia \u09a5\u09be\u0987\u09b2\u09cd\u09af\u09be\u09a8\u09cd\u09a1 japan burma \u09b9\u09b2\u09cd\u09af\u09be\u09a8\u09cd\u09a1 the soviet russia iran iraq and sri lanka ."
+"-549.440 deshgulo are : france call , make noise china belgium switzerland germany denmark sweden austria chekoslovakia argentina italy norway \u09b9\u09be\u0999\u09cd\u0997\u09c7\u09b0\u09c0 yugoslavia bulgaria romania \u0997\u09cd\u09b0\u09c0\u09b8 egypt singapore indonesia \u09a5\u09be\u0987\u09b2\u09cd\u09af\u09be\u09a8\u09cd\u09a1 japan burma \u09b9\u09b2\u09cd\u09af\u09be\u09a8\u09cd\u09a1 soviet russia iran iraq and after visiting srilanka ."
+"-549.702 deshgulo are : france call , make noise china belgium switzerland germany denmark sweden austria chekoslovakia argentina italy norway \u09b9\u09be\u0999\u09cd\u0997\u09c7\u09b0\u09c0 yugoslavia bulgaria rumania \u0997\u09cd\u09b0\u09c0\u09b8 egypt singapore indonesia \u09a5\u09be\u0987\u09b2\u09cd\u09af\u09be\u09a8\u09cd\u09a1 japan burma \u09b9\u09b2\u09cd\u09af\u09be\u09a8\u09cd\u09a1 the soviet russia iran iraq and sri lanka ."
+"-549.867 deshgulo are : france call , make noise china belgium switzerland germany denmark sweden austria chekoslovakia argentina italy norway \u09b9\u09be\u0999\u09cd\u0997\u09c7\u09b0\u09c0 yugoslavia bulgaria rumania \u0997\u09cd\u09b0\u09c0\u09b8 egypt singapore indonesia \u09a5\u09be\u0987\u09b2\u09cd\u09af\u09be\u09a8\u09cd\u09a1 japan burma \u09b9\u09b2\u09cd\u09af\u09be\u09a8\u09cd\u09a1 soviet russia iran iraq and after visiting srilanka ."
+"-550.038 deshgulo are : france call , make noise china belgium switzerland germany denmark sweden austria chekoslovakia argentina italy norway \u09b9\u09be\u0999\u09cd\u0997\u09c7\u09b0\u09c0 yugoslavia bulgaria romania \u0997\u09cd\u09b0\u09c0\u09b8 egypt singapore indonesia \u09a5\u09be\u0987\u09b2\u09cd\u09af\u09be\u09a8\u09cd\u09a1 japan burma \u09b9\u09b2\u09cd\u09af\u09be\u09a8\u09cd\u09a1 the soviet russia iran iraq and after visiting srilanka ."
+"-550.040 deshgulo france are : call , make noise china belgium switzerland germany denmark sweden austria chekoslovakia argentina italy norway \u09b9\u09be\u0999\u09cd\u0997\u09c7\u09b0\u09c0 yugoslavia bulgaria romania \u0997\u09cd\u09b0\u09c0\u09b8 egypt singapore indonesia \u09a5\u09be\u0987\u09b2\u09cd\u09af\u09be\u09a8\u09cd\u09a1 japan burma \u09b9\u09b2\u09cd\u09af\u09be\u09a8\u09cd\u09a1 soviet russia iran iraq and sri lanka ."
+"-550.464 deshgulo are : france call , make noise china belgium switzerland germany denmark sweden austria chekoslovakia argentina italy norway \u09b9\u09be\u0999\u09cd\u0997\u09c7\u09b0\u09c0 yugoslavia bulgaria rumania \u0997\u09cd\u09b0\u09c0\u09b8 egypt singapore indonesia \u09a5\u09be\u0987\u09b2\u09cd\u09af\u09be\u09a8\u09cd\u09a1 japan burma \u09b9\u09b2\u09cd\u09af\u09be\u09a8\u09cd\u09a1 the soviet russia iran iraq and after visiting srilanka ."
+"-550.466 deshgulo france are : call , make noise china belgium switzerland germany denmark sweden austria chekoslovakia argentina italy norway \u09b9\u09be\u0999\u09cd\u0997\u09c7\u09b0\u09c0 yugoslavia bulgaria rumania \u0997\u09cd\u09b0\u09c0\u09b8 egypt singapore indonesia \u09a5\u09be\u0987\u09b2\u09cd\u09af\u09be\u09a8\u09cd\u09a1 japan burma \u09b9\u09b2\u09cd\u09af\u09be\u09a8\u09cd\u09a1 soviet russia iran iraq and sri lanka ."
+"-117.393 this \u09ac\u09cd\u09af\u09be\u09b8\u09bf\u09b2\u09bf\u0995\u09be\u09b0 places now bank of england is situated ."
+"-117.416 this \u09ac\u09cd\u09af\u09be\u09b8\u09bf\u09b2\u09bf\u0995\u09be\u09b0 places are located at the bank of england ."
+"-117.876 this \u09ac\u09cd\u09af\u09be\u09b8\u09bf\u09b2\u09bf\u0995\u09be\u09b0 places is located at the bank of england ."
+"-117.961 in this \u09ac\u09cd\u09af\u09be\u09b8\u09bf\u09b2\u09bf\u0995\u09be\u09b0 places now bank of england is situated ."
+"-117.978 this \u09ac\u09cd\u09af\u09be\u09b8\u09bf\u09b2\u09bf\u0995\u09be\u09b0 places are located in the bank of england ."
+"-117.984 in this \u09ac\u09cd\u09af\u09be\u09b8\u09bf\u09b2\u09bf\u0995\u09be\u09b0 places are located at the bank of england ."
+"-118.034 this \u09ac\u09cd\u09af\u09be\u09b8\u09bf\u09b2\u09bf\u0995\u09be\u09b0 parts is located at the bank of england ."
+"-118.042 this \u09ac\u09cd\u09af\u09be\u09b8\u09bf\u09b2\u09bf\u0995\u09be\u09b0 parts are located at the bank of england ."
+"-118.233 this \u09ac\u09cd\u09af\u09be\u09b8\u09bf\u09b2\u09bf\u0995\u09be\u09b0 parts now bank of england is situated ."
+"-118.272 this \u09ac\u09cd\u09af\u09be\u09b8\u09bf\u09b2\u09bf\u0995\u09be\u09b0 places are situated in the bank of england ."
+"-445.620 on the north of the country is the \u09ac\u09bf\u09b8\u09cd\u0995\u09be\u0987 sub-sea on the south \u099c\u09bf\u09ac\u09cd\u09b0\u09be\u09b2\u09cd\u099f\u09be\u09b0 strait \u09aa\u09cd\u09b0\u09a3\u09be\u09b2\u09c0\u09b0 in the south \u09ae\u09b0\u0995\u09cd\u0995\u09cb on the west and the atlantic ocean ."
+"-445.962 on the north of the country is the \u09ac\u09bf\u09b8\u09cd\u0995\u09be\u0987 sub-sea on the south \u099c\u09bf\u09ac\u09cd\u09b0\u09be\u09b2\u09cd\u099f\u09be\u09b0 strait \u09aa\u09cd\u09b0\u09a3\u09be\u09b2\u09c0\u09b0 in the south \u09ae\u09b0\u0995\u09cd\u0995\u09cb to the west and the atlantic ocean ."
+"-446.099 on the north of the country is the \u09ac\u09bf\u09b8\u09cd\u0995\u09be\u0987 sub-sea to the south \u099c\u09bf\u09ac\u09cd\u09b0\u09be\u09b2\u09cd\u099f\u09be\u09b0 strait \u09aa\u09cd\u09b0\u09a3\u09be\u09b2\u09c0\u09b0 in the south \u09ae\u09b0\u0995\u09cd\u0995\u09cb on the west and the atlantic ocean ."
+"-446.336 on the north of the country is the \u09ac\u09bf\u09b8\u09cd\u0995\u09be\u0987 sub-sea on the south \u099c\u09bf\u09ac\u09cd\u09b0\u09be\u09b2\u09cd\u099f\u09be\u09b0 strait \u09aa\u09cd\u09b0\u09a3\u09be\u09b2\u09c0\u09b0 in the south of the \u09ae\u09b0\u0995\u09cd\u0995\u09cb on the west and the atlantic ocean ."
+"-446.387 on the north of the country is the \u09ac\u09bf\u09b8\u09cd\u0995\u09be\u0987 sub-sea on the south \u099c\u09bf\u09ac\u09cd\u09b0\u09be\u09b2\u09cd\u099f\u09be\u09b0 strait \u09aa\u09cd\u09b0\u09a3\u09be\u09b2\u09c0\u09b0 in \u09ae\u09b0\u0995\u09cd\u0995\u09cb on the west and the atlantic ocean ."
+"-446.434 in the north of this country \u09ac\u09bf\u09b8\u09cd\u0995\u09be\u0987 sub-sea on the south \u099c\u09bf\u09ac\u09cd\u09b0\u09be\u09b2\u09cd\u099f\u09be\u09b0 strait \u09aa\u09cd\u09b0\u09a3\u09be\u09b2\u09c0\u09b0 in the south \u09ae\u09b0\u0995\u09cd\u0995\u09cb on the west and the atlantic ocean ."
+"-446.441 on the north of the country is the \u09ac\u09bf\u09b8\u09cd\u0995\u09be\u0987 sub-sea to the south \u099c\u09bf\u09ac\u09cd\u09b0\u09be\u09b2\u09cd\u099f\u09be\u09b0 strait \u09aa\u09cd\u09b0\u09a3\u09be\u09b2\u09c0\u09b0 in the south \u09ae\u09b0\u0995\u09cd\u0995\u09cb to the west and the atlantic ocean ."
+"-446.444 on the north of the country is the \u09ac\u09bf\u09b8\u09cd\u0995\u09be\u0987 sub-sea on the south \u099c\u09bf\u09ac\u09cd\u09b0\u09be\u09b2\u09cd\u099f\u09be\u09b0 strait \u09aa\u09cd\u09b0\u09a3\u09be\u09b2\u09c0\u09b0 the \u09ae\u09b0\u0995\u09cd\u0995\u09cb on the west and the atlantic ocean ."
+"-446.552 on the north of the country is the \u09ac\u09bf\u09b8\u09cd\u0995\u09be\u0987 sub-sea on the south \u099c\u09bf\u09ac\u09cd\u09b0\u09be\u09b2\u09cd\u099f\u09be\u09b0 strait \u09aa\u09cd\u09b0\u09a3\u09be\u09b2\u09c0\u09b0 south \u09ae\u09b0\u0995\u09cd\u0995\u09cb on the west and the atlantic ocean ."
+"-446.624 on the north of the country is the \u09ac\u09bf\u09b8\u09cd\u0995\u09be\u0987 sub-sea on the south \u099c\u09bf\u09ac\u09cd\u09b0\u09be\u09b2\u09cd\u099f\u09be\u09b0 strait \u09aa\u09cd\u09b0\u09a3\u09be\u09b2\u09c0\u09b0 in the south \u09ae\u09b0\u0995\u09cd\u0995\u09cb towards the west and the atlantic ocean ."
+"-248.040 apart from this situation it can be understood that a \u09ae\u09c1\u09b9\u09c2\u09b0\u09cd\u09a4\u09c7 within \u0985\u0995\u09cd\u09b7\u09ae\u09a4\u09be after taking the decision of the united nations ."
+"-248.164 other than this situation it can be understood that a \u09ae\u09c1\u09b9\u09c2\u09b0\u09cd\u09a4\u09c7 within \u0985\u0995\u09cd\u09b7\u09ae\u09a4\u09be after taking the decision of the united nations ."
+"-248.648 apart from this situation it can be understood that a \u09ae\u09c1\u09b9\u09c2\u09b0\u09cd\u09a4\u09c7 fast within \u0985\u0995\u09cd\u09b7\u09ae\u09a4\u09be after taking decision of the united nations ."
+"-248.772 other than this situation it can be understood that a \u09ae\u09c1\u09b9\u09c2\u09b0\u09cd\u09a4\u09c7 fast within \u0985\u0995\u09cd\u09b7\u09ae\u09a4\u09be after taking decision of the united nations ."
+"-248.779 apart from this situation it can be understood that a \u09ae\u09c1\u09b9\u09c2\u09b0\u09cd\u09a4\u09c7 the within \u0985\u0995\u09cd\u09b7\u09ae\u09a4\u09be after taking decision of the united nations ."
+"-248.791 apart from this situation it can be understood that a \u09ae\u09c1\u09b9\u09c2\u09b0\u09cd\u09a4\u09c7 of the united nations the decision within \u0985\u0995\u09cd\u09b7\u09ae\u09a4\u09be after taking ."
+"-248.825 apart from this situation it can be understood that a \u09ae\u09c1\u09b9\u09c2\u09b0\u09cd\u09a4\u09c7 the decision of the united nations within \u0985\u0995\u09cd\u09b7\u09ae\u09a4\u09be after taking ."
+"-248.903 other than this situation it can be understood that a \u09ae\u09c1\u09b9\u09c2\u09b0\u09cd\u09a4\u09c7 the within \u0985\u0995\u09cd\u09b7\u09ae\u09a4\u09be after taking decision of the united nations ."
+"-248.906 apart from this situation it can be understood that a \u09ae\u09c1\u09b9\u09c2\u09b0\u09cd\u09a4\u09c7 quickly within \u0985\u0995\u09cd\u09b7\u09ae\u09a4\u09be after taking decision of the united nations ."
+"-248.916 other than this situation it can be understood that a \u09ae\u09c1\u09b9\u09c2\u09b0\u09cd\u09a4\u09c7 of the united nations the decision within \u0985\u0995\u09cd\u09b7\u09ae\u09a4\u09be after taking ."
+"-125.132 \u0995\u09be\u09b0\u09cd\u09b2 there is work through it is controlled by ."
+"-125.409 \u0995\u09be\u09b0\u09cd\u09b2 there is work through it by the ."
+"-125.984 \u0995\u09be\u09b0\u09cd\u09b2 there is work through this are conducted by the ."
+"-125.986 \u0995\u09be\u09b0\u09cd\u09b2 there is works that it is controlled by ."
+"-126.112 \u0995\u09be\u09b0\u09cd\u09b2 there is work that it is controlled by ."
+"-126.220 \u0995\u09be\u09b0\u09cd\u09b2 there is work through this is controlled by ."
+"-126.432 \u0995\u09be\u09b0\u09cd\u09b2 there is work through it are conducted by the ."
+"-126.447 \u0995\u09be\u09b0\u09cd\u09b2 there is only through it is controlled by ."
+"-126.480 \u0995\u09be\u09b0\u09cd\u09b2 there is work through this by the ."
+"-126.723 \u0995\u09be\u09b0\u09cd\u09b2 there is only through it by the ."
+"-157.897 the subject matters sometimes puran -lrb- from sometimes in the middle age love story sometimes again from today 's social and political \u0998\u099f\u09a8\u09be\u09ac\u09b2\u09bf taken from ."
+"-158.142 the subject matters sometimes puran -lrb- from sometimes in the middle age love story sometimes again from today 's social and political \u0998\u099f\u09a8\u09be\u09ac\u09b2\u09bf from accepted ."
+"-158.165 this subject matters sometimes puran -lrb- from sometimes in the middle age love story sometimes again from today 's social and political \u0998\u099f\u09a8\u09be\u09ac\u09b2\u09bf taken from ."
+"-158.179 the subject matters sometimes puran -lrb- from sometimes in the middle age love story from sometimes again today 's social and political \u0998\u099f\u09a8\u09be\u09ac\u09b2\u09bf taken from ."
+"-158.362 the subject matters sometimes from puran -lrb- sometimes in the middle age love story sometimes again from today 's social and political \u0998\u099f\u09a8\u09be\u09ac\u09b2\u09bf taken from ."
+"-158.411 this subject matters sometimes puran -lrb- from sometimes in the middle age love story sometimes again from today 's social and political \u0998\u099f\u09a8\u09be\u09ac\u09b2\u09bf from accepted ."
+"-158.424 the subject matters sometimes puran -lrb- from sometimes in the middle age love story from sometimes again today 's social and political \u0998\u099f\u09a8\u09be\u09ac\u09b2\u09bf from accepted ."
+"-158.448 this subject matters sometimes puran -lrb- from sometimes in the middle age love story from sometimes again today 's social and political \u0998\u099f\u09a8\u09be\u09ac\u09b2\u09bf taken from ."
+"-158.455 the subject sometimes puran -lrb- from sometimes in the middle age love story sometimes again from today 's social and political \u0998\u099f\u09a8\u09be\u09ac\u09b2\u09bf taken from ."
+"-158.578 the subject matters sometimes puran -lrb- from sometime in the middle age love story sometimes again from today 's social and political \u0998\u099f\u09a8\u09be\u09ac\u09b2\u09bf taken from ."
+"-344.330 three measure based on the age of the universe is found that is almost \u09e7\u09e9.\u09ed � \u09e6.\u09e8 billion years ."
+"-344.654 three measure base on the age of the universe is found that is almost \u09e7\u09e9.\u09ed � \u09e6.\u09e8 billion years ."
+"-344.804 measure three based on the age of the universe is found that is almost \u09e7\u09e9.\u09ed � \u09e6.\u09e8 billion years ."
+"-345.137 on the basis of three measure the age of the universe is found that is almost \u09e7\u09e9.\u09ed � \u09e6.\u09e8 billion years ."
+"-345.520 three measure based on the age of the universe is found it is almost \u09e7\u09e9.\u09ed � \u09e6.\u09e8 billion years ."
+"-345.570 three measure based on the the age of the universe is found that is almost \u09e7\u09e9.\u09ed � \u09e6.\u09e8 billion years ."
+"-345.844 three measure base on the age of the universe is found it is almost \u09e7\u09e9.\u09ed � \u09e6.\u09e8 billion years ."
+"-345.865 three measure based on the age of the universe is found that is about \u09e7\u09e9.\u09ed � \u09e6.\u09e8 billion years ."
+"-345.894 three measure base on the the age of the universe is found that is almost \u09e7\u09e9.\u09ed � \u09e6.\u09e8 billion years ."
+"-345.994 measure three based on the age of the universe is found it is almost \u09e7\u09e9.\u09ed � \u09e6.\u09e8 billion years ."
+"-235.028 there are \u0995\u09be\u099b\u09c7\u0987 east russia which \u0993\u0996\u099f\u09b8\u09cd\u0995 sea and japan sea on the other can be is situated ."
+"-235.123 \u0995\u09be\u099b\u09c7\u0987 there are east russia which \u0993\u0996\u099f\u09b8\u09cd\u0995 sea and japan sea on the other can be is situated ."
+"-235.131 there are \u0995\u09be\u099b\u09c7\u0987 east russia which \u0993\u0996\u099f\u09b8\u09cd\u0995 sea and japan sea is situated on the other can be ."
+"-235.226 \u0995\u09be\u099b\u09c7\u0987 there are east russia which \u0993\u0996\u099f\u09b8\u09cd\u0995 sea and japan sea is situated on the other can be ."
+"-235.390 there are \u0995\u09be\u099b\u09c7\u0987 east russia which \u0993\u0996\u099f\u09b8\u09cd\u0995 sea and japan sea on the other can be situated ."
+"-235.484 \u0995\u09be\u099b\u09c7\u0987 there are east russia which \u0993\u0996\u099f\u09b8\u09cd\u0995 sea and japan sea on the other can be situated ."
+"-235.675 there is \u0995\u09be\u099b\u09c7\u0987 east russia which \u0993\u0996\u099f\u09b8\u09cd\u0995 sea and japan sea on the other can be is situated ."
+"-235.708 there are \u0995\u09be\u099b\u09c7\u0987 east russia which \u0993\u0996\u099f\u09b8\u09cd\u0995 sea and japan sea is situated in the other can be ."
+"-235.713 there are \u0995\u09be\u099b\u09c7\u0987 east russia which \u0993\u0996\u099f\u09b8\u09cd\u0995 sea and japan sea on the other can be located ."
+"-235.778 there is \u0995\u09be\u099b\u09c7\u0987 east russia which \u0993\u0996\u099f\u09b8\u09cd\u0995 sea and japan sea is situated on the other can be ."
+"-119.076 in kolkata is located at the national library of india the leading public \u09b2\u09be\u0987\u09ac\u09cd\u09b0\u09c7\u09b0\u09bf ."
+"-119.169 in kolkata is located in the national library of india the leading public \u09b2\u09be\u0987\u09ac\u09cd\u09b0\u09c7\u09b0\u09bf ."
+"-119.263 in kolkata is situated at the national library of india the leading public \u09b2\u09be\u0987\u09ac\u09cd\u09b0\u09c7\u09b0\u09bf ."
+"-119.665 in kolkata is situated in the national library of india the leading public \u09b2\u09be\u0987\u09ac\u09cd\u09b0\u09c7\u09b0\u09bf ."
+"-119.838 kolkata is located at the national library of india the leading public \u09b2\u09be\u0987\u09ac\u09cd\u09b0\u09c7\u09b0\u09bf ."
+"-119.931 kolkata is located in the national library of india the leading public \u09b2\u09be\u0987\u09ac\u09cd\u09b0\u09c7\u09b0\u09bf ."
+"-120.024 kolkata is situated at the national library of india the leading public \u09b2\u09be\u0987\u09ac\u09cd\u09b0\u09c7\u09b0\u09bf ."
+"-120.410 in kolkata is the national library of india the leading public \u09b2\u09be\u0987\u09ac\u09cd\u09b0\u09c7\u09b0\u09bf ."
+"-120.427 kolkata is situated in the national library of india the leading public \u09b2\u09be\u0987\u09ac\u09cd\u09b0\u09c7\u09b0\u09bf ."
+"-120.447 national library of india is situated in kolkata the leading public \u09b2\u09be\u0987\u09ac\u09cd\u09b0\u09c7\u09b0\u09bf ."
+"-103.288 \u099b\u09a4\u09cd\u09b0\u09be\u0995\u09ac\u09bf\u09a6\u09cd\u09af\u09be"
+"-218.172 \u09b0\u09be\u09b7\u09cd\u099f\u09cd\u09b0\u09b8\u0999\u09cd\u0998\u09c7\u09b0 general secretary \u09ac\u09be\u09a8 ki moon"
+"-218.226 \u09b0\u09be\u09b7\u09cd\u099f\u09cd\u09b0\u09b8\u0999\u09cd\u0998\u09c7\u09b0 secretary general \u09ac\u09be\u09a8 ki moon"
+"-220.109 \u09b0\u09be\u09b7\u09cd\u099f\u09cd\u09b0\u09b8\u0999\u09cd\u0998\u09c7\u09b0 chief secretary \u09ac\u09be\u09a8 ki moon"
+"-221.235 \u09ac\u09be\u09a8 \u09b0\u09be\u09b7\u09cd\u099f\u09cd\u09b0\u09b8\u0999\u09cd\u0998\u09c7\u09b0 general secretary ki moon"
+"-221.542 \u09b0\u09be\u09b7\u09cd\u099f\u09cd\u09b0\u09b8\u0999\u09cd\u0998\u09c7\u09b0 general secretary \u09ac\u09be\u09a8 what moon"
+"-221.596 \u09b0\u09be\u09b7\u09cd\u099f\u09cd\u09b0\u09b8\u0999\u09cd\u0998\u09c7\u09b0 secretary general \u09ac\u09be\u09a8 what moon"
+"-222.569 \u09ac\u09be\u09a8 ki moon \u09b0\u09be\u09b7\u09cd\u099f\u09cd\u09b0\u09b8\u0999\u09cd\u0998\u09c7\u09b0 general secretary"
+"-223.027 \u09b0\u09be\u09b7\u09cd\u099f\u09cd\u09b0\u09b8\u0999\u09cd\u0998\u09c7\u09b0 general secretary \u09ac\u09be\u09a8 what salt"
+"-223.081 \u09b0\u09be\u09b7\u09cd\u099f\u09cd\u09b0\u09b8\u0999\u09cd\u0998\u09c7\u09b0 secretary general \u09ac\u09be\u09a8 what salt"
+"-223.292 \u09b0\u09be\u09b7\u09cd\u099f\u09cd\u09b0\u09b8\u0999\u09cd\u0998\u09c7\u09b0 general secretary \u09ac\u09be\u09a8 the moon"
+"-337.188 \u09ae\u09bf\u09a8\u09bf\u0995\u09cd\u09b8\u09c7\u09b0 of india was smells \u099f\u09be\u09a8\u09c7\u09a8\u09ac\u09ae a famous operating system design \u09aa\u09cd\u09b0\u09b6\u09bf\u0995\u09cd\u09b7\u0995 ."
+"-337.335 \u09ae\u09bf\u09a8\u09bf\u0995\u09cd\u09b8\u09c7\u09b0 of india was smells \u099f\u09be\u09a8\u09c7\u09a8\u09ac\u09ae a famous operating system designing \u09aa\u09cd\u09b0\u09b6\u09bf\u0995\u09cd\u09b7\u0995 ."
+"-337.851 \u09ae\u09bf\u09a8\u09bf\u0995\u09cd\u09b8\u09c7\u09b0 of was smells \u099f\u09be\u09a8\u09c7\u09a8\u09ac\u09ae a famous operating system design \u09aa\u09cd\u09b0\u09b6\u09bf\u0995\u09cd\u09b7\u0995 ."
+"-337.998 \u09ae\u09bf\u09a8\u09bf\u0995\u09cd\u09b8\u09c7\u09b0 of was smells \u099f\u09be\u09a8\u09c7\u09a8\u09ac\u09ae a famous operating system designing \u09aa\u09cd\u09b0\u09b6\u09bf\u0995\u09cd\u09b7\u0995 ."
+"-338.299 \u09ae\u09bf\u09a8\u09bf\u0995\u09cd\u09b8\u09c7\u09b0 of india was smells \u099f\u09be\u09a8\u09c7\u09a8\u09ac\u09ae in a famous operating system design \u09aa\u09cd\u09b0\u09b6\u09bf\u0995\u09cd\u09b7\u0995 ."
+"-338.446 \u09ae\u09bf\u09a8\u09bf\u0995\u09cd\u09b8\u09c7\u09b0 of india was smells \u099f\u09be\u09a8\u09c7\u09a8\u09ac\u09ae in a famous operating system designing \u09aa\u09cd\u09b0\u09b6\u09bf\u0995\u09cd\u09b7\u0995 ."
+"-338.750 \u09ae\u09bf\u09a8\u09bf\u0995\u09cd\u09b8\u09c7\u09b0 to was smells \u099f\u09be\u09a8\u09c7\u09a8\u09ac\u09ae a famous operating system design \u09aa\u09cd\u09b0\u09b6\u09bf\u0995\u09cd\u09b7\u0995 ."
+"-338.838 \u09ae\u09bf\u09a8\u09bf\u0995\u09cd\u09b8\u09c7\u09b0 of were smells \u099f\u09be\u09a8\u09c7\u09a8\u09ac\u09ae a famous operating system design \u09aa\u09cd\u09b0\u09b6\u09bf\u0995\u09cd\u09b7\u0995 ."
+"-338.896 \u09ae\u09bf\u09a8\u09bf\u0995\u09cd\u09b8\u09c7\u09b0 to was smells \u099f\u09be\u09a8\u09c7\u09a8\u09ac\u09ae a famous operating system designing \u09aa\u09cd\u09b0\u09b6\u09bf\u0995\u09cd\u09b7\u0995 ."
+"-338.962 \u09ae\u09bf\u09a8\u09bf\u0995\u09cd\u09b8\u09c7\u09b0 of was smells \u099f\u09be\u09a8\u09c7\u09a8\u09ac\u09ae in a famous operating system design \u09aa\u09cd\u09b0\u09b6\u09bf\u0995\u09cd\u09b7\u0995 ."
+"-1714.540 the \u099f\u09be\u0987\u09ae\u09cd the 's of \u0987\u09a8\u09cd\u09a1\u09bf\u09af\u09bc\u09be-\u09a4\u09c7 written in the " it is absurd to compare it with any other indian cinema ... pather panchali is pure cinema " -lrb- " it other by the indian films with compared to unreal ... pather panchali are pure film " -rrb- ."
+"-1714.622 the \u099f\u09be\u0987\u09ae\u09cd of 's of \u0987\u09a8\u09cd\u09a1\u09bf\u09af\u09bc\u09be-\u09a4\u09c7 written in the " it is absurd to compare it with any other indian cinema ... pather panchali is pure cinema " -lrb- " it other by the indian films with compared to unreal ... pather panchali are pure film " -rrb- ."
+"-1714.748 the \u099f\u09be\u0987\u09ae\u09cd the 's of \u0987\u09a8\u09cd\u09a1\u09bf\u09af\u09bc\u09be-\u09a4\u09c7 written in that " it is absurd to compare it with any other indian cinema ... pather panchali is pure cinema " -lrb- " it other by the indian films with compared to unreal ... pather panchali are pure film " -rrb- ."
+"-1714.769 the \u099f\u09be\u0987\u09ae\u09cd the 's of \u0987\u09a8\u09cd\u09a1\u09bf\u09af\u09bc\u09be-\u09a4\u09c7 written in the " it is absurd to compare it with any other indian cinema ... pather panchali is pure cinema " -lrb- " it other by indian films with compared to unreal ... pather panchali are pure film " -rrb- ."
+"-1714.830 the \u099f\u09be\u0987\u09ae\u09cd of 's of \u0987\u09a8\u09cd\u09a1\u09bf\u09af\u09bc\u09be-\u09a4\u09c7 written in that " it is absurd to compare it with any other indian cinema ... pather panchali is pure cinema " -lrb- " it other by the indian films with compared to unreal ... pather panchali are pure film " -rrb- ."
+"-1714.851 the \u099f\u09be\u0987\u09ae\u09cd of 's of \u0987\u09a8\u09cd\u09a1\u09bf\u09af\u09bc\u09be-\u09a4\u09c7 written in the " it is absurd to compare it with any other indian cinema ... pather panchali is pure cinema " -lrb- " it other by indian films with compared to unreal ... pather panchali are pure film " -rrb- ."
+"-1714.978 the \u099f\u09be\u0987\u09ae\u09cd the 's of \u0987\u09a8\u09cd\u09a1\u09bf\u09af\u09bc\u09be-\u09a4\u09c7 written in that " it is absurd to compare it with any other indian cinema ... pather panchali is pure cinema " -lrb- " it other by indian films with compared to unreal ... pather panchali are pure film " -rrb- ."
+"-1715.009 the \u099f\u09be\u0987\u09ae\u09cd the 's of \u0987\u09a8\u09cd\u09a1\u09bf\u09af\u09bc\u09be-\u09a4\u09c7 written in the " it is absurd to compare it with any other indian cinema ... pather panchali is pure cinema " -lrb- " it other by the indian films with compared to unreal ... pather panchali is pure film " -rrb- ."
+"-1715.032 the \u099f\u09be\u0987\u09ae\u09cd the 's of \u0987\u09a8\u09cd\u09a1\u09bf\u09af\u09bc\u09be-\u09a4\u09c7 written in that , " , it is absurd to compare it with any other indian cinema ... pather panchali is pure cinema " -lrb- " it other by the indian films with compared to unreal ... pather panchali are pure film " -rrb- ."
+"-1715.060 the \u099f\u09be\u0987\u09ae\u09cd of 's of \u0987\u09a8\u09cd\u09a1\u09bf\u09af\u09bc\u09be-\u09a4\u09c7 written in that " it is absurd to compare it with any other indian cinema ... pather panchali is pure cinema " -lrb- " it other by indian films with compared to unreal ... pather panchali are pure film " -rrb- ."
+"-336.768 after that , 1953 in the month of may nazrul and \u09aa\u09cd\u09b0\u09ae\u09c0\u09b2\u09be \u09a6\u09c7\u09ac\u09c0\u0995\u09c7 \u099a\u09bf\u0995\u09bf\u09ce\u09b8\u09be\u09b0 for london sent to ."
+"-336.868 after that the in the month of may , 1953 nazrul and \u09aa\u09cd\u09b0\u09ae\u09c0\u09b2\u09be \u09a6\u09c7\u09ac\u09c0\u0995\u09c7 \u099a\u09bf\u0995\u09bf\u09ce\u09b8\u09be\u09b0 for london sent to ."
+"-336.929 after that in the month of may , 1953 nazrul and \u09aa\u09cd\u09b0\u09ae\u09c0\u09b2\u09be \u09a6\u09c7\u09ac\u09c0\u0995\u09c7 \u099a\u09bf\u0995\u09bf\u09ce\u09b8\u09be\u09b0 for london sent to ."
+"-337.044 after that 1953 , in the month of may nazrul and \u09aa\u09cd\u09b0\u09ae\u09c0\u09b2\u09be \u09a6\u09c7\u09ac\u09c0\u0995\u09c7 \u099a\u09bf\u0995\u09bf\u09ce\u09b8\u09be\u09b0 for london sent to ."
+"-337.100 after that , 1953 during the month of may nazrul and \u09aa\u09cd\u09b0\u09ae\u09c0\u09b2\u09be \u09a6\u09c7\u09ac\u09c0\u0995\u09c7 \u099a\u09bf\u0995\u09bf\u09ce\u09b8\u09be\u09b0 for london sent to ."
+"-337.124 after that , 1953 in the month of may nazrul and \u09aa\u09cd\u09b0\u09ae\u09c0\u09b2\u09be \u09a6\u09c7\u09ac\u09c0\u0995\u09c7 \u099a\u09bf\u0995\u09bf\u09ce\u09b8\u09be\u09b0 for london sent to the ."
+"-337.225 after that the in the month of may , 1953 nazrul and \u09aa\u09cd\u09b0\u09ae\u09c0\u09b2\u09be \u09a6\u09c7\u09ac\u09c0\u0995\u09c7 \u099a\u09bf\u0995\u09bf\u09ce\u09b8\u09be\u09b0 for london sent to the ."
+"-337.286 after that in the month of may , 1953 nazrul and \u09aa\u09cd\u09b0\u09ae\u09c0\u09b2\u09be \u09a6\u09c7\u09ac\u09c0\u0995\u09c7 \u099a\u09bf\u0995\u09bf\u09ce\u09b8\u09be\u09b0 for london sent to the ."
+"-337.301 after that , 1953 in the month of may najrul and \u09aa\u09cd\u09b0\u09ae\u09c0\u09b2\u09be \u09a6\u09c7\u09ac\u09c0\u0995\u09c7 \u099a\u09bf\u0995\u09bf\u09ce\u09b8\u09be\u09b0 for london sent to ."
+"-337.367 after this 1953 , in the month of may nazrul and \u09aa\u09cd\u09b0\u09ae\u09c0\u09b2\u09be \u09a6\u09c7\u09ac\u09c0\u0995\u09c7 \u099a\u09bf\u0995\u09bf\u09ce\u09b8\u09be\u09b0 for london sent to ."
+"-242.245 the southern and the east there is \u09ac\u09bf\u09b8\u09cd\u09a4\u09c0\u09b0\u09cd\u09a3 land , west and in the north there are \u09b0\u09c1\u0995\u09cd\u09b7 mountain and mountain ."
+"-242.290 the southern and the east there is \u09ac\u09bf\u09b8\u09cd\u09a4\u09c0\u09b0\u09cd\u09a3 land , west and on the north there are \u09b0\u09c1\u0995\u09cd\u09b7 mountain and mountain ."
+"-242.774 the southern and the east there is \u09ac\u09bf\u09b8\u09cd\u09a4\u09c0\u09b0\u09cd\u09a3 land , west and in the north there is \u09b0\u09c1\u0995\u09cd\u09b7 mountain and mountain ."
+"-242.776 the southern and the east there is \u09ac\u09bf\u09b8\u09cd\u09a4\u09c0\u09b0\u09cd\u09a3 plain , west and in the north there are \u09b0\u09c1\u0995\u09cd\u09b7 mountain and mountain ."
+"-242.819 the southern and the east there is \u09ac\u09bf\u09b8\u09cd\u09a4\u09c0\u09b0\u09cd\u09a3 land , west and on the north there is \u09b0\u09c1\u0995\u09cd\u09b7 mountain and mountain ."
+"-242.822 the southern and the east there is \u09ac\u09bf\u09b8\u09cd\u09a4\u09c0\u09b0\u09cd\u09a3 plain , west and on the north there are \u09b0\u09c1\u0995\u09cd\u09b7 mountain and mountain ."
+"-242.915 the south and the east there is \u09ac\u09bf\u09b8\u09cd\u09a4\u09c0\u09b0\u09cd\u09a3 land , west and in the north there are \u09b0\u09c1\u0995\u09cd\u09b7 mountain and mountain ."
+"-242.960 the south and the east there is \u09ac\u09bf\u09b8\u09cd\u09a4\u09c0\u09b0\u09cd\u09a3 land , west and on the north there are \u09b0\u09c1\u0995\u09cd\u09b7 mountain and mountain ."
+"-242.973 the southern and the east there is \u09ac\u09bf\u09b8\u09cd\u09a4\u09c0\u09b0\u09cd\u09a3 land , west and in the north there are \u09b0\u09c1\u0995\u09cd\u09b7 hill and mountain ."
+"-243.018 the southern and the east there is \u09ac\u09bf\u09b8\u09cd\u09a4\u09c0\u09b0\u09cd\u09a3 land , west and on the north there are \u09b0\u09c1\u0995\u09cd\u09b7 hill and mountain ."
+"-103.288 \u099f\u09cd\u09b0\u09c7\u09a1\u09ae\u09be\u09b0\u09cd\u0995"
+"-443.070 \u09b2\u09b0\u09cd\u09a1 \u0993\u09af\u09bc\u09c7\u09b2\u09c7\u09b8\u09b2\u09bf\u09b0 -lrb- \u0997\u09ad\u09b0\u09cd\u09a8\u09b0-\u099c\u09c7\u09a8\u09be\u09b0\u09c7\u09b2 \u09e7\u09ed\u09ef\u09ed-\u09e7\u09ee\u09e6\u09eb -rrb- during his city are the ghotechilo"
+"-443.197 \u09b2\u09b0\u09cd\u09a1 \u0993\u09af\u09bc\u09c7\u09b2\u09c7\u09b8\u09b2\u09bf\u09b0 -lrb- \u0997\u09ad\u09b0\u09cd\u09a8\u09b0-\u099c\u09c7\u09a8\u09be\u09b0\u09c7\u09b2 \u09e7\u09ed\u09ef\u09ed-\u09e7\u09ee\u09e6\u09eb -rrb- during his city are the already happened"
+"-443.864 \u09b2\u09b0\u09cd\u09a1 \u0993\u09af\u09bc\u09c7\u09b2\u09c7\u09b8\u09b2\u09bf\u09b0 -lrb- \u0997\u09ad\u09b0\u09cd\u09a8\u09b0-\u099c\u09c7\u09a8\u09be\u09b0\u09c7\u09b2 \u09e7\u09ed\u09ef\u09ed-\u09e7\u09ee\u09e6\u09eb -rrb- during his in the city are the ghotechilo"
+"-443.926 \u09b2\u09b0\u09cd\u09a1 \u0993\u09af\u09bc\u09c7\u09b2\u09c7\u09b8\u09b2\u09bf\u09b0 -lrb- \u0997\u09ad\u09b0\u09cd\u09a8\u09b0-\u099c\u09c7\u09a8\u09be\u09b0\u09c7\u09b2 \u09e7\u09ed\u09ef\u09ed-\u09e7\u09ee\u09e6\u09eb -rrb- during his the mentionable are the ghotechilo"
+"-443.991 \u09b2\u09b0\u09cd\u09a1 \u0993\u09af\u09bc\u09c7\u09b2\u09c7\u09b8\u09b2\u09bf\u09b0 -lrb- \u0997\u09ad\u09b0\u09cd\u09a8\u09b0-\u099c\u09c7\u09a8\u09be\u09b0\u09c7\u09b2 \u09e7\u09ed\u09ef\u09ed-\u09e7\u09ee\u09e6\u09eb -rrb- during his in the city are the already happened"
+"-444.003 \u09b2\u09b0\u09cd\u09a1 \u0993\u09af\u09bc\u09c7\u09b2\u09c7\u09b8\u09b2\u09bf\u09b0 -lrb- \u0997\u09ad\u09b0\u09cd\u09a8\u09b0-\u099c\u09c7\u09a8\u09be\u09b0\u09c7\u09b2 \u09e7\u09ed\u09ef\u09ed-\u09e7\u09ee\u09e6\u09eb -rrb- during his the are the ghotechilo"
+"-444.050 \u09b2\u09b0\u09cd\u09a1 \u0993\u09af\u09bc\u09c7\u09b2\u09c7\u09b8\u09b2\u09bf\u09b0 -lrb- \u0997\u09ad\u09b0\u09cd\u09a8\u09b0-\u099c\u09c7\u09a8\u09be\u09b0\u09c7\u09b2 \u09e7\u09ed\u09ef\u09ed-\u09e7\u09ee\u09e6\u09eb -rrb- during his the city are the ghotechilo"
+"-444.053 \u09b2\u09b0\u09cd\u09a1 \u0993\u09af\u09bc\u09c7\u09b2\u09c7\u09b8\u09b2\u09bf\u09b0 -lrb- \u0997\u09ad\u09b0\u09cd\u09a8\u09b0-\u099c\u09c7\u09a8\u09be\u09b0\u09c7\u09b2 \u09e7\u09ed\u09ef\u09ed-\u09e7\u09ee\u09e6\u09eb -rrb- during his the mentionable are the already happened"
+"-444.124 \u09b2\u09b0\u09cd\u09a1 \u0993\u09af\u09bc\u09c7\u09b2\u09c7\u09b8\u09b2\u09bf\u09b0 -lrb- \u0997\u09ad\u09b0\u09cd\u09a8\u09b0-\u099c\u09c7\u09a8\u09be\u09b0\u09c7\u09b2 \u09e7\u09ed\u09ef\u09ed-\u09e7\u09ee\u09e6\u09eb -rrb- during his city are increased ghotechilo"
+"-444.130 \u09b2\u09b0\u09cd\u09a1 \u0993\u09af\u09bc\u09c7\u09b2\u09c7\u09b8\u09b2\u09bf\u09b0 -lrb- \u0997\u09ad\u09b0\u09cd\u09a8\u09b0-\u099c\u09c7\u09a8\u09be\u09b0\u09c7\u09b2 \u09e7\u09ed\u09ef\u09ed-\u09e7\u09ee\u09e6\u09eb -rrb- during his the are the already happened"
+"-26.515 many important and real extremely necessary to solve problems complex number"
+"-26.733 many important and real to solve problems complex number apariharza"
+"-26.848 many important and real to solve problems extremely necessary complex number"
+"-26.857 many important and real problem to solve complex number apariharza"
+"-27.272 many important and real problem to for complex number apariharza"
+"-27.273 many important and real to solve problems complex number inevitable"
+"-27.283 many important and real extremely necessary to solve problems complex numbers"
+"-27.298 many important and real problem extremely necessary to solve complex number"
+"-27.308 many important and real to solve problems complex number extremely necessary"
+"-27.330 many important and real to solve problems complex numbers apariharza"
+"-45.363 the big bang is a famous result in the state of the universe so and recent situation from the separate ."
+"-45.486 the big bang is a famous result are in the state of the universe so and recent situation from the separate ."
+"-45.659 the big bang is a famous result is in the state of the universe so and recent situation from the separate ."
+"-45.867 the big bang is a famous result in the state of the universe so and recent situation from the the ."
+"-45.920 the big bang is a famous result in the state of the universe so and recent situation from the different ."
+"-45.989 the big bang is a famous result are in the state of the universe so and recent situation from the the ."
+"-46.043 the big bang is a famous result are in the state of the universe so and recent situation from the different ."
+"-46.162 the big bang is a famous result is in the state of the universe so and recent situation from the the ."
+"-46.216 the big bang is a famous result is in the state of the universe so and recent situation from the different ."
+"-46.242 the big bang is a famous result in the state of the universe so and recent state from the separate ."
+"-104.858 windows \u09ae\u09bf\u09b2\u09bf\u09a8\u09bf\u09af\u09bc\u09be\u09ae"
+"-207.084 \u0989\u0987\u09a8\u09cd\u09a1\u09cb\u099c \u09ae\u09bf\u09b2\u09bf\u09a8\u09bf\u09af\u09bc\u09be\u09ae"
+"-219.540 however , rabindranath more than one \u09b6\u09c8\u09b2\u09c0 \u0986\u09af\u09bc\u09a4\u09cd\u09a4\u09cd\u09ac was ."
+"-219.826 rabindranath , more than one \u09b6\u09c8\u09b2\u09c0 \u0986\u09af\u09bc\u09a4\u09cd\u09a4\u09cd\u09ac was ."
+"-219.926 rabindranath however , more than one \u09b6\u09c8\u09b2\u09c0 \u0986\u09af\u09bc\u09a4\u09cd\u09a4\u09cd\u09ac was ."
+"-219.999 rabindranath , in more than one \u09b6\u09c8\u09b2\u09c0 \u0986\u09af\u09bc\u09a4\u09cd\u09a4\u09cd\u09ac was ."
+"-220.052 however , rabindranath more than one \u09b6\u09c8\u09b2\u09c0 \u0986\u09af\u09bc\u09a4\u09cd\u09a4\u09cd\u09ac a ."
+"-220.167 however , rabindranath more than one \u09b6\u09c8\u09b2\u09c0 \u0986\u09af\u09bc\u09a4\u09cd\u09a4\u09cd\u09ac by ."
+"-220.337 rabindranath , more than one \u09b6\u09c8\u09b2\u09c0 \u0986\u09af\u09bc\u09a4\u09cd\u09a4\u09cd\u09ac a ."
+"-220.438 rabindranath however , more than one \u09b6\u09c8\u09b2\u09c0 \u0986\u09af\u09bc\u09a4\u09cd\u09a4\u09cd\u09ac a ."
+"-220.452 rabindranath , more than one \u09b6\u09c8\u09b2\u09c0 \u0986\u09af\u09bc\u09a4\u09cd\u09a4\u09cd\u09ac by ."
+"-220.511 rabindranath , in more than one \u09b6\u09c8\u09b2\u09c0 \u0986\u09af\u09bc\u09a4\u09cd\u09a4\u09cd\u09ac a ."
+"-0.994 labour economics"
+"-1.238 labor economy"
+"-2.085 labor economy ."
+"-2.997 labour economics ."
+"-3.592 labor economics"
+"-3.911 the labour economics"
+"-4.189 labour economy"
+"-4.211 the labor economy"
+"-4.983 labor economics ."
+"-5.030 labour economy ."
+"-20.224 britain at some point of time the was the main and his economic power in the world ."
+"-20.653 britain at some point of time the was the main and his economical power in the world ."
+"-20.657 britain at some point of time was the main and his economic power in the world ."
+"-20.876 britain was once upon a time the main and his economic power in the world ."
+"-20.964 britain at one point of time the was the main and his economic power in the world ."
+"-21.086 britain at some point of time was the main and his economical power in the world ."
+"-21.159 britain was once upon a time the and his economic power in the world ."
+"-21.165 britain at one point of time was the main and his economic power in the world ."
+"-21.293 britain was once upon a time his and the main economic power in the world ."
+"-21.392 britain at one point of time the was the main and his economical power in the world ."
+"-266.155 the military rule movement against pakistan and \u0997\u09cb\u09b7\u09cd\u09a0\u09c0\u0997\u09a4 was against protest and independence movement of the bengalis , \u09a7\u09be\u09ac\u09bf\u09a4 to for he widely praised ."
+"-266.275 movement against the military rule and \u0997\u09cb\u09b7\u09cd\u09a0\u09c0\u0997\u09a4 of pakistan was against protest and independence movement of the bengalis , \u09a7\u09be\u09ac\u09bf\u09a4 to for he widely praised ."
+"-266.292 the military rule movement against and \u0997\u09cb\u09b7\u09cd\u09a0\u09c0\u0997\u09a4 of pakistan was against protest and independence movement of the bengalis , \u09a7\u09be\u09ac\u09bf\u09a4 to for he widely praised ."
+"-266.384 the military rule movement against pakistan and \u0997\u09cb\u09b7\u09cd\u09a0\u09c0\u0997\u09a4 was against protest and independence movement of the bengalis from \u09a7\u09be\u09ac\u09bf\u09a4 to for he widely praised ."
+"-266.393 movement against the military rule and pakistan \u0997\u09cb\u09b7\u09cd\u09a0\u09c0\u0997\u09a4 was against protest and independence movement of the bengalis , \u09a7\u09be\u09ac\u09bf\u09a4 to for he widely praised ."
+"-266.410 the military rule movement against and pakistan \u0997\u09cb\u09b7\u09cd\u09a0\u09c0\u0997\u09a4 was against protest and independence movement of the bengalis , \u09a7\u09be\u09ac\u09bf\u09a4 to for he widely praised ."
+"-266.449 the military rule movement against pakistan and \u0997\u09cb\u09b7\u09cd\u09a0\u09c0\u0997\u09a4 was against protest and movement of the bengalis independence , \u09a7\u09be\u09ac\u09bf\u09a4 to for he widely praised ."
+"-266.475 the military rule movement against pakistan and \u0997\u09cb\u09b7\u09cd\u09a0\u09c0\u0997\u09a4 protest against inequality first and independence movement of the bengalis , \u09a7\u09be\u09ac\u09bf\u09a4 to for he widely praised ."
+"-266.487 movement against the pakistani military rule and \u0997\u09cb\u09b7\u09cd\u09a0\u09c0\u0997\u09a4 of pakistan was against protest and independence movement of the bengalis , \u09a7\u09be\u09ac\u09bf\u09a4 to for he widely praised ."
+"-266.505 movement against the military rule and \u0997\u09cb\u09b7\u09cd\u09a0\u09c0\u0997\u09a4 of pakistan was against protest and independence movement of the bengalis from \u09a7\u09be\u09ac\u09bf\u09a4 to for he widely praised ."
+"-171.397 here is mentioned that were internet and other name of world wide web word to be but actually \u09b6\u09ac\u09cd\u09a6\u09a6\u09cd\u09ac\u09af\u09bc different subject to the ."
+"-171.639 here is mentioned that were internet and other name of world wide web word to be , but actually \u09b6\u09ac\u09cd\u09a6\u09a6\u09cd\u09ac\u09af\u09bc different subject to the ."
+"-171.640 here is mentioned that were internet and world wide web \u2019 s synonymous to be word , but actually \u09b6\u09ac\u09cd\u09a6\u09a6\u09cd\u09ac\u09af\u09bc different subject to the ."
+"-171.721 here is mentioned that were internet and other name of world wide web to be word , but actually \u09b6\u09ac\u09cd\u09a6\u09a6\u09cd\u09ac\u09af\u09bc different subject to the ."
+"-172.203 here is mentioned that were internet and other name of world wide web word to be though actually \u09b6\u09ac\u09cd\u09a6\u09a6\u09cd\u09ac\u09af\u09bc different subject to the ."
+"-172.436 here is mentioned that were internet and other name of world wide web word to be but actually \u09b6\u09ac\u09cd\u09a6\u09a6\u09cd\u09ac\u09af\u09bc different subject indicates the ."
+"-172.478 here is mentioned that were internet and world wide web \u2019 s synonymous to be word but actually \u09b6\u09ac\u09cd\u09a6\u09a6\u09cd\u09ac\u09af\u09bc different subject to the ."
+"-172.482 here is mentioned that were internet and other name of world wide web word as considered as but actually \u09b6\u09ac\u09cd\u09a6\u09a6\u09cd\u09ac\u09af\u09bc different subject to the ."
+"-172.559 here is mentioned that were internet and other name of world wide web to be word but actually \u09b6\u09ac\u09cd\u09a6\u09a6\u09cd\u09ac\u09af\u09bc different subject to the ."
+"-172.606 here is mentioned that were internet and world wide web \u2019 s synonymous word to be but actually \u09b6\u09ac\u09cd\u09a6\u09a6\u09cd\u09ac\u09af\u09bc different subject to the ."
+"-31.445 . the related z polar co-ordinate two are r = ."
+"-31.908 . the related z polar co-ordinate two is r = ."
+"-32.274 . the related of z polar co-ordinate two are r = ."
+"-32.647 . z is related polar co-ordinate two are r = ."
+"-32.722 . z its related polar co-ordinate two are r = ."
+"-32.737 . the related of z polar co-ordinate two is r = ."
+"-32.749 in the related z polar co-ordinate two are r = ."
+"-32.809 . z the related polar co-ordinate two are r = ."
+"-32.876 . the related polar co-ordinate two z is r = ."
+"-32.950 . z it related polar co-ordinate two are r = ."
+"1.122 november"
+"-4.248 november ."
+"-103.288 \u09a8\u09ad\u09c7\u09ae\u09cd\u09ac\u09b0"
+"-337.642 1972 \u0996\u09cd\u09b0\u09c0\u09b8\u09cd\u099f\u09be\u09ac\u09cd\u09a6\u09c7 then \u0986\u09b0\u09aa\u09be\u09a8\u09c7\u099f\u09c7 first \u0987\u09b2\u09c7\u0995\u09cd\u099f\u09cd\u09b0\u09a8\u09bf\u0995 mail to to ."
+"-338.308 1972 \u0996\u09cd\u09b0\u09c0\u09b8\u09cd\u099f\u09be\u09ac\u09cd\u09a6\u09c7 then \u0986\u09b0\u09aa\u09be\u09a8\u09c7\u099f\u09c7 first \u0987\u09b2\u09c7\u0995\u09cd\u099f\u09cd\u09b0\u09a8\u09bf\u0995 mail sent to ."
+"-338.450 1972 \u0996\u09cd\u09b0\u09c0\u09b8\u09cd\u099f\u09be\u09ac\u09cd\u09a6\u09c7 " \u0986\u09b0\u09aa\u09be\u09a8\u09c7\u099f\u09c7 first \u0987\u09b2\u09c7\u0995\u09cd\u099f\u09cd\u09b0\u09a8\u09bf\u0995 mail to to ."
+"-338.529 1972 \u0996\u09cd\u09b0\u09c0\u09b8\u09cd\u099f\u09be\u09ac\u09cd\u09a6\u09c7 then \u0986\u09b0\u09aa\u09be\u09a8\u09c7\u099f\u09c7 first ever \u0987\u09b2\u09c7\u0995\u09cd\u099f\u09cd\u09b0\u09a8\u09bf\u0995 mail to to ."
+"-338.826 1972 \u0996\u09cd\u09b0\u09c0\u09b8\u09cd\u099f\u09be\u09ac\u09cd\u09a6\u09c7 then \u0986\u09b0\u09aa\u09be\u09a8\u09c7\u099f\u09c7 first \u0987\u09b2\u09c7\u0995\u09cd\u099f\u09cd\u09b0\u09a8\u09bf\u0995 mail to used ."
+"-338.911 1972 \u0996\u09cd\u09b0\u09c0\u09b8\u09cd\u099f\u09be\u09ac\u09cd\u09a6\u09c7 then \u0986\u09b0\u09aa\u09be\u09a8\u09c7\u099f\u09c7 first \u0987\u09b2\u09c7\u0995\u09cd\u099f\u09cd\u09b0\u09a8\u09bf\u0995 mail to be the ."
+"-339.004 1972 \u0996\u09cd\u09b0\u09c0\u09b8\u09cd\u099f\u09be\u09ac\u09cd\u09a6\u09c7 then \u0986\u09b0\u09aa\u09be\u09a8\u09c7\u099f\u09c7 first \u0987\u09b2\u09c7\u0995\u09cd\u099f\u09cd\u09b0\u09a8\u09bf\u0995 to mail to ."
+"-339.052 1972 \u0996\u09cd\u09b0\u09c0\u09b8\u09cd\u099f\u09be\u09ac\u09cd\u09a6\u09c7 then \u0986\u09b0\u09aa\u09be\u09a8\u09c7\u099f\u09c7 first \u0987\u09b2\u09c7\u0995\u09cd\u099f\u09cd\u09b0\u09a8\u09bf\u0995 mail sent to the ."
+"-339.066 \u0996\u09cd\u09b0\u09c0\u09b8\u09cd\u099f\u09be\u09ac\u09cd\u09a6\u09c7 1972 then \u0986\u09b0\u09aa\u09be\u09a8\u09c7\u099f\u09c7 first \u0987\u09b2\u09c7\u0995\u09cd\u099f\u09cd\u09b0\u09a8\u09bf\u0995 mail to to ."
+"-339.127 1972 \u0996\u09cd\u09b0\u09c0\u09b8\u09cd\u099f\u09be\u09ac\u09cd\u09a6\u09c7 then \u0986\u09b0\u09aa\u09be\u09a8\u09c7\u099f\u09c7 first \u0987\u09b2\u09c7\u0995\u09cd\u099f\u09cd\u09b0\u09a8\u09bf\u0995 mail to to the ."
+"-453.504 \u099c\u09c0\u09ac science that \u09b6\u09be\u0996\u09be\u09af\u09bc fungi and the practical about the subject to he was \u099b\u09a4\u09cd\u09b0\u09be\u0995\u09ac\u09bf\u09a6\u09cd\u09af\u09be -lrb- mycology -rrb-"
+"-453.963 \u099c\u09c0\u09ac science that \u09b6\u09be\u0996\u09be\u09af\u09bc fungi and its practical about the subject to he was \u099b\u09a4\u09cd\u09b0\u09be\u0995\u09ac\u09bf\u09a6\u09cd\u09af\u09be -lrb- mycology -rrb-"
+"-454.443 \u099c\u09c0\u09ac science that \u09b6\u09be\u0996\u09be\u09af\u09bc fungi and the practical about the subject to he \u099b\u09a4\u09cd\u09b0\u09be\u0995\u09ac\u09bf\u09a6\u09cd\u09af\u09be -lrb- mycology -rrb-"
+"-454.447 \u099c\u09c0\u09ac science that \u09b6\u09be\u0996\u09be\u09af\u09bc fungus and the practical about the subject to he was \u099b\u09a4\u09cd\u09b0\u09be\u0995\u09ac\u09bf\u09a6\u09cd\u09af\u09be -lrb- mycology -rrb-"
+"-454.737 \u099c\u09c0\u09ac science the \u09b6\u09be\u0996\u09be\u09af\u09bc fungi and the practical about the subject to he was \u099b\u09a4\u09cd\u09b0\u09be\u0995\u09ac\u09bf\u09a6\u09cd\u09af\u09be -lrb- mycology -rrb-"
+"-454.788 \u099c\u09c0\u09ac science that \u09b6\u09be\u0996\u09be\u09af\u09bc fungi and the practical subject about to the he was \u099b\u09a4\u09cd\u09b0\u09be\u0995\u09ac\u09bf\u09a6\u09cd\u09af\u09be -lrb- mycology -rrb-"
+"-454.823 \u099c\u09c0\u09ac science that \u09b6\u09be\u0996\u09be\u09af\u09bc fungi and the about the practical subject to he was \u099b\u09a4\u09cd\u09b0\u09be\u0995\u09ac\u09bf\u09a6\u09cd\u09af\u09be -lrb- mycology -rrb-"
+"-454.872 \u099c\u09c0\u09ac science that \u09b6\u09be\u0996\u09be\u09af\u09bc fungi and the practical about the issue to he was \u099b\u09a4\u09cd\u09b0\u09be\u0995\u09ac\u09bf\u09a6\u09cd\u09af\u09be -lrb- mycology -rrb-"
+"-454.901 \u099c\u09c0\u09ac science that \u09b6\u09be\u0996\u09be\u09af\u09bc fungi and its practical about the subject to he \u099b\u09a4\u09cd\u09b0\u09be\u0995\u09ac\u09bf\u09a6\u09cd\u09af\u09be -lrb- mycology -rrb-"
+"-454.903 \u099c\u09c0\u09ac science that the \u09b6\u09be\u0996\u09be\u09af\u09bc fungi and the practical about the subject to he was \u099b\u09a4\u09cd\u09b0\u09be\u0995\u09ac\u09bf\u09a6\u09cd\u09af\u09be -lrb- mycology -rrb-"
+"-467.773 water river from \u0989\u09a0\u09be\u09a8\u09cb was some a \u09a6\u09bf\u09af\u09bc\u09c7- \u09a6\u09a1\u09bc\u09bf and \u09ac\u09be\u09b2\u099f\u09bf\u09b0 through water used by animal world a system ."
+"-467.834 water from the river \u0989\u09a0\u09be\u09a8\u09cb was some a \u09a6\u09bf\u09af\u09bc\u09c7- \u09a6\u09a1\u09bc\u09bf and \u09ac\u09be\u09b2\u099f\u09bf\u09b0 through water used by animal world a system ."
+"-468.060 water river from \u0989\u09a0\u09be\u09a8\u09cb was some a \u09a6\u09bf\u09af\u09bc\u09c7- \u09a6\u09a1\u09bc\u09bf and \u09ac\u09be\u09b2\u099f\u09bf\u09b0 through water used by animal world a method ."
+"-468.122 water from the river \u0989\u09a0\u09be\u09a8\u09cb was some a \u09a6\u09bf\u09af\u09bc\u09c7- \u09a6\u09a1\u09bc\u09bf and \u09ac\u09be\u09b2\u099f\u09bf\u09b0 through water used by animal world a method ."
+"-468.149 water river from \u0989\u09a0\u09be\u09a8\u09cb was a few a \u09a6\u09bf\u09af\u09bc\u09c7- \u09a6\u09a1\u09bc\u09bf and \u09ac\u09be\u09b2\u099f\u09bf\u09b0 through water used by animal world a system ."
+"-468.162 water river from \u0989\u09a0\u09be\u09a8\u09cb was some purs \u09a6\u09bf\u09af\u09bc\u09c7- \u09a6\u09a1\u09bc\u09bf and \u09ac\u09be\u09b2\u099f\u09bf\u09b0 through water used by animal world a system ."
+"-468.211 water from the river \u0989\u09a0\u09be\u09a8\u09cb was a few a \u09a6\u09bf\u09af\u09bc\u09c7- \u09a6\u09a1\u09bc\u09bf and \u09ac\u09be\u09b2\u099f\u09bf\u09b0 through water used by animal world a system ."
+"-468.224 water from the river \u0989\u09a0\u09be\u09a8\u09cb was some purs \u09a6\u09bf\u09af\u09bc\u09c7- \u09a6\u09a1\u09bc\u09bf and \u09ac\u09be\u09b2\u099f\u09bf\u09b0 through water used by animal world a system ."
+"-468.238 water river from \u0989\u09a0\u09be\u09a8\u09cb was some a \u09a6\u09bf\u09af\u09bc\u09c7- \u09a6\u09a1\u09bc\u09bf and \u09ac\u09be\u09b2\u099f\u09bf\u09b0 through water used by animal world a process ."
+"-468.293 water river from \u0989\u09a0\u09be\u09a8\u09cb it was some a \u09a6\u09bf\u09af\u09bc\u09c7- \u09a6\u09a1\u09bc\u09bf and \u09ac\u09be\u09b2\u099f\u09bf\u09b0 through water used by animal world a system ."
+"-25.170 among these there are tribal dance lokuj dance classical dance etc ."
+"-25.620 among these there are tribal dance influences impact dance classical dance etc ."
+"-26.831 among them are tribal dance lokuj dance classical dance etc ."
+"-26.999 among these there tribal dance lokuj dance classical dance etc ."
+"-27.046 among these there is tribal dance lokuj dance classical dance etc ."
+"-27.280 among them are tribal dance influences impact dance classical dance etc ."
+"-27.316 among them there are tribal dance lokuj dance classical dance etc ."
+"-27.449 among these there tribal dance influences impact dance classical dance etc ."
+"-27.496 among these there is tribal dance influences impact dance classical dance etc ."
+"-27.539 among these are tribal dance lokuj dance classical dance etc ."
+"-128.172 the oldest literature at first \u09ae\u09cc\u0996\u09bf\u0995\u09ad\u09be\u09ac\u09c7 and later written form is the ."
+"-128.707 the oldest literature at first \u09ae\u09cc\u0996\u09bf\u0995\u09ad\u09be\u09ac\u09c7 and later written form is in the ."
+"-128.982 the oldest literature at first \u09ae\u09cc\u0996\u09bf\u0995\u09ad\u09be\u09ac\u09c7 and later written form is in ."
+"-129.166 the oldest literature at first \u09ae\u09cc\u0996\u09bf\u0995\u09ad\u09be\u09ac\u09c7 and later written form is used ."
+"-129.172 the oldest literature at first \u09ae\u09cc\u0996\u09bf\u0995\u09ad\u09be\u09ac\u09c7 and then written form is the ."
+"-129.327 the oldest literature at first \u09ae\u09cc\u0996\u09bf\u0995\u09ad\u09be\u09ac\u09c7 and later written in the form is the ."
+"-129.377 the oldest literature at first \u09ae\u09cc\u0996\u09bf\u0995\u09ad\u09be\u09ac\u09c7 and later written in the in the ."
+"-129.578 the oldest literature at first \u09ae\u09cc\u0996\u09bf\u0995\u09ad\u09be\u09ac\u09c7 and later written in the the ."
+"-129.592 the oldest literature at first \u09ae\u09cc\u0996\u09bf\u0995\u09ad\u09be\u09ac\u09c7 and later written in is the ."
+"-129.626 the oldest literature at first \u09ae\u09cc\u0996\u09bf\u0995\u09ad\u09be\u09ac\u09c7 and after written form is the ."
+"-681.400 in 1989 , the \u0997\u09a3\u09b6\u09a4\u09cd\u09b0\u09c1 in this film his conducted \u09a4\u09c1\u09b2\u09a8\u09be\u09ae\u09c2\u09b2\u0995\u09ad\u09be\u09ac\u09c7 \u09a6\u09c1\u09b0\u09cd\u09ac\u09b2 and this \u09a6\u09c0\u09b0\u09cd\u0998\u09a6\u09bf\u09a8\u09c7\u09b0 \u0985\u09b8\u09c1\u09b8\u09cd\u09a5\u09a4\u09be\u09b6\u09c7\u09b7\u09c7 came back , after \u09aa\u09c1\u09a8\u09b0\u09cd\u09aa\u09cd\u09b0\u099a\u09c7\u09b7\u09cd\u099f\u09be of satyajit 's films , a is considered as ."
+"-681.602 in 1989 , the \u0997\u09a3\u09b6\u09a4\u09cd\u09b0\u09c1 in this film his conducted \u09a4\u09c1\u09b2\u09a8\u09be\u09ae\u09c2\u09b2\u0995\u09ad\u09be\u09ac\u09c7 \u09a6\u09c1\u09b0\u09cd\u09ac\u09b2 and this \u09a6\u09c0\u09b0\u09cd\u0998\u09a6\u09bf\u09a8\u09c7\u09b0 \u0985\u09b8\u09c1\u09b8\u09cd\u09a5\u09a4\u09be\u09b6\u09c7\u09b7\u09c7 came back , after \u09aa\u09c1\u09a8\u09b0\u09cd\u09aa\u09cd\u09b0\u099a\u09c7\u09b7\u09cd\u099f\u09be of satyajit \u2019 s films , a is considered as ."
+"-681.620 in 1989 , the \u0997\u09a3\u09b6\u09a4\u09cd\u09b0\u09c1 in this film his between \u09a4\u09c1\u09b2\u09a8\u09be\u09ae\u09c2\u09b2\u0995\u09ad\u09be\u09ac\u09c7 \u09a6\u09c1\u09b0\u09cd\u09ac\u09b2 and this \u09a6\u09c0\u09b0\u09cd\u0998\u09a6\u09bf\u09a8\u09c7\u09b0 \u0985\u09b8\u09c1\u09b8\u09cd\u09a5\u09a4\u09be\u09b6\u09c7\u09b7\u09c7 came back , after \u09aa\u09c1\u09a8\u09b0\u09cd\u09aa\u09cd\u09b0\u099a\u09c7\u09b7\u09cd\u099f\u09be of satyajit 's films , a is considered as ."
+"-681.675 in the year 1989 the \u0997\u09a3\u09b6\u09a4\u09cd\u09b0\u09c1 in this film his conducted \u09a4\u09c1\u09b2\u09a8\u09be\u09ae\u09c2\u09b2\u0995\u09ad\u09be\u09ac\u09c7 \u09a6\u09c1\u09b0\u09cd\u09ac\u09b2 and this \u09a6\u09c0\u09b0\u09cd\u0998\u09a6\u09bf\u09a8\u09c7\u09b0 \u0985\u09b8\u09c1\u09b8\u09cd\u09a5\u09a4\u09be\u09b6\u09c7\u09b7\u09c7 came back , after \u09aa\u09c1\u09a8\u09b0\u09cd\u09aa\u09cd\u09b0\u099a\u09c7\u09b7\u09cd\u099f\u09be of satyajit 's films , a is considered as ."
+"-681.684 in 1989 , the \u0997\u09a3\u09b6\u09a4\u09cd\u09b0\u09c1 film his conducted \u09a4\u09c1\u09b2\u09a8\u09be\u09ae\u09c2\u09b2\u0995\u09ad\u09be\u09ac\u09c7 \u09a6\u09c1\u09b0\u09cd\u09ac\u09b2 and this \u09a6\u09c0\u09b0\u09cd\u0998\u09a6\u09bf\u09a8\u09c7\u09b0 \u0985\u09b8\u09c1\u09b8\u09cd\u09a5\u09a4\u09be\u09b6\u09c7\u09b7\u09c7 came back , after \u09aa\u09c1\u09a8\u09b0\u09cd\u09aa\u09cd\u09b0\u099a\u09c7\u09b7\u09cd\u099f\u09be of satyajit 's films , a is considered as ."
+"-681.822 in 1989 , the \u0997\u09a3\u09b6\u09a4\u09cd\u09b0\u09c1 in this film his between \u09a4\u09c1\u09b2\u09a8\u09be\u09ae\u09c2\u09b2\u0995\u09ad\u09be\u09ac\u09c7 \u09a6\u09c1\u09b0\u09cd\u09ac\u09b2 and this \u09a6\u09c0\u09b0\u09cd\u0998\u09a6\u09bf\u09a8\u09c7\u09b0 \u0985\u09b8\u09c1\u09b8\u09cd\u09a5\u09a4\u09be\u09b6\u09c7\u09b7\u09c7 came back , after \u09aa\u09c1\u09a8\u09b0\u09cd\u09aa\u09cd\u09b0\u099a\u09c7\u09b7\u09cd\u099f\u09be of satyajit \u2019 s films , a is considered as ."
+"-681.844 on the year 1989 the \u0997\u09a3\u09b6\u09a4\u09cd\u09b0\u09c1 in this film his conducted \u09a4\u09c1\u09b2\u09a8\u09be\u09ae\u09c2\u09b2\u0995\u09ad\u09be\u09ac\u09c7 \u09a6\u09c1\u09b0\u09cd\u09ac\u09b2 and this \u09a6\u09c0\u09b0\u09cd\u0998\u09a6\u09bf\u09a8\u09c7\u09b0 \u0985\u09b8\u09c1\u09b8\u09cd\u09a5\u09a4\u09be\u09b6\u09c7\u09b7\u09c7 came back , after \u09aa\u09c1\u09a8\u09b0\u09cd\u09aa\u09cd\u09b0\u099a\u09c7\u09b7\u09cd\u099f\u09be of satyajit 's films , a is considered as ."
+"-681.861 in 1989 , the \u0997\u09a3\u09b6\u09a4\u09cd\u09b0\u09c1 in this film his , \u09a4\u09c1\u09b2\u09a8\u09be\u09ae\u09c2\u09b2\u0995\u09ad\u09be\u09ac\u09c7 \u09a6\u09c1\u09b0\u09cd\u09ac\u09b2 and this \u09a6\u09c0\u09b0\u09cd\u0998\u09a6\u09bf\u09a8\u09c7\u09b0 \u0985\u09b8\u09c1\u09b8\u09cd\u09a5\u09a4\u09be\u09b6\u09c7\u09b7\u09c7 came back , after \u09aa\u09c1\u09a8\u09b0\u09cd\u09aa\u09cd\u09b0\u099a\u09c7\u09b7\u09cd\u099f\u09be of satyajit 's films , a is considered as ."
+"-681.877 in the year 1989 the \u0997\u09a3\u09b6\u09a4\u09cd\u09b0\u09c1 in this film his conducted \u09a4\u09c1\u09b2\u09a8\u09be\u09ae\u09c2\u09b2\u0995\u09ad\u09be\u09ac\u09c7 \u09a6\u09c1\u09b0\u09cd\u09ac\u09b2 and this \u09a6\u09c0\u09b0\u09cd\u0998\u09a6\u09bf\u09a8\u09c7\u09b0 \u0985\u09b8\u09c1\u09b8\u09cd\u09a5\u09a4\u09be\u09b6\u09c7\u09b7\u09c7 came back , after \u09aa\u09c1\u09a8\u09b0\u09cd\u09aa\u09cd\u09b0\u099a\u09c7\u09b7\u09cd\u099f\u09be of satyajit \u2019 s films , a is considered as ."
+"-681.886 in 1989 , the \u0997\u09a3\u09b6\u09a4\u09cd\u09b0\u09c1 film his conducted \u09a4\u09c1\u09b2\u09a8\u09be\u09ae\u09c2\u09b2\u0995\u09ad\u09be\u09ac\u09c7 \u09a6\u09c1\u09b0\u09cd\u09ac\u09b2 and this \u09a6\u09c0\u09b0\u09cd\u0998\u09a6\u09bf\u09a8\u09c7\u09b0 \u0985\u09b8\u09c1\u09b8\u09cd\u09a5\u09a4\u09be\u09b6\u09c7\u09b7\u09c7 came back , after \u09aa\u09c1\u09a8\u09b0\u09cd\u09aa\u09cd\u09b0\u099a\u09c7\u09b7\u09cd\u099f\u09be of satyajit \u2019 s films , a is considered as ."
+"-108.280 the \u09ac\u09b2\u09ac\u09bf\u09a6\u09cd\u09af\u09be"
+"-108.571 mathematical \u09ac\u09b2\u09ac\u09bf\u09a6\u09cd\u09af\u09be"
+"-109.025 \u2022 \u09ac\u09b2\u09ac\u09bf\u09a6\u09cd\u09af\u09be"
+"-109.415 . \u09ac\u09b2\u09ac\u09bf\u09a6\u09cd\u09af\u09be"
+"-110.926 \u09ac\u09b2\u09ac\u09bf\u09a6\u09cd\u09af\u09be mathematical theory ."
+"-113.178 mathematical theory . \u09ac\u09b2\u09ac\u09bf\u09a6\u09cd\u09af\u09be"
+"-126.793 other \u09b8\u09cd\u09ac\u09a4\u09cd\u09a4\u09cd\u09ac-\u09b8\u0982\u09b0\u0995\u09cd\u09b7\u09bf\u09a4 operating system like windows and mac os to linux in different different ."
+"-126.966 other \u09b8\u09cd\u09ac\u09a4\u09cd\u09a4\u09cd\u09ac-\u09b8\u0982\u09b0\u0995\u09cd\u09b7\u09bf\u09a4 operating systems like windows and mac os to linux in different different ."
+"-127.340 other \u09b8\u09cd\u09ac\u09a4\u09cd\u09a4\u09cd\u09ac-\u09b8\u0982\u09b0\u0995\u09cd\u09b7\u09bf\u09a4 operating system for windows and mac os to linux in different different ."
+"-127.419 other \u09b8\u09cd\u09ac\u09a4\u09cd\u09a4\u09cd\u09ac-\u09b8\u0982\u09b0\u0995\u09cd\u09b7\u09bf\u09a4 operating system such as windows and mac os to linux in different different ."
+"-127.754 other \u09b8\u09cd\u09ac\u09a4\u09cd\u09a4\u09cd\u09ac-\u09b8\u0982\u09b0\u0995\u09cd\u09b7\u09bf\u09a4 operating system like the windows and mac os to linux in different different ."
+"-127.852 other \u09b8\u09cd\u09ac\u09a4\u09cd\u09a4\u09cd\u09ac-\u09b8\u0982\u09b0\u0995\u09cd\u09b7\u09bf\u09a4 operating system like windows and mac os from linux in different different ."
+"-127.927 other \u09b8\u09cd\u09ac\u09a4\u09cd\u09a4\u09cd\u09ac-\u09b8\u0982\u09b0\u0995\u09cd\u09b7\u09bf\u09a4 operating systems like the windows and mac os to linux in different different ."
+"-128.024 other \u09b8\u09cd\u09ac\u09a4\u09cd\u09a4\u09cd\u09ac-\u09b8\u0982\u09b0\u0995\u09cd\u09b7\u09bf\u09a4 operating systems like windows and mac os from linux in different different ."
+"-128.239 other \u09b8\u09cd\u09ac\u09a4\u09cd\u09a4\u09cd\u09ac-\u09b8\u0982\u09b0\u0995\u09cd\u09b7\u09bf\u09a4 linux operating system like the windows and mac os to do their different ."
+"-128.260 other \u09b8\u09cd\u09ac\u09a4\u09cd\u09a4\u09cd\u09ac-\u09b8\u0982\u09b0\u0995\u09cd\u09b7\u09bf\u09a4 operating system like windows and mac os linux in different from different ."
+"-215.125 asia \u099f\u09be\u0987\u09ae\u09b8\u09c7\u09b0 \u09ad\u09be\u09b7\u09cd\u09af according to ,"
+"-215.700 asia \u099f\u09be\u0987\u09ae\u09b8\u09c7\u09b0 according to the \u09ad\u09be\u09b7\u09cd\u09af ,"
+"-216.133 asia \u099f\u09be\u0987\u09ae\u09b8\u09c7\u09b0 according to \u09ad\u09be\u09b7\u09cd\u09af ,"
+"-217.133 asia \u099f\u09be\u0987\u09ae\u09b8\u09c7\u09b0 \u09ad\u09be\u09b7\u09cd\u09af to the ,"
+"-217.215 asia \u099f\u09be\u0987\u09ae\u09b8\u09c7\u09b0 \u09ad\u09be\u09b7\u09cd\u09af to ,"
+"-217.239 asia \u099f\u09be\u0987\u09ae\u09b8\u09c7\u09b0 \u09ad\u09be\u09b7\u09cd\u09af according to the ,"
+"-217.435 the \u099f\u09be\u0987\u09ae\u09b8\u09c7\u09b0 \u09ad\u09be\u09b7\u09cd\u09af according to ,"
+"-218.010 the \u099f\u09be\u0987\u09ae\u09b8\u09c7\u09b0 according to the \u09ad\u09be\u09b7\u09cd\u09af ,"
+"-218.033 asia \u099f\u09be\u0987\u09ae\u09b8\u09c7\u09b0 \u09ad\u09be\u09b7\u09cd\u09af according to , ,"
+"-218.080 \u099f\u09be\u0987\u09ae\u09b8\u09c7\u09b0 asia \u09ad\u09be\u09b7\u09cd\u09af according to ,"
+"-461.854 open source or open source -lrb- open source -rrb- the money is computer software the source code or the \u09b8\u09be\u0982\u0995\u09c7\u09a4\u09bf\u0995 language open way \u09ac\u09bf\u09a4\u09b0\u09a3 to ."
+"-461.897 open source or open source -lrb- open source -rrb- the money is computer software the source code or main \u09b8\u09be\u0982\u0995\u09c7\u09a4\u09bf\u0995 language open way \u09ac\u09bf\u09a4\u09b0\u09a3 to ."
+"-462.229 open source or open source -lrb- open source -rrb- the money is computer software the source code or the \u09b8\u09be\u0982\u0995\u09c7\u09a4\u09bf\u0995 language open way \u09ac\u09bf\u09a4\u09b0\u09a3 is ."
+"-462.237 open source or open source -lrb- open source -rrb- the money is computer software the source code or the \u09b8\u09be\u0982\u0995\u09c7\u09a4\u09bf\u0995 language \u09ac\u09bf\u09a4\u09b0\u09a3 to open way ."
+"-462.272 open source or open source -lrb- open source -rrb- the money is computer software the source code or main \u09b8\u09be\u0982\u0995\u09c7\u09a4\u09bf\u0995 language open way \u09ac\u09bf\u09a4\u09b0\u09a3 is ."
+"-462.279 open source or open source -lrb- open source -rrb- the money is computer software the source code or main \u09b8\u09be\u0982\u0995\u09c7\u09a4\u09bf\u0995 language \u09ac\u09bf\u09a4\u09b0\u09a3 to open way ."
+"-462.343 open source or open source -lrb- open source -rrb- the money is the source code of computer software or main \u09b8\u09be\u0982\u0995\u09c7\u09a4\u09bf\u0995 language open way \u09ac\u09bf\u09a4\u09b0\u09a3 to ."
+"-462.350 open source or open source -lrb- open source -rrb- the money is computer software the source code or the \u09b8\u09be\u0982\u0995\u09c7\u09a4\u09bf\u0995 language free way \u09ac\u09bf\u09a4\u09b0\u09a3 to ."
+"-462.362 open source or open source -lrb- open source -rrb- the money is the source code of computer software or the \u09b8\u09be\u0982\u0995\u09c7\u09a4\u09bf\u0995 language open way \u09ac\u09bf\u09a4\u09b0\u09a3 to ."
+"-462.392 open source or open source -lrb- open source -rrb- the money is computer software the source code or main \u09b8\u09be\u0982\u0995\u09c7\u09a4\u09bf\u0995 language free way \u09ac\u09bf\u09a4\u09b0\u09a3 to ."
+"-107.382 bangladesh \u0985\u09a8\u09b2\u09be\u0987\u09a8\u09c7 dhaka"
+"-108.858 bangladesh \u0985\u09a8\u09b2\u09be\u0987\u09a8\u09c7 of dhaka"
+"-110.883 bangladesh \u0985\u09a8\u09b2\u09be\u0987\u09a8\u09c7 the"
+"-111.022 \u0985\u09a8\u09b2\u09be\u0987\u09a8\u09c7 dhaka of bangladesh"
+"-111.027 \u0985\u09a8\u09b2\u09be\u0987\u09a8\u09c7 of bangladesh dhaka"
+"-111.126 bangladesh dhaka \u0985\u09a8\u09b2\u09be\u0987\u09a8\u09c7"
+"-111.514 \u0985\u09a8\u09b2\u09be\u0987\u09a8\u09c7 bangladesh dhaka"
+"-111.709 bangladesh \u0985\u09a8\u09b2\u09be\u0987\u09a8\u09c7 activities of dhaka"
+"-112.113 bangladesh \u0985\u09a8\u09b2\u09be\u0987\u09a8\u09c7 dacca"
+"-112.178 \u0985\u09a8\u09b2\u09be\u0987\u09a8\u09c7 of dhaka of bangladesh"
+"-109.139 the first world war germany \u09b9\u09c7\u09b0\u09c7 can be seen ."
+"-109.520 the first world war germany \u09b9\u09c7\u09b0\u09c7 can be ."
+"-110.263 the first world war germany can be \u09b9\u09c7\u09b0\u09c7 ."
+"-110.711 the first world war german \u09b9\u09c7\u09b0\u09c7 can be seen ."
+"-111.092 the first world war german \u09b9\u09c7\u09b0\u09c7 can be ."
+"-111.122 germany the first world war \u09b9\u09c7\u09b0\u09c7 can be seen ."
+"-111.131 germany can be \u09b9\u09c7\u09b0\u09c7 the first world war ."
+"-111.437 the first world war germany \u09b9\u09c7\u09b0\u09c7 can be identified ."
+"-111.503 germany the first world war \u09b9\u09c7\u09b0\u09c7 can be ."
+"-111.598 first world war germany \u09b9\u09c7\u09b0\u09c7 can be seen ."
+"-32.160 but this subject is to understand for even research to going on ."
+"-32.389 but this subject is to understand for even research progress going on ."
+"-32.514 but this subject is to understand even for research to going on ."
+"-32.599 but this subject is to understand for presently research to going on ."
+"-32.608 but this subject is to understand presently for research to going on ."
+"-32.743 but this subject is to understand even for research progress going on ."
+"-32.828 but this subject is to understand for presently research progress going on ."
+"-32.836 but this subject is to understand presently for research progress going on ."
+"-33.085 but this subject is to for even research to going on ."
+"-33.109 but this is to understand for even research to going on ."
+"-103.288 \u09b8\u09c1\u09aa\u09be\u09b0\u098f\u0987\u099a"
+"-118.584 he was military forces for \u0986\u09a8\u09ab\u09bf\u099f was declared ."
+"-118.970 he was military forces for \u0986\u09a8\u09ab\u09bf\u099f declared was ."
+"-118.987 he was declared \u0986\u09a8\u09ab\u09bf\u099f for military forces ."
+"-119.007 he was military forces for \u0986\u09a8\u09ab\u09bf\u099f declared was made ."
+"-119.052 he was for military forces \u0986\u09a8\u09ab\u09bf\u099f was declared ."
+"-119.140 he was the military forces for \u0986\u09a8\u09ab\u09bf\u099f was declared ."
+"-119.195 he was military forces to \u0986\u09a8\u09ab\u09bf\u099f was declared ."
+"-119.315 he was military forces for \u0986\u09a8\u09ab\u09bf\u099f declared the ."
+"-119.424 he was military forces for \u0986\u09a8\u09ab\u09bf\u099f declared was created ."
+"-119.437 he was for military forces \u0986\u09a8\u09ab\u09bf\u099f declared was ."
+"-478.493 bhutto \u098f\u09cd\u09af\u09be\u09b8\u09c7\u09ae\u09cd\u09ac\u09b2\u09bf \u09ac\u09af\u09bc\u0995\u099f to 2.5 with announced that the yahya khan mujib was to form the government to \u099c\u09be\u09a8\u09be\u09b2\u09c7 he that government by \u09a8\u09c7\u09ac\u09c7\u09a8 not ."
+"-478.537 bhutto \u098f\u09cd\u09af\u09be\u09b8\u09c7\u09ae\u09cd\u09ac\u09b2\u09bf \u09ac\u09af\u09bc\u0995\u099f to 2.5 to form the government mujib announced that the yahya khan for for \u099c\u09be\u09a8\u09be\u09b2\u09c7 he that government by \u09a8\u09c7\u09ac\u09c7\u09a8 not ."
+"-478.680 bhutto \u098f\u09cd\u09af\u09be\u09b8\u09c7\u09ae\u09cd\u09ac\u09b2\u09bf \u09ac\u09af\u09bc\u0995\u099f to 2.5 with announced that the yahya khan mujib was to form the government for \u099c\u09be\u09a8\u09be\u09b2\u09c7 he that government by \u09a8\u09c7\u09ac\u09c7\u09a8 not ."
+"-478.753 bhutto \u098f\u09cd\u09af\u09be\u09b8\u09c7\u09ae\u09cd\u09ac\u09b2\u09bf \u09ac\u09af\u09bc\u0995\u099f to 2.5 with announced that the yahya khan mujib was to form the government to \u099c\u09be\u09a8\u09be\u09b2\u09c7 he that to by \u09a8\u09c7\u09ac\u09c7\u09a8 not ."
+"-478.796 bhutto \u098f\u09cd\u09af\u09be\u09b8\u09c7\u09ae\u09cd\u09ac\u09b2\u09bf \u09ac\u09af\u09bc\u0995\u099f to 2.5 to form the government mujib announced that the yahya khan for for \u099c\u09be\u09a8\u09be\u09b2\u09c7 he that to by \u09a8\u09c7\u09ac\u09c7\u09a8 not ."
+"-478.940 bhutto \u098f\u09cd\u09af\u09be\u09b8\u09c7\u09ae\u09cd\u09ac\u09b2\u09bf \u09ac\u09af\u09bc\u0995\u099f to 2.5 with announced that the yahya khan mujib was to form the government for \u099c\u09be\u09a8\u09be\u09b2\u09c7 he that to by \u09a8\u09c7\u09ac\u09c7\u09a8 not ."
+"-478.984 bhutto \u098f\u09cd\u09af\u09be\u09b8\u09c7\u09ae\u09cd\u09ac\u09b2\u09bf \u09ac\u09af\u09bc\u0995\u099f to 2.5 with announced that the yahya khan mujib was to form the government to \u099c\u09be\u09a8\u09be\u09b2\u09c7 he that government with \u09a8\u09c7\u09ac\u09c7\u09a8 not ."
+"-478.985 bhutto \u098f\u09cd\u09af\u09be\u09b8\u09c7\u09ae\u09cd\u09ac\u09b2\u09bf \u09ac\u09af\u09bc\u0995\u099f to 2.5 with announced that the yahya khan mujib for to form the government \u099c\u09be\u09a8\u09be\u09b2\u09c7 he that government by \u09a8\u09c7\u09ac\u09c7\u09a8 not ."
+"-479.021 bhutto \u098f\u09cd\u09af\u09be\u09b8\u09c7\u09ae\u09cd\u09ac\u09b2\u09bf \u09ac\u09af\u09bc\u0995\u099f to 2.5 to form the government mujib announced that that yahya khan for for \u099c\u09be\u09a8\u09be\u09b2\u09c7 he that government by \u09a8\u09c7\u09ac\u09c7\u09a8 not ."
+"-479.028 bhutto \u098f\u09cd\u09af\u09be\u09b8\u09c7\u09ae\u09cd\u09ac\u09b2\u09bf \u09ac\u09af\u09bc\u0995\u099f to 2.5 to form the government mujib announced that the yahya khan for for \u099c\u09be\u09a8\u09be\u09b2\u09c7 he that government with \u09a8\u09c7\u09ac\u09c7\u09a8 not ."
+"-217.956 and computer words money \u0997\u09a3\u09a8\u09be\u0995\u09be\u09b0\u09c0 machine ."
+"-218.249 the computer words money \u0997\u09a3\u09a8\u09be\u0995\u09be\u09b0\u09c0 machine ."
+"-218.350 and computer word meaning \u0997\u09a3\u09a8\u09be\u0995\u09be\u09b0\u09c0 machine ."
+"-218.435 and the computer words money \u0997\u09a3\u09a8\u09be\u0995\u09be\u09b0\u09c0 machine ."
+"-218.643 the computer word meaning \u0997\u09a3\u09a8\u09be\u0995\u09be\u09b0\u09c0 machine ."
+"-218.670 and computer words of the \u0997\u09a3\u09a8\u09be\u0995\u09be\u09b0\u09c0 machine ."
+"-218.829 and the computer word meaning \u0997\u09a3\u09a8\u09be\u0995\u09be\u09b0\u09c0 machine ."
+"-218.855 and computer words means \u0997\u09a3\u09a8\u09be\u0995\u09be\u09b0\u09c0 machine ."
+"-218.963 the computer words of the \u0997\u09a3\u09a8\u09be\u0995\u09be\u09b0\u09c0 machine ."
+"-219.032 and computer words meaning \u0997\u09a3\u09a8\u09be\u0995\u09be\u09b0\u09c0 machine ."
+"-236.748 on 4th july \u09e7\u09ed\u09ed\u09ec this constituents of a independence notice \u099c\u09be\u09b0\u09bf the ."
+"-236.808 on 4th july \u09e7\u09ed\u09ed\u09ec this colonies are a independence notice \u099c\u09be\u09b0\u09bf the ."
+"-236.813 \u09e7\u09ed\u09ed\u09ec on 4th july this constituents of a independence notice \u099c\u09be\u09b0\u09bf the ."
+"-236.833 on 4th july \u09e7\u09ed\u09ed\u09ec this constituents a independence notice \u099c\u09be\u09b0\u09bf the ."
+"-236.873 \u09e7\u09ed\u09ed\u09ec on 4th july this colonies are a independence notice \u099c\u09be\u09b0\u09bf the ."
+"-236.899 \u09e7\u09ed\u09ed\u09ec on 4th july this constituents a independence notice \u099c\u09be\u09b0\u09bf the ."
+"-237.042 on 4th july \u09e7\u09ed\u09ed\u09ec this constituents of a independence written proclamation \u099c\u09be\u09b0\u09bf the ."
+"-237.102 on 4th july \u09e7\u09ed\u09ed\u09ec this colonies are a independence written proclamation \u099c\u09be\u09b0\u09bf the ."
+"-237.108 \u09e7\u09ed\u09ed\u09ec on 4th july this constituents of a independence written proclamation \u099c\u09be\u09b0\u09bf the ."
+"-237.127 on 4th july \u09e7\u09ed\u09ed\u09ec this constituents a independence written proclamation \u099c\u09be\u09b0\u09bf the ."
+"-446.865 germany -lrb- in german : deutschland \u09a1\u09af\u09bc\u099a\u09cd the \u09b2\u09be\u09a8\u09cd\u099f\u09cd of pronounced [ d\u0254\u028ft\u0283lant through ] -rrb- is a country of europe ."
+"-447.278 germany -lrb- in german : deutschland \u09a1\u09af\u09bc\u099a\u09cd the \u09b2\u09be\u09a8\u09cd\u099f\u09cd of pronounced [ d\u0254\u028ft\u0283lant ] -rrb- through a country of europe ."
+"-447.639 germany -lrb- in german : deutschland \u09a1\u09af\u09bc\u099a\u09cd the \u09b2\u09be\u09a8\u09cd\u099f\u09cd of pronounced [ through d\u0254\u028ft\u0283lant ] -rrb- is a country of europe ."
+"-447.763 germany -lrb- in german : deutschland \u09a1\u09af\u09bc\u099a\u09cd the \u09b2\u09be\u09a8\u09cd\u099f\u09cd of pronounced [ d\u0254\u028ft\u0283lant through ] -rrb- is a country in europe ."
+"-447.852 germany -lrb- in german : deutschland \u09a1\u09af\u09bc\u099a\u09cd the \u09b2\u09be\u09a8\u09cd\u099f\u09cd of pronounced [ d\u0254\u028ft\u0283lant ] through -rrb- is a country of europe ."
+"-447.894 germany -lrb- in german : deutschland \u09a1\u09af\u09bc\u099a\u09cd the \u09b2\u09be\u09a8\u09cd\u099f\u09cd of through pronounced [ d\u0254\u028ft\u0283lant ] -rrb- is a country of europe ."
+"-447.969 germany -lrb- in german : deutschland \u09a1\u09af\u09bc\u099a\u09cd the \u09b2\u09be\u09a8\u09cd\u099f\u09cd of pronounced [ d\u0254\u028ft\u0283lant ] -rrb- the is a country of europe ."
+"-447.976 germany -lrb- in german : deutschland \u09a1\u09af\u09bc\u099a\u09cd the \u09b2\u09be\u09a8\u09cd\u099f\u09cd of pronounced [ d\u0254\u028ft\u0283lant ] -rrb- through is a country of europe ."
+"-448.142 germany -lrb- in german : deutschland \u09a1\u09af\u09bc\u099a\u09cd the \u09b2\u09be\u09a8\u09cd\u099f\u09cd of pronounced [ d\u0254\u028ft\u0283lant ] -rrb- middle is a country of europe ."
+"-448.203 germany -lrb- in german : deutschland \u09a1\u09af\u09bc\u099a\u09cd the \u09b2\u09be\u09a8\u09cd\u099f\u09cd of pronounced [ d\u0254\u028ft\u0283lant ] -rrb- central is a country of europe ."
+"-110.479 the main religion \u0996\u09cd\u09b0\u09bf\u09b8\u09cd\u099f\u09a7\u09b0\u09cd\u09ae from russia ."
+"-110.595 \u0996\u09cd\u09b0\u09bf\u09b8\u09cd\u099f\u09a7\u09b0\u09cd\u09ae the main religion ."
+"-110.737 \u0996\u09cd\u09b0\u09bf\u09b8\u09cd\u099f\u09a7\u09b0\u09cd\u09ae russia the main religion ."
+"-111.472 \u0996\u09cd\u09b0\u09bf\u09b8\u09cd\u099f\u09a7\u09b0\u09cd\u09ae russia main religion ."
+"-111.545 the main religion of \u0996\u09cd\u09b0\u09bf\u09b8\u09cd\u099f\u09a7\u09b0\u09cd\u09ae russia ."
+"-111.696 \u0996\u09cd\u09b0\u09bf\u09b8\u09cd\u099f\u09a7\u09b0\u09cd\u09ae the religion of russia ."
+"-111.802 the main religion \u0996\u09cd\u09b0\u09bf\u09b8\u09cd\u099f\u09a7\u09b0\u09cd\u09ae russia ."
+"-112.120 \u0996\u09cd\u09b0\u09bf\u09b8\u09cd\u099f\u09a7\u09b0\u09cd\u09ae russia of the main religion ."
+"-112.320 \u0996\u09cd\u09b0\u09bf\u09b8\u09cd\u099f\u09a7\u09b0\u09cd\u09ae russia the religion ."
+"-112.458 \u0996\u09cd\u09b0\u09bf\u09b8\u09cd\u099f\u09a7\u09b0\u09cd\u09ae the main religion of russia ."
+"-321.499 but \u0997\u09b2\u09a6\u09c7\u09b0 education \u09b0\u09cb\u09ae\u09be\u09a8\u09c0\u0995\u09b0\u09a3\u09c7\u09b0 \u0997\u09a4\u09bf was slow down ."
+"-322.246 but \u0997\u09b2\u09a6\u09c7\u09b0 the \u09b0\u09cb\u09ae\u09be\u09a8\u09c0\u0995\u09b0\u09a3\u09c7\u09b0 \u0997\u09a4\u09bf was slow down ."
+"-323.577 but \u0997\u09b2\u09a6\u09c7\u09b0 the educational \u09b0\u09cb\u09ae\u09be\u09a8\u09c0\u0995\u09b0\u09a3\u09c7\u09b0 \u0997\u09a4\u09bf was slow down ."
+"-323.606 but \u0997\u09b2\u09a6\u09c7\u09b0 the two \u09b0\u09cb\u09ae\u09be\u09a8\u09c0\u0995\u09b0\u09a3\u09c7\u09b0 \u0997\u09a4\u09bf was slow down ."
+"-323.608 but \u0997\u09b2\u09a6\u09c7\u09b0 are \u09b0\u09cb\u09ae\u09be\u09a8\u09c0\u0995\u09b0\u09a3\u09c7\u09b0 \u0997\u09a4\u09bf was slow down ."
+"-323.760 but \u0997\u09b2\u09a6\u09c7\u09b0 education \u09b0\u09cb\u09ae\u09be\u09a8\u09c0\u0995\u09b0\u09a3\u09c7\u09b0 \u0997\u09a4\u09bf was too slow ."
+"-323.936 but the \u0997\u09b2\u09a6\u09c7\u09b0 education \u09b0\u09cb\u09ae\u09be\u09a8\u09c0\u0995\u09b0\u09a3\u09c7\u09b0 \u0997\u09a4\u09bf was slow down ."
+"-324.047 but \u0997\u09b2\u09a6\u09c7\u09b0 's education \u09b0\u09cb\u09ae\u09be\u09a8\u09c0\u0995\u09b0\u09a3\u09c7\u09b0 \u0997\u09a4\u09bf was slow down ."
+"-324.089 but \u0997\u09b2\u09a6\u09c7\u09b0 education \u09b0\u09cb\u09ae\u09be\u09a8\u09c0\u0995\u09b0\u09a3\u09c7\u09b0 \u0997\u09a4\u09bf was become slow ."
+"-324.129 but \u0997\u09b2\u09a6\u09c7\u09b0 \u09b0\u09cb\u09ae\u09be\u09a8\u09c0\u0995\u09b0\u09a3\u09c7\u09b0 education \u0997\u09a4\u09bf was slow down ."
+"-4.645 subject category : gnu foundation"
+"-5.747 subject class : gnu foundation"
+"-5.884 subject matter : gnu foundation"
+"-6.057 subject : gnu foundation"
+"-6.361 subject category : gonu foundation"
+"-6.519 category : gnu foundation"
+"-6.886 subject category : the gnu foundation"
+"-6.965 special class : gnu foundation"
+"-7.280 subject category : by foundation"
+"-7.292 subject class : the gnu foundation"
+"-124.215 economic policy and revenue \u09a8\u09c0\u09a4\u09bf\u0995\u09c7\u0993 it study the ."
+"-124.324 economic policy and tax \u09a8\u09c0\u09a4\u09bf\u0995\u09c7\u0993 it study the ."
+"-124.637 economic policy and tax revenue \u09a8\u09c0\u09a4\u09bf\u0995\u09c7\u0993 it study the ."
+"-125.264 economic policy and for \u09a8\u09c0\u09a4\u09bf\u0995\u09c7\u0993 it study the ."
+"-125.376 economic policy and revenue \u09a8\u09c0\u09a4\u09bf\u0995\u09c7\u0993 this study the ."
+"-125.398 economic policy and revenue \u09a8\u09c0\u09a4\u09bf\u0995\u09c7\u0993 it study by the ."
+"-125.403 economic policy and revenue \u09a8\u09c0\u09a4\u09bf\u0995\u09c7\u0993 it study ."
+"-125.486 economic policy and tax \u09a8\u09c0\u09a4\u09bf\u0995\u09c7\u0993 this study the ."
+"-125.507 economic policy and revenue \u09a8\u09c0\u09a4\u09bf\u0995\u09c7\u0993 it study in the ."
+"-125.508 economic policy and tax \u09a8\u09c0\u09a4\u09bf\u0995\u09c7\u0993 it study by the ."
+"-335.374 among these there are : may be \u09a4\u09cb\u09ae\u09be\u09b0 get seen \u0993\u09b0\u09c7 this any \u09b8\u09cd\u09a8\u09c7\u09b9-\u09b8\u09c1\u09b0\u09a7\u09c1\u09a8\u09c0 ."
+"-335.614 among these there are : may be \u09a4\u09cb\u09ae\u09be\u09b0 get is \u0993\u09b0\u09c7 this any \u09b8\u09cd\u09a8\u09c7\u09b9-\u09b8\u09c1\u09b0\u09a7\u09c1\u09a8\u09c0 ."
+"-335.670 among these there are : may be \u09a4\u09cb\u09ae\u09be\u09b0 will get seen \u0993\u09b0\u09c7 this any \u09b8\u09cd\u09a8\u09c7\u09b9-\u09b8\u09c1\u09b0\u09a7\u09c1\u09a8\u09c0 ."
+"-335.763 among these there are : would have \u09a4\u09cb\u09ae\u09be\u09b0 get seen \u0993\u09b0\u09c7 this any \u09b8\u09cd\u09a8\u09c7\u09b9-\u09b8\u09c1\u09b0\u09a7\u09c1\u09a8\u09c0 ."
+"-335.855 among these there are : may be \u09a4\u09cb\u09ae\u09be\u09b0 numbers is \u0993\u09b0\u09c7 this any \u09b8\u09cd\u09a8\u09c7\u09b9-\u09b8\u09c1\u09b0\u09a7\u09c1\u09a8\u09c0 ."
+"-335.910 among these there are : may be \u09a4\u09cb\u09ae\u09be\u09b0 will get is \u0993\u09b0\u09c7 this any \u09b8\u09cd\u09a8\u09c7\u09b9-\u09b8\u09c1\u09b0\u09a7\u09c1\u09a8\u09c0 ."
+"-336.003 among these there are : would have \u09a4\u09cb\u09ae\u09be\u09b0 get is \u0993\u09b0\u09c7 this any \u09b8\u09cd\u09a8\u09c7\u09b9-\u09b8\u09c1\u09b0\u09a7\u09c1\u09a8\u09c0 ."
+"-336.003 among these there are : may be \u09a4\u09cb\u09ae\u09be\u09b0 get seen \u0993\u09b0\u09c7 this no \u09b8\u09cd\u09a8\u09c7\u09b9-\u09b8\u09c1\u09b0\u09a7\u09c1\u09a8\u09c0 ."
+"-336.059 among these there are : would have \u09a4\u09cb\u09ae\u09be\u09b0 will get seen \u0993\u09b0\u09c7 this any \u09b8\u09cd\u09a8\u09c7\u09b9-\u09b8\u09c1\u09b0\u09a7\u09c1\u09a8\u09c0 ."
+"-336.104 among these there are : may be \u09a4\u09cb\u09ae\u09be\u09b0 get it \u0993\u09b0\u09c7 this any \u09b8\u09cd\u09a8\u09c7\u09b9-\u09b8\u09c1\u09b0\u09a7\u09c1\u09a8\u09c0 ."
+"-13.054 on 23rd april 1992 satyajit died ."
+"-13.371 on 23rd april 1992 satyajit expired ."
+"-13.855 on 23rd april 1992 satyajit passed away ."
+"-15.479 , on 23rd april 1992 satyajit died ."
+"-15.796 , on 23rd april 1992 satyajit expired ."
+"-15.822 on 23rd april , 1992 satyajit died ."
+"-15.978 satyajit died on 23rd april 1992 ."
+"-16.140 on 23rd april , 1992 satyajit expired ."
+"-16.243 died on 23rd april 1992 satyajit ."
+"-16.280 , on 23rd april 1992 satyajit passed away ."
+"-232.362 at this time nazrul 's medical \u09b0\u09bf\u09aa\u09cb\u09b0\u09cd\u099f stay famous \u099a\u09bf\u0995\u09bf\u09ce\u09b8\u0995\u09a6\u09c7\u09b0 to send to ."
+"-232.364 during this time nazrul 's medical \u09b0\u09bf\u09aa\u09cb\u09b0\u09cd\u099f stay famous \u099a\u09bf\u0995\u09bf\u09ce\u09b8\u0995\u09a6\u09c7\u09b0 to send to ."
+"-232.423 at this time nazrul medical \u09b0\u09bf\u09aa\u09cb\u09b0\u09cd\u099f stay famous \u099a\u09bf\u0995\u09bf\u09ce\u09b8\u0995\u09a6\u09c7\u09b0 to send to ."
+"-232.424 during this time nazrul medical \u09b0\u09bf\u09aa\u09cb\u09b0\u09cd\u099f stay famous \u099a\u09bf\u0995\u09bf\u09ce\u09b8\u0995\u09a6\u09c7\u09b0 to send to ."
+"-232.483 at this time nazrul 's medical \u09b0\u09bf\u09aa\u09cb\u09b0\u09cd\u099f stay famous \u099a\u09bf\u0995\u09bf\u09ce\u09b8\u0995\u09a6\u09c7\u09b0 to sent to ."
+"-232.485 during this time nazrul 's medical \u09b0\u09bf\u09aa\u09cb\u09b0\u09cd\u099f stay famous \u099a\u09bf\u0995\u09bf\u09ce\u09b8\u0995\u09a6\u09c7\u09b0 to sent to ."
+"-232.544 at this time nazrul medical \u09b0\u09bf\u09aa\u09cb\u09b0\u09cd\u099f stay famous \u099a\u09bf\u0995\u09bf\u09ce\u09b8\u0995\u09a6\u09c7\u09b0 to sent to ."
+"-232.545 during this time nazrul medical \u09b0\u09bf\u09aa\u09cb\u09b0\u09cd\u099f stay famous \u099a\u09bf\u0995\u09bf\u09ce\u09b8\u0995\u09a6\u09c7\u09b0 to sent to ."
+"-232.634 at this time , nazrul 's medical \u09b0\u09bf\u09aa\u09cb\u09b0\u09cd\u099f stay famous \u099a\u09bf\u0995\u09bf\u09ce\u09b8\u0995\u09a6\u09c7\u09b0 to send to ."
+"-232.659 at this time nazrul 's medical \u09b0\u09bf\u09aa\u09cb\u09b0\u09cd\u099f earning famous \u099a\u09bf\u0995\u09bf\u09ce\u09b8\u0995\u09a6\u09c7\u09b0 to send to ."
+"-338.434 other than acted at different times rani \u09ae\u09c1\u0996\u09be\u09b0\u09cd\u099c\u09c0 different \u09a6\u09be\u09a4\u09ac\u09cd\u09af are connected with \u09a5\u09c7\u0995\u09c7\u099b\u09c7\u09a8 ."
+"-338.715 apart from acted at different times rani \u09ae\u09c1\u0996\u09be\u09b0\u09cd\u099c\u09c0 different \u09a6\u09be\u09a4\u09ac\u09cd\u09af are connected with \u09a5\u09c7\u0995\u09c7\u099b\u09c7\u09a8 ."
+"-339.387 acted other than at different times rani \u09ae\u09c1\u0996\u09be\u09b0\u09cd\u099c\u09c0 different \u09a6\u09be\u09a4\u09ac\u09cd\u09af are connected with \u09a5\u09c7\u0995\u09c7\u099b\u09c7\u09a8 ."
+"-339.443 acted , at different times rani \u09ae\u09c1\u0996\u09be\u09b0\u09cd\u099c\u09c0 different \u09a6\u09be\u09a4\u09ac\u09cd\u09af are connected with \u09a5\u09c7\u0995\u09c7\u099b\u09c7\u09a8 ."
+"-339.508 acted apart from at different times rani \u09ae\u09c1\u0996\u09be\u09b0\u09cd\u099c\u09c0 different \u09a6\u09be\u09a4\u09ac\u09cd\u09af are connected with \u09a5\u09c7\u0995\u09c7\u099b\u09c7\u09a8 ."
+"-339.589 other than acted rani at different times \u09ae\u09c1\u0996\u09be\u09b0\u09cd\u099c\u09c0 different \u09a6\u09be\u09a4\u09ac\u09cd\u09af are connected with \u09a5\u09c7\u0995\u09c7\u099b\u09c7\u09a8 ."
+"-339.622 acted in at different times rani \u09ae\u09c1\u0996\u09be\u09b0\u09cd\u099c\u09c0 different \u09a6\u09be\u09a4\u09ac\u09cd\u09af are connected with \u09a5\u09c7\u0995\u09c7\u099b\u09c7\u09a8 ."
+"-339.760 acted in different times rani \u09ae\u09c1\u0996\u09be\u09b0\u09cd\u099c\u09c0 different \u09a6\u09be\u09a4\u09ac\u09cd\u09af are connected with \u09a5\u09c7\u0995\u09c7\u099b\u09c7\u09a8 ."
+"-339.774 other than acted rani \u09ae\u09c1\u0996\u09be\u09b0\u09cd\u099c\u09c0 at different times different \u09a6\u09be\u09a4\u09ac\u09cd\u09af are connected with \u09a5\u09c7\u0995\u09c7\u099b\u09c7\u09a8 ."
+"-339.815 other than acted at different times rani \u09ae\u09c1\u0996\u09be\u09b0\u09cd\u099c\u09c0 various \u09a6\u09be\u09a4\u09ac\u09cd\u09af are connected with \u09a5\u09c7\u0995\u09c7\u099b\u09c7\u09a8 ."
+"-358.420 bengali literature and culture a special contribution on \u09b8\u09cd\u09ac\u09c0\u0995\u09c3\u09a4\u09bf\u09b8\u09cd\u09ac\u09b0\u09c1\u09aa year on 9th december , dhaka university he was honorary \u09a1\u09bf.\u09b2\u09bf\u099f \u0989\u09aa\u09be\u09a7\u09bf\u09a4\u09c7 awarded with the ."
+"-358.507 bengali literature and culture his special contribution on \u09b8\u09cd\u09ac\u09c0\u0995\u09c3\u09a4\u09bf\u09b8\u09cd\u09ac\u09b0\u09c1\u09aa year on 9th december , dhaka university he was honorary \u09a1\u09bf.\u09b2\u09bf\u099f \u0989\u09aa\u09be\u09a7\u09bf\u09a4\u09c7 awarded with the ."
+"-359.122 bengali literature and culture in special contribution on \u09b8\u09cd\u09ac\u09c0\u0995\u09c3\u09a4\u09bf\u09b8\u09cd\u09ac\u09b0\u09c1\u09aa year on 9th december , dhaka university he was honorary \u09a1\u09bf.\u09b2\u09bf\u099f \u0989\u09aa\u09be\u09a7\u09bf\u09a4\u09c7 awarded with the ."
+"-359.274 bengali literature and culture a special contribution on \u09b8\u09cd\u09ac\u09c0\u0995\u09c3\u09a4\u09bf\u09b8\u09cd\u09ac\u09b0\u09c1\u09aa on 9th december of year on dhaka university he was honorary \u09a1\u09bf.\u09b2\u09bf\u099f \u0989\u09aa\u09be\u09a7\u09bf\u09a4\u09c7 awarded with the ."
+"-359.359 bengali literature and culture a special contribution on \u09b8\u09cd\u09ac\u09c0\u0995\u09c3\u09a4\u09bf\u09b8\u09cd\u09ac\u09b0\u09c1\u09aa year on 9th december , dhaka university he honorary \u09a1\u09bf.\u09b2\u09bf\u099f \u0989\u09aa\u09be\u09a7\u09bf\u09a4\u09c7 awarded with the ."
+"-359.360 bengali literature and culture his special contribution on \u09b8\u09cd\u09ac\u09c0\u0995\u09c3\u09a4\u09bf\u09b8\u09cd\u09ac\u09b0\u09c1\u09aa on 9th december of year on dhaka university he was honorary \u09a1\u09bf.\u09b2\u09bf\u099f \u0989\u09aa\u09be\u09a7\u09bf\u09a4\u09c7 awarded with the ."
+"-359.371 bengali literature and culture a special contribution on \u09b8\u09cd\u09ac\u09c0\u0995\u09c3\u09a4\u09bf\u09b8\u09cd\u09ac\u09b0\u09c1\u09aa year on 9th december , dhaka university was honorary \u09a1\u09bf.\u09b2\u09bf\u099f \u0989\u09aa\u09be\u09a7\u09bf\u09a4\u09c7 awarded with the ."
+"-359.445 bengali literature and culture his special contribution on \u09b8\u09cd\u09ac\u09c0\u0995\u09c3\u09a4\u09bf\u09b8\u09cd\u09ac\u09b0\u09c1\u09aa year on 9th december , dhaka university he honorary \u09a1\u09bf.\u09b2\u09bf\u099f \u0989\u09aa\u09be\u09a7\u09bf\u09a4\u09c7 awarded with the ."
+"-359.450 bengali literature and culture a special contribution on \u09b8\u09cd\u09ac\u09c0\u0995\u09c3\u09a4\u09bf\u09b8\u09cd\u09ac\u09b0\u09c1\u09aa year on 9th december , he was dhaka university honorary \u09a1\u09bf.\u09b2\u09bf\u099f \u0989\u09aa\u09be\u09a7\u09bf\u09a4\u09c7 awarded with the ."
+"-359.454 bengali literature and culture in his special contribution on \u09b8\u09cd\u09ac\u09c0\u0995\u09c3\u09a4\u09bf\u09b8\u09cd\u09ac\u09b0\u09c1\u09aa year on 9th december , dhaka university he was honorary \u09a1\u09bf.\u09b2\u09bf\u099f \u0989\u09aa\u09be\u09a7\u09bf\u09a4\u09c7 awarded with the ."
+"-131.010 in kolkata durga puja tourism \u0986\u0995\u09b0\u09cd\u09b7\u09a3\u0993 of the city is also a reason"
+"-131.047 kolkata durga puja tourism \u0986\u0995\u09b0\u09cd\u09b7\u09a3\u0993 of the city is also a reason"
+"-131.601 kolkata 's durga puja tourism \u0986\u0995\u09b0\u09cd\u09b7\u09a3\u0993 of the city is also a reason"
+"-131.652 the durga puja tourism \u0986\u0995\u09b0\u09cd\u09b7\u09a3\u0993 of the city is also a reason"
+"-131.669 the kolkata durga puja tourism \u0986\u0995\u09b0\u09cd\u09b7\u09a3\u0993 of the city is also a reason"
+"-131.792 in kolkata durga puja of the city tourism \u0986\u0995\u09b0\u09cd\u09b7\u09a3\u0993 is also a reason"
+"-131.829 kolkata durga puja of the city tourism \u0986\u0995\u09b0\u09cd\u09b7\u09a3\u0993 is also a reason"
+"-131.843 in kolkata durga puja city of tourists spot \u0986\u0995\u09b0\u09cd\u09b7\u09a3\u0993 is also a reason"
+"-131.880 kolkata durga puja city of tourists spot \u0986\u0995\u09b0\u09cd\u09b7\u09a3\u0993 is also a reason"
+"-131.921 in kolkata durga puja city of tourism \u0986\u0995\u09b0\u09cd\u09b7\u09a3\u0993 is also a reason"
+"-38.023 but many people of east germany started living in economically reach and democratic west germany , east germany government built a wall in berlin in 1961 and reinforced its boundaries ."
+"-38.234 but many of east german started living in economically reach and democratic west germany , east germany government built a wall in berlin in 1961 and reinforced its boundaries ."
+"-38.458 but many people of east german started living in economically reach and democratic west germany , east germany government built a wall in berlin in 1961 and reinforced its boundaries ."
+"-39.049 but when millions of east german started living in economically reach and democratic west germany , east germany government built a wall in berlin in 1961 and reinforced its boundaries ."
+"-39.625 but when lakhs of east german started living in economically reach and democratic west germany , east germany government built a wall in berlin in 1961 and reinforced its boundaries ."
+"-39.901 but many of east germany started living in economically reach and democratic west germany , east germany government built a wall in berlin in 1961 and reinforced its boundaries ."
+"-40.562 but when people of east germany started living in economically reach and democratic west germany , east germany government built a wall in berlin in 1961 and reinforced its boundaries ."
+"-40.614 but when lakhs east german started living in economically reach and democratic west germany , east germany government built a wall in berlin in 1961 and reinforced its boundaries ."
+"-40.743 but many lakhs of east german started living in economically reach and democratic west germany , east germany government built a wall in berlin in 1961 and reinforced its boundaries ."
+"-40.786 but when of east german started living in economically reach and democratic west germany , east germany government built a wall in berlin in 1961 and reinforced its boundaries ."
+"-900.700 the first one is the film \u09a8\u09bf\u09b0\u09cd\u09ac\u09be\u0995 first seven \u09ae\u09bf\u09a8\u09bf\u099f which \u099a\u09be\u09b0\u09c1\u09b0 \u098f\u0995\u0998\u09c7\u09af\u09bc\u09c7\u09ae\u09bf life shown level and the second one is " the \u09a6\u09cb\u09b2\u09a8\u09be\u09b0 scene " where \u099a\u09be\u09b0\u09c1 \u0985\u09ae\u09b2\u09c7\u09b0 for his love \u09ae\u09c1\u0996\u09cb\u09ae\u09c1\u0996\u09bf in ."
+"-900.869 the first one is the film \u09a8\u09bf\u09b0\u09cd\u09ac\u09be\u0995 first seven \u09ae\u09bf\u09a8\u09bf\u099f which \u099a\u09be\u09b0\u09c1\u09b0 \u098f\u0995\u0998\u09c7\u09af\u09bc\u09c7\u09ae\u09bf life shown level and the second one is " the \u09a6\u09cb\u09b2\u09a8\u09be\u09b0 scene " where \u099a\u09be\u09b0\u09c1 \u0985\u09ae\u09b2\u09c7\u09b0 for his love \u09ae\u09c1\u0996\u09cb\u09ae\u09c1\u0996\u09bf the ."
+"-900.942 the first one is the film \u09a8\u09bf\u09b0\u09cd\u09ac\u09be\u0995 first seven \u09ae\u09bf\u09a8\u09bf\u099f which \u099a\u09be\u09b0\u09c1\u09b0 \u098f\u0995\u0998\u09c7\u09af\u09bc\u09c7\u09ae\u09bf life shown them and the second one is " the \u09a6\u09cb\u09b2\u09a8\u09be\u09b0 scene " where \u099a\u09be\u09b0\u09c1 \u0985\u09ae\u09b2\u09c7\u09b0 for his love \u09ae\u09c1\u0996\u09cb\u09ae\u09c1\u0996\u09bf in ."
+"-900.963 the first one is the film \u09a8\u09bf\u09b0\u09cd\u09ac\u09be\u0995 first seven \u09ae\u09bf\u09a8\u09bf\u099f which \u099a\u09be\u09b0\u09c1\u09b0 \u098f\u0995\u0998\u09c7\u09af\u09bc\u09c7\u09ae\u09bf life shown level and the second one is " the \u09a6\u09cb\u09b2\u09a8\u09be\u09b0 scene , " , where \u099a\u09be\u09b0\u09c1 \u0985\u09ae\u09b2\u09c7\u09b0 for his love \u09ae\u09c1\u0996\u09cb\u09ae\u09c1\u0996\u09bf in ."
+"-901.052 the first one is the film \u09a8\u09bf\u09b0\u09cd\u09ac\u09be\u0995 first seven \u09ae\u09bf\u09a8\u09bf\u099f which \u099a\u09be\u09b0\u09c1\u09b0 \u098f\u0995\u0998\u09c7\u09af\u09bc\u09c7\u09ae\u09bf life shown sound and the second one is " the \u09a6\u09cb\u09b2\u09a8\u09be\u09b0 scene " where \u099a\u09be\u09b0\u09c1 \u0985\u09ae\u09b2\u09c7\u09b0 for his love \u09ae\u09c1\u0996\u09cb\u09ae\u09c1\u0996\u09bf in ."
+"-901.110 the first one is the film \u09a8\u09bf\u09b0\u09cd\u09ac\u09be\u0995 first seven \u09ae\u09bf\u09a8\u09bf\u099f which \u099a\u09be\u09b0\u09c1\u09b0 \u098f\u0995\u0998\u09c7\u09af\u09bc\u09c7\u09ae\u09bf life shown level and second one is " the \u09a6\u09cb\u09b2\u09a8\u09be\u09b0 scene " where \u099a\u09be\u09b0\u09c1 \u0985\u09ae\u09b2\u09c7\u09b0 for his love \u09ae\u09c1\u0996\u09cb\u09ae\u09c1\u0996\u09bf in ."
+"-901.111 the first one is the film \u09a8\u09bf\u09b0\u09cd\u09ac\u09be\u0995 first seven \u09ae\u09bf\u09a8\u09bf\u099f which \u099a\u09be\u09b0\u09c1\u09b0 \u098f\u0995\u0998\u09c7\u09af\u09bc\u09c7\u09ae\u09bf life shown them and the second one is " the \u09a6\u09cb\u09b2\u09a8\u09be\u09b0 scene " where \u099a\u09be\u09b0\u09c1 \u0985\u09ae\u09b2\u09c7\u09b0 for his love \u09ae\u09c1\u0996\u09cb\u09ae\u09c1\u0996\u09bf the ."
+"-901.132 the first one is the film \u09a8\u09bf\u09b0\u09cd\u09ac\u09be\u0995 first seven \u09ae\u09bf\u09a8\u09bf\u099f which \u099a\u09be\u09b0\u09c1\u09b0 \u098f\u0995\u0998\u09c7\u09af\u09bc\u09c7\u09ae\u09bf life shown level and the second one is " the \u09a6\u09cb\u09b2\u09a8\u09be\u09b0 scene , " , where \u099a\u09be\u09b0\u09c1 \u0985\u09ae\u09b2\u09c7\u09b0 for his love \u09ae\u09c1\u0996\u09cb\u09ae\u09c1\u0996\u09bf the ."
+"-901.177 the first one is the film \u09a8\u09bf\u09b0\u09cd\u09ac\u09be\u0995 first seven \u09ae\u09bf\u09a8\u09bf\u099f which \u099a\u09be\u09b0\u09c1\u09b0 \u098f\u0995\u0998\u09c7\u09af\u09bc\u09c7\u09ae\u09bf life shown level and the second one is " the \u09a6\u09cb\u09b2\u09a8\u09be\u09b0 scene " where \u099a\u09be\u09b0\u09c1 \u0985\u09ae\u09b2\u09c7\u09b0 for his love \u09ae\u09c1\u0996\u09cb\u09ae\u09c1\u0996\u09bf in the ."
+"-901.205 the first one is the film \u09a8\u09bf\u09b0\u09cd\u09ac\u09be\u0995 first seven \u09ae\u09bf\u09a8\u09bf\u099f which \u099a\u09be\u09b0\u09c1\u09b0 \u098f\u0995\u0998\u09c7\u09af\u09bc\u09c7\u09ae\u09bf life shown them and the second one is " the \u09a6\u09cb\u09b2\u09a8\u09be\u09b0 scene , " , where \u099a\u09be\u09b0\u09c1 \u0985\u09ae\u09b2\u09c7\u09b0 for his love \u09ae\u09c1\u0996\u09cb\u09ae\u09c1\u0996\u09bf in ."
+"-251.701 a group of 18th century the \u099a\u09bf\u09a8\u09cd\u09a4\u09be\u09ac\u09bf\u09a6 and writer income and production \u099a\u0995\u09cd\u09b0\u09be\u0995\u09be\u09b0 current through economic thoughts development it ."
+"-251.890 a group of 18th century the \u099a\u09bf\u09a8\u09cd\u09a4\u09be\u09ac\u09bf\u09a6 and writer income and production \u099a\u0995\u09cd\u09b0\u09be\u0995\u09be\u09b0 current through economic thoughts development people ."
+"-252.122 a group of 18th century the \u099a\u09bf\u09a8\u09cd\u09a4\u09be\u09ac\u09bf\u09a6 and writer income and production \u099a\u0995\u09cd\u09b0\u09be\u0995\u09be\u09b0 current through the economic thoughts development it ."
+"-252.311 a group of 18th century the \u099a\u09bf\u09a8\u09cd\u09a4\u09be\u09ac\u09bf\u09a6 and writer income and production \u099a\u0995\u09cd\u09b0\u09be\u0995\u09be\u09b0 current through the economic thoughts development people ."
+"-252.494 a group of 18th century the writer of \u099a\u09bf\u09a8\u09cd\u09a4\u09be\u09ac\u09bf\u09a6 and income and production \u099a\u0995\u09cd\u09b0\u09be\u0995\u09be\u09b0 current through economic thoughts development it ."
+"-252.561 a group of 18th century the \u099a\u09bf\u09a8\u09cd\u09a4\u09be\u09ac\u09bf\u09a6 and writer income and \u099a\u0995\u09cd\u09b0\u09be\u0995\u09be\u09b0 of production current through economic thoughts development it ."
+"-252.624 a group of 18 century the \u099a\u09bf\u09a8\u09cd\u09a4\u09be\u09ac\u09bf\u09a6 and writer income and production \u099a\u0995\u09cd\u09b0\u09be\u0995\u09be\u09b0 current through economic thoughts development it ."
+"-252.684 a group of 18th century the writer of \u099a\u09bf\u09a8\u09cd\u09a4\u09be\u09ac\u09bf\u09a6 and income and production \u099a\u0995\u09cd\u09b0\u09be\u0995\u09be\u09b0 current through economic thoughts development people ."
+"-252.750 a group of 18th century the \u099a\u09bf\u09a8\u09cd\u09a4\u09be\u09ac\u09bf\u09a6 and writer income and \u099a\u0995\u09cd\u09b0\u09be\u0995\u09be\u09b0 of production current through economic thoughts development people ."
+"-252.813 a group of 18 century the \u099a\u09bf\u09a8\u09cd\u09a4\u09be\u09ac\u09bf\u09a6 and writer income and production \u099a\u0995\u09cd\u09b0\u09be\u0995\u09be\u09b0 current through economic thoughts development people ."
+"-16.182 the arousal activities before penetrating male organ into vagina is called foreplay ."
+"-17.804 the arousal activities before penetrating male organ into vagina is known as foreplay ."
+"-17.851 the arousal activities before penetrating male organ into vagina is called as foreplay ."
+"-18.301 excitement before entering penis in to vagina is called as shringar ."
+"-18.399 the arousal activities before penetrating male organ into vagina is called the foreplay ."
+"-18.745 vagina during arousal activities before penetrating male organ into vagina is called foreplay ."
+"-18.916 the arousal activities before penetrating male organ into vagina is called as the foreplay ."
+"-18.991 the arousal activities before penetrating male organ into vagina is called stimulation ."
+"-19.853 the arousal activities before penetrating male organ into vagina is called as shringar ."
+"-19.859 vagina arousal activities before penetrating male organ into vagina is called foreplay ."
+"-341.900 it is mainly \u09b6\u09c2\u0995\u09b0\u09c7\u09b0 in in was which can \u09b6\u09c2\u0995\u09b0\u0995\u09c7 \u0987\u09a8\u09ab\u09cd\u09b2\u09c1\u09af\u09bc\u09c7\u099e\u09cd\u099c\u09be\u09a4\u09c7 affected by british ."
+"-342.098 it is mainly \u09b6\u09c2\u0995\u09b0\u09c7\u09b0 in in was which can \u09b6\u09c2\u0995\u09b0\u0995\u09c7 \u0987\u09a8\u09ab\u09cd\u09b2\u09c1\u09af\u09bc\u09c7\u099e\u09cd\u099c\u09be\u09a4\u09c7 by british ."
+"-342.401 it is mainly \u09b6\u09c2\u0995\u09b0\u09c7\u09b0 in in was which can \u09b6\u09c2\u0995\u09b0\u0995\u09c7 \u0987\u09a8\u09ab\u09cd\u09b2\u09c1\u09af\u09bc\u09c7\u099e\u09cd\u099c\u09be\u09a4\u09c7 infected by british ."
+"-342.474 it is basically \u09b6\u09c2\u0995\u09b0\u09c7\u09b0 in in was which can \u09b6\u09c2\u0995\u09b0\u0995\u09c7 \u0987\u09a8\u09ab\u09cd\u09b2\u09c1\u09af\u09bc\u09c7\u099e\u09cd\u099c\u09be\u09a4\u09c7 affected by british ."
+"-342.625 it is mainly \u09b6\u09c2\u0995\u09b0\u09c7\u09b0 in in which was which can \u09b6\u09c2\u0995\u09b0\u0995\u09c7 \u0987\u09a8\u09ab\u09cd\u09b2\u09c1\u09af\u09bc\u09c7\u099e\u09cd\u099c\u09be\u09a4\u09c7 affected by british ."
+"-342.672 it is basically \u09b6\u09c2\u0995\u09b0\u09c7\u09b0 in in was which can \u09b6\u09c2\u0995\u09b0\u0995\u09c7 \u0987\u09a8\u09ab\u09cd\u09b2\u09c1\u09af\u09bc\u09c7\u099e\u09cd\u099c\u09be\u09a4\u09c7 by british ."
+"-342.823 it is mainly \u09b6\u09c2\u0995\u09b0\u09c7\u09b0 in in which was which can \u09b6\u09c2\u0995\u09b0\u0995\u09c7 \u0987\u09a8\u09ab\u09cd\u09b2\u09c1\u09af\u09bc\u09c7\u099e\u09cd\u099c\u09be\u09a4\u09c7 by british ."
+"-342.966 it is mainly \u09b6\u09c2\u0995\u09b0\u09c7\u09b0 in in in which can \u09b6\u09c2\u0995\u09b0\u0995\u09c7 \u0987\u09a8\u09ab\u09cd\u09b2\u09c1\u09af\u09bc\u09c7\u099e\u09cd\u099c\u09be\u09a4\u09c7 affected by british ."
+"-342.975 it is basically \u09b6\u09c2\u0995\u09b0\u09c7\u09b0 in in was which can \u09b6\u09c2\u0995\u09b0\u0995\u09c7 \u0987\u09a8\u09ab\u09cd\u09b2\u09c1\u09af\u09bc\u09c7\u099e\u09cd\u099c\u09be\u09a4\u09c7 infected by british ."
+"-342.986 it is mainly \u09b6\u09c2\u0995\u09b0\u09c7\u09b0 in to was which can \u09b6\u09c2\u0995\u09b0\u0995\u09c7 \u0987\u09a8\u09ab\u09cd\u09b2\u09c1\u09af\u09bc\u09c7\u099e\u09cd\u099c\u09be\u09a4\u09c7 affected by british ."
+"-217.337 these \u098f\u0995\u098f the mycelium formed the ."
+"-217.640 these \u098f\u0995\u098f to mycelium formed the ."
+"-217.706 these are \u098f\u0995\u098f the mycelium formed the ."
+"-218.008 these are \u098f\u0995\u098f to mycelium formed the ."
+"-218.513 these \u098f\u0995\u098f by mycelium formed the ."
+"-218.612 these \u098f\u0995\u098f by the mycelium formed the ."
+"-218.644 these \u098f\u0995\u098f in mycelium formed the ."
+"-218.675 these \u098f\u0995\u098f the mycelium was formed by the ."
+"-218.772 these \u098f\u0995\u098f the formed the mycelium ."
+"-218.841 these \u098f\u0995\u098f , mycelium formed the ."
+"-6.462 russia at present a democratic country ."
+"-7.292 russia now a democratic country ."
+"-7.364 russia at present is a democratic country ."
+"-7.575 russia at a democratic country ."
+"-7.819 russia is now a democratic country ."
+"-7.854 russia presently a democratic country ."
+"-7.893 russia is a democratic country ."
+"-8.487 russia at present in a democratic country ."
+"-9.018 russia , at present a democratic country ."
+"-9.044 russia at present a democratic state ."
+"-3.566 penis"
+"-3.988 gender"
+"-4.385 sex"
+"-5.681 the"
+"-5.746 sexual organs"
+"-103.288 \u09b2\u09bf\u0999\u09cd\u0997"
+"-3.009 this state is called orgasm ."
+"-7.491 in this state is called orgasm ."
+"-8.316 this state is called the orgasm ."
+"-8.507 this situation is called orgasm ."
+"-8.828 in this situation is called orgasm ."
+

<TRUNCATED>

[5/9] incubator-joshua git commit: moved new unit tests (former regression tests) to correct location in joshua 7 (joshua-core/src)

Posted by mj...@apache.org.
http://git-wip-us.apache.org/repos/asf/incubator-joshua/blob/ee7398f7/joshua-core/src/test/resources/bn-en/samt/output.gold
----------------------------------------------------------------------
diff --git a/joshua-core/src/test/resources/bn-en/samt/output.gold b/joshua-core/src/test/resources/bn-en/samt/output.gold
index e69de29..1c1c36d 100644
--- a/joshua-core/src/test/resources/bn-en/samt/output.gold
+++ b/joshua-core/src/test/resources/bn-en/samt/output.gold
@@ -0,0 +1,862 @@
+"-230.669 rabindranath was born in kolkata is a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family"
+"-230.837 rabindranath was born in a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family"
+"-231.593 rabindranath was born in kolkata is one \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family"
+"-231.977 rabindranath was born in kolkata in a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family"
+"-232.054 rabindranath was born in kolkata a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family"
+"-232.473 rabindranath was born in the a \u09aa\u09bf\u09b0\u09be\u09b2\u09c0 \u09ac\u09cd\u09b0\u09be\u09b9\u09cd\u09ae\u09a3 in the family"
+"-26.695 in recent times of india with united states relationship between improved ."
+"-27.174 in recent times india with united states relationship between improved ."
+"-27.329 in recent times of india with the united states relationship between improved ."
+"-27.367 in recent times of india with united states relation between improved ."
+"-27.695 in recent times in india with united states relationship between improved ."
+"-27.807 in recent times india with the united states relationship between improved ."
+"-27.845 in recent times india with united states relation between improved ."
+"-28.000 in recent times of india with the united states relation between improved ."
+"-28.037 in recent times of india with united states relation improved ."
+"-28.367 in recent times in india with united states relation between improved ."
+"-12.270 mathematics is science language ."
+"-12.290 mathematics so science language ."
+"-14.648 mathematics hence science language ."
+"-14.684 mathematics that is why science language ."
+"-14.686 mathematics that science language ."
+"-14.843 mathematics is science languages ."
+"-14.864 mathematics so science languages ."
+"-14.908 mathematics is reasons language ."
+"-329.615 from this can easily it can be understood that this \u09ae\u09c7\u099f\u09cd\u09b0\u09bf\u0995\u099f\u09bf will be \u098f\u09ab\u0986\u09b0\u09a1\u09ac\u09cd\u09b2\u09bf\u0989 \u09ae\u09c7\u099f\u09cd\u09b0\u09bf\u0995 ."
+"-329.869 from this easily it can be understood that this \u09ae\u09c7\u099f\u09cd\u09b0\u09bf\u0995\u099f\u09bf will be \u098f\u09ab\u0986\u09b0\u09a1\u09ac\u09cd\u09b2\u09bf\u0989 \u09ae\u09c7\u099f\u09cd\u09b0\u09bf\u0995 ."
+"-330.539 from this can easily it can be understood that this \u09ae\u09c7\u099f\u09cd\u09b0\u09bf\u0995\u099f\u09bf would be \u098f\u09ab\u0986\u09b0\u09a1\u09ac\u09cd\u09b2\u09bf\u0989 \u09ae\u09c7\u099f\u09cd\u09b0\u09bf\u0995 ."
+"-330.631 from this can easily it can be understood that this \u09ae\u09c7\u099f\u09cd\u09b0\u09bf\u0995\u099f\u09bf will \u098f\u09ab\u0986\u09b0\u09a1\u09ac\u09cd\u09b2\u09bf\u0989 \u09ae\u09c7\u099f\u09cd\u09b0\u09bf\u0995 ."
+"-330.793 from this easily it can be understood that this \u09ae\u09c7\u099f\u09cd\u09b0\u09bf\u0995\u099f\u09bf would be \u098f\u09ab\u0986\u09b0\u09a1\u09ac\u09cd\u09b2\u09bf\u0989 \u09ae\u09c7\u099f\u09cd\u09b0\u09bf\u0995 ."
+"-330.878 from this can easily it can be understood that in this \u09ae\u09c7\u099f\u09cd\u09b0\u09bf\u0995\u099f\u09bf will be \u098f\u09ab\u0986\u09b0\u09a1\u09ac\u09cd\u09b2\u09bf\u0989 \u09ae\u09c7\u099f\u09cd\u09b0\u09bf\u0995 ."
+"-330.886 from this easily it can be understood that this \u09ae\u09c7\u099f\u09cd\u09b0\u09bf\u0995\u099f\u09bf will \u098f\u09ab\u0986\u09b0\u09a1\u09ac\u09cd\u09b2\u09bf\u0989 \u09ae\u09c7\u099f\u09cd\u09b0\u09bf\u0995 ."
+"-331.119 from this can easily it can be understood that these \u09ae\u09c7\u099f\u09cd\u09b0\u09bf\u0995\u099f\u09bf will be \u098f\u09ab\u0986\u09b0\u09a1\u09ac\u09cd\u09b2\u09bf\u0989 \u09ae\u09c7\u099f\u09cd\u09b0\u09bf\u0995 ."
+"-331.132 from this easily it can be understood that in this \u09ae\u09c7\u099f\u09cd\u09b0\u09bf\u0995\u099f\u09bf will be \u098f\u09ab\u0986\u09b0\u09a1\u09ac\u09cd\u09b2\u09bf\u0989 \u09ae\u09c7\u099f\u09cd\u09b0\u09bf\u0995 ."
+"-331.188 from this can easily it can be understood that the \u09ae\u09c7\u099f\u09cd\u09b0\u09bf\u0995\u099f\u09bf will be \u098f\u09ab\u0986\u09b0\u09a1\u09ac\u09cd\u09b2\u09bf\u0989 \u09ae\u09c7\u099f\u09cd\u09b0\u09bf\u0995 ."
+"-244.715 in the same with the earthcentered \u09b8\u09be\u09ae\u09a8\u09cd\u09a4\u09a4\u09a8\u09cd\u09a4\u09cd\u09b0\u09c7\u09b0 \u09aa\u09a4\u09a8\u09c7\u09b0 indication match from this novel ."
+"-244.892 in the same with the earthcentered \u09b8\u09be\u09ae\u09a8\u09cd\u09a4\u09a4\u09a8\u09cd\u09a4\u09cd\u09b0\u09c7\u09b0 \u09aa\u09a4\u09a8\u09c7\u09b0 indication match this novel from ."
+"-245.063 the same with the earthcentered \u09b8\u09be\u09ae\u09a8\u09cd\u09a4\u09a4\u09a8\u09cd\u09a4\u09cd\u09b0\u09c7\u09b0 \u09aa\u09a4\u09a8\u09c7\u09b0 indication match this novel from ."
+"-245.074 on the same with the earthcentered \u09b8\u09be\u09ae\u09a8\u09cd\u09a4\u09a4\u09a8\u09cd\u09a4\u09cd\u09b0\u09c7\u09b0 \u09aa\u09a4\u09a8\u09c7\u09b0 indication match this novel from ."
+"-245.208 in the same with the earthcentered \u09b8\u09be\u09ae\u09a8\u09cd\u09a4\u09a4\u09a8\u09cd\u09a4\u09cd\u09b0\u09c7\u09b0 \u09aa\u09a4\u09a8\u09c7\u09b0 presage match this novel from ."
+"-245.411 in the same with the earthcentered \u09b8\u09be\u09ae\u09a8\u09cd\u09a4\u09a4\u09a8\u09cd\u09a4\u09cd\u09b0\u09c7\u09b0 \u09aa\u09a4\u09a8\u09c7\u09b0 indication match in this novel from ."
+"-245.823 in the same time with the earthcentered \u09b8\u09be\u09ae\u09a8\u09cd\u09a4\u09a4\u09a8\u09cd\u09a4\u09cd\u09b0\u09c7\u09b0 \u09aa\u09a4\u09a8\u09c7\u09b0 indication match from this novel ."
+"-245.993 in the same with the earthcentered \u09b8\u09be\u09ae\u09a8\u09cd\u09a4\u09a4\u09a8\u09cd\u09a4\u09cd\u09b0\u09c7\u09b0 \u09aa\u09a4\u09a8\u09c7\u09b0 indication match this novel to ."
+"-246.000 in the same time with the earthcentered \u09b8\u09be\u09ae\u09a8\u09cd\u09a4\u09a4\u09a8\u09cd\u09a4\u09cd\u09b0\u09c7\u09b0 \u09aa\u09a4\u09a8\u09c7\u09b0 indication match this novel from ."
+"-246.051 in the same with the earthcentered \u09b8\u09be\u09ae\u09a8\u09cd\u09a4\u09a4\u09a8\u09cd\u09a4\u09cd\u09b0\u09c7\u09b0 \u09aa\u09a4\u09a8\u09c7\u09b0 indication match this novel from the ."
+"-222.050 \u09a8\u09bf\u09b0\u09cd\u09ac\u099a\u09a8\u09c7 mujib and his party \u09a8\u09bf\u09b0\u0999\u09cd\u0995\u09c1\u09b7 majority in the ."
+"-223.836 \u09a8\u09bf\u09b0\u09cd\u09ac\u099a\u09a8\u09c7 mujib and his party \u09a8\u09bf\u09b0\u0999\u09cd\u0995\u09c1\u09b7 majority in ."
+"-224.380 \u09a8\u09bf\u09b0\u09cd\u09ac\u099a\u09a8\u09c7 mujib and his party \u09a8\u09bf\u09b0\u0999\u09cd\u0995\u09c1\u09b7 majority , in the ."
+"-224.789 \u09a8\u09bf\u09b0\u09cd\u09ac\u099a\u09a8\u09c7 mujib and his party \u09a8\u09bf\u09b0\u0999\u09cd\u0995\u09c1\u09b7 majority in the goods ."
+"-224.989 \u09a8\u09bf\u09b0\u09cd\u09ac\u099a\u09a8\u09c7 seikh mujib and his party \u09a8\u09bf\u09b0\u0999\u09cd\u0995\u09c1\u09b7 majority in the ."
+"-224.991 \u09a8\u09bf\u09b0\u09cd\u09ac\u099a\u09a8\u09c7 mujib and his party \u09a8\u09bf\u09b0\u0999\u09cd\u0995\u09c1\u09b7 majority in the . ."
+"-225.383 \u09a8\u09bf\u09b0\u09cd\u09ac\u099a\u09a8\u09c7 mujib and his party \u09a8\u09bf\u09b0\u0999\u09cd\u0995\u09c1\u09b7 majority in the of ."
+"-225.396 \u09a8\u09bf\u09b0\u09cd\u09ac\u099a\u09a8\u09c7 mujib and his party \u09a8\u09bf\u09b0\u0999\u09cd\u0995\u09c1\u09b7 majority in the , ."
+"-439.395 \u09b9\u09bf\u099f\u09b2\u09be\u09b0\u0993 \u09ac\u09be\u09ad\u09be\u09b0\u09bf\u09af\u09bc\u09be\u09b0 \u09ae\u09bf\u0989\u09a8\u09bf\u0996 \u09b6\u09b9\u09b0\u09c7\u0987 his work with to that ."
+"-439.526 \u09b9\u09bf\u099f\u09b2\u09be\u09b0\u0993 \u09ac\u09be\u09ad\u09be\u09b0\u09bf\u09af\u09bc\u09be\u09b0 \u09ae\u09bf\u0989\u09a8\u09bf\u0996 \u09b6\u09b9\u09b0\u09c7\u0987 his work with can and pajama ."
+"-440.155 \u09b9\u09bf\u099f\u09b2\u09be\u09b0\u0993 \u09ac\u09be\u09ad\u09be\u09b0\u09bf\u09af\u09bc\u09be\u09b0 \u09ae\u09bf\u0989\u09a8\u09bf\u0996 \u09b6\u09b9\u09b0\u09c7\u0987 his work with to and pajama ."
+"-440.188 \u09b9\u09bf\u099f\u09b2\u09be\u09b0\u0993 \u09ac\u09be\u09ad\u09be\u09b0\u09bf\u09af\u09bc\u09be\u09b0 \u09ae\u09bf\u0989\u09a8\u09bf\u0996 \u09b6\u09b9\u09b0\u09c7\u0987 his work with can that ."
+"-440.260 \u09b9\u09bf\u099f\u09b2\u09be\u09b0\u0993 \u09ac\u09be\u09ad\u09be\u09b0\u09bf\u09af\u09bc\u09be\u09b0 \u09ae\u09bf\u0989\u09a8\u09bf\u0996 \u09b6\u09b9\u09b0\u09c7\u0987 of his work with to that ."
+"-440.280 \u09b9\u09bf\u099f\u09b2\u09be\u09b0\u0993 \u09ac\u09be\u09ad\u09be\u09b0\u09bf\u09af\u09bc\u09be\u09b0 \u09ae\u09bf\u0989\u09a8\u09bf\u0996 \u09b6\u09b9\u09b0\u09c7\u0987 his works with to that ."
+"-440.347 \u09b9\u09bf\u099f\u09b2\u09be\u09b0\u0993 \u09ac\u09be\u09ad\u09be\u09b0\u09bf\u09af\u09bc\u09be\u09b0 \u09ae\u09bf\u0989\u09a8\u09bf\u0996 \u09b6\u09b9\u09b0\u09c7\u0987 in his work with to that ."
+"-440.391 \u09b9\u09bf\u099f\u09b2\u09be\u09b0\u0993 \u09ac\u09be\u09ad\u09be\u09b0\u09bf\u09af\u09bc\u09be\u09b0 \u09ae\u09bf\u0989\u09a8\u09bf\u0996 \u09b6\u09b9\u09b0\u09c7\u0987 of his work with can and pajama ."
+"-440.410 \u09b9\u09bf\u099f\u09b2\u09be\u09b0\u0993 \u09ac\u09be\u09ad\u09be\u09b0\u09bf\u09af\u09bc\u09be\u09b0 \u09ae\u09bf\u0989\u09a8\u09bf\u0996 \u09b6\u09b9\u09b0\u09c7\u0987 his works with can and pajama ."
+"-440.477 \u09b9\u09bf\u099f\u09b2\u09be\u09b0\u0993 \u09ac\u09be\u09ad\u09be\u09b0\u09bf\u09af\u09bc\u09be\u09b0 \u09ae\u09bf\u0989\u09a8\u09bf\u0996 \u09b6\u09b9\u09b0\u09c7\u0987 in his work with can and pajama ."
+"-252.878 task apart from \u0993\u098f\u09b8-\u099f\u09cd\u09af\u09be\u09a8 and also some linux \u09aa\u09cd\u09b0\u09a4\u09bf\u09a8\u09bf\u09a7\u09bf\u09a4\u09cd\u09ac\u0995\u09be\u09b0\u09c0 character is , but these are very is not ."
+"-252.999 task apart from \u0993\u098f\u09b8-\u099f\u09cd\u09af\u09be\u09a8 and also some linux \u09aa\u09cd\u09b0\u09a4\u09bf\u09a8\u09bf\u09a7\u09bf\u09a4\u09cd\u09ac\u0995\u09be\u09b0\u09c0 character there are , but these are very is not ."
+"-253.123 task other than \u0993\u098f\u09b8-\u099f\u09cd\u09af\u09be\u09a8 and also some linux \u09aa\u09cd\u09b0\u09a4\u09bf\u09a8\u09bf\u09a7\u09bf\u09a4\u09cd\u09ac\u0995\u09be\u09b0\u09c0 character is , but these are very is not ."
+"-253.207 task apart from \u0993\u098f\u09b8-\u099f\u09cd\u09af\u09be\u09a8 and also some linux \u09aa\u09cd\u09b0\u09a4\u09bf\u09a8\u09bf\u09a7\u09bf\u09a4\u09cd\u09ac\u0995\u09be\u09b0\u09c0 character are , but these are very is not ."
+"-253.244 task other than \u0993\u098f\u09b8-\u099f\u09cd\u09af\u09be\u09a8 and also some linux \u09aa\u09cd\u09b0\u09a4\u09bf\u09a8\u09bf\u09a7\u09bf\u09a4\u09cd\u09ac\u0995\u09be\u09b0\u09c0 character there are , but these are very is not ."
+"-253.351 task apart from \u0993\u098f\u09b8-\u099f\u09cd\u09af\u09be\u09a8 and also some linux \u09aa\u09cd\u09b0\u09a4\u09bf\u09a8\u09bf\u09a7\u09bf\u09a4\u09cd\u09ac\u0995\u09be\u09b0\u09c0 character there is , but these are very is not ."
+"-253.526 task apart from \u0993\u098f\u09b8-\u099f\u09cd\u09af\u09be\u09a8 and also some of linux \u09aa\u09cd\u09b0\u09a4\u09bf\u09a8\u09bf\u09a7\u09bf\u09a4\u09cd\u09ac\u0995\u09be\u09b0\u09c0 character is , but these are very is not ."
+"-253.999 task apart from \u0993\u098f\u09b8-\u099f\u09cd\u09af\u09be\u09a8 and also some of linux \u09aa\u09cd\u09b0\u09a4\u09bf\u09a8\u09bf\u09a7\u09bf\u09a4\u09cd\u09ac\u0995\u09be\u09b0\u09c0 character there is , but these are very is not ."
+"-254.604 task apart from \u0993\u098f\u09b8-\u099f\u09cd\u09af\u09be\u09a8 and also some linux \u09aa\u09cd\u09b0\u09a4\u09bf\u09a8\u09bf\u09a7\u09bf\u09a4\u09cd\u09ac\u0995\u09be\u09b0\u09c0 character is , but these are very common not ."
+"-254.725 task apart from \u0993\u098f\u09b8-\u099f\u09cd\u09af\u09be\u09a8 and also some linux \u09aa\u09cd\u09b0\u09a4\u09bf\u09a8\u09bf\u09a7\u09bf\u09a4\u09cd\u09ac\u0995\u09be\u09b0\u09c0 character there are , but these are very common not ."
+"-264.205 it social situation in \u09b8\u09bf\u09a6\u09cd\u09a7\u09be\u09a8\u09cd\u09a4\u0997\u09cd\u09b0\u09b9\u09a8\u0995\u09be\u09b0\u09c0 his oppositions with \u0995\u09cd\u09b0\u09c0\u09a1\u09bc\u09be\u0995\u09cd\u09b7\u09c7\u09a4\u09cd\u09b0\u09c7 decision making the rule of the vagina ."
+"-264.435 it social situation in \u09b8\u09bf\u09a6\u09cd\u09a7\u09be\u09a8\u09cd\u09a4\u0997\u09cd\u09b0\u09b9\u09a8\u0995\u09be\u09b0\u09c0 his oppositions with the \u0995\u09cd\u09b0\u09c0\u09a1\u09bc\u09be\u0995\u09cd\u09b7\u09c7\u09a4\u09cd\u09b0\u09c7 decision making the rule of the vagina ."
+"-264.473 it social situation in view \u09b8\u09bf\u09a6\u09cd\u09a7\u09be\u09a8\u09cd\u09a4\u0997\u09cd\u09b0\u09b9\u09a8\u0995\u09be\u09b0\u09c0 his oppositions with \u0995\u09cd\u09b0\u09c0\u09a1\u09bc\u09be\u0995\u09cd\u09b7\u09c7\u09a4\u09cd\u09b0\u09c7 decision making the rule of the vagina ."
+"-264.567 it social situation in view of \u09b8\u09bf\u09a6\u09cd\u09a7\u09be\u09a8\u09cd\u09a4\u0997\u09cd\u09b0\u09b9\u09a8\u0995\u09be\u09b0\u09c0 his oppositions with \u0995\u09cd\u09b0\u09c0\u09a1\u09bc\u09be\u0995\u09cd\u09b7\u09c7\u09a4\u09cd\u09b0\u09c7 decision making the rule of the vagina ."
+"-264.703 it social situation in view \u09b8\u09bf\u09a6\u09cd\u09a7\u09be\u09a8\u09cd\u09a4\u0997\u09cd\u09b0\u09b9\u09a8\u0995\u09be\u09b0\u09c0 his oppositions with the \u0995\u09cd\u09b0\u09c0\u09a1\u09bc\u09be\u0995\u09cd\u09b7\u09c7\u09a4\u09cd\u09b0\u09c7 decision making the rule of the vagina ."
+"-264.755 this social situation in \u09b8\u09bf\u09a6\u09cd\u09a7\u09be\u09a8\u09cd\u09a4\u0997\u09cd\u09b0\u09b9\u09a8\u0995\u09be\u09b0\u09c0 his oppositions with \u0995\u09cd\u09b0\u09c0\u09a1\u09bc\u09be\u0995\u09cd\u09b7\u09c7\u09a4\u09cd\u09b0\u09c7 decision making the rule of the vagina ."
+"-264.796 it social situation in view of \u09b8\u09bf\u09a6\u09cd\u09a7\u09be\u09a8\u09cd\u09a4\u0997\u09cd\u09b0\u09b9\u09a8\u0995\u09be\u09b0\u09c0 his oppositions with the \u0995\u09cd\u09b0\u09c0\u09a1\u09bc\u09be\u0995\u09cd\u09b7\u09c7\u09a4\u09cd\u09b0\u09c7 decision making the rule of the vagina ."
+"-264.875 it social situation in \u09b8\u09bf\u09a6\u09cd\u09a7\u09be\u09a8\u09cd\u09a4\u0997\u09cd\u09b0\u09b9\u09a8\u0995\u09be\u09b0\u09c0 his oppositions with \u0995\u09cd\u09b0\u09c0\u09a1\u09bc\u09be\u0995\u09cd\u09b7\u09c7\u09a4\u09cd\u09b0\u09c7 decision making the rule of the in the ."
+"-264.985 this social situation in \u09b8\u09bf\u09a6\u09cd\u09a7\u09be\u09a8\u09cd\u09a4\u0997\u09cd\u09b0\u09b9\u09a8\u0995\u09be\u09b0\u09c0 his oppositions with the \u0995\u09cd\u09b0\u09c0\u09a1\u09bc\u09be\u0995\u09cd\u09b7\u09c7\u09a4\u09cd\u09b0\u09c7 decision making the rule of the vagina ."
+"-264.988 it social situation in \u09b8\u09bf\u09a6\u09cd\u09a7\u09be\u09a8\u09cd\u09a4\u0997\u09cd\u09b0\u09b9\u09a8\u0995\u09be\u09b0\u09c0 his oppositions with \u0995\u09cd\u09b0\u09c0\u09a1\u09bc\u09be\u0995\u09cd\u09b7\u09c7\u09a4\u09cd\u09b0\u09c7 decision making the rules of the vagina ."
+"-324.551 \u09ac\u09c3\u09b7\u09cd\u099f\u09bf\u09aa\u09be\u09a4\u0983 annual \u09e8\u09eb\u09ea\u09e6 \u09ae\u09bf\u09b2\u09bf meter"
+"-324.635 \u09ac\u09c3\u09b7\u09cd\u099f\u09bf\u09aa\u09be\u09a4\u0983 arrange \u09e8\u09eb\u09ea\u09e6 \u09ae\u09bf\u09b2\u09bf meter"
+"-324.722 \u09ac\u09c3\u09b7\u09cd\u099f\u09bf\u09aa\u09be\u09a4\u0983 annual \u09e8\u09eb\u09ea\u09e6 \u09ae\u09bf\u09b2\u09bf meters"
+"-324.806 \u09ac\u09c3\u09b7\u09cd\u099f\u09bf\u09aa\u09be\u09a4\u0983 arrange \u09e8\u09eb\u09ea\u09e6 \u09ae\u09bf\u09b2\u09bf meters"
+"-326.046 \u09ac\u09c3\u09b7\u09cd\u099f\u09bf\u09aa\u09be\u09a4\u0983 annual \u09e8\u09eb\u09ea\u09e6 \u09ae\u09bf\u09b2\u09bf metres"
+"-326.131 \u09ac\u09c3\u09b7\u09cd\u099f\u09bf\u09aa\u09be\u09a4\u0983 arrange \u09e8\u09eb\u09ea\u09e6 \u09ae\u09bf\u09b2\u09bf metres"
+"-327.121 \u09ac\u09c3\u09b7\u09cd\u099f\u09bf\u09aa\u09be\u09a4\u0983 annual \u09e8\u09eb\u09ea\u09e6 \u09ae\u09bf\u09b2\u09bf above"
+"-327.206 \u09ac\u09c3\u09b7\u09cd\u099f\u09bf\u09aa\u09be\u09a4\u0983 arrange \u09e8\u09eb\u09ea\u09e6 \u09ae\u09bf\u09b2\u09bf above"
+"-675.013 in 2004 \u09ae\u09cd\u09af\u09be\u09b8\u09be\u099a\u09c1\u09b8\u09c7\u099f\u09b8 \u0985\u0999\u09cd\u0997\u09b0\u09be\u099c\u09cd\u09af\u09c7\u09b0 \u09ac\u09b8\u09cd\u099f\u09a8 in the city in \u09a1\u09c7\u09ae\u09cb\u0995\u09cd\u09b0\u09cd\u09af\u09be\u099f as the national conference was he main speech -lrb- keynote speech -rrb- on the ."
+"-675.262 in 2004 \u09ae\u09cd\u09af\u09be\u09b8\u09be\u099a\u09c1\u09b8\u09c7\u099f\u09b8 \u0985\u0999\u09cd\u0997\u09b0\u09be\u099c\u09cd\u09af\u09c7\u09b0 \u09ac\u09b8\u09cd\u099f\u09a8 in the city in \u09a1\u09c7\u09ae\u09cb\u0995\u09cd\u09b0\u09cd\u09af\u09be\u099f as the national conference was he main speech -lrb- keynote speech -rrb- to the ."
+"-675.282 in 2004 \u09ae\u09cd\u09af\u09be\u09b8\u09be\u099a\u09c1\u09b8\u09c7\u099f\u09b8 \u0985\u0999\u09cd\u0997\u09b0\u09be\u099c\u09cd\u09af\u09c7\u09b0 \u09ac\u09b8\u09cd\u099f\u09a8 in the city in \u09a1\u09c7\u09ae\u09cb\u0995\u09cd\u09b0\u09cd\u09af\u09be\u099f the national conference was he main speech -lrb- keynote speech -rrb- on the ."
+"-675.530 in 2004 \u09ae\u09cd\u09af\u09be\u09b8\u09be\u099a\u09c1\u09b8\u09c7\u099f\u09b8 \u0985\u0999\u09cd\u0997\u09b0\u09be\u099c\u09cd\u09af\u09c7\u09b0 \u09ac\u09b8\u09cd\u099f\u09a8 in the city in \u09a1\u09c7\u09ae\u09cb\u0995\u09cd\u09b0\u09cd\u09af\u09be\u099f the national conference was he main speech -lrb- keynote speech -rrb- to the ."
+"-675.766 in 2004 \u09ae\u09cd\u09af\u09be\u09b8\u09be\u099a\u09c1\u09b8\u09c7\u099f\u09b8 \u0985\u0999\u09cd\u0997\u09b0\u09be\u099c\u09cd\u09af\u09c7\u09b0 \u09ac\u09b8\u09cd\u099f\u09a8 in the city in \u09a1\u09c7\u09ae\u09cb\u0995\u09cd\u09b0\u09cd\u09af\u09be\u099f as the national conference was he the speech -lrb- keynote speech -rrb- on the ."
+"-675.800 in 2004 \u09ae\u09cd\u09af\u09be\u09b8\u09be\u099a\u09c1\u09b8\u09c7\u099f\u09b8 \u0985\u0999\u09cd\u0997\u09b0\u09be\u099c\u09cd\u09af\u09c7\u09b0 \u09ac\u09b8\u09cd\u099f\u09a8 in the city in \u09a1\u09c7\u09ae\u09cb\u0995\u09cd\u09b0\u09cd\u09af\u09be\u099f as the national conference was he main speech -lrb- keynote speech -rrb- , the ."
+"-675.864 in 2004 \u09ae\u09cd\u09af\u09be\u09b8\u09be\u099a\u09c1\u09b8\u09c7\u099f\u09b8 \u0985\u0999\u09cd\u0997\u09b0\u09be\u099c\u09cd\u09af\u09c7\u09b0 \u09ac\u09b8\u09cd\u099f\u09a8 in the city in \u09a1\u09c7\u09ae\u09cb\u0995\u09cd\u09b0\u09cd\u09af\u09be\u099f party national conference was he main speech -lrb- keynote speech -rrb- on the ."
+"-675.940 in 2004 \u09ae\u09cd\u09af\u09be\u09b8\u09be\u099a\u09c1\u09b8\u09c7\u099f\u09b8 \u0985\u0999\u09cd\u0997\u09b0\u09be\u099c\u09cd\u09af\u09c7\u09b0 \u09ac\u09b8\u09cd\u099f\u09a8 in the city in \u09a1\u09c7\u09ae\u09cb\u0995\u09cd\u09b0\u09cd\u09af\u09be\u099f as the national conference was he the main speech -lrb- keynote speech -rrb- on the ."
+"-676.015 in 2004 \u09ae\u09cd\u09af\u09be\u09b8\u09be\u099a\u09c1\u09b8\u09c7\u099f\u09b8 \u0985\u0999\u09cd\u0997\u09b0\u09be\u099c\u09cd\u09af\u09c7\u09b0 \u09ac\u09b8\u09cd\u099f\u09a8 in the city in \u09a1\u09c7\u09ae\u09cb\u0995\u09cd\u09b0\u09cd\u09af\u09be\u099f as the national conference was he the speech -lrb- keynote speech -rrb- to the ."
+"-676.035 in 2004 \u09ae\u09cd\u09af\u09be\u09b8\u09be\u099a\u09c1\u09b8\u09c7\u099f\u09b8 \u0985\u0999\u09cd\u0997\u09b0\u09be\u099c\u09cd\u09af\u09c7\u09b0 \u09ac\u09b8\u09cd\u099f\u09a8 in the city in \u09a1\u09c7\u09ae\u09cb\u0995\u09cd\u09b0\u09cd\u09af\u09be\u099f the national conference was he the speech -lrb- keynote speech -rrb- on the ."
+"-199.719 population on the power distribution of east pakistan where due to the west pakistan " one unit theory , " is a \u0985\u09ad\u09bf\u09a8\u09ac they started to the , where the whole of west pakistan is a province considered as the ."
+"-199.743 population on the power distribution of east pakistan where due to the west pakistan " one unit theory , " is a \u0985\u09ad\u09bf\u09a8\u09ac they started to the , where the whole of west pakistan a province considered as the ."
+"-199.975 population on the power distribution of east pakistan where due to the west pakistan " one unit theory " is a \u0985\u09ad\u09bf\u09a8\u09ac they started to the , where the whole of west pakistan is a province considered as the ."
+"-199.999 population on the power distribution of east pakistan where due to the west pakistan " one unit theory " is a \u0985\u09ad\u09bf\u09a8\u09ac they started to the , where the whole of west pakistan a province considered as the ."
+"-200.182 population on the power distribution of east pakistan where due to the west pakistan " one unit theory , " is a \u0985\u09ad\u09bf\u09a8\u09ac they started to the , where the west pakistan is a province considered as the ."
+"-200.206 population on the power distribution of east pakistan where due to the west pakistan " one unit theory , " is a \u0985\u09ad\u09bf\u09a8\u09ac they started to the , where the west pakistan a province considered as the ."
+"-200.259 population based on this distribution of east pakistan where due to the west pakistan " one unit theory , " is a \u0985\u09ad\u09bf\u09a8\u09ac they started to the , where the west pakistan is a province considered as the ."
+"-200.280 population on the power distribution of east pakistan where due to the west pakistan , " one unit theory , " is a \u0985\u09ad\u09bf\u09a8\u09ac they started to the , where the whole of west pakistan is a province considered as the ."
+"-200.283 population based on this distribution of east pakistan where due to the west pakistan " one unit theory , " is a \u0985\u09ad\u09bf\u09a8\u09ac they started to the , where the west pakistan a province considered as the ."
+"-200.304 population on the power distribution of east pakistan where due to the west pakistan , " one unit theory , " is a \u0985\u09ad\u09bf\u09a8\u09ac they started to the , where the whole of west pakistan a province considered as the ."
+"-113.022 the \u09aa\u09b0\u09bf\u09ae\u09be\u09aa\u09a8 theory"
+"-113.373 mathematical \u09aa\u09b0\u09bf\u09ae\u09be\u09aa\u09a8 theory"
+"-113.486 \u2022 \u09aa\u09b0\u09bf\u09ae\u09be\u09aa\u09a8 theory"
+"-115.266 the \u09aa\u09b0\u09bf\u09ae\u09be\u09aa\u09a8 theory of"
+"-115.559 the theory of \u09aa\u09b0\u09bf\u09ae\u09be\u09aa\u09a8"
+"-115.616 mathematical \u09aa\u09b0\u09bf\u09ae\u09be\u09aa\u09a8 theory of"
+"-115.729 \u2022 \u09aa\u09b0\u09bf\u09ae\u09be\u09aa\u09a8 theory of"
+"-117.032 the \u09aa\u09b0\u09bf\u09ae\u09be\u09aa\u09a8 is"
+"-6.764 external links of"
+"-7.040 relation with outside of"
+"-7.543 external link of"
+"-7.776 external communication of"
+"-8.099 external connections of"
+"-8.379 external connection of"
+"-8.600 external link by"
+"-8.928 external communication by"
+"-9.099 external links by"
+"-9.281 external connections by"
+"-159.669 tata communication foreign this \u09a8\u09bf\u0997\u09ae limited building , it is the telecommunication system is a is one of the main providers"
+"-159.792 tata communicationer foreign this \u09a8\u09bf\u0997\u09ae limited building , it is the telecommunication system is a is one of the main providers"
+"-160.578 tata communication foreign this \u09a8\u09bf\u0997\u09ae limited building , it is the city telecommunication system is a is one of the main providers"
+"-160.606 tata communication foreign this \u09a8\u09bf\u0997\u09ae limited building , it is in the telecommunication system is a is one of the main providers"
+"-160.701 tata communicationer foreign this \u09a8\u09bf\u0997\u09ae limited building , it is the city telecommunication system is a is one of the main providers"
+"-161.029 tata communication foreign this \u09a8\u09bf\u0997\u09ae limited building , it is the telecommunication system is a one of the main providers"
+"-161.034 tata communication foreign this \u09a8\u09bf\u0997\u09ae limited building , it is in the city telecommunication system is a is one of the main providers"
+"-161.049 tata communication foreign this \u09a8\u09bf\u0997\u09ae limited building , it is the telecommunication system of a is one of the main providers"
+"-161.152 tata communicationer foreign this \u09a8\u09bf\u0997\u09ae limited building , it is the telecommunication system is a one of the main providers"
+"-161.157 tata communicationer foreign this \u09a8\u09bf\u0997\u09ae limited building , it is in the city telecommunication system is a is one of the main providers"
+"-342.060 he that year \u09ea\u0987 \u09a8\u09ad\u09c7\u09ae\u09cd\u09ac\u09b0\u09c7\u09b0 national election \u099c\u09af\u09bc\u09c0 in and was elected as the 44th president of the united states ."
+"-342.499 he that year \u09ea\u0987 \u09a8\u09ad\u09c7\u09ae\u09cd\u09ac\u09b0\u09c7\u09b0 national election \u099c\u09af\u09bc\u09c0 in and the 44th president of the united states was elected as ."
+"-342.884 he that year \u09ea\u0987 \u09a8\u09ad\u09c7\u09ae\u09cd\u09ac\u09b0\u09c7\u09b0 national election \u099c\u09af\u09bc\u09c0 in and the 44th president of the united states elected as ."
+"-343.137 he that year \u09ea\u0987 \u09a8\u09ad\u09c7\u09ae\u09cd\u09ac\u09b0\u09c7\u09b0 national election \u099c\u09af\u09bc\u09c0 in the 44th president of the united states and was elected as ."
+"-343.290 he that year \u09ea\u0987 \u09a8\u09ad\u09c7\u09ae\u09cd\u09ac\u09b0\u09c7\u09b0 national election \u099c\u09af\u09bc\u09c0 was and the 44th president of the united states was elected as ."
+"-343.354 he in that year \u09ea\u0987 \u09a8\u09ad\u09c7\u09ae\u09cd\u09ac\u09b0\u09c7\u09b0 national election \u099c\u09af\u09bc\u09c0 in and the 44th president of the united states was elected as ."
+"-343.597 he that year \u09ea\u0987 \u09a8\u09ad\u09c7\u09ae\u09cd\u09ac\u09b0\u09c7\u09b0 national election \u099c\u09af\u09bc\u09c0 to and the 44th president of the united states was elected as ."
+"-343.600 he that year \u09ea\u0987 \u09a8\u09ad\u09c7\u09ae\u09cd\u09ac\u09b0\u09c7\u09b0 national election \u099c\u09af\u09bc\u09c0 was and was elected as the 44th president of the united states ."
+"-343.619 he that year \u09ea\u0987 \u09a8\u09ad\u09c7\u09ae\u09cd\u09ac\u09b0\u09c7\u09b0 national election \u099c\u09af\u09bc\u09c0 the and the 44th president of the united states was elected as ."
+"-343.622 he that year \u09ea\u0987 \u09a8\u09ad\u09c7\u09ae\u09cd\u09ac\u09b0\u09c7\u09b0 of national election \u099c\u09af\u09bc\u09c0 in and was elected as the 44th president of the united states ."
+"-337.568 many of the indian \u09aa\u09cd\u09b0\u099c\u09be\u09a4\u09bf fighting \u099c\u09be\u09a4 \u099f\u09c7\u0995\u09cd\u09b8\u09be from the upper stage"
+"-337.736 many of the indian \u09aa\u09cd\u09b0\u099c\u09be\u09a4\u09bf fighting \u099c\u09be\u09a4 \u099f\u09c7\u0995\u09cd\u09b8\u09be from upper stage"
+"-338.457 many indian \u09aa\u09cd\u09b0\u099c\u09be\u09a4\u09bf fighting \u099c\u09be\u09a4 \u099f\u09c7\u0995\u09cd\u09b8\u09be from the upper stage"
+"-338.537 many of the \u09aa\u09cd\u09b0\u099c\u09be\u09a4\u09bf fighting \u099c\u09be\u09a4 \u099f\u09c7\u0995\u09cd\u09b8\u09be from the upper stage"
+"-338.625 many indian \u09aa\u09cd\u09b0\u099c\u09be\u09a4\u09bf fighting \u099c\u09be\u09a4 \u099f\u09c7\u0995\u09cd\u09b8\u09be from upper stage"
+"-338.705 many of the \u09aa\u09cd\u09b0\u099c\u09be\u09a4\u09bf fighting \u099c\u09be\u09a4 \u099f\u09c7\u0995\u09cd\u09b8\u09be from upper stage"
+"-338.832 many of the indian \u09aa\u09cd\u09b0\u099c\u09be\u09a4\u09bf fighting \u099c\u09be\u09a4 \u099f\u09c7\u0995\u09cd\u09b8\u09be to upper stage"
+"-339.032 many of indian \u09aa\u09cd\u09b0\u099c\u09be\u09a4\u09bf fighting \u099c\u09be\u09a4 \u099f\u09c7\u0995\u09cd\u09b8\u09be from upper stage"
+"-339.800 many of the \u09aa\u09cd\u09b0\u099c\u09be\u09a4\u09bf fighting \u099c\u09be\u09a4 \u099f\u09c7\u0995\u09cd\u09b8\u09be to upper stage"
+"-144.560 britain writers written drama , novels , stories and recently scripts in the \u0986\u09a6\u09c3\u09a4 ."
+"-144.892 britain writers written drama , novels , stories and recently scripts in \u0986\u09a6\u09c3\u09a4 ."
+"-144.986 britain writers written drama , novels , stories and recently script in the \u0986\u09a6\u09c3\u09a4 ."
+"-145.290 britain writers written drama , novels , stories and in the recent scripts in the \u0986\u09a6\u09c3\u09a4 ."
+"-145.319 britain writers of written drama , novels , stories and recently scripts in the \u0986\u09a6\u09c3\u09a4 ."
+"-145.319 britain writers written drama , novels , stories and recently script in \u0986\u09a6\u09c3\u09a4 ."
+"-145.402 britain writers of the drama , novels , stories and recently scripts in the \u0986\u09a6\u09c3\u09a4 ."
+"-145.623 britain writers written drama , novels , stories and in the recent scripts in \u0986\u09a6\u09c3\u09a4 ."
+"-145.651 britain writers of written drama , novels , stories and recently scripts in \u0986\u09a6\u09c3\u09a4 ."
+"-145.717 britain writers written drama , novels , stories and in the recent script in the \u0986\u09a6\u09c3\u09a4 ."
+"-29.082 1919 , on may month it saogat magazine was published in the ."
+"-29.173 1919 on may month it saogat magazine was published in the ."
+"-29.196 1919 , on may month it saogat magazine was published ."
+"-29.287 1919 on may month it saogat magazine was published ."
+"-29.459 1919 , on may month it is saogat magazine was published in the ."
+"-29.550 1919 on may month it is saogat magazine was published in the ."
+"-29.572 1919 , on may month it is saogat magazine was published ."
+"-29.663 1919 on may month it is saogat magazine was published ."
+"-29.879 1919 , on may month it saogat magazine was published in ."
+"-29.971 1919 on may month it saogat magazine was published in ."
+"-460.093 in 2005 , \u0989\u0987\u09ae\u09c7\u09a8\u09b8 tennis association tour \u099f\u09be\u09af\u09bc\u09be\u09b0-\u09a5\u09cd\u09b0\u09bf \u099f\u09c1\u09b0\u09cd\u09a8\u09be\u09ae\u09c7\u09a8\u09cd\u099f \u09b8\u09be\u09a8\u09ab\u09bf\u09b8\u09cd\u099f open netaji indoor stadium was arranged ."
+"-460.244 2005 , \u0989\u0987\u09ae\u09c7\u09a8\u09b8 tennis association tour \u099f\u09be\u09af\u09bc\u09be\u09b0-\u09a5\u09cd\u09b0\u09bf \u099f\u09c1\u09b0\u09cd\u09a8\u09be\u09ae\u09c7\u09a8\u09cd\u099f \u09b8\u09be\u09a8\u09ab\u09bf\u09b8\u09cd\u099f open netaji indoor stadium was arranged ."
+"-460.557 in year 2005 \u0989\u0987\u09ae\u09c7\u09a8\u09b8 tennis association tour \u099f\u09be\u09af\u09bc\u09be\u09b0-\u09a5\u09cd\u09b0\u09bf \u099f\u09c1\u09b0\u09cd\u09a8\u09be\u09ae\u09c7\u09a8\u09cd\u099f \u09b8\u09be\u09a8\u09ab\u09bf\u09b8\u09cd\u099f open netaji indoor stadium was arranged ."
+"-460.712 in 2005 , \u0989\u0987\u09ae\u09c7\u09a8\u09b8 tennis association of the tour \u099f\u09be\u09af\u09bc\u09be\u09b0-\u09a5\u09cd\u09b0\u09bf \u099f\u09c1\u09b0\u09cd\u09a8\u09be\u09ae\u09c7\u09a8\u09cd\u099f \u09b8\u09be\u09a8\u09ab\u09bf\u09b8\u09cd\u099f open netaji indoor stadium was arranged ."
+"-460.863 2005 , \u0989\u0987\u09ae\u09c7\u09a8\u09b8 tennis association of the tour \u099f\u09be\u09af\u09bc\u09be\u09b0-\u09a5\u09cd\u09b0\u09bf \u099f\u09c1\u09b0\u09cd\u09a8\u09be\u09ae\u09c7\u09a8\u09cd\u099f \u09b8\u09be\u09a8\u09ab\u09bf\u09b8\u09cd\u099f open netaji indoor stadium was arranged ."
+"-461.115 in 2005 , \u0989\u0987\u09ae\u09c7\u09a8\u09b8 tennis association tour \u099f\u09be\u09af\u09bc\u09be\u09b0-\u09a5\u09cd\u09b0\u09bf \u099f\u09c1\u09b0\u09cd\u09a8\u09be\u09ae\u09c7\u09a8\u09cd\u099f \u09b8\u09be\u09a8\u09ab\u09bf\u09b8\u09cd\u099f open netaji indoor stadium is the ."
+"-461.266 2005 , \u0989\u0987\u09ae\u09c7\u09a8\u09b8 tennis association tour \u099f\u09be\u09af\u09bc\u09be\u09b0-\u09a5\u09cd\u09b0\u09bf \u099f\u09c1\u09b0\u09cd\u09a8\u09be\u09ae\u09c7\u09a8\u09cd\u099f \u09b8\u09be\u09a8\u09ab\u09bf\u09b8\u09cd\u099f open netaji indoor stadium is the ."
+"-461.734 in 2005 , \u0989\u0987\u09ae\u09c7\u09a8\u09b8 tennis association of the tour \u099f\u09be\u09af\u09bc\u09be\u09b0-\u09a5\u09cd\u09b0\u09bf \u099f\u09c1\u09b0\u09cd\u09a8\u09be\u09ae\u09c7\u09a8\u09cd\u099f \u09b8\u09be\u09a8\u09ab\u09bf\u09b8\u09cd\u099f open netaji indoor stadium is the ."
+"-461.872 in 2005 , \u0989\u0987\u09ae\u09c7\u09a8\u09b8 tennis association tour \u099f\u09be\u09af\u09bc\u09be\u09b0-\u09a5\u09cd\u09b0\u09bf \u099f\u09c1\u09b0\u09cd\u09a8\u09be\u09ae\u09c7\u09a8\u09cd\u099f \u09b8\u09be\u09a8\u09ab\u09bf\u09b8\u09cd\u099f open netaji indoor stadium arranged in the ."
+"-461.885 2005 , \u0989\u0987\u09ae\u09c7\u09a8\u09b8 tennis association of the tour \u099f\u09be\u09af\u09bc\u09be\u09b0-\u09a5\u09cd\u09b0\u09bf \u099f\u09c1\u09b0\u09cd\u09a8\u09be\u09ae\u09c7\u09a8\u09cd\u099f \u09b8\u09be\u09a8\u09ab\u09bf\u09b8\u09cd\u099f open netaji indoor stadium is the ."
+"-21.333 to prevent this several measures are taken ."
+"-23.640 to prevent this several measures are in the ."
+"-23.669 to prevent this several measures are the ."
+"-23.707 to prevent this several measures are ."
+"-24.099 to prevent this several measures are in ."
+"-24.504 to avoid this possibility several measures are taken ."
+"-342.312 \u09e7\u09ef\u09ec\u09ec on 5 february \u09b2\u09be\u09b9\u09cb\u09b0\u09c7 of \u09a6\u09b2\u09b8\u09ae\u09c2\u09b9\u09c7\u09b0 a national was held in ."
+"-342.432 \u09e7\u09ef\u09ec\u09ec on 5 february \u09b2\u09be\u09b9\u09cb\u09b0\u09c7 opposition \u09a6\u09b2\u09b8\u09ae\u09c2\u09b9\u09c7\u09b0 a national was held in ."
+"-342.506 \u09e7\u09ef\u09ec\u09ec on february 5 \u09b2\u09be\u09b9\u09cb\u09b0\u09c7 of \u09a6\u09b2\u09b8\u09ae\u09c2\u09b9\u09c7\u09b0 a national was held in ."
+"-342.592 \u09e7\u09ef\u09ec\u09ec on 5 february \u09b2\u09be\u09b9\u09cb\u09b0\u09c7 against \u09a6\u09b2\u09b8\u09ae\u09c2\u09b9\u09c7\u09b0 a national was held in ."
+"-342.627 \u09e7\u09ef\u09ec\u09ec on february 5 \u09b2\u09be\u09b9\u09cb\u09b0\u09c7 opposition \u09a6\u09b2\u09b8\u09ae\u09c2\u09b9\u09c7\u09b0 a national was held in ."
+"-342.668 \u09e7\u09ef\u09ec\u09ec on 5th february \u09b2\u09be\u09b9\u09cb\u09b0\u09c7 of \u09a6\u09b2\u09b8\u09ae\u09c2\u09b9\u09c7\u09b0 a national was held in ."
+"-342.787 \u09e7\u09ef\u09ec\u09ec on february 5 \u09b2\u09be\u09b9\u09cb\u09b0\u09c7 against \u09a6\u09b2\u09b8\u09ae\u09c2\u09b9\u09c7\u09b0 a national was held in ."
+"-342.948 \u09e7\u09ef\u09ec\u09ec on 5th february \u09b2\u09be\u09b9\u09cb\u09b0\u09c7 against \u09a6\u09b2\u09b8\u09ae\u09c2\u09b9\u09c7\u09b0 a national was held in ."
+"-343.049 \u09e7\u09ef\u09ec\u09ec , on 5 february \u09b2\u09be\u09b9\u09cb\u09b0\u09c7 of \u09a6\u09b2\u09b8\u09ae\u09c2\u09b9\u09c7\u09b0 a national was held in ."
+"-343.128 \u09e7\u09ef\u09ec\u09ec on 5 february \u09b2\u09be\u09b9\u09cb\u09b0\u09c7 of \u09a6\u09b2\u09b8\u09ae\u09c2\u09b9\u09c7\u09b0 is a national was held in ."
+"-348.887 bangladesh \u0985\u09b0\u09cd\u0997\u09be\u09a8\u09be\u0987\u099c\u09c7\u09b6\u09a8 of the islamic \u0995\u09a8\u09ab\u09be\u09b0\u09c7\u09a8\u09cd\u09b8 and islamic \u09a1\u09c7\u09ad\u09c7\u09b2\u09aa\u09ae\u09c7\u09a3\u09cd\u099f bank secured its place in in the ."
+"-349.144 bangladesh \u0985\u09b0\u09cd\u0997\u09be\u09a8\u09be\u0987\u099c\u09c7\u09b6\u09a8 of the islamic \u0995\u09a8\u09ab\u09be\u09b0\u09c7\u09a8\u09cd\u09b8 and islamic \u09a1\u09c7\u09ad\u09c7\u09b2\u09aa\u09ae\u09c7\u09a3\u09cd\u099f bank secured its place in took the ."
+"-349.389 bangladesh \u0985\u09b0\u09cd\u0997\u09be\u09a8\u09be\u0987\u099c\u09c7\u09b6\u09a8 of the islamic \u0995\u09a8\u09ab\u09be\u09b0\u09c7\u09a8\u09cd\u09b8 and islamic \u09a1\u09c7\u09ad\u09c7\u09b2\u09aa\u09ae\u09c7\u09a3\u09cd\u099f bank secured its place in adopted ."
+"-349.516 bangladesh \u0985\u09b0\u09cd\u0997\u09be\u09a8\u09be\u0987\u099c\u09c7\u09b6\u09a8 of the islamic \u0995\u09a8\u09ab\u09be\u09b0\u09c7\u09a8\u09cd\u09b8 and islamic \u09a1\u09c7\u09ad\u09c7\u09b2\u09aa\u09ae\u09c7\u09a3\u09cd\u099f bank secured its place in took ."
+"-349.627 bangladesh \u0985\u09b0\u09cd\u0997\u09be\u09a8\u09be\u0987\u099c\u09c7\u09b6\u09a8 of the islamic \u0995\u09a8\u09ab\u09be\u09b0\u09c7\u09a8\u09cd\u09b8 and islamic \u09a1\u09c7\u09ad\u09c7\u09b2\u09aa\u09ae\u09c7\u09a3\u09cd\u099f bank secured its place in in ."
+"-350.110 bangladesh \u0985\u09b0\u09cd\u0997\u09be\u09a8\u09be\u0987\u099c\u09c7\u09b6\u09a8 of the islamic \u0995\u09a8\u09ab\u09be\u09b0\u09c7\u09a8\u09cd\u09b8 and islamic \u09a1\u09c7\u09ad\u09c7\u09b2\u09aa\u09ae\u09c7\u09a3\u09cd\u099f bank secured its place in adopted the ."
+"-350.210 the bangladesh \u0985\u09b0\u09cd\u0997\u09be\u09a8\u09be\u0987\u099c\u09c7\u09b6\u09a8 of the islamic \u0995\u09a8\u09ab\u09be\u09b0\u09c7\u09a8\u09cd\u09b8 and islamic \u09a1\u09c7\u09ad\u09c7\u09b2\u09aa\u09ae\u09c7\u09a3\u09cd\u099f bank secured its place in in the ."
+"-350.262 bangladesh \u0985\u09b0\u09cd\u0997\u09be\u09a8\u09be\u0987\u099c\u09c7\u09b6\u09a8 of the islamic \u0995\u09a8\u09ab\u09be\u09b0\u09c7\u09a8\u09cd\u09b8 and the islamic \u09a1\u09c7\u09ad\u09c7\u09b2\u09aa\u09ae\u09c7\u09a3\u09cd\u099f bank secured its place in in the ."
+"-350.466 the bangladesh \u0985\u09b0\u09cd\u0997\u09be\u09a8\u09be\u0987\u099c\u09c7\u09b6\u09a8 of the islamic \u0995\u09a8\u09ab\u09be\u09b0\u09c7\u09a8\u09cd\u09b8 and islamic \u09a1\u09c7\u09ad\u09c7\u09b2\u09aa\u09ae\u09c7\u09a3\u09cd\u099f bank secured its place in took the ."
+"-350.518 bangladesh \u0985\u09b0\u09cd\u0997\u09be\u09a8\u09be\u0987\u099c\u09c7\u09b6\u09a8 of the islamic \u0995\u09a8\u09ab\u09be\u09b0\u09c7\u09a8\u09cd\u09b8 and the islamic \u09a1\u09c7\u09ad\u09c7\u09b2\u09aa\u09ae\u09c7\u09a3\u09cd\u099f bank secured its place in took the ."
+"0.287 subject category : encyclopedia"
+"-0.402 subject class : encyclopedia"
+"-0.446 subject matter : encyclopedia"
+"-0.476 subject : encyclopedia"
+"-0.771 category : encyclopedia"
+"-136.409 russia , france and israel is the main \u0985\u09b8\u09cd\u09a4\u09cd\u09b0\u09b8\u09b0\u09ac\u09b0\u09be\u09b9\u0995\u09be\u09b0\u09c0 country and defense sub country ."
+"-136.785 russia , france and israel is the main \u0985\u09b8\u09cd\u09a4\u09cd\u09b0\u09b8\u09b0\u09ac\u09b0\u09be\u09b9\u0995\u09be\u09b0\u09c0 state and defense sub country ."
+"-137.263 russia , france and israel is the main \u0985\u09b8\u09cd\u09a4\u09cd\u09b0\u09b8\u09b0\u09ac\u09b0\u09be\u09b9\u0995\u09be\u09b0\u09c0 country and the defense sub country ."
+"-137.272 russia , france and israel is the main \u0985\u09b8\u09cd\u09a4\u09cd\u09b0\u09b8\u09b0\u09ac\u09b0\u09be\u09b9\u0995\u09be\u09b0\u09c0 country and defence sub country ."
+"-138.633 russia , france and israel is the main \u0985\u09b8\u09cd\u09a4\u09cd\u09b0\u09b8\u09b0\u09ac\u09b0\u09be\u09b9\u0995\u09be\u09b0\u09c0 country and defense subsidiary country ."
+"-138.974 russia , france and israel is the main \u0985\u09b8\u09cd\u09a4\u09cd\u09b0\u09b8\u09b0\u09ac\u09b0\u09be\u09b9\u0995\u09be\u09b0\u09c0 country and defense coordinating country ."
+"-139.126 russia , france and the israel is the main \u0985\u09b8\u09cd\u09a4\u09cd\u09b0\u09b8\u09b0\u09ac\u09b0\u09be\u09b9\u0995\u09be\u09b0\u09c0 country and defense sub country ."
+"-139.429 russia , france and israel is the main \u0985\u09b8\u09cd\u09a4\u09cd\u09b0\u09b8\u09b0\u09ac\u09b0\u09be\u09b9\u0995\u09be\u09b0\u09c0 country and defense sub country of ."
+"-139.441 russia , france and of israel is the main \u0985\u09b8\u09cd\u09a4\u09cd\u09b0\u09b8\u09b0\u09ac\u09b0\u09be\u09b9\u0995\u09be\u09b0\u09c0 country and defense sub country ."
+"-139.502 russia , france and the israel is the main \u0985\u09b8\u09cd\u09a4\u09cd\u09b0\u09b8\u09b0\u09ac\u09b0\u09be\u09b9\u0995\u09be\u09b0\u09c0 state and defense sub country ."
+"-155.661 this is our known as an imaginary unit which with the help of mathematics formed the real number set from the complex number \u09b8\u09c7\u099f\u09c7 par with the ."
+"-155.793 this is our known as imaginary unit which with the help of mathematics formed the real number set from the complex number \u09b8\u09c7\u099f\u09c7 par with the ."
+"-156.117 this is our known as an imaginary unit which with the help of mathematics formed the real number set from complex number \u09b8\u09c7\u099f\u09c7 par with the ."
+"-156.225 this is our known as an imaginary unit which with the help of mathematics formed the real number set from the complex numbers \u09b8\u09c7\u099f\u09c7 par with the ."
+"-156.249 this is our known as imaginary unit which with the help of mathematics formed the real number set from complex number \u09b8\u09c7\u099f\u09c7 par with the ."
+"-156.297 this is our known as an imaginary unit which with the help of mathematics formed the real number set from the complex number \u09b8\u09c7\u099f\u09c7 par with ."
+"-156.357 this is our known as imaginary unit which with the help of mathematics formed the real number set from the complex numbers \u09b8\u09c7\u099f\u09c7 par with the ."
+"-156.402 this is our known imaginary unit which with the help of mathematics formed the real number set from the complex number \u09b8\u09c7\u099f\u09c7 par with the ."
+"-156.430 this is our known as imaginary unit which with the help of mathematics formed the real number set from the complex number \u09b8\u09c7\u099f\u09c7 par with ."
+"-156.753 this is our known as an imaginary unit which with the help of mathematics formed the real number set from complex number \u09b8\u09c7\u099f\u09c7 par with ."
+"-21.727 <address>"
+"-126.861 " \u09a0\u09bf\u0995\u09be\u09a8\u09be ""
+"-127.198 <district>kumilla</district> \u09a0\u09bf\u0995\u09be\u09a8\u09be ""
+"-127.412 " \u09a0\u09bf\u0995\u09be\u09a8\u09be >"
+"-127.534 < \u09a0\u09bf\u0995\u09be\u09a8\u09be ""
+"-127.749 <district>kumilla</district> \u09a0\u09bf\u0995\u09be\u09a8\u09be >"
+"0.260 september"
+"-3.522 september ."
+"-104.738 \u09b8\u09c7\u09aa\u09cd\u099f\u09c7\u09ae\u09cd\u09ac\u09b0"
+"-147.375 this theory from , in the \u09ac\u09bf\u09b8\u09cd\u09ab\u09cb\u09b0\u09a3\u09cb\u09b0 against can not be , rather it can be supported ."
+"-147.379 this theory from , in the big \u09ac\u09bf\u09b8\u09cd\u09ab\u09cb\u09b0\u09a3\u09cb\u09b0 against can not be , rather it can be supported ."
+"-147.384 this theory from , in the \u09ac\u09bf\u09b8\u09cd\u09ab\u09cb\u09b0\u09a3\u09cb\u09b0 against can not be , but it can be supported ."
+"-147.388 this theory from , in the big \u09ac\u09bf\u09b8\u09cd\u09ab\u09cb\u09b0\u09a3\u09cb\u09b0 against can not be , but it can be supported ."
+"-147.623 in this theory from , in the big \u09ac\u09bf\u09b8\u09cd\u09ab\u09cb\u09b0\u09a3\u09cb\u09b0 against can not be , rather it can be supported ."
+"-147.632 in this theory from , in the big \u09ac\u09bf\u09b8\u09cd\u09ab\u09cb\u09b0\u09a3\u09cb\u09b0 against can not be , but it can be supported ."
+"-147.916 this theory from however , the \u09ac\u09bf\u09b8\u09cd\u09ab\u09cb\u09b0\u09a3\u09cb\u09b0 against can not be , rather it can be supported ."
+"-147.925 this theory from however , the \u09ac\u09bf\u09b8\u09cd\u09ab\u09cb\u09b0\u09a3\u09cb\u09b0 against can not be , but it can be supported ."
+"-147.965 this theory from however , the big \u09ac\u09bf\u09b8\u09cd\u09ab\u09cb\u09b0\u09a3\u09cb\u09b0 against can not be , rather it can be supported ."
+"-147.974 this theory from however , the big \u09ac\u09bf\u09b8\u09cd\u09ab\u09cb\u09b0\u09a3\u09cb\u09b0 against can not be , but it can be supported ."
+"-265.370 agricultural in production france is the most important country , it is mainly \u0996\u09be\u09a6\u09cd\u09af\u09b6\u09b8\u09cd\u09af , wine , cheese and other \u0995\u09c3\u09b7\u09bf\u09a6\u09cd\u09b0\u09ac\u09cd\u09af europe and in the whole world export ."
+"-265.446 agricultural in production france is the most important country ; it is mainly \u0996\u09be\u09a6\u09cd\u09af\u09b6\u09b8\u09cd\u09af , wine , cheese and other \u0995\u09c3\u09b7\u09bf\u09a6\u09cd\u09b0\u09ac\u09cd\u09af europe and in the whole world export ."
+"-266.013 agricultural in production france is the most important country , it is mainly \u0996\u09be\u09a6\u09cd\u09af\u09b6\u09b8\u09cd\u09af , wine , cheese and other \u0995\u09c3\u09b7\u09bf\u09a6\u09cd\u09b0\u09ac\u09cd\u09af europe and the whole world export ."
+"-266.089 agricultural in production france is the most important country ; it is mainly \u0996\u09be\u09a6\u09cd\u09af\u09b6\u09b8\u09cd\u09af , wine , cheese and other \u0995\u09c3\u09b7\u09bf\u09a6\u09cd\u09b0\u09ac\u09cd\u09af europe and the whole world export ."
+"-266.264 agricultural in production france is the most important country , it is mainly \u0996\u09be\u09a6\u09cd\u09af\u09b6\u09b8\u09cd\u09af , the wine , cheese and other \u0995\u09c3\u09b7\u09bf\u09a6\u09cd\u09b0\u09ac\u09cd\u09af europe and in the whole world export ."
+"-266.340 agricultural in production france is the most important country ; it is mainly \u0996\u09be\u09a6\u09cd\u09af\u09b6\u09b8\u09cd\u09af , the wine , cheese and other \u0995\u09c3\u09b7\u09bf\u09a6\u09cd\u09b0\u09ac\u09cd\u09af europe and in the whole world export ."
+"-266.392 agricultural in production france is the most important country , it is basically \u0996\u09be\u09a6\u09cd\u09af\u09b6\u09b8\u09cd\u09af , wine , cheese and other \u0995\u09c3\u09b7\u09bf\u09a6\u09cd\u09b0\u09ac\u09cd\u09af europe and in the whole world export ."
+"-266.490 agricultural in production france is the most important country ; it is \u0996\u09be\u09a6\u09cd\u09af\u09b6\u09b8\u09cd\u09af , wine , cheese and other \u0995\u09c3\u09b7\u09bf\u09a6\u09cd\u09b0\u09ac\u09cd\u09af europe and in the whole world export ."
+"-266.548 agricultural in production france is the most important country , it is mainly \u0996\u09be\u09a6\u09cd\u09af\u09b6\u09b8\u09cd\u09af , why , cheese and other \u0995\u09c3\u09b7\u09bf\u09a6\u09cd\u09b0\u09ac\u09cd\u09af europe and in the whole world export ."
+"-266.623 agricultural in production france is the most important country ; it is mainly \u0996\u09be\u09a6\u09cd\u09af\u09b6\u09b8\u09cd\u09af , why , cheese and other \u0995\u09c3\u09b7\u09bf\u09a6\u09cd\u09b0\u09ac\u09cd\u09af europe and in the whole world export ."
+"-118.675 their in mathematics \u09aa\u09be\u099f\u09c0\u0997\u09a3\u09bf\u09a4\u09c7\u09b0 person was ."
+"-119.589 their in mathematics \u09aa\u09be\u099f\u09c0\u0997\u09a3\u09bf\u09a4\u09c7\u09b0 priority was ."
+"-119.755 their in mathematics \u09aa\u09be\u099f\u09c0\u0997\u09a3\u09bf\u09a4\u09c7\u09b0 were was ."
+"-119.974 in their in mathematics \u09aa\u09be\u099f\u09c0\u0997\u09a3\u09bf\u09a4\u09c7\u09b0 person was ."
+"-120.094 their in mathematics \u09aa\u09be\u099f\u09c0\u0997\u09a3\u09bf\u09a4\u09c7\u09b0 are was ."
+"-120.273 they in mathematics \u09aa\u09be\u099f\u09c0\u0997\u09a3\u09bf\u09a4\u09c7\u09b0 person was ."
+"-120.375 of their in mathematics \u09aa\u09be\u099f\u09c0\u0997\u09a3\u09bf\u09a4\u09c7\u09b0 person was ."
+"-120.399 their in mathematics \u09aa\u09be\u099f\u09c0\u0997\u09a3\u09bf\u09a4\u09c7\u09b0 dominance was ."
+"-120.487 their in mathematics \u09aa\u09be\u099f\u09c0\u0997\u09a3\u09bf\u09a4\u09c7\u09b0 in was ."
+"-605.242 deshgulo are : france , call , make noise , china , belgium , switzerland , germany , denmark , sweden , austria , chekoslovakia , argentina , italy , norway , \u09b9\u09be\u0999\u09cd\u0997\u09c7\u09b0\u09c0 , yugoslavia , bulgaria , rumania , \u0997\u09cd\u09b0\u09c0\u09b8 , egypt , singapore , indonesia , \u09a5\u09be\u0987\u09b2\u09cd\u09af\u09be\u09a8\u09cd\u09a1 , japan , burma , \u09b9\u09b2\u09cd\u09af\u09be\u09a8\u09cd\u09a1 , the soviet russia , iran , iraq and sri lanka ."
+"-605.394 deshgulo are : france , call , make noise , china , belgium , switzerland , germany , denmark , sweden , austria , chekoslovakia , argentina , italy , in norway , \u09b9\u09be\u0999\u09cd\u0997\u09c7\u09b0\u09c0 , yugoslavia , bulgaria , rumania , \u0997\u09cd\u09b0\u09c0\u09b8 , egypt , singapore , indonesia , \u09a5\u09be\u0987\u09b2\u09cd\u09af\u09be\u09a8\u09cd\u09a1 , japan , burma , \u09b9\u09b2\u09cd\u09af\u09be\u09a8\u09cd\u09a1 , the soviet russia , iran , iraq and sri lanka ."
+"-605.592 deshgulo are : france , call , make noise , china , belgium , switzerland , germany , denmark , sweden , austria , chekoslovakia , argentina , italy , norway , \u09b9\u09be\u0999\u09cd\u0997\u09c7\u09b0\u09c0 , yugoslavia , bulgaria , romania , \u0997\u09cd\u09b0\u09c0\u09b8 , egypt , singapore , indonesia , \u09a5\u09be\u0987\u09b2\u09cd\u09af\u09be\u09a8\u09cd\u09a1 , japan , burma , \u09b9\u09b2\u09cd\u09af\u09be\u09a8\u09cd\u09a1 , the soviet russia , iran , iraq and sri lanka ."
+"-605.619 deshgulo are : france , call , make noise , china , belgium , switzerland , germany , denmark , in sweden , austria , chekoslovakia , argentina , italy , norway , \u09b9\u09be\u0999\u09cd\u0997\u09c7\u09b0\u09c0 , yugoslavia , bulgaria , rumania , \u0997\u09cd\u09b0\u09c0\u09b8 , egypt , singapore , indonesia , \u09a5\u09be\u0987\u09b2\u09cd\u09af\u09be\u09a8\u09cd\u09a1 , japan , burma , \u09b9\u09b2\u09cd\u09af\u09be\u09a8\u09cd\u09a1 , the soviet russia , iran , iraq and sri lanka ."
+"-605.745 deshgulo are : france , call , make noise , china , belgium , switzerland , germany , denmark , sweden , austria , chekoslovakia , argentina , italy , in norway , \u09b9\u09be\u0999\u09cd\u0997\u09c7\u09b0\u09c0 , yugoslavia , bulgaria , romania , \u0997\u09cd\u09b0\u09c0\u09b8 , egypt , singapore , indonesia , \u09a5\u09be\u0987\u09b2\u09cd\u09af\u09be\u09a8\u09cd\u09a1 , japan , burma , \u09b9\u09b2\u09cd\u09af\u09be\u09a8\u09cd\u09a1 , the soviet russia , iran , iraq and sri lanka ."
+"-605.771 deshgulo are : france , call , make noise , china , belgium , switzerland , germany , denmark , in sweden , austria , chekoslovakia , argentina , italy , in norway , \u09b9\u09be\u0999\u09cd\u0997\u09c7\u09b0\u09c0 , yugoslavia , bulgaria , rumania , \u0997\u09cd\u09b0\u09c0\u09b8 , egypt , singapore , indonesia , \u09a5\u09be\u0987\u09b2\u09cd\u09af\u09be\u09a8\u09cd\u09a1 , japan , burma , \u09b9\u09b2\u09cd\u09af\u09be\u09a8\u09cd\u09a1 , the soviet russia , iran , iraq and sri lanka ."
+"-605.951 deshgulo are : france , call , make noise , china , belgium , switzerland , germany , denmark , sweden , austria , chekoslovakia , argentina , italy , norway , \u09b9\u09be\u0999\u09cd\u0997\u09c7\u09b0\u09c0 , and yugoslavia , bulgaria , rumania , \u0997\u09cd\u09b0\u09c0\u09b8 , egypt , singapore , indonesia , \u09a5\u09be\u0987\u09b2\u09cd\u09af\u09be\u09a8\u09cd\u09a1 , japan , burma , \u09b9\u09b2\u09cd\u09af\u09be\u09a8\u09cd\u09a1 , the soviet russia , iran , iraq and sri lanka ."
+"-605.969 deshgulo are : france , call , make noise , china , belgium , switzerland , germany , denmark , in sweden , austria , chekoslovakia , argentina , italy , norway , \u09b9\u09be\u0999\u09cd\u0997\u09c7\u09b0\u09c0 , yugoslavia , bulgaria , romania , \u0997\u09cd\u09b0\u09c0\u09b8 , egypt , singapore , indonesia , \u09a5\u09be\u0987\u09b2\u09cd\u09af\u09be\u09a8\u09cd\u09a1 , japan , burma , \u09b9\u09b2\u09cd\u09af\u09be\u09a8\u09cd\u09a1 , the soviet russia , iran , iraq and sri lanka ."
+"-605.983 deshgulo are : france , call , make noise , china , belgium , switzerland , germany , denmark , sweden , austria , chekoslovakia , argentina , italy , norway , \u09b9\u09be\u0999\u09cd\u0997\u09c7\u09b0\u09c0 , yugoslavia , bulgaria , rumania , \u0997\u09cd\u09b0\u09c0\u09b8 , egypt , singapore , indonesia , \u09a5\u09be\u0987\u09b2\u09cd\u09af\u09be\u09a8\u09cd\u09a1 , japan , burma , \u09b9\u09b2\u09cd\u09af\u09be\u09a8\u09cd\u09a1 , the soviet russia , iran , iraq and after visiting srilanka ."
+"-606.122 deshgulo are : france , call , make noise , china , belgium , switzerland , germany , denmark , in sweden , austria , chekoslovakia , argentina , italy , in norway , \u09b9\u09be\u0999\u09cd\u0997\u09c7\u09b0\u09c0 , yugoslavia , bulgaria , romania , \u0997\u09cd\u09b0\u09c0\u09b8 , egypt , singapore , indonesia , \u09a5\u09be\u0987\u09b2\u09cd\u09af\u09be\u09a8\u09cd\u09a1 , japan , burma , \u09b9\u09b2\u09cd\u09af\u09be\u09a8\u09cd\u09a1 , the soviet russia , iran , iraq and sri lanka ."
+"-119.423 this \u09ac\u09cd\u09af\u09be\u09b8\u09bf\u09b2\u09bf\u0995\u09be\u09b0 places now bank of england is situated ."
+"-119.722 in this \u09ac\u09cd\u09af\u09be\u09b8\u09bf\u09b2\u09bf\u0995\u09be\u09b0 places now bank of england is situated ."
+"-119.957 this \u09ac\u09cd\u09af\u09be\u09b8\u09bf\u09b2\u09bf\u0995\u09be\u09b0 places is now bank of england is situated ."
+"-120.301 this \u09ac\u09cd\u09af\u09be\u09b8\u09bf\u09b2\u09bf\u0995\u09be\u09b0 places now bank of england is located ."
+"-120.554 this \u09ac\u09cd\u09af\u09be\u09b8\u09bf\u09b2\u09bf\u0995\u09be\u09b0 places now bank of england is situated in ."
+"-120.695 this \u09ac\u09cd\u09af\u09be\u09b8\u09bf\u09b2\u09bf\u0995\u09be\u09b0 places now bank of england is situated at ."
+"-120.727 this \u09ac\u09cd\u09af\u09be\u09b8\u09bf\u09b2\u09bf\u0995\u09be\u09b0 places now bank of england is located in ."
+"-120.834 this \u09ac\u09cd\u09af\u09be\u09b8\u09bf\u09b2\u09bf\u0995\u09be\u09b0 places is now bank of england is located ."
+"-120.852 in this \u09ac\u09cd\u09af\u09be\u09b8\u09bf\u09b2\u09bf\u0995\u09be\u09b0 places now bank of england is situated in ."
+"-121.016 this \u09ac\u09cd\u09af\u09be\u09b8\u09bf\u09b2\u09bf\u0995\u09be\u09b0 places are bank of england is situated in ."
+"-461.835 in the north of this country \u09ac\u09bf\u09b8\u09cd\u0995\u09be\u0987 sub-sea , on the south \u099c\u09bf\u09ac\u09cd\u09b0\u09be\u09b2\u09cd\u099f\u09be\u09b0 strait , \u09aa\u09cd\u09b0\u09a3\u09be\u09b2\u09c0\u09b0 in the south \u09ae\u09b0\u0995\u09cd\u0995\u09cb , west and the towards the atlantic ocean ."
+"-462.322 in the north of this country \u09ac\u09bf\u09b8\u09cd\u0995\u09be\u0987 sub-sea , on the south \u099c\u09bf\u09ac\u09cd\u09b0\u09be\u09b2\u09cd\u099f\u09be\u09b0 strait , \u09aa\u09cd\u09b0\u09a3\u09be\u09b2\u09c0\u09b0 in the south \u09ae\u09b0\u0995\u09cd\u0995\u09cb , west and the side of atlantic ocean ."
+"-462.361 in the north of this country \u09ac\u09bf\u09b8\u09cd\u0995\u09be\u0987 sub-sea , on the south \u099c\u09bf\u09ac\u09cd\u09b0\u09be\u09b2\u09cd\u099f\u09be\u09b0 strait , \u09aa\u09cd\u09b0\u09a3\u09be\u09b2\u09c0\u09b0 in the south \u09ae\u09b0\u0995\u09cd\u0995\u09cb , west and the of atlantic ocean ."
+"-462.532 in the north of this country \u09ac\u09bf\u09b8\u09cd\u0995\u09be\u0987 sub-sea , on the south \u099c\u09bf\u09ac\u09cd\u09b0\u09be\u09b2\u09cd\u099f\u09be\u09b0 strait , \u09aa\u09cd\u09b0\u09a3\u09be\u09b2\u09c0\u09b0 in the south \u09ae\u09b0\u0995\u09cd\u0995\u09cb , west and the of the atlantic ocean ."
+"-462.573 in the north of this country \u09ac\u09bf\u09b8\u09cd\u0995\u09be\u0987 sub-sea , on the south \u099c\u09bf\u09ac\u09cd\u09b0\u09be\u09b2\u09cd\u099f\u09be\u09b0 strait , \u09aa\u09cd\u09b0\u09a3\u09be\u09b2\u09c0\u09b0 in the south \u09ae\u09b0\u0995\u09cd\u0995\u09cb , west and the side of the atlantic ocean ."
+"-462.634 on the north of the country is the \u09ac\u09bf\u09b8\u09cd\u0995\u09be\u0987 sub-sea , on the south \u099c\u09bf\u09ac\u09cd\u09b0\u09be\u09b2\u09cd\u099f\u09be\u09b0 strait , \u09aa\u09cd\u09b0\u09a3\u09be\u09b2\u09c0\u09b0 in the south \u09ae\u09b0\u0995\u09cd\u0995\u09cb , west and the towards the atlantic ocean ."
+"-462.712 in the north of this country \u09ac\u09bf\u09b8\u09cd\u0995\u09be\u0987 sub-sea , on the south \u099c\u09bf\u09ac\u09cd\u09b0\u09be\u09b2\u09cd\u099f\u09be\u09b0 strait , \u09aa\u09cd\u09b0\u09a3\u09be\u09b2\u09c0\u09b0 in the south \u09ae\u09b0\u0995\u09cd\u0995\u09cb , west and the the atlantic ocean ."
+"-462.825 in the north of this country \u09ac\u09bf\u09b8\u09cd\u0995\u09be\u0987 sub-sea , on the south \u099c\u09bf\u09ac\u09cd\u09b0\u09be\u09b2\u09cd\u099f\u09be\u09b0 strait , \u09aa\u09cd\u09b0\u09a3\u09be\u09b2\u09c0\u09b0 in \u09ae\u09b0\u0995\u09cd\u0995\u09cb , west and the towards the atlantic ocean ."
+"-462.833 in the north of this country \u09ac\u09bf\u09b8\u09cd\u0995\u09be\u0987 sub-sea , on the south \u099c\u09bf\u09ac\u09cd\u09b0\u09be\u09b2\u09cd\u099f\u09be\u09b0 strait , \u09aa\u09cd\u09b0\u09a3\u09be\u09b2\u09c0\u09b0 in the south \u09ae\u09b0\u0995\u09cd\u0995\u09cb , west and the on the atlantic ocean ."
+"-462.991 in the north of this country \u09ac\u09bf\u09b8\u09cd\u0995\u09be\u0987 sub-sea , on the south \u099c\u09bf\u09ac\u09cd\u09b0\u09be\u09b2\u09cd\u099f\u09be\u09b0 strait , \u09aa\u09cd\u09b0\u09a3\u09be\u09b2\u09c0\u09b0 the \u09ae\u09b0\u0995\u09cd\u0995\u09cb , west and the towards the atlantic ocean ."
+"-349.945 apart from this situation it can be understood that a \u09ae\u09c1\u09b9\u09c2\u09b0\u09cd\u09a4\u09c7 of the united nations of the decision \u09a8\u09c7\u09ac\u09be\u09b0 \u0985\u0995\u09cd\u09b7\u09ae\u09a4\u09be ."
+"-350.476 apart from that , this situation it can be understood that a \u09ae\u09c1\u09b9\u09c2\u09b0\u09cd\u09a4\u09c7 of the united nations of the decision \u09a8\u09c7\u09ac\u09be\u09b0 \u0985\u0995\u09cd\u09b7\u09ae\u09a4\u09be ."
+"-350.589 apart from this situation it can be understood a \u09ae\u09c1\u09b9\u09c2\u09b0\u09cd\u09a4\u09c7 of the united nations of the decision \u09a8\u09c7\u09ac\u09be\u09b0 \u0985\u0995\u09cd\u09b7\u09ae\u09a4\u09be ."
+"-350.844 apart from this situation it can be understood that a \u09ae\u09c1\u09b9\u09c2\u09b0\u09cd\u09a4\u09c7 of the united nations the decision \u09a8\u09c7\u09ac\u09be\u09b0 \u0985\u0995\u09cd\u09b7\u09ae\u09a4\u09be ."
+"-351.121 apart from that , this situation it can be understood a \u09ae\u09c1\u09b9\u09c2\u09b0\u09cd\u09a4\u09c7 of the united nations of the decision \u09a8\u09c7\u09ac\u09be\u09b0 \u0985\u0995\u09cd\u09b7\u09ae\u09a4\u09be ."
+"-351.262 apart from that , for this situation it can be understood that a \u09ae\u09c1\u09b9\u09c2\u09b0\u09cd\u09a4\u09c7 of the united nations of the decision \u09a8\u09c7\u09ac\u09be\u09b0 \u0985\u0995\u09cd\u09b7\u09ae\u09a4\u09be ."
+"-351.267 apart from these , this situation it can be understood that a \u09ae\u09c1\u09b9\u09c2\u09b0\u09cd\u09a4\u09c7 of the united nations of the decision \u09a8\u09c7\u09ac\u09be\u09b0 \u0985\u0995\u09cd\u09b7\u09ae\u09a4\u09be ."
+"-351.327 apart from this situation it can be understood that a \u09ae\u09c1\u09b9\u09c2\u09b0\u09cd\u09a4\u09c7 of united nation of the decision \u09a8\u09c7\u09ac\u09be\u09b0 \u0985\u0995\u09cd\u09b7\u09ae\u09a4\u09be ."
+"-351.427 apart from this situation it can be understood that a \u09ae\u09c1\u09b9\u09c2\u09b0\u09cd\u09a4\u09c7 of the united nations fast decision \u09a8\u09c7\u09ac\u09be\u09b0 \u0985\u0995\u09cd\u09b7\u09ae\u09a4\u09be ."
+"-351.449 apart from this situation it can be understood that a \u09ae\u09c1\u09b9\u09c2\u09b0\u09cd\u09a4\u09c7 of the united nations rapidly decision \u09a8\u09c7\u09ac\u09be\u09b0 \u0985\u0995\u09cd\u09b7\u09ae\u09a4\u09be ."
+"-129.293 \u0995\u09be\u09b0\u09cd\u09b2 there is work through it by the ."
+"-130.169 \u0995\u09be\u09b0\u09cd\u09b2 there is work through it is controlled by ."
+"-130.397 \u0995\u09be\u09b0\u09cd\u09b2 there is work through it controlled by the ."
+"-130.442 \u0995\u09be\u09b0\u09cd\u09b2 there is work through it by ."
+"-130.455 \u0995\u09be\u09b0\u09cd\u09b2 there is work through this controlled by the ."
+"-130.463 \u0995\u09be\u09b0\u09cd\u09b2 there is only through it by the ."
+"-130.546 \u0995\u09be\u09b0\u09cd\u09b2 there is work through this by the ."
+"-130.628 \u0995\u09be\u09b0\u09cd\u09b2 place there is work through it by the ."
+"-130.739 \u0995\u09be\u09b0\u09cd\u09b2 there is work through this are conducted by the ."
+"-131.107 \u0995\u09be\u09b0\u09cd\u09b2 there is work through it are conducted by the ."
+"-165.025 the subject of sometimes puran -lrb- from , sometimes in the middle age love story from , sometimes again today 's social and political \u0998\u099f\u09a8\u09be\u09ac\u09b2\u09bf from accepted ."
+"-165.876 the subject of sometimes puran -lrb- from , sometimes in the middle age love story from , sometimes again today 's social and political \u0998\u099f\u09a8\u09be\u09ac\u09b2\u09bf taken from ."
+"-165.884 the subject of sometimes puran -lrb- from , sometimes in the middle age love story from , sometimes again today 's social and political \u0998\u099f\u09a8\u09be\u09ac\u09b2\u09bf from the accepted ."
+"-166.021 the subject of some puran -lrb- from , sometimes in the middle age love story from , sometimes again today 's social and political \u0998\u099f\u09a8\u09be\u09ac\u09b2\u09bf from accepted ."
+"-166.116 the subject of sometimes puran -lrb- from , sometimes in the middle age love story to , sometimes again today 's social and political \u0998\u099f\u09a8\u09be\u09ac\u09b2\u09bf from accepted ."
+"-166.120 the subject of sometimes puran -lrb- from , sometimes in the middle age love story from , sometimes again today 's social and political \u0998\u099f\u09a8\u09be\u09ac\u09b2\u09bf to accepted ."
+"-166.162 the subject of sometimes puran -lrb- from , sometimes in middle age love story from , sometimes again today 's social and political \u0998\u099f\u09a8\u09be\u09ac\u09b2\u09bf from accepted ."
+"-166.174 the subject of sometimes puran -lrb- from , sometimes in the middle age love story from the , sometimes again today 's social and political \u0998\u099f\u09a8\u09be\u09ac\u09b2\u09bf from accepted ."
+"-166.244 the subject of sometimes puran -lrb- from , sometimes in the middle age love story from , sometimes again at the present age social and political \u0998\u099f\u09a8\u09be\u09ac\u09b2\u09bf from accepted ."
+"-166.279 the subject of sometime puran -lrb- from , sometimes in the middle age love story from , sometimes again today 's social and political \u0998\u099f\u09a8\u09be\u09ac\u09b2\u09bf from accepted ."
+"-354.717 three measure on the basis of the universe that age is found that is almost \u09e7\u09e9.\u09ed � \u09e6.\u09e8 billion years ."
+"-355.390 three measure on the basis of the universe that the age is found that is almost \u09e7\u09e9.\u09ed � \u09e6.\u09e8 billion years ."
+"-355.566 three measure on the basis of the universe that age is found that are almost \u09e7\u09e9.\u09ed � \u09e6.\u09e8 billion years ."
+"-355.918 three measure on the basis of the universe that age is found that is about \u09e7\u09e9.\u09ed � \u09e6.\u09e8 billion years ."
+"-355.947 three measure on the basis of the universe the age is found that is almost \u09e7\u09e9.\u09ed � \u09e6.\u09e8 billion years ."
+"-356.235 three measure on the basis of the universe that age found in that is almost \u09e7\u09e9.\u09ed � \u09e6.\u09e8 billion years ."
+"-356.239 three measure on the basis of the universe that the age is found that are almost \u09e7\u09e9.\u09ed � \u09e6.\u09e8 billion years ."
+"-356.484 three measure on the basis of the universe that age is found in the almost \u09e7\u09e9.\u09ed � \u09e6.\u09e8 billion years ."
+"-356.558 three measure on the basis of the universe that age is found that is around \u09e7\u09e9.\u09ed � \u09e6.\u09e8 billion years ."
+"-356.591 three measure on the basis of the universe that the age is found that is about \u09e7\u09e9.\u09ed � \u09e6.\u09e8 billion years ."
+"-242.737 \u0995\u09be\u099b\u09c7\u0987 there are east russia , which \u0993\u0996\u099f\u09b8\u09cd\u0995 sea and japan sea on the other can be is situated ."
+"-243.137 \u0995\u09be\u099b\u09c7\u0987 there are east russia , which is \u0993\u0996\u099f\u09b8\u09cd\u0995 sea and japan sea on the other can be is situated ."
+"-243.852 \u0995\u09be\u099b\u09c7\u0987 there are east russia , which \u0993\u0996\u099f\u09b8\u09cd\u0995 sea and japan sea on the other can be situated in ."
+"-243.867 \u0995\u09be\u099b\u09c7\u0987 there are east russia , which \u0993\u0996\u099f\u09b8\u09cd\u0995 sea and japan sea on the other can be is situated in ."
+"-243.900 \u0995\u09be\u099b\u09c7\u0987 there are east russia , which \u0993\u0996\u099f\u09b8\u09cd\u0995 sea and japan sea on the other can be situated in the ."
+"-244.008 \u0995\u09be\u099b\u09c7\u0987 there are east russia , which \u0993\u0996\u099f\u09b8\u09cd\u0995 sea and japan sea on the other can be is situated at ."
+"-244.031 \u0995\u09be\u099b\u09c7\u0987 there are east russia , which \u0993\u0996\u099f\u09b8\u09cd\u0995 sea and japan sea on the other can be situated ."
+"-244.041 \u0995\u09be\u099b\u09c7\u0987 there are east russia , which \u0993\u0996\u099f\u09b8\u09cd\u0995 sea and japan sea on the other can be is located in ."
+"-244.052 \u0995\u09be\u099b\u09c7\u0987 there are east russia , which \u0993\u0996\u099f\u09b8\u09cd\u0995 sea and japan sea on the other can is situated in ."
+"-244.075 \u0995\u09be\u099b\u09c7\u0987 are east russia , which \u0993\u0996\u099f\u09b8\u09cd\u0995 sea and japan sea on the other can be is situated in ."
+"-123.312 in kolkata is located in the national library of the leading public \u09b2\u09be\u0987\u09ac\u09cd\u09b0\u09c7\u09b0\u09bf ."
+"-123.654 in kolkata is located in the national library of the country was public \u09b2\u09be\u0987\u09ac\u09cd\u09b0\u09c7\u09b0\u09bf ."
+"-123.951 in kolkata is located in the national library of the country leading public \u09b2\u09be\u0987\u09ac\u09cd\u09b0\u09c7\u09b0\u09bf ."
+"-124.144 in kolkata is located in the national library the leading public \u09b2\u09be\u0987\u09ac\u09cd\u09b0\u09c7\u09b0\u09bf ."
+"-124.779 in kolkata is located in the national library , is the leading public \u09b2\u09be\u0987\u09ac\u09cd\u09b0\u09c7\u09b0\u09bf ."
+"-125.068 in kolkata is located in the national library of the country is leading public \u09b2\u09be\u0987\u09ac\u09cd\u09b0\u09c7\u09b0\u09bf ."
+"-125.571 in kolkata is located in the national library countries leading public \u09b2\u09be\u0987\u09ac\u09cd\u09b0\u09c7\u09b0\u09bf ."
+"-125.601 in kolkata is located in the national library of the country , the pioneering public \u09b2\u09be\u0987\u09ac\u09cd\u09b0\u09c7\u09b0\u09bf ."
+"-125.684 in kolkata is located in the national library the country leading public \u09b2\u09be\u0987\u09ac\u09cd\u09b0\u09c7\u09b0\u09bf ."
+"-126.253 in kolkata is located in the national library of the leading public \u09b2\u09be\u0987\u09ac\u09cd\u09b0\u09c7\u09b0\u09bf . ."
+"-104.738 \u099b\u09a4\u09cd\u09b0\u09be\u0995\u09ac\u09bf\u09a6\u09cd\u09af\u09be"
+"-222.227 \u09b0\u09be\u09b7\u09cd\u099f\u09cd\u09b0\u09b8\u0999\u09cd\u0998\u09c7\u09b0 secretary general \u09ac\u09be\u09a8 ki moon"
+"-222.626 \u09b0\u09be\u09b7\u09cd\u099f\u09cd\u09b0\u09b8\u0999\u09cd\u0998\u09c7\u09b0 general secretary \u09ac\u09be\u09a8 ki moon"
+"-224.534 \u09b0\u09be\u09b7\u09cd\u099f\u09cd\u09b0\u09b8\u0999\u09cd\u0998\u09c7\u09b0 chief secretary \u09ac\u09be\u09a8 ki moon"
+"-225.003 \u09b0\u09be\u09b7\u09cd\u099f\u09cd\u09b0\u09b8\u0999\u09cd\u0998\u09c7\u09b0 secretary general \u09ac\u09be\u09a8 what moon"
+"-225.402 \u09b0\u09be\u09b7\u09cd\u099f\u09cd\u09b0\u09b8\u0999\u09cd\u0998\u09c7\u09b0 general secretary \u09ac\u09be\u09a8 what moon"
+"-226.183 \u09b0\u09be\u09b7\u09cd\u099f\u09cd\u09b0\u09b8\u0999\u09cd\u0998\u09c7\u09b0 chief secretary of \u09ac\u09be\u09a8 ki moon"
+"-226.565 \u09b0\u09be\u09b7\u09cd\u099f\u09cd\u09b0\u09b8\u0999\u09cd\u0998\u09c7\u09b0 chief secretary \u09ac\u09be\u09a8 what moon"
+"-226.669 \u09b0\u09be\u09b7\u09cd\u099f\u09cd\u09b0\u09b8\u0999\u09cd\u0998\u09c7\u09b0 secretary general \u09ac\u09be\u09a8 what salt"
+"-344.577 \u09ae\u09bf\u09a8\u09bf\u0995\u09cd\u09b8\u09c7\u09b0 of india was smells \u099f\u09be\u09a8\u09c7\u09a8\u09ac\u09ae , a famous operating system designing \u09aa\u09cd\u09b0\u09b6\u09bf\u0995\u09cd\u09b7\u0995 ."
+"-344.611 \u09ae\u09bf\u09a8\u09bf\u0995\u09cd\u09b8\u09c7\u09b0 of india was smells \u099f\u09be\u09a8\u09c7\u09a8\u09ac\u09ae , a famous operating system design \u09aa\u09cd\u09b0\u09b6\u09bf\u0995\u09cd\u09b7\u0995 ."
+"-344.995 \u09ae\u09bf\u09a8\u09bf\u0995\u09cd\u09b8\u09c7\u09b0 of india was smells \u099f\u09be\u09a8\u09c7\u09a8\u09ac\u09ae , in a famous operating system designing \u09aa\u09cd\u09b0\u09b6\u09bf\u0995\u09cd\u09b7\u0995 ."
+"-345.029 \u09ae\u09bf\u09a8\u09bf\u0995\u09cd\u09b8\u09c7\u09b0 of india was smells \u099f\u09be\u09a8\u09c7\u09a8\u09ac\u09ae , in a famous operating system design \u09aa\u09cd\u09b0\u09b6\u09bf\u0995\u09cd\u09b7\u0995 ."
+"-345.466 \u09ae\u09bf\u09a8\u09bf\u0995\u09cd\u09b8\u09c7\u09b0 of was smells \u099f\u09be\u09a8\u09c7\u09a8\u09ac\u09ae , a famous operating system designing \u09aa\u09cd\u09b0\u09b6\u09bf\u0995\u09cd\u09b7\u0995 ."
+"-345.499 \u09ae\u09bf\u09a8\u09bf\u0995\u09cd\u09b8\u09c7\u09b0 of was smells \u099f\u09be\u09a8\u09c7\u09a8\u09ac\u09ae , a famous operating system design \u09aa\u09cd\u09b0\u09b6\u09bf\u0995\u09cd\u09b7\u0995 ."
+"-345.884 \u09ae\u09bf\u09a8\u09bf\u0995\u09cd\u09b8\u09c7\u09b0 of was smells \u099f\u09be\u09a8\u09c7\u09a8\u09ac\u09ae , in a famous operating system designing \u09aa\u09cd\u09b0\u09b6\u09bf\u0995\u09cd\u09b7\u0995 ."
+"-345.906 \u09ae\u09bf\u09a8\u09bf\u0995\u09cd\u09b8\u09c7\u09b0 of were smells \u099f\u09be\u09a8\u09c7\u09a8\u09ac\u09ae , a famous operating system designing \u09aa\u09cd\u09b0\u09b6\u09bf\u0995\u09cd\u09b7\u0995 ."
+"-345.918 \u09ae\u09bf\u09a8\u09bf\u0995\u09cd\u09b8\u09c7\u09b0 of was smells \u099f\u09be\u09a8\u09c7\u09a8\u09ac\u09ae , in a famous operating system design \u09aa\u09cd\u09b0\u09b6\u09bf\u0995\u09cd\u09b7\u0995 ."
+"-345.940 \u09ae\u09bf\u09a8\u09bf\u0995\u09cd\u09b8\u09c7\u09b0 of were smells \u099f\u09be\u09a8\u09c7\u09a8\u09ac\u09ae , a famous operating system design \u09aa\u09cd\u09b0\u09b6\u09bf\u0995\u09cd\u09b7\u0995 ."
+"-1735.945 the \u099f\u09be\u0987\u09ae\u09cd of 's of \u0987\u09a8\u09cd\u09a1\u09bf\u09af\u09bc\u09be-\u09a4\u09c7 written in the " it is absurd to compare it with any other indian cinema ... pather panchali is pure cinema " -lrb- " it other by the indian films with compared to unreal ... pather panchali are pure film " -rrb- ."
+"-1736.149 the \u099f\u09be\u0987\u09ae\u09cd of 's of \u0987\u09a8\u09cd\u09a1\u09bf\u09af\u09bc\u09be-\u09a4\u09c7 written in the " it is absurd to compare it with any other indian cinema ... pather panchali is pure cinema " -lrb- " it in other by the indian films with compared to unreal ... pather panchali are pure film " -rrb- ."
+"-1736.151 the \u099f\u09be\u0987\u09ae\u09cd of 's of \u0987\u09a8\u09cd\u09a1\u09bf\u09af\u09bc\u09be-\u09a4\u09c7 written in that " it is absurd to compare it with any other indian cinema ... pather panchali is pure cinema " -lrb- " it other by the indian films with compared to unreal ... pather panchali are pure film " -rrb- ."
+"-1736.297 the \u099f\u09be\u0987\u09ae\u09cd of 's of \u0987\u09a8\u09cd\u09a1\u09bf\u09af\u09bc\u09be-\u09a4\u09c7 written in the " it is absurd to compare it with any other indian cinema ... pather panchali is pure cinema " -lrb- " it is the by the indian films with compared to unreal ... pather panchali are pure film " -rrb- ."
+"-1736.355 the \u099f\u09be\u0987\u09ae\u09cd of 's of \u0987\u09a8\u09cd\u09a1\u09bf\u09af\u09bc\u09be-\u09a4\u09c7 written in that " it is absurd to compare it with any other indian cinema ... pather panchali is pure cinema " -lrb- " it in other by the indian films with compared to unreal ... pather panchali are pure film " -rrb- ."
+"-1736.363 the \u099f\u09be\u0987\u09ae\u09cd of 's of \u0987\u09a8\u09cd\u09a1\u09bf\u09af\u09bc\u09be-\u09a4\u09c7 written in the " it is absurd to compare it with any other indian cinema ... pather panchali is pure cinema , " -lrb- " it other by the indian films with compared to unreal ... pather panchali are pure film " -rrb- ."
+"-1736.461 the \u099f\u09be\u0987\u09ae\u09cd of 's of \u0987\u09a8\u09cd\u09a1\u09bf\u09af\u09bc\u09be-\u09a4\u09c7 written in the " it is absurd to compare it with any other indian cinema ... pather panchali is pure cinema " -lrb- " it other by the indian films with compared to unreal ... pather panchali is pure film " -rrb- ."
+"-1736.503 the \u099f\u09be\u0987\u09ae\u09cd of 's of \u0987\u09a8\u09cd\u09a1\u09bf\u09af\u09bc\u09be-\u09a4\u09c7 written in that " it is absurd to compare it with any other indian cinema ... pather panchali is pure cinema " -lrb- " it is the by the indian films with compared to unreal ... pather panchali are pure film " -rrb- ."
+"-1736.517 the \u099f\u09be\u0987\u09ae\u09cd of 's of \u0987\u09a8\u09cd\u09a1\u09bf\u09af\u09bc\u09be-\u09a4\u09c7 written in that , " it is absurd to compare it with any other indian cinema ... pather panchali is pure cinema " -lrb- " it other by the indian films with compared to unreal ... pather panchali are pure film " -rrb- ."
+"-1736.518 the \u099f\u09be\u0987\u09ae\u09cd of 's of \u0987\u09a8\u09cd\u09a1\u09bf\u09af\u09bc\u09be-\u09a4\u09c7 written in the " it is absurd to compare it with any other indian cinema ... pather panchali is pure cinema ' -lrb- " it other by the indian films with compared to unreal ... pather panchali are pure film " -rrb- ."
+"-345.817 after this 1953 , in the month of may nazrul and \u09aa\u09cd\u09b0\u09ae\u09c0\u09b2\u09be \u09a6\u09c7\u09ac\u09c0\u0995\u09c7 \u099a\u09bf\u0995\u09bf\u09ce\u09b8\u09be\u09b0 for london sent to ."
+"-345.874 after this 1953 on may month nazrul and \u09aa\u09cd\u09b0\u09ae\u09c0\u09b2\u09be \u09a6\u09c7\u09ac\u09c0\u0995\u09c7 \u099a\u09bf\u0995\u09bf\u09ce\u09b8\u09be\u09b0 for london sent to ."
+"-345.956 after that , 1953 may month nazrul and \u09aa\u09cd\u09b0\u09ae\u09c0\u09b2\u09be \u09a6\u09c7\u09ac\u09c0\u0995\u09c7 \u099a\u09bf\u0995\u09bf\u09ce\u09b8\u09be\u09b0 for london sent to ."
+"-346.040 after that 1953 on may month nazrul and \u09aa\u09cd\u09b0\u09ae\u09c0\u09b2\u09be \u09a6\u09c7\u09ac\u09c0\u0995\u09c7 \u099a\u09bf\u0995\u09bf\u09ce\u09b8\u09be\u09b0 for london sent to ."
+"-346.057 after this 1953 , in the month of may nazrul and \u09aa\u09cd\u09b0\u09ae\u09c0\u09b2\u09be \u09a6\u09c7\u09ac\u09c0\u0995\u09c7 \u099a\u09bf\u0995\u09bf\u09ce\u09b8\u09be\u09b0 for london sent to the ."
+"-346.113 after this 1953 on may month nazrul and \u09aa\u09cd\u09b0\u09ae\u09c0\u09b2\u09be \u09a6\u09c7\u09ac\u09c0\u0995\u09c7 \u099a\u09bf\u0995\u09bf\u09ce\u09b8\u09be\u09b0 for london sent to the ."
+"-346.160 after this 1953 , in the month of may najrul and \u09aa\u09cd\u09b0\u09ae\u09c0\u09b2\u09be \u09a6\u09c7\u09ac\u09c0\u0995\u09c7 \u099a\u09bf\u0995\u09bf\u09ce\u09b8\u09be\u09b0 for london sent to ."
+"-346.195 after that , 1953 may month nazrul and \u09aa\u09cd\u09b0\u09ae\u09c0\u09b2\u09be \u09a6\u09c7\u09ac\u09c0\u0995\u09c7 \u099a\u09bf\u0995\u09bf\u09ce\u09b8\u09be\u09b0 for london sent to the ."
+"-346.217 after this 1953 on may month najrul and \u09aa\u09cd\u09b0\u09ae\u09c0\u09b2\u09be \u09a6\u09c7\u09ac\u09c0\u0995\u09c7 \u099a\u09bf\u0995\u09bf\u09ce\u09b8\u09be\u09b0 for london sent to ."
+"-346.279 after that 1953 on may month nazrul and \u09aa\u09cd\u09b0\u09ae\u09c0\u09b2\u09be \u09a6\u09c7\u09ac\u09c0\u0995\u09c7 \u099a\u09bf\u0995\u09bf\u09ce\u09b8\u09be\u09b0 for london sent to the ."
+"-250.818 the southern and the east there is \u09ac\u09bf\u09b8\u09cd\u09a4\u09c0\u09b0\u09cd\u09a3 plain , west and on the north there are \u09b0\u09c1\u0995\u09cd\u09b7 mountain and mountain ."
+"-250.835 the southern and the east there is \u09ac\u09bf\u09b8\u09cd\u09a4\u09c0\u09b0\u09cd\u09a3 land , west and on the north there are \u09b0\u09c1\u0995\u09cd\u09b7 mountain and mountain ."
+"-251.000 the southern and the east there is \u09ac\u09bf\u09b8\u09cd\u09a4\u09c0\u09b0\u09cd\u09a3 plain , west and on the north there is \u09b0\u09c1\u0995\u09cd\u09b7 mountain and mountain ."
+"-251.017 the southern and the east there is \u09ac\u09bf\u09b8\u09cd\u09a4\u09c0\u09b0\u09cd\u09a3 land , west and on the north there is \u09b0\u09c1\u0995\u09cd\u09b7 mountain and mountain ."
+"-251.127 the southern and the east there is \u09ac\u09bf\u09b8\u09cd\u09a4\u09c0\u09b0\u09cd\u09a3 plain , west and in the north there are \u09b0\u09c1\u0995\u09cd\u09b7 mountain and mountain ."
+"-251.145 the southern and the east there is \u09ac\u09bf\u09b8\u09cd\u09a4\u09c0\u09b0\u09cd\u09a3 land , west and in the north there are \u09b0\u09c1\u0995\u09cd\u09b7 mountain and mountain ."
+"-251.255 the south and the east there is \u09ac\u09bf\u09b8\u09cd\u09a4\u09c0\u09b0\u09cd\u09a3 land , west and on the north there are \u09b0\u09c1\u0995\u09cd\u09b7 mountain and mountain ."
+"-251.309 the southern and the east there is \u09ac\u09bf\u09b8\u09cd\u09a4\u09c0\u09b0\u09cd\u09a3 plain , west and in the north there is \u09b0\u09c1\u0995\u09cd\u09b7 mountain and mountain ."
+"-251.317 the southern and the east there is \u09ac\u09bf\u09b8\u09cd\u09a4\u09c0\u09b0\u09cd\u09a3 plain , west and on the north are \u09b0\u09c1\u0995\u09cd\u09b7 mountain and mountain ."
+"-251.327 the southern and the east there is \u09ac\u09bf\u09b8\u09cd\u09a4\u09c0\u09b0\u09cd\u09a3 land , west and in the north there is \u09b0\u09c1\u0995\u09cd\u09b7 mountain and mountain ."
+"-104.738 \u099f\u09cd\u09b0\u09c7\u09a1\u09ae\u09be\u09b0\u09cd\u0995"
+"-450.843 \u09b2\u09b0\u09cd\u09a1 \u0993\u09af\u09bc\u09c7\u09b2\u09c7\u09b8\u09b2\u09bf\u09b0 -lrb- \u0997\u09ad\u09b0\u09cd\u09a8\u09b0-\u099c\u09c7\u09a8\u09be\u09b0\u09c7\u09b2 \u09e7\u09ed\u09ef\u09ed-\u09e7\u09ee\u09e6\u09eb -rrb- during his of the city are the ghotechilo"
+"-450.967 \u09b2\u09b0\u09cd\u09a1 \u0993\u09af\u09bc\u09c7\u09b2\u09c7\u09b8\u09b2\u09bf\u09b0 -lrb- \u0997\u09ad\u09b0\u09cd\u09a8\u09b0-\u099c\u09c7\u09a8\u09be\u09b0\u09c7\u09b2 \u09e7\u09ed\u09ef\u09ed-\u09e7\u09ee\u09e6\u09eb -rrb- during his of the city are the already happened"
+"-451.585 \u09b2\u09b0\u09cd\u09a1 \u0993\u09af\u09bc\u09c7\u09b2\u09c7\u09b8\u09b2\u09bf\u09b0 -lrb- \u0997\u09ad\u09b0\u09cd\u09a8\u09b0-\u099c\u09c7\u09a8\u09be\u09b0\u09c7\u09b2 \u09e7\u09ed\u09ef\u09ed-\u09e7\u09ee\u09e6\u09eb -rrb- during his of the city are increased ghotechilo"
+"-451.690 \u09b2\u09b0\u09cd\u09a1 \u0993\u09af\u09bc\u09c7\u09b2\u09c7\u09b8\u09b2\u09bf\u09b0 -lrb- \u0997\u09ad\u09b0\u09cd\u09a8\u09b0-\u099c\u09c7\u09a8\u09be\u09b0\u09c7\u09b2 \u09e7\u09ed\u09ef\u09ed-\u09e7\u09ee\u09e6\u09eb -rrb- during his city are the ghotechilo"
+"-451.813 \u09b2\u09b0\u09cd\u09a1 \u0993\u09af\u09bc\u09c7\u09b2\u09c7\u09b8\u09b2\u09bf\u09b0 -lrb- \u0997\u09ad\u09b0\u09cd\u09a8\u09b0-\u099c\u09c7\u09a8\u09be\u09b0\u09c7\u09b2 \u09e7\u09ed\u09ef\u09ed-\u09e7\u09ee\u09e6\u09eb -rrb- during his city are the already happened"
+"-452.090 \u09b2\u09b0\u09cd\u09a1 \u0993\u09af\u09bc\u09c7\u09b2\u09c7\u09b8\u09b2\u09bf\u09b0 -lrb- \u0997\u09ad\u09b0\u09cd\u09a8\u09b0-\u099c\u09c7\u09a8\u09be\u09b0\u09c7\u09b2 \u09e7\u09ed\u09ef\u09ed-\u09e7\u09ee\u09e6\u09eb -rrb- during his in the city are the ghotechilo"
+"-452.202 \u09b2\u09b0\u09cd\u09a1 \u0993\u09af\u09bc\u09c7\u09b2\u09c7\u09b8\u09b2\u09bf\u09b0 -lrb- \u0997\u09ad\u09b0\u09cd\u09a8\u09b0-\u099c\u09c7\u09a8\u09be\u09b0\u09c7\u09b2 \u09e7\u09ed\u09ef\u09ed-\u09e7\u09ee\u09e6\u09eb -rrb- during his of the city are increased already happened"
+"-452.213 \u09b2\u09b0\u09cd\u09a1 \u0993\u09af\u09bc\u09c7\u09b2\u09c7\u09b8\u09b2\u09bf\u09b0 -lrb- \u0997\u09ad\u09b0\u09cd\u09a8\u09b0-\u099c\u09c7\u09a8\u09be\u09b0\u09c7\u09b2 \u09e7\u09ed\u09ef\u09ed-\u09e7\u09ee\u09e6\u09eb -rrb- during his in the city are the already happened"
+"-452.856 \u09b2\u09b0\u09cd\u09a1 \u0993\u09af\u09bc\u09c7\u09b2\u09c7\u09b8\u09b2\u09bf\u09b0 -lrb- the \u0997\u09ad\u09b0\u09cd\u09a8\u09b0-\u099c\u09c7\u09a8\u09be\u09b0\u09c7\u09b2 \u09e7\u09ed\u09ef\u09ed-\u09e7\u09ee\u09e6\u09eb -rrb- during his of the city are the ghotechilo"
+"-452.980 \u09b2\u09b0\u09cd\u09a1 \u0993\u09af\u09bc\u09c7\u09b2\u09c7\u09b8\u09b2\u09bf\u09b0 -lrb- the \u0997\u09ad\u09b0\u09cd\u09a8\u09b0-\u099c\u09c7\u09a8\u09be\u09b0\u09c7\u09b2 \u09e7\u09ed\u09ef\u09ed-\u09e7\u09ee\u09e6\u09eb -rrb- during his of the city are the already happened"
+"-31.095 many important and real problem to solve complex number apariharza"
+"-31.408 many important and real problem to solve complex number extremely necessary"
+"-31.447 many important and real problem to solve complex number inevitable"
+"-31.534 many important and real problem to for complex number extremely necessary"
+"-31.572 many important and real problem to for complex number inevitable"
+"-31.603 many important and real problems to solve complex number apariharza"
+"-31.917 many important and real problems to solve complex number extremely necessary"
+"-31.920 in many important and real problem to solve complex number extremely necessary"
+"-31.955 many important and real problems to solve complex number inevitable"
+"-32.043 many important and real problems to for complex number extremely necessary"
+"-56.424 the big bang is a famous result are , in the state of the universe so and the recent state from the separate ."
+"-56.531 the big bang is a famous result are , in the state of the universe so and the recent situation from the separate ."
+"-56.639 the big bang is a famous result are , in the state of the universe so and recent state from the separate ."
+"-56.704 the big bang is a famous result is , in the state of the universe so and the recent state from the separate ."
+"-56.811 the big bang is a famous result is , in the state of the universe so and the recent situation from the separate ."
+"-56.919 the big bang is a famous result is , in the state of the universe so and recent state from the separate ."
+"-56.945 the big bang is a famous result are , in the state so and the recent state from the separate ."
+"-57.052 the big bang is a famous result are , in the state so and the recent situation from the separate ."
+"-57.133 the big bang is a famous result are , in the state of the universe so and the recent state from the different ."
+"-57.160 the big bang is a famous result are , in the state so and recent state from the separate ."
+"-106.565 windows \u09ae\u09bf\u09b2\u09bf\u09a8\u09bf\u09af\u09bc\u09be\u09ae"
+"-110.367 of windows \u09ae\u09bf\u09b2\u09bf\u09a8\u09bf\u09af\u09bc\u09be\u09ae"
+"-113.483 the windows \u09ae\u09bf\u09b2\u09bf\u09a8\u09bf\u09af\u09bc\u09be\u09ae"
+"-114.357 of the windows \u09ae\u09bf\u09b2\u09bf\u09a8\u09bf\u09af\u09bc\u09be\u09ae"
+"-209.243 \u0989\u0987\u09a8\u09cd\u09a1\u09cb\u099c \u09ae\u09bf\u09b2\u09bf\u09a8\u09bf\u09af\u09bc\u09be\u09ae"
+"-223.409 rabindranath , in more than one \u09b6\u09c8\u09b2\u09c0 \u0986\u09af\u09bc\u09a4\u09cd\u09a4\u09cd\u09ac was ."
+"-223.899 rabindranath , in more than one \u09b6\u09c8\u09b2\u09c0 \u0986\u09af\u09bc\u09a4\u09cd\u09a4\u09cd\u09ac by ."
+"-223.979 rabindranath , in more than one \u09b6\u09c8\u09b2\u09c0 \u0986\u09af\u09bc\u09a4\u09cd\u09a4\u09cd\u09ac a ."
+"-224.217 rabindranath however , more than one \u09b6\u09c8\u09b2\u09c0 \u0986\u09af\u09bc\u09a4\u09cd\u09a4\u09cd\u09ac was ."
+"-224.221 rabindranath , in more than one \u09b6\u09c8\u09b2\u09c0 \u0986\u09af\u09bc\u09a4\u09cd\u09a4\u09cd\u09ac was being ."
+"-224.482 rabindranath , more than one \u09b6\u09c8\u09b2\u09c0 \u0986\u09af\u09bc\u09a4\u09cd\u09a4\u09cd\u09ac was ."
+"-224.552 rabindranath , in many \u09b6\u09c8\u09b2\u09c0 \u0986\u09af\u09bc\u09a4\u09cd\u09a4\u09cd\u09ac was ."
+"-224.584 rabindranath , in a number of \u09b6\u09c8\u09b2\u09c0 \u0986\u09af\u09bc\u09a4\u09cd\u09a4\u09cd\u09ac was ."
+"-224.720 however , rabindranath more than one \u09b6\u09c8\u09b2\u09c0 \u0986\u09af\u09bc\u09a4\u09cd\u09a4\u09cd\u09ac was ."
+"-224.729 rabindranath , in multiple \u09b6\u09c8\u09b2\u09c0 \u0986\u09af\u09bc\u09a4\u09cd\u09a4\u09cd\u09ac was ."
+"-2.036 labor economy ."
+"-2.248 labour economics"
+"-2.358 labor economy"
+"-4.475 labor economics"
+"-4.807 labour economy"
+"-5.625 labor economy of"
+"-28.193 britain at the same time in the world of the and his economic power was ."
+"-28.201 britain at some point of time the world of the and his economic power was ."
+"-28.256 britain at the same time in the world of the main and his economic power was ."
+"-28.263 britain at some point of time the world of the main and his economic power was ."
+"-28.308 britain at some point of time the world the and his economic power was ."
+"-28.467 britain at some point of time in the world of the and his economic power was ."
+"-28.530 britain at some point of time in the world of the main and his economic power was ."
+"-28.540 britain at a time in the world of the and his economic power was ."
+"-28.715 britain at the same time in the world the and his economic power was ."
+"-29.089 britain at the same time in the world of the and his economical power was ."
+"-279.788 the military rule movement against and the \u0997\u09cb\u09b7\u09cd\u09a0\u09c0\u0997\u09a4 was against protest and movement of the bengalis independence on \u09a7\u09be\u09ac\u09bf\u09a4 to for he widely praised ."
+"-279.948 the military rule movement against and the \u0997\u09cb\u09b7\u09cd\u09a0\u09c0\u0997\u09a4 was protest against and movement of the bengalis independence on \u09a7\u09be\u09ac\u09bf\u09a4 to for he widely praised ."
+"-279.988 the military rule movement against and pakistan \u0997\u09cb\u09b7\u09cd\u09a0\u09c0\u0997\u09a4 was against protest and movement of the bengalis independence on \u09a7\u09be\u09ac\u09bf\u09a4 to for he widely praised ."
+"-279.993 the military rule movement against and the \u0997\u09cb\u09b7\u09cd\u09a0\u09c0\u0997\u09a4 was against protest and of the bengalis movement independence on \u09a7\u09be\u09ac\u09bf\u09a4 to for he widely praised ."
+"-280.102 the military rule movement against and the \u0997\u09cb\u09b7\u09cd\u09a0\u09c0\u0997\u09a4 was against protest and of the bengalis movement of on \u09a7\u09be\u09ac\u09bf\u09a4 to for he widely praised ."
+"-280.103 the military rule movement against and the \u0997\u09cb\u09b7\u09cd\u09a0\u09c0\u0997\u09a4 was against protest and of the bengalis movement of independence on \u09a7\u09be\u09ac\u09bf\u09a4 to for he widely praised ."
+"-280.147 the military rule movement against and pakistan \u0997\u09cb\u09b7\u09cd\u09a0\u09c0\u0997\u09a4 was protest against and movement of the bengalis independence on \u09a7\u09be\u09ac\u09bf\u09a4 to for he widely praised ."
+"-280.152 the military rule movement against and the \u0997\u09cb\u09b7\u09cd\u09a0\u09c0\u0997\u09a4 was protest against and of the bengalis movement independence on \u09a7\u09be\u09ac\u09bf\u09a4 to for he widely praised ."
+"-280.192 the military rule movement against and pakistan \u0997\u09cb\u09b7\u09cd\u09a0\u09c0\u0997\u09a4 was against protest and of the bengalis movement independence on \u09a7\u09be\u09ac\u09bf\u09a4 to for he widely praised ."
+"-280.219 the military rule movement against and the \u0997\u09cb\u09b7\u09cd\u09a0\u09c0\u0997\u09a4 inequality first protest against and movement of the bengalis independence on \u09a7\u09be\u09ac\u09bf\u09a4 to for he widely praised ."
+"-187.414 is mentioned here is required that were internet and world wide web \u2019 s synonymous word to be but actually \u09b6\u09ac\u09cd\u09a6\u09a6\u09cd\u09ac\u09af\u09bc different subject to the ."
+"-187.625 here mentioned is that were internet and world wide web \u2019 s synonymous word to be but actually \u09b6\u09ac\u09cd\u09a6\u09a6\u09cd\u09ac\u09af\u09bc different subject to the ."
+"-187.629 is mentioned here is required that were internet and world wide web \u2019 s synonymous word as considered as but actually \u09b6\u09ac\u09cd\u09a6\u09a6\u09cd\u09ac\u09af\u09bc different subject to the ."
+"-187.840 here mentioned is that were internet and world wide web \u2019 s synonymous word as considered as but actually \u09b6\u09ac\u09cd\u09a6\u09a6\u09cd\u09ac\u09af\u09bc different subject to the ."
+"-187.840 is mentioned here is required that were internet and world wide web \u2019 s synonymous word to be but actually \u09b6\u09ac\u09cd\u09a6\u09a6\u09cd\u09ac\u09af\u09bc different subject to ."
+"-187.927 is mentioned here is required that were internet and world wide web \u2019 s synonymous word to be but actually \u09b6\u09ac\u09cd\u09a6\u09a6\u09cd\u09ac\u09af\u09bc different subject indicates the ."
+"-187.968 here mentioned is required that were internet and world wide web \u2019 s synonymous word to be but actually \u09b6\u09ac\u09cd\u09a6\u09a6\u09cd\u09ac\u09af\u09bc different subject to the ."
+"-188.050 here mentioned is that were internet and world wide web \u2019 s synonymous word to be but actually \u09b6\u09ac\u09cd\u09a6\u09a6\u09cd\u09ac\u09af\u09bc different subject to ."
+"-188.055 is mentioned here is required that were internet and world wide web \u2019 s synonymous word as considered as but actually \u09b6\u09ac\u09cd\u09a6\u09a6\u09cd\u09ac\u09af\u09bc different subject to ."
+"-188.063 is mentioned here is required that were internet and world wide web \u2019 s synonymous word to be though actually \u09b6\u09ac\u09cd\u09a6\u09a6\u09cd\u09ac\u09af\u09bc different subject to the ."
+"-38.983 . z is related polar co-ordinate two is r = ."
+"-39.102 . z is related polar co-ordinate two are r = ."
+"-39.400 . z its related polar co-ordinate two is r = ."
+"-39.519 . z its related polar co-ordinate two are r = ."
+"-39.683 . z it related polar co-ordinate two are r = ."
+"-39.693 . z it 's related polar co-ordinate two are r = ."
+"-39.807 . z the related polar co-ordinate two are r = ."
+"-40.038 . z is the related polar co-ordinate two is r = ."
+"-40.546 . z is the related polar co-ordinate two are r = ."
+"0.257 november"
+"-3.433 november ."
+"-5.024 november of"
+"-345.087 1972 \u0996\u09cd\u09b0\u09c0\u09b8\u09cd\u099f\u09be\u09ac\u09cd\u09a6\u09c7 then \u0986\u09b0\u09aa\u09be\u09a8\u09c7\u099f\u09c7 first \u0987\u09b2\u09c7\u0995\u09cd\u099f\u09cd\u09b0\u09a8\u09bf\u0995 mail to to ."
+"-345.088 1972 \u0996\u09cd\u09b0\u09c0\u09b8\u09cd\u099f\u09be\u09ac\u09cd\u09a6\u09c7 then \u0986\u09b0\u09aa\u09be\u09a8\u09c7\u099f\u09c7 first \u0987\u09b2\u09c7\u0995\u09cd\u099f\u09cd\u09b0\u09a8\u09bf\u0995 mail to be the ."
+"-345.346 1972 \u0996\u09cd\u09b0\u09c0\u09b8\u09cd\u099f\u09be\u09ac\u09cd\u09a6\u09c7 then \u0986\u09b0\u09aa\u09be\u09a8\u09c7\u099f\u09c7 first ever \u0987\u09b2\u09c7\u0995\u09cd\u099f\u09cd\u09b0\u09a8\u09bf\u0995 mail to to ."
+"-345.348 1972 \u0996\u09cd\u09b0\u09c0\u09b8\u09cd\u099f\u09be\u09ac\u09cd\u09a6\u09c7 then \u0986\u09b0\u09aa\u09be\u09a8\u09c7\u099f\u09c7 first ever \u0987\u09b2\u09c7\u0995\u09cd\u099f\u09cd\u09b0\u09a8\u09bf\u0995 mail to be the ."
+"-345.404 1972 \u0996\u09cd\u09b0\u09c0\u09b8\u09cd\u099f\u09be\u09ac\u09cd\u09a6\u09c7 " \u0986\u09b0\u09aa\u09be\u09a8\u09c7\u099f\u09c7 first \u0987\u09b2\u09c7\u0995\u09cd\u099f\u09cd\u09b0\u09a8\u09bf\u0995 mail to to ."
+"-345.406 1972 \u0996\u09cd\u09b0\u09c0\u09b8\u09cd\u099f\u09be\u09ac\u09cd\u09a6\u09c7 " \u0986\u09b0\u09aa\u09be\u09a8\u09c7\u099f\u09c7 first \u0987\u09b2\u09c7\u0995\u09cd\u099f\u09cd\u09b0\u09a8\u09bf\u0995 mail to be the ."
+"-345.424 1972 \u0996\u09cd\u09b0\u09c0\u09b8\u09cd\u099f\u09be\u09ac\u09cd\u09a6\u09c7 then \u0986\u09b0\u09aa\u09be\u09a8\u09c7\u099f\u09c7 first \u0987\u09b2\u09c7\u0995\u09cd\u099f\u09cd\u09b0\u09a8\u09bf\u0995 mail to be ."
+"-345.504 1972 \u0996\u09cd\u09b0\u09c0\u09b8\u09cd\u099f\u09be\u09ac\u09cd\u09a6\u09c7 then professor \u0986\u09b0\u09aa\u09be\u09a8\u09c7\u099f\u09c7 first \u0987\u09b2\u09c7\u0995\u09cd\u099f\u09cd\u09b0\u09a8\u09bf\u0995 mail to to ."
+"-345.505 1972 \u0996\u09cd\u09b0\u09c0\u09b8\u09cd\u099f\u09be\u09ac\u09cd\u09a6\u09c7 then professor \u0986\u09b0\u09aa\u09be\u09a8\u09c7\u099f\u09c7 first \u0987\u09b2\u09c7\u0995\u09cd\u099f\u09cd\u09b0\u09a8\u09bf\u0995 mail to be the ."
+"-345.587 1972 \u0996\u09cd\u09b0\u09c0\u09b8\u09cd\u099f\u09be\u09ac\u09cd\u09a6\u09c7 previously called \u0986\u09b0\u09aa\u09be\u09a8\u09c7\u099f\u09c7 first \u0987\u09b2\u09c7\u0995\u09cd\u099f\u09cd\u09b0\u09a8\u09bf\u0995 mail to to ."
+"-464.793 \u099c\u09c0\u09ac science that \u09b6\u09be\u0996\u09be\u09af\u09bc fungi and its practical subject about to the he was \u099b\u09a4\u09cd\u09b0\u09be\u0995\u09ac\u09bf\u09a6\u09cd\u09af\u09be -lrb- mycology -rrb-"
+"-464.821 \u099c\u09c0\u09ac science that \u09b6\u09be\u0996\u09be\u09af\u09bc fungi and its practical issues about to the he was \u099b\u09a4\u09cd\u09b0\u09be\u0995\u09ac\u09bf\u09a6\u09cd\u09af\u09be -lrb- mycology -rrb-"
+"-464.935 \u099c\u09c0\u09ac science that \u09b6\u09be\u0996\u09be\u09af\u09bc fungi and its practical subject about the to he was \u099b\u09a4\u09cd\u09b0\u09be\u0995\u09ac\u09bf\u09a6\u09cd\u09af\u09be -lrb- mycology -rrb-"
+"-464.963 \u099c\u09c0\u09ac science that \u09b6\u09be\u0996\u09be\u09af\u09bc fungi and its practical issues about the to he was \u099b\u09a4\u09cd\u09b0\u09be\u0995\u09ac\u09bf\u09a6\u09cd\u09af\u09be -lrb- mycology -rrb-"
+"-465.138 \u099c\u09c0\u09ac science that \u09b6\u09be\u0996\u09be\u09af\u09bc fungi and its practical issue about to the he was \u099b\u09a4\u09cd\u09b0\u09be\u0995\u09ac\u09bf\u09a6\u09cd\u09af\u09be -lrb- mycology -rrb-"
+"-465.198 \u099c\u09c0\u09ac science that \u09b6\u09be\u0996\u09be\u09af\u09bc fungi and its practical issues with about to he was \u099b\u09a4\u09cd\u09b0\u09be\u0995\u09ac\u09bf\u09a6\u09cd\u09af\u09be -lrb- mycology -rrb-"
+"-465.199 \u099c\u09c0\u09ac science that \u09b6\u09be\u0996\u09be\u09af\u09bc fungi and the practical subject about to the he was \u099b\u09a4\u09cd\u09b0\u09be\u0995\u09ac\u09bf\u09a6\u09cd\u09af\u09be -lrb- mycology -rrb-"
+"-465.227 \u099c\u09c0\u09ac science that \u09b6\u09be\u0996\u09be\u09af\u09bc fungi and the practical issues about to the he was \u099b\u09a4\u09cd\u09b0\u09be\u0995\u09ac\u09bf\u09a6\u09cd\u09af\u09be -lrb- mycology -rrb-"
+"-465.280 \u099c\u09c0\u09ac science that \u09b6\u09be\u0996\u09be\u09af\u09bc fungi and its practical issue about the to he was \u099b\u09a4\u09cd\u09b0\u09be\u0995\u09ac\u09bf\u09a6\u09cd\u09af\u09be -lrb- mycology -rrb-"
+"-465.303 \u099c\u09c0\u09ac science that \u09b6\u09be\u0996\u09be\u09af\u09bc fungus and its practical subject about to the he was \u099b\u09a4\u09cd\u09b0\u09be\u0995\u09ac\u09bf\u09a6\u09cd\u09af\u09be -lrb- mycology -rrb-"
+"-479.857 water river from \u0989\u09a0\u09be\u09a8\u09cb it was a few purs \u09a6\u09bf\u09af\u09bc\u09c7- \u09a6\u09a1\u09bc\u09bf and \u09ac\u09be\u09b2\u099f\u09bf\u09b0 through water animal by can of world in a method ."
+"-479.921 water river from \u0989\u09a0\u09be\u09a8\u09cb it was a few purs \u09a6\u09bf\u09af\u09bc\u09c7- \u09a6\u09a1\u09bc\u09bf and \u09ac\u09be\u09b2\u099f\u09bf\u09b0 through the water animal by can of world in a method ."
+"-479.965 water river from \u0989\u09a0\u09be\u09a8\u09cb it was a few purs \u09a6\u09bf\u09af\u09bc\u09c7- \u09a6\u09a1\u09bc\u09bf and \u09ac\u09be\u09b2\u099f\u09bf\u09b0 through water animal by can of world a method ."
+"-479.974 water river from \u0989\u09a0\u09be\u09a8\u09cb it was a few purs \u09a6\u09bf\u09af\u09bc\u09c7- \u09a6\u09a1\u09bc\u09bf and \u09ac\u09be\u09b2\u099f\u09bf\u09b0 through water animal by can world in a method ."
+"-480.007 water river from \u0989\u09a0\u09be\u09a8\u09cb it was a few purs \u09a6\u09bf\u09af\u09bc\u09c7- \u09a6\u09a1\u09bc\u09bf and \u09ac\u09be\u09b2\u099f\u09bf\u09b0 through water animal by used of world in a method ."
+"-480.029 water river from \u0989\u09a0\u09be\u09a8\u09cb it was a few purs \u09a6\u09bf\u09af\u09bc\u09c7- \u09a6\u09a1\u09bc\u09bf and \u09ac\u09be\u09b2\u099f\u09bf\u09b0 through the water animal by can of world a method ."
+"-480.029 water river from \u0989\u09a0\u09be\u09a8\u09cb it was a few purs \u09a6\u09bf\u09af\u09bc\u09c7- \u09a6\u09a1\u09bc\u09bf and \u09ac\u09be\u09b2\u099f\u09bf\u09b0 through water animal by can bhola 's a method ."
+"-480.038 water river from \u0989\u09a0\u09be\u09a8\u09cb it was a few purs \u09a6\u09bf\u09af\u09bc\u09c7- \u09a6\u09a1\u09bc\u09bf and \u09ac\u09be\u09b2\u099f\u09bf\u09b0 through the water animal by can world in a method ."
+"-480.071 water river from \u0989\u09a0\u09be\u09a8\u09cb it was a few purs \u09a6\u09bf\u09af\u09bc\u09c7- \u09a6\u09a1\u09bc\u09bf and \u09ac\u09be\u09b2\u099f\u09bf\u09b0 through the water animal by used of world in a method ."
+"-480.081 water river from \u0989\u09a0\u09be\u09a8\u09cb it was a few purs \u09a6\u09bf\u09af\u09bc\u09c7- \u09a6\u09a1\u09bc\u09bf and \u09ac\u09be\u09b2\u099f\u09bf\u09b0 through water animal by can world a method ."
+"-37.853 among these there tribal dance , lokuj dance , classical dance , etc ."
+"-38.404 among these there are tribal dance , lokuj dance , classical dance , etc ."
+"-38.447 among these there tribal dance , influences impact dance , classical dance , etc ."
+"-38.605 among them are tribal dance , lokuj dance , classical dance , etc ."
+"-38.918 among these there tribal dance , lokuj dance , the classical dance , etc ."
+"-38.997 among these there are tribal dance , influences impact dance , classical dance , etc ."
+"-39.468 among these there are tribal dance , lokuj dance , the classical dance , etc ."
+"-132.632 the oldest literature at first \u09ae\u09cc\u0996\u09bf\u0995\u09ad\u09be\u09ac\u09c7 and later written form is the ."
+"-132.742 the oldest literature at first \u09ae\u09cc\u0996\u09bf\u0995\u09ad\u09be\u09ac\u09c7 and later written form is in the ."
+"-132.785 the oldest literature at first \u09ae\u09cc\u0996\u09bf\u0995\u09ad\u09be\u09ac\u09c7 and later written form is ."
+"-133.224 the oldest literature at first \u09ae\u09cc\u0996\u09bf\u0995\u09ad\u09be\u09ac\u09c7 and later written in the form is the ."
+"-133.319 the oldest literature at first \u09ae\u09cc\u0996\u09bf\u0995\u09ad\u09be\u09ac\u09c7 and later written form is in ."
+"-133.334 the oldest literature at first \u09ae\u09cc\u0996\u09bf\u0995\u09ad\u09be\u09ac\u09c7 and later written in the form is in the ."
+"-133.376 the oldest literature at first \u09ae\u09cc\u0996\u09bf\u0995\u09ad\u09be\u09ac\u09c7 and later written in the form is ."
+"-133.443 the oldest literature at first \u09ae\u09cc\u0996\u09bf\u0995\u09ad\u09be\u09ac\u09c7 and later written form the ."
+"-133.812 the oldest literature at first \u09ae\u09cc\u0996\u09bf\u0995\u09ad\u09be\u09ac\u09c7 and later written in the ."
+"-133.910 the oldest literature at first \u09ae\u09cc\u0996\u09bf\u0995\u09ad\u09be\u09ac\u09c7 and later written in the form is in ."
+"-699.161 in 1989 , the \u0997\u09a3\u09b6\u09a4\u09cd\u09b0\u09c1 in the film his conducted \u09a4\u09c1\u09b2\u09a8\u09be\u09ae\u09c2\u09b2\u0995\u09ad\u09be\u09ac\u09c7 \u09a6\u09c1\u09b0\u09cd\u09ac\u09b2 and this \u09a6\u09c0\u09b0\u09cd\u0998\u09a6\u09bf\u09a8\u09c7\u09b0 \u0985\u09b8\u09c1\u09b8\u09cd\u09a5\u09a4\u09be\u09b6\u09c7\u09b7\u09c7 back had come after of satyajit 's films , \u09aa\u09c1\u09a8\u09b0\u09cd\u09aa\u09cd\u09b0\u099a\u09c7\u09b7\u09cd\u099f\u09be a is considered as ."
+"-699.174 in 1989 , the \u0997\u09a3\u09b6\u09a4\u09cd\u09b0\u09c1 in this film his conducted \u09a4\u09c1\u09b2\u09a8\u09be\u09ae\u09c2\u09b2\u0995\u09ad\u09be\u09ac\u09c7 \u09a6\u09c1\u09b0\u09cd\u09ac\u09b2 and this \u09a6\u09c0\u09b0\u09cd\u0998\u09a6\u09bf\u09a8\u09c7\u09b0 \u0985\u09b8\u09c1\u09b8\u09cd\u09a5\u09a4\u09be\u09b6\u09c7\u09b7\u09c7 back had come after of satyajit 's films , \u09aa\u09c1\u09a8\u09b0\u09cd\u09aa\u09cd\u09b0\u099a\u09c7\u09b7\u09cd\u099f\u09be a is considered as ."
+"-699.330 in 1989 , the \u0997\u09a3\u09b6\u09a4\u09cd\u09b0\u09c1 in the film his conducted \u09a4\u09c1\u09b2\u09a8\u09be\u09ae\u09c2\u09b2\u0995\u09ad\u09be\u09ac\u09c7 \u09a6\u09c1\u09b0\u09cd\u09ac\u09b2 and it \u09a6\u09c0\u09b0\u09cd\u0998\u09a6\u09bf\u09a8\u09c7\u09b0 \u0985\u09b8\u09c1\u09b8\u09cd\u09a5\u09a4\u09be\u09b6\u09c7\u09b7\u09c7 back had come after of satyajit 's films , \u09aa\u09c1\u09a8\u09b0\u09cd\u09aa\u09cd\u09b0\u099a\u09c7\u09b7\u09cd\u099f\u09be a is considered as ."
+"-699.343 in 1989 , the \u0997\u09a3\u09b6\u09a4\u09cd\u09b0\u09c1 in this film his conducted \u09a4\u09c1\u09b2\u09a8\u09be\u09ae\u09c2\u09b2\u0995\u09ad\u09be\u09ac\u09c7 \u09a6\u09c1\u09b0\u09cd\u09ac\u09b2 and it \u09a6\u09c0\u09b0\u09cd\u0998\u09a6\u09bf\u09a8\u09c7\u09b0 \u0985\u09b8\u09c1\u09b8\u09cd\u09a5\u09a4\u09be\u09b6\u09c7\u09b7\u09c7 back had come after of satyajit 's films , \u09aa\u09c1\u09a8\u09b0\u09cd\u09aa\u09cd\u09b0\u099a\u09c7\u09b7\u09cd\u099f\u09be a is considered as ."
+"-699.580 in 1989 , the \u0997\u09a3\u09b6\u09a4\u09cd\u09b0\u09c1 in the film of his conducted \u09a4\u09c1\u09b2\u09a8\u09be\u09ae\u09c2\u09b2\u0995\u09ad\u09be\u09ac\u09c7 \u09a6\u09c1\u09b0\u09cd\u09ac\u09b2 and this \u09a6\u09c0\u09b0\u09cd\u0998\u09a6\u09bf\u09a8\u09c7\u09b0 \u0985\u09b8\u09c1\u09b8\u09cd\u09a5\u09a4\u09be\u09b6\u09c7\u09b7\u09c7 back had come after of satyajit 's films , \u09aa\u09c1\u09a8\u09b0\u09cd\u09aa\u09cd\u09b0\u099a\u09c7\u09b7\u09cd\u099f\u09be a is considered as ."
+"-699.725 in 1989 , the \u0997\u09a3\u09b6\u09a4\u09cd\u09b0\u09c1 in the film his conducted \u09a4\u09c1\u09b2\u09a8\u09be\u09ae\u09c2\u09b2\u0995\u09ad\u09be\u09ac\u09c7 \u09a6\u09c1\u09b0\u09cd\u09ac\u09b2 and this \u09a6\u09c0\u09b0\u09cd\u0998\u09a6\u09bf\u09a8\u09c7\u09b0 \u0985\u09b8\u09c1\u09b8\u09cd\u09a5\u09a4\u09be\u09b6\u09c7\u09b7\u09c7 back had come after of satyajit 's films building \u09aa\u09c1\u09a8\u09b0\u09cd\u09aa\u09cd\u09b0\u099a\u09c7\u09b7\u09cd\u099f\u09be a is considered as ."
+"-699.727 in 1989 , the \u0997\u09a3\u09b6\u09a4\u09cd\u09b0\u09c1 in this film of his conducted \u09a4\u09c1\u09b2\u09a8\u09be\u09ae\u09c2\u09b2\u0995\u09ad\u09be\u09ac\u09c7 \u09a6\u09c1\u09b0\u09cd\u09ac\u09b2 and this \u09a6\u09c0\u09b0\u09cd\u0998\u09a6\u09bf\u09a8\u09c7\u09b0 \u0985\u09b8\u09c1\u09b8\u09cd\u09a5\u09a4\u09be\u09b6\u09c7\u09b7\u09c7 back had come after of satyajit 's films , \u09aa\u09c1\u09a8\u09b0\u09cd\u09aa\u09cd\u09b0\u099a\u09c7\u09b7\u09cd\u099f\u09be a is considered as ."
+"-699.739 in 1989 , the \u0997\u09a3\u09b6\u09a4\u09cd\u09b0\u09c1 in this film his conducted \u09a4\u09c1\u09b2\u09a8\u09be\u09ae\u09c2\u09b2\u0995\u09ad\u09be\u09ac\u09c7 \u09a6\u09c1\u09b0\u09cd\u09ac\u09b2 and this \u09a6\u09c0\u09b0\u09cd\u0998\u09a6\u09bf\u09a8\u09c7\u09b0 \u0985\u09b8\u09c1\u09b8\u09cd\u09a5\u09a4\u09be\u09b6\u09c7\u09b7\u09c7 back had come after of satyajit 's films building \u09aa\u09c1\u09a8\u09b0\u09cd\u09aa\u09cd\u09b0\u099a\u09c7\u09b7\u09cd\u099f\u09be a is considered as ."
+"-699.749 in 1989 , the \u0997\u09a3\u09b6\u09a4\u09cd\u09b0\u09c1 in the film of his conducted \u09a4\u09c1\u09b2\u09a8\u09be\u09ae\u09c2\u09b2\u0995\u09ad\u09be\u09ac\u09c7 \u09a6\u09c1\u09b0\u09cd\u09ac\u09b2 and it \u09a6\u09c0\u09b0\u09cd\u0998\u09a6\u09bf\u09a8\u09c7\u09b0 \u0985\u09b8\u09c1\u09b8\u09cd\u09a5\u09a4\u09be\u09b6\u09c7\u09b7\u09c7 back had come after of satyajit 's films , \u09aa\u09c1\u09a8\u09b0\u09cd\u09aa\u09cd\u09b0\u099a\u09c7\u09b7\u09cd\u099f\u09be a is considered as ."
+"-699.773 in 1989 , the \u0997\u09a3\u09b6\u09a4\u09cd\u09b0\u09c1 in the film his between \u09a4\u09c1\u09b2\u09a8\u09be\u09ae\u09c2\u09b2\u0995\u09ad\u09be\u09ac\u09c7 \u09a6\u09c1\u09b0\u09cd\u09ac\u09b2 and this \u09a6\u09c0\u09b0\u09cd\u0998\u09a6\u09bf\u09a8\u09c7\u09b0 \u0985\u09b8\u09c1\u09b8\u09cd\u09a5\u09a4\u09be\u09b6\u09c7\u09b7\u09c7 back had come after of satyajit 's films , \u09aa\u09c1\u09a8\u09b0\u09cd\u09aa\u09cd\u09b0\u099a\u09c7\u09b7\u09cd\u099f\u09be a is considered as ."
+"-110.735 the \u09ac\u09b2\u09ac\u09bf\u09a6\u09cd\u09af\u09be"
+"-111.085 mathematical \u09ac\u09b2\u09ac\u09bf\u09a6\u09cd\u09af\u09be"
+"-111.198 \u2022 \u09ac\u09b2\u09ac\u09bf\u09a6\u09cd\u09af\u09be"
+"-114.066 . \u09ac\u09b2\u09ac\u09bf\u09a6\u09cd\u09af\u09be"
+"-115.120 mathematical theory . \u09ac\u09b2\u09ac\u09bf\u09a6\u09cd\u09af\u09be"
+"-116.452 the mathematical \u09ac\u09b2\u09ac\u09bf\u09a6\u09cd\u09af\u09be"
+"-117.545 of the mathematical \u09ac\u09b2\u09ac\u09bf\u09a6\u09cd\u09af\u09be"
+"-133.431 other \u09b8\u09cd\u09ac\u09a4\u09cd\u09a4\u09cd\u09ac-\u09b8\u0982\u09b0\u0995\u09cd\u09b7\u09bf\u09a4 operating system for windows and mac os to linux in different different ."
+"-133.448 other \u09b8\u09cd\u09ac\u09a4\u09cd\u09a4\u09cd\u09ac-\u09b8\u0982\u09b0\u0995\u09cd\u09b7\u09bf\u09a4 operating system like windows and mac os to linux in different different ."
+"-133.827 other \u09b8\u09cd\u09ac\u09a4\u09cd\u09a4\u09cd\u09ac-\u09b8\u0982\u09b0\u0995\u09cd\u09b7\u09bf\u09a4 operating systems like windows and mac os to linux in different different ."
+"-134.040 other \u09b8\u09cd\u09ac\u09a4\u09cd\u09a4\u09cd\u09ac-\u09b8\u0982\u09b0\u0995\u09cd\u09b7\u09bf\u09a4 operating system for windows and mac os to linux in different separate ."
+"-134.057 other \u09b8\u09cd\u09ac\u09a4\u09cd\u09a4\u09cd\u09ac-\u09b8\u0982\u09b0\u0995\u09cd\u09b7\u09bf\u09a4 operating system like windows and mac os to linux in different separate ."
+"-134.130 the other \u09b8\u09cd\u09ac\u09a4\u09cd\u09a4\u09cd\u09ac-\u09b8\u0982\u09b0\u0995\u09cd\u09b7\u09bf\u09a4 operating system like windows and mac os to linux in different different ."
+"-134.224 other \u09b8\u09cd\u09ac\u09a4\u09cd\u09a4\u09cd\u09ac-\u09b8\u0982\u09b0\u0995\u09cd\u09b7\u09bf\u09a4 operating system for windows and mac os to the linux in different different ."
+"-134.241 other \u09b8\u09cd\u09ac\u09a4\u09cd\u09a4\u09cd\u09ac-\u09b8\u0982\u09b0\u0995\u09cd\u09b7\u09bf\u09a4 operating system like windows and mac os to the linux in different different ."
+"-134.254 other \u09b8\u09cd\u09ac\u09a4\u09cd\u09a4\u09cd\u09ac-\u09b8\u0982\u09b0\u0995\u09cd\u09b7\u09bf\u09a4 operating system for windows and mac os from the linux in different different ."
+"-134.270 other \u09b8\u09cd\u09ac\u09a4\u09cd\u09a4\u09cd\u09ac-\u09b8\u0982\u09b0\u0995\u09cd\u09b7\u09bf\u09a4 operating system like windows and mac os from the linux in different different ."
+"-218.686 asia \u099f\u09be\u0987\u09ae\u09b8\u09c7\u09b0 \u09ad\u09be\u09b7\u09cd\u09af according to ,"
+"-219.408 asia \u099f\u09be\u0987\u09ae\u09b8\u09c7\u09b0 \u09ad\u09be\u09b7\u09cd\u09af according to the ,"
+"-219.724 asia \u099f\u09be\u0987\u09ae\u09b8\u09c7\u09b0 \u09ad\u09be\u09b7\u09cd\u09af to the ,"
+"-220.516 asia \u099f\u09be\u0987\u09ae\u09b8\u09c7\u09b0 \u09ad\u09be\u09b7\u09cd\u09af to ,"
+"-220.701 the \u099f\u09be\u0987\u09ae\u09b8\u09c7\u09b0 \u09ad\u09be\u09b7\u09cd\u09af according to ,"
+"-220.728 asia \u099f\u09be\u0987\u09ae\u09b8\u09c7\u09b0 \u09ad\u09be\u09b7\u09cd\u09af according to , the"
+"-220.812 asia \u099f\u09be\u0987\u09ae\u09b8\u09c7\u09b0 \u09ad\u09be\u09b7\u09cd\u09af according to , and"
+"-221.449 asia \u099f\u09be\u0987\u09ae\u09b8\u09c7\u09b0 \u09ad\u09be\u09b7\u09cd\u09af according to the , the"
+"-221.531 asia \u099f\u09be\u0987\u09ae\u09b8\u09c7\u09b0 \u09ad\u09be\u09b7\u09cd\u09af according to , in"
+"-221.534 asia \u099f\u09be\u0987\u09ae\u09b8\u09c7\u09b0 \u09ad\u09be\u09b7\u09cd\u09af according to the , and"
+"-471.566 open source or open source -lrb- open source -rrb- the money is computer software the source code or main \u09b8\u09be\u0982\u0995\u09c7\u09a4\u09bf\u0995 language open way \u09ac\u09bf\u09a4\u09b0\u09a3 to ."
+"-471.638 open source or open source -lrb- open source -rrb- , the money is computer software the source code or main \u09b8\u09be\u0982\u0995\u09c7\u09a4\u09bf\u0995 language open way \u09ac\u09bf\u09a4\u09b0\u09a3 to ."
+"-471.644 open source or open source -lrb- open source -rrb- the money is computer software of the source code or main \u09b8\u09be\u0982\u0995\u09c7\u09a4\u09bf\u0995 language open way \u09ac\u09bf\u09a4\u09b0\u09a3 to ."
+"-471.711 open source or open source -lrb- open source -rrb- of the money is computer software the source code or main \u09b8\u09be\u0982\u0995\u09c7\u09a4\u09bf\u0995 language open way \u09ac\u09bf\u09a4\u09b0\u09a3 to ."
+"-471.716 open source or open source -lrb- open source -rrb- the money is computer software the source code or main \u09b8\u09be\u0982\u0995\u09c7\u09a4\u09bf\u0995 language free way \u09ac\u09bf\u09a4\u09b0\u09a3 to ."
+"-471.717 open source or open source -lrb- open source -rrb- , the money is computer software of the source code or main \u09b8\u09be\u0982\u0995\u09c7\u09a4\u09bf\u0995 language open way \u09ac\u09bf\u09a4\u09b0\u09a3 to ."
+"-471.789 open source or open source -lrb- open source -rrb- , the money is computer software the source code or main \u09b8\u09be\u0982\u0995\u09c7\u09a4\u09bf\u0995 language free way \u09ac\u09bf\u09a4\u09b0\u09a3 to ."
+"-471.790 open source or open source -lrb- open source -rrb- of the money is computer software of the source code or main \u09b8\u09be\u0982\u0995\u09c7\u09a4\u09bf\u0995 language open way \u09ac\u09bf\u09a4\u09b0\u09a3 to ."
+"-471.794 open source or open source -lrb- open source -rrb- the money is computer software of the source code or main \u09b8\u09be\u0982\u0995\u09c7\u09a4\u09bf\u0995 language free way \u09ac\u09bf\u09a4\u09b0\u09a3 to ."
+"-471.850 open source or open source -lrb- open source -rrb- in the money is computer software the source code or main \u09b8\u09be\u0982\u0995\u09c7\u09a4\u09bf\u0995 language open way \u09ac\u09bf\u09a4\u09b0\u09a3 to ."
+"-109.639 bangladesh \u0985\u09a8\u09b2\u09be\u0987\u09a8\u09c7 dhaka"
+"-110.190 bangladesh \u0985\u09a8\u09b2\u09be\u0987\u09a8\u09c7 of dhaka"
+"-110.961 the bangladesh \u0985\u09a8\u09b2\u09be\u0987\u09a8\u09c7 dhaka"
+"-111.512 the bangladesh \u0985\u09a8\u09b2\u09be\u0987\u09a8\u09c7 of dhaka"
+"-113.950 the first world war germany \u09b9\u09c7\u09b0\u09c7 can be ."
+"-114.276 the first world war of germany \u09b9\u09c7\u09b0\u09c7 can be ."
+"-114.953 the first world war germany \u09b9\u09c7\u09b0\u09c7 can be seen ."
+"-115.018 of the first world war germany \u09b9\u09c7\u09b0\u09c7 can be ."
+"-115.280 the first world war of germany \u09b9\u09c7\u09b0\u09c7 can be seen ."
+"-115.333 the first world war german \u09b9\u09c7\u09b0\u09c7 can be ."
+"-115.345 of the first world war of germany \u09b9\u09c7\u09b0\u09c7 can be ."
+"-115.434 the first world war germany \u09b9\u09c7\u09b0\u09c7 that can be ."
+"-115.553 the first world war conquered \u09b9\u09c7\u09b0\u09c7 can be ."
+"-115.694 first world war germany \u09b9\u09c7\u09b0\u09c7 can be ."
+"-34.990 but this subject is to understand for even research to going on ."
+"-35.178 but this subject is to understand for even research progress going on ."
+"-35.277 but this subject is to understand for at present also research to going on ."
+"-35.392 but in this matter is to understand for even research to going on ."
+"-35.410 but this subject is to understand for today also research to going on ."
+"-35.464 but this subject is to understand for at present also research progress going on ."
+"-35.590 but in this subject is to understand for even research to going on ."
+"-35.623 but this subject is to understand for presently research to going on ."
+"-35.678 but in this matter is to understand for at present also research to going on ."
+"-35.785 but at this subject is to understand for even research to going on ."
+"-104.738 \u09b8\u09c1\u09aa\u09be\u09b0\u098f\u0987\u099a"
+"-122.214 he was the military forces for \u0986\u09a8\u09ab\u09bf\u099f was declared ."
+"-122.669 he was the military forces to \u0986\u09a8\u09ab\u09bf\u099f was declared ."
+"-122.670 he was military forces for \u0986\u09a8\u09ab\u09bf\u099f was declared ."
+"-122.742 he was the military forces for \u0986\u09a8\u09ab\u09bf\u099f declared was ."
+"-123.074 he was the military forces for \u0986\u09a8\u09ab\u09bf\u099f declared the ."
+"-123.125 he was military forces to \u0986\u09a8\u09ab\u09bf\u099f was declared ."
+"-123.198 he was the military forces to \u0986\u09a8\u09ab\u09bf\u099f declared was ."
+"-123.198 he was military forces for \u0986\u09a8\u09ab\u09bf\u099f declared was ."
+"-123.208 he was armed forces for \u0986\u09a8\u09ab\u09bf\u099f was declared ."
+"-123.629 he was the military forces for \u0986\u09a8\u09ab\u09bf\u099f declared in ."
+"-492.585 bhutto \u098f\u09cd\u09af\u09be\u09b8\u09c7\u09ae\u09cd\u09ac\u09b2\u09bf \u09ac\u09af\u09bc\u0995\u099f to 2.5 with declared in the , yahya khan mujib was to form the government to \u099c\u09be\u09a8\u09be\u09b2\u09c7 he that government by \u09a8\u09c7\u09ac\u09c7\u09a8 not ."
+"-492.686 bhutto \u098f\u09cd\u09af\u09be\u09b8\u09c7\u09ae\u09cd\u09ac\u09b2\u09bf \u09ac\u09af\u09bc\u0995\u099f to 2.5 with announced that the , yahya khan mujib was to form the government to \u099c\u09be\u09a8\u09be\u09b2\u09c7 he that government by \u09a8\u09c7\u09ac\u09c7\u09a8 not ."
+"-492.687 bhutto \u098f\u09cd\u09af\u09be\u09b8\u09c7\u09ae\u09cd\u09ac\u09b2\u09bf \u09ac\u09af\u09bc\u0995\u099f to 2.5 to declared in the , yahya khan mujib was to form the government to \u099c\u09be\u09a8\u09be\u09b2\u09c7 he that government by \u09a8\u09c7\u09ac\u09c7\u09a8 not ."
+"-492.743 bhutto \u098f\u09cd\u09af\u09be\u09b8\u09c7\u09ae\u09cd\u09ac\u09b2\u09bf \u09ac\u09af\u09bc\u0995\u099f to 2.5 with declared in the , yahya khan mujib was to form the government on to \u099c\u09be\u09a8\u09be\u09b2\u09c7 he that government by \u09a8\u09c7\u09ac\u09c7\u09a8 not ."
+"-492.760 bhutto \u098f\u09cd\u09af\u09be\u09b8\u09c7\u09ae\u09cd\u09ac\u09b2\u09bf \u09ac\u09af\u09bc\u0995\u099f to 2.5 with declared in the , yahya khan mujib was to form the government for \u099c\u09be\u09a8\u09be\u09b2\u09c7 he that government by \u09a8\u09c7\u09ac\u09c7\u09a8 not ."
+"-492.771 bhutto \u098f\u09cd\u09af\u09be\u09b8\u09c7\u09ae\u09cd\u09ac\u09b2\u09bf \u09ac\u09af\u09bc\u0995\u099f to 2.5 with announced that that , yahya khan mujib was to form the government to \u099c\u09be\u09a8\u09be\u09b2\u09c7 he that government by \u09a8\u09c7\u09ac\u09c7\u09a8 not ."
+"-492.843 bhutto \u098f\u09cd\u09af\u09be\u09b8\u09c7\u09ae\u09cd\u09ac\u09b2\u09bf \u09ac\u09af\u09bc\u0995\u099f to 2.5 with announced that the , yahya khan mujib was to form the government on to \u099c\u09be\u09a8\u09be\u09b2\u09c7 he that government by \u09a8\u09c7\u09ac\u09c7\u09a8 not ."
+"-492.844 bhutto \u098f\u09cd\u09af\u09be\u09b8\u09c7\u09ae\u09cd\u09ac\u09b2\u09bf \u09ac\u09af\u09bc\u0995\u099f to 2.5 to declared in the , yahya khan mujib was to form the government on to \u099c\u09be\u09a8\u09be\u09b2\u09c7 he that government by \u09a8\u09c7\u09ac\u09c7\u09a8 not ."
+"-492.861 bhutto \u098f\u09cd\u09af\u09be\u09b8\u09c7\u09ae\u09cd\u09ac\u09b2\u09bf \u09ac\u09af\u09bc\u0995\u099f to 2.5 with announced that the , yahya khan mujib was to form the government for \u099c\u09be\u09a8\u09be\u09b2\u09c7 he that government by \u09a8\u09c7\u09ac\u09c7\u09a8 not ."
+"-492.862 bhutto \u098f\u09cd\u09af\u09be\u09b8\u09c7\u09ae\u09cd\u09ac\u09b2\u09bf \u09ac\u09af\u09bc\u0995\u099f to 2.5 to declared in the , yahya khan mujib was to form the government for \u099c\u09be\u09a8\u09be\u09b2\u09c7 he that government by \u09a8\u09c7\u09ac\u09c7\u09a8 not ."
+"-220.733 and the computer words money \u0997\u09a3\u09a8\u09be\u0995\u09be\u09b0\u09c0 machine ."
+"-220.783 the computer words money \u0997\u09a3\u09a8\u09be\u0995\u09be\u09b0\u09c0 machine ."
+"-221.198 and the computer word meaning \u0997\u09a3\u09a8\u09be\u0995\u09be\u09b0\u09c0 machine ."
+"-221.210 and computer words money \u0997\u09a3\u09a8\u09be\u0995\u09be\u09b0\u09c0 machine ."
+"-221.248 the computer word meaning \u0997\u09a3\u09a8\u09be\u0995\u09be\u09b0\u09c0 machine ."
+"-221.763 and for computer words money \u0997\u09a3\u09a8\u09be\u0995\u09be\u09b0\u09c0 machine ."
+"-221.835 and the computer words means \u0997\u09a3\u09a8\u09be\u0995\u09be\u09b0\u09c0 machine ."
+"-221.885 the computer words means \u0997\u09a3\u09a8\u09be\u0995\u09be\u09b0\u09c0 machine ."
+"-221.886 and the computer word money \u0997\u09a3\u09a8\u09be\u0995\u09be\u09b0\u09c0 machine ."
+"-222.136 and the computer words money \u0997\u09a3\u09a8\u09be\u0995\u09be\u09b0\u09c0 machines ."
+"-240.825 \u09e7\u09ed\u09ed\u09ec on 4th july this colonies are a independence notice \u099c\u09be\u09b0\u09bf ."
+"-241.490 \u09e7\u09ed\u09ed\u09ec on 4th july this colonies are a independence of notice \u099c\u09be\u09b0\u09bf ."
+"-241.514 \u09e7\u09ed\u09ed\u09ec on 4th july this colonies are a independence written proclamation \u099c\u09be\u09b0\u09bf ."
+"-241.523 \u09e7\u09ed\u09ed\u09ec on 4th july in this colonies are a independence notice \u099c\u09be\u09b0\u09bf ."
+"-241.562 \u09e7\u09ed\u09ed\u09ec , on 4th july this colonies are a independence notice \u099c\u09be\u09b0\u09bf ."
+"-241.593 \u09e7\u09ed\u09ed\u09ec on 4th july this constituents a independence notice \u099c\u09be\u09b0\u09bf ."
+"-241.692 \u09e7\u09ed\u09ed\u09ec on 4th july of this colonies are a independence notice \u099c\u09be\u09b0\u09bf ."
+"-241.990 \u09e7\u09ed\u09ed\u09ec on 4th july this colonies are a independence notice \u099c\u09be\u09b0\u09bf the ."
+"-242.101 \u09e7\u09ed\u09ed\u09ec on 4th july , this colonies are a independence notice \u099c\u09be\u09b0\u09bf ."
+"-242.148 \u09e7\u09ed\u09ed\u09ec on 4th july this colonies are a independence notice \u099c\u09be\u09b0\u09bf by the ."
+"-467.519 germany -lrb- in german : deutschland , \u09a1\u09af\u09bc\u099a\u09cd of \u09b2\u09be\u09a8\u09cd\u099f\u09cd of , pronounced [ d\u0254\u028ft\u0283lant ] -rrb- , the central is a country of europe ."
+"-467.593 germany -lrb- in german : deutschland , \u09a1\u09af\u09bc\u099a\u09cd of \u09b2\u09be\u09a8\u09cd\u099f\u09cd of , pronounced [ d\u0254\u028ft\u0283lant ] -rrb- , the is a country of europe ."
+"-467.745 germany -lrb- in german : deutschland , \u09a1\u09af\u09bc\u099a\u09cd of \u09b2\u09be\u09a8\u09cd\u099f\u09cd of , pronounced [ d\u0254\u028ft\u0283lant ] -rrb- , central is a country of europe ."
+"-467.814 germany -lrb- in german : deutschland , \u09a1\u09af\u09bc\u099a\u09cd the \u09b2\u09be\u09a8\u09cd\u099f\u09cd of , pronounced [ d\u0254\u028ft\u0283lant ] -rrb- , the central is a country of europe ."
+"-467.819 germany -lrb- in german : deutschland , \u09a1\u09af\u09bc\u099a\u09cd of \u09b2\u09be\u09a8\u09cd\u099f\u09cd the , pronounced [ d\u0254\u028ft\u0283lant ] -rrb- , the central is a country of europe ."
+"-467.887 germany -lrb- in german : deutschland , \u09a1\u09af\u09bc\u099a\u09cd the \u09b2\u09be\u09a8\u09cd\u099f\u09cd of , pronounced [ d\u0254\u028ft\u0283lant ] -rrb- , the is a country of europe ."
+"-467.892 germany -lrb- in german : deutschland , \u09a1\u09af\u09bc\u099a\u09cd of \u09b2\u09be\u09a8\u09cd\u099f\u09cd the , pronounced [ d\u0254\u028ft\u0283lant ] -rrb- , the is a country of europe ."
+"-467.986 germany -lrb- in german : deutschland , \u09a1\u09af\u09bc\u099a\u09cd of \u09b2\u09be\u09a8\u09cd\u099f\u09cd of , pronounced [ d\u0254\u028ft\u0283lant ] -rrb- , middle is a country of europe ."
+"-468.038 germany -lrb- in german : deutschland , \u09a1\u09af\u09bc\u099a\u09cd of \u09b2\u09be\u09a8\u09cd\u099f\u09cd of , pronounced [ d\u0254\u028ft\u0283lant ] -rrb- , the middle is a country of europe ."
+"-468.039 germany -lrb- in german : deutschland , \u09a1\u09af\u09bc\u099a\u09cd the \u09b2\u09be\u09a8\u09cd\u099f\u09cd of , pronounced [ d\u0254\u028ft\u0283lant ] -rrb- , central is a country of europe ."
+"-113.803 \u0996\u09cd\u09b0\u09bf\u09b8\u09cd\u099f\u09a7\u09b0\u09cd\u09ae russia the main religion ."
+"-113.989 \u0996\u09cd\u09b0\u09bf\u09b8\u09cd\u099f\u09a7\u09b0\u09cd\u09ae of russia the main religion ."
+"-115.327 \u0996\u09cd\u09b0\u09bf\u09b8\u09cd\u099f\u09a7\u09b0\u09cd\u09ae russia the religion ."
+"-116.365 \u0996\u09cd\u09b0\u09bf\u09b8\u09cd\u099f\u09a7\u09b0\u09cd\u09ae russia the main religion of ."
+"-116.551 \u0996\u09cd\u09b0\u09bf\u09b8\u09cd\u099f\u09a7\u09b0\u09cd\u09ae of russia the main religion of ."
+"-116.584 \u0996\u09cd\u09b0\u09bf\u09b8\u09cd\u099f\u09a7\u09b0\u09cd\u09ae the main religion ."
+"-116.600 \u0996\u09cd\u09b0\u09bf\u09b8\u09cd\u099f\u09a7\u09b0\u09cd\u09ae russia the religion of ."
+"-116.786 \u0996\u09cd\u09b0\u09bf\u09b8\u09cd\u099f\u09a7\u09b0\u09cd\u09ae of russia the religion of ."
+"-325.728 but \u0997\u09b2\u09a6\u09c7\u09b0 education \u09b0\u09cb\u09ae\u09be\u09a8\u09c0\u0995\u09b0\u09a3\u09c7\u09b0 \u0997\u09a4\u09bf was slow down ."
+"-326.536 but \u0997\u09b2\u09a6\u09c7\u09b0 the \u09b0\u09cb\u09ae\u09be\u09a8\u09c0\u0995\u09b0\u09a3\u09c7\u09b0 \u0997\u09a4\u09bf was slow down ."
+"-326.920 but \u0997\u09b2\u09a6\u09c7\u09b0 the educational \u09b0\u09cb\u09ae\u09be\u09a8\u09c0\u0995\u09b0\u09a3\u09c7\u09b0 \u0997\u09a4\u09bf was slow down ."
+"-327.161 but \u0997\u09b2\u09a6\u09c7\u09b0 's education \u09b0\u09cb\u09ae\u09be\u09a8\u09c0\u0995\u09b0\u09a3\u09c7\u09b0 \u0997\u09a4\u09bf was slow down ."
+"-327.169 but \u0997\u09b2\u09a6\u09c7\u09b0 of education \u09b0\u09cb\u09ae\u09be\u09a8\u09c0\u0995\u09b0\u09a3\u09c7\u09b0 \u0997\u09a4\u09bf was slow down ."
+"-327.194 but \u0997\u09b2\u09a6\u09c7\u09b0 education in \u09b0\u09cb\u09ae\u09be\u09a8\u09c0\u0995\u09b0\u09a3\u09c7\u09b0 \u0997\u09a4\u09bf was slow down ."
+"-327.746 but \u0997\u09b2\u09a6\u09c7\u09b0 education \u09b0\u09cb\u09ae\u09be\u09a8\u09c0\u0995\u09b0\u09a3\u09c7\u09b0 \u0997\u09a4\u09bf was too slow ."
+"-327.833 but \u0997\u09b2\u09a6\u09c7\u09b0 education \u09b0\u09cb\u09ae\u09be\u09a8\u09c0\u0995\u09b0\u09a3\u09c7\u09b0 \u0997\u09a4\u09bf was the slow down ."
+"-327.983 but \u0997\u09b2\u09a6\u09c7\u09b0 education \u09b0\u09cb\u09ae\u09be\u09a8\u09c0\u0995\u09b0\u09a3\u09c7\u09b0 \u0997\u09a4\u09bf was become slow ."
+"-6.756 subject category : gnu foundation"
+"-7.225 subject class : the gnu foundation"
+"-7.445 subject class : gnu foundation"
+"-7.489 subject matter : gnu foundation"
+"-7.497 subject category : the gnu foundation"
+"-7.519 subject : gnu foundation"
+"-127.108 economic policy and revenue \u09a8\u09c0\u09a4\u09bf\u0995\u09c7\u0993 it study ."
+"-127.422 economic policy and revenue \u09a8\u09c0\u09a4\u09bf\u0995\u09c7\u0993 it study of the ."
+"-127.668 economic policy and tax \u09a8\u09c0\u09a4\u09bf\u0995\u09c7\u0993 it study ."
+"-127.982 economic policy and tax \u09a8\u09c0\u09a4\u09bf\u0995\u09c7\u0993 it study of the ."
+"-128.096 economic policy and tax revenue \u09a8\u09c0\u09a4\u09bf\u0995\u09c7\u0993 it study ."
+"-128.352 economic policy and revenue \u09a8\u09c0\u09a4\u09bf\u0995\u09c7\u0993 it study the ."
+"-128.370 financial policy and revenue \u09a8\u09c0\u09a4\u09bf\u0995\u09c7\u0993 it study ."
+"-128.410 economic policy and tax revenue \u09a8\u09c0\u09a4\u09bf\u0995\u09c7\u0993 it study of the ."
+"-128.457 economic policy and revenue \u09a8\u09c0\u09a4\u09bf\u0995\u09c7\u0993 this study ."
+"-128.634 economic policy and revenue \u09a8\u09c0\u09a4\u09bf\u0995\u09c7\u0993 it study by the ."
+"-346.223 among these there are : would have \u09a4\u09cb\u09ae\u09be\u09b0 will get seen , \u0993\u09b0\u09c7 at this any \u09b8\u09cd\u09a8\u09c7\u09b9-\u09b8\u09c1\u09b0\u09a7\u09c1\u09a8\u09c0 ."
+"-346.260 among these there are : would have \u09a4\u09cb\u09ae\u09be\u09b0 will get seen , \u0993\u09b0\u09c7 this any \u09b8\u09cd\u09a8\u09c7\u09b9-\u09b8\u09c1\u09b0\u09a7\u09c1\u09a8\u09c0 ."
+"-346.280 among these there are : may be \u09a4\u09cb\u09ae\u09be\u09b0 will get seen , \u0993\u09b0\u09c7 at this any \u09b8\u09cd\u09a8\u09c7\u09b9-\u09b8\u09c1\u09b0\u09a7\u09c1\u09a8\u09c0 ."
+"-346.317 among these there are : may be \u09a4\u09cb\u09ae\u09be\u09b0 will get seen , \u0993\u09b0\u09c7 this any \u09b8\u09cd\u09a8\u09c7\u09b9-\u09b8\u09c1\u09b0\u09a7\u09c1\u09a8\u09c0 ."
+"-346.361 among these there are : would have \u09a4\u09cb\u09ae\u09be\u09b0 get seen , \u0993\u09b0\u09c7 at this any \u09b8\u09cd\u09a8\u09c7\u09b9-\u09b8\u09c1\u09b0\u09a7\u09c1\u09a8\u09c0 ."
+"-346.398 among these there are : would have \u09a4\u09cb\u09ae\u09be\u09b0 get seen , \u0993\u09b0\u09c7 this any \u09b8\u09cd\u09a8\u09c7\u09b9-\u09b8\u09c1\u09b0\u09a7\u09c1\u09a8\u09c0 ."
+"-346.418 among these there are : may be \u09a4\u09cb\u09ae\u09be\u09b0 get seen , \u0993\u09b0\u09c7 at this any \u09b8\u09cd\u09a8\u09c7\u09b9-\u09b8\u09c1\u09b0\u09a7\u09c1\u09a8\u09c0 ."
+"-346.455 among these there are : may be \u09a4\u09cb\u09ae\u09be\u09b0 get seen , \u0993\u09b0\u09c7 this any \u09b8\u09cd\u09a8\u09c7\u09b9-\u09b8\u09c1\u09b0\u09a7\u09c1\u09a8\u09c0 ."
+"-346.560 among these there are : would have \u09a4\u09cb\u09ae\u09be\u09b0 will get seen , \u0993\u09b0\u09c7 for this any \u09b8\u09cd\u09a8\u09c7\u09b9-\u09b8\u09c1\u09b0\u09a7\u09c1\u09a8\u09c0 ."
+"-346.567 among them are : would have \u09a4\u09cb\u09ae\u09be\u09b0 will get seen , \u0993\u09b0\u09c7 at this any \u09b8\u09cd\u09a8\u09c7\u09b9-\u09b8\u09c1\u09b0\u09a7\u09c1\u09a8\u09c0 ."
+"-17.735 on 23rd april 1992 satyajit died ."
+"-18.257 on 23rd april 1992 satyajit expired ."
+"-19.284 on 23rd april 1992 satyajit passed away ."
+"-21.617 on 23rd april 1992 satyajit died . ."
+"-21.773 he died on 23rd april 1992 ."
+"-238.748 in this time nazrul 's medical \u09b0\u09bf\u09aa\u09cb\u09b0\u09cd\u099f earning famous \u099a\u09bf\u0995\u09bf\u09ce\u09b8\u0995\u09a6\u09c7\u09b0 to send to ."
+"-238.899 in this time nazrul 's medical \u09b0\u09bf\u09aa\u09cb\u09b0\u09cd\u099f stay famous \u099a\u09bf\u0995\u09bf\u09ce\u09b8\u0995\u09a6\u09c7\u09b0 to send to ."
+"-239.024 this time nazrul 's medical \u09b0\u09bf\u09aa\u09cb\u09b0\u09cd\u099f earning famous \u099a\u09bf\u0995\u09bf\u09ce\u09b8\u0995\u09a6\u09c7\u09b0 to send to ."
+"-239.101 in this time nazrul medical \u09b0\u09bf\u09aa\u09cb\u09b0\u09cd\u099f earning famous \u099a\u09bf\u0995\u09bf\u09ce\u09b8\u0995\u09a6\u09c7\u09b0 to send to ."
+"-239.116 in this time nazrul 's medical \u09b0\u09bf\u09aa\u09cb\u09b0\u09cd\u099f earning famous \u099a\u09bf\u0995\u09bf\u09ce\u09b8\u0995\u09a6\u09c7\u09b0 to send ."
+"-239.175 this time nazrul 's medical \u09b0\u09bf\u09aa\u09cb\u09b0\u09cd\u099f stay famous \u099a\u09bf\u0995\u09bf\u09ce\u09b8\u0995\u09a6\u09c7\u09b0 to send to ."
+"-239.209 during this time nazrul 's medical \u09b0\u09bf\u09aa\u09cb\u09b0\u09cd\u099f earning famous \u099a\u09bf\u0995\u09bf\u09ce\u09b8\u0995\u09a6\u09c7\u09b0 to send to ."
+"-239.234 at this time nazrul 's medical \u09b0\u09bf\u09aa\u09cb\u09b0\u09cd\u099f earning famous \u099a\u09bf\u0995\u09bf\u09ce\u09b8\u0995\u09a6\u09c7\u09b0 to send to ."
+"-239.252 in this time nazrul medical \u09b0\u09bf\u09aa\u09cb\u09b0\u09cd\u099f stay famous \u099a\u09bf\u0995\u09bf\u09ce\u09b8\u0995\u09a6\u09c7\u09b0 to send to ."
+"-239.262 in this time najrul 's medical \u09b0\u09bf\u09aa\u09cb\u09b0\u09cd\u099f earning famous \u099a\u09bf\u0995\u09bf\u09ce\u09b8\u0995\u09a6\u09c7\u09b0 to send to ."
+"-347.110 acted other than at different times rani \u09ae\u09c1\u0996\u09be\u09b0\u09cd\u099c\u09c0 different \u09a6\u09be\u09a4\u09ac\u09cd\u09af are connected with \u09a5\u09c7\u0995\u09c7\u099b\u09c7\u09a8 ."
+"-347.165 acted apart from at different times rani \u09ae\u09c1\u0996\u09be\u09b0\u09cd\u099c\u09c0 different \u09a6\u09be\u09a4\u09ac\u09cd\u09af are connected with \u09a5\u09c7\u0995\u09c7\u099b\u09c7\u09a8 ."
+"-347.335 acted apart at different times rani \u09ae\u09c1\u0996\u09be\u09b0\u09cd\u099c\u09c0 different \u09a6\u09be\u09a4\u09ac\u09cd\u09af are connected with \u09a5\u09c7\u0995\u09c7\u099b\u09c7\u09a8 ."
+"-347.592 acted , at different times rani \u09ae\u09c1\u0996\u09be\u09b0\u09cd\u099c\u09c0 different \u09a6\u09be\u09a4\u09ac\u09cd\u09af are connected with \u09a5\u09c7\u0995\u09c7\u099b\u09c7\u09a8 ."
+"-347.594 acted apart from different times rani \u09ae\u09c1\u0996\u09be\u09b0\u09cd\u099c\u09c0 different \u09a6\u09be\u09a4\u09ac\u09cd\u09af are connected with \u09a5\u09c7\u0995\u09c7\u099b\u09c7\u09a8 ."
+"-347.830 acted apart from different time rani \u09ae\u09c1\u0996\u09be\u09b0\u09cd\u099c\u09c0 different \u09a6\u09be\u09a4\u09ac\u09cd\u09af are connected with \u09a5\u09c7\u0995\u09c7\u099b\u09c7\u09a8 ."
+"-347.893 acted in addition at different times rani \u09ae\u09c1\u0996\u09be\u09b0\u09cd\u099c\u09c0 different \u09a6\u09be\u09a4\u09ac\u09cd\u09af are connected with \u09a5\u09c7\u0995\u09c7\u099b\u09c7\u09a8 ."
+"-348.081 acted without at different times rani \u09ae\u09c1\u0996\u09be\u09b0\u09cd\u099c\u09c0 different \u09a6\u09be\u09a4\u09ac\u09cd\u09af are connected with \u09a5\u09c7\u0995\u09c7\u099b\u09c7\u09a8 ."
+"-348.245 acted other than at different times rani \u09ae\u09c1\u0996\u09be\u09b0\u09cd\u099c\u09c0 of different \u09a6\u09be\u09a4\u09ac\u09cd\u09af are connected with \u09a5\u09c7\u0995\u09c7\u099b\u09c7\u09a8 ."
+"-349.825 acted other than at different times rani \u09ae\u09c1\u0996\u09be\u09b0\u09cd\u099c\u09c0 different \u09a6\u09be\u09a4\u09ac\u09cd\u09af offices connected with \u09a5\u09c7\u0995\u09c7\u099b\u09c7\u09a8 ."
+"-368.897 bengali literature and culture of his special contribution on \u09b8\u09cd\u09ac\u09c0\u0995\u09c3\u09a4\u09bf\u09b8\u09cd\u09ac\u09b0\u09c1\u09aa year on 9th december , dhaka university he was honorary \u09a1\u09bf.\u09b2\u09bf\u099f \u0989\u09aa\u09be\u09a7\u09bf\u09a4\u09c7 awarded with the ."
+"-369.012 bengali literature and culture in his special contribution on \u09b8\u09cd\u09ac\u09c0\u0995\u09c3\u09a4\u09bf\u09b8\u09cd\u09ac\u09b0\u09c1\u09aa year on 9th december , dhaka university he was honorary \u09a1\u09bf.\u09b2\u09bf\u099f \u0989\u09aa\u09be\u09a7\u09bf\u09a4\u09c7 awarded with the ."
+"-369.196 bengali literature and culture his special contribution on \u09b8\u09cd\u09ac\u09c0\u0995\u09c3\u09a4\u09bf\u09b8\u09cd\u09ac\u09b0\u09c1\u09aa year on 9th december , dhaka university he was honorary \u09a1\u09bf.\u09b2\u09bf\u099f \u0989\u09aa\u09be\u09a7\u09bf\u09a4\u09c7 awarded with the ."
+"-369.213 bengali literature and culture , his special contribution on \u09b8\u09cd\u09ac\u09c0\u0995\u09c3\u09a4\u09bf\u09b8\u09cd\u09ac\u09b0\u09c1\u09aa year on 9th december , dhaka university he was honorary \u09a1\u09bf.\u09b2\u09bf\u099f \u0989\u09aa\u09be\u09a7\u09bf\u09a4\u09c7 awarded with the ."
+"-369.296 bengali literature and culture of his special contribution on \u09b8\u09cd\u09ac\u09c0\u0995\u09c3\u09a4\u09bf\u09b8\u09cd\u09ac\u09b0\u09c1\u09aa year on 9 december , dhaka university he was honorary \u09a1\u09bf.\u09b2\u09bf\u099f \u0989\u09aa\u09be\u09a7\u09bf\u09a4\u09c7 awarded with the ."
+"-369.384 the bengali literature and culture of his special contribution on \u09b8\u09cd\u09ac\u09c0\u0995\u09c3\u09a4\u09bf\u09b8\u09cd\u09ac\u09b0\u09c1\u09aa year on 9th december , dhaka university he was honorary \u09a1\u09bf.\u09b2\u09bf\u099f \u0989\u09aa\u09be\u09a7\u09bf\u09a4\u09c7 awarded with the ."
+"-369.411 bengali literature and culture in his special contribution on \u09b8\u09cd\u09ac\u09c0\u0995\u09c3\u09a4\u09bf\u09b8\u09cd\u09ac\u09b0\u09c1\u09aa year on 9 december , dhaka university he was honorary \u09a1\u09bf.\u09b2\u09bf\u099f \u0989\u09aa\u09be\u09a7\u09bf\u09a4\u09c7 awarded with the ."
+"-369.499 the bengali literature and culture in his special contribution on \u09b8\u09cd\u09ac\u09c0\u0995\u09c3\u09a4\u09bf\u09b8\u09cd\u09ac\u09b0\u09c1\u09aa year on 9th december , dhaka university he was honorary \u09a1\u09bf.\u09b2\u09bf\u099f \u0989\u09aa\u09be\u09a7\u09bf\u09a4\u09c7 awarded with the ."
+"-369.595 bengali literature and culture his special contribution on \u09b8\u09cd\u09ac\u09c0\u0995\u09c3\u09a4\u09bf\u09b8\u09cd\u09ac\u09b0\u09c1\u09aa year on 9 december , dhaka university he was honorary \u09a1\u09bf.\u09b2\u09bf\u099f \u0989\u09aa\u09be\u09a7\u09bf\u09a4\u09c7 awarded with the ."
+"-369.612 bengali literature and culture , his special contribution on \u09b8\u09cd\u09ac\u09c0\u0995\u09c3\u09a4\u09bf\u09b8\u09cd\u09ac\u09b0\u09c1\u09aa year on 9 december , dhaka university he was honorary \u09a1\u09bf.\u09b2\u09bf\u099f \u0989\u09aa\u09be\u09a7\u09bf\u09a4\u09c7 awarded with the ."
+"-136.580 in kolkata durga puja of the city is one of the tourism \u0986\u0995\u09b0\u09cd\u09b7\u09a3\u0993 is also a reason"
+"-136.704 kolkata 's durga puja of the city is one of the tourism \u0986\u0995\u09b0\u09cd\u09b7\u09a3\u0993 is also a reason"
+"-136.923 kolkata durga puja of the city is one of the tourism \u0986\u0995\u09b0\u09cd\u09b7\u09a3\u0993 is also a reason"
+"-137.284 in the durga puja of the city is one of the tourism \u0986\u0995\u09b0\u09cd\u09b7\u09a3\u0993 is also a reason"
+"-137.331 in kolkata durga puja of the city is one of the tourists spot \u0986\u0995\u09b0\u09cd\u09b7\u09a3\u0993 is also a reason"
+"-138.172 in kolkata durga puja in the city is one of the tourism \u0986\u0995\u09b0\u09cd\u09b7\u09a3\u0993 is also a reason"
+"-138.296 kolkata 's durga puja in the city is one of the tourism \u0986\u0995\u09b0\u09cd\u09b7\u09a3\u0993 is also a reason"
+"-138.923 in kolkata durga puja in the city is one of the tourists spot \u0986\u0995\u09b0\u09cd\u09b7\u09a3\u0993 is also a reason"
+"-64.035 but many of east german started living in economically reach and democratic west germany , east germany government built a wall in berlin in 1961 and reinforced its boundaries ."
+"-64.412 but many people of east german started living in economically reach and democratic west germany , east germany government built a wall in berlin in 1961 and reinforced its boundaries ."
+"-64.422 but many of the east german started living in economically reach and democratic west germany , east germany government built a wall in berlin in 1961 and reinforced its boundaries ."
+"-64.469 but many people of east germany started living in economically reach and democratic west germany , east germany government built a wall in berlin in 1961 and reinforced its boundaries ."
+"-65.162 but many of east germany started living in economically reach and democratic west germany , east germany government built a wall in berlin in 1961 and reinforced its boundaries ."
+"-66.368 but many of east german started living in economically reach and democratic west germany , east germany government built a wall in berlin in 1961 of the and its boundaries ."
+"-66.416 but many of east german started living in economically reach and democratic west germany , east germany government built a wall in berlin in 1961 and reinforced its boundaries of ."
+"-66.744 but many people of east german started living in economically reach and democratic west germany , east germany government built a wall in berlin in 1961 of the and its boundaries ."
+"-66.755 but many of the east german started living in economically reach and democratic west germany , east germany government built a wall in berlin in 1961 of the and its boundaries ."
+"-66.793 but many people of east german started living in economically reach and democratic west germany , east germany government built a wall in berlin in 1961 and reinforced its boundaries of ."
+"-914.735 the first one is the film \u09a8\u09bf\u09b0\u09cd\u09ac\u09be\u0995 first seven \u09ae\u09bf\u09a8\u09bf\u099f , which \u099a\u09be\u09b0\u09c1\u09b0 \u098f\u0995\u0998\u09c7\u09af\u09bc\u09c7\u09ae\u09bf life shown them , and the second one is " of the garden \u09a6\u09cb\u09b2\u09a8\u09be\u09b0 scene " , where \u099a\u09be\u09b0\u09c1 \u0985\u09ae\u09b2\u09c7\u09b0 for his love \u09ae\u09c1\u0996\u09cb\u09ae\u09c1\u0996\u09bf ."
+"-914.852 the first one is the film \u09a8\u09bf\u09b0\u09cd\u09ac\u09be\u0995 first seven \u09ae\u09bf\u09a8\u09bf\u099f , which \u099a\u09be\u09b0\u09c1\u09b0 \u098f\u0995\u0998\u09c7\u09af\u09bc\u09c7\u09ae\u09bf life shown them , and the second one is " the \u09a6\u09cb\u09b2\u09a8\u09be\u09b0 scene " , where \u099a\u09be\u09b0\u09c1 \u0985\u09ae\u09b2\u09c7\u09b0 for his love \u09ae\u09c1\u0996\u09cb\u09ae\u09c1\u0996\u09bf ."
+"-915.015 the first one is the film \u09a8\u09bf\u09b0\u09cd\u09ac\u09be\u0995 first seven \u09ae\u09bf\u09a8\u09bf\u099f , which \u099a\u09be\u09b0\u09c1\u09b0 \u098f\u0995\u0998\u09c7\u09af\u09bc\u09c7\u09ae\u09bf life shown them , and the second one is " of the garden \u09a6\u09cb\u09b2\u09a8\u09be\u09b0 scene of " , where \u099a\u09be\u09b0\u09c1 \u0985\u09ae\u09b2\u09c7\u09b0 for his love \u09ae\u09c1\u0996\u09cb\u09ae\u09c1\u0996\u09bf ."
+"-915.060 the first one is the film \u09a8\u09bf\u09b0\u09cd\u09ac\u09be\u0995 first seven \u09ae\u09bf\u09a8\u09bf\u099f , which \u099a\u09be\u09b0\u09c1\u09b0 \u098f\u0995\u0998\u09c7\u09af\u09bc\u09c7\u09ae\u09bf life shown lift , and the second one is " of the garden \u09a6\u09cb\u09b2\u09a8\u09be\u09b0 scene " , where \u099a\u09be\u09b0\u09c1 \u0985\u09ae\u09b2\u09c7\u09b0 for his love \u09ae\u09c1\u0996\u09cb\u09ae\u09c1\u0996\u09bf ."
+"-915.091 the first one is the film \u09a8\u09bf\u09b0\u09cd\u09ac\u09be\u0995 first seven \u09ae\u09bf\u09a8\u09bf\u099f , which \u099a\u09be\u09b0\u09c1\u09b0 \u098f\u0995\u0998\u09c7\u09af\u09bc\u09c7\u09ae\u09bf life shown them , and the second one is " garden \u09a6\u09cb\u09b2\u09a8\u09be\u09b0 scene " , where \u099a\u09be\u09b0\u09c1 \u0985\u09ae\u09b2\u09c7\u09b0 for his love \u09ae\u09c1\u0996\u09cb\u09ae\u09c1\u0996\u09bf ."
+"-915.131 the first one is the film \u09a8\u09bf\u09b0\u09cd\u09ac\u09be\u0995 first seven \u09ae\u09bf\u09a8\u09bf\u099f , which \u099a\u09be\u09b0\u09c1\u09b0 \u098f\u0995\u0998\u09c7\u09af\u09bc\u09c7\u09ae\u09bf life shown them , and the second one is " the \u09a6\u09cb\u09b2\u09a8\u09be\u09b0 scene of " , where \u099a\u09be\u09b0\u09c1 \u0985\u09ae\u09b2\u09c7\u09b0 for his love \u09ae\u09c1\u0996\u09cb\u09ae\u09c1\u0996\u09bf ."
+"-915.136 the first one is the film \u09a8\u09bf\u09b0\u09cd\u09ac\u09be\u0995 first seven \u09ae\u09bf\u09a8\u09bf\u099f , which is \u099a\u09be\u09b0\u09c1\u09b0 \u098f\u0995\u0998\u09c7\u09af\u09bc\u09c7\u09ae\u09bf life shown them , and the second one is " of the garden \u09a6\u09cb\u09b2\u09a8\u09be\u09b0 scene " , where \u099a\u09be\u09b0\u09c1 \u0985\u09ae\u09b2\u09c7\u09b0 for his love \u09ae\u09c1\u0996\u09cb\u09ae\u09c1\u0996\u09bf ."
+"-915.176 the first one is the film \u09a8\u09bf\u09b0\u09cd\u09ac\u09be\u0995 first seven \u09ae\u09bf\u09a8\u09bf\u099f , which \u099a\u09be\u09b0\u09c1\u09b0 \u098f\u0995\u0998\u09c7\u09af\u09bc\u09c7\u09ae\u09bf life shown lift , and the second one is " the \u09a6\u09cb\u09b2\u09a8\u09be\u09b0 scene " , where \u099a\u09be\u09b0\u09c1 \u0985\u09ae\u09b2\u09c7\u09b0 for his love \u09ae\u09c1\u0996\u09cb\u09ae\u09c1\u0996\u09bf ."
+"-915.244 the first one is the film \u09a8\u09bf\u09b0\u09cd\u09ac\u09be\u0995 the seven \u09ae\u09bf\u09a8\u09bf\u099f , which \u099a\u09be\u09b0\u09c1\u09b0 \u098f\u0995\u0998\u09c7\u09af\u09bc\u09c7\u09ae\u09bf life shown them , and the second one is " of the garden \u09a6\u09cb\u09b2\u09a8\u09be\u09b0 scene " , where \u099a\u09be\u09b0\u09c1 \u0985\u09ae\u09b2\u09c7\u09b0 for his love \u09ae\u09c1\u0996\u09cb\u09ae\u09c1\u0996\u09bf ."
+"-915.252 the first one is the film \u09a8\u09bf\u09b0\u09cd\u09ac\u09be\u0995 first seven \u09ae\u09bf\u09a8\u09bf\u099f , which is \u099a\u09be\u09b0\u09c1\u09b0 \u098f\u0995\u0998\u09c7\u09af\u09bc\u09c7\u09ae\u09bf life shown them , and the second one is " the \u09a6\u09cb\u09b2\u09a8\u09be\u09b0 scene " , where \u099a\u09be\u09b0\u09c1 \u0985\u09ae\u09b2\u09c7\u09b0 for his love \u09ae\u09c1\u0996\u09cb\u09ae\u09c1\u0996\u09bf ."
+"-261.213 18th century the a group of \u099a\u09bf\u09a8\u09cd\u09a4\u09be\u09ac\u09bf\u09a6 and writer income and production \u099a\u0995\u09cd\u09b0\u09be\u0995\u09be\u09b0 current through the economic thoughts development it ."
+"-261.415 18th century the a group of \u099a\u09bf\u09a8\u09cd\u09a4\u09be\u09ac\u09bf\u09a6 and writer income and production \u099a\u0995\u09cd\u09b0\u09be\u0995\u09be\u09b0 current through the economic thoughts development of it ."
+"-261.573 18th century the a group of \u099a\u09bf\u09a8\u09cd\u09a4\u09be\u09ac\u09bf\u09a6 and writer income and production \u099a\u0995\u09cd\u09b0\u09be\u0995\u09be\u09b0 current through economic thoughts development it ."
+"-261.583 18th century the a group of \u099a\u09bf\u09a8\u09cd\u09a4\u09be\u09ac\u09bf\u09a6 and writer income and production \u099a\u0995\u09cd\u09b0\u09be\u0995\u09be\u09b0 current through the economic thoughts development people ."
+"-261.743 18th century the a group of \u099a\u09bf\u09a8\u09cd\u09a4\u09be\u09ac\u09bf\u09a6 and writer of income and production \u099a\u0995\u09cd\u09b0\u09be\u0995\u09be\u09b0 current through the economic thoughts development it ."
+"-261.775 18th century the a group of \u099a\u09bf\u09a8\u09cd\u09a4\u09be\u09ac\u09bf\u09a6 and writer income and production \u099a\u0995\u09cd\u09b0\u09be\u0995\u09be\u09b0 current through economic thoughts development of it ."
+"-261.841 the 18th century a group of \u099a\u09bf\u09a8\u09cd\u09a4\u09be\u09ac\u09bf\u09a6 and writer income and production \u099a\u0995\u09cd\u09b0\u09be\u0995\u09be\u09b0 current through the economic thoughts development it ."
+"-261.873 18th century a group of \u099a\u09bf\u09a8\u09cd\u09a4\u09be\u09ac\u09bf\u09a6 and writer income and production \u099a\u0995\u09cd\u09b0\u09be\u0995\u09be\u09b0 current through the economic thoughts development it ."
+"-261.944 18th century the a group of \u099a\u09bf\u09a8\u09cd\u09a4\u09be\u09ac\u09bf\u09a6 and writer income and production \u099a\u0995\u09cd\u09b0\u09be\u0995\u09be\u09b0 current through economic thoughts development people ."
+"-261.946 18th century the a group of \u099a\u09bf\u09a8\u09cd\u09a4\u09be\u09ac\u09bf\u09a6 and writer of income and production \u099a\u0995\u09cd\u09b0\u09be\u0995\u09be\u09b0 current through the economic thoughts development of it ."
+"-25.161 the arousal activities before penetrating male organ into vagina is called foreplay ."
+"-26.500 the arousal activities before penetrating male organ into vagina is called the foreplay ."
+"-27.117 the arousal activities before penetrating male organ into vagina is called as the foreplay ."
+"-27.359 the arousal activities before penetrating male organ into vagina is called as foreplay ."
+"-27.669 the arousal activities before penetrating male organ into vagina is called stimulation ."
+"-349.226 it is mainly \u09b6\u09c2\u0995\u09b0\u09c7\u09b0 in the middle of which was which can \u09b6\u09c2\u0995\u09b0\u0995\u09c7 \u0987\u09a8\u09ab\u09cd\u09b2\u09c1\u09af\u09bc\u09c7\u099e\u09cd\u099c\u09be\u09a4\u09c7 affected by british ."
+"-349.276 it is mainly \u09b6\u09c2\u0995\u09b0\u09c7\u09b0 in the middle of was which can \u09b6\u09c2\u0995\u09b0\u0995\u09c7 \u0987\u09a8\u09ab\u09cd\u09b2\u09c1\u09af\u09bc\u09c7\u099e\u09cd\u099c\u09be\u09a4\u09c7 affected by british ."
+"-349.530 it is mainly \u09b6\u09c2\u0995\u09b0\u09c7\u09b0 in the middle of which was which can \u09b6\u09c2\u0995\u09b0\u0995\u09c7 \u0987\u09a8\u09ab\u09cd\u09b2\u09c1\u09af\u09bc\u09c7\u099e\u09cd\u099c\u09be\u09a4\u09c7 by british ."
+"-349.560 it is mainly \u09b6\u09c2\u0995\u09b0\u09c7\u09b0 in the middle of which was which can \u09b6\u09c2\u0995\u09b0\u0995\u09c7 \u0987\u09a8\u09ab\u09cd\u09b2\u09c1\u09af\u09bc\u09c7\u099e\u09cd\u099c\u09be\u09a4\u09c7 infected by british ."
+"-349.580 it is mainly \u09b6\u09c2\u0995\u09b0\u09c7\u09b0 in the middle of was which can \u09b6\u09c2\u0995\u09b0\u0995\u09c7 \u0987\u09a8\u09ab\u09cd\u09b2\u09c1\u09af\u09bc\u09c7\u099e\u09cd\u099c\u09be\u09a4\u09c7 by british ."
+"-349.585 it is mainly \u09b6\u09c2\u0995\u09b0\u09c7\u09b0 in between in which was which can \u09b6\u09c2\u0995\u09b0\u0995\u09c7 \u0987\u09a8\u09ab\u09cd\u09b2\u09c1\u09af\u09bc\u09c7\u099e\u09cd\u099c\u09be\u09a4\u09c7 affected by british ."
+"-349.610 it is mainly \u09b6\u09c2\u0995\u09b0\u09c7\u09b0 in the middle of was which can \u09b6\u09c2\u0995\u09b0\u0995\u09c7 \u0987\u09a8\u09ab\u09cd\u09b2\u09c1\u09af\u09bc\u09c7\u099e\u09cd\u099c\u09be\u09a4\u09c7 infected by british ."
+"-349.627 it is mainly \u09b6\u09c2\u0995\u09b0\u09c7\u09b0 in between in was which can \u09b6\u09c2\u0995\u09b0\u0995\u09c7 \u0987\u09a8\u09ab\u09cd\u09b2\u09c1\u09af\u09bc\u09c7\u099e\u09cd\u099c\u09be\u09a4\u09c7 affected by british ."
+"-349.663 it is basically \u09b6\u09c2\u0995\u09b0\u09c7\u09b0 in between in which was which can \u09b6\u09c2\u0995\u09b0\u0995\u09c7 \u0987\u09a8\u09ab\u09cd\u09b2\u09c1\u09af\u09bc\u09c7\u099e\u09cd\u099c\u09be\u09a4\u09c7 affected by british ."
+"-349.704 it is basically \u09b6\u09c2\u0995\u09b0\u09c7\u09b0 in between in was which can \u09b6\u09c2\u0995\u09b0\u0995\u09c7 \u0987\u09a8\u09ab\u09cd\u09b2\u09c1\u09af\u09bc\u09c7\u099e\u09cd\u099c\u09be\u09a4\u09c7 affected by british ."
+"-221.617 these are \u098f\u0995\u098f the mycelium structure ."
+"-221.656 these \u098f\u0995\u098f the mycelium structure ."
+"-221.769 these are \u098f\u0995\u098f to mycelium structure ."
+"-221.807 these \u098f\u0995\u098f to mycelium structure ."
+"-222.116 these are \u098f\u0995\u098f the mycelium formed the ."
+"-222.155 these \u098f\u0995\u098f the mycelium formed the ."
+"-222.250 these are \u098f\u0995\u098f the mycelium formed ."
+"-222.268 these are \u098f\u0995\u098f to mycelium formed the ."
+"-222.288 these \u098f\u0995\u098f the mycelium formed ."
+"-222.306 these \u098f\u0995\u098f to mycelium formed the ."
+"-8.527 russia at a democratic country ."
+"-8.727 russia is now a democratic country ."
+"-8.985 russia now a democratic country ."
+"-8.991 russia at present a democratic country ."
+"-9.259 russia is a democratic country ."
+"-9.330 russia at present is a democratic country ."
+"-4.520 penis"
+"-4.864 gender"
+"-5.566 sex"
+"-6.544 sexual organs"
+"-6.916 the"
+"-104.738 \u09b2\u09bf\u0999\u09cd\u0997"
+"-9.024 this state is called orgasm ."
+"-13.083 this state is called orgasm . ."
+"-37.091 history of different period here itself was established royal more than one empire ."
+"-37.533 history of different period here only was established royal more than one empire ."
+"-37.644 history of different period here only established in royal more than one empire ."
+"-37.659 history of different period here itself established in royal more than one empire ."
+"-37.716 history of different period here itself was established royal more empire ."
+"-37.750 history of different period here itself was established royal more than one kingdom ."
+"-37.861 history of different period here was established royal more than one empire ."
+"-37.954 history of different period here itself was established on royal more than one empire ."
+"-38.021 history of different period this was established royal more than one empire ."
+"-38.157 history of different period here only was established royal more empire ."
+"-2.135 micro economics"
+"-2.844 micro economics ."
+"-3.315 macro economics"
+"-5.518 micro economics of"
+"-6.060 micro economics in"
+"-32.828 the user to operating system the visible form of the computer interface ."
+"-33.055 the user to operating system of the visible form of the computer interface ."
+"-33.193 the user to operating system is the visible form of the computer interface ."
+"-33.225 the user to operating system most visible form of the computer interface ."
+"-33.243 the user to operating system is most visible form of the computer interface ."
+"-33.305 the user to operating system is visible form of the computer interface ."
+"-33.333 the user to operating system the most visible form of the computer interface ."
+"-33.773 the user to operating system the visible form of the computers interface ."
+"-33.823 user to operating system of the visible form of the computer interface ."
+"-33.992 user to operating system most visible form of the computer inte

<TRUNCATED>