From d037287b0f818f883de30491bb800b9c8457f751 Mon Sep 17 00:00:00 2001 From: RikedyP Date: Sun, 15 Aug 2021 18:50:15 +0100 Subject: [PATCH 1/3] Custom autumn 2021 --- docs/Array-model.md | 39 +- docs/Assignment.md | 111 + docs/Code.md | 180 + docs/Data.md | 369 + docs/Errors.md | 587 + docs/Help.md | 42 + docs/Interfaces.md | 60 + docs/Interpreter-internals.md | 320 + docs/Keyboard Mnemonics.pdf | Bin 0 -> 105685 bytes docs/Loops.md | 297 + docs/Namespaces.md | 375 + docs/Operators.md | 348 + docs/Outer-product.md | 3 + docs/Quad names.md | 237 + docs/Quirks.md | 185 + docs/Reading.md | 38 + docs/Selecting-from-arrays.md | 303 + docs/Selecting-from-lists.md | 47 +- docs/Shape-Reshape.md | 5 +- docs/Ufns.md | 411 + docs/Workspaces.md | 176 + docs/assets/IndiaRainfall.csv | 3031 + docs/assets/IndiaRainfallSource.csv | 4117 ++ docs/assets/words.txt | 99171 ++++++++++++++++++++++++++ docs/img/APL_Citizens.png | Bin 0 -> 14732 bytes docs/img/RIDE_Trace_Window.png | Bin 0 -> 15834 bytes docs/img/numerical-integration.svg | 1 + docs/index.md | 24 +- docs/javascripts/config.js | 2 +- docs/style/main.css | 1 + mkdocs.yml | 25 +- overrides/main.html | 17 + 32 files changed, 110477 insertions(+), 45 deletions(-) create mode 100644 docs/Assignment.md create mode 100644 docs/Code.md create mode 100644 docs/Data.md create mode 100644 docs/Errors.md create mode 100644 docs/Help.md create mode 100644 docs/Interfaces.md create mode 100644 docs/Interpreter-internals.md create mode 100644 docs/Keyboard Mnemonics.pdf create mode 100644 docs/Loops.md create mode 100644 docs/Namespaces.md create mode 100644 docs/Operators.md create mode 100644 docs/Quad names.md create mode 100644 docs/Quirks.md create mode 100644 docs/Reading.md create mode 100644 docs/Selecting-from-arrays.md create mode 100644 docs/Ufns.md create mode 100644 docs/Workspaces.md create mode 100644 docs/assets/IndiaRainfall.csv create mode 100644 docs/assets/IndiaRainfallSource.csv create mode 100644 docs/assets/words.txt create mode 100644 docs/img/APL_Citizens.png create mode 100644 docs/img/RIDE_Trace_Window.png create mode 100644 docs/img/numerical-integration.svg create mode 100644 overrides/main.html diff --git a/docs/Array-model.md b/docs/Array-model.md index c10db6b..d9a492c 100644 --- a/docs/Array-model.md +++ b/docs/Array-model.md @@ -40,6 +40,9 @@ To see what the markings mean, see the help for the `]Display` user command: ]Display -?? ``` +!!! Warning "Version Warning" + The `]box` user command is not available in version 12.1. Use `]disp` or `]display` instead. + ## Fundamentals of high rank arrays ### Cells and axes @@ -47,7 +50,7 @@ From the APL Wiki:
A cell is a subarray which is formed by selecting a single index along some number of leading axes and the whole of each trailing axis. Cells are classified by their rank, which may be between 0 (scalars) and the array's rank (in which case the cell must be the entire array). Cells with rank k are called k-cells of an array. A major cell is a cell whose rank is one less than the entire array, or a 0-cell of a scalar.
-If the text above feels confusing, don't worry. Possibly after this chapter, and almost certainly after reading a future section on selecting from arrays, you will be able to read it again and say to yourself "oh yeah, that makes sense". What you need to know for now is that arrays are arranged like rectangles in many dimensions. The three simplest cases should feel somewhat familiar to you. +If the text above feels confusing, don't worry. Possibly after this chapter, and almost certainly after [the next section on selecting from arrays](../Selecting from arrays), you will be able to read it again and say to yourself "oh yeah, that makes sense". What you need to know for now is that arrays are arranged like rectangles in many dimensions. The three simplest cases should feel somewhat familiar to you. ```APL 0 ⍝ A scalar @@ -86,6 +89,8 @@ UVWX The dimensions of an array are also known as **axes**. The most major cells, the rank `k-1` cells for an array of rank `k`, lie along the *first* axis. The least major cells are columns which lie along the *last* axis. +In Dyalog, arrays can have up to 15 dimensions. + For more details on the APL array model in Dyalog and other array languages, see [the APL Wiki article on the array model](https://aplwiki.com/wiki/Array_model). Now that you know how to describe the structure of an array in terms of its sub-arrays, let us look at how to apply functions to sub-arrays. @@ -108,6 +113,12 @@ Now that you know how to describe the structure of an array in terms of its sub- ×⍤0 2⍨⍳10 ``` +!!! Warning "Version Warning" + The rank operator `⍤` is not available in version 12.1. A compatible APL model of the operator which can be used (but might not provide the best performance) is provided at the end of this chapter. + The glyph `⍤` is not available in Dyalog Classic. Rank is instead represented by `⎕U2364`. + + `_Rank_←{⍺←⊢ ⋄ ⍺(⍺⍺ ⎕U2364 ⍵⍵)⍵}` + ??? Hint When applying dyadic functions using the rank operator, use the helper function ,⍥⊂ ravel over enclose (or {⍺⍵} for versions before Dyalog version 18.0) to see how arguments are paired up. For example:
      names(,⍥⊂⍤1 1)'Pete  '
@@ -228,7 +239,7 @@ Arrays in Dyalog APL are always collections of scalars, regardless of rank. Howe
 0
 ```
 
-Boxing a simple scalar returns the same scalar. This becomes very relevant when we learn more about indexing. In technical terms, a simple scalar is a rank-0 array which contains itself as its value.
+Boxing a simple scalar returns the same scalar. This becomes very relevant when we learn [more about indexing](../Selecting from arrays). In technical terms, a simple scalar is a rank-0 array which contains itself as its value.
 
 ```APL
       'a'≡⊃'a'       ⍝ The disclose of a simple scalar is itself
@@ -296,7 +307,7 @@ The depth of an array can be found using the **depth** `≡⍵` function. It ret
 ### Pick and Mix
 There are two more useful constructs for modifying array structures: **first** `⊃⍵` and **mix** `↑⍵`.
 
-First is a special case of **pick** `⍺⊃⍵`, which is a way of selecting items from nested arrays. 
+First is a special case of **pick** `⍺⊃⍵`, which is a way of [selecting items from nested arrays](../Selecting from arrays/#reach-indexing). 
 
 Mix will increment the rank while decrementing the depth:
 ```APL
@@ -427,7 +438,7 @@ Experiment with the following expressions to determine what the each `¨` and bi
 
 1. Some Points in Space Revisited
 
-	These problems are identical to those about Some Points in Space in [problem set 5](../Shape-Reshape/#problem-set-5). This time, create a function which works on vectors and use the rank operator to solve these problems.
+	These problems are identical to those about Some Points in Space in [problem set 5](../Shape Reshape/#problem-set-5). This time, create a function which works on vectors and use the rank operator to solve these problems.
 
 	The positions of 7 points in 2D space are given by the matrix `pos2`:
 
@@ -561,6 +572,26 @@ Experiment with the following expressions to determine what the each `¨` and bi
 		
 	
 
+## An APL model of the rank operator
+The primitive rank operator `F⍤k` was introduced in Dyalog version 14.0. An APL model compatible with earlier versions is as follows:  
+```APL
+ _Rank_←{
+     ⍺←{⍵}
+     ⍺ ⍺⍺{⍺←{⍵} ⋄ ⍺ ⍺⍺ ⍵}{
+         0 1000::⎕SIGNAL ⎕EN
+         effrank←{0≤⍺:⍺⌊⍴⍴⍵ ⋄ 0⌈⍺+⍴⍴⍵}   ⍝ effective rank
+         cells←{⊂[(-⍺ effrank ⍵)↑⍳⍴⍴⍵]⍵}
+         (m l r)←⌽3⍴⌽⍵⍵
+         ⎕ML←0                           ⍝ needed by ↑⍵
+         0=⎕NC'⍺':↑⍺⍺¨(m cells ⍵)        ⍝ monadic case
+         x←l cells ⍺
+         y←r cells ⍵
+         ((⍴x)≡⍴y)⍱0=(⍴⍴x)⌊⍴⍴y:⎕SIGNAL 4+(⍴⍴x)≡⍴⍴y
+         ↑x ⍺⍺¨y                         ⍝ dyadic  case
+     }⍵⍵{⍵}⍵
+ }
+```
+
 ## Reduce on an empty vector?
 For your interest, here are some reductions of note. Try to ask yourself why they give the results they do. Could they have been given different definitions?
 
diff --git a/docs/Assignment.md b/docs/Assignment.md
new file mode 100644
index 0000000..2d64bae
--- /dev/null
+++ b/docs/Assignment.md
@@ -0,0 +1,111 @@
+# Assigning to arrays
+
+## Indexed Assignment
+Assign values at specified indices.
+
+```APL
+      t←4 4⍴'some sample text'
+      t[⍸t∊'aeiou']←'!'
+```
+
+## Selective Assignment
+Define `n←5 5⍴⍳25` in your workspace.
+
+1. Using selections, find at least four different ways to set the bottom-right 3 by 3 submatrix in `n` to `0`.
+	For example, `(2 2↓n)←0`.
+
+	??? Hint
+		See which primitives may be used in a selective assignment
+
+## Modified Assignment
+Experiment with the following expressions, paying particular attention to the `name f← array` construct.
+
+```APL
+      salaries←18250 42500 56000 57250 48640
+      codes←'ACDDC'
+      salaries×←1.1
+      salaries[⍸codes='C']×←1.05
+
+      a←⎕A
+      (3↑a),←'abcd'
+```
+
+## At
+
+!!! Warning "Version Warning"
+	At `@` is not available in Dyalog version 12.1. Modified, indexed assignment is usually used instead. A compatible APL model is provided at the end of this chapter.
+
+Monadic functions take a single right argument array as input. Dyadic functions take two argument arrays.
+
+Monadic operators take a single left operand which can be a function or an array (as in `+/` where plus `+` is the function operand and reduce `/` is the operator). 
+
+Dyadic operators take two operands which could be functions or arrays depending on the operator's definition. For example, the rank operator `F⍤k` takes a function left operand `F` and array right operand `k` of up to 3 elements.
+
+Selective and indexed assignment methods will change the values of variables. The "at" operator `@` merges two arrays at specified indices and returns a new array.
+
+If a function right operand returns a boolean array when applied to `⍵` (e.g. `3=1 3 5`) then ones `1` in the boolean array determine where scalars of `⍺` are inserted.
+
+```APL
+      ('∆⍥'@{⍵∊'AEIOU'})2 3⍴'DYALOG'
+      (' '@2 3 4)'DYALOG'
+      (' '@(1 2)(1 3)(2 1))2 3⍴'DYALOG'
+```
+
+1. The following expression contains an error:  
+	`      ('∆⍥'@1)2 3⍴'DYALOG'`  
+	Change the parenthesised function containing `@` in **two** ways so that it gives the following results:  
+	1. 
+		
∆∆∆
+		LOG
+ 1. +
∆∆∆
+		⍥⍥⍥
+ +Generally, the left operand to `@` is a function applied to scalars in `⍵` which are specified by a right operand that is either an array of scalar (simple or enclosed vector) indices or a boolean array returned by a right operand function. An array left operand is shorthand for a [constant function](https://aplwiki.com/wiki/Constant) that returns the array. + +```APL + {1↓(1∘(819⌶)@{¯1⌽' '=⍵})' ',⍵}'my excellent heading' +``` + +## Strand Assignment +[**Distributed assignment**](http://help.dyalog.com/latest/#Language/Introduction/Namespaces/Distributed Assignment.htm) or **strand assignment** allows multiple names to be defined using a single assignment arrow `←`. + +```APL + (max min avg)←{(⌈⌿⍵)(⌊⌿⍵)((+⌿÷≢)⍵)}3 1 4 1 5 +``` + +!!! Note + Strand assignment does not require names to be parenthesised, but we strongly recommend it for clarity. + +We can assign items in `nest` to the three variables `s←'A'` `v←1 2 3` and `m←3 3⍴⍳9` using a single assignment arrow. + +```APL + nest←('A'(1 2 3))(3 3⍴⍳9) + ((s v) m)←nest +``` + +!!! Warning + You might have some issues when using inline, modified or strand assignment in dfns. This is by design, but can be a source of confusion. +
      {a←3 ⋄ f←+ ⋄ a f←3 ⋄ a}⍬
+	3
+	      a←3 ⋄ f←+ ⋄ a f←3 ⋄ a
+	6
+ + You can get around these problems by writing `∘⊢` (or in 12.1: `∘{⍵}` ) to the immediate right of any function involved: +
      {a←3 ⋄ f←+ ⋄ a f∘{⍵}←3 ⋄ a}⍬
+	6
+ +## An APL model of At +The primitive operator "*at*" (`F@i`) was introduced to Dyalog in version 16.0. A model compatible with earlier versions is as follows: +``` + _At_←{ + ⍺←{⍵} ⍝ Substitution: (⍺ ⍺⍺ ⍵) at ⍵⍵ in ⍵. + 0::⎕SIGNAL ⎕EN ⍝ signal any error to caller + 3=⎕NC'⍵⍵':⍺ ⍺⍺ ∇∇({(,⍵)/,⍳⍴⍵}⍵{⍵}¨⍵⍵ ⍵){⍵}⍵ ⍝ selector is function: bool mask + 3∧.≠⎕NC 2 2⍴'⍺ ⍺⍺':⎕SIGNAL 2 ⍝ both ⍺ and ⍺⍺ arrays: syntax err + 3≠⎕NC'⍺⍺':⍺⍺{⍺}∇∇ ⍵⍵{⍵}⍵ ⍝ modifier is array: substitution + 1<|≡⍵⍵:A{⍺}A[⍵⍵]←⍺ ⍺⍺(A←⍵)[⍵⍵] ⍝ nested: reach/choose indexing + I←(⊂⍵⍵)⌷[⎕IO]⍳⍴⍵ ⍝ simple: major cell selection + A{⍺}A[I]←⍺ ⍺⍺(A←⍵)[I] ⍝ nb: duplicate indices ignored + } +``` \ No newline at end of file diff --git a/docs/Code.md b/docs/Code.md new file mode 100644 index 0000000..69497dd --- /dev/null +++ b/docs/Code.md @@ -0,0 +1,180 @@ +# Importing, Exporting and Distributing Code +We have already learned [the basics of saving and loading workspaces](/Workspaces). Here we address some more specific things like how to use other people's code, how to let other people use your code, and how to distribute your application to end users. + +## Installed Libraries +Dyalog installations come with a suite of libraries with pre-written code utilities and examples. + +Find which ones are available to you now with `)lib`. + +There is also a [**code libraries reference guide**](http://docs.dyalog.com/17.1/Code%20Libraries%20Reference%20Guide.pdf) in the documentation. + +You can copy code into the workspace in several ways: + +- Copy the entire library into the current namespace (use pcopy to ensure that existing names are not overwritten): + + `)pcopy dfns` + +- Copy selected functions into the current namespace: +
)copy dfns cal date days
+cal 2↑⎕ts
+ +- Copy the entire library into a specific namespace: +
'dfns'⎕ns⍬
+dfns.⎕cy'dfns'
+ +- Copy the selected functions into a specific namespace: +
'dfns'⎕ns⍬
+'cal' 'date' 'days'dfns.⎕cy'dfns'
+ + !!! Warning "Version Warning" + In Dyalog version 12.1, you must use a matrix left argument to copy multiple names with `⎕CY`: +
(↑'cal' 'date' 'days')dfns.⎕cy'dfns'
+ +Alongside [APLcart](https://aplcart.info), the [dfns library](https://dfns.dyalog.com) (not to be confused with the dfns construct) contains a large number of useful functions for use cases ranging from number theory, graphs and tree data structures to games and graphics. + +## User Commands +Some of these, such as the `]box` one, have been mentioned already. Commands which begin with a right-square-bracket `]` are called User Commands. These are only used while interacting with the session, but you can customise them and create your own. + +Dyalog webinar: Creating and Managing your own User Commands + +Custom user commands are scripted classes or namespaces containing specific member functions `List`, `Run` and `Help`. They should be saved as plain text **.dyalog**, **.apln** or **.aplc** files and placed in the folder **[HOME]/MyUCMDs** where \[HOME\] is either */home/user* on Unix-like systems or *C:\Users\user\Documents* on Microsoft Windows. + +!!! Warning "Version Warning" + The custom user command system has changed since, and many recent user commands are not available in version 12.1. To see the available user commands use `]?`. + + Dyalog 12.1 on UNIX does not have a session and user commands are unavailable. + +Some particularly useful in-built user commands for getting information about your workspace are mentioned in the section on [workspaces](../Workspaces). + +## Creating and sharing your own utilities +The user command system is designed for utilities to help during application development and debugging. It is not intended as a system for programmatic utilities. Due to its terse nature, APL vendors have not really established a full-fledged, public package management system like Python's pip or Node/JavaScript's npm. Usually, the source code is distributed either in code files, workspaces or in text files and copied wholesale into other code bases. + +However, you might find or develop utility functions which you use frequently and that you copy into code bases frequently. In this case, you might like to make such utilities easy to access. One option is to define the function as a member of a custom namespace within the session namespace `⎕SE`. + +Here is an example of using this technique so that you don't have to write such a long function reference to use `repObj`. + +```APL + 'X'⎕SE.⎕NS⍬ + ⎕SE.X.rep←⎕SE.Dyalog.Utils.repObj +``` + +Once your custom name (function, variable etc.) has been defined within ⎕SE, save the session file. In the Microsoft Windows IDE, go to **Session → Save** to overwrite the default session file. In general, the expression for saving the session file is + +```APL +{2⎕NQ⎕SE'FileWrite'⊣⎕SE⎕WS'File'⍵} +``` + +which can also be [found on APLcart](https://aplcart.info/?q=save%20session%20configuration#). + +Of course, you might instead define `rep` in the root namespace when starting an exploratory coding session, for convenience. + +!!! Warning + Remember that others running your code base might not have comparable environments to that in which which you developed the code. Best practice is to ensure that all necessary code and data is contained locally within your application. + + Your organisation might also have rules relating to the types and locations of custom items that prevent you from using such techniques. + +## Code in component files +The **object representation** `⎕OR` of an APL function or operator can be used to store code in component files. These can then be fixed (defined) with `⎕FX` upon loading. + +## Source code in text files +Until recently, while it was possible to print source code as text for use in articles and tutorials, generally code was distributed in binary workspaces. The exact format and file extension varies between [APL implementations](https://aplwiki.com/wiki/List_of_language_developers), but for Dyalog these are **.dws** files. + +Nowadays, Unicode has enabled the widespread ability to represent characters other than just ASCII. Source code management systems, such as Git and SVN, have encouraged the use of Unicode text files as source code representation. + +Dyalog provides mechanisms for importing text source into the active workspace, and vice versa, including the ability to associate text files with names in the workspace such that changing one will affect the other. + +### SALT +The **S**imple **A**PL **L**ibrary **T**oolkit allows you to store APL source code as text files with the extension **.dyalog** + +```APL + Foo←{3×⍵} + ]save Foo /tmp/Foo +\tmp\Foo.dyalog + + ]load /tmp/Foo +Foo +``` + +If the full file path is not specified, SALT will look in a configurable collection of folders on the file system for Dyalog source files. The source folders can be viewed and configured in **Options → Configure → SALT**. + +Read [Chapter R of Mastering Dyalog APL](https://www.dyalog.com/uploads/documents/MasteringDyalogAPL.pdf#%5B%7B%22num%22%3A1305%2C%22gen%22%3A0%7D%2C%7B%22name%22%3A%22XYZ%22%7D%2C175%2C640%2C0%5D) and the +[SALT User Guide](https://docs.dyalog.com/latest/SALT%20User%20Guide.pdf). + +!!! Warning "Version Warning" + SALT is not available in Dyalog version 12.1 for UNIX + +### ⎕FX +The `⎕FX` system function can be used to define functions or operators from various forms of source code. + +### ⎕FIX +The `⎕FIX` system function can be used to define various APL items (functions, operators, namespaces etc.) from scripts. + +!!! Warning "Version Warning" + In Dyalog version 12.1, `⎕FIX` is only able to fix class and namespace scripts, and does not associate names in the workspace with files on the file system. + +If `2⎕FIX` is used and changes are made to the APL name using the Dyalog editor, the system will give you the option to save those changes to the text source file at the same time. + +If changes are made to the text file outside of Dyalog, using a standard text editor, then opening that name for editing within Dyalog will give the option to update the code in the active workspace using the modified external source. + +Using [HttpCommand](../Data/#downloading-data-from-the-internet) together with `⎕FIX` is a way to import code from the internet. + +### Link +For newer applications, we encourage you to try using the [Link](https://github.com/dyalog/link) system which supercedes [SALT](#salt) and associates namespaces in the active workspace with folders in the file system. Using Link, you do not have to remember to `)SAVE` your workspace, changes in the workspace are automatically reflected on the file system. + +## ⎕CMD ⎕SH +These two functions are used to run command prompt commands (Microsoft Windows) and shell commands (Linux/macOS). For example, try `⎕CMD'whoami'`. + +!!! Warning + You should take caution when using `⎕SH`, as a non-zero exit code from the command line can cause a `DOMAIN ERROR` and the system error code to be lost. +
      ⎕←r←⎕SH'exit 3'
+	DOMAIN ERROR: Command interpreter returned failure code 3
+	      ⎕←r←⎕SH'exit 3'
+	          ∧
+	      r
+	VALUE ERROR: Undefined name: r
+	      r
+	      ∧
+ See the [documentation for ⎕SH](http://help.dyalog.com/latest/#UNIX_IUG/Calling UNIX commands.htm) for more information. + +While these are quick-and-easy functions to use for those familar with the command lines on particular operating systems, on some systems they can be slower than the more integrated alternatives. For example, reading a file using `⎕SH` can be significantly slower than using `⎕N...` system functions on some machines. + +Checking if a file exists: +``` + ⍎⊃⎕SH'if test -f /tmp/text; then echo 1; else echo 0; fi' +1 + ⎕NEXISTS'/tmp/text' +1 +``` + +Reading a text file: + +``` + ⍴↑':'(≠⊆⊢)¨⎕sh'cat /etc/passwd' +44 7 + ⍴↑':'(≠⊆⊢)¨(⎕ucs 10 13)((~∊⍨)⊆⊢)⊃⎕nget'/etc/passwd' +44 7 + ⍴⎕CSV⍠'Separator' ':'⊢'/etc/passwd' +44 7 +``` + +Listing the contents of a directory: +``` + ⍴↑⎕sh'ls -l /tmp' +14 127 + ⍴↑⊃0⎕NINFO⍠1⊢'/tmp/*' +19 85 +``` + +Searching within a file: + +``` + ↑':'(≠⊆⊢)¨⎕SH'awk -F'';'' ''$1 ~ /games/ { print $0 }'' /etc/passwd' +┌─────┬─┬─┬──┬─────┬──────────┬─────────────────┐ +│games│x│5│60│games│/usr/games│/usr/sbin/nologin│ +└─────┴─┴─┴──┴─────┴──────────┴─────────────────┘ + + {⍵⌷⍨⊂⍸'games'∘≡¨⍵[;1]}⎕CSV⍠'Separator' ':'⊢'/etc/passwd' +┌─────┬─┬─┬──┬─────┬──────────┬─────────────────┐ +│games│x│5│60│games│/usr/games│/usr/sbin/nologin│ +└─────┴─┴─┴──┴─────┴──────────┴─────────────────┘ +``` \ No newline at end of file diff --git a/docs/Data.md b/docs/Data.md new file mode 100644 index 0000000..0e75dc7 --- /dev/null +++ b/docs/Data.md @@ -0,0 +1,369 @@ +# Data Input/Output +Although we have [`⎕IO`](http://help.dyalog.com/latest/#Language/System Functions/io.htm), "IO" in APL can still refer to input/output. + +## Hello, World! +If you have seen any kind of computer programming before, you are probably aware of a famous program called ["Hello, World!"](https://en.wikipedia.org/wiki/%22Hello,_World!%22_program). + +Here it is in APL: +```APL + ⎕←'Hello, World!' +``` + +If you have learned programming before, maybe it is strange to have gotten so far in an introductory tutorial without meeting the language's "print" function. + +!!! Note + By default, non-assignment expressions output results to the session log. We strongly recommend using ⎕← when you deliberately intend for an expression to print to the session log. You are then able to search for print statements for easier debugging. + +### Back 2 School 4 Maths + +The function `Test` will ask the user `n` single-digit arithmetic questions, and return the number of correct answers. + +```APL + ∇ points←Test n;answer;solution +[1] points←0 +[2] :While n>0 +[3] solution←⍎⎕←⍕(?10),('+-×÷'[?4]),?10 +[4] answer←⎕ +[5] points+←answer≡solution +[6] n-←1 +[7] :EndWhile +[8] ⎕←'You scored',points,'points' + ∇ + + Test 3 +``` + +Examine the `Test` function and try it out. Which line asks for user input? + +!!! Note + The del representation of the Test function above is the vector representation result of ⎕VR'Test' which can be directly input into the session. Copy the `Test` function above, paste it into the session and press Enter to define the `Test` function in your workspace. + +You will see that it is quite possible to cheat the `Test` function by entering the same expression that it asks. To be even more sly, simply move the text cursor with the up arrow to the printed problem statement and press `Enter`. + +To ameliorate this, we can **verify and fix input** with `⎕VFI`. Also note the use of *quote-quad* `⍞`. + +```APL + ∇ points←Test2 n;answer;input;solution;valid +[1] points←0 +[2] :While n>0 +[3] solution←⍎⎕←⍕(?10),('+-×÷'[?4]),?10 +[4] input←⍞ +[5] (valid answer)←⎕VFI input +[6] answer←valid/answer +[7] points+←answer≡,solution +[8] n-←1 +[9] :EndWhile +[10] ⎕←'You scored',points,'points' + ∇ + + Test2 3 +``` + +### Convenient text input +Single quotes `'` in APL character arrays must be escaped by doubling. It can be sometimes easier to paste input by assigning `⍞`: +```APL + text←⍞ +My great string 'which has some quoted text' + ⎕SE.Dyalog.Utils.repObj text +'My great string ''which has some quoted text'' ' +``` + +!!! Note + The utility function `⎕SE.Dyalog.Utils.repObj` can generate APL expressions which produce most arrays. In some sense, it is like an inverse to **execute** `⍎`. We do not recommend using it programmatically; use the primitives to test the properties of arrays, as explained in [the sections on error handling](../Errors/#who-needs-to-know). + +### Convenient text output +Once upon a time, APL was considered an incredible, revolutionary tool for scientists, artists and business people alike to be able to get work done using computers. In a time before spreadsheet software was so ubiquitous, APL terminals offered a way to quickly and easily process data, produce reports and format them for printing. + +Take a look at the [Chapter F of Mastering Dyalog APL](https://www.dyalog.com/uploads/documents/MasteringDyalogAPL.pdf#page=295) for how to use the formatting functionality of `⍕` and `⎕FMT`. + +1. + + It is easy to round numbers to a specific precision with **dyadic format** `⍕`: + +
      ⎕←rand←?5⍴0
+	0.2225024074 0.3282243862 0.314984696 0.9533625773 0.757200184
+	      ⍎2⍕rand
+	0.22 0.33 0.31 0.95 0.76
+ + 1. Write a function equivalent to `(⍎⍕)` (for small scalar numeric `⍺` only) without using `⍎` or `⍕`. + 1. Why does `(⍎⍕)` fail for large values of `⍺`? + +1. + + The following expression formats the current date as **YY/MM/DD**. +
'I2,2(,ZI2)'⎕FMT 1 3⍴100|3↑⎕TS
+ Change the expression to produce **YYYY-MM-DD**. + +1. + + In Dyalog version 18.0, `1200⌶` (*twelve hundred eye beam*) can convert date times into human readable formats according to some specification. For example: + +
      'Dddd Mmmm Doo YYYY'(1200⌶)1⎕dt⊂3↑⎕ts
+	┌──────────────────────────┐
+	│Wednesday August 12th 2020│
+	└──────────────────────────┘
+ + Write a function `DTFMT` to generate a similar output using a 3-element vector like `3↑⎕TS`. That is, + + - Full day name + - Full month name + - Ordinal day number (1st, 2nd 3rd, 4th etc.) + - Full year number + +
      DTFMT 2020 8 12
+	┌──────────────────────────┐
+	│Wednesday August 12th 2020│
+	└──────────────────────────┘
+ +## Native Files +The term "Native Files" refers to any type of file on a hard disk. These can be text or media files, or even executable files. Usually we are interested in various kinds of text files. + +!!! Warning "Version Warning" + `⎕CSV`, `⎕JSON` and some of the `⎕N...` functions are not available in Dyalog version 12.1. Files must be tied and interpreted using `⎕NREAD` and APL. + +### ⎕CSV +Comma separated values are a very common and convenient . While we encourage you to [read the documentation](https://help.dyalog.com/latest/#Language/System Functions/csv.htm) for a full description, here is an overview of features of `⎕CSV`: + +- Read data from and write data to files directly +- Separate the header (first row) from the rest of the data +- Treat specific columns of input as numeric or text, depending on the options provided +- Use a separator other than commas, using the "Separator" variant option, for example using tabs (`⎕UCS 9`) for Tab Separated Values (.tsv). +- Read data chunks at a time so as to not fill the workspace, using the "Records" variant option. + +### ⎕JSON +JSON is not only a convenient way to represent nested data structures, but also a convenient data representation for the modern web since it is natively handled by JavaScript. `⎕JSON` converts between APL arrays, including namespaces and text vector representations of JSON. + +```APL + 'ns'⎕NS⍬ + ns.var←1 2 3 + ns.char←'abc' + ⎕JSON ns +{"char":"abc","var":[1,2,3]} +``` + +A JSON object in Dyalog uses dot-syntax to access members. Some JSON object keys are invalid APL names, so Dyalog works around this using special characters: +```APL + (⎕JSON'{"$name": "steve", "3var": "what"}').⎕nl-⍳9 +┌─────┬─────────┐ +│⍙3var│⍙⍙36⍙name│ +└─────┴─────────┘ +``` + +Be aware of incompatible namespaces, although most of the time you will be converting data rather than namespaces. + +```APL + 'ns'⎕NS⍬ + ns.fn←{⍵} + ⎕JSON ns +DOMAIN ERROR: JSON export: item "fn" of the right argument cannot be +converted (⎕IO=1) + ⎕JSON ns + ∧ +``` + +Recall [the expression for an empty JSON object](../Shape Reshape/#the-shape-of-a-scalar). + +Using `⎕JSON`, we can also [display error information in a human-readable format](../Errors/#pass-it-on). + +*[JSON]: JavaScript Object Notation + +### ⎕XML +XML is a format that has fallen out of favour in recent years, but is still useful to be able to import and export it easily when you need to. + +*[XML]: Extensible Markup Language + +### Text Files +Generally the `⎕N...` family of system functions are for reading and writing *native files* as described in the documentation. `⎕NGET` and `⎕NPUT` are useful for reading and writing text files without having to tie and untie them. + +```APL + (⊂words)⎕NPUT'data/words.txt' ⍝ Write words to a unicode text file + (content encoding newline)←⎕NGET'data/words.txt' ⍝ Read words from a unicode text file + words←(⎕UCS newline)((~∊⍨)⊆⊢)content ⍝ Split words on each new line +``` + +### ⎕N... +This is a quick summary. For more details see [the Native Files cheat sheet](https://docs.dyalog.com/latest/CheatSheet%20-%20Native%20Files.pdf) and [system functions and variables A-Z](https://help.dyalog.com/latest/index.htm#Language/System%20Functions/Summary%20Tables/System%20Functions%20and%20Variables%20ColWise.htm) in the online documentation. + +In the chapter on selecting from arrays there was [an example of reading a text file](../Selecting-from-arrays/#word-problems) using `⎕NGET`. Before Dyalog version 15.0, reading text files required a couple of extra steps. Some `⎕N...` native file functions are general and can be used to read and write any type of file. As a simple example, here we tie the file **words.txt**, read the data and store it in a variable, and finally untie the file. + +!!! Note + For multi-user systems, take care to set appropriate file access permissions when using `⎕NCREATE`, `⎕NTIE` and `⎕NLOCK`. + +```APL + tn←'assets/words.txt'⎕NTIE 0 + ⎕←10↑words←(⎕UCS 10)(≠⊆⊢)⎕NREAD tn 82(⎕NSIZE tn)0 +┌─┬───┬────┬────┬─────┬────┬──────┬────┬──────┬────┐ +│A│A's│AA's│AB's│ABM's│AC's│ACTH's│AI's│AIDS's│AM's│ +└─┴───┴────┴────┴─────┴────┴──────┴────┴──────┴────┘ + ⎕NUNTIE⎕NNUMS +``` + +!!! Warning "Version Warning" + Unicode data types 80, 160 and 320 are not available in Dyalog Classic Edition. See the [online documentation for `⎕NREAD`](https://help.dyalog.com/latest/index.htm#Language/System%20Functions/nread.htm) for more information. + + The symbol `⊆` (Left Shoe Underbar) is not available in Classic Edition, and Partition is instead represented by `⎕U2286`. + Trains are not available in Dyalog version 12.1. To use the partition function in version 12.1 (represented by `⍺⊆⍵` in Unicode Edition since version 16.0), you can set the [migration level](https://help.dyalog.com/latest/index.htm#Language/System%20Functions/ml.htm) locally inside a dfn: `Partition←{⎕ML←3 ⋄ ⍺⊂⍵}` + +### ⎕MAP +The memory mapping function `⎕MAP` associates a file on disk with an APL array in the workspace. This is useful if you are working with data that cannot fit inside the available workspace memory. One approach might be to read the data in chunks and process one chunk at a time (for example, see the "Records" variant option for `⎕CSV`). Another approach is to use `⎕MAP`. + +## Component files +If it is only APL systems that need to store data, the most convenient and efficient way to store that data is in APL **component files**. + +Here we will briefly look at the basic usage of component files. A full treatment of component files is provided in [Chapter N of Mastering Dyalog APL](https://www.dyalog.com/uploads/documents/MasteringDyalogAPL.pdf#page=557) and more information can be found in the [component file documentation](http://help.dyalog.com/latest/#Language/APL Component Files/Component Files.htm). + +System functions that deal with component files begin `⎕F...`. + +### Tie and untie +In Dyalog, component files have the extension **.dcf** (Dyalog Component File) and must be **tied** and **untied**. + +A component file may be exclusively tied (`⎕FTIE`) or have a shared tie (`⎕FSTIE`). With an exclusive tie, no other process may access the file. + +```APL + tn←'cfile'⎕FCREATE 0 ⍝ The file is exclusively tied + ⎕FUNTIE tn ⍝ The file is untied, it can now be used by other applications and processes +``` + +The next time we want to use this file, we can use `⎕FTIE` instead of `⎕FCREATE`. The right argument to these functions specifies a tie number (which can be different each time the file is tied), but with a right argument of `0` the next available tie number is used (component file tie numbers start at 1). + +```APL + tn←'cfile'⎕FTIE 0 ⍝ The file on disk is cfile.dcf, but this extension is assumed if not specified +``` + +The structure of a component file is analogous to a nested vector of arrays. We add new values by appending them to the end of a file. + +```APL + (3 3⍴⍳9)⎕FAPPEND tn + (↑'Dave' 'Sam' 'Ellie' 'Saif')⎕FAPPEND tn + nested←2 2⍴'this' 0 'that' (1 2 3) + nested ⎕FAPPEND tn +``` + +Each array stored in a component file (a *component*) is referred to by its index in the file (its *component number*), starting from 1 (not affected by `⎕IO`). + +```APL + ⎕FREAD¨tn,¨1 2 3 +┌─────┬─────┬────────────┐ +│1 2 3│Dave │┌────┬─────┐│ +│4 5 6│Sam ││this│0 ││ +│7 8 9│Ellie│├────┼─────┤│ +│ │Saif ││that│1 2 3││ +│ │ │└────┴─────┘│ +└─────┴─────┴────────────┘ +``` + +A component can be replaced by any other array. +```APL + 'Hello'⎕FREPLACE tn 2 + ⎕FREAD tn 2 +Hello +``` + +Use `⎕FSIZE` to find the range of components and file size: +``` + ⎕FSIZE tn +1 4 1744 1.8446744073709552E19 +``` + +The elements of `⎕FSIZE` are: + +- `[1]` The number of the first component +- `[2]` 1 + the number of the last component (that is, where a new component will be if `⎕FAPPEND` is used) +- `[3]` The current size of the file in bytes +- `[4]` The file size limit in bytes + +Components can be removed from the beginning or end of a component file, with the `⎕FDROP` function analogous to `⍺↓⍵`. + +```APL + ⎕FDROP tn 1 + ⎕FDROP tn ¯1 + ⎕FREAD¨tn,¨1 2 3 +FILE INDEX ERROR: cfile.dcf: No such component + ⎕FREAD¨tn,¨1 2 3 + ∧ + ⎕FREAD tn 2 ⍝ Only component number 2 remains +Dave +Sam +Ellie +Saif +``` + +After use, don't forget to untie all tied component files using `⎕FUNTIE ⎕FNUMS`. + +### Multi-user access +If you are working on a system through which multiple users need to access the same component files, it is important to become familiar with multi-user access techniques and potential pitfalls. In particular, you will need to use `⎕FSTIE`, `⎕FHOLD`, `⎕FSTACK` and probably `⎕AN`. + +- [Chapter N of Mastering Dyalog APL](https://www.dyalog.com/uploads/documents/MasteringDyalogAPL.pdf#page=557) +- [Online documentation: Controlling multi-user access](https://help.dyalog.com/latest/index.htm#Language/APL%20Component%20Files/Programming%20Techniques.htm) + +Multi-user access can mean manual access by actual human users, or automated access by separate computers or processes. + +## Downloading data from the internet +The **HttpCommand** class is built on top of the [**Conga**](https://docs.dyalog.com/latest/Conga%20User%20Guide.pdf) framework for TCP/IP communications. At the most basic level, it can be used to perform HTTP requests to retrieve data from servers. + +```APL + ]load HttpCommand +#.HttpCommand + ⍴(#.HttpCommand.Get 'https://google.com').Data +14107 +``` + +Using `HttpCommand` with [`⎕FIX`](../Code/#fix) is a way to download APL code from the internet. + +For more information, see [the HttpCommand document](https://github.com/Dyalog/library-conga/blob/master/Documentation/HttpCommand.md). Alternatively, there is documentation within the comments of the code for the HttpCommand class; simply use `)ed HttpCommand` or press Shift+Enter with the text cursor on the name in the session. + +!!! Warning "Version Warning" + HttpCommand is not available in Dyalog version 12.1. Instead, network interfacing is via the [Conga TCP/IP framework](https://docs.dyalog.com/latest/Conga%20User%20Guide.pdf). + +## Problem set 13 + +### Indian Summer + +[IndiaRainfall.csv](../assets/IndiaRainfall.csv) is a file of [comma separated values](https://simple.wikipedia.org/wiki/Comma-separated_values). It is adapted from [IndiaRainfallSource.csv](../assets/IndiaRainfallSource.csv) to remove incomplete records. + +The [India Meteorological Department(IMD)](http://www.imd.gov.in/) has shared this dataset under [Govt. Open Data License - India](https://data.gov.in/government-open-data-license-india). It can be downloaded from the links above or from [the Kaggle data science website](https://www.kaggle.com/rajanand/rainfall-in-india). + +The data contains the total measured monthly rain fall in millimeters for `30` regions in India from the years `1915` to `2015` inclusive. + +1. Load the data into the workspace + + By default, `⎕CSV` will load all fields as text data: + +
      ⎕←3↑1 2↓⎕CSV'assets/IndiaRainfall.csv'
+ + With the following parameters, `⎕CSV` will try to interpret all fields as numeric, and fall back to text if that fails. It will also import the first line as a separate array: + +
      (raindata header)←⎕CSV'assets/IndiaRainfall.csv' ⍬ 4 1
+	      ⎕←3↑0 2↓raindata
+ + !!! Hint "Bonus" + Try reading **IndiaRainfallSource.csv** and removing the missing records for yourself. When data sets contain a very small amount of missing data, sometimes it is appropriate to estimate those values in a process called [imputation](https://en.wikipedia.org/wiki/Imputation_%28statistics%29). Most of the time, it is best to just remove the sections containing missing records. + +1. What was the total rainfall in Punjab in 1995? +1. Which month in which region had the highest rainfall? +1. Use a least squares linear fit to estimate the total rainfall in all 30 regions in 2018 +1. Use a least squares linear fit to estimate the total rainfall in Punjab in 2018 + + ??? Hint + No one would expect you to derive an expression for the least squares linear fit with little APL experience. If you have done it, kudos to you. The expression `Mv(⊢⌹1,∘⍪⊣)Nv` from [APLcart](https://aplcart.info/?q=linear%20regression#) will compute coefficients of a least squares linear fit given a vector of X values `Mv` and a vector of Y values `Nv`. + +1. Inspect the data in **IndiaRainfallSource.csv** to see how close the true values were to your estimates. Were they within your standard error? + + ??? Hint + If the error `e` is a vector of the differences between Y values predicted by the linear fit and the actual Y values + + $$e_i=Y_i^{\text{predicted}}-Y_i^{\text{actual}}$$ + + then an estimate for the variance is given by + + $$s^2=\sum_{i=1}^n{{e_i^2}\over{n-2}}$$ + + where the standard deviation (standard error) is $s$. + +### MarkDown Sort +Write a program which reads in a markdown file, rearranges the sections by the alphabetical order of their headers, and writes the sorted file to a new file. For extra credit, include a method by which the user can decide whether to overwrite the existing file or provide the name or path to a new file. For example files, feel free to use any of [the source files for these course materials](https://github.com/Dyalog/APLCourse/tree/master/docs). + +--- + +**Fun facts** +If you are not very familiar with the workings of modern software, you might be surprised to see how accessible file types are. Many text editors might try to open a wide range of files by interpreting their data as text. In the audio editing program [Audacity](https://www.audacityteam.org/), native files can be inspected and manipulated as [audio waveforms](https://en.wikipedia.org/wiki/Waveform). These are a couple of techniques used in an art style called [databending](https://en.wikipedia.org/wiki/Databending). \ No newline at end of file diff --git a/docs/Errors.md b/docs/Errors.md new file mode 100644 index 0000000..5b2f3ae --- /dev/null +++ b/docs/Errors.md @@ -0,0 +1,587 @@ +# Error Handling and Debugging +This is an abridged treatment of error handling that covers key points. You will also find useful: + +- [Chapter 6 of Mastering Dyalog APL](https://mastering.dyalog.com/First-Aid-Kit.html) (Chapter E in the 2009 edition) +- [Dyalog webinars on error handling](https://www.youtube.com/watch?v=tDK0AKXXRAk&list=PLA9gQgjzcpKHi3OtHPTq7Z2LTzG6ZwMY7&index=1) +- The online documentation: + - [Error messages](https://help.dyalog.com/latest/index.htm#Language/Errors/Error%20Messages.htm) + - [Stop controls](https://help.dyalog.com/latest/index.htm#Language/System Functions/stop.htm) + - [Trace controls](https://help.dyalog.com/latest/index.htm#Language/System%20Functions/trace.htm) + - [State indicator](https://help.dyalog.com/latest/index.htm#search-state%20indicator) + +## What's in a Name? + +Study the following expression. It contains an error guard `::` and the primitive functions *format* `⍕` and *execute* `⍎`. + +```APL +)ns Names ⍝ Create a namespace called Names +Names.va←({2 6 11::0 ⋄ ⍎(⎕UCS ⍵),'←',⍕⍵}¨⍳1E4)~0 ⍝ Valid Assignment Character Codes +``` + +!!! Warning "Version Warning" + In Dyalog Classic, many Unicode symbols are not available and the above expressions will cause a `TRANSLATION ERROR`. Instead of the first ten thousand integers, try using the values in `⎕AVU`. + + In older code bases you are unlikely to want to use error guards very much, if at all. To see some of the "gotchas" of dfns error guards, read [the chapter on error handling in Stefan Kruger's Learn APL book](https://xpqz.github.io/learnapl/errors.html). + +1. Which three errors are trapped by the error guard? + +1. [`⎕AV`](https://aplwiki.com/wiki/Atomic_vector) is the list of characters which was used before [Unicode](https://home.unicode.org/) was introduced. + How many valid assignment characters are in `⎕AV`? + +1. When are digits `⎕D` not allowed in names? + +1. Why is `9109 9054` printed to the session when the expression is run? + +1. Another way to find valid naming characters is to filter `⎕AV` using `⎕NC`. + + `Names.ava←⎕AV/⍨0≤⎕NC⍪⎕AV ⍝ ⎕AVU Valid Assignment Characters` + How do `Names.va` and `Names.ava` differ? + +## Error Messages and Error Codes + +You will have executed expressions which have resulted in some error messages by now. In fact I am certain of it because some of the previous example expressions have been deliberately written containing errors. + +`LENGTH ERROR` `VALUE ERROR` `DOMAIN ERROR` `SYNTAX ERROR` + +If you are trapping specific errors, you might find it useful to assign error numbers to descriptive names. For example, `(INDEX RANK LENGTH VALUE)←3 4 5 6`. There are a number of similar techniques which can be used, some of which are described in the Dyalog webinar [Error Handling - Part 1](https://www.youtube.com/watch?v=tDK0AKXXRAk&list=PLA9gQgjzcpKHi3OtHPTq7Z2LTzG6ZwMY7&index=4&t=844s). + +1. Find the error codes of the four error messages given above. + + ??? Hint + Try: +
      1 2+2 3⍴⍳9   ⍝ Write some expression to generate the error
+		      ⎕←⎕EN        ⍝ Inspect the Error Number of the last error
+		      ⎕←⎕EM 4      ⍝ Inspect the Error Message for that number
+ + You can also search [using APLcart](https://aplcart.info/?q=%3A%3ADOMAIN#) + +1. Write a function `ERROR` which returns error numbers for in-built messages, given a simple character vector or nested vector of character vectors as argument. +
      ERROR 'RANK'
+4
+      ERROR 'LENGTH' 'DOMAIN'
+5 11
+ +!!! Note + Technically, `⎕EM` and `⎕EN` are **event message** and **event number** respectively. Most of the time you will be concerned about error events, but other types of events exist as well. + +## Suspend your disbelief +When an error occurs in a [multi-line function](../Ufns), the interpreter will pause execution and show the tracer. + +```APL + ∇ r←x Interlace y +[1] size←1 2×⍴x +[2] even←2×⍳(⍴x)[2] +[3] r[;even]←y +[4] r[;even]-1←x + ∇ +``` +--- +```APL + ⎕RL ← 73 + ⎕←forecast ← 10×?4 6⍴55 +``` + +
+
+ Fig 6.4 from Mastering Dyalog APL: Trace window in the RIDE +
+ Fig 6.4 from Mastering Dyalog APL: Trace window in the RIDE +
+
+
+ +The state of your program is frozen in time. You can now: + +- Inspect the values of variables +- Use `)SI`, `⎕SI` or `⎕XSI` to get a list of currently suspended functions +- Inspect or use the value of `⎕DM` `⎕DMX` to pass information about the error +- Edit the function to fix the issue + - Either **double click blank space** or use Shift+Enter while the text cursor is on a blank space to turn the tracer into an editor + - Edit the code to fix the issue + - Press Esc or **click the cross button ⮾** to save these changes and return to the tracer + - Continue execution by either: + - Press Enter to proceed one line at a time + - Click the [trace action](https://mastering.dyalog.com/First-Aid-Kit.html#trace-actions) button to continue execution normally + - Type `→⎕LC` (*go-to quad LC*) to continue execution normally + +!!! Version Warning + `⎕DMX` is not available in Dyalog version 12.1. + +Sometimes it is better to execute a function line-by-line rather than wait for an error to occur. To do this, with the text cursor on the function-calling expression, either press Ctrl+Enter or click **Action → Trace** from the IDE menu. + +Executing, stepping into or editing a function with Enter, Ctrl+Enter and Shift+Enter can all be done while tracing through a suspended function. + +## Can't be helped +If you cannot fix the error immediately and would just like to return to the session, use one of: + +- Press Esc to exit the current function +- Enter `→0` into the session to exit the current function and resume the calling line +- Type `→` (naked branch) into the session to clear the last call on the stack +- Enter `)RESET` or `)SIC` into the session to clear the entire execution stack and return to the session + +## Gotta :Trap 'em all +The keyword `:Trap ErrorNums` allows a function to specify behaviour if an error with a number in the scalar or vector `ErrorNums` occurs. It can be used in conjunction with `:Case N` to execute some code if the error number is `N` and `:Else` for the other errors. All errors are trapped with `:Trap 0`. + +For example: + +```APL + :Trap 3 4 5 6 11 + ⍝ Code to execute here + :Case 3 + ⎕←'Index Error' + :CaseList 5 6 11 + ⎕←'Length, Value or Domain Error' + :Else + ⎕←'Rank Error' + :EndTrap +``` + +## ⎕TRAP +Before `:Trap` and other similar control structures were introduced, `⎕TRAP` was the way to set error trapping behaviour. Nowadays, most people will use control structures for visual clarity in their new code. However, `⎕TRAP` is still used to maintain style in existing code bases, and for certain behaviours that are not possible with `:Trap`. + +For example, we can alter the behaviour when an error occurs in the session: +```APL + ⎕trap←5 'E' '''Silly!''' + 1 2 + 3 4 5 +``` +``` +Silly! +``` + +!!! Note + Some errors, such as `SYSTEM ERROR`, are not trappable. + +Not only does the trap execute custom code when a `LENGTH ERROR` occurs, but it also prevents the tracer from automatically opening when such an error occurs in a function. + +```APL + + ∇ r←l Lerror r +[1] l+r + ∇ + + 1 2 Lerror 3 4 5 +``` +``` +Silly! +``` + +However, those function calls are still suspended as can be seen using the state indicator: + +```APL + 1 2 Lerror 3 4 5 +``` +``` +Silly! +``` +--- +```APL + )si +``` +``` +#.Lerror[1]* +#.Lerror[1]* +``` + +The 2nd element of an item in `⎕TRAP` determines what happens to the call stack (this cannot be achieved with `:Trap`): + +**E**: execute expression named in the 3rd element + +**C**: cut back the stack to where `⎕TRAP` is localised and then execute expression named in the 3rd element + +```APL + ⎕TRAP←11 'C' '(↑⎕DM)' + Foo +``` +``` +DOMAIN ERROR +Foo[1] 1÷0 + ∧ +``` +--- +```APL + 0∊⍴⎕SI +``` +``` +1 +``` + +**N**: next - skip this error (no 3rd element) + +This is only meaningful if there is a trap 0 higher up the stack. It can be used for trapping every error except a specific one: + +```APL + ∇ Trap6 x;⎕TRAP +[1] ⍝ Handle all but value errors +[2] ⎕TRAP←(6 'N')(0 'E' '→ERROR') +[3] ⍎x ⍝ x contains a program to run +[4] →0 +[5] ERROR:'Uh oh!' + ∇ +``` + +**S**: stop - normal error handling (no 3rd element) + +This is typically used with a debugging switch: + +```APL +⎕TRAP←(1+DEBUG)⊃(0 'E' 'Bad')(0 'S') +``` + +!!! Warning + The **E** (execute immediately) action code is very tricky to use and best avoided. Prefer to use **C**, or even better, a `:Trap` control structure. + +Reset error trapping to default behaviour: + +```APL + ⎕TRAP⍴⍨←0 +``` + +In general, you assign a nested vector of 3-element vectors to `⎕TRAP`, each of the form `(numbers 'X' 'string')`. + +## Who needs to know? +Errors can occur due to a mistakenly written piece of code. However, even a perfectly valid function can trigger errors if run with input which is outside of its domain. + +!!! Note + It is best not to rely on error trapping for behaviour, in part because future extensions to the language may introduce valid behaviours in those cases. + +You should test inputs explicitly using APL primitives. It can be tempting to use `:Trap 0` to force alternative behaviour for unexpected inputs. However, trapping all errors should only really be done in order for your application to fail safely for the sake of end users. Best practice is to think carefully about the properties of valid inputs to your functions, and signal errors or otherwise indicate to the user that an invalid input has been attempted. + +## Pass it on +`⎕DMX` is a system object containing information about the last occuring error. Recent versions of Dyalog can display its contents in a human-readable JSON format: + +```APL + (⎕JSON⍠'Compact' 0)⎕DMX +``` + +!!! Warning "Version Warning" + The symbol `⍠` is not available in Classic Edition, and the Variant operator is instead represented by ⎕U2360. Note too that ⍠ and ⎕OPT are synonymous though only the latter is available in the Classic Edition. + Neither Variant nor `⎕OPT` are available in Dyalog version 12.1. + +!!! Note + Your code should not assume that the properties in `⎕DMX` will stay the same across versions of Dyalog. See [the online documentation](https://help.dyalog.com/latest/index.htm#Language/System%20Functions/dmx.htm) for more information about `⎕DMX`. + +The system function `⎕SIGNAL` can be used to generate errors. Errors may be signalled without a guilty expression, or custom error codes and messages may be signalled. + +Monadic `⎕SIGNAL` can be used to provide custom values for `⎕DMX`. + +```APL + ⎕SIGNAL⊂('EN' 666)('Message' 'The Devil''s Error')('Vendor' 'Satan') +``` + +Dyadic `⎕SIGNAL` can be used to conveniently set the event message and event number. Slightly confusingly, the `⎕EM` event message is different from the error message member of the **D**iagnostic **M**essage **Extended**: `⎕DMX.Message` . + +```APL + 'Yo!'⎕SIGNAL 42 + ⎕EM + ⎕DMX.Message +``` + +Error signalling can be used to provide custom error messages, as well as to prevent the application from suspending in the tracer, which can be confusing for end users of your application who do not know APL. You might prefer that user-facing functions trap and re-signal errors, whereas utilities intended for use by APLers in the session might be left to suspend on error. + +## Error number ranges +Event numbers 1-99 are generated by APL. + +Event numbers 1-999 can be generated by the user. + +Error 0 means "any error". + +Errors 1001-1008 are interrupts (e.g. break). + +Error 1000 means "any interrupt". + +## ⎕TRACE +Specify line numbers within a function or operator to have the results of expressions on those lines output to the session when executed. + +Attempts to set trace controls in a locked function or operator (see `⎕LOCK`) are ignored. + +## The stack +**The execution stack** (sometimes referred to as just **the stack**) is the accumulation of functions either suspended or currently mid-execution. It can be inspected using `)SI`, `⎕SI` and `⎕XSI`. If you attempt to run or re-run functions without having cleared the stack, then the stack simply builds up until the workspace is full. + +```text + ⎕VR'Foo' + ∇ Foo +[1] 1÷0 + ∇ + + Foo +DOMAIN ERROR: Divide by zero +Foo[1] 1÷0 + ∧ + + Foo +DOMAIN ERROR: Divide by zero +Foo[1] 1÷0 + ∧ + + )SI +#.Foo[1]* +#.Foo[1]* +``` + +There are a number of system variables to deal with functions on the stack: + + + + + + + + + + + + + + + + + + + + +
⎕SIThe names of functions on the stack
⎕LCThe line numbers at which each function is suspended
⎕NSIThe namespaces prior to the call as character vectors
⎕RSIThe namespaces prior to the call as scalar references
⎕XSIThe full namespace paths of functions on the stack
⎕STACKThe stack of functions and state descriptions
+ +To get the same diagnostic error messages printed to the session without building up the stack, you can set `⎕TRAP` to use a custom error reporting function: + +```APL + ∇ Error +[1] ⎕DMX.(OSError{⍵,2⌽(×≢⊃⍬⍴2⌽⍺,⊂'')/'") ("',⊃⍬⍴2⌽⊆⍺}Message{⍵,⍺,⍨': '/⍨×≢⍺}⊃⍬⍴DM,⊂'') +[2] ↑1↓⎕DMX.DM + ∇ +``` +--- +```APL + ⎕TRAP←0 'C' '#.Error' + Foo +``` +``` +DOMAIN ERROR: Divide by zero +Foo[1] 1÷0 + ∧ +``` +--- +```APL + )SI + +``` + +The long, awkward expression in `Error` above can be found [in APLcart](https://aplcart.info/?q=print%20error%20message#). + +## Problem set 12 + +### Help I'm Trapped +Here we will write a simple calculator program to divide two vector arguments. When the function fails it should return to the session and leave the stack empty, but the values of `⎕DM` and `⎕EN` should change. + +1. Write a program (a tradfn called `Divide`) which explicitly tests its input and signals an appropriate error for invalid arguments. + +1. Rewrite the program as a tradfn called `DivideQ` which uses `⎕TRAP` instead of testing its arguments. + +1. Rewrite the program as a tradfn called `DivideC` which uses `:Trap`. + +1. Rewrite the program as a dfn `DivideD` with error guards. + +Example output: + +```APL + 1 2 3 Divide ,5 +0.2 0.4 0.6 + 3 Divide ,4 +RANK ERROR: Must have both vector arguments + 3 Divide,4 + ∧ + 1 2 Divide 1 2 3 +LENGTH ERROR: Mismatched left and right argument shapes + 1 2 Divide 1 2 3 + ∧ + 1 2 Divide 1 0 +DOMAIN ERROR: Divide by zero + 1 2 Divide 1 0 + ∧ +``` + +### Prefix agreement operator +[**Leading axis agreement**](https://aplwiki.com/wiki/Leading_axis_agreement) is a proposed extension to scalar extension which will automatically apply dyadic functions between cells when the leading axes of two arrays match. + +```APL + 2 3 ×_L 2 3⍴⍳6 + 2 4 6 +12 15 18 +``` + +If the leading axis lengths do not match at all, then the operator will issue an error. Write a version of the prefix agreement operator `_L` which manually checks whether the argument shapes have a matching prefix, and signals a custom error otherwise. + +```APL + 2 3×_L 1 3⍴⍳6 +LEADING AXIS MISMATCH + 2 3×_L 1 3⍴⍳6 + ∧ + ⎕EN +5 +``` + +??? Hint + If you are not sure how to write the functionality of the leading axis operator, use the definition from the APL Wiki article: + +
{⍺ ⍺⍺⍤(-⍺⌊⍥(≢⍴)⍵)⊢⍵}
+ +??? Example "Answer" +
 \_L←{
+	    ⊃≠⌿↑⍴¨⍺ ⍵:'LEADING AXIS MISMATCH'⎕SIGNAL 5
+	    ⍺(⍺⍺ \_Rank\_(-⍺⌊\_O\_(≢⍴)⍵))⊢⍵
+	 }
+ +### Testing for types +Use the documentation and your own knowledge to find expressions to test for the following properties of arrays: + +1. Numeric arrays +1. Character arrays +1. Integers +1. Simple arrays (non-nested) +1. Uniformly nested arrays +1. Scalars, vectors and matrices +1. Singleton values +1. Namespace references +1. Namespace names as character arrays +1. [Symmetric matrices](https://en.wikipedia.org/wiki/Symmetric_matrix) + + +1. + + In general, you assign a nested vector of 3-element vectors to `⎕TRAP`, each of the form `(numbers 'X' 'string')`. + + In terms of its structure, what happens to the value of `⎕TRAP` if you only assign a single 3-element vector? + +### Can you fix it? +This scripted namespace defines a toy app to read a UTF-8 text file and convert its data to hexadecimal representation. + +```APL +:Namespace app + + file←'/tmp/file.txt' + + ∇ Main + Hex file + ∇ + + ∇ hex←Hex file;bytes;⎕TRAP + bytes←'UTF-8'∘⎕UCS¨⊃⎕NGET file 1 + hex←↑{,⍉3↑(⎕D,⎕A)[16 16⊤⍵]}¨bytes + ∇ + +:EndNamespace +``` + +The author of the function modifies it to exhibit certain error handling behaviours. Unfortunately, their code has bugs. Investigate the following scenarios and try to solve the issues. + +1. + + The author has set up error trapping. They are aware of a potential `FILE NAME ERROR`, but have also set up a global trap in case any unexpected errors occur. + + :Namespace app + + file←'/tmp/file.txt' + + ∇ Main;⎕TRAP + ⎕TRAP←0 'E' 'Report ⋄ →0' + Hex file + ∇ + + ∇ hex←Hex file;bytes + ⎕TRAP←22 'C' '→ERROR' + bytes←'UTF-8'∘⎕UCS¨⊃⎕NGET file 1 + hex←↑{,⍉3↑(⎕D,⎕A)[16 16⊤⍵]}¨bytes + →0 + + ERROR: + Report + ∇ + + ∇ Report + error←↑⎕DM + ⎕←'An error occurred. See app.error for more information.' + ∇ + + :EndNamespace + + Unfortunately, the function suspends with an unexpected `VALUE ERROR`. + + VALUE ERROR: Undefined name: ERROR + →ERROR + ∧ + + After modifying the code, the function should print to the session: + + app.Main + An error occurred. See app.error for more information. + + The variable `app.error` should be populated: + + ⎕←app.error + FILE NAME ERROR + Hex[2] bytes←'UTF-8'∘⎕UCS¨⊃⎕NGET file 1 + ∧ + + +1. + + Now that the file name error is handled, they want to test the application using a file. Paste the following into a text editor and save it somewhere. Update `app.file` to point to the correct location. + + sample text + + Running `app.Main` reveals either 1 or 2 more bugs: + + - Running the function now results in an `INDEX ERROR`. + - The global trap did not catch the `INDEX ERROR`. + + Fix the remaining bugs. The application should successfully convert the file now: + + app.Main + 73 61 6D 70 6C 65 20 74 65 78 74 + + +1. + + Finally, the author decides it would be more useful if `app.error` contained more information about the error, and also that the `Report` function should display this directly in the session as well. + + :Namespace app + + file←'/tmp/file.txt' + + ∇ Main;⎕TRAP + ⎕TRAP←0 'E' 'Report {⍵(⍎⍵)}¨⎕NL¯2 ⋄ →0' + Hex file + ∇ + + ∇ hex←Hex file;bytes + ⎕TRAP←22 'C' '→ERROR' + bytes←'UTF-8'∘⎕UCS¨⊃⎕NGET file 1 + hex←↑{,⍉3↑(⎕D,⎕A)[16 16⊤⍵]}¨bytes + →0 + + ERROR: + Report⊂'file' file + ∇ + + ∇ Report names_values + error←⊂↑⎕DM + error,←⊂↑names_values + ⎕←'An error occurred. Error information in app.error:' + ⎕←error + ∇ + + :EndNamespace + + 1. Turn `]box -fns=on` + 1. Reinstate the `FILE NAME ERROR` and run `app.Main` again. + + app.Main + An error occurred. Error information in app.error: + ┌───────────────────────────────────────┬────────────────────┐ + │FILE NAME ERROR │┌────┬─────────────┐│ + │Hex[2] bytes←'UTF-8'∘⎕UCS¨⊃⎕NGET file 1││file│/tmp/file.txt││ + │ ∧ │└────┴─────────────┘│ + └───────────────────────────────────────┴────────────────────┘ + + 1. Reinstate the `INDEX ERROR` and run `app.Main` again at least twice. + 1. What do you notice about `app.error`? + 1. Try to solve this issue. There is more than one valid solution. diff --git a/docs/Help.md b/docs/Help.md new file mode 100644 index 0000000..dde1983 --- /dev/null +++ b/docs/Help.md @@ -0,0 +1,42 @@ +# Getting Help +Following this course should give you at least an overview of all of the aspects of Dyalog which are needed to solve problems and build applications. By the end, hopefully you'll start to feel comfortable solving problems, reading and writing APL, and at least have an idea of where to look when you need to do some systems programming or interfacing with the outside world. + +To that end, here is a list of some of the resources available to you if you ever get stuck. + +## What does this thing do? +If you need help with a particular primitive or quad-name, the [Dyalog online help](https://help.dyalog.com/latest/) can answer *what does this do?*-style questions. Press `F1` in the session while highlighting a construct to go to its help page. + +```APL + ⍣ ⍝ Primitives + ⎕THIS ⍝ Quad-names + HTMLRenderer ⍝ Some keywords related to specific objects +``` +Many of the keywords which have documentation pages are the names of [GUI objects](http://help.dyalog.com/latest/#GUI/SummaryTables/GUIOverview.htm). + +It is also possible to set a custom URL to use for queries when the interpreter doesn't recognise something. In the IDE for Microsoft Windows, go to **Options → Configure → Help/DMX**. Tick "Use online help for non-Dyalog topics" and set the custom URL of your choice. For example, you can try using `https://aplcart.info/?q=%s`, so that F1 brings up the aplcart website search for that term. + +In the RIDE, F1 opens a browser window to the [Dyalog online documentation](https://help.dyalog.com/latest). + +The online help is a subset of the full materials available from the [Documentation Centre](https://docs.dyalog.com). + +!!! Warning "Version Information" + Documentation for previously released versions of Dyalog is still available online. + + - [Full documentation for Dyalog version 12.1](https://docs.dyalog.com/12.1/) + - [Online help system for 12.1](https://help.dyalog.com/12.1/) + - [Full documentation for Dyalog version 17.1](https://www.dyalog.com/documentation_171.htm). + - [Online help system for 17.1](https://help.dyalog.com/17.1/) + +## How do I do this? +This is a much more difficult thing to overcome. Sometimes you have an idea of what you want to achieve, but you either aren't sure what constructs are available to help you achieve it, or you aren't sure that the solution you've come up with is the best way to go about it. + +If you need help with *how to do something*, try searching in [APLcart](https://aplcart.info/), the searchable library of idiomatic expressions. + +## Has this been done? +We strongly recommend that you spend some time on a regular basis reading and exploring the existing APL media. As a language with a rich history, there have been a huge number of conferences, published papers and presentations where users and implementors discuss their activities and achievements. Some of these are listed on the [further reading](/Reading) page. + +## Talk to humans +- If you cannot find a solution on APLcart, please [ask on Stack Overflow](https://stackoverflow.com/questions/ask). There are a number of keen APLers who monitor this site and will eagerly answer any questions asked there. +- Introduce yourself in [the APL Orchard](https://chat.stackexchange.com/rooms/52405/the-apl-orchard) Stack Exchange chat room, where you can usually get same-day replies to your queries. To get permission to post messages, see [apl.wiki/APL_Orchard#Access](https://apl.wiki/APL_Orchard#Access). +- As well as Stack Overflow, the [Dyalog forums](https://forums.dyalog.com/) are full of interesting discussions and are quite active. +- [The APL Wiki](https://aplwiki.com/) has hundreds of articles about both the history of APL, as well as specific language features and usage examples. diff --git a/docs/Interfaces.md b/docs/Interfaces.md new file mode 100644 index 0000000..d27db50 --- /dev/null +++ b/docs/Interfaces.md @@ -0,0 +1,60 @@ +# External Interfaces +In an ideal world, we'd spend our entire lives blissfully in the warm comfort of the APL session. All of our data would magically appear and we would write perfect, beautiful algorithms to solve idealised problems. + +In the real world, we must interface with external systems. After all, the entire point of learning this tool is to use it to solve real world problems. + +## Name Association +Sufficiently knowledgeable programmers can interface directly between APL and a compiled library using `⎕NA`. Input and output data types must be explicitly declared. For more information see [the online documentation about ⎕NA](http://help.dyalog.com/latest/#Language/System%20Functions/na.htm). + +## APL as a Shared Library +It is also possible to bundle an APL application as a compiled native shared or static object (.dll, .dylib or .so) which exposes APL functions and makes them accessible via another programming language or application's [foreign function interface](https://en.wikipedia.org/wiki/Foreign_function_interface). + +Examples of usage and links to documentation are available on [github.com/Dyalog/NativeLib](https://github.com/Dyalog/NativeLib) + +## Py'n'APL +Start instances of Python from Dyalog, and start instances of Dyalog from Python. Leverage the convenience of Python's vast collection of libraries and combine it with the expressive power of APL. See [github.com/Dyalog/pynapl](https://github.com/Dyalog/pynapl) for more information. + +## RSConnect and RConnect +R is a very popular language with a large collection of statistical libraries. Two R interfaces exist for Dyalog: + +[RSconnect R interface for Dyalog](https://github.com/kimmolinna/rsconnect) using Rserve + +[RConnect R interface for Dyalog](https://docs.dyalog.com/latest/R%20Interface%20Guide.pdf) using rscproxy + +## .NET +Microsoft's .NET Framework contains a plethora of useful libraries for business applications. + +To enable reference to .NET namespaces, set `⎕USING`: +```APL + ⎕USING←'' + System.TimeZone.CurrentTimeZone.StandardName +GMT Standard Time +``` + +Set the system variable `⎕USING` in order to access names within .NET namespaces. +```APL + ⎕USING←'System' + TimeZone.CurrentTimeZone.StandardName +GMT Standard Time +``` + +In recent years, Microsoft have been developing a cross-platform equivalent called .NET Core (or .NET 5). This allows the same libraries to be used on Microsoft Windows, macOS and Linux. It must be installed separately and enabled by setting the [configuration parameter](http://help.dyalog.com/latest/#UserGuide/Installation%20and%20Configuration/Configuration%20Parameters.htm) `DYALOG_NETCORE=1`. + +## COM/OLE +Dyalog is able to directly control certain Microsoft applications using the [Component Object Model](https://en.wikipedia.org/wiki/Component_Object_Model). For examples, see: + +- [Dyalog Webinar: APL and Microsoft Excel](https://dyalog.tv/Webinar/?v=hs90SdUc9dE) +- [Document: Charting the APL/Excel waters](https://www.dyalog.com/uploads/conference/dyalog11/presentations/C05_using_excel_under_apl/officeauto11.pdf) +- [Chapter 9 of the Dyalog for Microsoft Windows Interfaces Guide](https://docs.dyalog.com/latest/Dyalog%20for%20Microsoft%20Windows%20Interface%20Guide.pdf#page=185). + +## ⎕NULL +The core APL language does not have a "null" value as such. While you might think that the empty numeric vector `⍬` could be considered a type of "null", it already has type information associated with it so it doesn't really work - it is more accurate to call it an *empty numeric vector*. In order to cooperate with the COM and .NET interfaces described above, Dyalog has a proper null value which can be invoked with `⎕NULL`. + +## Conga and HTTP +[Conga]() is the core TCP/IP framework for Dyalog. On top of this, there are several higher level utilities for various web-based applications. + +[HttpCommand](../Data/#downloading-data-from-the-internet) can be used to issue requests to web servers and retrieve data. + +[Jarvis](https://github.com/Dyalog/Jarvis) is a very convenient way to expose APL functions as either a JSON or RESTful web service. It can even serve a simple static web interface and is the web service component of [TryAPL](https://tryapl.org). + +[DUI](https://github.com/Dyalog/DUI/) (Dyalog User Interface) is a cross-platform GUI framework for building web-based front-ends in APL. It includes its own web server, so the same code can be used for a standalone desktop application, web app and website. There is an example site for its predecessor (identical in most ways, but without standalone desktop deployment) called [MiServer](https://miserver.dyalog.com). diff --git a/docs/Interpreter-internals.md b/docs/Interpreter-internals.md new file mode 100644 index 0000000..5e67bb6 --- /dev/null +++ b/docs/Interpreter-internals.md @@ -0,0 +1,320 @@ +# Interpreter Internals +Just some of the nitty-gritty under the covers. + +## Storage +Memory allocated to store an array needs space for: + +- Each element of the array (which could be a reference to another array) +- `8×≢⍴array` bytes for the shape (`4×` in 32-bit) +- 4 bytes for the type/rank + +For a reference, the object requires an 8-byte pointer, plus space for the contents of the object. + +## Data types +Internally, Dyalog represents data with the following types. As a program runs, occasionally the interpreter will squeeze arrays into the smallest data type that can represent a particular figure, which helps keep memory usage low and may allow the interpreter to use vectorised instructions for certain operations on certain data types. + +!!! Warning "Version Warning" + Some data types are only available in Dyalog Unicode Edition. + +### Character +``` + ⎕DR'APL' ⍝ 1-byte +80 + ⎕DR'配列' ⍝ 2-byte +160 + ⎕DR⎕←⎕UCS 128077 ⍝ 4-byte +👍 +320 +``` + +### Number +``` + ⎕DR 1 0 1 0 1 0 ⍝ 1 bit +11 + ⎕DR 42 ⍝ 1 byte +83 + ⎕DR 128 ⍝ 2 byte +163 + ⎕DR 2*15 ⍝ 4 byte +323 + ⎕DR 0J1 ⍝ Complex (2×8 byte double) +1289 +``` + +#### Floating-point representation +There are also 16-byte decimal floating point numbers available, but you need to enable them with `⎕FR`. + +``` + ⎕PP←34 + ○1 +3.141592653589793 + ⎕FR←645 ⍝ 64-bit float (default) + ○1 +3.141592653589793 + ⎕FR←1287 ⍝ 128-bit decimal + ○1 +3.141592653589793238462643383279503 +``` + +#### Comparison tolerance +APL systems prefer to act like traditional arithmetic where possible. However, the base-2 (binary) representation used by computers is unable to represent certain decimal numbers precisely. Therefore, floating point arithmetic voids certain mathematical properties: + +${{1}\over{3}} = 3 \times {{5}\over{9}} \div 5$ + +```APL + ⎕CT←1e¯14 ⍝ Default comparison tolerance + (1÷3)=3×(5÷9)÷5 +``` +``` +1 +``` +--- +```APL + ⎕CT←0 ⍝ No comparison tolerance + (1÷3)=3×(5÷9)÷5 +``` +``` +0 +``` +--- +```APL + ⎕FR←645 ⋄ ⎕CT←1E¯14 + {↑⍵(1=1+10*-⍵)}⍳16 +``` +``` +1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 +0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 +``` +--- +```APL + ⎕FR←1287 ⋄ ⎕←⎕DCT +``` +``` +1E¯28 +``` +--- +```APL + {↑⍵(1=1+10*-⍵)}⍳30 +``` +``` +1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 +``` + +For exact comparisons set `⎕CT` to `0`, but beware: + +```APL + 10=+/100⍴0.1 +``` +``` +1 +``` +--- +```APL + ⎕CT←0 + 10=+/100⍴0.1 +``` +``` +0 +``` +--- +```APL + 10-+/100⍴0.1 +``` +``` +1.953992523E¯14 +``` + +### Value types +If more than one name points to the same array value: +``` + a←b←1 2 3 4 +``` +then there is a reference count internally, and only one copy of the data is stored in memory. + +If one of those arrays is modified: +``` + b[2]←99 +``` +then a copy of the data is taken at that point so that other arrays are unaffected: +``` + a b +┌───────┬────────┐ +│1 2 3 4│1 99 3 4│ +└───────┴────────┘ +``` + +For a nested array, however, the elements are separate. +``` + a←b←(1 2 3)(4 5) +``` +if one of the elements is modified +``` + b[⊂2 1]←99 +``` +then the other elements remain shared between names. In this example, the `1 2 3` array remains shared. + +### Reference types +While APL arrays are pass-by-value, namespaces and other objects are pass-by-reference. + +``` + nsref←⎕NS⍬ + jsonref←⎕JSON'{}' + ⎕FIX':Class myclass' ':Endclass' + ⎕DR¨nsref jsonref myclass +326 326 326 +``` + +Although namespaces are pass-by-reference, the references themselves are still values: +``` + (ns1 ns2)←⎕NS¨2⍴⊂⍬ + (ns1 ns2).var←42 99 + a←ns1 + a.var +42 + a←ns2 + a.var +99 +``` + +## APL item hierarchy +This useful chart shows what operations are valid for different kinds of items. + +![APL item hierarchy](../img/APL_Citizens.png) + +## Configuration parameters +Many aspects of the interpreter environment can be modified before runtime using [**configuration parameters**](https://help.dyalog.com/latest/index.htm#UserGuide/Installation%20and%20Configuration/Configuration%20Parameters.htm). The values of configuration parameters are determined by a hierarchy of scope on the operating system. On Microsoft Windows, these are often registry settings at the base level. On Unix-like systems, they are environment variables. + +For example, we can set parameters on the command line in a batch file before starting Dyalog. We can even create custom parameters. + +*Save the following as a .bat file and run it on Windows* + +```text +@SET FOO=bar +@START "Dyalog" "C:\Program Files\Dyalog\Dyalog APL-64 18.0 Unicode\dyalog.exe" +``` + +See the value of a configuration parameter with `⎕NQ`: + +```APL + ⎕←2⎕NQ'.' 'GetEnvironment' 'FOO' +``` +``` +bar +``` + +You might find it useful to read the [Dyalog for Microsoft Windows Installation and Configuration Guide](http://docs.dyalog.com/17.1/Dyalog%20for%20Microsoft%20Windows%20Installation%20and%20Configuration%20Guide.pdf#%5B%7B%22num%22%3A22%2C%22gen%22%3A0%7D%2C%7B%22name%22%3A%22XYZ%22%7D%2C63%2C679.5%2C0%5D) and the [Dyalog for UNIX Installation and Configuration Guide](http://docs.dyalog.com/17.1/Dyalog%20for%20UNIX%20Installation%20and%20Configuration%20Guide.pdf#%5B%7B%22num%22%3A21%2C%22gen%22%3A0%7D%2C%7B%22name%22%3A%22XYZ%22%7D%2C63%2C541.5%2C0%5D). + +Recent versions of Dyalog support universal [configuration files](https://help.dyalog.com/latest/index.htm#UserGuide/Installation%20and%20Configuration/Configuration%20Files.htm) which work across all supported platforms. + +## What am I running? +Here are some useful code snippets for finding information about the currently running interpreter: + +What version of Dyalog am I running? + +```APL +'.'⎕WG'APLVersion' +``` + +For error reports, get the BuildID: + +```APL +⎕←2⎕NQ'.' 'GetBuildID' +``` + +Am I a Unicode interpreter? + +```APL +80=⎕DR' ' +``` + +Am I big endian? + +```APL +⍬⍴83 ⎕DR 256 +``` + +What is my word width? + +```APL +{z←⍵ ⋄ 2×⍬⍴⎕SIZE'z'} ⍬ +``` + +## Performance +This course is intended to teach not only the symbols, syntax and system interactions of Dyalog APL, but also to try and teach you *the APL way*. This is a combination of array-oriented problem solving and ability to combine primitives to solve all manner of problems using computers. + +There are some inherent benefits to APL, such as the fact that exploring with APL can often lead you to optimal solutions to particular types of problems. Not only this, but the terseness makes it very easy to experiment and play with different approaches to the same problem. + +Besides APL itself, however, there are particular techniques, considerations, and special optimisations within the Dyalog interpreter that you should be aware of in case you find a performance bottleneck in your application and are wondering how to solve it. + +### Flat array techniques +Nested arrays are a very convenient construct and can be used to write incredibly elegant expressions for certain operations. For example: + +```APL + ≢¨⊆⍨1 1 1 0 1 1 1 1 0 1 1 0 1 1 1 1 0 1 1 1 1 +3 4 2 4 4 +``` + +However, for long arguments this statement involves allocating many potentially disparate regions of memory and chasing pointers. Try to think of an approach which uses only flat arrays. + +??? Example "Answer" + One solution [from APLcart](https://aplcart.info/?q=lengths%20of%20groups%20of%201s#): + +
(0~⍨¯1-2-/∘⍸1,1,⍨~)
+ + Of course, for certain arguments simply having more functions can be a performance penalty. Compare `]runtime` of the two expressions with `short←1=?10⍴2` and `long←1=?1e6⍴2` + +#### Peppery code +One of the [**code smells**](https://en.wikipedia.org/wiki/Code_smell) in APL is large amounts of code to achieve something relatively simple. This is usually (but not always!) an indication that the problem can be thought of in a different way to achieve a more elegant and efficient solution. + +Another code smell is when a solution is littered with the each operator `F¨` . These are explicit looping operations and often suggest that the code can be re-written to take advantage of the implicit iteration and potential parallelisation of the core primitives acting on flat arrays. + +```APL + arg←?5 3⍴10 + + ]runtime -c "{⌊0.5+(+⌿÷≢)⍉⍵}arg" "{⌊0.5+(+/⍵)÷⊃⌽⍴⍵}arg" "{⌊0.5+¨(+/¨s)÷c←≢¨s←↓⍵}arg" +``` +``` + + {⌊0.5+(+⌿÷≢)⍉⍵}arg → 1.1E¯6 | 0% ⎕⎕⎕⎕⎕⎕⎕⎕⎕⎕⎕⎕⎕⎕⎕⎕⎕⎕⎕⎕⎕⎕⎕⎕⎕ + {⌊0.5+(+/⍵)÷⊃⌽⍴⍵}arg → 8.6E¯7 | -25% ⎕⎕⎕⎕⎕⎕⎕⎕⎕⎕⎕⎕⎕⎕⎕⎕⎕⎕⎕ + {⌊0.5+¨(+/¨s)÷c←≢¨s←↓⍵}arg → 1.8E¯6 | +60% ⎕⎕⎕⎕⎕⎕⎕⎕⎕⎕⎕⎕⎕⎕⎕⎕⎕⎕⎕⎕⎕⎕⎕⎕⎕⎕⎕⎕⎕⎕⎕⎕⎕⎕⎕⎕⎕⎕⎕⎕ +``` + +### Loop sometimes +Some types of algorithms really aren't amenable to parallelisation and array-oriented techniques. These are usually problems with heavy dependence on intermediate results. Sometimes they can be encoded in a custom scan or reduction, but the overall algorithm isn't able to take advantage of parallelisation that primitive scans and reductions can. + +Another consideration is that sometimes an elegant-looking solution in APL is quite inefficient. Take the prime number filter we saw early on: + +
Primes ← {⍸2=+⌿0=∘.|⍨⍳⍵}
+ +An alternative coding uses the multiplication table: + +
Primes ← {i~∘.×⍨i←1↓⍳⍵}
+ +Of course, the outer product `∘.F` indicates that the number of calculations to compute both of these solutions increases with the square of the input size. We say they have a computational complexity "*of order n squared*" or $O(n^2)$ in [big-O notation](https://en.wikipedia.org/wiki/Big_O_notation). This is a very inefficient way to find prime numbers. + +To see discussions around more efficient ways to compute prime numbers in APL, see [the dfns page on prime numbers](https://dfns.dyalog.com/n_pco.htm). + +Put simply, the fastest algorithm in general is the one which performs the fewest computations. Sometimes there are solutions in APL which use a relatively large amount of memory but are fast in time due to optimised primitives. However, sometimes the domain of the problem grows so large that even these solutions are outperformed by a scalar looping solution. When this is the case, if performance is very important for this part of your application, it can be a good idea to search for pre-existing high performance solutions, or to write the solution in a lower level language, and use `⎕NA` to integrate it with your APL code. + +1. Try to find an optimised expression which uses the rank operator `F⍤k`. +1. What is the computational complexity of a custom reduction `F/⍵`? +1. What is the computational complexity of a custom scan? +1. How do custom scans and reductions compare with primitive scans and reductions for `+ - × ÷`? + +### Idioms +APL idioms are short expressions to perform certain tasks. [APLcart](https://aplcart.info) is a comprehensive, searchable list of idioms. Some of these include slightly obscure but performant versions of particular tasks, especially those related to [partitioned functions](https://aplcart.info/?q=partitioned#). + +In Dyalog APL, there are also "idioms" which are specially recognised phrases, or combinations of characters, which are treated as individual tokens and executed with special code, rather than parsed symbol-by-symbol and executed function-at-a-time. These offer significant performance improvements for particular tasks, and are all listed: + +- [latest](https://docs.dyalog.com/latest/CheatSheet%20-%20Idioms.pdf) +- [17.1](https://docs.dyalog.com/17.1/CheatSheet%20-%20Idioms.pdf) +- [12.1](https://help.dyalog.com/12.1/index.html?page=html%2Fidiom%20list.htm) + +### Philosophical tangent +In an ideal world, programmers could focus on writing purely the "most readable" or "most maintainable" versions of their code. Or, in some sense, simply write "whatever feels right" and the interpreter or compiler could analyse the program and determine the optimal. This is part of what compilers hope to achieve. However, even in one the strongest attempts at this so far, Julia, they emphasise that you still need to learn to write "idiomatic Julia" code. This means understanding how the language works both in terms of semantics and which constructs can be written in a particular way to lead to high performance. + +In Dyalog APL, one example of this is in the primitive operators. + +The key operator `F⌸` applies its operand function `F` to grouped major cells of its argument array. An alternative approach is to have a function `{⊂⍵}⌸` perform the grouping first and then to apply using each `F¨{⊂⍵}⌸` . The end result of the computation is the same, but by having an operator, the interpreter implementors can use especially efficient special code for certain operand functions. diff --git a/docs/Keyboard Mnemonics.pdf b/docs/Keyboard Mnemonics.pdf new file mode 100644 index 0000000000000000000000000000000000000000..2467af3ff060ed685a195ac2f44af60208cecc75 GIT binary patch literal 105685 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 \_S\_←{⍺←⊢ ⋄ ⍺ (⍺⍺⎕U233A⍵⍵) ⍵} + 1↓¯1↓{+/⍵}\_S\_ 3⊢⍳10 + 6 9 12 15 18 21 24 27
+ +## Don't forget scan! +**Scan** `F\⍵` is another construct which is simple in a way that misleads you into thinking it is only used for very specific things. It is exactly a reduction `F/` on successive prefixes of `⍵`. The final value is `F/⍵`. + +```APL + +/⍳10 +55 + +\⍳10 +1 3 6 10 15 21 28 36 45 55 + + ⌈\2 0 3 ¯1 4 2 6 +2 2 3 3 4 4 6 +``` + +However, scan can be used in many scenarios that you might not expect. Scans are often used in high performance expressions of **partitioned-application** functions which nowadays can be implemented with partitioning primitives (`⍺⊂⍵` and `⍺⊆⍵`), nested arrays and the each operator `F¨`. + +For example, one [YouTube video comparing APL and Haskell](https://youtu.be/QtvvQ7MdwKY) demonstrates one of the big differences in the APL approach in contrast to other types of programming. + +```APL + 4 {1↓∊' '∘,¨⍺↑' '(≠⊆⊢)⍵} 'take the first four words' +``` +``` +take the first four +``` + +--- + +```APL + 4 {⍵⌿⍨⍺>+\' '=⍵} 'take the first four words' +``` +``` +take the first four +``` + +Despite both having types of function composition, Haskell and other functional programming languages tend to focus on the composition of those functions as the fundamental process to finding and refining solutions. In APL, we are usually most interested in the fundamental data transformation that is occuring, and using APL's inherently parallel, array-at-a-time primitives to achieve that transformation in a way that can tend towards simple and fast code. + +Between integer and boolean arguments alone there are more interesting constructs than can be covered well here. You can find more on this topic by going to the following links: + +- Watch the Dyalog webinar about [Boolean Scans and Reductions](https://www.youtube.com/watch?v=erv_1LxEByk&list=PLA9gQgjzcpKGwmgzlayqzS_z1ThDwFzl4&index=3) +- Experiment with the examples in an [interactive notebook on TryAPL](https://tryapl.org/?notebook=https%3A%2F%2Fgithub.com%2FDyalog%2Fdyalog-jupyter-notebooks%2Fblob%2Fmaster%2FBoolean+Scans+and+Reductions.ipynb) +- You can [view the static notebook online](https://nbviewer.jupyter.org/github/Dyalog/dyalog-jupyter-notebooks/blob/master/Boolean%20Scans%20and%20Reductions.ipynb) + + +## For and While +The traditional control structures such as *for loops*, *while loops* and *if statements* weren't introduced in Dyalog [until version 8.0 in 1996](https://aplwiki.com/wiki/Dyalog_APL#Versions). Usually, they are only used for program control on the outer levels, or if an algorithm explicitly requires that type of [scalar looping](#). + +The syntax is mentioned in the [section on user-defined functions](../Ufns/#marking-tests). + +!!! Hint "Peformance note" + When constructing loops, think about whether unnecessary computation is being performed. + + For example, + +
:While LikelyToBeFales
+	:AndIf ExpensiveTest
+ + is probably better than + +
:While LikelyToBeFales∧ExpensiveTest
+ + You will also often see: + +
:While PreCondition
+	:AndIf OnlyComputableIfPreCondition
+ +## Problem set 8 + +### Bell Numbers +A [Bell number](https://en.wikipedia.org/wiki/Bell_number) counts the possible partitions of a set. The nth Bell number $B_n$ counts the ways you can partition a set of $n$ elements. + +Here we will investigate 3 ways of computing Bell numbers. + +1. Brute force + + Write a function `BellBrute` which counts all of the unique partitions of length `⍵` by creating partitions as nested arrays. + + ??? Hint + Binary representations of decimal numbers can be used as partition vectors. + +1. Triangle scheme + + Implement the [triangle scheme](https://en.wikipedia.org/wiki/Bell_number#Triangle_scheme_for_calculations) for calculations. + +1. Recurrance relation of binomial coefficients + The Bell numbers satisfy a recurrence relation involving binomial coefficients: + + $B_{n+1} = \sum_{k=0}^{n}\binom{n}{k}B_k$ + + Implement `BellRecur` using this formula. + +### Four is Magic +[Rosetta Code](http://rosettacode.org/wiki/Four_is_magic) has the full problem description. + +Start with a number. Spell that number out in words, count the number of letters and say it all aloud. For example, start with 6, print `'Six is three'` and continue with the number 3. Once you reach 4, print `four is magic`. + +``` + FourMagic 11 +Eleven is six, six is three, three is five, five is four, four is magic. +``` + +### Hash counting string +This problem is from [week 102 of the Perl Weekly Challenge](https://theweeklychallenge.org/blog/perl-weekly-challenge-102/). + +Write a monadic function `HashCount` which takes a scalar integer argument and returns a simple character vector where: + +- the string consists only of digits 0-9 and octothorpes AKA hashes, ‘#’ +- there are no two consecutive hashes: ‘##’ does not appear in your string +- the last character is a hash +- the number immediately preceding each hash (if it exists) is the position of that hash in the string, with the position being counted up from 1 + +``` + HashCount 1 +# + HashCount 2 +2# + HashCount 3 +#3# + HashCount 10 +#3#5#7#10# + HashCount 14 +2#4#6#8#11#14# +``` + +### Backspace +Write a function `Backspace` which takes a simple numeric vector argument and treats `0`s like backspaces, removing successive numbers to their left unless none remain. + +``` + Backspace 1 2 0 +1 + Backspace 1 5 5 0 2 0 0 8 +1 8 +``` + +For an extra challenge, modify your function so that it can also accept a character vector where `\b` is treated as a single token and signifies a backspace character. \ No newline at end of file diff --git a/docs/Namespaces.md b/docs/Namespaces.md new file mode 100644 index 0000000..cdc7600 --- /dev/null +++ b/docs/Namespaces.md @@ -0,0 +1,375 @@ +# Namespaces and other objects +If you are familiar with **Object Oriented Programming** (**OOP**) concepts and have experience using them from another language, then Dyalog's classes and namespaces should hopefully feel quite straightforward to you. + +Two documents are worth looking at, whether or not you are familiar with OOP: + +- [Object Oriented Programming for APL Programmers](http://docs.dyalog.com/latest/Object%20Oriented%20Programming%20for%20APL%20Programmers.pdf) +- [A Quick Introduction to Object Oriented Programming for Impatient APL Programmers](http://docs.dyalog.com/latest/Object%20Oriented%20Programming%20for%20Impatient%20APL%20Programmers.pdf) + +If nested arrays are arrays inside arrays; **namespaces** are a bit like a workspace within a workspace. They are **objects** which contain collections of names, and these names can be listed as before, but using the dot `.` syntax from
object-oriented programming. + +```APL + )ns ns ⍝ Create an empty namespace called ns + ns.var←1 2 3 ⍝ Create a variable in ns called var + ns.fn←{⍺,⍵} ⍝ Create a function in ns called fn + ⎕nl-9 ⍝ List the names of objects in the current namespace +┌──┐ +│ns│ +└──┘ + ns.⎕nl-⍳9 ⍝ List all names in ns +┌──┬───┐ +│fn│var│ +└──┴───┘ + )cs ns ⍝ Change into ns + ⎕this.⎕nl-⍳9 ⍝ The current namespace is ⎕THIS +┌──┬───┐ +│fn│var│ +└──┴───┘ + #.⎕nl-⍳9 ⍝ The root namespace is # +┌──┐ +│ns│ +└──┘ +``` + +### Mutable objects +Variables are **pass-by-value**. This means that if one name is used to assign another name, changes to the first name are not reflected in the second name. + +```APL + var1←1 2 3 + var2←var1 ⍝ The value of var1 is assigned to var2 + var1←var1+6 ⍝ The value of var2 is changed + ⎕←var2 ⍝ var2 retains the previous value +1 2 3 +``` + +Namespaces are objects and are **pass-by-reference**. All names which are assigned a reference (or **pointer**) can be used to refer to the original object. + +```APL + )ns ns1 +#.ns1 + ns1.name←'Bob' + ns2←ns1 + ns2.name←'Steve' + ⎕←ns1.name +Steve +``` + +It is possible to + +!!! Note "Discussion" + 1. Should there be a difference between `(⎕NS⍬)(⎕NS⍬)` and `(2⍴⎕NS⍬)`? + 1. With "by value" semantics? + 1. With "by reference" semantics? + 1. What properties should two namespaces have in order to compare equal? Which of the following scenarios would be faster? + - Using "by value" semantics? + - **By reference:** when they originate from the same call to `⎕NS`? + 1. Can you find a way to achieve "by value" semantics when using namespaces? + +??? Example "Discussion notes" + 1. Should there be a difference between `(⎕NS⍬)(⎕NS⍬)` and `(2⍴⎕NS⍬)`? + 1. No difference in this case, there are just empty namespaces: `(2⍴⎕NS⍬)≡(⎕NS⍬)(⎕NS⍬)` + 1. Yes. In `(⎕NS⍬)(⎕NS⍬)` we create two entities. In `(2⍴⎕NS⍬)` we create only one. + 1. What properties should two namespaces have in order to compare equal? Which of the following scenarios would be faster? + 1. **By value**: when the two namespace have the exact same content. This is slow as it requires recursively inspecting each namespace for its contents and doing comparisons on every member. + 1. **By reference**: When the two namespaces originate from the same call to `⎕NS`. This is fast as it requires only the comparison of two pointers. + 1. **Clone** (or **make a deep copy of**) a namespace +
      ns1←⎕NS⍬
+	      ns1.vec←1 2 3
+	      ns3←⎕NS ns1
+	      ns3.vec[2]←10   ⍝ Only the new copy is changed
+	      ]disp ns1.vec ns3.vec
+	┌→────┬──────┐
+	│7 8 9│7 10 9│
+	└~───→┴~────→┘
+ +## Dyadic execute `⍎` +Namespaces can be used as a simple dictionary structure. + +```APL + value ← dictionary.name ⍝ Get value + dictionary.name ← value ⍝ Set value +``` + +But how do we do this when the name can vary? Use variables to store the name. + +```APL + ns←⎕NS⍬ + name←'foo' + + ns⍎name,'←1 2 3' + 10×ns.foo +``` +``` +10 20 30 +``` + +!!! Warning + **Beware:** `⍎` is potentially dangerous: + +
      ns←⎕NS⍬
+	      name←'⎕OFF⋄'   ⍝ !!!
+	      value←1 2 3
+	      ns {⍺.{⍎⍺,'←⍵'}/⍵} name value
+ + In production, **validate your arguments**. + +## Modifying namespaces +In some applications, it is useful to keep a namespace as an object that holds the state of something. + +It is reasonable in this case to write a tradfn that uses a namespace reference as both its argument and result. While tradfns can have the side effect of modifying a namespace, we strongly recommend that functions take arguments and return results anyway. + +``` + ∇ nsref ← rate Modify nsref + nsref.var +← rate + ∇ +``` + +## Code organisation +Having modular code organisation is a very sensible idea. However, it is a recent invention relative to APL. In a newer application, it is not hard to imagine a `utils` namespace, a `maths` namespace, an `interface` namespace and so on. In older applications, such compartmentalisation is often achieved using a naming convention. For example: + +```APL + ⎕NL 3 +displayINPUT +displaySHOW +mathsAVG +mathsDET +mathsSTDEV +utilLINES +utilSPLIT +``` + +This type of code organisation is known as a **flat workspace structure**. + +## Names and references +In Dyalog there are both *named* and *unnamed* namespaces. Considering our use of the word "name" to refer to a token in the workspace, beginning with a letter, that refers to an array or function or operator, this is certainly a little confusing. + +When creating or modifying a namespace, we can assign the namespace to a name which is a namespace reference. + +``` + nsref ← ⎕NS⍬ + nsref.var ← 1 2 3 + ⎕←nsref +``` + +However, we can also use *dyadic* `⎕NS` to give the namespace a name. This name also becomes the namespace's default [display form](http://help.dyalog.com/latest/#Language/System Functions/df.htm). The default display form of an unnamed namespace is `[Namespace]`. + +If we assign a reference at the same time, we now have a two ways to refer to the namespace. However, notice that the namespace's name (shown by the display form) stays the same throughout as we are referring to the same namespace object. + +``` + nsref ← 'nsname'⎕NS⍬ ⍝ Assigning to the reference is optional + ⎕←nsref ⋄ ⎕←nsname + nsref2 ← nsname + ⎕←nsref2 +``` + +## Display form +The [**display form**](http://help.dyalog.com/latest/#Language/System Functions/df.htm) of an APL array is what is displayed when you execute an expression to display it: +```APL + x ← 1 2 3 + x ⍝ The display form of x (depending on ]box settings) +1 2 3 + ⎕←x ⍝ The display form of x (depending on ]box settings) +1 2 3 +``` + +Namespaces have a default display form. +The display form can be altered with ⎕DF: +```APL + abc.⎕DF '#.abc' ⋄ abc +#.abc + def.⎕DF 'Hello' ⋄ def +Hello + (abc def).⎕DF ⎕NULL ⋄ abc def ⍝ reset to default + #.[Namespace] #.def +``` + +## Scripted namespaces +Store the source namespace as a single piece of text: +```APL + )ed ⍟ns ⍝ equivalent to '⍟'⎕ED'ns' +``` +or +```APL + ⎕FIX ':Namespace ns' 'var←123' ':EndNamespace' + ns.var +123 + ⎕SRC ns + :Namespace ns var←123 :EndNamespace +``` + +!!!Note + Every time we ”fix”, the namespace is reset per the script. This means that `ns.var←456` would become `123` since the definition `var←123` is found in the script. + +```APL + + ns.var←456 + ⎕SRC ns + :Namespace ns var←123 :EndNamespace + ns.var +456 + ⎕FIX ⎕SRC ns ⍝ similar to editing and fixing + ns.var +123 + +``` + +The table below compares some methods for a namespace in the workspace versus a namespace script with text source. + +| Display Form | Script | +|---|---| +| Set: `⍵.⎕DF` | Set: `⎕FIX source` | +| Get: `⍕⍵` | Get: `⎕SRC ⍵` | +| Reset: `⍵.⎕DF ⎕NULL` | Reset: `⎕FIX ⎕SRC ⍵` | + +### :Require +It is possible to have a script depend on other scripts. To do so, use the [**:require**](https://help.dyalog.com/latest/index.htm#Language/Object%20Oriented%20Programming/Including%20Script%20Files.htm) keyword. + +## Problem set 9 +1. Are namespaces created with `)NS` scripted or unscripted? +1. Use `⎕FIX` to create an unnamed, scripted namespace + + What happens if you try to edit this script using the Dyalog editor? + +1. Request handler + 1. Create a namespace called `req` containing + - a variable `status` with the value `200` + - a method `Method` which is the function `{4+2×⍵}` + 1. Within the `req` namespace, apply `Method` to `status` and store the result in `status` +1. Write a function `Into` that copies a workspace into a namespace +
      dfns←⎕NS⍬
+      'dfns.dws' Into dfns
+      dfns.disp dfns.morse 'SOS'
+┌───┬───┬───┐
+│...│---│...│
+└───┴───┴───┘
+ + ??? Hint + See the [documentation for `⎕NS`](https://help.dyalog.com/latest/index.htm#Language/System%20Functions/ns.htm). + +1. Write a function that swaps the values of two variables, the names of which are given as a 2-element nested vector of character vectors `⍺`. +
      ns←⎕NS⍬
+      ns.(aa bb)←10 20
+      ns your_function 'aa' 'bb'
+      ns.(aa bb)
+20 10
+ +1. Write an expression that swaps the values of the variables named `x` in the namespaces `ns1` and `ns2` . +
      ns1←⎕NS⍬ ⋄ ns2←⎕NS⍬
+      ns1.x←10 ⋄ ns2.x←20
+      ns1.y←30 ⋄ ns2.y←40
+      your_expression
+      ns1.x ns1.y ns2.x ns2.y
+20 30 10 40
+ + +1. Write a function ScalarRef that returns a scalar Boolean value indicating whether its argument is a scalar namespace. +
      ns←⎕NS⍬ ⋄ ns.a←10
+      ]disp ScalarRef¨ ns.a 'abc' (ns ns) ns (⎕ns⍬) 42
+0 0 0 1 1 0
+ + Use one or more of these scalar namespace properties: + + - Name Class (⎕NC) is 9 (ref; non-scalar arrays and non-nss are 2) + - Data Representation (⎕DR) is 326 (pointer) + - Depth (≡) is 0 (simple scalar) + - Allows dot syntax (ns.name) + + ??? Example "Answers" +
ScalarRef←(0=≡)∧(326=⎕DR)
+		ScalarRef←{9=⊃⎕NC'⍵'}
+		ScalarRef←{9=⊃⎕NC'⍵'}
+ + +1. Write a function RefMask that returns an array of the same structure as its argument, but with bits indicating the namespace references. + +
      ]disp RefMask (⊂⊂⊂⊂1 2 ns) 3 ns (2 2⍴'abc',⎕NS⍬)
+┌─────────────┬─┬─┬───┐
+│┌───────────┐│0│1│0 0│
+││┌─────────┐││ │ │0 1│
+│││┌───────┐│││ │ │   │
+││││┌─────┐││││ │ │   │
+│││││0 0 1│││││ │ │   │
+││││└─────┘││││ │ │   │
+│││└───────┘│││ │ │   │
+││└─────────┘││ │ │   │
+│└───────────┘│ │ │   │
+└─────────────┴─┴─┴───┘
+ + ??? Example "Answers" +
RefMask←{0=≡⍵:ScalarRef ⍵ ⋄ ∇¨⍵} 
+		RefMask←{b⊣(∊b)←ScalarRef¨∊b←⍵}
+ +1. Write a function `Fetch` which takes namespace reference as left argument and a nested vector of character vector keys as right argument and returns the corresponding values from the namespace. + +1. Write a function `IsRoot` +
      FindRoot ⎕SE.Dyalog.Utils
+⎕SE
+      FindRoot #
+\#
+      FindRoot ⎕NS⍬
+\#
+ + ??? Example "Answer" + `FindRoot←{⍵.##}⍣=` + +1. What are our roots? + Write a function FindRoots that takes an arbitrary array of namespaces and finds the root for each namespace. + +
      Line ⎕SE.Dyalog.Utils
+ ⎕SE  ⎕SE.Dyalog  ⎕SE.Dyalog.Utils 
+
+      Line ⎕SE.cbbot.bandsb2.sb.io
+ ⎕SE  ⎕SE.cbbot  ⎕SE.cbbot.bandsb2  ⎕SE.cbbot.bandsb2.sb  ⎕SE.cbbot.bandsb2.sb.io
+ + ??? Example "Answers" + `Line ← {⍺←⍬ ⋄ ⍵≡p←⍵.##:⍵,⍺ ⋄ p∇⍨⍵,⍺} ` + `Line ← {1↓r⊣{r,⍨←⍵.##}⍣≡r←⍵} ` + + +1. Where are my children? + Write a function that lists all the children of a given namespace. + + ??? Hint + Note: `⎕NL` is Name List, not Children List + Plan: You'll have to crawl through the entire workspace + Think: How could namespaces still be out of reach? + + ??? Example "Answer" + + This answer demonstrates how complex attempting to do these types of tasks can become. Even the long function below does not cover every single edge case. You should take care to design your application so that you do not rely on these properties for behvaiour. If you find yourself needing to do these types of things to make your application work, then you might want to reconsider your approach. + +
∇ children←{arg}ListChildren target;args;next;parents;visited
+			:If 0=⎕NC'arg' ⋄ arg←(# ⎕SE target)(0⍴#)(0⍴#) ⋄ :EndIf
+			(parents children visited)←arg
+			next←∪∊parents.(⍎¨'##' '⎕THIS',⎕NL ¯9)⍝ visit all reachable ns
+			next~←visited                         ⍝ excepted visited ones
+			:If 0∊⍴next ⋄ :Return ⋄ :EndIf        ⍝ (0⍴#).## is NONCE ERROR
+			children∪←(target=next.##)/next       ⍝ append children of target
+			visited,←next                         ⍝ no next has been visited
+			:If 0∊⍴next ⋄ :Return ⋄ :EndIf        ⍝ F¨0⍴# is NONCE ERROR
+			args←next children visited
+			children∪←args ListChildren target    ⍝ recur on unvisited ns
+		⍝ TO-DO: refs in arrays, derived functions, locals in threads, fields in OO, …
+		∇
diff --git a/docs/Operators.md b/docs/Operators.md new file mode 100644 index 0000000..8a504f1 --- /dev/null +++ b/docs/Operators.md @@ -0,0 +1,348 @@ +# Operators + +## About +Dyalog APL is not a functional programming language, but those familiar with functional languages will recognise APL's operators as [higher-order functions](https://en.wikipedia.org/wiki/Higher-order_function). Operators in Dyalog can be: + +- monadic (take a single left operand as in `F/`) +- dyadic (take a left and a right operand as in `F⍤k`) + +but they cannot be ambivalent. However, the functions derived from operators can be monadic, dyadic or ambivalent in terms of arguments. + +Abmivalent dfns usually have a default left argument (`⍺←default`) and ambivalent tradfns test if their left argument exists (`0=⎕NC'left_arg'`). + +## Primitive +We have already used a few primitive operators, but there is [a complete summary of primitive operators](http://help.dyalog.com/latest/#Language/Primitive%20Operators/Operators%20Summarised.htm) in the online documentation. + +### Quick guide +For some commonly used operators + +|Operator|Calling syntax|Used for| +|---|---|---| +|Reduce|`F/` `F⌿`|Accumulation| +|N-wise reduce|`nF/` `nF⌿`|Windowed-reduction +|Scan|`F⍀`|Accumulation with intermediate results| +|Each|`F¨`|Looping / element-wise application over non-simple scalars| +|Rank|`F⍤k`|Looping / pair-wise application over cells| +|Power|`F⍣n` `F⍣G`|Iteration| +|Key|`F⌸`|Grouping| + +### The Inner Product +Many people who have studied mathematics are familiar with one kind of inner product: matrix multiplication. + +```APL + (3 3⍴3 6 5 2)+.×3 3⍴1 0 ¯1 +``` + +For two vectors: + +```APL + 1 3 6((+/×)≡+.×)1 0 ¯1 +``` + +The generalisation to any two functions leads to some neat encodings: + +```APL + 'abbcde'+.='cbccfe' ⍝ How many equal? + 1 3 4 5 2+.>0 3 3 6 3 ⍝ How many greater than? +``` + +As a particularly interesting example, the **transitive closure** of a [**connectivity matrix**](https://transportgeography.org/contents/methods/graph-theory-definition-properties/connectivity-matrix/) shows which nodes can reach which other nodes in a graph. + +```APL + cm←5 5⍴1 0 0 1 0 0 0 0 0 + (∨.∧⍨∨⊢)⍣≡cm +``` + +## Traditional +Just like [their function counterparts](Ufns/#traditional-functions), traditional operators or [**tradops**](https://aplwiki.com/wiki/Defined_function_(traditional)#Operators) have a definition syntax which reflects their calling syntax: + +```APL + ⎕VR'TradOp' + ∇ {result}←{left}(LF TradOp RF)right +[1] ⍝ Dyadic operator which returns an ambivalent function +[2] :If 0=⎕NC'left' +[3] result←LF RF right +[4] :Else +[5] result←LF left RF right +[6] :EndIf + ∇ +``` +--- +```APL + 3 (÷ TradOp +) 5 ⍝ Shy results + ⎕←3 (÷ TradOp +) 5 ⍝ The result +``` + +## Dop +**Dops** can be named or anonymous. They are just like dfns, except `⍺⍺` refers to its left operand and, if dyadic, `⍵⍵` refers to its right operand. For recursion, double-del `∇∇` is used to refer to the operator itself (and therefore must be used with operands to become a function when called), whereas a single del `∇` is used to refer to the derived function. + +## Quirks of primitive operators + +### Reduce and replicate +Reduce and replicate are both represented by *forward-slash* `/` (and *forward-slash-bar* `⌿` for their first-axis equivalents). Operators bind tightly (see [the binding table in the online documentation](https://help.dyalog.com/latest/index.htm#Language/Introduction/Binding%20Strength.htm)) to function operands, so a forward-slash in a [function train](https://aplwiki.com/wiki/Tacit_programming#Trains) will be interpreted as reduce. To force it to be the function replicate, use **atop** and **right-tack**. + +```APL +(2∘|⊢⍤/⊢)⍳10 +``` + +Of course this is subjective, but sometimes even simple functions look nicer as dfns: + +``` +{⍵⌿⍨2|⍵}⍳10 +``` + +### Primitive dyadic operators +For no particular reason other than a technical limitation, dyadic primitive operators cannot be assigned to names. This is not a very useful thing to do in any case, but if you try this and find it does not work, just know that it is not supposed to work. + +If you must do this, the workaround is to wrap the operator in a simple dop. For example, `_Rank_←{⍺←⊢ ⋄ ⍺ (⍺⍺⍤⍵⍵) ⍵}`. + +## Problem set 11 + +### Filter +The `_Filter` operator returns only scalars of `⍵` which satisfy a predicate `⍺⍺`. That is, `⍵` is part of the result where `1=⍺⍺ ⍵`. Write the `_Filter` operator as a *dop*. + +```APL + 2∘|_Filter ⍳20 ⍝ Odd numbers +1 3 5 7 9 11 13 15 17 19 + {(⊢=⌊)0.5*⍨⍵}_Filter ⍳100 ⍝ Square numbers +1 4 9 16 25 36 49 64 81 100 +``` + +### Apply + +The `_Apply_` operator will return its argument array `⍵`, but with its right operand function `⍵⍵` applied to elements for which `1=⍺⍺ ⍵`. + +```APL + 3+_Apply_ 2∘|⊢⍳10 +1 5 3 4 5 6 7 8 9 10 +``` + +1. + 1. Which primitive operator behaves like this? + 1. What can that primitive operator do which is missing from the description of `_Apply_`? +1. Implement a simple version of `_Apply_` without using that primitive operator. + +### Numerical integration +This problem is from Phase 2 of the 2019 [APL Problem Solving Competition](https://www.dyalog.com/student-competition.htm). + +The definite integral of a real valued function can be interpreted as the area under its graph over some interval (unless the function is negative or the endpoints are flipped but let's not get into that). + +
+
+ The same integral (left) approximated using the trapezoid rule (middle) and Simpson's rule (right). Red is overestimate and purple is underestimate. +
+ The same integral (left) approximated using the trapezoid rule (middle) and Simpson's rule (right). Red is overestimate and purple is underestimate. +
+
+
+ +Contrary to what introductory courses in calculus might lead you to believe, symbolic integration is not in general feasible. The function you want to integrate might not have an antiderivative in closed form (expressed in terms of “standard” mathematical functions; and even if it does, it might be too hard to find), or the function itself might not be given in closed form, but rather as the result of some measurement, simulation, or something similar. In such cases, numerical methods must be employed. There are several such methods, three of which we will implement in this problem set as APL user-defined operators. + +#### Trapezoid Rule +In the trapezoid rule, the integral of a function $f$ over an interval $[a,b]$ is estimated by dividing $[a,b]$ into $n$ sub-intervals of size $\Delta x=(b-a)/n$, and approximating $f$ by a straight line within each (see the figure above). This means that $f$ only needs to be evaluated in the $n+1$ points ${x_i}=a+i\Delta x$. Putting it all together we get: + +${T_n}={{\Delta x}\over{2}}(f(x_0)+2f(x_1)+2f(x_2)+\cdots+2f(x_{n-1})+f(x_n))$ + +Write an APL operator, `_Trapezoid`, that: + +- takes a left operand which is a scalar function. +- takes a positive integer left argument which is the number of subintervals. +- takes a 2-element numeric vector right argument which represents an interval $[a,b]$ where $aI**|$1$| +|**V**|$5$| +|**X**|$10$| +|**L**|$50$| +|**C**|$100$| +|**D**|$500$| +|**M**|$1000$| + +Numbers are formed by combining symbols together and adding the values. For example, **MMVI** is $1000 + 1000 + 5 + 1 = 2006$. Generally, symbols are placed in order of value, starting with the largest values. When smaller values precede larger values, the smaller values are subtracted from the larger values, and the result is added to the total. For example **MCMXLIV** is $1000 + (1000 − 100) + (50 − 10) + (5 − 1) = 1944$. There has never been a universally accepted set of rules for Roman numerals. Because of this lack of standardization, there may be multiple ways of representing the same number in Roman numerals. Despite the lack of standardization, an additional set of rules has been frequently applied for the last few hundred years. + +- The symbols **I**, **X**, **C** and **M** can be repeated three times in succession, but no more, unless the third and fourth are separated by a smaller value, as in **XXXIX**. **D**, **L** and **V** can never be repeated. +- **I** can be subtracted from **V** and **X** only. **X** can be subtracted from **L** and **C** only. **C** can be subtracted from **D** and **M** only. **V**, **L** and **D** can never be subtracted. +- Only one small-value symbol may be subtracted from any large-value symbol. +- A number written in Arabic numerals can be broken into digits. For example, 1903 is composed of $1$, $9$, $0$, and $3$. To write the Roman numeral, each of the non-zero digits should be treated separately. In the above example, 1000=**CM** and $3$ is **III**. Therefore, $1903$ is **MCMIII**. + +Using this additional set of rules, there is only one possible Roman numeral for any given number. In addition, for this problem, we will add the following rules: + +- $0$ (zero) should be represented by an empty character vector +- Negative numbers should be preceded by an APL high minus (`¯`) +- Non-integers should be rounded up (0.5 and above rounds up) +- Larger numbers simply have a number of leading M's. For example, $5005$ is represented as **MMMMMV** + +**The `_Roman` Operator** + +Write a monadic operator `_Roman` that takes a function left operand and derived a function which is able to do computation on Roman numerals. + +```APL + 'III'+_Roman'II' +V + + ⍳_Roman'X' +┌─┬──┬───┬──┬─┬──┬───┬────┬──┬─┐ +│I│II│III│IV│V│VI│VII│VIII│IX│X│ +└─┴──┴───┴──┴─┴──┴───┴────┴──┴─┘ + + +/_Roman⍳_Roman'X' +LV +``` + +Don't worry about "mixed" types. We don't expect this to work: +```APL + 'II' 'III'⍴_Roman⍳6 +``` + +But the following should: +```APL + 'II' 'III'⍴_Roman⍳_Roman'VI' +┌──┬──┬───┐ +│I │II│III│ +├──┼──┼───┤ +│IV│V │VI │ +└──┴──┴───┘ +``` + +Use `]Display` to get the full description of the structure. Single Roman symbols are simple character scalars, whereas compound numbers are enclosed character vectors. + +```APL + ]Display 2 3⍴_Roman⍳_Roman'VI' +┌→────────────────┐ +↓ ┌→─┐ ┌→──┐ │ +│ I │II│ │III│ │ +│ - └──┘ └───┘ │ +│ ┌→─┐ ┌→─┐ │ +│ │IV│ V │VI│ │ +│ └──┘ - └──┘ │ +└∊────────────────┘ +``` + +### Under Over +The **over** operator `⍺⍺⍥⍵⍵` was introduced in Dyalog in version 18.0. It can be thought of as applying the left operand function `⍺⍺` to arguments which have been pre-processed using the right operand function `⍵⍵`. + +**Example:** + +```APL + 1 3 2 +_O_× 5 0 ¯5 ⍝ Sum of signs + 'some text'≡_O_ 0∘(819⌶)'SOME TEXT' ⍝ Case-insensitive match +``` + +The **under** (or *dual*) operator `⍺⍺⍢⍵⍵` has not been implemented in Dyalog. However, it can be partially modelled. It is the same as over `⍥`, except that the inverse of `⍵⍵` is applied to the result. + +Write the operator `_U_` to model the behaviour of under. + +**Example:** +```APL + 3 +_U_⍟ 5 ⍝ Multiplication is addition under logarithm +15 + 3 ×_U_* 5 ⍝ Plus is times under power +8 + 'C'+_U_(⎕A∘⍳)'D' ⍝ 7=3+4 +G +``` + +??? Hint + Use the *power operator* `F⍣n` to derive an inverse function. + +### Key without `⌸` +The **key** operator groups major cells of `⍵` according to keys `⍺`, where `⍺≡⍥≢⍵`. When called monadically, the derived function using key will use `⍵` itself as the keys. Write the operator `_Key` which works like `⌸` but does not use the `⌸` glyph. + +**Example:** + +```APL + {⍺,≢⍵}_Key 'mississippi' +``` +``` +m 1 +i 4 +s 4 +p 2 +``` +--- +```APL + {⍺(≢⍵)}_Key 5 2⍴1 0 0 +``` +``` +┌───┬─┐ +│1 0│2│ +├───┼─┤ +│0 1│2│ +├───┼─┤ +│0 0│1│ +└───┴─┘ +``` +--- +```APL + 'aabcc'{⊂⍵}_Key 5 2⍴1 0 0 +``` +``` +┌───┬───┬───┐ +│1 0│0 0│1 0│ +│0 1│ │0 1│ +└───┴───┴───┘ +``` \ No newline at end of file diff --git a/docs/Outer-product.md b/docs/Outer-product.md index 4863274..50753f7 100644 --- a/docs/Outer-product.md +++ b/docs/Outer-product.md @@ -51,6 +51,9 @@ joined uptext vectors │3 1│3 2│3 3│ └───┴───┴───┘ +!!! Warning "Version Warning" + The `]box` user command is not available in Dyalog version 12.1, but putting `]disp` before an expression achieves a similar effect. + ### Reduce down Reduce-first `F⌿` on a matrix will reduce down columns instead of along rows. diff --git a/docs/Quad names.md b/docs/Quad names.md new file mode 100644 index 0000000..568ea56 --- /dev/null +++ b/docs/Quad names.md @@ -0,0 +1,237 @@ +# Quad names + +## Overview +There is a [vendor-agnostic](https://aplwiki.com/wiki/List_of_language_developers) article about [quad-names on the APL Wiki](https://aplwiki.com/wiki/Quad_name). This page is an overview focusing on application development with Dyalog. + +See the Dyalog online documentation for: + +- [a complete list of categorised system functions with descriptions](http://help.dyalog.com/18.0/#Language/System%20Functions/Summary%20Tables/System%20Functions%20Categorised.htm) +- [a complete list of system variables with descriptions](http://help.dyalog.com/18.0/#Language/System%20Functions/Summary%20Tables/System%20Variables.htm) +- [a complete list of system functions and variables](http://help.dyalog.com/latest/#Language/System%20Functions/Summary%20Tables/System%20Functions%20and%20Variables%20ColWise.htm) + +## System variables +The Dyalog online documentation has [a complete list of system variables](http://help.dyalog.com/latest/#Language/System%20Functions/Summary%20Tables/System%20Variables.htm). + +System variables describe the state of the system. +Some variables are static and cannot change. +Some variables are dynamic and can change without direct user intervention. +The others can be changed by the user. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
⎕A⎕DM⎕DMX⎕PATH⎕SM
⎕TRAP⎕AN⎕EN⎕PP⎕STACK
⎕TS⎕AV⎕FR⎕PW⎕TC
⎕USING⎕AVU⎕IO⎕RL⎕THIS
⎕WA⎕CT⎕LC⎕RSI⎕TID
⎕WSID⎕D⎕LX⎕RTL⎕TNAME
⎕WX⎕DCT⎕ML⎕SE⎕TNUMS
⎕XSI⎕DIV⎕NULL⎕SI⎕TPOOL
+ +Of course, the majority of the time you can refer to the [help system](../Help/#what-does-this-thing-do) to remind yourself exactly how each of these works. There are many system variables built up over the decades, many of which are kept mostly for backwards compatibility. + +In the following table, the system variables you are most likely to come across in existing code are highlighted in red. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
⎕A⎕DM⎕DMX⎕PATH⎕SM
⎕TRAP⎕AN⎕EN⎕PP⎕STACK
⎕TS⎕AV⎕FR⎕PW⎕TC
⎕USING⎕AVU⎕IO⎕RL⎕THIS
⎕WA⎕CT⎕LC⎕RSI⎕TID
⎕WSID⎕D⎕LX⎕RTL⎕TNAME
⎕WX⎕DCT⎕ML⎕SE⎕TNUMS
⎕XSI⎕DIV⎕NULL⎕SI⎕TPOOL
+ +### Constant +```APL + ⎕A ⍝ Upper-case alphabet +ABCDEFGHIJKLMNOPQRSTUVWXYZ + ⎕D ⍝ Digits 0-9 +0123456789 + ⎕AN ⍝ User's ID +dyalog + ⎕NULL ⍝ NULL constant +[Null] + ⎕TC ⍝ BackSpace, LineFeed, CarriageReturn + + + + ⎕UCS⎕TC ⍝ BackSpace, LineFeed, CarriageReturn +8 10 13 +``` + +### Dynamic +```APL +⎕AV ⍝ List of APL characters +⎕DM ⍝ Last error message +⎕DMX ⍝ ⎕DM+⎕EN in a thread safe form +⎕EN ⍝ Last error number +⎕RTL ⍝ Response time limit +⎕SE ⍝ The session object +⎕TS ⍝ Current date/time +⎕THIS ⍝ Current object +``` + +### Settable +```APL +⎕AVU characters to use in ⎕AV +⎕CT Comparison Tolerance +⎕DCT Decimal Comparison Tolerance +⎕DIV how to handle division by 0 +⎕FR float decimal system in use +⎕IO index origin +⎕ML Migration Level +⎕LX Latent eXpression +⎕PATH where to find functions +``` + +### Division control +```APL + ⎕DIV←0 ⍝ Default + 3÷0 +DOMAIN ERROR: Divide by zero + 3÷0 + ∧ + 0÷0 +1 + ⎕DIV←1 + 3÷0 +0 + 0÷0 +0 +``` + +### Print Precision +The number of significant digits in the display of numeric output. +```APL + ⎕PP←3 + ÷812 +0.00123 +≢'123' +3 + ⎕PP←17 + ÷812 +0.0012315270935960591 +≢'12315270935960591' +17 +``` + +### Print Width +The Print Width `⎕PW` sets the number of characters in the session before wrapping to a new line. + +It can be assigned to directly, or set to automatically adjust based on the IDE windows size. In the Microsoft Windows IDE, go to **Options**→**Configure**→**Session** and tick **Auto PW**. In the RIDE, go to **Edit**→**Preferences**→**General**→**Session** and tick **Auto PW**. + +## System functions +In this course, we try to introduce relevant quad-names in appropriate contexts. However, not every quad-name is shown in this tutorial. + +A complete collection of categorised system functions is available [from the Dyalog online documentation](http://help.dyalog.com/latest/#Language/System%20Functions/Summary%20Tables/System%20Functions%20Categorised.htm?Highlight=system%20function). + +Further treatment of system functions is provided in [Chapter L of Mastering Dyalog APL](https://www.dyalog.com/uploads/documents/MasteringDyalogAPL.pdf#%5B%7B%22num%22%3A927%2C%22gen%22%3A0%7D%2C%7B%22name%22%3A%22XYZ%22%7D%2C69%2C640%2C0%5D). diff --git a/docs/Quirks.md b/docs/Quirks.md new file mode 100644 index 0000000..513fc1e --- /dev/null +++ b/docs/Quirks.md @@ -0,0 +1,185 @@ +# Out in the wild + +Much of what is presented in this course is what is called *modern APL* in that it contains extensions to the [original mathematical notation](https://aplwiki.com/wiki/Timeline_of_influential_array_languages). The term "modern APL" generally means APL implementations with some form of general nested arrays. + +Dyalog maintains long-term backwards compatibility, meaning that code which ran on Dyalog version 1 can be run on the latest version with little or no modification. Therefore it is good to be aware of all of the language constructs, even if some of them have fallen out of fashion in newly-written code. + +## Branch +Despite long and widespread use in many programming languages, `:If :Else`-style control structures are a relatively recent introduction to some APLs. Early on, the only way to control the flow of execution in APL was to using the branching arrow `→`. + +!!! Warning + Do not using the branch arrow (except with `→0`) to jump out of or into `:Keyword`-type control structures. It is best not to combine these two methods in general. + +```APL + →ln ⍝ Go to integer line number ln or label ln: + →0 ⍝ Exit current function and resume calling line + →⎕LC ⍝ Resume suspended execution + → ⍝ Clear one stack suspension + →condition/ln ⍝ If condition is true (1), go to line ln, otherwise go to next line +``` +--- +```APL + ∇ r←BFac n ⍝ Branching Factorial +[1] ⍝ {⍵=1:⍵ ⋄ ⍵×∇ ⍵-1} +[2] →(n=1)/4 +[3] r←n×BFac n-1 ⋄ →0 +[4] r←n + ∇ +``` + +Keeping track of line numbers in this way would be a hassle for large programs. The introduction of *labels* makes understanding code easier. + +```APL + ∇ r←BFacL n ⍝ Branching Factorial +[1] ⍝ with Label +[2] ⍝ {⍵=1:⍵ ⋄ ⍵×∇ ⍵-1} +[3] →(n=1)/end +[4] r←n×BFac n-1 ⋄ →0 +[5] end:r←n + ∇ +``` + +The use of `:GoTo` might be more suggestive to those unfamiliar with `→`. + +```APL + ∇ r←BFacG n ⍝ Branching Factorial +[1] ⍝ with GoTo +[2] ⍝ {⍵=1:⍵ ⋄ ⍵×∇ ⍵-1} +[3] :If n=1 +[4] :GoTo end +[5] :EndIf +[6] r←n×BFac n-1 +[7] :Return +[8] end:r←n + ∇ +``` + +You might prefer to use conditional keywords to keep blocks of statements together in a predictable way. + +```APL + ∇ r←BFacI n ⍝ Branching Factorial +[1] ⍝ with If +[2] ⍝ {⍵=1:⍵ ⋄ ⍵×∇ ⍵-1} +[3] :If n=1 +[4] r←n +[5] :Else +[6] r←n×BFac n-1 +[7] :EndIf + ∇ +``` + +## The axis operator +Before the rank operator was invented[1](#hopl4), certain functions had comparable behaviour when used in conjunction with *the axis operator*. However, the axis operator is not a true operator: it is not general, does not fit the standard function-operator syntax and does not work with user-defined functions. + +However, there are some useful applications of the axis operator which are handy to know. Some can be replicated with combinations of both `⍤` rank and `⍉` transpose, for example. + +```APL + A←2 3 4⍴⎕A + ,[1 2]A ⍝ Merge first two axes + ,[2 3]A ⍝ Merge last two axes + + (2 3⍴⍳6),[1]2 3⍴⎕A ⍝ Catenate first axis + (2 3⍴⍳6),2 3⍴⎕A ⍝ Catenate last axis + + (2 3⍴⍳6),[0.5]2 3⍴⎕A ⍝ Laminate before 1st axis + (2 3⍴⍳6),[2.5]2 3⍴⎕A ⍝ Laminate after 2nd axis + + ⊂[1 3]A ⍝ Enclose matrices along the first and third axes +``` + +As an exercise, try to reformulate the expressions above using only combinations of the operand functions enclose (`⊂⍵`), ravel (`,⍵`) or catenate-first (`⍪⍵`); the rank operator (`F⍤k`); and dyadic transpose (`⍺⍉⍵`). + +??? Example "Answers" + A←2 3 4⍴⎕A + ⍉,⍤2⊢2 3 1⍉A ⍝ Transpose and ravel matrices + ,⍤2⊢A ⍝ Ravel matrices + + (2 3⍴⍳6)⍪2 3⍴⎕A ⍝ Catenate first axis + (2 3⍴⍳6)(⍪⍤1)2 3⍴⎕A ⍝ Catenate vectors + + (2 3⍴⍳6)(2 3 1⍉,⍤0⍤1)2 3⍴⎕A ⍝ Laminate scalars within each pair of rows and transpose the result + (2 3⍴⍳6)(,⍤0⍤1)2 3⍴⎕A ⍝ Laminate scalars within each pair of rows + + ⊂⍤2⊢3 1 2⍉A ⍝ Enclose matrices after transpose + +Knowledge of the axis operator is required for anyone maintaining code which uses it, and it should be used to retain style unless all uses are to be replaced systematically with the rank operator. In any case, some people feel it provides pleasant [syntactic sugar](https://www.quora.com/What-is-syntactic-sugar-in-programming-languages) over the equivalent expressions which use rank and transpose. + +## Portable defaults +All [system functions and variables](../Quad names/) have default values. However, to guarantee that your code will run correctly when copied into other users' code bases, it is a good idea to set some of these values at the top level of the namespaces or functions which constitute the entry points of your application. + +It is common to see `(⎕ML ⎕IO)←1` or similar at the top of production functions and scripted namespaces. + +### Migration level +The system variable `⎕ML` ("*quad-em-ell*") specifies a "migration level" in order to allow code bases from other APL systems to work unmodified in Dyalog. In particular, some primitive symbols (like `⊃` and `↑`) have different definitions depending on the migration level. + +By default, this is set to 1. + +### Index origin +Due to its origin as a notational tool for teaching, arrays are indexed starting from 1 by default. However, some users are accustomed or find it convenient for indexing to start from 0 instead. In this way, it can be considered an "offset from the beginning of the array" rather than an [ordinal](https://en.wikipedia.org/wiki/Ordinal_numeral) index. + +Dyalog provides a way to choose whether arrays are indexed starting from zero or one: + +```APL + 'ABCD'[1] +A + ⎕IO←0 ⍝ Quad eye-oh gets zero + 'ABCD'[1] +B +``` + +APLers all agree that it would be better if there was only one option for `⎕IO`, but none of them can agree on what it should be. + +The author is sure that saying "the zero-th element" is incorrect. The *first* element may be labelled 0, but it is still the first element. + +## Caution with namespace references +It is a good idea to organise code bases into namespaces which each serve a particular purpose. In this case, you will likely want to somehow access names in one namespace from calling functions in a different namespace. There are ways to do this, but they should all be used with caution. + +`⎕CS` is a system function to change the current namespace. + +You can set the local search path for names using `⎕PATH`. For example, if you have a collection of utilities in `#.utils`, you do not need to keep referring to those functions by their full paths `#.utils.Foo` `#.utils.Goo` if you set `⎕PATH←'#.utils'`. + +`:With` was really designed when working with GUI objects: + +```APL + ∇ make caption +[1] :With 'MyForm' ⎕WC 'Form' +[2] Caption←caption +[3] Coord←'Pixel' +[4] Size←400 800 ⋄ Posn←20 30 +[5] onClose←'HandleClose' +... +``` + +However, some users think that `⎕PATH`, `:With` and `⎕CS` simply make applications more difficult to debug when something goes wrong. In large functions, debugging can become difficult if namespaces and search paths are altered far from where an error occurs. This is especially problematic in tradfns with dynamic scope, if you forget to localise `⎕PATH` within a function. + +One recommendation is to assign a reference to a long namespace path at the top of a function or namespace: + +```APL + str←#.utils.strings + str.(nl split) char_vec_with_embedded_newlines +``` + +## Auxiliary processors +**Auxiliary Processors** AKA [**APs**](https://help.dyalog.com/17.1/index.htm#UserGuide/Installation and Configuration/Auxiliary Processors.htm) are a legacy mechanism akin to [using compiled shared native libraries with ⎕NA](../Interfaces/#name-association). We do not recommended using them in new projects, but they remain for the support of existing systems. + +They were generally used when equivalent functionality written in APL was not performant, or not possible at the time. For example, in the past, set functions such as *Index-Of* `⍺⍳⍵` and *Membership* `⍺∊⍵` were slow. For some time, APs had the general advantage that the interpreter would not crash due to an error in an AP, but these days their performance is relatively poor due to having to copy data in and out of the active workspace. The performance of primitive functions is much better now than in the past and APs are a deprecated feature. + +For some applications, you might want to see the documentation archive for [**information about the XUtils AP**](http://docs.dyalog.com/15.0/Code%20Libraries%20Reference%20Guide.pdf#%5B%7B%22num%22%3A43%2C%22gen%22%3A0%7D%2C%7B%22name%22%3A%22XYZ%22%7D%2C87%2C707%2C0%5D). + +## Underscored alphabet +[**See the online documentation for the underscored alphabet**](https://help.dyalog.com/17.1/#Language/System%20Functions/Underscored%20Alphabetic%20Characters.htm) + +Before Unicode... before personal computers... before [software fonts](https://en.wikipedia.org/wiki/Computer_font)... before [electronic hardware fonts](https://en.wikipedia.org/wiki/Mullard_SAA5050)... was... the typewriter! Due to its age, the history of APL is enough to appreciate many of the modern features that we take for granted in computing. + +The first APL ([Iverson Notation](https://aplwiki.com/wiki/Iverson_notation)) was written by hand. Some of the earliest APLs on computers were on mainframe computers and accessed via teletype terminals such as the [IBM Selectric typewriter](https://en.wikipedia.org/wiki/IBM_Selectric_typewriter). These typewriters had type balls (colloquially referred to as "golf balls") which could be swapped out to enable different fonts - including an APL font. + +It is quite interesting to see such a system in action, for example in this [demonstration of APL from 1975](https://youtu.be/_DTpQ4Kk2wA), you can hear the typewriter aggressively rattling off keystrokes as the result of computation is relayed back to the terminal. + +While all of this is now historical curiosity, one hangover might be relevant if you are working on older code bases. Older APL systems did not have lower case letters. Instead, there was the alphabet (`⎕A`), and an underscored alphabet (`⎕Ⓐ` - although in some fonts this is rendered as a circled-A Ⓐ). In recent versions of Dyalog, some accented characters have been co-opted for compatibility with older applications. + +## Refactoring +It is usually best to continue code in the style in which you find it. This can include continuing to use many of the constructs which are here presented as "historical quirks". However, if an important part of the code base has become very difficult to reason about and debug, it might be worth your time to refactor it using more modern constructs and practices. This is referred to as "paying down technical debt", as the debt is accrued when the original author wrote code which makes it difficult, and therefore takes more time and money, to maintain. After paying the technical debt, it is hoped that future maintenance is far less resource intensive - so it is always a tradeoff between spending time now to make code nicer for the future, or spending time later wondering how the thing even works. + +--- + +1. Hui, R.K. and Kromberg, M.J., 2020. APL Since 1978. Proceedings of the ACM on Programming Languages. **Section 3.1** \ No newline at end of file diff --git a/docs/Reading.md b/docs/Reading.md new file mode 100644 index 0000000..27a5295 --- /dev/null +++ b/docs/Reading.md @@ -0,0 +1,38 @@ +# Further Reading + +## Activity +If you want to continue learning, using and practising APL but don't have a particular goal in mind, here are some things you can do now. + +- Enjoy understanding articles on the APL Wiki. See [how to generate the APL Wiki logo as an svg](https://aplwiki.com/wiki/APL_Wiki_logo). + +- Try to solve problems from the [APL Problem Solving Competition](https://www.dyalog.com/student-competition.htm). Many of the past Phase I (simple) problems can be tried with instant feedback on [problems.tryapl.org](https://problems.tryapl.org). + +- There are many similar problem solving sites. Trying to solve these in APL is an excellent way to test and improve your skills. + - [Project Euler](https://projecteuler.net/) + - [Rosalind.info](http://rosalind.info/problems/list-view/) + - [Code Golf Stack Exchange](https://codegolf.stackexchange.com/) + - [Rosetta Code](http://www.rosettacode.org/wiki/Category:APL) + - [LeetCode](https://leetcode.com/) + - [Perl Weekly Challenge](https://perlweeklychallenge.org/) + +- Drill yourself on APL idiom knowledge with the [APLcart quiz](https://aplcart.info/quiz/). +- Explore the language, don't forget the language bar and [basic help](/Help), summarised here: + - [Dyalog Documentation Centre](https://docs.dyalog.com) + - [Dyalog Online Help](https://help.dyalog.com/latest/) + - [Dyalog Forums](https://forums.dyalog.com/) + - [Stack Overflow](https://stackoverflow.com/questions/tagged/apl) + - [The APL Orchard](https://apl.chat) + +## Media +We strongly recommend that you spend some time on a regular basis reading, watching, listening and exploring the existing APL media. As a language with a rich history, there have been a huge number of conferences, published papers and presentations where users and implementors discuss their activities and achievements. + +- [Dyalog.TV](https://dyalog.tv) +- [The Array Cast Podcast](https://arraycast.com/) +- [The Vector Journal of the British APL Association](https://vector.org.uk) +- [APL Quote Quad](https://aplwiki.com/wiki/APL_Quote_Quad) +- [APL Conferences](https://aplwiki.com/wiki/Conferences) +- [Dyalog User Meetings](https://aplwiki.com/wiki/Dyalog_user_meeting) +- [SIGAPL](http://www.sigapl.org/) +- [Code Report videos featuring APL](https://www.youtube.com/watch?v=GZuZgCDql6g&list=PLA9gQgjzcpKEHpHWeu2MmNnTQSU6QSPBB) +- [Rodrigo's YouTube channel](https://www.youtube.com/channel/UCd_24S_cYacw6zrvws43AWg) +- [Videos by the late great John Scholes, inventor of dfns](https://www.youtube.com/watch?v=3qGsCrkWT-4&list=PLA9gQgjzcpKGxI9iCF-tvTuBthpR9QTVW) \ No newline at end of file diff --git a/docs/Selecting-from-arrays.md b/docs/Selecting-from-arrays.md new file mode 100644 index 0000000..f12aa3d --- /dev/null +++ b/docs/Selecting-from-arrays.md @@ -0,0 +1,303 @@ +# Search, Sort and Select + +## Selecting from arrays +In an array-oriented language, perhaps it's no surprise that there are umpteen ways to select values from arrays. There are also many ways to [modify or assign values](../Assignment) within arrays. + +The exact terminology can vary between array languages, but here we will refer to two types of fundamental array pieces: + +- **Scalars** (0-cells) are the things returned by indexing expressions +- **Elements** (or **items**) are the arrays inside of scalars. For a simple scalar *this is the same thing*! [Remember enclosing and diclosing scalars before?](../Array model/#nested-arrays). + +These notes summarise the different constructs available. There is also a [Dyalog webinar dedicated to selecting from arrays](https://dyalog.tv/Webinar/?v=AgYDvSF2FfU). + +### Square bracket indexing +This is the type of indexing we have used exclusively up to now. For vectors, it is very intuitive: +```APL + 'LE CHAT'[6 4 1 2 3 5 6] +THE CAT +``` + +For higher rank arrays, we can return rectangular sub-arrays by separating the indices into each axis by a semicolon: +```APL + (2 3 4⍴⎕A)[1 2;1 3;1 4] ⍝ The corner elements of the cuboid +AD +IL + +MP +UX +``` + +1. What happens if you omit an axis? For example, `array[3;4 5;;]`? +1. What happens if you use too many or too few semicolons? + +### Squad (A.K.A. "Functional") indexing +Square-bracket indexing requires you to know the exact rank of the array and have the correct number of semicolons in your indexing expression. You might also notice that it is a special or [anomalous syntax](https://aplwiki.com/wiki/APL_syntax#Syntactic_elements). + +There is also an **index** function `⍺⌷⍵` which has two distinctions: + +- It is a function with the same syntax as other functions +- It applies to any rank array by automatically filling in less-major cells (those cells defined by trailing axes) + +```APL + (1 2)(2 3)⌷(2 3 4⍴⎕A) + (2 3 4⍴⎕A)[1 2;2 3;] +``` + +### Take and drop +We can chop off the edges of an array using **take** `⍺↑⍵` and **drop** `⍺↓⍵`. +```APL + ¯1 3 2↑2 3 4⍴⎕A +MN +QR +UV + 1 0 ¯2↓2 3 4⍴⎕A +MN +QR +UV +``` + +!!! Note + While similar subarrays can be retrieved using indexing, take or drop, note that *take* and *drop* **return** arrays of **the same rank** as their argument. +
      ≢⍴1 1↑2 3 4⍴⎕A 
+	3
+	      ≢⍴1 1⌷2 3 4⍴⎕A 
+	1
+ +### Simple indexing +The selection of rectangular sub-arrays as demonstrated above using square brackets `[]` and squad `⌷` is also known as **simple indexing**. + +### Choose indexing +Square brackets have a magic trick up their sleeve. Simple indexing with square brackets uses scalars or vectors separated by semicolons. If you index using square brackets and a nested vector of numeric vectors, you can select any collection of scalars. + +```APL + (2 3 4⍴⎕A)[(1 1 1)(2 1 4)(1 3 4)] +``` + +An interesting relationship appears between indices into an array and indices into its ravel when `⎕IO←0`: + +```APL + ⎕IO←0 + (2 3 4⍴⎕A)[↓[0]2 3 4⊤0 15 11] + ⎕A⌷⍨⊂2 3 4⊥↑[0](0 0 0)(1 0 3)(0 2 3) +``` + +### Reach indexing +Indexing into an array will retrieve some cell of an array. If it is a nested array, then selecting a scalar will return an enclosed array. Sometimes what you actually want is the item inside of that scalar. + +While it is common and perfectly valid to simply use *first* `⊃⍵` to disclose the contents of a scalar, the *pick* function `⍺⊃⍵` can be used to retrieve the element directly: +```APL + 3⌷'here' 'are' 'some' 'words' ⍝ With ]Boxing on +┌─────┐ +│words│ +└─────┘ + 3⊃'here' 'are' 'some' 'words' +words +``` + +Reach indexing allows you to pull items from deep within a nested array: +```APL + (2 1)(2 2) ⊃ 2 3⍴0 1 2 (2 3⍴'AB' 'CD' 'EF' 'GH' 'IJ' 'KL') 4 5 +IJ +``` + +### Select / From +Some APLers find squad-index semantics awkward, and have proposed yet another mechanism, called **select** or [**from**](https://aplwiki.com/wiki/From). It can be defined as: +```APL + I←((⊃⊣)⌷⊢)_Rank_ 0 99 +``` + +Select provides the best of both simple indexing and choose indexing, allowing you to select arbitrary collections of cells. + +!!! Warning + Select is a very general and convenient function, but it is potentially much slower than using the in-built indexing constructs. We provide it here for completeness and your interest. + +## So which type of indexing do I use? +Over time you will learn from experience what is the most appropriate thing to use in different situations. However, here is a rough guide: + +|Selection type|Selection construct| +|---|---| +|Arbitrary scalars from a vector|Square bracket simple or [compress](Selecting from lists/#replicatecompress)| +|Rectangular subarrays|Simple| +|Arbitrary scalars from an array of rank ≥2|Choose| +|Nested arrays|Reach| +|Arbitrary collections of cells|Select| + +## Searching and finding +**Membership** `⍺∊⍵` will return a boolean array indicating the elements in `⍺` which are present in `⍵`. + +**Find** `⍺⍷⍵` will give a `1` indicating the location of the first element of `⍺` when the entire array `⍺` is found as a subarray in `⍵`. + +**Index of** `⍺⍳⍵` will return the index in `⍵` where `⍺` is found as a major cell. + +```APL + text ← 2 3 4⍴'SOME APPLES' + text∊'LESS' + 'LESS'⍷text + (1⌷text)⍳'LESS' +``` + +## Total Array Ordering +To sort, index by the **grade**: + +```APL + Sort←{(⊂⍋⍵)⌷⍵} + Sort 'the alphabet' +``` + +Grouping is an incredibly common operation when handling data. The python "dataframe" framework Pandas [has a groupby function](https://pandas.pydata.org/pandas-docs/stable/reference/api/pandas.DataFrame.groupby.html) and anybody who has used SQL [is likely to be familiar with this idea](https://www.w3schools.com/sql/sql_groupby.asp). + +The **key** operator was introduced in Dyalog version 14.0. Begin to familiarise yourself by experimenting with the following examples: +```APL + 'mississippi'{≢⍵}⌸'mississippi' + {≢⍵}⌸'mississippi' + 'interpreter'{⍺⍵}⌸'mississippi' +``` + +**Interval index** is a function for classifying data by boundaries. + +!!! Warning "Version Warning" + The symbol `⌸` is not available in Classic Edition, and the Key operator is instead represented by `⎕U2338`. + The symbol `⍸` is not available in Classic Edition, and the Interval Index function is instead represented by `⎕U2378`. + +At this point it is worth familiarising yourself with older APL constructs which perform similar functionality to key, and are likely to exist in code bases written before Dyalog version 14.0. + +1. You already wrote Interval Index [in problem set 4](/Outer product/#problem-set-4) using the outer product `∘.F`. See if you can rewrite that `Grade` function using **interval index** `⍺⍸⍵`. + + !!! Warning "Version Warning" + The function *interval index* `⍺⍸⍵` was introduced in Dyalog version 16.0 + +1. Try to write the interval index function `⍺⍸⍵` without using the `⍸` glyph + +Iverson's [dictionary of APL](https://www.jsoftware.com/papers/APLDictionary1.htm) defines monadic equals `=⍵` as "nub in": + +```APL + NubIn ← (∪≡⍤99 ¯1⍤¯1 99⊢) + NubIn 'abbcab' +1 0 0 0 1 0 +0 1 1 0 0 1 +0 0 0 1 0 0 + NubIn 3 3⍴6↑⎕A +1 0 1 +0 1 0 +``` + +!!! Warning "Version Warning" + The function *unique* `∪⍵` fails on arrays where `1<≢⍴⍵` prior to version 17.0. Try to define `NubIn` so that it works on high rank arrays and without using the rank operator. + ??? Hint + Use *split* `↓⍵` and *outer product* `∘.F`. + +## Problem set 7 + +### Search, sort, slice and select +1. Write two indexing expressions which apply to a scalar and return that scalar + +1. Write a function `IRep` which is equivalent to `⍺/⍵` but uses indexing instead of replicate. + +1. `NVec ← '' '34' 'donut' ⍬` is a four-element nested vector. Use a single pick `⍺⊃⍵` to obtain the sub-item `'o'`. + +1. From the nested 3D array `Nest←2 3 4⍴(⍳17),(⊂2 3⍴'ab'(2 3⍴'dyalog'),'defg'),⎕A[⍳6]` , use a single selection to obtain: + 1. The character scalar `'y'` + 1. The numeric scalar `6` + +1. Two sorting expressions are `{(⊂⍋⍵)⌷⍵}` and `{⍵[⍋⍵]}`? + + When might you use one over the other? + +1. When does `{(⍸∨/⍺⍷⍵) ≡ ⍸∧/⍵∊⍺}`? + +1. The membership function `⍺∊⍵` checks whether elements of `⍺` appear in `⍵`. Write a function `E` which checks whether major cells of `⍺` appear as major cells of `⍵`. +
      text E ↑' APP' 'LESS' 
+0 1 1
+0 0 0
+ +### Visit to the museum +Here are some data and questions about visits to a museum. + +The `section_names` are the names of each of the four sections in the museum. + +
section_names ← 'Bugs' 'Art' 'Fossils' 'Sea Life'
+ +The variable `sections` is a nested list of text matrices. Each matrix lists the items or creatures which belong to each section. + +
sections ← ↑¨('Grasshopper' 'Giant Cicada' 'Earth-boring Dung Beetle' 'Scarab Beetle' 'Miyama Stag' 'Giant Stag' 'Brown Cicada' 'Giraffe Stag' 'Horned Dynastid' 'Walking Stick' 'Walking Leaf') ('The Blue Boy by Thomas Gainsborough' ('Rooster and Hen with Hydrangeas by It',(⎕ucs 333),' Jakuch',(⎕ucs 363)) 'The Great Wave off Kanagawa by Hokusai' 'Mona Lisa by Leonardo da Vinci' 'Sunflowers by Vincent van Gogh' 'Still Life with Apples and Oranges by Paul Cézanne' 'Girl with a Pearl Earring by Johannes Vermeer' ('Shak',(⎕ucs 333),'ki dog',(⎕ucs 363),' by Unknown') 'David by Michelangelo di Lodovico Buonarroti Simoni' 'Rosetta Stone by Unknown') ('Amber' 'Ammonite' 'Diplodocus' 'Stegosaur' 'Tyrannosaurus Rex' 'Triceratops') ('Puffer Fish' 'Blue Marlin' 'Ocean Sunfish' 'Acorn Barnacle' 'Mantis Shrimp' 'Octopus' 'Pearl Oyster' 'Scallop' 'Sea Anemone' 'Sea Slug' 'Sea Star' 'Whelk' 'Horseshoe Crab')
+ +The `visits` table represents 1000 visits to museum sections over a two week period. The four columns represent: + +- The section that was visited as an index into the `section_names` +- The day of the visit in [Dyalog Date Number](http://help.dyalog.com/latest/#Language/System%20Functions/dt.htm) format. +- The arrival time in minutes from midnight. For example, 15:30 is 930 minutes. +- The departure time in minutes from midnight. + +
⎕RL←42 ⋄ days←43589+?1000⍴28 ⋄ (arr lïv)←539+?2⍴⊂1000⍴510 ⋄ section←?1000⍴4
+visits←(⊂⍋days)⌷section,days,(⊂∘⍋⌷⊢)⍤1⍉↑arr lïv
+ +In the boolean matrix `display`, each row corresponds to a museum piece and each column corresponds to a day. A `1` indicates days when a particular museum piece was out on display. The order of rows corresponds to the order of pieces in the `sections` table. + +
display ← 40 28⍴(9/0),1,(4/0),1,(9/0),1,(3/0),(5/1),0,(10/1),0,(5/1),0,(8/1),0,(8/1),0,(4/1),0 0 1 1 0 1 0 1 0 1 1 0 1 0,(5/1),(3/0),1 0 1 0 1 1,(4/0),1 0 1 1 0 0 1 1 0,(6/1),0 1 0 1 0 0 1 1 0 0 1 1 0 1 0 0 1 1 0,(3/1),(3/0),(4/1),0 1 1 0 1 0 0,(7/1),0 1 0 1 1 0 1 1 0 1 1 0,(3/1),0 1 1 0,(4/1),0,(3/1),0 1 0,(3/1),0 0 1 1,(5/0),1 1 0,(3/1),0 1 0 0 1 1,(3/0),(5/1),0,(9/1),0,(3/1),0 1,(3/0),(5/1),0,(3/1),0,(3/1),(3/0),1 1 0 0 1 0 1,(4/0),1 1 0 1 0 1 0 1 0,(9/1),0,(7/1),0,(3/1),0 0 1 1 0 1 1 0 0 1 0 0 1 0,(5/1),0 1,(3/0),1 1 0 1 0 0,(3/1),0,(4/1),0 0 1 1,(7/0),(3/1),(3/0),1 1,(3/0),1 1 0 1 0 1,(6/0),1 1,(4/0),1 0 1 1,(5/0),1 0 1 0 1,(6/0),(3/1),(9/0),1 1,(3/0),1 0 1 0 1 1,(13/0),1 1,(11/0),1 0 1 1,(4/0),1 0 0,(4/1),0,(12/1),0,(5/1),0 1 0 0 1 1 0,(5/1),0,(4/1),0,(4/1),0 0 1,(5/0),1 1,(3/0),(8/1),0 0 1,(3/0),1,(3/0),1,(3/0),1 0 0 1 0 1 0 1 0 1 0 1 1 0,(3/1),(4/0),(3/1),0,(3/1),0 1 1,(3/0),(4/1),0 1 1 0 1 1,(3/0),1 1 0 1 0 1 0 1,(6/0),1 1,(14/0),(8/1),(4/0),(8/1),0,(3/1),0,(4/1),(6/0),1 0 0 1 1,(3/0),1 1 0 0 1 0 1 0 0 1 0 1,(5/0),1 0 0 1 0 1 0 0 1 1,(3/0),1,(8/0),1 0 1 0,(6/1),0 0,(7/1),0 1 1 0,(3/1),0,(9/1),0,(12/1),0 1 1 0,(9/1),0,(3/1),0 0,(3/1),(3/0),(3/1),0,(3/1),(5/0),(7/1),0 1 0,(5/1),0,(3/1),0 0,(3/1),0 0 1 1 0,(4/1),0 1,(3/0),(3/1),(5/0),1 0 1 1 0 1 0,(3/1),0,(5/1),0,(3/1),0,(4/1),0 1,(4/0),1 0 1 0 0 1 1,(5/0),1,(3/0),1 0 0 1 0 1,(3/0),1 0 1 0 0 1,(4/0),1 0 0 1,(6/0),1,(14/0),1 0 0,(4/1),(3/0),(6/1),0 0 1 0,(3/1),0,(4/1),0,(3/1),0 1 0 1,(3/0),(5/1),(3/0),1 0 0 1 0,(3/1),0 1,(4/0),1 0 1 1,(11/0),1,(15/0),(3/1),(4/0),1,(15/0),(5/1),0 1 0,(8/1),0,(3/1),(4/0),(5/1),0 1,(9/0),1 0 1 1 0 0 1 0 0 1,(4/0),1 0,(4/1),0,(7/1),(3/0),1 0 0 1,(3/0),(3/1),0 1 1
+
+ +1. How many visitors arrived before 10AM? +1. What was the most popular section by visit duration? +1. Estimate the opening and closing times of each of the sections. +1. Which animal being on display corresponded with the highest increase in visit duration for its section? + +### Word Problems + +We are going to do some text processing on a dictionary of words. + +If you have access to the internet, the following expressions will download a text file dictionary (917kB in size) and store it as a nested vector of character vectors named `words`. + +```APL + ]Load HttpCommand + words ← (⎕UCS 10) {(⍺≠⍵)⊆⍵} (HttpCommand.Get'https://tinyurl.com/y7asendy').Data +``` + +If you have the file on your computer (maybe you were given it on a USB drive, for example) then you can load it into your workspace from disk using the following expressions. + +```APL + (content encoding newline) ← ⎕NGET'/path/to/words.txt' + words ← (⎕UCS newline) (≠⊆⊢) content +``` + +!!! Warning "Version Warning" + `HttpCommand` and `⎕NGET` are not available in Dyalog version 12.1. Instead, read the file using `⎕NREAD` as described in [the chapter on data input and output](../Data/#n). + +Now answer the following questions about `words`. + +1. How many words have at least 3 `'e'`s in them? + +1. How many words have exactly two consecutive `'e'`s in them? + The first three such words are `Aberdeen` `Abderdeen's` and `Aileen`. + +1. What is the shortest word with two consecutive `'a'`s? + +1. What words have three consecutive double letters? For example, `mississippi` does not but `misseetto` does. Misseetto is not a real word. + + A palindrome is the same when reversed. For example, **racecar** is a palindrome but **racecat** is not. + +1. How many palindromes are there in `words`? + +1. Which palindrome in `words` is the longest? + +1. How many words are in alphabetical order? + +??? Example "Answers" +
    +
  1. $3585$
  2. +
  3. $2149$
  4. +
  5. baa
  6. +
  7. bookkeeper bookkeeper's bookkeepers bookkeeping bookkeeping's
  8. +
  9. $109$
  10. +
  11. deified
  12. +
+ +### Rain facts +The 3D array `rain` gives the monthly rainfall in millimeters over 7 years in 5 countries. + +```APL + ⎕RL←42 ⋄ rain←?7 5 12⍴250 +``` + +1. Which month in each year in each country had the highest rainfall? +1. In the data, the countries are in order 1 to 5. Sort the countries in descending order of average monthly rainfall +1. Sort the countries in ascending order of total yearly rainfall \ No newline at end of file diff --git a/docs/Selecting-from-lists.md b/docs/Selecting-from-lists.md index ba6a8cc..774e321 100644 --- a/docs/Selecting-from-lists.md +++ b/docs/Selecting-from-lists.md @@ -34,6 +34,10 @@ APL 0 123 8364 246 ``` +!!! Warning "Version Warning" + - The function *where* `⍸⍵` is not available in version 12.1 as it was introduced in version 16.0. + - In Dyalog Classic the glyph `⍸` is unavailable, and is instead represented by `⎕U2378`. It is a good idea to name this e.g. `Where←⎕U2378`. + ## Replicate/Compress Finding the indices of a boolean array using the **where** function `⍸⍵` is an unnecessary extra step since we know that indices will never be repeated in this case. @@ -81,6 +85,10 @@ Take a moment to experiment with the shape `⍴`, tally `≢` and reshape `⍴` !!! note You might find that some arguments to reshape produce intolerably long output. Use the command `]rows -fold=3` to truncate the output. +!!! Warning "Version Warning" + - Tally `≢⍵` is not available in version 12.1. The glyph is still in use as the function *Not Match* `⍺≢⍵`. However, it can be defined as `Tally←{⍬⍴1,⍨⍴⍵}` + - The `]rows` user command is not available in version 12.1. + ## Problem Set 3 1. Simple Simon Says Select These Elements @@ -105,19 +113,19 @@ Take a moment to experiment with the shape `⍴`, tally `≢` and reshape `⍴` 7 Div 11 17 21 42 18 7 0 70 21 42 7 0 70 -??? Example "Answers" - Here are just some example solutions. -
    -
  1. -
    Even←{⍵[⍸0=2|⍵]}
    - We can **compress** directly with the boolean vector: -
    Even←{(0=2|⍵)/⍵}
    - Or use the *commute* operator `⍨` to swap the arguments to compress, removing parentheses: -
    Even←{⍵/⍨0=2|⍵}
    -
  2. -
  3. Div5←{⍵/⍨0=5|⍵}
  4. -
  5. Div←{⍵/⍨0=⍺|⍵}
  6. -
+ ??? Example "Answers" + Here are just some example solutions. +
    +
  1. +
    Even←{⍵[⍸0=2|⍵]}
    + We can **compress** directly with the boolean vector: +
    Even←{(0=2|⍵)/⍵}
    + Or use the *commute* operator `⍨` to swap the arguments to compress, removing parentheses: +
    Even←{⍵/⍨0=2|⍵}
    +
  2. +
  3. Div5←{⍵/⍨0=5|⍵}
  4. +
  5. Div←{⍵/⍨0=⍺|⍵}
  6. +
1. Without without Write a dfn which doesn't use `~` to remove spaces from a text vector. @@ -127,8 +135,8 @@ Take a moment to experiment with the shape `⍴`, tally `≢` and reshape `⍴` NoSpace'there are more spaces here' therearemorespaceshere -??? Example "Answer" -
NoSpace←{⍵/⍨⍵≠' '}
+ ??? Example "Answer" +
NoSpace←{⍵/⍨⍵≠' '}
1. Where without Where Write a dfn which doesn't use `⍸` to find the indices of `1`s in a boolean vector. @@ -136,8 +144,9 @@ Take a moment to experiment with the shape `⍴`, tally `≢` and reshape `⍴` Where 0 1 0 1 0 0 1 2 4 7 -??? Example "Answer" -
Where←{⍵/⍳≢⍵}
+ ??? Example "Answer" +
Where←{⍵/⍳≢⍵}
+		Where←{(,⍵)/⍳⍴⍵}
1. sdrawkcab s'taht woN @@ -148,5 +157,5 @@ Take a moment to experiment with the shape `⍴`, tally `≢` and reshape `⍴` Reverse ⍳10 10 9 8 7 6 5 4 3 2 1 -??? Example "Answer" -
Reverse←{⍵[1+(≢⍵)-⍳≢⍵]}
+ ??? Example "Answer" +
Reverse←{⍵[1+(≢⍵)-⍳≢⍵]}
diff --git a/docs/Shape-Reshape.md b/docs/Shape-Reshape.md index c5a66a6..74ae1c3 100644 --- a/docs/Shape-Reshape.md +++ b/docs/Shape-Reshape.md @@ -1,7 +1,7 @@ # Shape Reshape ## Array basics -1. Expermient with the expressions in the following block to gain an understanding of the functions used. +1. Experiment with the expressions in the following block to gain an understanding of the functions used. 1. Write a brief definition in English for each expression. For example: `{2×⍳⍵} ⍝ Even integers from 2 to 2×⍵ inclusive`. 1. Use the language bar to discover the names of unfamiliar functions. @@ -32,6 +32,9 @@ Use the match function `⍺≡⍵` to determine which expressions below produce ⎕JSON'[]' ⎕JSON'""' +!!! Warning "Version Warning" + `⎕JSON` ("*quad jason*") is a function for converting APL arrays to and from [JavaScript Object Notation](https://en.wikipedia.org/wiki/JSON). It is not available in version 12.1. More information is given [later in the course](../Data/#json). + A *simple array* contains only single numbers and/or characters as elements. Single numbers or characters are called *scalars*. Arrays generally can contain any other array. These are called *nested arrays*. For example `cards` is a nested matrix of character vectors. ```APL diff --git a/docs/Ufns.md b/docs/Ufns.md new file mode 100644 index 0000000..0d19cae --- /dev/null +++ b/docs/Ufns.md @@ -0,0 +1,411 @@ +# User defined functions +This is a fairly brief introduction, and there are exercises at the end of this section to help solidify your understanding, but there is also [a more extensive treatment of user-defined functions in the book Mastering Dyalog APL](https://mastering.dyalog.com/User-Defined-Functions.html). + +## The Three Function Styles + +So far, we have been reading and writing [dfns](https://aplwiki.com/wiki/Dfn). + +```APL + 3 {⍺+⍵} 5 ⍝ Left argument ⍺, right argument ⍵ + {⍵>0:⍵,∇ ⍵-1 ⋄ ⍵}5 ⍝ Guard is : (colon). The function itself is ∇ (del) + Fn ← {⍺⍵} ⍝ We can give functions names +``` + +It is also possible to name functions which do not explicitly refer to their arguments. This is called [tacit](https://aplwiki.com/wiki/Tacit_programming) or *point-free* programming. + +```APL + Plus ← + + IndicesTo ← ⍳ + _Reduce ← / + Sum ← Plus _Reduce + Sum IndicesTo 10 +``` + +There is a syntax for composing functions called [*trains*](https://aplwiki.com/wiki/Tacit_programming#Trains). + +A two-train is an **atop**: + +```APL + 3(|-)5 +2 + |3-5 +2 +``` + +A three-train is a **fork**: + +```APL + 3(-×+)5 +¯16 + (3-5)×(3+5) +¯16 +``` + +Any further functions simply alternate between *atop* (even number of functions) and *fork* (odd number of functions). + +```APL + 3(|-×+)5 ⍝ Absolute value of the product of sum and difference +16 + 3(⌈|-×+)5 ⍝ Max residue with the product of sum and difference +4 +``` + +They allow some rather neat and memorable ways to write short functions. + +!!! Warning "Version Warning" + Trains were introduced in Dyalog version 14.0 + +```APL + Mean ← +⌿ ÷ ≢ ⍝ The sum divided by the count + Mean 3 1 4 1 + 3 (+,-) 5 ⍝ Plus and minus + ','(≠⊆⊢)'some,text' ⍝ Split on commas +``` + +!!! Note + Small unnamed dfns and tacit functions expand your vocabulary. One of my favourites is the "split by delimiter" train (≠⊆⊢). It looks like a beat-up face kaomoji. A similar phrase which can take multiple delimiters can be found on aplcart.info. + +!!! Warning "Version Warning" + The symbol `⊆` (Left Shoe Underbar) is not available in Classic Edition, and Partition is instead represented by `⎕U2286`. + To use the partition function in version 12.1 (represented by `⍺⊆⍵` in Unicode Edition since version 16.0), you can set the [migration level](https://help.dyalog.com/latest/index.htm#Language/System%20Functions/ml.htm) locally inside a dfn: `Partition←{⎕ML←3 ⋄ ⍺⊂⍵}` + +## Traditional functions +Dyalog is a modern APL implementation. Since early APL implementations there has been a way of defining functions with a header line and named arguments and results. Since the introduction of dfns, functions of the original style are called *traditional functions* or [*tradfns*](https://aplwiki.com/wiki/Defined_function). + +```APL + Mean ← +⌿÷≢ ⍝ A 3-train (fork) for the arithmetic mean +``` +--- +```APL + Mean ← {(+⌿⍵)÷≢⍵} ⍝ A dfn for the arithmetic mean +``` +--- +```APL + ∇ m ← Mean a ⍝ A tradfn for the arithmetic mean + m ← (+⌿a) ÷ ≢a + ∇ +``` + +!!! Note + Copy and paste everything between (and including) the two del symbols into the session, and press Enter, to define a tradfn in your workspace.

Using Shift+Enter with the cursor on a name will bring up an editor window for that named thing. + +A tradfn header reflects the calling syntax of the function. + +```APL + ∇ {result}←{optional}Tradfn argument;local1 +[1] ;local2 ⍝ Locals can be declared across multiple lines in the header +[2] :If 0=⎕NC'optional' +[3] optional←'no left argument' +[4] :EndIf +[5] local1←'⍺: ',optional +[6] local2←'⍵: ',argument +[7] global←⍪'TradFn last called with'local1 local2 +[8] result←⍪local1 local2 + ∇ +``` + +!!! Note + The del representation of the TradFn function above is the vector representation result of ⎕VR'TradFn' which can be directly input into the session. + +1. Try calling `TradFn` with one and two arguments. How can the result be made to display to the session? +1. Inspect the variable `global` after calling `TradFn` with different arguments. +1. Step through the function using `Ctrl+Enter`. Inspect `⎕NC'optional'` when `TradFn` is called with one argument and when it is called with two arguments. + +Here is the smallest tradfn: +```APL + ∇ T + ∇ +``` + +`T` is a function which takes no arguments, returns no results and has no effects. + +Results in `{}` curly braces are called **shy results** and do not print to the session by default, but can be passed to arguments. To ease debugging and write functions with predictable behaviour, it is generally best not to use shy results. + +Optional left arguments are a little awkward in tradfns. The dfn equivalent is a little nicer looking: `{⍺←'default' ⋄ ⍺,⍵}`. + +## Name scope, locals and globals +The scope of a name describes the circumstances under which it is visible to code. + +For most intents and purposes, you just need to know about the difference between how **local** and **global** names are defined in the syntax, and how **name shadowing** works. + +By default, names assigned in tradfns are global. This is mostly for historical reasons. Names declared in the header - the arguments, results, and names preceded by semicolons - are localised. + +By default, names in a dfn are local to that dfn. This is the preferred default in most modern programming languages. + +If we define a name in the current namespace, that name is visible only within that namespace unless referred to by its full namespace path (e.g. `#.nsref.var`). + +```APL + 'ns1'⎕ns⍬ ⋄ ns1.var←1 2 3 + 'ns2'⎕ns⍬ ⋄ ⎕cs ns2 + ⎕←var + ⎕←#.ns1.var +``` + +Let us now define a dfn and a tradfn: + +```APL + ∇ Dfn←{ +[1] var←'lexical'⍵ +[2] } + ∇ + + ∇ Tradfn arg +[1] var←'dynamic'arg + ∇ +``` + +!!! Note + While the `∇` *del* representation of dfns can be used to define dfns in the session, dfns in scripted namespaces must be defined without `∇` dels. + +If we call each of these functions, `Tradfn` will modify `var` in the workspace, but `Dfn` will not: + +```APL + Dfn var + var +``` +``` +1 2 3 +``` +--- +```APL + Tradfn var + var +``` +``` +┌───────┬─────┐ +│dynamic│1 2 3│ +└───────┴─────┘ +``` + +Experiment with these altered definitions: + +```APL + ∇ Dfn←{ +[1] var∘←'lexical'⍵ +[2] } + ∇ +``` +--- +``` + ∇ Tradfn arg;var +[1] var←'dynamic'arg + ∇ +``` + +In Tradfns, references to local names within a function are said to "*shadow*" the same names from outer scopes. Notice how the following definition of `Tradfn` fails. + +```APL + ∇ Tradfn arg;var +[1] var,←'dynamic'arg + ∇ +``` +--- + +A similar dfn succeeds because, in dfns, modification will search namespaces in the local scope and then any parent scopes. + +```APL + ∇ Dfn←{ +[1] var,←'lexical'⍵ +[2] } + ∇ +``` + +For completeness, here we will also mention `⎕SHADOW`. It is used when names are dynamically created using `⍎`, `⎕FX` or `⎕FIX` but need to be localised. However, it is best to use the function syntax to establish name scope in general. Further information can be found [in the specialists section on shadowed names](https://www.dyalog.com/uploads/documents/MasteringDyalogAPL.pdf#page=252) in Mastering Dyalog APL. + +The technical distinction between dfns and tradfns is that tradfns have **dynamic scope** whereas dfns have **lexical scope**. + +For further explanation of how this affects the use of dfns, see [section 5.5.3 of Mastering Dyalog APL](https://mastering.dyalog.com/User-Defined-Functions.html#lexical-scoping). + +For another excellent introduction to lexical scoping, I can recommend the [page on lexical scoping in the BQN documentation](https://mlochbaum.github.io/BQN/doc/lexical.html#closures) (BQN is another language inspired by APL). + +### Avoid globals +When possible, avoid using global variables. +Pass parameters to functions as arguments unless this becomes very awkward. +The use of global variables should be limited to state settings that affect the entire application, or tables containing databases that are shared globally. +If you need global constants, it is a good idea to create them in a function in order to be able to use source code management / change tracking software. + +A function which uses globals is difficult, if not impossible, to run in parallel. If two copies of the function run in parallel and they update the global data, some kind of locking is required. Locking often defeats the potential benefits of parallel execution. + +Names should be localized unless they really really, really, really need to be global. + +An example of when to use globals is a switch which affects the entire application: + +```APL + ∇ err←Log msg +[1] :If verbose +[2] ⎕←msg ⍝ Display information to the user +[3] :EndIf +[4] PrintFile msg + ∇ +``` + +## Nested functions +It is possible to define functions inside some other functions. + +- Tacit functions can only include other user-defined functions by name +
      Sort ← {(⊂⍋⍵)⌷⍵}
+	  CSI ← Sort⍥⎕C   ⍝ Case-insensitive sort
+ + !!! Warning "Version Warning" + `⎕C` (*quad C*) and `⍥` (*over*) are only available from Dyalog version 18.0 onwards. Upper- and lower-casing can be easily implemented in raw APL, or achieved using `819⌶` (*eight nineteen I-beam*). Over can be defined as a dop: `_O_←{0=⎕NC'⍺':⍺⍺ ⍵⍵ ⍵ ⋄ (⍵⍵ ⍺) ⍺⍺ ⍵⍵ ⍵}`. + +- Dfns can contain tacit definitions and dfn definitions, as well as any named user-defined functions +
 SortedMeans ← {
+    Sort ← {(⊂⍋⍵)⌷⍵}
+    Mean ← +⌿÷1⌈≢
+    Sort Mean¨⍵
+}
+- Tradfns can contain tacit definitions, dfn definitions and any named user-defined functions +
     ∇ result←SortedMeans vectors;Mean;Sort
+[1]    Sort←{(⊂⍋⍵)⌷⍵}
+[2]    Mean←+⌿÷1⌈≢
+[3]    result←Sort Mean¨vectors
+     ∇  
+ +## Which style to use? + +While usage of different function styles varies throughout many applications, you might take inspiration from [Adám's APL Style Guide](https://abrudz.github.io/style/), when writing brand new production code. When maintaining others' code, it is best to try to continue in the already established style. + +#### Dfns +For medium sized functions and utilities. Nested dfns are fine, but never use multi-line dfns inline. + +```APL + MultiDfn←{ ⍝ A Dfn with nested in-line multi-line dfns + (3{ ⍝ These are confusing to read and trace through + ⍺+2×⍵ + }⍺){ + x←⍺-4+⍵ + x-2×⍺ + }3+⍵ + } +``` + + Instead, give them names and then apply them. Named dfns should be multi-line so that they can be traced through, unless truly trivial. + +```APL + MultiDfn2←{ ⍝ The previous function rewritten more clearly + y←3+2×⍺ + x←y-1+⍵ + x-2×y + } +``` + +Do not use a dfn instead of naming a variable. For example, instead of + +```APL + r←{⍵/⍨10≤⍵}a,b +``` + +write + +```APL + candidates←a,b + r←candidates/⍨10≤candidates +``` + +#### Tacit functions +Best as short, [pure functions](https://en.wikipedia.org/wiki/Pure_function), performing some specific task such as data transformation. Trains and functions derived from functions and operators (e.g. `+/`) can be used inline if they are not too complex. + +#### Tradfns +Best used as program control and for dealing with system interactions. The use of control structures can make procedural tasks easier to debug. For example, if an error occurs during a loop or iteration. + +```APL + ¯5{i←⍺+⍳⍵ ⋄ i÷i-2}10 ⍝ A single line function cannot be traced through +``` + +!!! Note + Use Ctrl+Enter to step through a multiline function. You can then use Shift+Enter to edit the function during execution and Esc to save your changes to the function and continue execution. + +```APL + ∇ r←a MultiLineError o;i +[1] :For i :In a+⍳o +[2] r←i+3 +[3] r÷r-2 +[4] :EndFor + ∇ +``` + +## Problem set 10 + +### Which style again? +1. Which of the following function styles can have multiple lines? + 1. TradFns + 1. Dfns + 1. Tacit functions +1. Which of the following function styles can be anonymous (unnamed)? + 1. Tradfns + 1. Dfns + 1. Tacit +1. Think about which function style would be most appropriate in the following situations. + 1. Launching an application + 1. Applying a mathematical formula to an array of values + 1. A utility function to sort an array + 1. Reading and writing files + 1. Expressing the sum of two functions (f+g)(x) + 1. Downloading data from the internet + 1. GUI programming + 1. Checking if a function is a [no-op](https://en.wikipedia.org/wiki/NOP_(code)) for a particular array + 1. Defining a [piecewise](https://www.mathsisfun.com/sets/functions-piecewise.html) mathematical function + +### Choo choo +1. Translating functions + 1. Convert the following dfns into trains + 1. `{⌈/≢¨⍵}` + 1. `{1+⍺-⍵}` + 1. `{∨/⍺∊⍵}` + 1. `{(⌽⍵)≡⍵}` + 1. Convert the following trains into dfns + 1. `(⌈/-⌊/)` + 1. `(+⌿÷1⌈≢)` + 1. `(⊢-|)` + 1. `(1∧⊢,÷)` + +### Marking Tests +Way back in [problem set 4](/Outer-product/#problem-set-4) you wrote a dfn to convert test scores into letter values. + +You were led to produce some function or expression similar to the following: + +```APL + Grade←{'FDCBA'[+/⍵∘.>80 70 60 50 0]} + Grade 95 65 92 77 +``` + +This is an array-oriented solution to this problem. However, if a human was manually grading test scores, they might take one scored paper at a time and decide on which letter grade to write by reading each score. + +Procedural [pseudocode](https://en.wikipedia.org/wiki/Pseudocode): + +```pseudocode +scores = 93,85,45,10,70,16,93,63,41,7,95,45,76 +For each score in scores: + If score is greater than 80: + Write "A" + Else If score is greater than 70: + Write "B" + Else If score is greater than 60: + Write "C" + Else If score is greater than 50: + Write "D" + Else + Write "F" +``` + +Control Structures in Dyalog are keywords beginning with a `:` colon. + +```APL + :If :OrIf :AndIf :ElseIf :Else :EndIf + :For :In :EndFor + :While :EndWhile + :Repeat :Until :Return +``` + +1. Translate the pseudocode above into a **tradfn** called `Grade2` using control stuctures. + +1. Rewrite the `Grade` function again as either a dfn or a tradfn called `Grade3` which uses `⍺⍸⍵` interval index. + +1. Use the `]runtime` user command to compare the computation time for each of the three grading functions. +
]runtime -c "Grade 10×⍳10" "Grade2 10×⍳10" "Grade3 10×⍳10"
+ + !!! Warning "Version Warning" + The `]runtime` user command is not available in Dyalog version 12.1. However, it is just a cover for the `cmpx` function from `dfns`: +
'cmpx'⎕CY'dfns'
+		cmpx 'Grade 10×⍳10' 'Grade2 10×⍳10' 'Grade3 10×⍳10'
diff --git a/docs/Workspaces.md b/docs/Workspaces.md new file mode 100644 index 0000000..a65b53b --- /dev/null +++ b/docs/Workspaces.md @@ -0,0 +1,176 @@ +# Workspace basics +We sure have made a lot of functions so far and we've typed many expressions into our [REPL](https://en.wikipedia.org/wiki/Read%E2%80%93eval%E2%80%93print_loop). There seem to be a few variables in our workspace as well. We should save them somewhere for later. + +*[REPL]: Read Evaluate Print Loop + +## What's a workspace? +If you have been using Dyalog, the **session log** is the page with all of your input and output so far. You can scroll up the session log (with a mouse or using the Page Up key) and see everything you have done so far. + +A **workspace** is a collection of names. We can obtain some lists of names using **system commands**. + +```APL + )fns ⍝ Functions + )vars ⍝ Variables (arrays) +``` + +These commands have the special `)COMMAND` syntax, and are only used when interacting with the session. They return no result and cannot be used programmatically; they cannot be used in a function. + +## What's in a workspace? + +- `]Map` + + See a diagram indicating the types of names in the current namespace. + Also use the Workspace Explorer: go to **Tools → Explorer** in the Microsoft Windows IDE or **View → Show Workspace Explorer** in RIDE. + +- `]Locate` + + Search and replace strings (including function names, literal character vectors and comments) in functions, operators, namespaces and other objects. It does not search inside character array variables. + You can also use **Tools → Search** in the Windows IDE. + +- `]Peek` + + Try an expression as if it was executed in a saved workspace without having to copy the contents of that workspace. + +```APL + ]peek dfns cal 2021 7 + ]peek -? +``` + +!!! Warning "Version Warning" + ]WS.Peek is not available in Dyalog version 12.1 + +## How big is a workspace? +The data and code in the active workspace is limited to the maximum workspace size, or **MAXWS** (*maks-wuss*). The size of a **.dws workspace file** is usually much smaller than this. + +We can get the current value: +```APL +⎕←2⎕NQ'.' 'GetEnvironment' 'MAXWS' +``` + +The **maximum workspace size** can be set to a different value using the MAXWS [configuration parameter](https://help.dyalog.com/latest/index.htm#UserGuide/Installation%20and%20Configuration/Configuration%20Parameters.htm). If you are using the Microsoft Windows IDE, you can go to **Options → Configure → Workspace** and set the maximum workspace size. In either case, the interpreter must be restarted for the change to take effect. + +The MAXWS setting is an adjustable software limitation, although there is also a hardware limitation: the amount of [memory](https://kb.iu.edu/d/ahtx) in the computer. + +Finally, you can see how much workspace is available with `⎕WA`. + +## System commands +A [table of system commands](https://help.dyalog.com/latest/index.htm#Language/System%20Commands/Introduction.htm) is provided in the online documentation. + +The *session* is sometimes used to refer to the interactive mode of operation (also known as *calculator mode* also known as *immediate execution mode*), in contrast to *under program control*, which is when something happens as the result of a line in a program/function. + +For example: + +```APL + myvar ← 2×⍳3 ⍝ Declare a variable in the session + )erase myvar ⍝ Use a system command to erase the variable +``` + +If we try to use a system command inside a function, it won't work. + +```APL + ⍝ The ]DInput user command lets us write mult-line dfns in the session + ]dinput ⍝ Alternatively, press Shift+Enter with the cursor | on a name + MultiFn←{ ⍝ A multi-line dfn + ⍝ These statements are executed "under program control" + ⎕←5+5 + var ← 2+2 ⍝ This variable only exists when this function is running + )erase var ⍝ This won't work + } + ⍝ Now try to execute: + MultiFn ⍬ +10 +VALUE ERROR: Undefined name: erase +MultiFn[4] )erase var ⍝ This won't work + ∧ +``` + +!!! Note + Attempting to execute the above `MultiFn` function will cause the tracer to open by default. Simply press Esc to quit the suspended function and return to the session. + +## System Functions +Some [**quad-names**](../Quad names) are [**system variables**](../Quad names/#system-variables), such as `⎕A`, `⎕D` and `⎕AV`. Others are [**system functions**](../Quad names/#system-functions), many of which are similar to system command counterparts. + +|System Command|System Function| +|---|---| +|`)SAVE /path/to/WorkspaceFile`|`⎕SAVE'/path/to/WorkspaceFile'`| +|`)LOAD /path/to/WorkspaceFile`|`⎕LOAD'/path/to/WorkspaceFile'`| +|`)ERASE name`|`⎕EX'name'`| + +!!! Note + ⎕SAVE will overwrite any existing workspace file without asking first. Use )SAVE when saving workspaces. + +In contrast to the system commands, which can only be used in the interactive session, system functions can be used in a function (A.K.A. *under program control*). + +[**System functions**](../Quad names/#system-functions) are in-built functions with names of the form `⎕FUNCTION` and *do* return a result. Some have shy results which can be used by subsequent functions, or printed to the session output with `⎕←` (*quad-gets*). + +```APL + multifn←{ + ⍝ These statements are executed "under program control" + ⎕←5+5 + var ← 2+2 ⍝ This variable only exists when this function is running + ⎕EX 'var' ⍝ This will work, although it does not do anything useful in this dfn +} +``` + +The Name List `⎕NL` function lists names according to their [*name class*](http://help.dyalog.com/18.0/#Language/System Functions/nc.htm). + +```APL + ⎕NL 2 ⍝ List variables as a text matrix + ⎕NL 3 ⍝ List functions + ⎕NL-⍳9 ⍝ List all names as a nested vector of character vectors +``` + +### ⎕CLEAR +Prank your friends with the best function ever: +```APL + BestFunctionEver←{ + _←⎕SAVE'/tmp/','_'@(' '∘=)⍕⎕TS + ⎕CLEAR + } +``` + +### ⎕OFF +An event better function for pranks: +```APL + BestFunctionEver←{ + _←⎕SAVE'/tmp/','_'@(' '∘=)⍕⎕TS + ⎕OFF + } +``` + +`⎕OFF` can also emit custom exit codes. Standard Dyalog exit codes are: + +- 0: Successful exit from `⎕OFF`, `)OFF`, `)CONTINUE` or graphical exit from the GUI +- 1: APL failed to start (for example: lack of memory, bad translate table in Classic) +- 2: APL received a [SIGHUP or SIGTERM](https://www.gnu.org/software/libc/manual/html_node/Termination-Signals.html). +- 3: APL generated a syserror + +## Saving and loading +The example below shows how to save and load a workspace. + +```APL + ]cd /tmp + )save MyFirstWS + )clear + )load MyFirstWS +``` + +## Uses of workspaces + +- **Distribution:** For large applications, it will be inconvenient or undesirable to ship large [collections of source files](../Code/#source-code-in-text-files) that are loaded at startup. Workspaces are often used as a mechanism for the distribution of packaged collections of code and data. +- **Crash Analysis:** When an application fails, it is often useful to save the workspace, complete with execution stack, code and data, for subsequent analysis and sometimes resumption of execution. +- **Pausing work:** In many ways, this is similar to crash analysis: sometimes you need to shut down your machine in the middle of things and resume later, but you don't want to be forced to start from scratch because you have created an interesting scenario with data in the workspace. Saving a workspace allows you to do this. + +*[SCM]: Source Code Manager + +## Activities + +1. What is the rank of `⎕NL x` for any scalar or vector `x`? +1. What is the rank of `⎕NL -x` for any scalar or vector `x`? +1. Save Your Work + 1. Use `]cd` to change to a directory on your machine where you would like to save your work + 1. Use `)wsid WSName` to change the name of your active workspace + 1. Use `)save` to save your workspace + +!!! Note + ⎕SAVE will overwrite any existing workspace file without asking first. Use )SAVE when saving workspaces. diff --git a/docs/assets/IndiaRainfall.csv b/docs/assets/IndiaRainfall.csv new file mode 100644 index 0000000..41c57e7 --- /dev/null +++ b/docs/assets/IndiaRainfall.csv @@ -0,0 +1,3031 @@ +SUBDIVISION,YEAR,JAN,FEB,MAR,APR,MAY,JUN,JUL,AUG,SEP,OCT,NOV,DEC +ASSAM & MEGHALAYA,1915,9.3,58.9,74.4,201.9,662.9,509.1,738.2,529.1,258.8,108.2,10,4.4 +ASSAM & MEGHALAYA,1916,20,28,118.4,227.9,340.6,367.3,475.3,430.7,308.8,244.9,32.8,6.3 +ASSAM & MEGHALAYA,1917,12.8,91.6,38.7,168.8,206.2,584.7,472.8,346.3,313.7,236.6,46.4,1.4 +ASSAM & MEGHALAYA,1918,4.6,16.1,125.5,152.2,287.4,659.4,805,604.8,373.2,70.7,6.8,1.1 +ASSAM & MEGHALAYA,1919,13.1,12.4,22.6,162.1,266.9,485.5,459,249.1,441.6,185.7,42.5,3.6 +ASSAM & MEGHALAYA,1920,4.8,51,228.1,184.8,282.7,523.8,309.8,521.5,382.6,129.5,3.3,1.8 +ASSAM & MEGHALAYA,1921,35.1,20.3,134.1,324.6,414.8,604.9,542.2,429.4,333.2,142.1,8.5,10.3 +ASSAM & MEGHALAYA,1922,16.6,4.9,77.8,168.7,233.1,548.9,418.4,379.4,265.6,129.9,9.3,9.4 +ASSAM & MEGHALAYA,1923,0.4,59.6,17.1,258.1,397.8,588.6,375.4,267.2,360.9,98.2,11.2,5.9 +ASSAM & MEGHALAYA,1924,10.6,22.7,20,221.9,299.4,473.9,609,434,346,127,126.9,0.2 +ASSAM & MEGHALAYA,1925,26.4,21.5,53.8,278.3,602.2,330.8,411.1,400.7,322.3,89.5,13.7,0.2 +ASSAM & MEGHALAYA,1926,23.4,23.2,156.9,140.8,253.9,559.3,576.5,354.7,189.2,193.7,6.4,33.6 +ASSAM & MEGHALAYA,1927,33.8,60.5,66,265.2,238.4,573.9,447.7,366.4,549.8,161.2,29.8,0.2 +ASSAM & MEGHALAYA,1928,8.3,21.1,61,138.9,446.5,420.6,428.1,448.2,343.5,294.8,21.6,1.5 +ASSAM & MEGHALAYA,1929,83.9,3.8,84.1,321.7,570.2,643.4,385,333.2,292.8,196,17.6,22.1 +ASSAM & MEGHALAYA,1930,18,41,99.8,199.4,209.8,686.9,287.8,438.5,299.1,149.9,114.4,6.2 +ASSAM & MEGHALAYA,1931,7.6,29.2,47.6,294.7,374,605.6,654.6,282,330.2,136.7,21.6,16.3 +ASSAM & MEGHALAYA,1932,14.9,36.7,59.1,163.2,488.6,628.5,454.6,467.3,355.8,108.4,90.9,20.6 +ASSAM & MEGHALAYA,1933,10.3,29,16.7,214.4,286.7,477.2,427.1,501.7,243.1,122.1,8.1,2.7 +ASSAM & MEGHALAYA,1934,18.5,68.2,27.1,301.2,444.6,754.5,553.2,361.8,246.8,232.8,59.8,6.3 +ASSAM & MEGHALAYA,1935,3.4,53.2,66.5,122.1,381.5,696.9,395.2,573.9,335,28.1,19.8,2.9 +ASSAM & MEGHALAYA,1936,13.6,58.7,75.7,217.8,422.8,456.1,559.9,356.4,283.5,179.6,24,23.2 +ASSAM & MEGHALAYA,1937,2.2,51.1,19.3,97.4,406.6,422.5,409.2,480.5,278.1,139.3,13.5,4.9 +ASSAM & MEGHALAYA,1938,27.2,16.2,138,202,247.3,581,510.6,435.2,431.4,141.8,55.2,0.6 +ASSAM & MEGHALAYA,1939,1.5,33.6,11.2,178.3,349.6,533.7,484.9,224.9,389,190.1,2.8,1.9 +ASSAM & MEGHALAYA,1940,1.5,57.9,180.8,72.6,391.9,500.5,435.4,330.8,353.7,98.1,19,9.5 +ASSAM & MEGHALAYA,1941,4.5,32.7,53.8,245.1,522.4,541.7,409.4,361.8,368.1,143.3,16.7,9.9 +ASSAM & MEGHALAYA,1942,7.4,25.3,130.9,233.5,469.1,618.8,332.9,328.8,462.9,40,27.5,0 +ASSAM & MEGHALAYA,1943,54.4,34.1,170.6,247.7,406.6,513.3,391.9,417.9,365,86.7,9.4,6.2 +ASSAM & MEGHALAYA,1944,39.2,21.3,62.9,139,518,490.6,386.9,304.1,455.6,89.7,7.2,9.9 +ASSAM & MEGHALAYA,1945,37,39.7,67.5,139.5,396.5,500.5,507.7,493.5,283.2,196.6,1.1,2.9 +ASSAM & MEGHALAYA,1946,0.4,19.4,102.6,178.5,328,582.6,547,297.9,266.8,346.3,8.6,1.4 +ASSAM & MEGHALAYA,1947,3.9,9,83.9,243.4,380.2,486.4,570.8,285,362.3,202.2,3,13.1 +ASSAM & MEGHALAYA,1948,10.1,42.4,59.5,260.4,681.2,599.4,534.8,448.3,314.4,176.6,50.6,7.8 +ASSAM & MEGHALAYA,1949,22.9,23.1,76,371,335.9,683.4,444.1,461.9,392.6,148.3,13,11.1 +ASSAM & MEGHALAYA,1950,21.2,51.2,93.5,112.9,282.1,562,389.5,490.9,200.7,134.6,49.9,3.9 +ASSAM & MEGHALAYA,1951,4.9,3.3,53.5,242.9,250.4,588.8,550.5,387.4,209.7,270.5,46.2,5.8 +ASSAM & MEGHALAYA,1952,4.4,10.4,107.5,155.9,465.6,399.9,573.9,467.6,343.7,277.1,43.2,2.1 +ASSAM & MEGHALAYA,1953,18,13.3,227.3,157.4,377.7,405.5,461.9,284.5,451.5,144,5.8,13.1 +ASSAM & MEGHALAYA,1954,22,45.7,40.6,266,490.3,594.3,572.2,427.3,218.8,155.5,2,24.5 +ASSAM & MEGHALAYA,1955,9.2,9.5,143.5,210.2,328.8,546.5,567,415.8,283.3,149.3,89.6,8.5 +ASSAM & MEGHALAYA,1956,29.8,3.2,121.7,204.8,533.5,712.4,440.3,382.1,171.9,149.3,44.3,9.6 +ASSAM & MEGHALAYA,1957,66.9,33.5,20.1,136,449.2,446,407.2,366.6,208.7,99.9,12.2,10.7 +ASSAM & MEGHALAYA,1958,18.8,44.2,10.3,192.4,545.2,393.2,361.1,546.9,278.7,212.4,4.6,18.7 +ASSAM & MEGHALAYA,1959,30.8,45.6,109.9,144.1,470.6,517.6,364.2,255.9,286.8,301.7,8.3,0.2 +ASSAM & MEGHALAYA,1960,0.1,11.1,38.7,45.9,315.2,454.8,553.7,349.2,479.4,60.9,29.3,3.9 +ASSAM & MEGHALAYA,1961,11.5,19.7,253.8,123,355.8,335.4,352.9,347.4,226.1,128.1,34.8,6.9 +ASSAM & MEGHALAYA,1962,24.9,27.6,17.3,134.7,369,601.4,338.8,509.8,137.4,118.2,11.1,5.8 +ASSAM & MEGHALAYA,1963,3.3,7.9,51.1,183.3,288.4,596,557.3,432,211.7,144.1,29.4,7.2 +ASSAM & MEGHALAYA,1964,9.6,22.6,80.7,268.3,297.4,557.9,600.3,340.4,326.3,205.1,8.3,12.8 +ASSAM & MEGHALAYA,1965,5.1,73.6,52.5,158.2,327.1,501,399.6,422.1,304,82.4,60.8,12.5 +ASSAM & MEGHALAYA,1966,20,23.6,36.1,164.3,323.7,780.5,507.1,518.2,248.1,124.5,31.8,11.4 +ASSAM & MEGHALAYA,1967,11.4,37.3,105.9,112,287.5,395.7,497.7,258.9,300.6,97.6,14.5,4.2 +ASSAM & MEGHALAYA,1968,22.9,19.8,78.2,170.8,432.3,595,494.1,346,231.7,113.8,23.9,2.3 +ASSAM & MEGHALAYA,1969,27.4,1.8,99.7,178.7,254.1,567.2,461.1,446.7,185.4,80.9,27.5,1.8 +ASSAM & MEGHALAYA,1970,47,35.8,89.7,204.8,493.4,658.3,475.3,389.2,390.7,246.4,17.8,0.1 +ASSAM & MEGHALAYA,1971,36.9,18.4,37.6,142.9,236.3,437.1,407.9,474.8,231.6,199.5,80,12.1 +ASSAM & MEGHALAYA,1972,18,39.6,99.3,260.3,339.3,576.2,441,271,227.1,99.1,2.9,5.3 +ASSAM & MEGHALAYA,1973,9.8,82.8,28.9,252.1,324.5,634.4,364.6,395,348.6,128.7,67.4,35.3 +ASSAM & MEGHALAYA,1974,31.6,11.4,78.7,255.8,369.4,627,789.3,510.9,429.1,271,27.1,2.3 +ASSAM & MEGHALAYA,1975,10,22.3,18.8,227.9,321.2,337.6,522.4,314.8,299.1,172.7,18,5.8 +ASSAM & MEGHALAYA,1976,5.7,36.3,92.6,139.4,179.5,509.7,390.5,358.5,149.1,67.3,24.3,3.1 +ASSAM & MEGHALAYA,1977,9.1,16.2,74.4,375.1,391.6,405,461.3,461.9,176.9,175.7,47.7,21.8 +ASSAM & MEGHALAYA,1978,5,8.2,44.3,100.9,253.7,506.6,444,255.8,271.8,65,55.9,0.6 +ASSAM & MEGHALAYA,1979,3.3,8.7,38.2,93.8,225.6,307.8,640.1,252.4,342.3,216.6,23.4,36.2 +ASSAM & MEGHALAYA,1980,13.1,36.3,96.9,173.2,289.4,389.5,460,417.8,269.8,141.6,1,0.6 +ASSAM & MEGHALAYA,1981,29.6,30.7,91,152.1,251.5,273.1,543.5,340.7,274.5,47.5,9,36.1 +ASSAM & MEGHALAYA,1982,1.8,31.1,50.6,254.3,215.5,517.2,539.9,377.2,286.4,62,29.9,16.4 +ASSAM & MEGHALAYA,1983,16.4,37.8,90,165.9,278.2,362,582.9,450.2,449.1,156.7,7,24 +ASSAM & MEGHALAYA,1984,22.4,7.2,28.6,202.8,416,478.5,995.2,360.7,458,159.6,5.7,22.2 +ASSAM & MEGHALAYA,1985,8.7,32.3,152.6,268.1,335,496,714.6,349.4,335.1,74.4,15.8,19.7 +ASSAM & MEGHALAYA,1986,16.4,11.7,28,282.8,159.7,404.2,465,416.4,441.1,300.5,59.5,7.4 +ASSAM & MEGHALAYA,1987,8.8,27.8,110.4,197.6,199,525.8,766.5,433,445.4,157.8,37.6,11.9 +ASSAM & MEGHALAYA,1988,7.3,46.1,82.3,157.9,568.6,403.8,644.2,773.4,329.6,168.3,74.3,5.9 +ASSAM & MEGHALAYA,1989,10.5,51.6,30.4,183.4,260.1,488.8,747,267.9,425.8,194.1,16.2,6.5 +ASSAM & MEGHALAYA,1990,19.2,46.9,96.7,333.7,304.1,513.8,446.4,348.8,441.1,208.3,7,5.2 +ASSAM & MEGHALAYA,1991,13.7,30.2,62.1,175.7,495.8,517.8,440.5,388.2,437.3,226.2,9.4,41.1 +ASSAM & MEGHALAYA,1992,14.7,46.3,62,114.5,292.3,450.9,491.4,339.3,296.9,125,14.3,12.1 +ASSAM & MEGHALAYA,1993,73.3,96.9,86.1,138.5,374,619.5,576.9,477.5,296,130.3,8.2,2 +ASSAM & MEGHALAYA,1994,26.6,42.5,157.2,161.3,282,477.6,308.6,308.7,178.5,147,15.9,15.4 +ASSAM & MEGHALAYA,1995,8.7,39.7,42,145.7,299.1,663.3,558.4,543.3,404,80.7,94,7.1 +ASSAM & MEGHALAYA,1996,12.8,23.2,101.6,99.2,415.6,397.7,499.6,421.8,224.4,267.2,3.5,0.2 +ASSAM & MEGHALAYA,1997,18.2,40.7,91.8,131.9,241.8,569.9,511.2,315.5,366.8,36.4,12.6,35.4 +ASSAM & MEGHALAYA,1998,11.8,31.5,136.8,185.7,250.6,581.2,604.4,549.5,212.3,190,48.9,0.4 +ASSAM & MEGHALAYA,1999,2.4,0.5,38.7,150.6,466.8,429,596.7,487.5,196.9,208.6,14.1,2.3 +ASSAM & MEGHALAYA,2000,20.5,13.7,65.9,238.5,375.1,540.2,313.3,513.2,299.9,83.9,22.2,0.4 +ASSAM & MEGHALAYA,2001,5.5,39.7,30.9,198.6,266.4,399.8,451.1,295.6,266.8,201.4,20.5,2.3 +ASSAM & MEGHALAYA,2002,20.2,5.7,83.3,279.9,286.9,502.5,565.1,312.5,209.7,49.5,69.4,7.9 +ASSAM & MEGHALAYA,2003,9.5,41.5,96.9,213.8,235.8,551.4,481.2,290.7,250,231.8,13,18.6 +ASSAM & MEGHALAYA,2004,15.3,19.5,72.8,340.8,342.2,397.9,848.4,286.2,317.2,340.8,6.5,6.6 +ASSAM & MEGHALAYA,2005,22.8,30.5,172.2,207.5,281.2,373.9,474.5,501.9,174.9,218.6,8.9,1.3 +ASSAM & MEGHALAYA,2006,0.7,40.9,20.8,169,325.7,395.9,350.3,209.7,252.3,97.6,25.1,10.7 +ASSAM & MEGHALAYA,2007,1.5,73.7,23.5,242.7,219.8,489.7,682.7,308,494.7,164.7,47.7,4 +ASSAM & MEGHALAYA,2008,29.7,14.5,107.5,156.2,210.6,414.6,493.2,508.6,267.5,133.4,2.2,1.6 +ASSAM & MEGHALAYA,2009,7.9,11.6,44.9,134.9,246.5,321.1,426.3,533.8,192.3,135.9,9,4 +ASSAM & MEGHALAYA,2010,0.5,3.1,99.6,389.3,393.4,569.7,415.1,387,318.3,116.2,11.6,7.6 +ASSAM & MEGHALAYA,2011,11.1,11.4,109,92.1,238.3,316,395.8,302.6,221.6,30.2,11.9,3.5 +ASSAM & MEGHALAYA,2012,15.2,6.9,28.8,279.1,185.8,729.7,444.3,289.2,411.6,199.4,17.1,2.3 +ASSAM & MEGHALAYA,2013,1.1,9.6,44,112.8,346.7,286.2,367.8,289.7,229.3,126.3,1,2 +ASSAM & MEGHALAYA,2014,2,28.3,29.3,51.5,351.1,426.4,374.4,484.6,420.2,35,3,0.4 +ASSAM & MEGHALAYA,2015,13.4,15.5,37.5,250.9,332.5,558.5,300.1,590.9,279.9,62.6,14,15.2 +NAGA MANI MIZO TRIPURA,1915,13.9,35.5,89.4,198.9,448.9,465.2,478,510.5,310.4,231.1,37.7,0.4 +NAGA MANI MIZO TRIPURA,1916,13.2,17.5,37.3,212.5,131.8,363.8,491.4,419.3,388.5,417.5,55,7.1 +NAGA MANI MIZO TRIPURA,1917,1.3,81.8,25.6,289.1,121.7,356.6,387.3,375.8,371.7,147.9,63.3,0.1 +NAGA MANI MIZO TRIPURA,1918,3.8,6.1,138.6,224.8,361.9,573.8,638.5,569.3,363.9,75.7,52.3,4.5 +NAGA MANI MIZO TRIPURA,1919,17.5,18.1,17.3,151.1,132.7,358.4,403.5,372.9,375,111.1,84.8,5.7 +NAGA MANI MIZO TRIPURA,1920,5.1,56.8,272.7,143.7,167.9,363.3,443.6,449.6,326.2,137,7.1,2.7 +NAGA MANI MIZO TRIPURA,1921,46.9,24.1,179.2,178.2,271.3,443.8,387.8,382.4,430.7,286.7,4.7,2.4 +NAGA MANI MIZO TRIPURA,1922,8.5,4.5,17.3,119.3,182.1,569.1,479.6,536.6,330.9,170.8,38.2,5.8 +NAGA MANI MIZO TRIPURA,1923,0,64.9,13.5,216.2,296.1,506.2,411.9,488.5,374.9,210.9,93.7,8.7 +NAGA MANI MIZO TRIPURA,1924,3.7,45.2,14.1,170.9,295.1,478.6,462.7,482.2,356.2,179.2,213.7,0.1 +NAGA MANI MIZO TRIPURA,1925,43,36.4,35,195.6,385.5,362.4,461.4,440.3,280.1,170.7,37,0 +NAGA MANI MIZO TRIPURA,1926,24,70.1,155.5,177.1,229.7,361.1,477.6,441.7,287.3,155.6,36.4,47.1 +NAGA MANI MIZO TRIPURA,1927,41.4,103.5,56.3,360.4,245.2,363.8,498.4,456.6,533.9,178.4,48.6,0.8 +NAGA MANI MIZO TRIPURA,1928,4.3,28.5,52.3,65.3,309,463.2,397.7,468.3,392.8,272.5,18.4,0.1 +NAGA MANI MIZO TRIPURA,1929,38.3,7.7,48,242.7,433,859.1,385,371.4,314.8,121.7,11.3,26.4 +NAGA MANI MIZO TRIPURA,1930,22.6,53.6,107.5,161,223.1,506.6,438.2,385.6,256.7,100.8,230.7,1 +NAGA MANI MIZO TRIPURA,1931,2.7,53,59.6,109.9,360.6,388.8,520,300.4,364.1,209.9,69.2,23 +NAGA MANI MIZO TRIPURA,1932,6.1,69.7,99.1,162.2,323.6,600.7,491.2,402.4,376.2,80.4,145.9,4.3 +NAGA MANI MIZO TRIPURA,1933,2.5,19.7,34.3,167,298.4,463.4,476.3,603.5,259.6,113.4,9.6,4.1 +NAGA MANI MIZO TRIPURA,1934,16,135.1,57.1,191.1,313.2,567.2,618.6,368.3,336.4,227.7,197.3,12.8 +NAGA MANI MIZO TRIPURA,1935,0.6,48.3,43.7,173.3,171.2,547.1,506.4,553.5,339.1,124.8,33.1,2.2 +NAGA MANI MIZO TRIPURA,1936,19.3,73.1,104.6,227.5,489.5,418.3,529.7,507.6,309.4,202.6,22.6,13 +NAGA MANI MIZO TRIPURA,1937,0.1,60,37.3,85.4,337.1,528.9,490.1,614.8,291,207.1,17.9,72 +NAGA MANI MIZO TRIPURA,1938,29.2,29.2,133.8,153.6,429,494.6,413.6,491.4,441.7,243.9,111.7,0 +NAGA MANI MIZO TRIPURA,1939,2.6,59.3,34.5,203.7,274.4,449.6,638.8,333.9,380.8,198.8,30,2 +NAGA MANI MIZO TRIPURA,1940,0.3,74.6,230.9,35.5,325.6,496.2,458.2,345.7,373.3,131.6,31.4,23.6 +NAGA MANI MIZO TRIPURA,1941,14.1,63.1,34.1,256.6,563.1,689.4,489.5,372.6,288.2,143.3,44.2,7.9 +NAGA MANI MIZO TRIPURA,1942,6,15.7,78.7,250.4,305.3,528.7,403.3,461.8,420.8,65.4,143.2,1.5 +NAGA MANI MIZO TRIPURA,1943,68.4,28.8,131.3,143.7,210.3,496.1,422.5,485.2,354.9,84,2.2,0.6 +NAGA MANI MIZO TRIPURA,1944,91.4,20.2,69.7,128.6,321.8,670.5,527.9,440.7,490.8,110.5,4.4,0.7 +NAGA MANI MIZO TRIPURA,1945,68.7,60.9,67.7,170.4,354.2,595.3,573.9,509.7,378.8,205.6,13.3,53.3 +NAGA MANI MIZO TRIPURA,1946,0,19.1,189.3,237.5,352.4,517.5,647.7,397.9,305.1,311.4,7.7,50.5 +NAGA MANI MIZO TRIPURA,1947,3,4.3,44.3,176,374.4,723.9,640.5,491.1,415.6,306,1.7,29.7 +NAGA MANI MIZO TRIPURA,1948,5.5,65.1,54.3,206.5,468.4,410.3,500.1,472.5,424.2,140,71.4,3.7 +NAGA MANI MIZO TRIPURA,1949,8.1,12.6,67.4,370.2,419.6,562.8,507.7,416.9,427.5,177.3,4.2,2 +NAGA MANI MIZO TRIPURA,1950,12.3,59.7,79.1,87.8,207.4,407.4,449.4,535.3,255.4,237.5,82.9,8.7 +NAGA MANI MIZO TRIPURA,1951,3.9,0.2,62.4,360.1,233.7,495,436.2,440.5,191.1,310.6,54.9,20.8 +NAGA MANI MIZO TRIPURA,1952,9.6,6.5,97.1,208.2,345.9,442.6,556.8,422.8,320.5,323.6,76.2,1.1 +NAGA MANI MIZO TRIPURA,1953,7.4,16.5,98.4,90,453.5,570.9,387,424.3,443.8,136.2,25,8.7 +NAGA MANI MIZO TRIPURA,1954,12.8,52.4,37.7,165.3,300.2,619.8,491.4,558.3,361.7,294.2,2.4,8.8 +NAGA MANI MIZO TRIPURA,1955,6.2,5.7,161.3,213.6,280.6,461.4,559.2,514.7,253.8,183.5,220.2,5.1 +NAGA MANI MIZO TRIPURA,1956,18.3,1.3,102.2,115.5,474,758.9,529.8,469.6,257.5,187.1,101.1,7.4 +NAGA MANI MIZO TRIPURA,1957,59.1,60.6,10.2,104.8,300.1,409.1,425.7,429.1,354.4,148.3,0.8,1.7 +NAGA MANI MIZO TRIPURA,1958,6.2,87.2,18.3,93.7,400.6,256.4,308.3,254.8,299.5,238.5,2.3,2.7 +NAGA MANI MIZO TRIPURA,1959,39.9,77.7,148,74,260,378.5,396.3,357.3,239.1,352.8,0.1,3.9 +NAGA MANI MIZO TRIPURA,1960,0,6.1,24.9,34.2,193.8,406.4,374.9,286.6,255.6,165.9,51.3,0.3 +NAGA MANI MIZO TRIPURA,1961,9.5,37.5,193.3,76.9,212.1,332.5,316.5,342.8,258.8,96.1,24.4,0.8 +NAGA MANI MIZO TRIPURA,1962,11.2,26.6,5.4,139.8,156.6,554.6,298.8,356.6,142.5,130.4,0,0 +NAGA MANI MIZO TRIPURA,1963,0,4.6,50.7,179.3,278.5,687.9,510.3,383,494.6,373.4,6.5,1.2 +NAGA MANI MIZO TRIPURA,1964,4,37.1,67.9,280.6,303.2,357.8,484.4,242,213.3,284.7,46.3,7.5 +NAGA MANI MIZO TRIPURA,1965,1.9,61.5,35.9,59.4,169.5,520.5,373.4,323,262.2,164.1,22.6,37 +NAGA MANI MIZO TRIPURA,1966,15,2.7,39.8,85.3,190.3,666.8,399.3,405,361.5,207,40.9,65.1 +NAGA MANI MIZO TRIPURA,1967,51.5,33.6,129.5,195.8,247.8,311.7,388,334,341.3,184.8,10.9,1.1 +NAGA MANI MIZO TRIPURA,1968,17.3,20.9,80.9,142.2,253.8,396.1,531.9,391,178.3,68.9,28.7,0 +NAGA MANI MIZO TRIPURA,1969,20.1,2.4,124.6,189.8,73.5,606.6,868.3,1347.2,228.1,126.3,23.2,0 +NAGA MANI MIZO TRIPURA,1970,45.8,306.3,103.6,160.1,315.9,541.7,976.7,836.7,486.2,425.6,116.7,1 +NAGA MANI MIZO TRIPURA,1971,28.4,67.6,12.4,312.6,248,543.2,624,553.1,421.2,171.3,94.6,4.5 +NAGA MANI MIZO TRIPURA,1972,4.5,46.3,32.8,145,169.1,235.6,262.7,270.8,129.6,45,12.5,0 +NAGA MANI MIZO TRIPURA,1973,16.8,46,29.3,135.3,329,367.2,260,323.9,232.7,159.7,162.6,43.6 +NAGA MANI MIZO TRIPURA,1974,8.9,2.4,98.7,160.7,218.8,438.1,517.3,361.5,273.4,167.8,81.8,0.2 +NAGA MANI MIZO TRIPURA,1975,1.2,24.5,17.5,164.2,243.7,348.8,526.6,252.9,278.9,205.1,146.1,0.3 +NAGA MANI MIZO TRIPURA,1976,3.3,51.3,113.7,187.8,287.1,861.1,507.8,365,175.1,64.8,34.2,0.1 +NAGA MANI MIZO TRIPURA,1977,14.2,34.9,27.7,383.8,303.7,452,389.1,355.8,193,149.6,38.2,16.6 +NAGA MANI MIZO TRIPURA,1978,0.7,4,51.6,147.5,449.4,496.7,357.8,277,273.9,70.4,21.6,0 +NAGA MANI MIZO TRIPURA,1979,1.3,8.3,72.9,55.4,158.8,361.8,370,309.7,272.9,57.9,47.1,33.1 +NAGA MANI MIZO TRIPURA,1980,7.2,42.4,101.6,145.7,461.5,373.3,327.4,312.1,364.4,168.5,0.1,0.7 +NAGA MANI MIZO TRIPURA,1981,26.6,26.3,105.5,268,377.5,223.2,448.1,329.7,213.2,33.1,11.5,9.6 +NAGA MANI MIZO TRIPURA,1982,0.1,54.8,73.8,224.6,103.3,371.9,373.6,466.3,284.5,32.8,38.1,3.7 +NAGA MANI MIZO TRIPURA,1983,19.2,49.3,244.9,303.8,402.4,380.9,329.7,392.8,239.7,189,6.2,30.2 +NAGA MANI MIZO TRIPURA,1984,17.4,1.8,5.1,121.1,743,514.6,255.3,387.2,250.2,120.4,9.1,28.8 +NAGA MANI MIZO TRIPURA,1985,6.4,36.2,87.1,162.8,377.6,507.5,275.5,301.9,279.4,52.3,8.7,9.9 +NAGA MANI MIZO TRIPURA,1986,8.8,7.3,17.7,263.4,153,325.5,376.9,364.6,355.8,311.7,131.2,26.3 +NAGA MANI MIZO TRIPURA,1987,7.7,13.1,68.9,195,144.9,420.8,447.2,422.7,388.6,172.2,74,6.1 +NAGA MANI MIZO TRIPURA,1988,0.4,33.6,83.5,141.9,470.2,466.4,540,407.4,298.6,298.6,75.3,4.3 +NAGA MANI MIZO TRIPURA,1989,0.7,27.1,17.2,139.1,206.9,367.1,470.6,393.6,376.3,352.9,5.3,2.3 +NAGA MANI MIZO TRIPURA,1990,0.2,32.5,197.6,274.9,314.6,380,387.9,344.7,339.4,168.2,99.3,42.9 +NAGA MANI MIZO TRIPURA,1991,27.5,41.9,64.1,253.5,619.4,456.6,297.3,326,387.3,291.4,28,58.9 +NAGA MANI MIZO TRIPURA,1992,4.4,67.1,23.3,95.7,250.2,343.8,439.1,397.2,323.6,243.2,25.4,8.5 +NAGA MANI MIZO TRIPURA,1993,11.1,139.3,92.8,155.4,499.4,539.6,530.9,428.9,302.9,165.4,16,0 +NAGA MANI MIZO TRIPURA,1994,9.5,30.1,219.3,134.7,130.7,256.2,305.7,335.7,161.6,102,27,0 +NAGA MANI MIZO TRIPURA,1995,5.4,36.5,52,68.7,254.5,425.8,403.6,495.9,312.5,129.7,155.3,0.2 +NAGA MANI MIZO TRIPURA,1996,8.1,30,153.9,97.3,284.2,314,395.1,363.5,341.3,179.7,18.8,8.7 +NAGA MANI MIZO TRIPURA,1997,11.3,23.7,134.4,112,255,334,598.5,273.9,361.6,48.6,17.8,41.3 +NAGA MANI MIZO TRIPURA,1998,28.1,31.6,136.4,164.6,352.2,297.6,480.6,367.3,222.3,97.9,46.5,0.3 +NAGA MANI MIZO TRIPURA,1999,2.2,0,33.5,26.3,397.5,358.4,422.7,391.3,338.5,227.7,16.5,18.3 +NAGA MANI MIZO TRIPURA,2000,22.5,26.1,129.1,214.2,403.6,325.4,269.2,465,298.3,185.2,24.2,1.1 +NAGA MANI MIZO TRIPURA,2001,1.5,46.9,38.8,83.6,313.8,478,322.6,263,269,266.4,65.4,0.2 +NAGA MANI MIZO TRIPURA,2002,18.6,3.9,62.7,143.8,438.7,351.6,462.2,358.4,225.7,98.9,71.9,6 +NAGA MANI MIZO TRIPURA,2003,3.8,11.5,78,158.9,265.6,590.9,262.4,281.7,288.4,175.1,5.1,40.9 +NAGA MANI MIZO TRIPURA,2004,4.8,2.7,11,341.5,211,449.2,558.6,284.3,351,132.7,6.4,0.5 +NAGA MANI MIZO TRIPURA,2005,6.4,15,118.6,98.1,237,212.3,301.5,334.8,292.6,194.3,15.6,10.5 +NAGA MANI MIZO TRIPURA,2006,0.6,12.4,5.5,111.1,382.2,445.6,335,241.6,231.1,90.4,13,3.7 +NAGA MANI MIZO TRIPURA,2007,7.9,54.7,28.7,220.4,276.7,446.3,430,373.8,426.6,180.5,82.6,10.1 +NAGA MANI MIZO TRIPURA,2008,30.7,13.8,49.6,54.9,200.8,327.4,333.3,358.6,223.7,150.2,4.7,1.2 +NAGA MANI MIZO TRIPURA,2009,0,3.2,27.5,93.1,209.5,271.9,295.8,380.9,271.3,158.2,26.1,0.2 +NAGA MANI MIZO TRIPURA,2010,1,7.9,85.8,161.5,294,411.6,367.5,393.2,309.8,220.2,9.2,33.5 +NAGA MANI MIZO TRIPURA,2011,12.6,3.6,51.4,81.1,334.9,374.2,313.3,367.6,258.3,92.6,2.4,0.2 +NAGA MANI MIZO TRIPURA,2012,24.5,10.2,20.3,243.5,163.5,396.2,280.1,342.7,248.7,160.9,32,0.4 +NAGA MANI MIZO TRIPURA,2013,0.2,5.7,19.7,60.3,348.9,206.6,255.9,291.3,241.4,125.6,0.3,1.2 +NAGA MANI MIZO TRIPURA,2014,1.2,21,25.4,49.6,192.5,268.3,295.7,372.3,300.9,69.6,3.3,0.1 +NAGA MANI MIZO TRIPURA,2015,14.4,14.2,21.6,253.5,198.3,283.9,413.6,334.2,255.9,118.7,3.9,10 +SUB HIMALAYAN WEST BENGAL & SIKKIM,1915,1,52.9,50.4,72.7,366.4,352.7,509.1,610.7,359,116.5,13,0.6 +SUB HIMALAYAN WEST BENGAL & SIKKIM,1916,6.6,17.6,8.7,165.3,305.4,649,1020.8,514.9,571.9,209.9,5.6,1.1 +SUB HIMALAYAN WEST BENGAL & SIKKIM,1917,1,21.4,15.1,23.4,226.1,619.4,740.5,410.5,428,354.3,1.7,0.4 +SUB HIMALAYAN WEST BENGAL & SIKKIM,1918,0.8,1.5,17.2,141.9,306.3,682.6,703.8,746.9,345,33.6,2,0.1 +SUB HIMALAYAN WEST BENGAL & SIKKIM,1919,19.6,5,5.5,93.4,177.8,558,704,285.9,518.2,170.5,6.1,0.4 +SUB HIMALAYAN WEST BENGAL & SIKKIM,1920,0.8,24.2,80.5,66,148.9,615.2,389.8,608.7,788.8,161,0.2,0 +SUB HIMALAYAN WEST BENGAL & SIKKIM,1921,37.9,6,54.9,157.4,503.1,589.2,970.2,521.4,479.6,183.8,2.7,7.1 +SUB HIMALAYAN WEST BENGAL & SIKKIM,1922,17.8,2.5,5.6,45.4,217.1,803,719.8,526.3,571.2,87.2,1.9,3.9 +SUB HIMALAYAN WEST BENGAL & SIKKIM,1923,0,40.2,3.8,104.2,336.5,536.9,656.3,228.1,504.1,76.5,0.6,1.7 +SUB HIMALAYAN WEST BENGAL & SIKKIM,1924,0.8,3.5,4.1,110.9,264.7,693.1,732,491.2,439,128.2,81.4,1.9 +SUB HIMALAYAN WEST BENGAL & SIKKIM,1925,3,6.1,13.1,261.6,284.6,554.1,446,664.5,568.6,69.3,14.8,0.8 +SUB HIMALAYAN WEST BENGAL & SIKKIM,1926,12.7,2.9,66.5,43.7,236.1,580.8,853.8,396.4,331.8,102.8,0.2,9.9 +SUB HIMALAYAN WEST BENGAL & SIKKIM,1927,21,33.9,56.4,44.5,300.4,682.1,518.1,408.4,543.5,107.3,16.3,0.3 +SUB HIMALAYAN WEST BENGAL & SIKKIM,1928,25.5,11.8,5.4,92.6,210.8,527.8,666.2,660.9,395.9,255.3,14.9,1.9 +SUB HIMALAYAN WEST BENGAL & SIKKIM,1929,49.7,2,37.9,126.4,235,594,554.5,392.6,400.9,513.5,10.5,14.3 +SUB HIMALAYAN WEST BENGAL & SIKKIM,1930,17.6,19.9,51.7,61.3,192.3,495.1,346.1,475.8,329.6,140.4,52,2.4 +SUB HIMALAYAN WEST BENGAL & SIKKIM,1931,2.8,9.7,28.2,98.6,296.3,523.7,793.8,408.7,585.3,112.1,12.7,4.5 +SUB HIMALAYAN WEST BENGAL & SIKKIM,1932,3,7,8.6,72.4,255.9,731.3,363.5,582.9,380.1,154.4,132.1,24.4 +SUB HIMALAYAN WEST BENGAL & SIKKIM,1933,16.5,9.4,0.5,112.4,206,565.3,653.3,512.3,284.1,149.3,3.9,1.1 +SUB HIMALAYAN WEST BENGAL & SIKKIM,1934,10.5,60.2,0.4,86.8,227.5,517.2,656.2,455.6,436.3,151.4,4,6.8 +SUB HIMALAYAN WEST BENGAL & SIKKIM,1935,9.5,28.4,16.6,24.2,248.9,609.2,365.4,935.1,521.7,18,6.3,1.8 +SUB HIMALAYAN WEST BENGAL & SIKKIM,1936,3.7,8.9,46.7,85.7,274.8,410.4,663.8,508.7,536,113.2,0.1,8.3 +SUB HIMALAYAN WEST BENGAL & SIKKIM,1937,0,68.6,2.2,63.7,270.2,317.2,477.3,654,354.8,351.6,6.7,2 +SUB HIMALAYAN WEST BENGAL & SIKKIM,1938,0.8,8.2,7.6,76.2,460.9,889.2,699.4,539,461,102.4,4.4,0.1 +SUB HIMALAYAN WEST BENGAL & SIKKIM,1939,0,19.8,5.8,6.7,268.3,626.3,605.9,460.5,444.6,146.3,6.5,0.3 +SUB HIMALAYAN WEST BENGAL & SIKKIM,1940,0.1,54.2,121.2,24.7,217.1,469.1,600.3,400.8,408.4,11.7,9.5,3.1 +SUB HIMALAYAN WEST BENGAL & SIKKIM,1941,3.8,6.3,12.7,85.4,378.8,470.1,544.9,582.1,452.8,154.5,22,4.5 +SUB HIMALAYAN WEST BENGAL & SIKKIM,1942,6.6,19.5,45.7,186.9,253.8,537.8,382.2,363.8,511.7,49.7,7.6,0 +SUB HIMALAYAN WEST BENGAL & SIKKIM,1943,42,38.8,30.3,185,209.6,828.9,450,555.7,532.8,39.6,4,0.9 +SUB HIMALAYAN WEST BENGAL & SIKKIM,1944,37.1,15.7,53.9,105.9,248.8,585.9,446.9,416.7,613.3,52.1,6.9,0 +SUB HIMALAYAN WEST BENGAL & SIKKIM,1945,27.8,21.3,6.9,120.3,305.4,398.3,551.3,680,406.9,235.9,0,1.3 +SUB HIMALAYAN WEST BENGAL & SIKKIM,1946,0,11.6,34.2,182.8,248.7,523.4,599.9,401.1,461.7,297,7.8,0.2 +SUB HIMALAYAN WEST BENGAL & SIKKIM,1947,1.6,0.8,93.4,76,171.1,377.7,688.1,439.2,542,141.9,1.9,0.5 +SUB HIMALAYAN WEST BENGAL & SIKKIM,1948,0.5,15.5,21.5,178.3,357.5,556.3,798,415.5,349.2,185.8,57.1,1.3 +SUB HIMALAYAN WEST BENGAL & SIKKIM,1949,9.6,25.5,14.1,281.8,351.9,660.9,645.1,586.3,395.8,311.4,0.1,5.1 +SUB HIMALAYAN WEST BENGAL & SIKKIM,1950,0.3,19.6,27.9,48.4,210.4,747.5,570.9,639.9,366.2,131,0.2,0.3 +SUB HIMALAYAN WEST BENGAL & SIKKIM,1951,1,0.5,22.7,69.3,239.8,546.5,778.3,503.7,326.1,158,37.3,0 +SUB HIMALAYAN WEST BENGAL & SIKKIM,1952,1.3,22.2,80.8,168.2,420.8,580.6,713,522.9,587.9,148.8,20.7,3.7 +SUB HIMALAYAN WEST BENGAL & SIKKIM,1953,28.2,10.7,88.1,64.5,253.2,427.7,755.2,315.5,540.7,105.7,0.4,4.1 +SUB HIMALAYAN WEST BENGAL & SIKKIM,1954,15.7,10.2,10,71.1,308.9,841.5,961.5,496.2,250.8,85.6,0.7,3.5 +SUB HIMALAYAN WEST BENGAL & SIKKIM,1955,4.6,2.8,34.6,71.5,220.5,541,1064.6,626.2,365,51.3,6.1,4.6 +SUB HIMALAYAN WEST BENGAL & SIKKIM,1956,14.8,1.4,42.6,164.9,420.9,747.9,471.4,486.8,285.2,215.8,30.1,3.6 +SUB HIMALAYAN WEST BENGAL & SIKKIM,1957,103,8.9,25.5,10.6,167.7,430.2,650.6,535.4,208.4,73.7,7.7,3.8 +SUB HIMALAYAN WEST BENGAL & SIKKIM,1958,8.1,17.5,14.8,120.6,269.4,487.8,500.3,898.1,353.2,145.6,1.8,3 +SUB HIMALAYAN WEST BENGAL & SIKKIM,1959,99.8,5.7,64.3,111.6,218.7,565.9,538.6,291.7,337.9,345,0.9,0.1 +SUB HIMALAYAN WEST BENGAL & SIKKIM,1960,0.1,6.5,52,4.8,293.2,407.2,764.5,387.2,623,71.9,0,0 +SUB HIMALAYAN WEST BENGAL & SIKKIM,1961,11.5,38.9,19.6,39.3,279.2,448.3,448.9,542,341.5,127.5,2.1,5.4 +SUB HIMALAYAN WEST BENGAL & SIKKIM,1962,33,21.7,14.4,57.2,318.7,537.1,516.6,663.2,279.5,77.4,0.4,2.6 +SUB HIMALAYAN WEST BENGAL & SIKKIM,1963,2.1,0.7,32.2,103.9,323.6,409.4,676.1,611.9,267.7,152.5,21.7,3 +SUB HIMALAYAN WEST BENGAL & SIKKIM,1964,0,1.2,9.4,127,184.7,613.2,959.1,445.6,486.8,151,3.4,0.1 +SUB HIMALAYAN WEST BENGAL & SIKKIM,1965,0.2,22,48.2,69.5,232.4,444.6,697.6,830.2,345.7,39.5,32.7,0.2 +SUB HIMALAYAN WEST BENGAL & SIKKIM,1966,29.5,7.6,3,51.5,231.7,287.5,741.5,682.8,357.3,100.9,18.3,3.8 +SUB HIMALAYAN WEST BENGAL & SIKKIM,1967,2.3,0.1,98.8,85.3,213.7,727.5,901.6,274.1,409.4,128.7,7.9,11.1 +SUB HIMALAYAN WEST BENGAL & SIKKIM,1968,26.3,4.7,34.3,90.8,237.3,646.7,827.6,594.2,514.8,314.3,87.3,0.5 +SUB HIMALAYAN WEST BENGAL & SIKKIM,1969,11.5,2.8,45.1,77.5,273.3,504.8,550.5,448.2,431.2,45.8,34.1,0 +SUB HIMALAYAN WEST BENGAL & SIKKIM,1970,18,13.4,7.6,162.5,162.7,556.6,731.2,425.4,560.8,60.7,3.3,0 +SUB HIMALAYAN WEST BENGAL & SIKKIM,1971,28.4,21.3,63,239.8,244.5,757.6,599.5,542,375.4,328.7,24.8,1.9 +SUB HIMALAYAN WEST BENGAL & SIKKIM,1972,9.4,41.6,52.1,134.3,287.5,457.2,590.3,335.1,407.1,86.8,12.3,0.9 +SUB HIMALAYAN WEST BENGAL & SIKKIM,1973,13.8,35.9,40.8,82.9,324.3,679.8,426.5,424.7,474.1,281.3,16.6,3.9 +SUB HIMALAYAN WEST BENGAL & SIKKIM,1974,19.1,2.5,94.4,210.8,339,508.1,826.8,673.7,480.8,175,3,8.3 +SUB HIMALAYAN WEST BENGAL & SIKKIM,1975,20.4,29.9,15.6,83.7,251.1,493.2,808.2,263.8,515.7,174.6,1,6.6 +SUB HIMALAYAN WEST BENGAL & SIKKIM,1976,8.8,51,27.3,112.8,303.5,649.2,531.9,671.7,288,113.1,35.5,1.2 +SUB HIMALAYAN WEST BENGAL & SIKKIM,1977,6.6,16,67.6,245.6,308.1,466,502.9,627.8,316,263.7,60.8,25.3 +SUB HIMALAYAN WEST BENGAL & SIKKIM,1978,14.7,17.9,49.3,136.7,313.3,515.5,545.2,274,376.5,62.9,61.1,10.8 +SUB HIMALAYAN WEST BENGAL & SIKKIM,1979,8.1,26.8,15.1,100.6,142,261.7,741.7,432.4,427,286.5,31.7,38.1 +SUB HIMALAYAN WEST BENGAL & SIKKIM,1980,11.6,44.8,77.3,130.4,300.1,485.9,774.4,692.5,477.5,151.2,0.9,2 +SUB HIMALAYAN WEST BENGAL & SIKKIM,1981,48.8,23,77.8,185.6,273.7,468.6,833.1,540.9,453.2,38.1,9.2,17.3 +SUB HIMALAYAN WEST BENGAL & SIKKIM,1982,0.2,9.9,47,125.6,174.5,499,749.5,305.5,341.6,54.1,20,10.6 +SUB HIMALAYAN WEST BENGAL & SIKKIM,1983,26.7,56.9,35.3,87.7,335.3,557.9,758.4,295.6,535.8,125.1,3.2,20.8 +SUB HIMALAYAN WEST BENGAL & SIKKIM,1984,29.3,11.3,42.6,127.3,360.1,474.6,737.2,364.8,405.5,179.1,5.1,11.5 +SUB HIMALAYAN WEST BENGAL & SIKKIM,1985,2.2,30.5,43.2,69.5,358.6,532.7,907.4,372.7,464.5,211.9,17.4,27.3 +SUB HIMALAYAN WEST BENGAL & SIKKIM,1986,1.3,5.8,7.9,122.4,152.1,436.4,545.4,363.2,493.9,215.1,15.5,6.4 +SUB HIMALAYAN WEST BENGAL & SIKKIM,1987,2.8,35.3,79.8,152.7,148,451,791.9,836.6,530.3,150.3,5.6,1.2 +SUB HIMALAYAN WEST BENGAL & SIKKIM,1988,6.8,24.6,71.2,96.5,268.8,304.9,831.7,990.5,446.6,76,18.4,5.5 +SUB HIMALAYAN WEST BENGAL & SIKKIM,1989,21,41.6,45.8,58.1,358.4,551.3,629.8,407.8,593.6,98.9,30.7,17.6 +SUB HIMALAYAN WEST BENGAL & SIKKIM,1990,3.8,109.9,80.1,158.3,358.2,554.7,814.1,916.6,440.6,115,0.4,13.7 +SUB HIMALAYAN WEST BENGAL & SIKKIM,1991,41.5,24.2,45.8,102.7,283.7,691.4,592.6,500.9,689.5,67.8,1.7,30.4 +SUB HIMALAYAN WEST BENGAL & SIKKIM,1992,10,46.7,26,84,253.4,328.1,736.3,458,276.4,125.5,5,9.5 +SUB HIMALAYAN WEST BENGAL & SIKKIM,1993,37.6,35.2,58.8,136.9,320.5,449.6,723.9,521.6,352.2,228.8,28.4,2.4 +SUB HIMALAYAN WEST BENGAL & SIKKIM,1994,49.6,55,114.1,126.6,243.3,388,357.3,396.1,302.1,84.3,8.5,2.2 +SUB HIMALAYAN WEST BENGAL & SIKKIM,1995,17.9,41.1,50.6,84.2,349.6,859,775.3,539.2,638.5,99.7,88.6,14 +SUB HIMALAYAN WEST BENGAL & SIKKIM,1996,30.9,34.2,59.5,85,401.7,334.6,863.6,545.1,337.9,107.3,0.4,0 +SUB HIMALAYAN WEST BENGAL & SIKKIM,1997,18.9,31.3,76.4,119.5,166.9,613.3,488.1,479,443.9,41.3,16.3,56.5 +SUB HIMALAYAN WEST BENGAL & SIKKIM,1998,13.6,37,125.1,154.1,254.2,653,854.6,860.4,478.9,209.1,13.1,2.1 +SUB HIMALAYAN WEST BENGAL & SIKKIM,1999,8.7,6.2,17.9,156,335.4,550.5,831.7,751.6,404.1,246,10.7,4.5 +SUB HIMALAYAN WEST BENGAL & SIKKIM,2000,10.7,36.2,55.1,185.1,326.5,649.6,574.3,498.1,465.8,82.9,22.6,1.2 +SUB HIMALAYAN WEST BENGAL & SIKKIM,2001,4,20.5,50.2,134.8,347.2,472.2,399,424.5,434.9,282.8,36.6,5.9 +SUB HIMALAYAN WEST BENGAL & SIKKIM,2002,30.1,10,95.6,237.1,181.7,407.2,743.3,406.6,340.1,75.7,8.7,10.8 +SUB HIMALAYAN WEST BENGAL & SIKKIM,2003,17,79.2,90.1,171.4,211.7,516.6,703,354,321.4,223,16.4,19.2 +SUB HIMALAYAN WEST BENGAL & SIKKIM,2004,19.9,11.5,40.5,163.5,287.5,489.5,739.5,356.4,394.7,198.4,9,4.4 +SUB HIMALAYAN WEST BENGAL & SIKKIM,2005,19.5,21,132.1,155.5,254,446.5,704.3,564.5,229.9,271.1,8.8,0.5 +SUB HIMALAYAN WEST BENGAL & SIKKIM,2006,0.7,17,39.8,119.3,270.5,446.2,470.2,295,456.8,118.4,20.3,7.9 +SUB HIMALAYAN WEST BENGAL & SIKKIM,2007,3.1,81.1,46.6,160.1,215.1,485.1,686.3,412.4,458.6,79.5,8.8,2 +SUB HIMALAYAN WEST BENGAL & SIKKIM,2008,33.2,22.1,79.8,141.8,171.4,526.5,657.7,636.3,296.7,97.9,16.9,9.5 +SUB HIMALAYAN WEST BENGAL & SIKKIM,2009,6,40.3,55,115.2,308.7,350.6,456.1,568.4,174.6,235.1,9.1,5.6 +SUB HIMALAYAN WEST BENGAL & SIKKIM,2010,5.6,19.6,77.6,176.6,335.9,558.1,593.4,461.3,308.1,66.2,7.9,2.2 +SUB HIMALAYAN WEST BENGAL & SIKKIM,2011,8.5,19.9,71.2,135,247.8,419.8,612.3,470.3,356.3,46.7,26.7,4.3 +SUB HIMALAYAN WEST BENGAL & SIKKIM,2012,15.3,13.9,45.5,159.8,202.4,604.2,684.5,332.7,434.7,119.4,12.5,7.4 +SUB HIMALAYAN WEST BENGAL & SIKKIM,2013,3,23.6,32.1,114.7,296.5,404.9,588.4,416.3,308,199.8,16.1,2.7 +SUB HIMALAYAN WEST BENGAL & SIKKIM,2014,0.2,26.6,37.7,47.9,308.6,543.2,384.6,563.3,371.5,31.2,5.3,2.4 +SUB HIMALAYAN WEST BENGAL & SIKKIM,2015,15.7,15,64.8,149,304.6,508.2,393.3,626.6,354.9,53.6,23.8,9 +GANGETIC WEST BENGAL,1915,6.1,9.1,79.5,26.5,122.5,224.5,228.5,236.7,229.3,88.3,59,0.3 +GANGETIC WEST BENGAL,1916,0.6,2.1,0.5,58.3,42.3,378.5,148.9,320.5,283.8,286.7,78.2,0.1 +GANGETIC WEST BENGAL,1917,0.4,33.6,19.7,29.4,171.4,366.8,321.8,259.9,204.7,358.3,9.7,0 +GANGETIC WEST BENGAL,1918,1.3,0,22.9,81.1,177.8,374.6,194.2,366.8,169.2,4.1,0.3,3 +GANGETIC WEST BENGAL,1919,41.9,19.3,10.5,61.8,125.3,306,299,385.9,148.9,48,35.7,0 +GANGETIC WEST BENGAL,1920,0.4,36.7,152.5,14.6,77,127.8,380.3,294.4,171.2,106.1,2.5,0 +GANGETIC WEST BENGAL,1921,36.5,10.1,13.2,57.4,53.3,238.4,279.6,382.1,177.7,51.9,0,0 +GANGETIC WEST BENGAL,1922,7.4,3.1,1.2,22,72.3,553,269.7,400.8,244.3,75.8,4.7,1.4 +GANGETIC WEST BENGAL,1923,0.1,92.2,8.2,22.1,71.5,154.3,330.8,405.6,110.1,72.2,16.9,1.2 +GANGETIC WEST BENGAL,1924,8.2,5.3,0.3,38.5,64.9,181.2,308,260.7,254.8,82.1,62.5,0 +GANGETIC WEST BENGAL,1925,10.7,14.8,28.4,78.9,106.2,171.8,305.7,211.2,158.4,184.5,3.1,0 +GANGETIC WEST BENGAL,1926,26.4,9.5,111.3,25.6,85.5,103.7,579.3,431.3,243.7,78.9,0.9,9.1 +GANGETIC WEST BENGAL,1927,31.6,37.4,9.1,22.3,96.7,227.7,317.4,224.6,161.6,58.6,3.7,0 +GANGETIC WEST BENGAL,1928,12.8,3.2,1.6,51.3,110.9,427,428.1,325.1,113.3,149.9,1.7,0.1 +GANGETIC WEST BENGAL,1929,42.8,13.2,38.8,41.8,52.5,208.1,398.6,297.3,168.3,264.6,0,31.4 +GANGETIC WEST BENGAL,1930,1.8,12.1,19.9,18.6,86.3,186.9,410.7,307.3,200.1,41.1,95.1,1.1 +GANGETIC WEST BENGAL,1931,2.2,74.6,27.1,22.7,111.5,157.2,368.5,286.7,197,168.3,59,0.9 +GANGETIC WEST BENGAL,1932,0,12.9,5.1,31.9,196.6,151.1,297.5,259.6,177.7,64.2,110.2,0 +GANGETIC WEST BENGAL,1933,16.3,53.3,3.7,75.6,171.6,326.3,384.9,420.8,266.9,144.8,2.1,0.8 +GANGETIC WEST BENGAL,1934,5.5,19.6,0.6,39.9,58.6,200,209,269.6,197.1,85,14.9,17.8 +GANGETIC WEST BENGAL,1935,12.1,26.3,30.8,34.6,33.6,163.4,233.1,298.9,171.1,9.6,0,1.6 +GANGETIC WEST BENGAL,1936,9.8,12.6,20.3,16.4,223.8,299.9,331.4,251.4,253.9,74.7,4,7.5 +GANGETIC WEST BENGAL,1937,0,112.8,8.6,16.8,130.3,300.8,265.6,280.4,295.7,109.2,1.9,0.4 +GANGETIC WEST BENGAL,1938,15.7,33.1,2.8,8.9,234.9,233.7,244.6,310.2,160.8,78.9,14.2,0 +GANGETIC WEST BENGAL,1939,2.4,23.1,10.9,20.2,70.2,250.5,420.2,450.9,207.5,220.6,21.2,0.8 +GANGETIC WEST BENGAL,1940,0.1,30.3,103.9,18.3,98.9,218.1,236.2,384.3,199.6,58.9,7.3,2.8 +GANGETIC WEST BENGAL,1941,29.3,0.4,0.7,27.6,87.5,376.1,404.3,396.5,184.4,219.6,74.3,0.4 +GANGETIC WEST BENGAL,1942,1.2,16.7,14.7,52,64.2,144.5,374.9,406.9,384.1,142.6,13.9,0 +GANGETIC WEST BENGAL,1943,39.4,25.7,16.9,85.4,53.6,209.5,418.5,320.5,186.8,90,0,0 +GANGETIC WEST BENGAL,1944,60,24.4,40.2,44.8,36.1,147.5,349.8,477.4,147,79.1,0.1,0 +GANGETIC WEST BENGAL,1945,18,13.6,5.1,75.7,110.2,196.2,196.3,213.2,198.6,244.2,0.1,0.3 +GANGETIC WEST BENGAL,1946,0,4.2,11.3,131.5,117.6,247.4,297.4,374.2,305.3,196.8,28.3,0.2 +GANGETIC WEST BENGAL,1947,3.4,13.1,43.3,18.4,104,172.7,348.9,292,237.4,95.9,0.5,33.5 +GANGETIC WEST BENGAL,1948,13.2,44.9,48.4,52.6,135.9,200.4,268.4,323.6,214.3,116.7,113.6,0 +GANGETIC WEST BENGAL,1949,6.8,3,33.5,114.7,188.9,214.5,325,285.5,209.8,110.5,1.3,0 +GANGETIC WEST BENGAL,1950,0,6.5,25.9,14.1,101.2,371.1,338.8,373.3,176.4,93.3,115.2,0 +GANGETIC WEST BENGAL,1951,0,0.4,62.1,13.1,67.4,180.7,253.5,260.3,200.1,140,36,0.4 +GANGETIC WEST BENGAL,1952,0.3,1.1,23.3,99.7,77,167.4,431,244.7,189.1,159.6,2.5,0 +GANGETIC WEST BENGAL,1953,25.8,14.1,4.8,13.6,61.9,311.1,358.3,343.1,278.5,56,38.6,0 +GANGETIC WEST BENGAL,1954,12.3,5.9,0.3,11.6,88.6,211.1,201.7,215.1,247.1,56.8,1.5,28 +GANGETIC WEST BENGAL,1955,2.9,2.3,11.4,24.3,48,174.7,338.8,251.9,188.1,151.9,73.9,0.1 +GANGETIC WEST BENGAL,1956,4.5,33.9,50.7,25.6,141.6,343.3,253.9,295.4,391.1,157.6,12.7,3.9 +GANGETIC WEST BENGAL,1957,50.2,26.6,8.7,6,16.4,231.8,312.1,201.1,239.4,38.2,0.1,0 +GANGETIC WEST BENGAL,1958,12.7,25.6,13.3,37.9,58.3,95.2,280.1,215.1,294.7,109.3,8.9,0 +GANGETIC WEST BENGAL,1959,33.5,12.7,17.3,28.2,91.4,208.5,273.3,328.5,487.3,331.2,0.3,0.4 +GANGETIC WEST BENGAL,1960,0.6,1.4,30.9,0.9,122.3,117.5,336.5,317.4,246.3,71.1,0.6,0 +GANGETIC WEST BENGAL,1961,11.1,75.8,6.8,13.6,91.2,275,171.4,252.8,290.9,101,0.8,0.1 +GANGETIC WEST BENGAL,1962,8.8,13.1,6,54.5,80.3,185.6,241.1,209.3,233.6,141,0,0.1 +GANGETIC WEST BENGAL,1963,0.4,2.4,5.7,61.6,103.6,258.8,277.6,167.1,270.9,131.5,9.5,0.5 +GANGETIC WEST BENGAL,1964,2.7,11.1,18,58.3,84.7,136.2,404.2,211.3,219.9,124,8,0 +GANGETIC WEST BENGAL,1965,0.3,33.9,46.5,32.8,45.3,227.6,289.6,287,220.3,80.1,0.3,0.2 +GANGETIC WEST BENGAL,1966,33.1,4.4,5.1,18.3,43.4,296,168.7,236.6,187.2,84.9,34.7,6.3 +GANGETIC WEST BENGAL,1967,52.5,3.3,44.9,65.3,53,131.6,247.8,368.8,326.2,52.3,1.3,1.4 +GANGETIC WEST BENGAL,1968,5.7,7.6,7.7,12.6,35.5,368.8,418.2,472.2,115.2,115.9,37.8,0.6 +GANGETIC WEST BENGAL,1969,4.7,5.1,20.9,80.2,89,139.8,276.2,418,300.9,45.9,23.2,0.2 +GANGETIC WEST BENGAL,1970,10.8,15.1,30.8,16.8,63.5,323.2,285,219.8,472.6,195,15.8,0 +GANGETIC WEST BENGAL,1971,30.6,14.2,4.8,174.2,122.1,260.3,472.5,573.4,252.8,163.5,31.4,0 +GANGETIC WEST BENGAL,1972,2.8,43.1,4.1,16.4,25.1,125.9,288.3,543.2,222.5,59.7,2.1,0 +GANGETIC WEST BENGAL,1973,1.3,8.9,67.6,26,134.2,204.2,304.9,335,401.6,206.6,20.9,23.9 +GANGETIC WEST BENGAL,1974,3.6,0,83.1,29.8,94.5,96.4,438.5,317.1,262.7,140.3,4.6,0 +GANGETIC WEST BENGAL,1975,9.9,18.7,10.6,38.1,65.8,156.6,364.9,331.1,286.3,141.6,42.6,0 +GANGETIC WEST BENGAL,1976,0,32.8,20.7,47.5,133.1,148.9,296.6,279.6,197.5,52.1,31.2,0.6 +GANGETIC WEST BENGAL,1977,11.7,24.2,7.3,89.9,176.4,409.4,450.9,329.4,171.3,86.6,48,35.5 +GANGETIC WEST BENGAL,1978,1.4,21.2,50.5,49.8,116.3,253,274.1,349.1,591.8,148.8,10.3,6.4 +GANGETIC WEST BENGAL,1979,16,27.3,8.4,28,22.3,282.9,296.4,229.6,167,48,11.5,20.4 +GANGETIC WEST BENGAL,1980,15.5,22.6,60.9,21.8,109.9,303.6,403.2,243.3,181,158.6,0,0.4 +GANGETIC WEST BENGAL,1981,13.7,63.9,64.8,110.8,250.9,321.4,417.7,327.7,250,11.6,3.8,72.8 +GANGETIC WEST BENGAL,1982,2.4,35.8,87.2,70.9,37.1,196,224.5,308.9,101.1,29.2,17.9,0 +GANGETIC WEST BENGAL,1983,9.1,39.2,47,44.2,132.5,188.9,207.6,365.4,247.4,167.6,1.1,13.6 +GANGETIC WEST BENGAL,1984,19.1,2.6,0.6,46.6,82.6,597.1,332.7,442.2,196.4,111.8,0,0 +GANGETIC WEST BENGAL,1985,10.9,22,8.8,24.1,99.6,280.4,286.3,340.6,201.8,137.2,1.8,0 +GANGETIC WEST BENGAL,1986,9.6,6.3,7.1,48.5,146.1,227.9,313.4,181.2,522.2,201.5,106.4,20.6 +GANGETIC WEST BENGAL,1987,1.8,7.1,18.9,76.6,91.7,146.9,427.4,473,262.6,34.1,43.7,7.7 +GANGETIC WEST BENGAL,1988,1.7,22.9,53.5,45.3,109.3,508.8,299.9,292.6,207.1,100.4,39.5,0.5 +GANGETIC WEST BENGAL,1989,0.4,4.9,6.1,5.4,173.6,318.2,414.5,291.4,284.2,105.5,3.7,18.3 +GANGETIC WEST BENGAL,1990,2.2,62.2,119,79.3,147.6,268.2,520.2,236.3,300.7,174.2,47.9,3.5 +GANGETIC WEST BENGAL,1991,27.8,11.4,41.7,34.5,66.1,257.4,381.2,331.3,249.2,125.6,15.6,67.5 +GANGETIC WEST BENGAL,1992,14,49.5,0.1,25,127,239.9,407.6,254.1,226.6,66.2,4.4,0.2 +GANGETIC WEST BENGAL,1993,0.3,3.8,40.8,78.6,116.2,328.5,280,357.7,421.4,94.2,38.2,0 +GANGETIC WEST BENGAL,1994,23.8,48.8,7.3,63.7,98,310.1,426.1,294.4,166.1,82.9,9.6,0 +GANGETIC WEST BENGAL,1995,20.2,30.1,8.7,10.1,202.9,185.4,401.1,413,411.5,86.4,160.5,6.2 +GANGETIC WEST BENGAL,1996,11,13.2,10.4,39.2,67.5,336,251.3,472,143.5,155.9,4.1,0 +GANGETIC WEST BENGAL,1997,18.7,23.6,44.2,101.8,98.2,219.6,437.3,387.3,244,27.8,30.5,24.9 +GANGETIC WEST BENGAL,1998,52.9,31,128.8,53,87.1,154.3,295.2,265.7,296.3,191.4,77.1,0 +GANGETIC WEST BENGAL,1999,0.1,0.7,1.6,10.5,217.9,268.8,405.2,375.4,467.8,195.3,13.7,0 +GANGETIC WEST BENGAL,2000,9.5,57.9,3.8,54,215,205.6,341.5,178.4,428.4,76.2,1.6,0.1 +GANGETIC WEST BENGAL,2001,0.3,1.9,32.8,49.4,175.8,384.2,269.3,248.7,205.9,163.6,8.8,0 +GANGETIC WEST BENGAL,2002,26.3,1.5,26.6,77.4,114.1,347.7,281.6,289.3,326.4,71.5,50.9,0.1 +GANGETIC WEST BENGAL,2003,0.5,11.7,70,36.3,81.9,280.5,253.4,239.3,155,341.5,8.9,17.7 +GANGETIC WEST BENGAL,2004,3.3,1.6,14.9,62.8,72.9,287.5,250.7,389.9,264.3,220.7,0,0.8 +GANGETIC WEST BENGAL,2005,26.8,11.8,82.8,41.8,82.4,200.1,354.5,226.7,221.3,351.7,0,4.9 +GANGETIC WEST BENGAL,2006,0.8,3,10.6,60.5,120.8,221,486.6,320.3,380.9,49.7,5.9,0.3 +GANGETIC WEST BENGAL,2007,3.9,56.2,39.3,38.7,98.7,226.3,610.1,328,459.9,55.8,24.6,0 +GANGETIC WEST BENGAL,2008,49.4,12.4,11.5,42.8,94.4,414.5,338.4,252.2,267.3,72.3,0,0.2 +GANGETIC WEST BENGAL,2009,2.4,1.4,17.9,2.6,229,69.7,277.6,332.7,294.6,77.3,9.4,0.3 +GANGETIC WEST BENGAL,2010,0.2,10.3,8,15.9,127.5,189.3,196.3,192.6,192.6,96.2,6.3,29.7 +GANGETIC WEST BENGAL,2011,2.5,2.7,40.5,75,132.6,434.5,219.9,443.2,295.9,36.9,1.3,1.4 +GANGETIC WEST BENGAL,2012,40.7,15.3,4.4,57.7,44.2,146.6,315,261.4,246.9,64.2,47,24.6 +GANGETIC WEST BENGAL,2013,2.5,10,4.8,45.6,195.9,233.4,263.2,401.4,254,353.2,0,0 +GANGETIC WEST BENGAL,2014,0.9,42.2,19.9,1.9,124.4,193.6,298.7,292.6,229.5,56.9,0.1,0.6 +GANGETIC WEST BENGAL,2015,12.9,5.5,19.3,88.7,57.6,247.2,633.1,260.6,164,32.7,2.3,6.3 +ORISSA,1915,15.4,21.4,37.3,25.2,74.5,165.1,239.4,313,270.8,149.2,125.6,0 +ORISSA,1916,0,4.9,0.8,33.8,45.5,339.6,250.7,334.7,197.6,216.1,55.8,0 +ORISSA,1917,0,68.5,24,26,95.1,336.3,319,319.4,280.6,364.4,16.4,0.3 +ORISSA,1918,10.8,0.3,19.3,28.5,127.7,363.3,216.5,324.8,190.1,7.5,5.1,3.6 +ORISSA,1919,59.8,56.6,29.5,30.2,72,332.3,354.7,492.2,138.3,89.8,99.7,2.8 +ORISSA,1920,3.3,18.2,50.7,26.9,51.2,173.2,561.4,303.9,167.2,44.9,1.6,0 +ORISSA,1921,48.7,1.1,1.7,26.4,19.5,210.2,321.9,289.1,338.2,62.9,4.4,0 +ORISSA,1922,20,0.2,1.9,13.9,46.6,247,431.8,295.4,328.8,50.9,30,0.1 +ORISSA,1923,0.2,66.3,9.6,17.1,34.4,106.7,288.7,333,210.5,112.6,74.8,4.7 +ORISSA,1924,30.2,5.9,1.3,15.7,83.9,95.3,228.5,312.4,232,106,152.3,0 +ORISSA,1925,2,0,6,52.2,111.8,353.5,433.7,429.9,201.5,201.8,4.8,10.7 +ORISSA,1926,34.8,11.3,83.2,34.1,59.2,71.7,296.5,565.3,288.9,88.1,0,2.6 +ORISSA,1927,3,27.2,8.1,12.6,51.6,241.8,454.5,431.5,181,92.2,22.1,0 +ORISSA,1928,4.6,4.6,6.3,62.8,68.8,266.7,468.8,266.1,226.5,208,1.7,0.6 +ORISSA,1929,18,18.8,4.5,25,37.8,193.4,525,423.4,190.9,185.7,0,15.3 +ORISSA,1930,0.2,12.1,9.9,33.4,38,177.5,357.5,333.7,287.5,50.5,143.1,2.7 +ORISSA,1931,7.4,36.8,20.7,18.6,44.3,108,239.9,511,197,233.4,59.5,0.4 +ORISSA,1932,0.2,34,9.9,26.9,67.4,116.5,474.7,271,246.3,57.3,136,0 +ORISSA,1933,17.8,57.4,7.9,25.5,136.5,288.6,404.8,448.6,294.7,138.1,20,11.1 +ORISSA,1934,0.1,1.4,4.2,11,21,230.6,371.8,425.4,300.1,102.6,17.4,3.3 +ORISSA,1935,1.1,10.2,12.4,42.1,16.2,135.5,531.3,212.8,237.8,17.5,0.1,2.3 +ORISSA,1936,16.8,42.9,11.7,7.9,155.3,477.6,360.1,384.9,247.3,154.4,11.5,5.5 +ORISSA,1937,0,89,28.4,66.9,64.9,235.2,430.6,290,285.8,75.5,0.8,0.3 +ORISSA,1938,11,16.8,14,14.5,119.6,229.6,267.2,339.8,226.4,179,23.7,0 +ORISSA,1939,8.1,10.9,34.9,26.3,19.1,196.9,411.9,410.1,242.1,181.2,19.3,2.8 +ORISSA,1940,0,35.3,70.1,29.1,133.1,286.2,532.6,395.9,133.3,58.3,3.3,10.5 +ORISSA,1941,28.3,1.4,8.2,14.5,62.3,288.2,356.5,272.4,186,155.9,61.5,0.1 +ORISSA,1942,4.7,18.6,2.5,37.6,29.6,156.8,423.8,379.8,256.4,62.7,75.4,0.1 +ORISSA,1943,63.9,4.1,11.9,68.9,54.6,200.3,413.3,382.9,294.7,71.8,20.1,0 +ORISSA,1944,35.1,72.9,75.3,46.7,32.9,121.9,491.4,415.9,151.5,155.9,8.7,0 +ORISSA,1945,20.3,4.7,0.1,50.6,58,152.6,387.1,270.3,405.9,176.1,2.5,10.4 +ORISSA,1946,0,2.6,5.2,104.2,83.7,249.7,345.5,399.2,248,143.2,33.3,0.3 +ORISSA,1947,21.8,19.3,14.7,17.3,38.5,210.9,341.5,374.9,173.3,127.1,10.3,61.3 +ORISSA,1948,14,36.1,13.5,28.5,60.7,164.8,289.4,312.4,257.6,82.5,74.2,0.2 +ORISSA,1949,0.9,3.1,8.7,35.1,78.1,140.7,248.9,307.1,303.1,222.1,1.1,0 +ORISSA,1950,0,21.2,69.7,7.7,49.4,199.4,326.9,327.4,197.9,55.1,138.1,0 +ORISSA,1951,2.2,0,89.7,37.1,48,172.5,339.1,349.5,165.5,155.6,37.1,0 +ORISSA,1952,0.3,9.5,26.2,53.2,44.4,187.1,356.4,352,307.9,176.6,2.2,1.1 +ORISSA,1953,39.9,5.9,0.2,13.8,23.7,182.8,318.9,512.1,231.5,59.2,49.8,0 +ORISSA,1954,0.6,6.2,8.6,19.2,50.2,163.2,211.7,271.9,344,118.2,0,14.2 +ORISSA,1955,0.1,0.2,8.4,29.6,76.5,201.7,238,355.9,371.4,262.7,52.3,0.3 +ORISSA,1956,1.4,37.9,18.2,11.9,118.1,345.2,470,434.5,249.8,191.7,6.7,0 +ORISSA,1957,12.3,26.6,30.4,12.4,33.6,153.5,349.2,415.4,194.5,49.5,0.1,0 +ORISSA,1958,11.5,42.8,16,32.8,39,125.2,404.1,319.1,364.2,217.4,51.8,0.1 +ORISSA,1959,28.5,2.4,2.7,22.2,47.1,202.7,357.4,341.6,316.5,170.5,1.5,2.7 +ORISSA,1960,5.4,0.8,51.6,12.4,42.7,211.4,444.1,461.7,214.6,130.8,3.6,13.9 +ORISSA,1961,15.9,116.2,3.2,15.9,59.7,324.8,406.2,327.9,483.2,178.2,11.3,2.7 +ORISSA,1962,8.3,5.1,19.8,35.9,34.1,192.7,379,263.2,237.3,164,2.5,4.7 +ORISSA,1963,0.2,6.9,9.1,47,90,218.7,310.6,361.9,306.9,204.9,3.9,2 +ORISSA,1964,1.7,28.3,11.9,33.2,48.8,142.5,372.4,427.9,195.5,84.1,8.2,0 +ORISSA,1965,10.6,17.3,59.1,37.9,37.6,123.1,392.9,187.3,222.9,83.9,1,1 +ORISSA,1966,49.9,3.6,0.9,28,37.9,306.3,340.2,211,155.9,78.9,63.4,10.9 +ORISSA,1967,70.9,0.4,87.7,40.9,25.7,233.3,315.3,340.7,281.8,18.3,1.8,10.7 +ORISSA,1968,33.4,29.7,20.7,26.5,45.7,186.7,311.6,335.4,236.6,191.6,45.5,0.7 +ORISSA,1969,0.7,1,4,27.3,80.7,158.6,432.5,293.5,197.7,41.8,38.9,6.4 +ORISSA,1970,4.6,27.5,47.2,32.3,60.8,307.9,307.8,348.8,205.9,66.9,2.4,0.2 +ORISSA,1971,16.1,23.5,1.9,76.9,82.2,290.8,290.9,411,171.5,229.9,2.1,0 +ORISSA,1972,0,22,2.6,25.9,16.3,133.9,333.9,383.4,282.7,83.1,40.9,0.3 +ORISSA,1973,1.7,5.7,33.4,8.7,67.5,103.2,434.9,380.9,266.5,244.7,13.3,13 +ORISSA,1974,0,1.3,27.4,12.1,44.8,128.9,223.3,306.5,131.7,103,8,0 +ORISSA,1975,1.8,17.7,21.5,18.2,18.4,193.3,279.5,437,251.7,135.1,17.5,0.3 +ORISSA,1976,0,10.1,10.5,25.9,57.9,108.1,347.8,374.1,172.6,36.8,32.8,2.4 +ORISSA,1977,4.9,5,5.4,50.7,124.9,181.4,355.4,335.7,256.6,61.5,87,9.4 +ORISSA,1978,4,31,45.3,28.7,37.4,183.5,336.2,462.1,199,80.1,21.8,9.8 +ORISSA,1979,6.7,14.9,3.2,22.7,25.1,198.5,240.2,251.8,171.7,46.5,7.3,7.4 +ORISSA,1980,10.8,9.2,41.7,23.2,59.9,325.5,367.6,228.1,302.1,86.6,3,5.2 +ORISSA,1981,25.8,13.6,67.1,45.7,85,189.2,238.3,348.1,257.1,18.8,0.4,6.5 +ORISSA,1982,5.5,32.3,80.1,51.8,38.2,191.4,223.2,466.4,129.8,33.8,6.1,0 +ORISSA,1983,1.9,55,22.1,47.6,67.6,153,273.1,379.5,324.6,100.7,2,5 +ORISSA,1984,9.3,6.7,3.4,46,34.6,302.6,369.5,422.3,127.3,55.4,0,0.3 +ORISSA,1985,24.2,35,4.7,16.4,52.9,195.4,305.7,460.9,335.2,175.8,1.1,0 +ORISSA,1986,25.8,35.8,12.6,41.9,74.5,291.7,348.7,301.8,183,134.9,92.2,17 +ORISSA,1987,10.6,3.6,18.4,30.3,55.3,112.3,338.8,190.3,150.2,83.9,102.3,1.7 +ORISSA,1988,0.1,49.4,23.7,55.1,58.9,247.9,286.1,268.6,252.5,63,1.6,0 +ORISSA,1989,0,0.1,12.9,5,81.2,332.5,271.7,369.9,196.1,28.6,0,1.7 +ORISSA,1990,0.4,50,89.8,57.3,178.1,237.2,282.9,371.4,260.7,245.6,130.7,1 +ORISSA,1991,20,2.8,21.8,29.6,36.2,149.5,458.5,439,181.5,93.5,32.9,7.3 +ORISSA,1992,6.1,16.9,1.7,16.1,66,177.2,394.9,385.1,191.8,63.7,9.9,0 +ORISSA,1993,0,1.3,11.4,56.1,82.2,257.5,328.5,327,287.9,88.7,7.5,0 +ORISSA,1994,4.1,28.6,6.2,48.1,46.3,299.4,474,463.9,292.6,69.1,12.3,0.1 +ORISSA,1995,50.1,17.6,21.1,23.6,293,112.3,322.6,316.6,202.7,149.7,103.4,1.3 +ORISSA,1996,14.6,10.1,11.7,28.1,28.6,211.9,264.8,319.4,113.2,49.9,8.4,0.9 +ORISSA,1997,17.9,5.3,31.9,77.8,33,197.6,303.4,479.9,234.6,37,27.4,58.8 +ORISSA,1998,31.5,28.3,52.4,43.4,53.4,176.4,277.6,203.5,277.3,139.6,73.8,0 +ORISSA,1999,0.1,0.7,0.9,3.2,164.8,222.9,270.2,325.9,266.4,215.4,13.9,0 +ORISSA,2000,0.9,33.3,1.1,21.3,74.7,233.7,272.3,273.6,158,26.6,1.6,0.1 +ORISSA,2001,0.4,1.4,32.3,28.7,71,336.1,584.2,380.9,132,86.8,18.7,0 +ORISSA,2002,11.7,0.2,13.1,25.1,67.5,182.4,170.2,371.2,206.5,47.1,7.8,0 +ORISSA,2003,0.1,16.2,21.6,24.7,22.6,178.9,367.5,425.1,264.3,287.4,11,28.8 +ORISSA,2004,6.8,8,6.4,49.2,29.7,216.4,328,346.4,148.1,149.6,1.8,0 +ORISSA,2005,29.4,4,24.3,20.9,44.9,199.4,410.3,201,342.8,206.9,12.4,7.1 +ORISSA,2006,0.2,0,29.9,25,105.6,175.2,454,624.9,254.7,26.4,21,0 +ORISSA,2007,0.7,32.5,8,21,62.8,321,285.1,420.6,401.7,66.4,14,0 +ORISSA,2008,27.5,10.4,17.5,28.2,37.4,343.5,306.4,388.3,355,22.1,2.7,0 +ORISSA,2009,1.9,0.5,2.7,1.1,68.2,87.3,586,286.9,162.5,105.8,27.3,0.1 +ORISSA,2010,8.8,1.2,5.6,7.8,93,146.4,304.9,282.7,236,133,35.6,37.2 +ORISSA,2011,3.7,16.2,4.9,58.2,75.6,210.1,199.6,358.6,398.7,20.2,0.1,0.4 +ORISSA,2012,50.8,3.6,0.9,34.8,21.3,169.6,324.3,417,242.4,66,72.1,3.1 +ORISSA,2013,3.3,7.8,2.1,53.6,57.7,272.6,380,254.9,208.1,391,1.2,0 +ORISSA,2014,0,17.6,25.1,11.7,111.9,92.2,496.2,386.3,281.1,111.8,2.2,0.9 +ORISSA,2015,15.1,3.3,10.5,67.6,32.6,238.6,294.8,264,237,24.7,6.2,15.6 +JHARKHAND,1915,7.7,36.7,33.4,10.7,58.6,149.7,270.2,220.5,214.7,60,39.9,0.1 +JHARKHAND,1916,0,14.3,0.2,17.1,22.6,283.5,224.9,303.2,231.5,253.2,13.8,0 +JHARKHAND,1917,1.7,40.1,17.1,9,107.1,287,359.5,372.8,251.2,277.1,1.2,0.5 +JHARKHAND,1918,4.2,2.4,3.6,15.5,78.5,324,149.7,406.7,175.9,1.7,0,0.5 +JHARKHAND,1919,102.9,16.2,23.5,19,67.9,367.3,331.8,398.2,215.7,87.4,3.4,0.1 +JHARKHAND,1920,0,19.5,62.6,8.8,41.9,109.4,660.2,321.6,184.7,6.3,0,0 +JHARKHAND,1921,37.1,11,1.4,20.8,12.9,228.2,325.2,391.5,182.8,22.8,0,0 +JHARKHAND,1922,8.2,6.2,0,14.5,19.5,305.3,404.7,365.9,250,58.8,9.2,0.9 +JHARKHAND,1923,0.7,68.3,5.3,5.1,26.7,186,398.4,552.5,124,46,18.2,0.6 +JHARKHAND,1924,23,16.6,1.9,12.2,26.3,148.7,431.8,269.6,323.6,75.1,103.1,0 +JHARKHAND,1925,4.7,6.1,12.1,37.1,84.6,196.5,428.3,314,172.5,63.5,7.7,0.5 +JHARKHAND,1926,33.5,3.4,95,13.5,41.5,55.7,466.5,391.2,309.6,44.6,2.9,21 +JHARKHAND,1927,27.9,99,31.6,2.9,41.7,92.3,452.5,311.6,156.4,51.4,15.8,0 +JHARKHAND,1928,51.4,11.8,3,26.4,48.1,313.4,396.7,213.7,131.7,183.3,0.1,4.4 +JHARKHAND,1929,63.9,15.2,12.7,11.4,29.5,111.4,541.7,412.2,124.6,236.4,0,52.5 +JHARKHAND,1930,0.9,4.3,7.7,18.1,16.5,125.5,506.8,361.4,222.8,44.5,121.1,4.4 +JHARKHAND,1931,7,116.9,18,2.2,37.1,109,357,355.2,201.2,112.7,33.4,0.8 +JHARKHAND,1932,0,32.8,4,15,45.8,96.5,374.1,297.8,221.1,50.2,55.5,0.9 +JHARKHAND,1933,61.2,58.7,8.9,37,94,218.1,366.8,397.3,209.6,74.5,4.1,5.5 +JHARKHAND,1934,24,10.3,1.8,13.1,13.6,166.7,324.2,341.4,230.5,55.9,12,3.9 +JHARKHAND,1935,35.8,21.7,10,23.4,6.7,120.5,295.8,435.6,200,1.6,0,0.5 +JHARKHAND,1936,15.9,18.9,13.5,5.4,93,279.1,378.9,346.2,356.8,135.2,11.4,10.1 +JHARKHAND,1937,0,96.4,4.9,20.7,72.1,186.1,363.2,300.8,276.2,129.6,0.4,0 +JHARKHAND,1938,29,36.1,0.2,0.8,102.1,201,269,344.1,200.4,45.1,1.9,0 +JHARKHAND,1939,14.7,47.8,41.7,15.4,18.3,237,367.3,378.2,257,139.8,1,1.6 +JHARKHAND,1940,0.2,38.1,89.6,15.6,42.3,123.3,339.6,387.3,130.1,41.2,0,24.6 +JHARKHAND,1941,41.6,4.2,2.5,7,52.3,287.8,357.2,365.3,196.3,164.7,34.6,0.1 +JHARKHAND,1942,8.8,61.4,19.9,31.2,22.7,140.5,482.3,433.3,356.2,25.9,5.8,1 +JHARKHAND,1943,76.4,12.5,0.7,34.9,38.9,127.5,452.1,488,245,80.1,0,0 +JHARKHAND,1944,34.5,65.3,46.6,29.1,18.7,129.4,368.5,428.3,149,112.5,4.3,0.3 +JHARKHAND,1945,45.8,27.4,0.4,25.6,45.2,168.4,276.6,293.1,277.2,144.6,3.2,1.2 +JHARKHAND,1946,0,16.1,16.7,68.5,84.1,270.1,329.4,345,253,135.6,34.6,0.1 +JHARKHAND,1947,12.1,24.1,45.9,2.8,35.7,143.8,291.1,302.8,253.5,106.2,2.3,14.3 +JHARKHAND,1948,26.7,18.7,17.7,8.4,47,185.9,386,318,207.3,96.9,89.9,0.2 +JHARKHAND,1949,21.8,16.2,15.5,57.4,107.8,187.3,364,384.7,215,66,0,1 +JHARKHAND,1950,1,14.8,31.4,1.9,36.4,318.4,389.6,389.6,173.1,21.1,11.9,3.7 +JHARKHAND,1951,5.1,0.4,48.9,24.2,25.1,177.5,259.1,267,186.1,69.2,9,0 +JHARKHAND,1952,3.9,10.7,24.2,36,58,210.7,357.7,355.7,237.9,89.7,1.4,1.4 +JHARKHAND,1953,35.3,11,0.8,7.4,28.5,213,440,416.2,314.5,23.4,19.3,0 +JHARKHAND,1954,12.4,8.4,4.3,3.5,29.7,160.9,272.2,267.4,257.8,35.3,0.6,7 +JHARKHAND,1955,43.6,9.8,5.9,5.1,23.9,137.7,347.1,240.5,155.4,96.9,14.8,0.1 +JHARKHAND,1956,13.9,25.7,50.3,5.8,78.5,259.3,301.6,344.6,312.9,140.9,14.3,7.9 +JHARKHAND,1957,56.3,24.7,30.6,2.4,6.5,163.6,498.7,293.2,283,18.2,0,0.2 +JHARKHAND,1958,11.5,39.8,20,24.8,12.2,93.6,336.1,263.3,267.2,111.3,0.7,0 +JHARKHAND,1959,51.6,5.6,5.2,17.5,56.4,188.5,332.6,305.8,363.9,272.8,0,0 +JHARKHAND,1960,6.6,0.5,29.3,1.9,32.1,115.6,310.1,432.7,274.6,44.8,0.6,0 +JHARKHAND,1961,8.9,84.3,1,4.6,30,298.6,296.3,358.2,317.2,155.3,1.6,4.6 +JHARKHAND,1962,8.2,15,4.3,31.1,26.5,167.4,251.5,265.5,213.5,55.8,0,8.9 +JHARKHAND,1963,2.8,7.8,9.9,23.3,67.7,171.5,301.6,249,241.3,228.6,11.2,0.2 +JHARKHAND,1964,2.2,12.2,4.7,18.9,53.8,200.4,306.4,262,214.4,71.5,3.9,0 +JHARKHAND,1965,0.8,8.7,26.6,31.3,14.8,113.1,354.6,215.9,206.2,39.2,0.3,0.9 +JHARKHAND,1966,24.7,3.8,0.2,10.5,22.1,233.2,174.1,263.4,87.9,35.8,15.9,8.1 +JHARKHAND,1967,8.6,1,39.9,24.2,43.7,71.9,283.5,450.8,268.5,19.8,1.1,12.3 +JHARKHAND,1968,34.4,9.4,5.5,4.7,22,272.6,351.5,420.5,97.2,71.2,0.5,3.7 +JHARKHAND,1969,6.2,4,5,34.7,86.1,130.2,299,337.4,209.4,25.1,20.9,0.1 +JHARKHAND,1970,24.3,16.6,28,8.4,29.7,182.4,300,252.8,380.7,67,1.5,0 +JHARKHAND,1971,43.4,24.3,2.1,95.6,83.5,272.3,503.1,526.1,237.5,104,6.7,0.1 +JHARKHAND,1972,8.6,46.5,0.2,9.1,3.2,75.9,248.5,352.7,175.1,54.4,21.6,0.4 +JHARKHAND,1973,10.6,15.2,23.9,7.1,56.4,184.3,224.3,294.6,365.4,245.1,13.7,0.6 +JHARKHAND,1974,2.6,0.5,24.3,3.3,51.9,64.9,334.9,331.7,235,76.6,0.3,1 +JHARKHAND,1975,17.2,13.4,26,10.1,30.1,121,477.6,339.2,224.3,102.5,0.1,0 +JHARKHAND,1976,0,23.1,7.2,25.2,58.2,107,297.5,263,394.5,9.3,3.2,3.5 +JHARKHAND,1977,19.2,8.1,3.8,47.9,102.5,281.1,458.3,316.4,184.8,50.3,27.3,21.8 +JHARKHAND,1978,10.5,50.9,45.3,28.4,33.8,283.7,252.8,341.1,376.5,114.3,7,12 +JHARKHAND,1979,22.4,38.7,6.1,19.5,6.1,129.1,286,174.9,134.2,36.1,18.7,11 +JHARKHAND,1980,13.6,14.9,37.1,21,40,273.7,350.7,281.2,232.1,73.8,0,2.3 +JHARKHAND,1981,40.7,33.5,20.1,40.9,94.9,143.3,355.3,226.4,189.5,6.1,3.1,13.4 +JHARKHAND,1982,8.4,23.6,77.3,30.9,33.4,183.9,180.8,358.7,118.1,52.7,15.7,1.8 +JHARKHAND,1983,4.3,33.1,9.9,44.4,83.3,131.8,280,240.6,308.8,110.7,0.2,14.7 +JHARKHAND,1984,33.4,26.2,1.6,14.1,31,479.6,350.4,387.3,155.8,50.2,0.1,0.1 +JHARKHAND,1985,19.1,9.1,1.6,8.8,48.2,131.2,338,312.6,216.6,153.7,0.5,0.9 +JHARKHAND,1986,6.9,21.2,3.8,25,74.8,253,352.2,212.9,188.5,128.2,31.1,37.9 +JHARKHAND,1987,5.9,10.1,10.9,30.3,44.9,93.1,410.8,371.1,299.1,19.7,31.4,5.4 +JHARKHAND,1988,3.1,37.1,42.2,23.7,23.6,303.6,273.5,276.1,127.8,38.7,2.6,1.6 +JHARKHAND,1989,1.9,0.3,2.8,0.1,66.4,246,285.6,258.9,219,39.6,8.6,19.7 +JHARKHAND,1990,0.8,48,22.2,15.4,90.6,197.4,430.7,230.8,226,128.1,14.2,0.3 +JHARKHAND,1991,19.3,8,31.1,11.2,33.7,171.3,252.9,384,274,29.4,1.9,34.2 +JHARKHAND,1992,2.3,6.1,0.6,8.8,51.8,129.8,295.7,265.2,148.5,22.5,1.6,0.3 +JHARKHAND,1993,1.7,2,16.1,32,50.5,203.2,214.4,245.9,372.4,49.6,16.2,0 +JHARKHAND,1994,17.7,23.8,0.6,20,29.2,391.3,451.6,360.7,162.8,118.9,2.7,0.1 +JHARKHAND,1995,13.7,9.7,22.4,4.3,30.3,134.2,312.3,301.5,395.9,37.5,84.7,20.1 +JHARKHAND,1996,17.1,24.4,4.9,8,18.5,302.7,274.1,384.3,133.6,23.9,0.1,0 +JHARKHAND,1997,9.5,3.7,1.5,29.4,25.2,230.4,400.5,431.6,199.6,54.3,39,36.6 +JHARKHAND,1998,76.3,20.6,54.1,33.8,45.5,109.9,302.4,263.2,288.6,132.3,26.3,0.7 +JHARKHAND,1999,0.6,0.1,0.1,1.5,95.4,240.2,416,373.1,315.8,140.6,3.3,0.2 +JHARKHAND,2000,3.6,21.2,6.3,19.6,67.7,185.3,358.4,152.8,356.9,19.1,0.4,0.2 +JHARKHAND,2001,1.9,4,30,14,57.4,324.7,354.6,219.4,132.8,115.5,0.2,0 +JHARKHAND,2002,9,5.4,10.7,11.5,38.7,184.9,186.8,277.4,253.4,55,1.3,0.8 +JHARKHAND,2003,3.3,30.5,33.6,17.9,21.5,152.4,247.5,245.1,224,255.5,6.2,7.4 +JHARKHAND,2004,5.5,2.7,3.1,41,31.1,184.4,200.7,327,211.5,128.1,0.1,1.6 +JHARKHAND,2005,22.1,17.5,17.7,9.6,23.5,157.2,266.4,214.5,141.5,83.1,1.3,6.1 +JHARKHAND,2006,0.3,0.2,22.4,15.7,107.4,198.3,447.1,337.2,298.7,24.6,7.4,0 +JHARKHAND,2007,1.7,48.4,25.5,22.3,58.1,125.4,430.4,353.6,324.7,39.6,7.6,0 +JHARKHAND,2008,19.4,3.6,6.2,10.7,42.9,366.3,377.9,310.5,152.9,34,1,0 +JHARKHAND,2009,1.8,0.8,2,0.8,78.1,62.7,266.6,248,248.8,82.2,4,0.5 +JHARKHAND,2010,0.2,2.3,0.9,6.3,29.2,92.6,170.2,155.1,160.5,55.1,4.7,20 +JHARKHAND,2011,3.3,2.5,6.4,25.4,55,349,181.8,403.2,324.6,23.3,0,0.1 +JHARKHAND,2012,34.6,10.3,1.5,9.6,6.6,121.1,287.2,282.4,217.6,37.8,48.6,7.6 +JHARKHAND,2013,1.1,17.9,1.6,22.3,85,181.5,211.1,278.1,173.8,281.1,0,0 +JHARKHAND,2014,9.9,47.5,22.9,1.9,98.2,139.7,321.3,290.9,178.2,44.9,0,1.2 +JHARKHAND,2015,12.2,2.6,21.6,55.5,25.5,183.3,429.7,240.7,85.1,22.7,0.2,2.7 +BIHAR,1915,8.2,57.1,22.5,6.4,72.5,149.1,321.3,415,185.1,75.3,36.7,0.3 +BIHAR,1916,0.6,16.5,0.3,25.3,25.1,270.3,445.6,325.2,265.2,130.1,0.4,0 +BIHAR,1917,2.7,19.7,7.9,5.8,103.3,227.8,328.7,249.3,272.1,116.5,0,0.2 +BIHAR,1918,0.6,0.1,1.8,29.5,105.4,251.6,240.3,519.2,254.4,8.6,0.1,0 +BIHAR,1919,40.2,7.7,3.8,11.6,42.3,195,417.8,230.1,244.8,58.6,0,0.7 +BIHAR,1920,0,19.2,31,2.6,28.8,108.9,361.6,228.5,337.6,5.6,0,0 +BIHAR,1921,26.8,0.6,6.5,21.2,26.3,132.4,303.8,422,295.8,37,0,0 +BIHAR,1922,12.2,4.6,0,9.6,22,345.8,427.3,363.5,241.3,15.7,0.7,6.5 +BIHAR,1923,1.3,35.1,1.5,13.5,38.1,171.7,253.9,243.2,148.9,74.4,0.7,0.4 +BIHAR,1924,2.5,12.7,1.8,8.8,14.8,170.6,514,295.7,320.3,53.1,61.7,0.2 +BIHAR,1925,7.7,1.8,7.7,52.9,38.6,130.4,322.9,331.5,269.4,17.6,11,0 +BIHAR,1926,16.3,0.6,29.7,12.8,47,48.1,451.5,276,211.6,17.6,1.8,8.7 +BIHAR,1927,24.2,36.4,31.9,3.1,52.9,115.9,301.5,242.7,231.4,21.5,38.6,0.2 +BIHAR,1928,41.2,21.5,0.1,18.3,54.3,208,377.2,272.9,83.3,164.3,0.9,7.6 +BIHAR,1929,51.6,1.1,11.4,16.2,33.1,190.2,328.8,326.3,124.7,231.4,0,44.4 +BIHAR,1930,11.6,7.6,13.6,6.6,28.6,144.6,298.2,247.8,290.9,30.4,24,10.4 +BIHAR,1931,1.3,32.4,11.4,1.6,27.5,75.9,441.3,218.8,248.2,76.1,11.2,0.7 +BIHAR,1932,0,8.2,0.5,14.8,26.6,152.1,164.3,249.3,191.2,32.4,78.7,8.9 +BIHAR,1933,28.3,13.1,0.7,62.1,90.3,197,377.3,377.8,167.8,77.6,0.3,0.3 +BIHAR,1934,30.1,13.7,3,9.1,22,165.5,432.6,251.3,231.2,55.2,9.8,2.8 +BIHAR,1935,21,19.6,0.6,0.7,21.9,127.9,193.8,481.7,370.3,2.6,0.1,0.1 +BIHAR,1936,7.7,6.9,4.6,7.7,84.3,188.9,462.2,261.5,449.2,88.8,0.4,10.3 +BIHAR,1937,0,66.3,0.8,10.7,80,113.6,217.9,441.8,179.3,194.6,0.3,1.1 +BIHAR,1938,12.4,17,0,2.9,115.5,382.4,362.1,385.1,201.4,27.1,0.8,0 +BIHAR,1939,5,42.3,11.3,1.7,41.5,230.4,315,277.1,262,56.9,0,0 +BIHAR,1940,0.9,43.8,65.5,5,31.9,114.6,317.6,314.9,171.6,4.9,0,17.5 +BIHAR,1941,16.2,2.8,0.7,4.6,67.1,177.7,248.8,466,190.2,47.8,1.1,0 +BIHAR,1942,34.4,43.5,14.7,18.2,28.1,174.7,253.5,330.4,347.2,7,0,0.9 +BIHAR,1943,34.7,16.9,0.2,40.7,37,169.8,296,322.1,215.4,37,0,0 +BIHAR,1944,27.3,32.6,42,34.1,21.9,223.9,253.5,322.8,221.3,48.5,0.2,0.8 +BIHAR,1945,50.7,24,1.4,32.4,57.8,120.5,226.9,265.6,305.5,154.8,0,3.2 +BIHAR,1946,0,21.3,5,52.3,88.6,168.7,354.7,267.8,271.8,148.7,14.9,0 +BIHAR,1947,5.6,5.6,10.2,7.5,57.7,89.4,394.4,244.6,215.3,61.5,0.1,0.3 +BIHAR,1948,11.1,7.5,3.6,11.3,46.3,114.6,409,329.8,248.9,81,36.2,0 +BIHAR,1949,16.5,42.8,5.7,35.5,93.1,200.2,341.7,386.5,217.9,103.4,1.1,0 +BIHAR,1950,9.8,11.8,22.1,2.2,43.3,346.5,257,313.3,113.4,3,0.1,2.1 +BIHAR,1951,7.3,1.5,5.8,8.2,22.8,144.5,307.8,204.5,114.3,28.7,4.7,0.1 +BIHAR,1952,1.1,10.3,20.1,24.6,57,272.5,212.5,291.9,297.7,15.4,3.4,0.4 +BIHAR,1953,29.7,4.2,8.7,16.7,37.4,224.7,431.8,263.3,342.2,18.4,0.9,0.8 +BIHAR,1954,12.5,8.4,0.8,0.6,40.9,166.6,366.1,308.6,129.5,15.1,0.2,1.3 +BIHAR,1955,20,6.7,2.3,11.9,28.2,172.5,505.7,268.7,192.2,35.7,0.3,0.1 +BIHAR,1956,19.3,4.7,9.6,5.3,75.4,319.4,200.6,286.3,359.8,168.8,36,8.1 +BIHAR,1957,75.2,2.8,11.6,0.5,1.3,115.6,334.5,295.8,115.2,11.6,0,2.7 +BIHAR,1958,16,2.7,4.7,26.4,16.1,120.7,222.8,451.1,224.2,81.5,0.7,0.6 +BIHAR,1959,81.2,1.5,9.4,18.6,35.7,132.3,245.8,264.2,157.1,233.8,0,0.1 +BIHAR,1960,1.4,0.1,42.7,5.2,49.9,117.6,357.4,285.5,348.1,37.9,2,0 +BIHAR,1961,11.7,35.8,1.4,2,33.9,239.7,211.6,317.5,157.5,236,0.8,10.1 +BIHAR,1962,13,7.8,9.5,20.8,38.8,156.4,244.3,395.4,216.3,72.5,0,3.2 +BIHAR,1963,3.4,1.7,9.4,17.5,78.9,154,375.4,273.5,255.7,138.7,17.8,0.2 +BIHAR,1964,1.4,3.3,2.4,21.9,59.3,134.7,453.6,157.7,219,66.3,2.7,0 +BIHAR,1965,0.4,1.2,15.7,7.1,7.7,98.8,302.2,328.3,215,22.2,1.8,2.4 +BIHAR,1966,21.2,6.9,0.1,0.9,39.5,114.5,155.5,308.3,83.1,18.3,17.1,1.6 +BIHAR,1967,0.2,0.1,38.6,30.6,23.6,80.7,278.2,282.1,253.8,10.3,0.1,1.5 +BIHAR,1968,29.1,1.7,7,3,17.3,261.8,329.6,293.1,79.2,113.3,0,4.9 +BIHAR,1969,5.2,9.3,9.7,20.7,64.4,193.1,348.4,379.4,219.1,15.3,23.6,0.3 +BIHAR,1970,22.1,13.4,3.2,17.9,39.2,194.6,284.2,235.6,229.5,34.5,0.4,0 +BIHAR,1971,17.3,14.6,5.1,91.4,81.5,278,307,367.9,129.2,138.6,1.9,0 +BIHAR,1972,12.9,38,2.7,3.2,3.4,56.7,163.4,154.9,209.7,48.4,24.6,0 +BIHAR,1973,22.9,10.2,3.8,4.4,65,200.9,185.1,258.9,271.4,158.2,8.3,0 +BIHAR,1974,3.9,0.7,21.9,9.9,39.1,129.4,451.6,317.5,229.2,28,0.3,3.7 +BIHAR,1975,9.1,4.1,12,11,34.4,143.2,403.1,155.2,245.3,51.7,0,0 +BIHAR,1976,2.3,12.4,0.9,8.9,80.1,147.1,221,292.8,372.6,22.4,0.7,0.5 +BIHAR,1977,5.3,2.9,1.3,17,83.7,102.5,375.5,266,121,147.1,8.1,17.3 +BIHAR,1978,13.4,27.8,16.8,24.5,51.8,190.4,313.6,252.6,248.6,142.8,4.8,3.7 +BIHAR,1979,23.4,19.4,2.3,21.3,6.2,90.6,435.5,166.1,113,88.5,25.2,10.3 +BIHAR,1980,4.7,2.4,9.5,7.9,80.9,160.2,389.9,375.3,190.5,29.5,0.2,1 +BIHAR,1981,31.3,5.7,14.3,47.9,86.3,107.9,580.1,311.3,168.8,1,6.1,3.9 +BIHAR,1982,4.4,6.1,28.2,14.7,31,222.4,227.2,164.5,170.5,42.1,21.5,1 +BIHAR,1983,13.1,1.7,8,45,81.1,101.2,353.8,195.8,220.6,69.9,0,14.1 +BIHAR,1984,28.6,33.9,1.3,11.2,65.6,353.4,476.4,216.9,219,15.4,1.5,3 +BIHAR,1985,8.8,0.5,0.5,8,69.2,163.2,481.5,238,289,188,1.2,7.1 +BIHAR,1986,1.1,13.9,0.5,16,94.3,168.4,395.7,263.5,221.1,124.2,1.3,22.1 +BIHAR,1987,0.7,3.7,5.4,37.7,40.1,143.6,452,539.8,379.7,52.8,2.7,2.3 +BIHAR,1988,1.2,15.3,27.3,46.9,46.2,174.5,364.5,459.4,153.2,33.7,1.5,13.8 +BIHAR,1989,8.9,8.7,6.9,0.2,100.3,152.9,446,171.9,330.9,28.2,1,14 +BIHAR,1990,0.3,30.2,13.8,14,83.3,156.6,485.5,204.4,201.2,49.7,0,0.2 +BIHAR,1991,14.5,6.3,7.9,8.9,31.2,176.2,179.7,324.2,270.5,7.2,0,19.2 +BIHAR,1992,2.6,3.1,0.1,2.6,61.1,83.9,284.8,219.2,85.9,52.4,1.4,0.4 +BIHAR,1993,9.4,4,24.5,24.5,51.1,154.8,209.1,357.3,320,34.3,19.3,0.1 +BIHAR,1994,28.3,29.1,1,7,32.7,130.9,217.7,257.6,226.5,32.9,4.4,1.2 +BIHAR,1995,6.8,11.6,2,0.1,6.7,162.9,227.5,335.7,279.1,11.4,44.4,23.8 +BIHAR,1996,26,21.7,0.2,3,18.2,220.1,238.5,350.9,162.5,66.2,0,0 +BIHAR,1997,10.5,1.1,2.9,29.3,42.2,211,463.9,287.6,185.8,27.8,11,30.6 +BIHAR,1998,8.4,11.2,23.6,26.6,38.2,96.6,465.1,377.4,188,83,14.5,0 +BIHAR,1999,0.1,0.2,0.4,3.8,83.6,265.1,380.8,347.5,199.6,114.1,6.9,0.6 +BIHAR,2000,0.5,12.1,3.6,37.2,96.2,267.2,264.3,201.4,314.8,9.6,0,0.1 +BIHAR,2001,1,0.5,3,12.6,98.4,224.4,224.7,225.9,274.8,181.3,0.5,0 +BIHAR,2002,13.4,11.3,2.2,25,74.8,116.6,386.1,247.7,192.8,33.8,1.4,0.7 +BIHAR,2003,13.2,39.7,10.2,21.9,41.4,230.9,356.8,310.6,183.9,142,0.2,3 +BIHAR,2004,22.7,2.1,2.2,32,72.7,246.8,418.4,175.9,115.3,56.4,3.1,0 +BIHAR,2005,13.9,14.3,12.1,7.7,28.6,82.5,300,309.1,105.1,34.3,0,0.2 +BIHAR,2006,0.1,0,1.9,19.2,73.2,200,290.7,160.4,285.2,17.6,2.9,1.6 +BIHAR,2007,0.2,34.2,25.4,20.3,94.4,170.4,549.4,340.6,309,39.6,9.1,7.5 +BIHAR,2008,25.6,4.4,3.2,10.4,48.9,291.2,397.2,278.1,117.1,21.4,0.1,0 +BIHAR,2009,0.3,0.4,1.1,2.9,98.5,67.7,213.6,298.9,127.6,72.6,5.1,0.8 +BIHAR,2010,0.1,1.1,0.2,6.5,44.4,80.9,191.2,158.4,105.7,33.6,5,2.1 +BIHAR,2011,4.2,7.7,9.2,23.9,74.5,211,241.1,278.7,234.1,10,2,0.9 +BIHAR,2012,18.1,2.7,7.3,20.4,18.8,96.2,354,240.4,233.8,34.3,6.4,0 +BIHAR,2013,5.1,22.6,0.6,32.3,89.5,183.3,182,213.6,143.3,197.1,0.4,0 +BIHAR,2014,17,33.5,8.4,0.7,103.9,115.2,265.4,307.6,160.3,47.8,0,1.2 +BIHAR,2015,12.8,1.8,27.2,38.7,39.5,122.1,231.5,287,101.7,10.4,0,0 +EAST UTTAR PRADESH,1915,12.5,45.5,25.6,5.8,20.1,107.9,285.4,417.2,387.4,98.6,1.9,1.9 +EAST UTTAR PRADESH,1916,0,20.1,0,6.9,7.3,243.5,314.8,351.2,197.4,55.5,5.1,0 +EAST UTTAR PRADESH,1917,7.9,32.2,8.4,3.9,43.8,171.4,356.7,230,302.2,55.4,0,4.6 +EAST UTTAR PRADESH,1918,0.6,0.1,5.3,4.3,20.3,142,110.4,261.6,104,0.1,1.1,0.9 +EAST UTTAR PRADESH,1919,46.2,9.6,2.9,6.5,12.2,68.8,347.4,237.4,228.9,59.1,0.1,4.4 +EAST UTTAR PRADESH,1920,0,12.5,13.6,0.8,16,86.2,468.4,161.4,98.2,3.1,0,0 +EAST UTTAR PRADESH,1921,41.2,0.7,2.5,8.5,0.5,166.8,203.6,460.7,218.2,11.1,0,1 +EAST UTTAR PRADESH,1922,27.6,5.7,0,4.4,2.9,130.2,436.8,438.1,299.1,3.1,0.6,15.5 +EAST UTTAR PRADESH,1923,1.2,38.1,0.1,0.1,5.4,41.9,276.6,340.5,261.7,93.2,1,16.2 +EAST UTTAR PRADESH,1924,11.5,7.3,1,0.2,2.2,42.1,500.9,239.9,266.3,29.2,11.1,8.3 +EAST UTTAR PRADESH,1925,5.2,0,0.4,16.7,20.9,140.8,443.9,236.3,233.1,6,10.9,0 +EAST UTTAR PRADESH,1926,11.3,2.5,44.6,14,19,18.7,365.5,259.8,225.2,26.8,0.5,1.5 +EAST UTTAR PRADESH,1927,6.4,21.3,15.5,1.6,29.7,67.8,280.5,306.3,151.8,73.4,72.9,3.9 +EAST UTTAR PRADESH,1928,24.9,84.3,0.7,12.7,11.7,118.4,290.8,112.1,65.2,68.6,0.3,15.1 +EAST UTTAR PRADESH,1929,42.4,1.4,13,1.7,6.6,163.7,286.7,354.6,48.5,53.3,0,43 +EAST UTTAR PRADESH,1930,11.3,16.8,5.2,3.5,6.1,54.2,367,265,284.8,38.6,3.5,13.4 +EAST UTTAR PRADESH,1931,0.5,27.4,1.8,0.2,8.6,36.8,297,240.2,332,102.3,0.2,0.1 +EAST UTTAR PRADESH,1932,0,5.5,2.2,1.4,7.6,89.4,170.1,287.4,125.7,16.8,29.5,2.9 +EAST UTTAR PRADESH,1933,14.8,18.5,2.9,37,46.8,128,223.7,247.3,158.1,100.5,0,0 +EAST UTTAR PRADESH,1934,33.7,1.6,12.5,1,1.5,148.7,360.7,257.3,236.4,9.5,1.5,3.9 +EAST UTTAR PRADESH,1935,19.9,18,0,10.8,0.2,73.9,259,325.3,198.1,0,0,14.6 +EAST UTTAR PRADESH,1936,6.3,31.1,4.1,4.6,24.2,219.5,598.8,354.2,252.5,28.4,3.3,18.4 +EAST UTTAR PRADESH,1937,0,58.3,1.4,6,21.2,94.9,313.5,363.9,102.2,70.5,0.1,3.3 +EAST UTTAR PRADESH,1938,24.5,11.5,0,1.7,37.4,285.7,376.8,378.9,224.2,33.1,0.3,0 +EAST UTTAR PRADESH,1939,14,21,4.3,1.1,2.5,146.8,284.4,227.6,222.6,20.7,0,0 +EAST UTTAR PRADESH,1940,8.3,20.9,31.5,5,10.5,66.2,256.7,315.2,121,5.9,0,25.8 +EAST UTTAR PRADESH,1941,19,5.6,0.4,0.2,19.1,138.3,142.8,297.5,171,4,0.2,0 +EAST UTTAR PRADESH,1942,56.2,55.8,7.9,4.7,4.9,99.6,277.8,312.4,203,0.2,0,6.2 +EAST UTTAR PRADESH,1943,24.3,7.3,0.1,20.7,15.6,75.4,231.3,444.4,266.5,15.4,0,0 +EAST UTTAR PRADESH,1944,19.2,41.6,63.7,12.4,6.3,105.9,278.4,304.7,178.5,47.5,0,3.2 +EAST UTTAR PRADESH,1945,46.5,1.8,1.7,14.9,12,70.3,239.3,211.5,267.9,108.9,0,5.7 +EAST UTTAR PRADESH,1946,0,25.7,0.5,26.9,35,88.2,395.5,219.5,142.6,92.5,10.5,2 +EAST UTTAR PRADESH,1947,17.3,7.3,11.3,0.7,14.5,88,419.4,229.5,189,27.7,0,1.6 +EAST UTTAR PRADESH,1948,28.3,9.9,0.5,0.7,14,100.2,420.4,391.7,275.5,66.8,15.1,0 +EAST UTTAR PRADESH,1949,3.8,41.3,1.2,3.8,28.5,52.7,287.8,352.4,272.4,86.7,0.5,0 +EAST UTTAR PRADESH,1950,28.8,7.5,19.8,0.2,10.6,147.1,250.9,366.8,91.2,3.3,0.1,25.1 +EAST UTTAR PRADESH,1951,27.4,10.9,21.6,6.1,2.5,114.4,139.2,247.4,168.3,12.7,2,0.1 +EAST UTTAR PRADESH,1952,2.8,12.8,33.7,2.7,9.4,244.8,161.9,350.1,110.8,4.4,0,2.6 +EAST UTTAR PRADESH,1953,32.4,6.3,1.3,3.4,14.9,138.4,497.5,323.7,243.6,3.6,0,1.7 +EAST UTTAR PRADESH,1954,36.5,32.1,1.7,0,3.6,65.2,309.9,300.4,186.5,33.6,0,0.2 +EAST UTTAR PRADESH,1955,34.4,9.6,1.2,1.9,4.5,202.1,529.9,310.8,230.7,99.1,0,0.1 +EAST UTTAR PRADESH,1956,21.5,5.7,12.3,1.2,39.7,165.2,220.3,281.1,292.3,167.2,38.9,8.7 +EAST UTTAR PRADESH,1957,44.2,0.4,18,1,1,56.4,367.3,293.5,163.3,5.1,0.1,5.4 +EAST UTTAR PRADESH,1958,14.6,3.2,5.8,4.4,1.3,52.6,247.3,388.5,184.4,111.9,0,2.9 +EAST UTTAR PRADESH,1959,53.2,4.2,4.8,4.1,36,44.4,234.1,274.6,85.9,125.9,2,0 +EAST UTTAR PRADESH,1960,9.6,0.1,36.3,2.9,5.9,75.2,411,317.2,174.5,136.7,0.6,0 +EAST UTTAR PRADESH,1961,24.7,25.6,0,1.6,6.6,92.7,285.1,407,154.8,203.5,0.6,11.9 +EAST UTTAR PRADESH,1962,28.6,17,9.2,4.8,3.2,81.7,226.3,428.1,265.4,2.3,0,5.4 +EAST UTTAR PRADESH,1963,14.8,2.4,10,8.6,19.4,99.9,320.8,339.9,146.1,24.9,8,1.7 +EAST UTTAR PRADESH,1964,1.6,6.6,0.2,3.7,43.4,82.9,398.7,179.9,292.2,18.3,0.8,8.5 +EAST UTTAR PRADESH,1965,2.1,0.7,9.9,19.3,2.7,21.4,204.5,213.6,161.7,47.9,0.5,1.2 +EAST UTTAR PRADESH,1966,13.5,8.8,0.2,0,8.4,185.7,149.3,274.3,23.1,15,18.3,11.1 +EAST UTTAR PRADESH,1967,2.1,0.1,30.5,9.2,8.1,81,264.7,443.3,155.9,2.7,0.7,31 +EAST UTTAR PRADESH,1968,28.8,5.5,4.5,2.6,1.7,95.1,311.3,251.1,104.1,32.9,0,2.3 +EAST UTTAR PRADESH,1969,2.8,2.6,2.9,7,37.3,59.2,370.1,322.2,200.5,6.8,13.3,0 +EAST UTTAR PRADESH,1970,31.3,41.3,8.4,2.1,30.3,178.1,197.9,226.1,365.5,51.2,0.1,0 +EAST UTTAR PRADESH,1971,15.7,11.6,7.1,39.6,54.5,202.5,295.3,386.7,221.8,75.8,0.5,0 +EAST UTTAR PRADESH,1972,9.7,23.4,3,1.1,1,26.9,185.8,208.3,167.8,24.6,14.8,0.4 +EAST UTTAR PRADESH,1973,11.7,18.3,0.7,0,17.9,119.7,245.1,257.8,174.5,109.7,0.1,0.1 +EAST UTTAR PRADESH,1974,0.5,3.2,4.9,0.2,7,53.3,375.6,257.4,126.6,38.2,1.5,13.7 +EAST UTTAR PRADESH,1975,13.5,7.6,13.1,0.8,8,234.9,405.9,312.5,188.9,40.3,0,0 +EAST UTTAR PRADESH,1976,6.1,3.5,0.2,5.7,23.4,61.4,254,309.3,254.8,4.8,0.3,0.1 +EAST UTTAR PRADESH,1977,10.3,3.7,0.1,9.8,30.9,57.9,397.2,193.5,128.5,66.4,0.7,15.1 +EAST UTTAR PRADESH,1978,27.9,27.2,31.6,9.6,6.5,187.1,327.2,262.6,219.1,12.2,1.6,3.9 +EAST UTTAR PRADESH,1979,27.6,30.6,2.3,6.8,12,85.2,320.6,118.1,31.6,18.5,33.6,9.6 +EAST UTTAR PRADESH,1980,3,4.2,8.9,0.3,15.5,153.4,553.1,449.7,269.8,19.8,0.2,10.7 +EAST UTTAR PRADESH,1981,19.6,3.7,11.8,4.8,29.2,80,436,216.8,293,1.4,10.9,3.1 +EAST UTTAR PRADESH,1982,34.7,9.9,40.3,11.1,44.9,120.1,215.2,316.6,281.9,10.4,20.5,5 +EAST UTTAR PRADESH,1983,20,1.6,0.7,24.9,45.9,104.2,271,242.5,364.2,110.4,0,19.6 +EAST UTTAR PRADESH,1984,24,23.5,1.4,9.4,10.7,286.9,329.7,203.7,164.1,18.5,0,4.7 +EAST UTTAR PRADESH,1985,20.8,0,0.5,2.2,10.4,69.7,351.8,215.7,333.3,158.3,0,13.2 +EAST UTTAR PRADESH,1986,7.1,36.5,0.9,5.6,26,116.9,301,245.3,121.2,31.6,1,42.5 +EAST UTTAR PRADESH,1987,11.1,6.4,2.6,6.4,22.2,20.7,215.9,167.6,289.5,78.7,0,3.5 +EAST UTTAR PRADESH,1988,2.3,11.1,17.4,14,17.4,107,375.4,365,102.3,54.7,0,18.5 +EAST UTTAR PRADESH,1989,14.5,4.3,9.3,0,7.3,138.4,370.7,194.7,207.4,7.9,1.8,13.6 +EAST UTTAR PRADESH,1990,0,42.6,9.5,1.8,42.3,135.7,488.8,212.2,153.9,12,0,7.4 +EAST UTTAR PRADESH,1991,8.6,10.9,7.9,3.9,4.1,98.2,123,395.9,201.6,0.2,2.7,18.3 +EAST UTTAR PRADESH,1992,9,8.7,0.3,1.2,14,51.4,243.3,233.2,191.1,103.9,7.3,0 +EAST UTTAR PRADESH,1993,1.7,5.1,23.2,8.9,33.9,162.5,142.6,206.6,240.7,7.8,0.5,0.3 +EAST UTTAR PRADESH,1994,22.2,24.7,0.1,9.5,7.6,127.5,230.8,300.1,177.5,10,0.3,0 +EAST UTTAR PRADESH,1995,19.2,23.1,1.9,2,2.1,133.8,173,290.4,187.2,2.4,16.7,8.4 +EAST UTTAR PRADESH,1996,55.6,39.6,0.6,2.5,1.2,145.1,201,337.9,147.1,79.8,0,0 +EAST UTTAR PRADESH,1997,6,0.4,0.6,13.3,15.8,69.5,291.3,41.5,32.1,8.1,4.1,10.8 +EAST UTTAR PRADESH,1998,9.5,8.6,14.2,6.6,20.1,55.4,218.3,247,63.8,14.5,3,0 +EAST UTTAR PRADESH,1999,8.7,6.8,0,0.2,23.6,112.6,254.2,261.5,211.1,71,1,2 +EAST UTTAR PRADESH,2000,2.6,5.3,2.9,10.5,38.6,199.1,240.9,204.7,222.7,1.3,18.1,0.2 +EAST UTTAR PRADESH,2001,1.1,1.4,1.3,4.2,26.7,229,294,185.9,152.1,75.3,2.8,0 +EAST UTTAR PRADESH,2002,15,26.1,0.6,2.5,29.2,50.6,101.7,212.1,226.7,20.6,1.4,2.7 +EAST UTTAR PRADESH,2003,13.8,36.9,2.6,8.8,2,124.9,255.2,301.4,333.8,7.6,0,9.3 +EAST UTTAR PRADESH,2004,22.8,1.8,0,8.7,25.8,161,219.5,147.6,126.5,33,0.1,0.1 +EAST UTTAR PRADESH,2005,14,14,10.3,0.9,8,57.5,290.3,227.3,119.7,25.2,0,2.9 +EAST UTTAR PRADESH,2006,0,0,10.7,7.8,27.1,107.4,269.1,146.7,51.5,9.1,1.2,1.5 +EAST UTTAR PRADESH,2007,0.1,46.6,25.8,3.2,28.3,64.5,265.2,180.4,111.5,14.6,0,1.1 +EAST UTTAR PRADESH,2008,3.1,2.4,0.2,3,16.1,223.7,341.6,239.6,112.7,10.3,0.6,0 +EAST UTTAR PRADESH,2009,0,1.1,0.8,0.6,22.8,29.9,149.4,177,139.6,80.9,4.9,3 +EAST UTTAR PRADESH,2010,2.2,10,0,0,14.7,23.9,220.8,215.9,184.5,15.5,4.5,0.1 +EAST UTTAR PRADESH,2011,1,2.7,1.6,2.9,32.2,163.8,197.9,232.1,146.4,0.6,0,0 +EAST UTTAR PRADESH,2012,20.3,1.2,3.4,2.8,0.2,18.5,234.2,156,164.4,0.7,0.3,0.7 +EAST UTTAR PRADESH,2013,6.1,59.6,2.7,8.7,1.1,309.7,230,246.1,78.2,97.4,0.5,1.1 +EAST UTTAR PRADESH,2014,47.4,25.8,15.4,1.7,10.7,47.8,224.5,138.1,106.7,74.7,0,8.4 +EAST UTTAR PRADESH,2015,30,4.1,48.2,23.2,8.6,95.3,179,175.8,21.9,11.8,0.5,4.9 +WEST UTTAR PRADESH,1915,20.2,60.7,50.3,7.4,11.9,58.5,196,241.3,136,18.4,0,1.8 +WEST UTTAR PRADESH,1916,0.1,17.9,0,2.5,10.4,139.9,299.7,356.9,230.5,48.9,7.4,0 +WEST UTTAR PRADESH,1917,9.7,25.6,11.7,16.8,48.5,101.8,298.1,235.5,288.9,80.1,0,3.5 +WEST UTTAR PRADESH,1918,7.2,0.7,10.9,4.9,5.5,83.6,72.9,161,20.3,0.2,4.1,0.6 +WEST UTTAR PRADESH,1919,68.6,4.4,3.3,5.8,14.2,19.5,311.4,381.6,129.6,12.1,3.7,14.7 +WEST UTTAR PRADESH,1920,5.2,9.3,9.7,0.4,19.6,128.1,332.4,88.2,28.1,1.8,0,0 +WEST UTTAR PRADESH,1921,50,0.7,1.1,3.4,0.5,141.8,164.5,384.6,232.7,12.6,0,0.3 +WEST UTTAR PRADESH,1922,36.8,4.1,0,1.6,2.6,77.6,326.3,336.9,190.7,2.9,0.9,20.4 +WEST UTTAR PRADESH,1923,4.9,39.7,0.3,0,7.4,8.1,209.8,350.4,204.1,39.7,1.4,36.4 +WEST UTTAR PRADESH,1924,29.1,20.3,2.2,0.2,7.7,17.8,308.8,256.6,354.7,41.7,1.6,23.4 +WEST UTTAR PRADESH,1925,4.2,0.2,0.1,5.5,12.5,207.5,403.3,227,58.5,5.3,19.8,0 +WEST UTTAR PRADESH,1926,13,8.2,53.7,14.6,24.9,15.9,282.3,312.4,168.2,22.2,1.3,0.4 +WEST UTTAR PRADESH,1927,0,23,19.2,4.4,19.1,73.4,252.6,316,66.7,104.4,42,13.4 +WEST UTTAR PRADESH,1928,28.6,89.9,1.9,7.8,8.6,55.9,262.4,85.1,33.7,43.2,8.6,18.9 +WEST UTTAR PRADESH,1929,26.3,2.5,1.9,5.7,1.5,83,210.7,234.7,32.7,18.4,0.8,32.2 +WEST UTTAR PRADESH,1930,23.8,18.3,0.6,2.6,4.3,64,369.6,219.7,50.4,30.9,0.2,4 +WEST UTTAR PRADESH,1931,0.5,25.9,6.3,0.4,6.3,16.2,217,224.3,349.5,84,0.2,0.2 +WEST UTTAR PRADESH,1932,0,4.2,13,4.2,2.9,24.3,175.3,178.7,286.7,0.1,8.6,7.9 +WEST UTTAR PRADESH,1933,5.5,14.7,6,19.6,33.3,239,205.5,224,199.6,85.9,1,1.4 +WEST UTTAR PRADESH,1934,28.1,1.8,27.7,1,0.9,120.7,217.2,343.3,144.1,1,0.8,11.1 +WEST UTTAR PRADESH,1935,28.4,22,2.8,15.9,0.2,16.8,321.4,170.9,174.6,2.3,2.9,26.5 +WEST UTTAR PRADESH,1936,3.5,16.9,11.9,2.5,17.5,291.2,353.9,284.1,194.1,1.5,12.9,28.6 +WEST UTTAR PRADESH,1937,0.3,64.6,1.8,11.5,10.5,66.1,211.8,164.8,131.7,2.2,0.9,10.7 +WEST UTTAR PRADESH,1938,39.2,5.9,0.1,1.1,7.9,158.8,273.6,182.2,42.6,18.5,0.5,0 +WEST UTTAR PRADESH,1939,8,21.2,6.3,0.6,2.9,130.2,235.5,101.7,211.5,3.2,0,0 +WEST UTTAR PRADESH,1940,21.1,39.3,19.1,5.8,5.7,40.4,232.4,348.7,53.9,1.5,0.2,15.8 +WEST UTTAR PRADESH,1941,35.6,8.3,1.6,0,16,87.6,56.2,221.6,83,4.4,0,2 +WEST UTTAR PRADESH,1942,33.2,54.3,1.3,5.9,5.4,98,362.4,320.1,193.9,0,0,13.7 +WEST UTTAR PRADESH,1943,25.8,0.5,2.8,13.9,11.2,75.7,186.6,379.5,149.8,4.5,0,0.1 +WEST UTTAR PRADESH,1944,32.3,43.2,44.4,25.1,0.4,76.5,255.4,183.2,87.1,21,0.6,1.2 +WEST UTTAR PRADESH,1945,35.5,0,0.5,4.6,4.4,31,309.5,260,278.8,41.6,0,0.1 +WEST UTTAR PRADESH,1946,0.1,19.3,0.7,11.9,20.4,92.2,378.2,277.6,40,31.5,18.2,6.7 +WEST UTTAR PRADESH,1947,18.1,12.2,11,0.2,2.9,47.4,237.3,197.8,263.6,11.1,0,7.4 +WEST UTTAR PRADESH,1948,37.2,18.8,11.9,0.3,5.3,9.2,310.3,422.8,179.7,22.5,9.6,0.5 +WEST UTTAR PRADESH,1949,0.6,38.3,3.4,3.2,10.7,14.5,339,267.7,207.8,21.3,0,0.1 +WEST UTTAR PRADESH,1950,21.1,5.8,21.2,0.7,7.1,47.7,265.9,311.2,138.4,0.2,0,14.8 +WEST UTTAR PRADESH,1951,16.4,8.2,34.9,6.6,11.5,31.7,141,253.4,199.9,6.5,18.7,0 +WEST UTTAR PRADESH,1952,6.6,20,23.4,2.6,8.1,190.8,198.8,379.1,36.2,2.3,0.1,7.3 +WEST UTTAR PRADESH,1953,36.9,0.5,0,5.9,7.4,64.6,366.8,192.8,85.1,1.1,0,0.5 +WEST UTTAR PRADESH,1954,34.9,67.6,11,0.1,0.7,40.8,232.5,222.7,169,99.9,0,0 +WEST UTTAR PRADESH,1955,44.8,5.7,2.4,3.3,2.1,98.1,199.4,295.2,216.2,193.7,0,0 +WEST UTTAR PRADESH,1956,23.1,4.3,22.2,0.4,12.4,67.2,334.7,289.8,96.8,206.5,4.5,2.6 +WEST UTTAR PRADESH,1957,59.7,0.3,29.1,5.4,2.4,42.3,282.3,271.1,278.9,18.2,3.2,12.3 +WEST UTTAR PRADESH,1958,7.7,2.8,3.5,5.5,0.7,42.1,397.1,327.3,246.7,122.4,0.2,9.4 +WEST UTTAR PRADESH,1959,46.3,3.9,5.7,1.3,34.1,18.9,203.5,281.1,106.8,50.2,16.5,0 +WEST UTTAR PRADESH,1960,11.6,0,33.9,2.3,5.8,64.9,334.9,391.9,94.7,187.7,0,1.9 +WEST UTTAR PRADESH,1961,44.5,33.1,0.1,2.1,7.6,73.4,302.5,467.5,113.5,141.4,1.9,10.5 +WEST UTTAR PRADESH,1962,34,18.6,15.1,0.8,2.2,45.9,221.2,238,214.6,0.1,1.6,6.1 +WEST UTTAR PRADESH,1963,13.6,5,5.2,3.5,9.7,70.9,165.4,361.4,279.5,0.3,10.9,4.3 +WEST UTTAR PRADESH,1964,2.3,0.8,1.9,0.6,20.2,38.8,416.3,246.7,261,1.6,0.2,11.6 +WEST UTTAR PRADESH,1965,8,10.4,10.6,21.1,10.6,3.7,215.4,219.4,148.4,25.3,0,0.7 +WEST UTTAR PRADESH,1966,6,13,0.8,0.2,20.5,143.3,146.5,356.5,49.3,9.3,7.8,2.9 +WEST UTTAR PRADESH,1967,0.5,0.1,34.4,1.3,3.8,51.8,263.6,509.6,223.5,4.8,2.1,61.6 +WEST UTTAR PRADESH,1968,21.8,8.4,10,0.3,0.1,46.4,319.3,205,64.7,15.6,0,1.5 +WEST UTTAR PRADESH,1969,5.8,3,10,4.8,16.6,17.1,311.4,262.4,231.2,0.4,15.4,0 +WEST UTTAR PRADESH,1970,37.8,44.6,9.3,0.1,15.5,129,133.6,316.3,160.8,16.9,0,0 +WEST UTTAR PRADESH,1971,10.9,12.5,2.9,11.5,44.7,139.1,284.6,280.5,125.7,84.3,6.2,0 +WEST UTTAR PRADESH,1972,4,26.3,4.5,3.1,0.4,31.9,165.9,211.5,119,7.5,9.4,1.6 +WEST UTTAR PRADESH,1973,7.5,12.7,2.6,0,7.9,79.9,263.5,292,87.1,51,0.1,1.7 +WEST UTTAR PRADESH,1974,0.2,0.7,0.8,0.1,7.9,25.8,356.6,191.5,27.6,39.1,0,18.6 +WEST UTTAR PRADESH,1975,13.4,7.8,7,0.8,2.5,159.7,273.1,245.6,256.9,22.6,0,0 +WEST UTTAR PRADESH,1976,1.5,11.9,2.9,2.3,11,69.8,228.8,246.1,75.2,2.6,0.6,0.3 +WEST UTTAR PRADESH,1977,15.9,2.8,0.2,20,22.7,78.5,440.6,192.3,176.1,27.8,0.3,17.2 +WEST UTTAR PRADESH,1978,6,31.7,57.1,8.3,0.7,206.2,279.7,397,244.9,3.5,2.7,6.2 +WEST UTTAR PRADESH,1979,45.1,48.6,10.6,2.3,29.9,56.7,240.8,69.7,26.6,1.7,18.6,7.4 +WEST UTTAR PRADESH,1980,4.5,4.8,19.3,0.4,2.2,104.7,349.4,364.4,99.3,16.1,1.4,18.1 +WEST UTTAR PRADESH,1981,19,5.2,13.4,1.3,22.7,102.2,314.5,131.4,101.9,3.1,20.6,4.2 +WEST UTTAR PRADESH,1982,30.5,8.3,61.8,23.8,40.5,53.1,231.1,403.4,81.8,8.7,14.4,11.6 +WEST UTTAR PRADESH,1983,28.1,5.4,5.5,59.8,33.7,89.7,306.7,385.5,212.6,50.7,0,14 +WEST UTTAR PRADESH,1984,24.7,27.5,0.6,7.4,0.3,134.5,200.2,268.3,116.6,0.4,0,0.7 +WEST UTTAR PRADESH,1985,7.5,0,1.7,6.9,6.1,44.3,305.5,221.8,204.4,143.8,0,15.2 +WEST UTTAR PRADESH,1986,14.8,46.5,5.7,3.9,29.8,95.3,202.6,181,105.5,15.1,2.1,13 +WEST UTTAR PRADESH,1987,15.2,13.1,2.7,1.8,39.8,34.6,105,124.2,92.4,30.8,0,7.3 +WEST UTTAR PRADESH,1988,3.5,11.4,26.6,8,6.1,85.6,318,412.7,139.6,14.9,0,9.1 +WEST UTTAR PRADESH,1989,24.6,1.1,15.4,0,1.6,88.5,132.1,222,153.6,0.4,4.1,14 +WEST UTTAR PRADESH,1990,0,67.5,9.2,0.7,29.8,45.9,334.2,195.9,250.4,3.7,3.5,17.4 +WEST UTTAR PRADESH,1991,2.9,18.9,7.5,2.9,2.7,44.8,108.6,406.2,124.7,0,7.9,21.7 +WEST UTTAR PRADESH,1992,14.2,9.7,4,0.3,7.9,25.9,196.9,306.1,179.4,67.4,8.9,0 +WEST UTTAR PRADESH,1993,3.7,13.5,21.2,1,15.2,82,156.6,136.9,326.8,15.1,0.1,0 +WEST UTTAR PRADESH,1994,24,17.3,0,12.4,6.5,72.5,364.3,290.2,19.7,0,0,0.1 +WEST UTTAR PRADESH,1995,30.1,11.2,7.9,3.7,0,72.2,188.3,389.2,122.1,0.1,0.2,1.9 +WEST UTTAR PRADESH,1996,24.8,55.8,2.7,0.4,3.7,86.1,210.3,350.4,170.7,36.2,0,0 +WEST UTTAR PRADESH,1997,3.8,0.7,2.4,19.2,22.8,79.9,235.7,34.6,24,7.5,3.2,11.4 +WEST UTTAR PRADESH,1998,3.3,8.1,23.5,9,10.4,71.4,273.4,343.7,84.2,39.6,0.7,0 +WEST UTTAR PRADESH,1999,19.3,1.1,0,0,8.3,66.3,215.1,180.5,261.6,33.4,0.1,0.7 +WEST UTTAR PRADESH,2000,8.8,22.9,1.7,2.1,23.6,143,251.2,238.9,79.1,0,0,0 +WEST UTTAR PRADESH,2001,2.5,2.3,2.6,12,29.6,164.4,282,122.1,26.7,16.3,1.1,0.1 +WEST UTTAR PRADESH,2002,16.8,37.6,2,0.7,21.5,29,29.6,252.3,218.1,6.7,0.4,10.5 +WEST UTTAR PRADESH,2003,18.6,40.4,2.5,4.4,5.9,74.1,315.6,214.2,356.6,0.7,0.8,13.6 +WEST UTTAR PRADESH,2004,20.6,0.7,0,20,21.7,59.3,124.2,250.5,84,60.5,0.7,0.2 +WEST UTTAR PRADESH,2005,10.1,17.9,22.6,1.2,6.9,67.1,298.2,96,202.5,2.5,0,0.6 +WEST UTTAR PRADESH,2006,0.5,0,20.2,4,34.1,66.6,241.6,78.1,65.7,16.7,0.7,1 +WEST UTTAR PRADESH,2007,0.4,66.9,37.4,0.9,11,88.4,155.1,152.2,57,1.8,0,1.4 +WEST UTTAR PRADESH,2008,0.9,0.2,0,4,24.8,193.8,258.5,217.4,90.9,5.1,4,0 +WEST UTTAR PRADESH,2009,1.3,3.9,1.2,8.7,12.8,17.1,118.3,184.5,125.4,59.3,13.9,2.8 +WEST UTTAR PRADESH,2010,3.2,13.7,0.2,0.4,9.3,12.5,282,213.8,263.9,4.7,12.8,4.1 +WEST UTTAR PRADESH,2011,2.1,10.4,3.9,2.8,29.6,175.9,215.9,232.3,101.7,0.7,0.5,1.5 +WEST UTTAR PRADESH,2012,14.5,0.1,1.4,4.7,0.3,4,145.1,149.1,67.8,0.5,0.1,2 +WEST UTTAR PRADESH,2013,20.4,69.5,3.5,1.6,2.1,190.6,233.9,287.1,52.2,61.2,1.7,8.9 +WEST UTTAR PRADESH,2014,48.3,29.4,22.6,5.3,11,22,151.6,81,84.7,14.6,0,16.3 +WEST UTTAR PRADESH,2015,31.6,7.2,66.8,21,8.1,72,194.2,143.5,26.5,6.9,2,3 +UTTARAKHAND,1915,32.4,126.3,101,40.6,57.2,129.8,370.2,539.9,178.3,12.9,0,12.6 +UTTARAKHAND,1916,3.9,35.6,1.9,20.6,49,373.8,432.3,397.7,280.1,83.8,0,0 +UTTARAKHAND,1917,7.6,55.4,64.9,80.1,118.2,298.1,561.2,372.7,405.7,115.8,0,23.3 +UTTARAKHAND,1918,17.2,0,73.9,85.6,46.5,237.6,225.8,397.2,101,4,18.4,8.2 +UTTARAKHAND,1919,158.9,46.7,44.1,40.2,51,278.4,372.5,295.9,242.6,14.2,9.7,29.1 +UTTARAKHAND,1920,6.1,52.7,100.7,10,65.3,221.7,472.5,307.1,76.9,12.9,0,2.6 +UTTARAKHAND,1921,101,5.6,12.5,19.7,3.6,364.1,329.3,652.8,299.5,55.8,0.2,4.7 +UTTARAKHAND,1922,86.4,34.4,11.7,21,12.1,125.1,507.1,685.2,320.9,3.8,1.3,51.1 +UTTARAKHAND,1923,80.5,146.6,18.5,10.8,26.9,84.8,372.5,427.9,289.9,69.4,10,45.1 +UTTARAKHAND,1924,42.5,60.1,27.7,6.8,43.4,39.4,450.2,414,651.5,128.1,0.6,62.8 +UTTARAKHAND,1925,34.3,17.7,11.7,43.5,57,309.1,554.5,384.5,65.9,20.1,36.7,0 +UTTARAKHAND,1926,22,28.2,143,52,57.8,34.8,475.3,400.7,133.3,10.2,22,2 +UTTARAKHAND,1927,13.7,121.8,53.2,24.5,66.8,210.2,308.9,516.8,159.9,120.8,43.7,9.5 +UTTARAKHAND,1928,89.5,150.1,27.2,40.2,18.6,114.5,468,251.4,29.7,6.3,17.4,28.9 +UTTARAKHAND,1929,52.9,33.2,16.9,21.7,20.6,138.7,279.7,403.2,65.2,44.5,0,135.5 +UTTARAKHAND,1930,65.7,72.7,52.1,34.8,39.6,126.5,399.7,348.3,76.5,21.6,8.1,25.6 +UTTARAKHAND,1931,7.8,89.9,45.1,1.9,56.9,55,319.1,307.2,335.3,105.8,6.8,3.4 +UTTARAKHAND,1932,1.9,18.5,34.3,12.8,27,95.7,343.5,438.9,326.9,6.3,5.5,58.4 +UTTARAKHAND,1933,51.7,67.2,23.4,52.6,89.4,227,466.8,337.3,151.2,128,0,1.2 +UTTARAKHAND,1934,66.3,10.4,21,8.6,20.6,201.7,459.4,410.4,97.1,1.6,0.5,41.5 +UTTARAKHAND,1935,93,34.5,26.7,37.8,4.2,44,385.1,308.1,174.8,3.6,8.8,16.5 +UTTARAKHAND,1936,6.9,54.7,42.2,33.6,92.8,345.1,570.8,390.4,241.2,19.8,2.1,112.7 +UTTARAKHAND,1937,10.5,149.3,7.2,43.9,47.6,172.7,398.7,439.6,211.7,15.8,2,34.5 +UTTARAKHAND,1938,122.5,85.4,7.5,4.5,37,293.6,459.2,396.4,110.8,11.4,0.8,0.1 +UTTARAKHAND,1939,21.1,82.1,39.2,15.5,9.1,213.1,352.9,199.3,186.2,24.2,0,0 +UTTARAKHAND,1940,49.2,100.5,57.3,21.8,44.2,136,395.1,300,82.6,1.4,0.4,35.3 +UTTARAKHAND,1941,58.2,37.3,14,4.4,67.4,200.3,171.5,354.1,95.7,32.3,0.5,25.9 +UTTARAKHAND,1942,109,81.8,17.6,53.4,34.9,191.5,481,455.8,223.8,1,0.1,61.6 +UTTARAKHAND,1943,61.2,17.6,27.8,53.5,15.9,134.4,283.2,590.9,181.4,0.2,0.1,0.3 +UTTARAKHAND,1944,76.6,72,62.6,51.2,18.4,192,354.4,194.7,144.5,21.4,0.7,10.3 +UTTARAKHAND,1945,120.2,4.5,39.3,42.7,16.5,90.6,468.6,379.8,391.8,92,0.1,1.8 +UTTARAKHAND,1946,0.5,47.9,20.4,64.8,121.5,193.1,565.1,311.5,114.9,48.7,18.2,20.1 +UTTARAKHAND,1947,46.8,52.2,47.7,1.6,49,126.8,383.4,274.2,350.5,16.6,0.4,10.8 +UTTARAKHAND,1948,1.6,103,121.6,23.8,35.1,53.2,337.1,592.5,205.1,50.7,3.1,8.7 +UTTARAKHAND,1949,7.3,135.5,32.4,29,59.7,52.4,450.2,414.5,204,22.2,0.2,4.8 +UTTARAKHAND,1950,59.5,30.3,55,2.7,40.2,240.1,492.8,493.4,160.8,2.7,0,6.6 +UTTARAKHAND,1951,54,41.8,46.8,30.7,61.7,74,200.9,403,204.2,13.5,43.8,0.1 +UTTARAKHAND,1952,39.4,61.1,125.5,19.9,34.8,241,346.1,506.4,82.4,11.2,3.6,6.4 +UTTARAKHAND,1953,118.1,14.8,18.3,34.7,71.2,181.8,617.5,338.9,125.8,9.8,0,35 +UTTARAKHAND,1954,117.9,155.7,22.3,5.2,27.6,111.6,472.6,567.3,217.2,148.6,3.4,13.4 +UTTARAKHAND,1955,84.7,14.2,51.9,41.1,19.8,151.4,356.1,429,236.3,271.2,0,11.3 +UTTARAKHAND,1956,40.5,24.9,105.3,15.1,132.4,213.9,466.4,359.3,182.7,370.4,5.9,26.1 +UTTARAKHAND,1957,166.4,6.6,77.5,73.3,75.9,113.4,532.1,286.5,308.3,57.7,20.1,62.9 +UTTARAKHAND,1958,59.2,16.5,38.7,23.3,26.3,95.3,436.6,436.2,233.4,78.9,2.5,52.1 +UTTARAKHAND,1959,68,93.3,58.1,20.3,49,118.8,483.5,442.3,294.6,87.9,26.2,0.9 +UTTARAKHAND,1960,80,1.4,97.1,33.5,24,132.4,466.7,420.7,189.2,76.6,2.2,16.3 +UTTARAKHAND,1961,126.3,133.7,24.1,20.5,41,181.2,490.1,511.6,226.4,122.7,13.1,57.5 +UTTARAKHAND,1962,79.5,86.3,68.7,27.3,21.5,150.9,402.2,398.2,341.5,8.6,29,33.9 +UTTARAKHAND,1963,17.4,35.5,130.9,51.4,49.3,193.1,360.9,523.4,345.1,10.8,43.9,40.2 +UTTARAKHAND,1964,89.7,72.5,75,48.4,95.2,162.7,463.8,402,327.6,1.3,0,31.3 +UTTARAKHAND,1965,44.4,159.5,119.3,62.1,44.1,50.3,388,302.8,87.5,33,11.8,2.9 +UTTARAKHAND,1966,3.2,86.6,48.9,17.8,76.7,270,363,410.3,125.7,35.1,15.3,13.3 +UTTARAKHAND,1967,11,35,112.5,26,23.2,122.6,436.3,518.7,146.5,22,22.4,79.9 +UTTARAKHAND,1968,173.1,122.8,62.9,49,15,218.6,393.6,280.6,109.6,13,1.4,38.9 +UTTARAKHAND,1969,79.8,43.1,49,60.7,77,89.6,381,483.5,345.6,25.3,0.2,1 +UTTARAKHAND,1970,85.9,44,32.7,5.7,68.9,192.9,319.2,355.3,157.8,30,0.8,0.2 +UTTARAKHAND,1971,52.4,101.4,45.3,69,270.2,297.8,332.8,377,155.9,79.5,22,0.3 +UTTARAKHAND,1972,30.3,91.7,44.7,50.5,7.4,62.8,315.4,218.8,212.6,18.8,7.9,17 +UTTARAKHAND,1973,73,65.7,47.8,1.8,44.8,254.3,265.9,297.9,130.8,46.8,1.6,9.2 +UTTARAKHAND,1974,56.8,28,18.2,12.2,22.1,86.5,392.9,347.3,102.6,46.9,4.5,43.6 +UTTARAKHAND,1975,75.4,70.5,69.6,1.1,36.4,219.9,403.1,359.6,322.8,21.8,0,0 +UTTARAKHAND,1976,12.7,58.4,31.2,22.1,40.5,87.6,269.2,328.5,129.3,5.6,0.1,1.1 +UTTARAKHAND,1977,47,7.8,4.5,65.2,101.1,122,487,292.3,208.3,30.1,2.9,48.1 +UTTARAKHAND,1978,34.6,83.1,187.3,51.2,51.8,291,414.3,528.4,324.8,16.9,43.7,4.3 +UTTARAKHAND,1979,50.6,68.4,65.9,23.6,64,110.2,323.5,276.1,37.7,11.7,8.2,32.4 +UTTARAKHAND,1980,21.7,55.7,60.3,15.6,21.3,175,466,322.7,133.5,37.3,2.4,21.9 +UTTARAKHAND,1981,67.6,27.8,81.3,23.7,77.4,162.1,488.1,263.5,103.1,4.6,42.1,15 +UTTARAKHAND,1982,61.9,58.6,143.2,78.2,77.1,90.6,264,435.1,110.7,17.8,1.4,33.5 +UTTARAKHAND,1983,80.9,45.5,92.1,132.9,101,114.1,261.3,312.9,320,53.8,1.6,9.1 +UTTARAKHAND,1984,19.6,128.9,14.6,42,27.5,300.1,359.3,237.7,173.5,3.2,2.6,30.1 +UTTARAKHAND,1985,54.3,9.6,14,40.9,63.5,104.4,451.7,389.4,228.2,220.5,3,74.1 +UTTARAKHAND,1986,3.8,68.4,85.4,70.7,149.7,141.6,418.3,281.7,155.5,61.6,13.8,63.9 +UTTARAKHAND,1987,29.8,61.7,30.3,48.8,148,55.9,190.3,261,123.9,20.2,0.2,17.1 +UTTARAKHAND,1988,18.1,81.6,136.5,26.3,45.3,129.7,490.9,390.8,202,16.6,0.9,63.7 +UTTARAKHAND,1989,91,14.7,30.3,9.9,28.5,117.9,333.4,386.6,183.5,12.3,17.3,38.2 +UTTARAKHAND,1990,0.8,97.1,91.3,20.4,81.6,120.3,473,413.6,179.1,14.6,6.1,67.1 +UTTARAKHAND,1991,13.2,58,52,51.6,21.2,81.8,219.8,346.7,126.4,0.5,10.1,39.4 +UTTARAKHAND,1992,71.3,32.5,46.1,2.9,31.5,117.5,254.4,385.1,152.4,9,5.4,0 +UTTARAKHAND,1993,77.1,70.3,162.8,19.8,71.7,144.7,309.4,282.3,447,1.5,7.4,0 +UTTARAKHAND,1994,56.7,84.2,11,69.8,75.6,112.1,476.9,428.2,98,5.3,1.7,22.3 +UTTARAKHAND,1995,98.9,123.6,79.9,41.4,34.6,138.5,358.3,430.7,282.8,5.1,2.1,20.2 +UTTARAKHAND,1996,49.7,89.6,67.1,28.4,18.3,181.6,308.1,441.1,185.6,31.4,0.5,0 +UTTARAKHAND,1997,42.1,14.9,31.2,90.5,56.1,129.8,290,73.3,36.4,9.9,10.8,18.5 +UTTARAKHAND,1998,9.6,68.4,106.2,73,78.5,163.3,242.9,260,120,75.5,1.2,0 +UTTARAKHAND,1999,33,11.4,1.4,1.2,50.5,158.9,389,285.5,217.9,32,0.1,4.7 +UTTARAKHAND,2000,29.9,69.4,37.9,18.1,83.3,313.9,420.1,536.1,195.3,1.1,7,0.7 +UTTARAKHAND,2001,22.7,27.9,83.4,48.2,109.1,297.3,493,371.7,68.3,6.3,1.4,15.1 +UTTARAKHAND,2002,53.8,123.2,100,76.3,82.3,139.6,205.7,465.4,301.3,19.9,3,4.2 +UTTARAKHAND,2003,40.7,126,99.7,54.1,67.1,145.2,515.3,416.2,239.9,1.8,4.8,23.6 +UTTARAKHAND,2004,58.5,11.7,0,51.5,66,130.7,400.9,326.3,96.8,70.7,0.8,5.7 +UTTARAKHAND,2005,64.1,83.2,54.2,12.8,52.1,74,400.1,249.2,337.9,14.1,2.2,4.3 +UTTARAKHAND,2006,48.7,9.6,71.7,52.2,120.5,104.2,345.6,294.7,79.1,18.8,6.8,27 +UTTARAKHAND,2007,1.7,138.9,123.1,41.1,78.8,139.9,522.9,502.8,325.6,25.1,7.8,16.7 +UTTARAKHAND,2008,55.6,11.7,18.1,93,67.3,332.4,313.3,245.8,190.8,23.1,11.9,0.6 +UTTARAKHAND,2009,1.8,27.6,18.8,18.4,77.6,41.9,157.5,202.6,206.6,81.3,12.6,0.9 +UTTARAKHAND,2010,11.4,62.1,3.8,13.8,47,72.7,455.8,335.7,389.7,8,4.5,19.5 +UTTARAKHAND,2011,30.9,65.2,18,30.9,84.2,223.1,433.3,523.7,148.4,3.4,1.2,2.3 +UTTARAKHAND,2012,38.8,11.9,28.1,39.2,9.1,46,387.1,419.5,220.6,4.7,3.4,15.5 +UTTARAKHAND,2013,73,188.3,22,24.7,18.2,488.9,413.4,359.4,111.3,29.1,3.2,3.8 +UTTARAKHAND,2014,45.9,99.9,68.4,37.6,52.9,62.9,462.7,264.2,107.9,40.8,0,44.3 +UTTARAKHAND,2015,54.5,62.6,127.3,57.3,38,186.6,337,305.3,52.6,16.8,2.4,7.2 +HARYANA DELHI & CHANDIGARH,1915,30.7,49.1,40.9,7.1,8,39.9,66.9,69.9,101.7,6.4,0,1.8 +HARYANA DELHI & CHANDIGARH,1916,0.5,15.7,0.2,2.3,12.5,71.2,139.7,217.7,107.8,61.6,0,0 +HARYANA DELHI & CHANDIGARH,1917,6.1,7.4,3.2,34.5,25.8,64.6,164.3,210.9,361.5,101,0,7.5 +HARYANA DELHI & CHANDIGARH,1918,10,0,11.1,9.9,1.1,34.3,20,142.1,5,0.3,0.8,0 +HARYANA DELHI & CHANDIGARH,1919,61,2.7,8.4,2.3,14.8,7,208.7,172.1,50.6,0,3.4,22.8 +HARYANA DELHI & CHANDIGARH,1920,11.2,12.9,13.2,0.2,21.6,73,194.8,30.8,9.6,1.4,0,0.1 +HARYANA DELHI & CHANDIGARH,1921,21.3,1.2,0.5,1.4,0,13.7,100.2,189.5,86.1,29.5,0,3 +HARYANA DELHI & CHANDIGARH,1922,14.3,4.5,0.6,0.6,1.4,86.7,139.6,99.7,176.5,1.7,0,27.1 +HARYANA DELHI & CHANDIGARH,1923,17,52.7,0.8,0.1,19.7,24.8,183.7,221.3,17.6,9.1,0.3,34.4 +HARYANA DELHI & CHANDIGARH,1924,48.5,18.9,2,1.3,5.5,18.5,98.3,151.3,247.5,45.5,2.5,15 +HARYANA DELHI & CHANDIGARH,1925,4.8,0.1,0.1,3.1,11.2,153.8,247,108.6,10.2,5.7,12.2,0.3 +HARYANA DELHI & CHANDIGARH,1926,9.4,9.3,39.2,10.3,33.4,18.4,190,257.4,45.5,0.6,2.4,0.1 +HARYANA DELHI & CHANDIGARH,1927,0.2,34.1,14.8,7.4,13.9,12.2,160.9,163.9,42.7,18.1,1.7,32.5 +HARYANA DELHI & CHANDIGARH,1928,21.5,28.3,3.4,5.9,3.7,36.5,131,77.6,35.6,7.6,20.3,16.8 +HARYANA DELHI & CHANDIGARH,1929,15.2,0.1,0,9.5,3.7,18.7,135.2,82.8,11.4,3.8,0,26.2 +HARYANA DELHI & CHANDIGARH,1930,28.4,11.4,4,1.8,3.4,68.6,266.5,78.4,32.3,2.8,0.9,2.1 +HARYANA DELHI & CHANDIGARH,1931,0.4,17,14.2,0.3,7.8,11.1,198.7,122.5,109.5,37.4,0,0.1 +HARYANA DELHI & CHANDIGARH,1932,3,2,26.2,4.8,6.1,14.3,136.8,113.4,117.5,0,0,15.8 +HARYANA DELHI & CHANDIGARH,1933,1.1,19.5,10.8,6.7,43.2,105.1,131.4,227.3,293.1,17,0.4,1.3 +HARYANA DELHI & CHANDIGARH,1934,21.6,1,47.6,0.7,2,64.6,140.8,199.1,18.3,0,0,5.6 +HARYANA DELHI & CHANDIGARH,1935,35.1,25.1,7.1,29.2,0.7,5.3,208.9,132.3,97,7.5,6,14.2 +HARYANA DELHI & CHANDIGARH,1936,1.6,18.2,6.8,0.7,3.3,141.3,124.4,125.7,61.3,0.1,1.2,26.5 +HARYANA DELHI & CHANDIGARH,1937,0.8,75.8,5.3,20.3,5.2,43.7,171.6,39.3,109.8,0.4,0.3,9.1 +HARYANA DELHI & CHANDIGARH,1938,38.2,7.7,0.4,1.1,7.4,61.7,89.7,56.9,8.1,7.6,0.1,0 +HARYANA DELHI & CHANDIGARH,1939,1.9,38.5,20.2,0.5,0.3,88.8,62.7,32.9,63.3,1.2,0,0 +HARYANA DELHI & CHANDIGARH,1940,28.2,35.6,11.9,6.7,1.7,38.7,117.4,142.3,12.6,0.2,0,0.4 +HARYANA DELHI & CHANDIGARH,1941,59.2,5.1,2.2,0,16.2,96.3,41,90.1,46.4,3.9,0,3.5 +HARYANA DELHI & CHANDIGARH,1942,24.9,48.6,2.2,11.7,7.3,48.2,257.5,237.6,154.2,0.3,0,11.9 +HARYANA DELHI & CHANDIGARH,1943,19.6,2.1,2.4,14.7,8.5,28.8,129.6,112.4,89.7,0,0,0.1 +HARYANA DELHI & CHANDIGARH,1944,21.5,32.9,35.1,27.6,0.5,52.2,150.7,99,38.8,24.8,0.6,0.6 +HARYANA DELHI & CHANDIGARH,1945,41.5,0,2.4,6.5,7.9,36.5,120,122.3,312.5,5.1,0,0 +HARYANA DELHI & CHANDIGARH,1946,0.1,9.7,1.7,3.4,27,72,122.9,155.4,17.3,15.6,1,11.6 +HARYANA DELHI & CHANDIGARH,1947,17.2,15.8,7.2,0.6,3,13.7,22.9,80.6,292.9,4.5,0,6.2 +HARYANA DELHI & CHANDIGARH,1948,34.4,31.4,18.8,1.1,4.8,16,212.4,233,34.6,4.3,0.9,0.3 +HARYANA DELHI & CHANDIGARH,1949,3.4,27.9,0.7,1.2,5.9,12.1,287.9,58.3,84.7,1.2,0,2 +HARYANA DELHI & CHANDIGARH,1950,22.2,6.5,18.1,0.5,6.1,9.7,220.4,147.6,118.7,0,0,1.4 +HARYANA DELHI & CHANDIGARH,1951,8.2,0.4,33.6,11.6,9.1,21.3,56,135.4,35,0.2,27.4,0 +HARYANA DELHI & CHANDIGARH,1952,8.2,17.8,12,2.6,10.8,67.1,122.5,311,1.3,0,0,3.2 +HARYANA DELHI & CHANDIGARH,1953,39.5,1.6,0,4.1,5.9,58.9,241,154.9,48.4,0.9,0,6.6 +HARYANA DELHI & CHANDIGARH,1954,26.1,91,10.1,0.4,3.9,26.7,152.3,45.6,136.6,43.9,0.3,0 +HARYANA DELHI & CHANDIGARH,1955,32.8,1.9,7.7,7.3,12.7,66.1,100.3,173.1,159.3,129.4,2.8,0.6 +HARYANA DELHI & CHANDIGARH,1956,16.6,3.1,25.6,0.8,2.4,50.8,239.1,159.5,19.5,131.3,4.4,0.6 +HARYANA DELHI & CHANDIGARH,1957,53.2,0.2,28.9,2.8,6.9,24.4,190.6,101.6,149.6,26.6,7.7,24.7 +HARYANA DELHI & CHANDIGARH,1958,4.1,0.7,5.4,1.9,4.4,17,150,182.7,273.4,21.8,1,10.6 +HARYANA DELHI & CHANDIGARH,1959,28.4,8,3.8,0.4,13.2,25.3,103.8,163.8,102.8,16.1,19.3,0.1 +HARYANA DELHI & CHANDIGARH,1960,11.3,0,24.4,4.2,1.3,33.1,249.9,339,15.6,35.2,0,8.9 +HARYANA DELHI & CHANDIGARH,1961,40.2,29.9,0.4,4.6,11,46.2,150.1,251.4,52.4,25.8,6.6,9.2 +HARYANA DELHI & CHANDIGARH,1962,21.1,10.4,7.7,1.3,1.5,14,144.7,111.5,189.4,0,2.9,6.5 +HARYANA DELHI & CHANDIGARH,1963,3.1,4.1,4.4,2,3.9,40.7,55.3,307.6,85.3,0,9,6.3 +HARYANA DELHI & CHANDIGARH,1964,4.7,1.5,0.9,0.4,14.6,8.8,370.7,191.5,111.2,0.6,0.1,6 +HARYANA DELHI & CHANDIGARH,1965,6.2,11.5,7.3,8.6,20.4,2.1,120.3,133.3,60.9,11,0.1,0.2 +HARYANA DELHI & CHANDIGARH,1966,3.3,34,6.7,1.7,45.3,128.9,98.2,312.8,69.1,6.7,1,0.2 +HARYANA DELHI & CHANDIGARH,1967,0,2.4,43.4,0.9,13,33.1,224.3,336,96.3,7.8,13.8,68.9 +HARYANA DELHI & CHANDIGARH,1968,14.1,15.9,17.3,0,2.3,28.3,211.2,90.1,0.1,7,0,2 +HARYANA DELHI & CHANDIGARH,1969,1.5,6.8,9.7,3.6,21,11.3,130.9,132.7,158.8,0.3,0.6,0 +HARYANA DELHI & CHANDIGARH,1970,35.4,35.4,9.4,0,11.5,67.2,65.7,207.9,104.9,0.8,0,0 +HARYANA DELHI & CHANDIGARH,1971,17,18.9,1.1,7.5,58.7,61.3,148.4,259.2,51.6,11.3,1.8,0 +HARYANA DELHI & CHANDIGARH,1972,6.8,12.1,5.6,11.6,0.1,24.9,137.1,186,12.6,7.7,33.1,3.2 +HARYANA DELHI & CHANDIGARH,1973,15.8,5.2,3.2,0.5,32.9,75.1,118.3,189.8,57.6,19.7,0,9 +HARYANA DELHI & CHANDIGARH,1974,0.5,1.3,1.6,0.9,4.6,37.9,201.5,94.5,12.2,16.4,0,13.5 +HARYANA DELHI & CHANDIGARH,1975,20.3,2.9,9.3,0.3,5.6,57.9,182.6,180.1,142.4,20.6,0,0 +HARYANA DELHI & CHANDIGARH,1976,8.8,23.1,6.8,2.7,32.4,80.2,216.2,317.4,38,0.2,0.1,0.8 +HARYANA DELHI & CHANDIGARH,1977,50.1,1.5,0.8,22.8,23.6,50.6,288.4,165.7,118.3,8.4,0.5,9.4 +HARYANA DELHI & CHANDIGARH,1978,0.2,24.8,51.7,4.2,1.5,71.5,202.7,184.8,104.5,2.1,2.8,0.5 +HARYANA DELHI & CHANDIGARH,1979,23.2,45.5,10.7,3.5,30,33.6,122.7,39.7,19.9,3.6,2.8,6.3 +HARYANA DELHI & CHANDIGARH,1980,5.8,2.3,22,0.4,8.9,45.5,236.5,102,50.2,13.4,4.9,21.4 +HARYANA DELHI & CHANDIGARH,1981,25.7,13.3,34.6,0.5,18,63.3,196.7,63.7,34.7,0.1,42.1,0.6 +HARYANA DELHI & CHANDIGARH,1982,21.4,20,70.7,33.1,57.3,29.9,99.2,150.4,5.4,3.2,2.4,13.6 +HARYANA DELHI & CHANDIGARH,1983,38,5.3,6.4,82.5,35.3,29.5,218.3,240.7,79.8,5.4,0,3.3 +HARYANA DELHI & CHANDIGARH,1984,1.9,14.5,0.4,2.7,0.7,48.6,154.2,179.5,75.5,0.9,0,0.3 +HARYANA DELHI & CHANDIGARH,1985,3.5,0.3,1.1,8.1,3.1,44.2,256.9,152.4,35.9,42.6,0,24.3 +HARYANA DELHI & CHANDIGARH,1986,7.2,31,12.7,3.3,36,85.1,92.5,108.9,52.9,11.2,0.7,9.5 +HARYANA DELHI & CHANDIGARH,1987,21.3,27.8,12.4,6.4,62.5,27.7,26.4,106.6,18,3.2,0,6.3 +HARYANA DELHI & CHANDIGARH,1988,1.5,13.2,34.5,3.6,3.4,82.4,288.5,222.5,183.4,0,0.1,12 +HARYANA DELHI & CHANDIGARH,1989,40.1,0.4,11.7,0.6,2.3,31.6,90.8,152.5,68.7,0.2,5.2,12.4 +HARYANA DELHI & CHANDIGARH,1990,0,79.5,4.9,2.2,21.9,25.3,201.2,137.7,194.5,2.7,14.1,19.2 +HARYANA DELHI & CHANDIGARH,1991,0.1,19.7,2.9,13.2,6,50.4,55.3,187.9,36.9,1.4,3.8,16.2 +HARYANA DELHI & CHANDIGARH,1992,20.3,16.4,0.5,1.2,7.8,17.2,124.5,171.6,59,3.8,7.2,0 +HARYANA DELHI & CHANDIGARH,1993,4.5,16.1,11.3,5.4,8.8,42,274.6,35.6,125.4,0,0,0 +HARYANA DELHI & CHANDIGARH,1994,20.1,11.3,0.6,7.6,8.5,51.3,275.8,160.6,28.2,0,0.1,0.2 +HARYANA DELHI & CHANDIGARH,1995,38.8,21.7,9.8,4.9,0.6,47.2,115,405.3,175.3,0.2,0.1,0.3 +HARYANA DELHI & CHANDIGARH,1996,16,30.5,11.6,0.6,5.1,109.4,85.8,249.2,116.3,19.9,0,0.3 +HARYANA DELHI & CHANDIGARH,1997,6.6,2.2,14.6,35.3,38,60.2,133.6,226.8,36.9,53.7,13.4,47.3 +HARYANA DELHI & CHANDIGARH,1998,0.4,24.6,25.4,9.1,6.1,68.4,154.8,161.6,150.9,78.2,5.8,0 +HARYANA DELHI & CHANDIGARH,1999,31.7,0.7,1.4,0,20.1,42.2,109.8,78.7,54.7,4.8,0,0.4 +HARYANA DELHI & CHANDIGARH,2000,17.1,29.1,1.4,1.3,22.8,58.9,146.8,87.9,17.5,0,0.4,1.2 +HARYANA DELHI & CHANDIGARH,2001,17.8,5.2,7.2,19.8,47.8,117.2,145.2,103.5,10.3,11.1,0.1,0.2 +HARYANA DELHI & CHANDIGARH,2002,11.6,31.1,9,1.1,52,21.2,19.4,78.2,123,1.9,0,8.8 +HARYANA DELHI & CHANDIGARH,2003,14.7,29.9,4,1.8,7.5,26.6,277.6,165.3,58.9,0,0.1,11 +HARYANA DELHI & CHANDIGARH,2004,25.4,0.3,0,18.1,40.7,52.5,19.9,252.9,22.1,54.1,0,1.2 +HARYANA DELHI & CHANDIGARH,2005,13.9,35.7,29.9,2.7,7.6,53.9,175.6,52.6,146.7,0,0.8,0 +HARYANA DELHI & CHANDIGARH,2006,2.3,0.1,30.4,0.6,24.8,45.4,135.2,32.1,49.9,3.8,1.2,5.2 +HARYANA DELHI & CHANDIGARH,2007,0.5,76,40.1,2,12.4,88.7,82,87.9,55.2,0.1,0.3,1.4 +HARYANA DELHI & CHANDIGARH,2008,2.4,0.4,0.6,13.4,72.9,193.5,124.3,174.2,114.5,8.4,5.5,0.2 +HARYANA DELHI & CHANDIGARH,2009,4.1,5.9,5.7,11.7,17.7,15.2,106.4,63.8,160.8,2.5,1.1,0.4 +HARYANA DELHI & CHANDIGARH,2010,4.8,10.2,0.5,0.8,5.9,29.1,189.3,198.5,183.9,1.1,3.5,12.8 +HARYANA DELHI & CHANDIGARH,2011,0.7,26.7,6.9,8.9,28.7,94.4,85,127.3,133.1,0,0,0.4 +HARYANA DELHI & CHANDIGARH,2012,8.2,0.2,0.1,11.8,3.8,5.3,68.1,196.6,90.7,2.4,0.6,3.5 +HARYANA DELHI & CHANDIGARH,2013,21.1,52.2,5.3,3.3,1.4,62.1,96.5,161.9,42.8,10.9,1.7,2.1 +HARYANA DELHI & CHANDIGARH,2014,13,17.3,26.8,7.5,20.3,25.9,72.3,34.8,67.3,10.5,0.2,9.6 +HARYANA DELHI & CHANDIGARH,2015,12.4,6.6,71.8,34.8,8.4,43.7,130.3,89.2,32.1,3.7,2.3,0.2 +PUNJAB,1915,28.7,59.8,48.3,9.3,4.3,22.5,54.1,67.4,105.5,19.3,0,2.4 +PUNJAB,1916,2.8,20.9,2.8,4.4,8.2,33.9,238.3,184.1,71.3,21.1,0,0.6 +PUNJAB,1917,6.5,3.1,12.5,71.9,31.3,82.6,172.4,211.4,369.1,156.5,0,9.4 +PUNJAB,1918,3.1,1.2,61.4,38.5,0.6,31.9,38.7,140.5,15.5,0.2,3.5,4.5 +PUNJAB,1919,81.4,12.3,11.1,4.9,11.9,6.4,202,137,46.2,0.4,3.3,32.9 +PUNJAB,1920,25.7,18.3,21.3,0.6,20,42.7,148,81.3,23.3,0.4,0,1.5 +PUNJAB,1921,19.3,3.9,0.7,0.7,1,19.9,116.8,113.9,46.6,27,0,20.5 +PUNJAB,1922,23.8,14,3.1,3,1.7,65.1,132.8,85.6,148.5,2.5,0,33.5 +PUNJAB,1923,36.4,63,7.3,4.9,38,21.8,222.2,279.1,12.8,5.7,2.5,44.1 +PUNJAB,1924,39.1,42.3,2.6,1.1,17.7,2.3,185.8,109,155,0.5,1.1,34.4 +PUNJAB,1925,18.1,2.1,1.1,7.7,21.1,104.7,284.4,158.8,14.4,7.5,9.8,0 +PUNJAB,1926,14.1,7.5,50.2,16.2,34.9,7.2,189,228.4,54.1,0.1,1.3,4.4 +PUNJAB,1927,0.7,39.8,15.7,6.6,18.1,18.6,226.1,95.2,24.8,5.5,2.3,27.7 +PUNJAB,1928,25.6,21.3,6.3,10.2,2.8,34.9,92.3,120.2,58.8,1,27,36.9 +PUNJAB,1929,8.9,1.1,0,11.5,1.7,45.6,163.3,111.6,8.5,10.2,0,60.6 +PUNJAB,1930,25.6,27,6.7,13.3,7.1,55,258.4,57.4,91.7,1.1,0.2,13.9 +PUNJAB,1931,12.6,27.1,21.1,2,19.4,9.5,183.8,222.1,68.8,21.8,0,0.5 +PUNJAB,1932,19,13.2,28.8,7.3,11.6,19.9,190.7,136.1,32,1.5,0.3,29.9 +PUNJAB,1933,6.2,26.4,35.7,7.2,25.7,37.1,180,327.3,202.7,8.4,2.9,0.9 +PUNJAB,1934,18.3,1.7,37.5,2.4,6,51,150.9,136.6,14.9,0,0,9.9 +PUNJAB,1935,73.7,40.9,12.8,44.2,2.1,8.2,203.9,144.6,45.1,2.7,11.6,8.2 +PUNJAB,1936,1.3,58.8,17.3,10.9,5.4,105,170.2,165.5,57.7,6.2,0.2,27.9 +PUNJAB,1937,5.8,96,10.2,41.8,8.8,55.4,218.6,30.5,70.2,7.3,0.3,26.2 +PUNJAB,1938,77.5,22.2,1.8,9.1,3.4,112.8,102.3,85.4,5.8,9.9,0,0.6 +PUNJAB,1939,6.2,61,58.1,8.3,0.8,49.8,100.5,78.6,37.9,2.6,0,0 +PUNJAB,1940,36.8,45.1,13.7,2.9,6.5,60.3,159.3,179.6,27.4,0.1,0.1,0.5 +PUNJAB,1941,55.3,8.5,12.4,1,15.2,89.5,111.4,152.1,41,9.8,0,10.2 +PUNJAB,1942,27.2,57.2,15.4,19.6,13.4,52.4,253.3,256.4,131.7,5.1,0,39.8 +PUNJAB,1943,55.6,1.9,7.9,7.8,9.8,29.2,130.4,132.6,46.6,0.4,0,0.2 +PUNJAB,1944,32.3,54.6,49.5,46.5,0.6,21.8,183.8,145.8,67.2,14.6,1.6,8.4 +PUNJAB,1945,71.4,0,14.5,15.9,3.2,38.3,156.9,138.6,359.8,6,0.5,0.2 +PUNJAB,1946,2.6,16.1,7,4.2,19.3,63.1,129.5,150.5,7.4,32,7.6,38.7 +PUNJAB,1947,23.2,14.5,9.4,0,5.4,3.5,57.4,177.4,270.8,3,0,36.3 +PUNJAB,1948,19.9,53.1,66.5,6.7,2.2,11.2,195.7,209.6,38.3,0.6,0.3,16.2 +PUNJAB,1949,9.3,58.4,4.8,5.2,9.8,26.9,320,93.7,51,1.4,0,4.5 +PUNJAB,1950,53.1,25.4,50.1,2.4,8.1,14.1,209.2,232.3,396.8,0.4,0,0.1 +PUNJAB,1951,23.9,4.3,53.5,10.4,21.5,5.1,207.8,122.2,12.5,1.9,34.5,1.9 +PUNJAB,1952,19.7,20.4,34,0.7,6.4,59.8,137,282.3,1.7,0.1,0.1,3.8 +PUNJAB,1953,47.1,1.5,0,8.2,2.2,54.3,262.7,153.3,72.1,0.5,0.4,9.3 +PUNJAB,1954,30.8,92.2,9.5,0.1,2.4,27.6,181.8,45.7,226.5,16.6,0,0 +PUNJAB,1955,33,3.6,24.9,20.5,18.6,38,148.7,169.7,144.2,370.3,0,2.6 +PUNJAB,1956,21.6,6.8,45.3,5.1,0.7,53.5,236.5,208.7,26.7,140.1,0.2,5.3 +PUNJAB,1957,105,4,26.6,10.6,10.8,19.5,197.5,167.4,106.1,17.2,10.3,35.5 +PUNJAB,1958,9.5,3.5,6.9,4.4,0.4,28,186.2,128.4,372.3,43.4,0,45 +PUNJAB,1959,43.3,21.4,10,4.8,20.3,21.5,188,210.1,133.9,24,21.9,0.5 +PUNJAB,1960,14.2,0.1,33.3,4.7,4,44.1,243.1,234.1,8.6,0.5,0,20.3 +PUNJAB,1961,51.7,39.5,3,14.2,4.6,43,216.1,199.3,87,22.8,2.8,6.1 +PUNJAB,1962,39.6,14.2,43.2,4.2,4.7,26,167.5,126.8,321.2,0.5,14.8,6.7 +PUNJAB,1963,0.4,14.5,34.3,3,12.7,31.3,116.7,199.4,42.6,0.6,7,13.6 +PUNJAB,1964,11,5.7,3.9,5.2,19.2,10.2,359.3,189.8,95,0,0,9.6 +PUNJAB,1965,13.1,23.9,15.3,21.3,34.3,1.6,192.6,91.6,14.2,10.4,4.5,0.5 +PUNJAB,1966,0.2,38.9,18.5,3.6,37.6,85.1,109.8,200,132.6,9.5,0,2.3 +PUNJAB,1967,0.2,13.1,84.8,1.8,1.1,14.7,211.6,197.8,61.5,14.2,1.9,77.6 +PUNJAB,1968,24.7,30.5,32.7,2.1,1.6,42.6,239.4,142.1,0.5,11.7,0.5,7.8 +PUNJAB,1969,14.2,21.7,24.4,12,17.2,10.8,145.9,122.9,120.9,1.1,3.7,0 +PUNJAB,1970,40.1,20.6,7.3,0.3,12.8,119.8,75.4,260.7,109.4,4.2,0,0 +PUNJAB,1971,5.2,42,3.3,11.8,42.6,99,251.4,255.9,27.2,1.6,8.1,0 +PUNJAB,1972,9.1,31.9,10.8,6.5,0.1,23.8,192.9,132.3,26.1,7.9,19.6,10.1 +PUNJAB,1973,26,32.4,8.2,1.8,41.2,111.4,170.5,256.3,43.3,19.6,0,32.4 +PUNJAB,1974,3.2,2,3.1,1.3,6.9,71,136.7,101.3,14.4,0.6,0,15.8 +PUNJAB,1975,21.1,20.4,20,1.3,3.3,60,230.6,195.1,148.8,5.2,0,0 +PUNJAB,1976,29.2,53.7,22.7,9.4,12.5,63.1,195.3,318.7,85.1,4.4,0,0.5 +PUNJAB,1977,37.7,0.5,1,37.1,41.9,62.3,208.1,175.9,120.1,6.6,0.4,21.1 +PUNJAB,1978,4.1,30,65.1,2.8,1.9,99.2,229.4,231.6,45.7,2.3,8.1,0.5 +PUNJAB,1979,25.9,71.9,45.7,6.8,22.2,37.3,147.5,46.6,45.1,2,7.8,5.1 +PUNJAB,1980,19.4,12.4,24.3,3.7,1.4,53.5,316.7,122.2,39.1,11.6,16.2,41.2 +PUNJAB,1981,48.1,20.6,53.8,2.2,9.6,21.7,215.5,58.3,23,0.3,50.7,0 +PUNJAB,1982,35.8,27.7,87.5,49.9,57.2,17,83.5,172.7,3.7,4,9.8,22.6 +PUNJAB,1983,65.3,26.7,27.4,113.2,48.2,26.6,151.9,208.1,69.7,12.2,0,1.7 +PUNJAB,1984,2.4,67.2,13.9,9.3,1.3,50.2,220.2,214.5,125.7,0.2,0.6,4.9 +PUNJAB,1985,4.8,0.9,3.6,21.2,6.2,55.7,269.5,243.3,51.9,50.2,0.6,45.1 +PUNJAB,1986,0.7,42.1,24.6,18.9,32.3,92.2,156.4,153,55.1,16,9.5,11.2 +PUNJAB,1987,23.1,30.8,23.3,14.9,98.3,44.7,44.1,82.2,10.5,34.1,0.2,3.3 +PUNJAB,1988,5,22.5,86.4,3.3,3.6,42.7,356.1,234.3,434.1,0.4,0.7,33.5 +PUNJAB,1989,45.7,4.1,17.6,1.7,4.9,39.6,164.1,151.9,20.7,0.3,8,21.8 +PUNJAB,1990,1.9,57.7,32.7,4.2,13.8,18.6,200.3,188.8,194.4,0.6,5.6,36.1 +PUNJAB,1991,0.1,39.8,16,34.8,10.8,73.5,86.8,144.3,41.7,1,0.2,26.8 +PUNJAB,1992,38.8,34.2,11.9,2.2,8.6,24.7,144.5,146.5,50,3.2,13,0.5 +PUNJAB,1993,8.5,12.7,29.5,9.4,13.3,38.7,352.6,17.4,98.4,0.3,2.1,0 +PUNJAB,1994,27.6,23.3,2.8,6.4,7.2,29.5,167.4,222.2,89,0.4,0,5.1 +PUNJAB,1995,50.8,56,17.2,8.8,1.3,51,160,375.5,145.6,1.3,1.4,0.3 +PUNJAB,1996,32.7,38.9,19,2.8,3.7,118.6,87.9,194.1,72.4,18.8,0,0.7 +PUNJAB,1997,14.5,5.4,8.9,35.8,30.4,55.3,144.1,261.5,24.3,39,28.8,42.1 +PUNJAB,1998,2.8,55.8,25.5,19.1,2.7,42.4,160.6,90.1,139.5,49.9,0,0.2 +PUNJAB,1999,43.4,5.6,4.3,0,22.6,35.6,139.6,82,30.7,0.5,0.1,0.2 +PUNJAB,2000,25.4,26.6,6.9,1.3,15.3,50.1,164.8,70,42,0,0.7,2.2 +PUNJAB,2001,8,2.1,6.2,24.5,36.9,93.8,173.9,69.5,19.9,1.5,0.9,3.8 +PUNJAB,2002,2.4,6.6,6.8,3.3,20.8,24.7,50.4,58.4,95,2.6,0,3.7 +PUNJAB,2003,10.6,56.4,19.4,3,3.9,40.7,136.7,94.7,52.2,0,2.2,5 +PUNJAB,2004,32.4,5.7,0,15.5,27.2,48.8,52.1,124.2,8.9,31.2,0.8,5 +PUNJAB,2005,35.8,60.3,28.6,8.4,5.2,34.6,176.7,95.3,106.7,0.4,0,0 +PUNJAB,2006,15,3.7,46.1,1.3,32.1,73,220.3,90.8,120.7,24.6,13.4,6.7 +PUNJAB,2007,1.2,68.8,48.2,10,5.9,64.4,95.1,215.4,73.7,0.6,0.9,10.6 +PUNJAB,2008,12,4.1,0,19.7,40.6,155.5,101.9,312.2,59.8,9.9,0.6,0.9 +PUNJAB,2009,9.4,14.4,10.5,14,5.6,10.6,158,76.8,54.7,4,2.7,0.4 +PUNJAB,2010,3.8,13.8,1.9,0.7,6,41.8,143.8,96.7,112.8,4.7,1.1,24.4 +PUNJAB,2011,3.5,35.6,8.2,17.8,18.9,162.9,120.9,193.5,140.2,0,1,2.6 +PUNJAB,2012,62.6,3.2,1.9,31.1,1.6,11.9,120.2,135.1,112.3,2.2,0.4,11 +PUNJAB,2013,9.3,50.1,11.6,3.4,3.6,120.3,117.9,217.1,24.4,16.2,6.1,6.6 +PUNJAB,2014,21.8,20.1,30.3,24.5,20.8,20.6,76.3,41.9,105.8,6,0.7,14.1 +PUNJAB,2015,17.7,31.3,68.5,29.8,16.7,48.3,130.2,88.6,69.2,9,0.8,0.7 +HIMACHAL PRADESH,1915,62.2,100.4,90,66.6,19.4,67.5,249,380.6,157.7,23.4,0,20 +HIMACHAL PRADESH,1916,10.4,75.3,33.7,41.8,35.3,238.9,275.8,254.9,118.9,86.9,0,0.2 +HIMACHAL PRADESH,1917,20.4,30,61.8,162.9,79.8,135.1,376.3,309.8,330.3,174.4,0,22.7 +HIMACHAL PRADESH,1918,21.2,22.3,171.2,103.4,14.3,135.6,200.6,208.9,21.5,7.9,51,26.9 +HIMACHAL PRADESH,1919,141.3,47.4,75.6,60.4,43.5,80.1,417.3,227.8,66.5,0.7,9.8,42.9 +HIMACHAL PRADESH,1920,53,58.1,126.1,32.8,109.4,55.6,385.1,168,76,3.3,0,17.4 +HIMACHAL PRADESH,1921,87.8,20.9,9.1,29.6,32,42.6,264.1,465.6,195.7,57.9,0,106.1 +HIMACHAL PRADESH,1922,106.6,57.5,68.2,87.7,13,106.8,425.8,508.1,274,14.2,6.5,50.2 +HIMACHAL PRADESH,1923,113.4,151.2,51,27.2,93,64.3,320.1,512.1,125.5,60.1,17.5,85.6 +HIMACHAL PRADESH,1924,50.2,135.1,63,26.6,86.7,26.6,419.3,345.5,418.6,12.4,14.9,61.7 +HIMACHAL PRADESH,1925,86.2,61.7,33.5,65.4,86.6,167.5,450.2,388.1,48.5,33.2,88.5,0 +HIMACHAL PRADESH,1926,52.9,48.6,179.7,86.3,114.4,23.9,349.6,422.9,127.9,4.2,25.1,14.3 +HIMACHAL PRADESH,1927,17.5,132.5,48.2,51.4,79.1,37.9,384.7,542.4,78,37.9,5.8,19.3 +HIMACHAL PRADESH,1928,129,112.9,48.1,94.6,14.5,82.9,276.5,329.2,67.3,2,59.9,91.9 +HIMACHAL PRADESH,1929,109,52.3,17.6,48,24.9,101.7,363.9,423.7,50.3,57.3,0,176 +HIMACHAL PRADESH,1930,98.8,64.1,52.7,87.7,28.2,120.8,424.5,307,77.7,13,5.2,25.7 +HIMACHAL PRADESH,1931,58.5,149.6,79.9,14.6,84.5,25,263.6,339.6,202.5,47.8,0.2,0.6 +HIMACHAL PRADESH,1932,43,52.8,62.1,17.1,61.4,54.6,409.2,451.3,183.1,6.1,9.5,68.4 +HIMACHAL PRADESH,1933,60.2,93.6,109.4,80.2,54.7,106,259.3,244.2,172.7,49.1,8.2,2.8 +HIMACHAL PRADESH,1934,91.8,12.8,40.3,82.3,59.9,70.7,281,241.1,30.4,0.9,1.3,69.5 +HIMACHAL PRADESH,1935,136.7,73.4,60.3,83.6,18.4,40.3,233.6,216.6,88,28.5,26.5,22.1 +HIMACHAL PRADESH,1936,11.5,111.1,118.2,61,42.8,193.6,240.9,173.8,107.9,9.1,0.5,87.5 +HIMACHAL PRADESH,1937,57.3,141,53.7,60.3,35.1,116.4,282.9,325.7,227.3,53.8,9.5,101.9 +HIMACHAL PRADESH,1938,175.5,124.3,48.1,38.9,11.1,125.3,211.8,156.5,16.8,6.7,6.7,5.7 +HIMACHAL PRADESH,1939,56.4,112.3,97.9,47.1,9.9,103,201,110.5,108.6,30.9,0,0 +HIMACHAL PRADESH,1940,64.1,79.9,69.4,60.4,56.4,103.3,321.6,220.7,84.8,1.4,2.3,24.3 +HIMACHAL PRADESH,1941,44.5,49.4,70.1,21.5,70.6,92.8,182,231.6,83.5,12.5,2.9,34.1 +HIMACHAL PRADESH,1942,74.8,156.8,28.3,84.6,73.5,66.6,273.8,348.6,153.6,7.8,0,59.8 +HIMACHAL PRADESH,1943,171.1,26.1,96.7,74.8,78.1,36.6,237.2,377.7,111.5,0,0.2,13.1 +HIMACHAL PRADESH,1944,108.3,112.5,106.2,51,16.9,51,277.4,226.7,80.2,23.9,7.2,67.4 +HIMACHAL PRADESH,1945,196,10.3,105,81,24.5,74.2,424.4,352.5,331,40,2.9,5.2 +HIMACHAL PRADESH,1946,45.2,85.9,77.9,42,56.6,159.3,462.3,379.1,41.1,79.1,49,61.5 +HIMACHAL PRADESH,1947,78,38.2,82.8,4.5,32.2,50.3,260.1,257.3,438.1,14.6,0,57.3 +HIMACHAL PRADESH,1948,33.5,185,382,47.5,13.7,55.5,380,456.6,115.4,16.5,0,73 +HIMACHAL PRADESH,1949,28,140,81.6,45,35.2,48.2,548.7,265.2,99.5,4.7,0,15 +HIMACHAL PRADESH,1950,211,67,155,51.7,65.1,83.6,392.8,319.3,329.8,2.2,0,7 +HIMACHAL PRADESH,1951,112.3,69.4,87.4,90.4,89.1,38.8,217.3,309.3,124.5,19.3,69.6,11.1 +HIMACHAL PRADESH,1952,86.4,82.8,191.4,35.2,66.8,146.9,198.1,371.1,26.7,12.9,2.8,42.5 +HIMACHAL PRADESH,1953,149.2,51.9,98.3,86.6,36.9,107.6,390.9,330.3,90.2,11.6,9.3,62.8 +HIMACHAL PRADESH,1954,196.4,271.8,87.2,13,52.2,47.5,336.6,348.9,293.4,46.2,7.6,16.7 +HIMACHAL PRADESH,1955,165,42,141.4,87.7,114.7,86.2,320.9,337.5,194.4,413.6,0.3,15.5 +HIMACHAL PRADESH,1956,96.5,44.7,206.5,58,26.8,118.8,293.9,266.1,113.1,222.3,8.3,86.6 +HIMACHAL PRADESH,1957,181,37.9,133.8,146.4,151.9,79,321.3,253.9,263.7,84.5,56.3,112.9 +HIMACHAL PRADESH,1958,84,22.4,72.8,61.7,65,34.7,452,265.3,265.9,75.2,2.2,171.1 +HIMACHAL PRADESH,1959,136.1,243.1,94.7,43.3,52.8,52,418.6,243.7,219.5,81.7,53.9,1 +HIMACHAL PRADESH,1960,82.9,0.7,134.2,66.2,20.8,78.3,355.3,226.8,72.9,7.2,3.8,66.2 +HIMACHAL PRADESH,1961,153.8,157.2,68.8,104.2,34.2,88.7,320.3,314.3,153.1,46.2,37.6,37.2 +HIMACHAL PRADESH,1962,45,102.9,82.9,102.6,55.4,86.5,242.7,255.8,303.7,5.8,66.5,43.8 +HIMACHAL PRADESH,1963,14.1,57.2,201.2,49.5,47.2,108.9,325.7,308.1,111.3,2.4,76.8,52.2 +HIMACHAL PRADESH,1964,176.6,58.8,83.6,97.7,86.8,86.2,278.9,246.8,197.1,0.1,1.8,39.6 +HIMACHAL PRADESH,1965,52.5,209.1,170.9,126.6,143.9,24.9,278.3,117.3,39.9,25.8,12.8,18.3 +HIMACHAL PRADESH,1966,0.3,145,78.4,77.2,95.7,187.1,250.5,298,153.3,30.8,13.9,40.8 +HIMACHAL PRADESH,1967,30.8,99.1,181.5,31.4,48.1,99.3,386.3,403.3,105.7,36.9,23.8,112.4 +HIMACHAL PRADESH,1968,188.5,114.1,80.8,50.9,44.9,99.3,277.2,181.1,16.3,47.2,9.1,58.8 +HIMACHAL PRADESH,1969,66,78.6,72.7,130.4,111,31,201.8,306.7,117.2,8.4,2.4,1.5 +HIMACHAL PRADESH,1970,116.5,39,37.9,7.3,43.5,163.2,223.4,280.4,164.4,6.6,0.2,0.3 +HIMACHAL PRADESH,1971,53.1,76.5,13.7,57.5,71.8,252.7,352.8,301.2,67,13.8,12.2,2.6 +HIMACHAL PRADESH,1972,55,77,55,82.1,21.3,43.8,184.2,159.9,57.6,31.1,21.3,54 +HIMACHAL PRADESH,1973,116.8,80.6,68.4,15.7,40,99.1,167.8,213.9,86.3,32.1,5.4,29.1 +HIMACHAL PRADESH,1974,75,44.6,33.7,24.6,41.8,76.4,168.8,204.6,30.5,28.8,2.4,45.1 +HIMACHAL PRADESH,1975,137.8,124.7,126.3,25.4,35.1,86.9,214,191.8,95.3,13.8,0.2,2.7 +HIMACHAL PRADESH,1976,66.7,105.5,126.6,49.1,30.1,85.5,368.9,238,72.6,20.2,1.7,14.6 +HIMACHAL PRADESH,1977,85.5,4.7,12.9,97.5,87.2,86.1,339.7,236.4,197.1,18.8,9.9,69.2 +HIMACHAL PRADESH,1978,63.7,102.6,157.9,53.5,31.1,156.1,280,300.1,137.7,3.6,75.9,9 +HIMACHAL PRADESH,1979,170,115.3,157.4,31.9,85.1,64.8,163.4,119,43.5,7,34,29.6 +HIMACHAL PRADESH,1980,83.2,87.1,71.7,28.5,26.1,106.8,477.1,128.8,52.5,25.3,27.3,40.5 +HIMACHAL PRADESH,1981,114.5,96.3,162,54.4,67.1,94.7,233.5,163.4,71.6,11.4,70.4,7.9 +HIMACHAL PRADESH,1982,187.3,147.7,228.9,146.2,152.5,58.3,160.4,170.2,31.5,42.5,21.8,75.7 +HIMACHAL PRADESH,1983,91.7,97.6,162.8,136.7,86.1,59.2,166.7,204.2,121.5,48.2,1,13.9 +HIMACHAL PRADESH,1984,24.3,134.5,38.7,68.6,14.7,105,194.4,192.5,121.5,10.6,25.1,38.4 +HIMACHAL PRADESH,1985,70.4,23,36.2,65.6,54.3,54.1,301.3,252.7,118,127.6,2.8,88 +HIMACHAL PRADESH,1986,7.3,119.3,159.4,105.3,99.1,86.4,240.9,246.9,52.4,43.4,72.7,89.5 +HIMACHAL PRADESH,1987,68.1,84.6,77.9,132.1,214.2,81,90.4,147.8,50.3,76.7,0.8,11.6 +HIMACHAL PRADESH,1988,41.6,128.3,353.9,27.2,39.3,84,411.3,304.7,360.2,2.2,4.9,123.5 +HIMACHAL PRADESH,1989,111,62.5,89.2,39.4,92.5,59.7,291.1,247.3,64.9,7.3,52.9,59.4 +HIMACHAL PRADESH,1990,36.2,161.2,217.7,52.5,61.8,80.2,302.3,221.8,162.8,15.6,10.1,140.6 +HIMACHAL PRADESH,1991,24,143.1,120.6,104.5,69.7,67.1,141.6,258.3,128.5,2.2,4.3,40.9 +HIMACHAL PRADESH,1992,123.9,75.8,199.4,36.9,83.9,53,277.5,374,127.6,7,19.4,4.7 +HIMACHAL PRADESH,1993,109.2,69.7,164.1,20.6,56.7,70.9,386.9,89.1,143.1,0.3,17.7,0 +HIMACHAL PRADESH,1994,88.7,124.7,29,131.3,65.5,114.2,367,311,92.7,8.5,0.1,77.6 +HIMACHAL PRADESH,1995,61.5,140,96.7,85.8,44.2,66.5,332.4,345.1,284.5,5.4,13.9,17.7 +HIMACHAL PRADESH,1996,118.6,117.8,112.5,50.6,68.5,173.7,210.6,348.3,138.5,38.3,0.6,6.4 +HIMACHAL PRADESH,1997,50.9,58.5,60.4,97.4,66.1,92.3,198.7,476.1,113.8,44.4,87.4,108.5 +HIMACHAL PRADESH,1998,13.5,133.8,139.4,71.5,41.3,152.3,210.7,239.8,251.5,119.4,5.9,2.4 +HIMACHAL PRADESH,1999,109.2,54.3,33.4,7.1,98.3,104.7,304.1,284.6,111.4,6.4,28.9,2.5 +HIMACHAL PRADESH,2000,118.2,119,68.1,25.6,79.9,198,265.1,126.7,50.1,0,10.5,6.9 +HIMACHAL PRADESH,2001,30.5,35.7,105.8,66.9,67.3,153.8,239.5,202.3,26.9,5,20.8,37.3 +HIMACHAL PRADESH,2002,66.7,136.5,136.9,124,27,56.1,81.8,225.6,123.1,8.2,0.7,3.9 +HIMACHAL PRADESH,2003,39.5,116.6,113,52.9,35.9,61.4,187.7,228.7,135.5,0.3,22.5,40.4 +HIMACHAL PRADESH,2004,86.2,43,5.9,54.7,57.6,76.1,141.3,202.5,47.6,104.7,9.3,49.4 +HIMACHAL PRADESH,2005,147.8,222.9,143.3,35.2,52.4,52.6,317.2,114.2,156.3,1.8,0.3,4.5 +HIMACHAL PRADESH,2006,102.5,38.2,137.3,44.3,68.4,104.8,260.3,274.2,92.8,17.5,26.9,51.2 +HIMACHAL PRADESH,2007,1.3,121,177,9.6,39.3,155.7,155.2,234.3,85.7,18.7,1,35.6 +HIMACHAL PRADESH,2008,129.9,63.2,6.3,44.4,42.9,187.3,194.9,224.7,142.6,33.9,5.3,38.9 +HIMACHAL PRADESH,2009,54.8,45.9,43.4,91.2,53.5,45.5,170.2,162.6,172.1,16.4,93.1,7.8 +HIMACHAL PRADESH,2010,25.5,96.6,45.1,60.3,81.4,108.5,291.8,274.1,176.7,30.5,10.8,58.1 +HIMACHAL PRADESH,2011,43.9,97.4,49.7,62.4,45.1,118.3,177.7,380.2,120.3,6,0.3,6.9 +HIMACHAL PRADESH,2012,92.3,51.3,28.4,55.9,9.4,31.1,241.5,280.6,133.1,3.1,3.2,21.8 +HIMACHAL PRADESH,2013,79.9,182.6,76.6,28.9,32.6,233.6,208.8,240,65.8,21.8,16.6,24.8 +HIMACHAL PRADESH,2014,69.6,124.9,125.2,60.6,68.9,51.7,203.6,146.7,84.6,19.3,4.5,49.3 +HIMACHAL PRADESH,2015,67.2,156.6,192.5,84.9,45,85.8,249.9,195.9,75.5,17.7,14.5,25 +WEST RAJASTHAN,1915,7,19.7,15.4,0.1,0.6,16.3,25.8,19,12.3,31.1,0,0 +WEST RAJASTHAN,1916,1.5,0.3,0.2,1.7,16.4,21.2,66.1,191.5,102.8,20,0,0 +WEST RAJASTHAN,1917,1.3,1.2,1.1,12.2,56.8,73.9,97.1,243.4,203,78.3,0,0.5 +WEST RAJASTHAN,1918,0.4,0,2.7,0.5,0.7,5.6,5.1,40.8,5.9,0.2,0.2,0.1 +WEST RAJASTHAN,1919,13.7,1.6,0.7,5.4,7.2,1.1,95.7,151.9,21.3,0,4.4,2 +WEST RAJASTHAN,1920,2.7,1.5,0.9,1.5,49.2,60.3,94.7,37.2,0.6,0,0,0 +WEST RAJASTHAN,1921,0.1,0,0,0,0,4.3,119.2,46.7,46.6,0.6,0.1,0.4 +WEST RAJASTHAN,1922,0.4,0.6,0,0.8,4.6,18.1,90.8,33.9,91.7,1.5,0,2.5 +WEST RAJASTHAN,1923,3.3,4.9,0.7,0.4,9.6,7.8,118.9,118.3,4.7,0.4,0,4.4 +WEST RAJASTHAN,1924,4.4,2.2,0.1,0.5,8.6,11.5,86,68.8,103.6,0.9,0.3,10.1 +WEST RAJASTHAN,1925,0,0,0,0,8.2,62.6,71.7,20,4.5,0.8,1.8,0 +WEST RAJASTHAN,1926,5.4,0.3,19.4,0.8,21.4,4,95.6,179.4,113.6,0,0,0.3 +WEST RAJASTHAN,1927,0,7.7,0,0.1,5.4,12.4,135.7,124.8,23.7,4.1,0.4,18.2 +WEST RAJASTHAN,1928,0.4,0.8,1,2,2.1,10.2,79.9,140.4,16.8,14.7,3.3,0.5 +WEST RAJASTHAN,1929,2.3,0,0,1.8,12.2,11.1,163.5,103.8,3.9,0.3,0,4.4 +WEST RAJASTHAN,1930,2.5,1.2,0.7,1.8,16.7,47.1,100.3,45.2,8.1,6.3,0.1,0 +WEST RAJASTHAN,1931,0.1,1.1,1.3,0,12.1,10.2,73.5,270.7,9.3,16.8,0,0.2 +WEST RAJASTHAN,1932,0.7,0.2,6.3,1.8,4.4,10.8,118.6,115.5,6.2,0,0,0.6 +WEST RAJASTHAN,1933,0,7.6,4,13,15.3,46.4,46.1,211.3,31.9,0.5,0.1,0 +WEST RAJASTHAN,1934,0.8,0,8.2,0.2,1.6,60.7,46.8,185.3,16.4,0,0,2.4 +WEST RAJASTHAN,1935,9.2,2.7,2.5,8.4,0.8,4.1,137.4,38.2,47.2,4.5,0.7,1 +WEST RAJASTHAN,1936,0.1,4.6,1.8,0.3,0.4,56.6,33.3,119,37.7,0,9.6,2 +WEST RAJASTHAN,1937,0,25.5,0.7,1.9,1.2,17.5,171.8,1.1,60.4,0.7,0,11.6 +WEST RAJASTHAN,1938,2.1,0.5,0,0.6,4.3,52.6,75.5,45.1,1.6,1.1,0,0.1 +WEST RAJASTHAN,1939,0.3,25,7.8,0.2,0.3,22.3,15.9,53.5,12.1,0,0,0 +WEST RAJASTHAN,1940,18.1,8.5,6.8,1.2,2.2,34.5,55.7,160.4,2.9,1.4,0.7,0 +WEST RAJASTHAN,1941,8.7,0.5,1.2,0,10.2,21.9,74,86.3,18.6,0.4,0,2.8 +WEST RAJASTHAN,1942,3.6,12.2,0,3.7,16.4,19.4,124.3,80.5,75.2,0.3,0,3.3 +WEST RAJASTHAN,1943,1.5,0,0.1,2,1,20.8,195.2,22.3,52.3,0,0,0.3 +WEST RAJASTHAN,1944,14.2,5.7,9.7,11.2,0.9,15.1,137,325.3,4.7,1.1,0,0.1 +WEST RAJASTHAN,1945,18.3,0,0.6,6.1,15,40.9,174.5,73,35.1,0.4,0,0 +WEST RAJASTHAN,1946,0,1.1,0,0,3,45.5,41.7,117,10.1,1,0,3.6 +WEST RAJASTHAN,1947,2.5,1.5,0.2,0,0.7,0.6,18.3,140.5,82.4,5.7,0,0.8 +WEST RAJASTHAN,1948,21.4,15.4,6.7,0.1,0.8,6,111.3,57.5,11.9,1.2,0.3,0.9 +WEST RAJASTHAN,1949,1.8,2.9,0,0.1,3.6,20.5,123.1,42.8,28.5,1.2,0,0.2 +WEST RAJASTHAN,1950,1.4,0.3,1.7,0,1.9,6.6,131.5,64.8,70.1,0,0,0 +WEST RAJASTHAN,1951,0.1,0,6.4,5.1,16.4,20.2,33.6,83.3,0.8,0.2,13.8,0 +WEST RAJASTHAN,1952,0,3.7,0.5,0.4,2,20.6,156.9,81.6,0.8,0.2,0.3,0.2 +WEST RAJASTHAN,1953,5.9,0,0,0.8,6.5,15.7,70.9,180.5,23.6,0.1,0,0.3 +WEST RAJASTHAN,1954,1.6,13.4,0.6,0,0.8,16.2,97,35.6,82.3,2,1,0 +WEST RAJASTHAN,1955,2.4,2.1,3.3,0.9,8.7,22.6,7.7,230.6,91.7,21,0,0.3 +WEST RAJASTHAN,1956,3.1,0.2,6.1,1,0.1,20.6,208,76.4,12.1,45.1,0,1.4 +WEST RAJASTHAN,1957,19.7,0,5.1,0.2,15.3,28.9,78.3,104.7,5.4,2.3,5.9,1.5 +WEST RAJASTHAN,1958,2.2,0,0.3,0.4,3.2,15.5,69.2,25,123.6,4.5,14.7,5.5 +WEST RAJASTHAN,1959,0.7,2.8,0.8,5,8.7,15.1,119.2,77.3,94.6,6.1,5.1,0 +WEST RAJASTHAN,1960,0.2,0,3,0.2,1.6,25.1,102.3,76.1,3.2,0,0,6.1 +WEST RAJASTHAN,1961,5.2,12.5,0.2,5.6,6.5,102.8,72.2,66.5,123.9,2,1.1,1.8 +WEST RAJASTHAN,1962,0.8,0.2,7.8,2.3,2.1,3.3,126.5,62.1,55,0,0.2,2.1 +WEST RAJASTHAN,1963,0.1,0.6,5.7,1.5,3.3,6.3,23.3,96.4,27,4.9,5.1,0.3 +WEST RAJASTHAN,1964,0.6,0.3,0.5,0.4,13.7,25.4,138.9,140.5,16.4,0.1,0,0.6 +WEST RAJASTHAN,1965,3.6,1.3,3.2,2.7,7.1,6,128,52,7.8,3.4,0.1,0 +WEST RAJASTHAN,1966,0.1,11.4,1.5,0.1,11.7,34.9,51.3,91.5,48.3,1.8,0.3,0 +WEST RAJASTHAN,1967,0,0,59,2.1,2,25.2,63.1,96,64.2,3.3,3.7,21.7 +WEST RAJASTHAN,1968,2.9,6.2,2.9,0,7,0.4,96.8,24.5,0.6,0.7,0,0 +WEST RAJASTHAN,1969,1,1.2,1.1,1,2.7,3,48.8,43.5,15.5,1,0.1,0 +WEST RAJASTHAN,1970,4.5,18.4,2.3,0.2,3.9,32.9,63,162.8,67.5,0.2,0,0 +WEST RAJASTHAN,1971,3.4,0.4,0.2,1.1,23.9,69.9,83.7,46.4,20.5,2.2,0,0 +WEST RAJASTHAN,1972,1.1,0.8,0,2.4,1.4,35,39.1,102.4,2.2,0.5,0.6,0.4 +WEST RAJASTHAN,1973,0.6,0.4,0,0,10.9,15.8,64.8,311.3,48.8,0.4,0,1.8 +WEST RAJASTHAN,1974,0,0,0,1,23,21.2,87.1,18.5,6,6.7,0,0.8 +WEST RAJASTHAN,1975,1.1,0.3,0.8,0.1,2.7,56.8,184.6,145.6,135.2,26.2,0,0.5 +WEST RAJASTHAN,1976,4.2,4.7,0.4,2,10.2,39.7,93.6,163.7,93.4,0.1,13.1,0 +WEST RAJASTHAN,1977,8.1,0.6,0.1,4.9,11.7,91.4,146.4,51.1,73.6,0.2,0.7,0.4 +WEST RAJASTHAN,1978,0.1,11.6,4.4,5.3,0,32.6,215.4,74.2,23.4,1.4,10.5,0.7 +WEST RAJASTHAN,1979,2.9,25.5,1.7,0.7,31.6,19,118.6,71.9,16.7,10.6,7.5,1.7 +WEST RAJASTHAN,1980,0.4,0.1,5.4,0.4,6.2,39.6,129.7,22.9,14.6,3.8,2,13.2 +WEST RAJASTHAN,1981,5.3,2.6,7.3,0,9.2,15.3,108.9,40.5,22.6,0.2,34.8,1.8 +WEST RAJASTHAN,1982,11.3,4,12.3,27.7,41.3,17.7,77,100.6,7.7,7.3,3.5,1.4 +WEST RAJASTHAN,1983,2.8,0.8,2.1,36.1,37.3,33.4,183.8,111.4,51.6,10,0,0 +WEST RAJASTHAN,1984,0.1,2.8,0.1,1.1,0,8.7,50.4,85.3,54.5,0.1,0.2,0 +WEST RAJASTHAN,1985,0.3,0,0.6,8.9,10.9,12.3,97.6,55.2,4.2,4.2,0.3,2.8 +WEST RAJASTHAN,1986,0.5,10.4,2.4,0.3,26,20.5,95.1,44.9,3.5,0.5,0,0.1 +WEST RAJASTHAN,1987,6.7,0.5,5.7,0.9,34.8,36.7,22.9,29.3,1.8,0.6,0,3.1 +WEST RAJASTHAN,1988,0.8,0.5,6.9,3.2,0.6,32.1,112.6,73.1,46.8,3.7,0,0.1 +WEST RAJASTHAN,1989,8.6,0,1.3,1,0.2,25.8,81,109.1,20.3,0.2,0.2,0.5 +WEST RAJASTHAN,1990,0,25.2,0.2,1.4,17.7,19.6,164.4,169.2,42.9,2.5,1.1,0.8 +WEST RAJASTHAN,1991,0.2,4,0,13.6,7,19.3,60.6,55.5,17.1,0.1,0.1,1.6 +WEST RAJASTHAN,1992,9.6,7.4,1.3,0.7,5.5,8.1,126.2,117.2,143.4,5.4,0.9,0.1 +WEST RAJASTHAN,1993,2.2,3.3,2,3,5.9,48.6,172.1,6.8,47.9,1.5,0.2,0 +WEST RAJASTHAN,1994,10.7,0.3,0.4,9.9,2.7,31.9,188.5,100.6,70.4,0,0,0 +WEST RAJASTHAN,1995,8.2,8,2.2,3,1.3,18.8,194.8,101.6,16.3,13.6,0,0 +WEST RAJASTHAN,1996,2.2,3.2,2.5,2.3,22,143.2,47.6,64.2,16.9,3.7,0,0 +WEST RAJASTHAN,1997,1.1,0.2,5.5,10.6,20.3,65.9,56.4,103.9,20.6,51.5,3.6,5.6 +WEST RAJASTHAN,1998,0,8.7,4.5,5.6,0.9,51.1,55,32.5,63,58.2,0.1,0 +WEST RAJASTHAN,1999,6.4,3.1,0.2,0,39.3,23.8,55.9,61.5,6.5,7.6,0,0 +WEST RAJASTHAN,2000,0.5,0.5,0.3,3.1,4.3,8.2,171.6,39.6,5.7,1.1,0.5,0 +WEST RAJASTHAN,2001,0.5,1.1,0.1,9.5,23.8,48.6,122.9,68.7,2.8,7.3,0,0 +WEST RAJASTHAN,2002,0.3,2.6,1,1.4,11.2,26.9,2.4,17.2,20.6,0.1,2.5,6 +WEST RAJASTHAN,2003,2.5,21.2,0.8,0.4,1.8,45.2,188.4,93.6,13.9,0.2,0,0.1 +WEST RAJASTHAN,2004,2.4,0,0,4.8,6,33.5,26.9,94.3,8.6,18.7,0,1.6 +WEST RAJASTHAN,2005,1.4,14.2,8.7,6.3,14.5,29.2,86.1,24.3,75.8,0,0.1,0 +WEST RAJASTHAN,2006,0,0,16.9,3.4,8.3,36.9,52.7,203.6,31.3,5.3,0.4,2.5 +WEST RAJASTHAN,2007,0,34.9,22,2.3,3.8,41.2,90.5,69.4,45.6,0,0.1,0.9 +WEST RAJASTHAN,2008,1.6,0.2,0.8,18.2,24.7,56.1,57.1,133.3,23,0.4,0.4,8.3 +WEST RAJASTHAN,2009,2.9,2.8,5.3,1.6,7.6,26.1,79.1,27.1,7.5,0.3,0.1,0.1 +WEST RAJASTHAN,2010,1.9,1.7,0.6,0.6,3,49.5,129.9,163.4,96.5,0.9,20.1,5.2 +WEST RAJASTHAN,2011,0,11.8,1.5,1.5,7.8,24.4,88.5,166.8,116.3,0.1,0,0 +WEST RAJASTHAN,2012,0.5,0,0,9.5,10.4,5.3,40.4,166.7,92,1.9,0,0.6 +WEST RAJASTHAN,2013,8.6,21.8,4.2,3.1,1.7,37.6,104.5,138.2,58.7,10.1,1,0 +WEST RAJASTHAN,2014,0.8,2.2,4.7,8.4,23,13.8,94.3,69.6,84.9,0.5,0.2,0 +WEST RAJASTHAN,2015,1.4,0.9,30.3,25.2,15.5,53.2,234.6,60.5,35.7,1.1,0.1,0 +EAST RAJASTHAN,1915,19,30.2,33.2,2.3,5,33.7,70,108.8,29.5,69.1,0,0.8 +EAST RAJASTHAN,1916,0,3.2,0,0.3,10,87.6,159.4,435.8,122.3,24.7,1.9,0 +EAST RAJASTHAN,1917,3.6,8.8,4.1,11,90.9,149.2,265.4,383.5,333.9,99.8,0,0.3 +EAST RAJASTHAN,1918,4,0,2.4,0.7,2.6,28.3,49.6,163.3,19,0.1,3.5,0.1 +EAST RAJASTHAN,1919,29.2,0,0.7,5.3,14.1,31.4,265,356.4,53,0.3,23.2,8.3 +EAST RAJASTHAN,1920,8.6,3.7,2.8,0.5,45.8,150.5,295.4,78.3,10.8,0.1,0,0 +EAST RAJASTHAN,1921,18.3,0,0,0.2,0,22.3,178.9,153.2,173.1,1,0,0.7 +EAST RAJASTHAN,1922,6,0.4,0,0.3,9,83.9,242.2,144.3,169.3,0.8,1.6,12.1 +EAST RAJASTHAN,1923,2,8.5,3.7,0.6,12.8,9.4,325.3,262.7,52.8,1.2,0.4,10.6 +EAST RAJASTHAN,1924,13.6,5.8,0,0.1,5.2,33.4,271.8,262.8,262.2,40.4,3.7,25.4 +EAST RAJASTHAN,1925,0.1,0,0,0.1,14.7,163.2,209.3,56.2,16.9,3.7,19.5,0 +EAST RAJASTHAN,1926,6.1,1.1,28.7,2.5,18.6,13.9,216.1,342.6,202.3,0.2,0,0.2 +EAST RAJASTHAN,1927,0,9.4,0.5,1.9,5.7,19,272.9,283.7,69.9,7.7,26,29.3 +EAST RAJASTHAN,1928,2.9,16.4,0.6,0.1,2.2,23.4,236.7,187.1,37.9,84.2,10.4,6.4 +EAST RAJASTHAN,1929,3.6,1.5,0,4,6.9,50.9,270.8,194,34.4,0.6,0,9.1 +EAST RAJASTHAN,1930,16.7,1,0.2,0.4,22.2,72.7,296.9,158.7,40.4,51.9,0.1,0 +EAST RAJASTHAN,1931,0.4,2.2,2.2,0.1,9.8,11.5,224.5,401.4,60.4,60.5,0.3,1.1 +EAST RAJASTHAN,1932,0.3,0.6,14,5.4,3.9,21.7,219,187.1,88.9,2.3,0,0.6 +EAST RAJASTHAN,1933,0.3,5.8,1.5,22.3,30.1,209.1,170.7,284.9,185.6,13.4,12.3,1.9 +EAST RAJASTHAN,1934,4.5,0,13.3,0.3,0.2,118.3,136.1,420.4,105,0,2,8.7 +EAST RAJASTHAN,1935,14.8,5.8,0.7,10.5,1.3,34.2,299.4,119.7,170.1,16.5,1.1,10.7 +EAST RAJASTHAN,1936,1.7,4.9,13.8,0.3,3.8,133.6,115.5,140,107.1,0,18.4,3.1 +EAST RAJASTHAN,1937,0,12.2,0.5,1,7.8,98.7,365.4,60.5,113.6,3.3,0.6,6.8 +EAST RAJASTHAN,1938,6.2,0,0.1,0.1,5.5,140.3,213.5,117.5,10.9,9,0,0 +EAST RAJASTHAN,1939,1.6,12.7,9.3,0,0.1,62,108.3,112.7,92.9,1.1,0,0 +EAST RAJASTHAN,1940,26,16.9,15.9,2.1,5.7,61.3,189.5,290.7,33.7,2.5,8.3,0.4 +EAST RAJASTHAN,1941,11.7,9,2,0,10.1,39.9,110.2,247.6,70.8,1.1,0,3.3 +EAST RAJASTHAN,1942,15.9,9.9,0,2.1,8,61.3,399.5,320.8,120.7,0,0,1.1 +EAST RAJASTHAN,1943,7.4,0.1,0,4.8,6.6,52.6,400.2,111.1,133.6,0.1,0,0.1 +EAST RAJASTHAN,1944,20.1,6.9,24.4,7.9,1.7,75.5,309.9,411.9,31.7,14.5,0.9,1.5 +EAST RAJASTHAN,1945,15.5,0,0.1,6.8,11.2,125.9,346,215.1,138,3.2,0,0 +EAST RAJASTHAN,1946,0,10.3,0,1.4,7.8,124.6,184.3,429.8,84.5,8.7,12.7,23.5 +EAST RAJASTHAN,1947,6.6,2.5,0.6,0.5,0.8,14.2,118.3,284.1,272,10.3,0.1,4.9 +EAST RAJASTHAN,1948,39.2,11.9,1.9,0.3,0.9,29.7,221.2,243,94.9,12.2,8.3,0 +EAST RAJASTHAN,1949,1.1,0.9,0.1,0.2,5.2,32.5,279.8,81,101,5.9,1.5,0 +EAST RAJASTHAN,1950,0.9,0.2,3.4,0,6.4,13.3,318.8,174.7,221.5,0,0,0.7 +EAST RAJASTHAN,1951,1.9,0,6.2,2.8,8,51.8,97.8,156.3,18.8,0.7,18.6,0 +EAST RAJASTHAN,1952,0.7,3.3,0.9,2.1,0.3,109.2,360.4,224.1,7.5,0.2,0,3.9 +EAST RAJASTHAN,1953,32.3,0,0,1.4,2.3,59.8,164.3,272.2,50.3,2.2,0,1 +EAST RAJASTHAN,1954,3.9,19.6,4.8,0,0.1,42.5,253.4,77.6,240.1,23.6,0.4,0 +EAST RAJASTHAN,1955,9.5,3.6,0.7,0,3.4,100.3,61.1,358.6,233,74.3,0,0.1 +EAST RAJASTHAN,1956,6,0.6,9.8,0.2,1.7,35.1,440.6,215.4,51.5,161.9,0.8,5.3 +EAST RAJASTHAN,1957,26.5,0.1,13.4,0.6,3.7,63.4,243.6,222.4,71.2,12.6,1.6,3.2 +EAST RAJASTHAN,1958,3.9,0.7,0.8,0.5,1.4,46.2,288.8,153.9,224.8,14.5,6.1,1.1 +EAST RAJASTHAN,1959,6,0.1,0.2,3.8,34.8,36.8,252.3,248.9,152.6,43,7.5,0.3 +EAST RAJASTHAN,1960,1.8,0,7,1.2,5.3,63.1,152.1,332,20.2,7.4,0,1.5 +EAST RAJASTHAN,1961,11.9,7,0,0.6,5,39.2,227.8,225.7,337.2,23,6,0.9 +EAST RAJASTHAN,1962,1.1,1.5,3.6,2.1,2.9,5.1,262.4,176,139.9,0,1.7,7.8 +EAST RAJASTHAN,1963,0.4,1.4,1,2.7,2,33.2,130.3,283.9,97.3,6.9,17.6,0.9 +EAST RAJASTHAN,1964,0,0,0,0.1,30.6,42,211.1,289.6,71.7,0.1,0,1 +EAST RAJASTHAN,1965,4.6,4.2,1.9,3.1,3.3,7,201.7,106.9,83.4,7.8,0,0 +EAST RAJASTHAN,1966,0.1,2.6,0,0,12.7,74.8,141.7,156.2,81.3,0.6,3.1,0.2 +EAST RAJASTHAN,1967,0,0,57.4,1.4,2.6,87.3,157.3,250.9,163.1,1.1,1.3,37.7 +EAST RAJASTHAN,1968,8.6,1.5,6.6,0.1,4.2,5.2,296.2,181.3,10.7,4.9,0,0.2 +EAST RAJASTHAN,1969,3.5,1.1,1.7,1.9,4.9,16.7,226.4,258.5,117.2,0.1,2.1,0 +EAST RAJASTHAN,1970,6.7,25.3,1.7,0.1,5.8,91.7,146.3,318.9,117.3,4.6,0,0 +EAST RAJASTHAN,1971,2.8,0.7,0.1,1.2,33,171.3,288.9,155,117.2,13.6,0.6,0 +EAST RAJASTHAN,1972,0.4,4.4,0,1.1,0.8,72.4,86.7,259.9,21.9,3.3,3.3,0.1 +EAST RAJASTHAN,1973,3.3,3.2,0.6,0.1,12.8,36.1,260.2,380.9,242.4,6.7,0,1.9 +EAST RAJASTHAN,1974,0,0,0.4,0.2,18.1,30.6,297.8,165.4,19.2,77,0,3.2 +EAST RAJASTHAN,1975,1.2,0.5,1.4,0.2,2.3,87.1,271,317.6,173.9,42.6,0.1,0 +EAST RAJASTHAN,1976,8.7,6.4,0.1,1.4,12.2,90.8,201.2,318,126.2,0.2,50.2,0 +EAST RAJASTHAN,1977,10.8,2.3,0.1,6.4,18.9,112.7,394.9,223.1,115.1,1.1,1.9,0.2 +EAST RAJASTHAN,1978,0.3,10.3,4.1,2.5,0,83.4,302.9,249.5,55.9,4.7,8,5.6 +EAST RAJASTHAN,1979,6.6,25.8,2.8,0.9,16.5,47.6,206.5,129.7,14.7,3.3,58.1,2.7 +EAST RAJASTHAN,1980,0.7,0.5,3.6,0.1,1.7,141.2,203,150.5,28,1,0.8,16.3 +EAST RAJASTHAN,1981,4.4,0.8,4.7,0.2,7.7,57.7,299.4,141.8,64.6,8.7,23.8,1.5 +EAST RAJASTHAN,1982,16.7,4.4,7.1,16.6,32,28.6,178.1,294.3,19.4,10.7,48.4,4 +EAST RAJASTHAN,1983,3.6,1.6,0.1,29.4,31.9,72.4,256.5,240,127.9,31.8,0,0.1 +EAST RAJASTHAN,1984,1.2,0.3,0,0.3,0.3,32.5,147.9,272,108.8,0.1,0,0 +EAST RAJASTHAN,1985,0.9,0.1,0.6,3.9,6,21,176.8,245,37.5,87.6,0.2,8.5 +EAST RAJASTHAN,1986,3.7,21.3,1.1,0.6,24.4,54.3,312.6,146.6,18.7,6.6,0,0.1 +EAST RAJASTHAN,1987,11.2,4.6,1.5,0.1,20.9,44.2,57.1,226.2,27.9,19,0,23.2 +EAST RAJASTHAN,1988,1.9,1.4,6.4,4.3,2.2,96.4,229.8,204.3,82.3,10.3,0.1,0.7 +EAST RAJASTHAN,1989,6.8,0.1,2.2,0.1,0.4,52.5,130.6,283.7,33.1,0,0.5,0.5 +EAST RAJASTHAN,1990,0,27.5,1,0.7,18.9,75.4,229,253.3,162.3,6.1,5.1,0.8 +EAST RAJASTHAN,1991,0.2,2.5,0.4,11,3,18.1,274.6,214.4,43.1,0.3,5.2,5.9 +EAST RAJASTHAN,1992,7.1,2.3,2.9,0.5,10.4,18,244.9,260.2,125.8,42.2,8.5,0.7 +EAST RAJASTHAN,1993,0.2,8.8,4,4,4.5,98.5,262.8,92.1,113.9,5.9,0.4,0.1 +EAST RAJASTHAN,1994,23.3,0.9,0.5,7.1,4.5,116.6,319.3,259.8,106.8,0,0.4,0 +EAST RAJASTHAN,1995,29.8,2.9,7,0.7,0.8,22.6,275.4,310.8,92.4,6.5,0,5.3 +EAST RAJASTHAN,1996,3.8,5.2,1.4,3,8.5,118.2,202.6,256,103.4,13.2,0.3,0 +EAST RAJASTHAN,1997,0.8,0.2,1.7,10.2,14.2,52.1,143.2,196.6,78.7,45.8,11.8,18.5 +EAST RAJASTHAN,1998,0,1.8,3.7,3.4,2.2,46.4,145.9,118.1,114.8,36.7,2.7,0 +EAST RAJASTHAN,1999,1.6,4.9,0.1,0.1,6.3,53.4,190.5,70.9,65.1,15.5,0,0.1 +EAST RAJASTHAN,2000,0.3,0.6,0.4,2.3,21,20.2,270.6,95.5,28.7,0.4,0,0.1 +EAST RAJASTHAN,2001,0.9,0.1,0.3,6.4,22.9,100.2,271.4,126.4,7.7,9.2,0,5.8 +EAST RAJASTHAN,2002,1.6,11,0.1,1.2,8.6,71.4,13.5,130.6,41.2,0.8,0.8,4.5 +EAST RAJASTHAN,2003,4.1,21.4,0.5,0.2,3.5,76.6,245.8,178.5,93.6,0.1,0,2.3 +EAST RAJASTHAN,2004,2.5,0,0,2.2,9.3,52.8,105.8,380.9,24.7,27.5,0.4,0.1 +EAST RAJASTHAN,2005,0.4,3.6,5.7,6.2,4.8,55.6,239,80,172.5,0,0,0 +EAST RAJASTHAN,2006,0,0,11.9,0.4,13.1,73.8,215.9,341.5,88.9,2.4,0.1,0.5 +EAST RAJASTHAN,2007,0.7,16.8,10.6,1.5,5.5,63,223,167.9,86.1,0,0,0.5 +EAST RAJASTHAN,2008,0.1,0,0.5,9,22.1,160.6,166.1,167.9,112.7,3,2.4,0.1 +EAST RAJASTHAN,2009,0.5,0.2,2.4,0.2,5.7,38.9,189.1,113.3,45.5,10.9,7,0.5 +EAST RAJASTHAN,2010,1.9,2.4,0.5,0.4,0.7,27.3,196.2,275.9,128.9,0.8,49.5,5 +EAST RAJASTHAN,2011,0,11.2,0.2,0.5,5.1,140.9,193.6,284.1,166.4,0,0,0 +EAST RAJASTHAN,2012,1.9,0,0,3.6,9.5,11.2,170.5,365,131.3,0.5,0,0.1 +EAST RAJASTHAN,2013,1.4,21.7,0.4,3.2,1,90.6,319,278.5,88,30.6,1.3,0.3 +EAST RAJASTHAN,2014,28.4,10,6.4,7.3,8.4,23.5,197.1,261,136.9,3.2,0,1.1 +EAST RAJASTHAN,2015,12.1,0.1,55.9,15.9,3.5,96.4,297.6,142.8,20.1,5,0.5,0.8 +EAST MADHYA PRADESH,1915,16.2,36.7,52.6,8.3,10.4,178.2,378.4,416.2,159.7,116.2,6.7,2.8 +EAST MADHYA PRADESH,1916,0,26.6,0.1,2.2,6.3,286,250.5,452.7,253.2,177.4,25.2,0 +EAST MADHYA PRADESH,1917,5.8,39.3,25.4,6.4,63.2,223.8,396.4,466.3,345.9,63,0,3.8 +EAST MADHYA PRADESH,1918,1.2,6.5,2.3,1.2,29.1,233.1,191.9,331.9,102.9,0.2,18.7,11.5 +EAST MADHYA PRADESH,1919,120.7,29.7,10.8,9.2,23.2,158.9,479.8,713,105.6,82.3,10.8,3.3 +EAST MADHYA PRADESH,1920,12.2,1.7,17,6.3,12.7,93.8,426.4,237.8,91.6,0.1,0,0 +EAST MADHYA PRADESH,1921,24.4,3.4,0,0.5,0,216.6,255.1,379.5,251.6,0.9,0,0 +EAST MADHYA PRADESH,1922,39.1,6.1,0.5,2.5,0.9,132.7,459.2,321,231.1,6.6,35,3.2 +EAST MADHYA PRADESH,1923,5.1,9.8,20,2.1,2.3,27.2,466.7,676.3,193.4,31.5,0.2,9.2 +EAST MADHYA PRADESH,1924,29.4,9,7.2,1.1,1.4,43.5,547.3,377.7,244.6,29.9,13.8,10.5 +EAST MADHYA PRADESH,1925,0.1,0,0,0.2,29.8,191.9,575,287.6,204,11.7,53.8,0.3 +EAST MADHYA PRADESH,1926,21.1,3.1,49.2,41,31,26.3,327.2,551.4,538.7,135.9,1.2,0.9 +EAST MADHYA PRADESH,1927,8.4,18.7,44.4,1.8,2.5,100.1,430.4,382.8,93.6,67.1,77.7,8.4 +EAST MADHYA PRADESH,1928,15.7,52.8,9.1,1,2.5,152.7,475,185,63.1,96.6,0,53.5 +EAST MADHYA PRADESH,1929,30,17.4,0.2,11.2,1.7,94.3,524.9,399.2,103,17.7,0,47.9 +EAST MADHYA PRADESH,1930,2.1,3.5,3,31.3,6.9,134,597.9,268.4,109.2,33.9,5.2,8.5 +EAST MADHYA PRADESH,1931,13.7,29.5,9,3.3,3.2,69.6,294.5,458.1,290.9,151.6,16.2,2.6 +EAST MADHYA PRADESH,1932,0,22.5,13.9,2.4,6.3,105.1,534.5,198,242.8,22.5,3.1,0 +EAST MADHYA PRADESH,1933,8.4,44,18.8,29.5,74.2,143.8,360.6,321.1,294.4,61.4,8.9,3.3 +EAST MADHYA PRADESH,1934,15.9,0.1,10.5,2.2,0.2,228.5,320.7,447.1,395.1,19.9,20.9,12.1 +EAST MADHYA PRADESH,1935,21.5,17.2,0.2,19.1,0.5,88.3,624.4,292.6,200.6,2.4,0.2,12.9 +EAST MADHYA PRADESH,1936,10.2,31.6,22,10.4,15.7,233.3,421.9,415.2,217,49,71.8,6.1 +EAST MADHYA PRADESH,1937,0.1,59.7,11.2,43.5,2.4,186.9,465.5,344.7,179.4,100,3.6,1.1 +EAST MADHYA PRADESH,1938,52.3,11.5,6.4,2.6,22.3,300.7,403.4,322,158.2,94.3,0,0 +EAST MADHYA PRADESH,1939,36.4,19.3,20,6.4,0,186.6,496,393.9,180.8,7.9,0,0 +EAST MADHYA PRADESH,1940,3.4,15.9,16,6.6,10.6,117,447.2,431,81.9,35,2.8,25.4 +EAST MADHYA PRADESH,1941,30,35.7,15.2,3.1,8.1,124.8,190.2,300.5,111.2,9.2,0,0.1 +EAST MADHYA PRADESH,1942,40.8,79.8,10.2,5,0.9,166.4,605.6,381.8,196.5,1.2,0,20.1 +EAST MADHYA PRADESH,1943,115.6,1.8,0,10.7,28.5,119.2,421.8,386.5,238.3,58.8,1.3,0 +EAST MADHYA PRADESH,1944,29.6,68.4,87.3,10.7,1.8,103.1,533.7,379.5,150.5,50.5,6.3,5.7 +EAST MADHYA PRADESH,1945,42.5,0.7,0,30,6,224.9,410,287.1,256.2,26.6,0,2.2 +EAST MADHYA PRADESH,1946,0,23.2,0.9,13.5,8.1,346,376.3,480.8,95.6,32.6,108.9,8.6 +EAST MADHYA PRADESH,1947,50.5,26.5,19.6,1.7,2.4,91.4,487.9,438.7,269.5,29.3,0.3,1.8 +EAST MADHYA PRADESH,1948,66.1,11,3.6,3.2,1.2,189.2,355.8,371.2,302.8,22.6,103.8,0 +EAST MADHYA PRADESH,1949,2,15.4,2.8,1.5,24.3,114.4,351,302.7,296.2,124.7,0,0.4 +EAST MADHYA PRADESH,1950,15.1,27.7,35.9,1.7,2.5,75.3,461.1,408.4,114.3,13.1,0.2,22.6 +EAST MADHYA PRADESH,1951,19.3,21,44.5,16.5,9.9,138.5,285.8,382.4,221.6,35.9,0,0 +EAST MADHYA PRADESH,1952,1.1,27.1,8.8,2.9,2.6,196.4,386.8,400.3,117.1,8.3,0,4 +EAST MADHYA PRADESH,1953,16.4,4.8,0,7.1,2,42.7,408.3,348,160.8,16.3,0,0.6 +EAST MADHYA PRADESH,1954,16.6,12.2,6.4,3.1,0.1,80.5,329.7,289.5,332,5.8,0,0.6 +EAST MADHYA PRADESH,1955,70.9,3,1.6,3,3.4,236.4,260.2,427.1,295.7,119.6,0,0 +EAST MADHYA PRADESH,1956,14.1,5.5,6.6,1.7,25.9,187.9,525.3,415.2,184.9,73.3,53.7,21.8 +EAST MADHYA PRADESH,1957,20.8,0.9,63.8,17.9,6.2,61.3,349.7,359.5,113.6,6.6,0,0.5 +EAST MADHYA PRADESH,1958,8.1,17,14.2,6,1.3,65.7,435.8,273.6,236.6,109.6,3.5,0.1 +EAST MADHYA PRADESH,1959,49.1,3.8,1.4,8.1,30.2,81.3,437.8,397.3,231.2,61.7,0.3,0 +EAST MADHYA PRADESH,1960,46.8,0.1,24.6,6.2,1.3,113.1,376.3,495.3,82.7,104.8,0,0.8 +EAST MADHYA PRADESH,1961,29,11.2,3.8,5.8,8.4,132.9,499.4,462.9,358.4,65.7,7.5,13.7 +EAST MADHYA PRADESH,1962,12.8,23.1,21.5,9.5,9.5,55.5,327.2,325.7,229.5,1.4,1.7,51 +EAST MADHYA PRADESH,1963,7.2,13.5,5.7,16.2,10.7,147.9,274.2,364.4,243.6,27.9,7.7,1.2 +EAST MADHYA PRADESH,1964,0.2,8.1,2.2,1.3,2.5,131.5,360.1,433,226,21.3,0.9,0.2 +EAST MADHYA PRADESH,1965,4.6,0.9,15.3,12.5,0.6,68.5,205.9,185,184.2,11.2,0.1,9.1 +EAST MADHYA PRADESH,1966,13.2,3.8,1.9,0.7,7.6,210.7,253.4,262,51,2.2,34,8.8 +EAST MADHYA PRADESH,1967,0.2,0,53.3,1.1,2.1,118.5,396.5,481.2,262,5.8,1.1,86 +EAST MADHYA PRADESH,1968,35.7,12.1,8.8,3.5,1.2,101.9,355.8,281.3,151.5,20.4,0,1.5 +EAST MADHYA PRADESH,1969,8.3,2.7,1.1,0.7,9.7,41.7,553.4,392.8,198.3,0,33.2,0 +EAST MADHYA PRADESH,1970,60.6,29.4,36.3,1.4,12.5,198.2,268.5,481.2,250.6,3.6,0,0 +EAST MADHYA PRADESH,1971,34.6,8.3,11.4,13.6,30,356.6,507.9,286.3,159.2,110.9,0,0 +EAST MADHYA PRADESH,1972,0.4,10.4,0.1,2.3,0.2,54.1,207.7,555.7,140.8,25.4,34.9,6.2 +EAST MADHYA PRADESH,1973,1,29.3,0.1,1,1.1,54.8,440.4,430.2,205.2,81.7,0,7.6 +EAST MADHYA PRADESH,1974,0.2,6.8,1.3,0.1,4.2,98.8,303.2,420,55,76.3,5.1,0.2 +EAST MADHYA PRADESH,1975,11.8,11.3,13.1,0.1,1.4,190.4,371.8,568.5,171.8,94,0.1,0 +EAST MADHYA PRADESH,1976,13.5,2.4,5.6,14.6,10.7,84.7,370.6,366.6,173.5,0.3,12.3,0.9 +EAST MADHYA PRADESH,1977,10.3,4.6,4.6,7.4,7.7,275.8,340.2,420.5,167.9,61.7,66.6,4.9 +EAST MADHYA PRADESH,1978,22.3,73.6,30.5,5,0.2,209.1,338.2,428.7,215.7,8.1,14.3,46.8 +EAST MADHYA PRADESH,1979,47.5,45.4,2.5,0.4,11.2,98.9,243.8,226.7,64.5,6,61.3,1.5 +EAST MADHYA PRADESH,1980,9.5,4,4,0.6,1.3,250.1,372,516.7,174.9,2.4,0.3,33.3 +EAST MADHYA PRADESH,1981,13.6,1.1,24.3,2.1,14.8,152,338.9,270.2,193.8,4,5.5,15.8 +EAST MADHYA PRADESH,1982,86,13.4,9.7,1.7,21.4,97.1,271.7,585.4,160.6,26.5,22.2,1.5 +EAST MADHYA PRADESH,1983,10.5,12.4,0.2,7.9,10.3,98.1,350.9,319.8,396.4,64.9,0,4.1 +EAST MADHYA PRADESH,1984,53.7,37.6,0,3.4,2,91.4,202,590.3,114,14.8,0,1.5 +EAST MADHYA PRADESH,1985,42.7,6.2,0.3,5.5,3.2,94.9,398.1,340.2,127,97.2,0,0 +EAST MADHYA PRADESH,1986,11.7,99,19.8,1.4,11.6,186.8,317.2,243,82.5,14,1.1,41.1 +EAST MADHYA PRADESH,1987,37.7,44.9,8,0.1,8.2,45.2,248.6,307.2,314.3,81.4,16.9,3.6 +EAST MADHYA PRADESH,1988,7.1,17.6,4.6,5.6,4.1,199.1,363.7,338.1,107.5,19.9,0,2.2 +EAST MADHYA PRADESH,1989,0.4,0,18.5,0,3.4,190.3,197.7,358.9,125.3,1.4,1.5,23.6 +EAST MADHYA PRADESH,1990,0.8,31.1,2.2,2.1,32,315.2,334.7,285.7,331.3,37.3,0,7.5 +EAST MADHYA PRADESH,1991,3.5,7.8,16.1,3.4,2.6,98.6,319.3,488.1,67.3,5.1,2.9,2.1 +EAST MADHYA PRADESH,1992,0,0,0.5,0.4,7.1,38.4,295.4,465.7,235.6,7.9,0.1,0 +EAST MADHYA PRADESH,1993,0,12.2,15.8,1,5.5,105.6,252.9,288.1,415.9,21.7,0.1,0 +EAST MADHYA PRADESH,1994,9.5,10.7,0,9.9,1,264.7,550.2,512.1,150.5,24.8,0.4,0 +EAST MADHYA PRADESH,1995,24.1,8.9,47,3.2,2.1,81,361.9,355.3,128.7,5.2,2.1,12.8 +EAST MADHYA PRADESH,1996,39.1,15.9,3.5,1.9,0.9,67.2,312.4,369.5,129,47.3,0,0 +EAST MADHYA PRADESH,1997,4,0,0.6,7.4,3.3,95.1,449.1,358.9,198,61.6,76.4,102.6 +EAST MADHYA PRADESH,1998,29.7,5.7,24.1,5.2,2.9,84.4,297.2,323.3,187.1,20.4,33.4,0 +EAST MADHYA PRADESH,1999,1.5,21.2,0,0,4.8,122.5,336.3,355.9,522.7,79,0,0 +EAST MADHYA PRADESH,2000,0.1,0,0.1,0.1,7.4,167.5,377.7,208.2,111.4,1.8,0,0 +EAST MADHYA PRADESH,2001,2.3,0.8,2.4,23,12.4,255.5,468.4,243.9,50.4,110,1,0 +EAST MADHYA PRADESH,2002,1.8,29.6,1.2,0.2,5.2,93.5,84.7,491.8,192.1,43.1,5.6,1.2 +EAST MADHYA PRADESH,2003,0.7,59.6,2.2,1,0.4,119.9,366.8,370.2,493.3,20.5,0.5,2.9 +EAST MADHYA PRADESH,2004,19.8,0.4,0,1.7,3.9,208.1,203.1,369.1,119.9,25.2,4.1,0 +EAST MADHYA PRADESH,2005,35.2,10.6,27.4,3.4,41.7,163.9,597.2,256.6,198.4,27.6,0,4.4 +EAST MADHYA PRADESH,2006,0,0,50.3,14.2,18,56.3,373.8,328.3,74.1,13,12.3,3 +EAST MADHYA PRADESH,2007,7,26.3,8.6,2.9,6.2,74.8,207.8,162.6,130.1,3.1,22.8,1.5 +EAST MADHYA PRADESH,2008,1.4,4.1,8.9,2.5,5.3,307.6,268.2,270.2,116.1,15.5,3,0.4 +EAST MADHYA PRADESH,2009,14.8,1,1.8,2.7,3.7,35.3,317.6,191.3,208.7,68.9,79.2,19 +EAST MADHYA PRADESH,2010,2.9,10.4,0.1,0.7,1.7,58.4,363.3,271.9,213.4,23.6,10.9,3.3 +EAST MADHYA PRADESH,2011,0.6,1.9,0.3,7.1,4.7,332.5,323.6,326.9,276.5,1.1,0,0 +EAST MADHYA PRADESH,2012,39.4,0.7,0.6,1.1,1.2,67.8,398.9,351.7,172.6,12.7,3.8,2.7 +EAST MADHYA PRADESH,2013,2,43.4,14.1,9.5,0.3,311.9,456.2,480.8,78,124.2,0.5,1 +EAST MADHYA PRADESH,2014,32.1,49.7,17.8,5.1,2.5,91.8,283.4,231.8,139.6,56.4,1.9,12.9 +EAST MADHYA PRADESH,2015,37.3,11,73.4,25.8,6.3,139.2,262.2,272.1,71.6,38.2,1.2,0.9 +GUJARAT REGION,1915,7.5,1.9,12.1,1.6,2.3,128.7,128.9,116.3,52.7,112.3,2.8,0.2 +GUJARAT REGION,1916,0,0,0.2,0.1,8.7,126.7,168.3,418.9,193.6,32.4,4,0 +GUJARAT REGION,1917,0.4,7.4,0,5.3,98.3,126.8,320.1,379.2,353.7,233.7,0,0 +GUJARAT REGION,1918,0.4,0,0.2,0,12.1,37.8,110.5,213.4,17.6,0.2,0.5,0 +GUJARAT REGION,1919,6.1,0.1,0,1.3,2.1,110,335.9,481.2,78.1,33,19.6,0 +GUJARAT REGION,1920,44.1,1.8,0,0.2,63.2,189.3,268.1,110.4,31.7,0,0,0 +GUJARAT REGION,1921,0.8,0,0,0,0,31.1,529.7,205.4,405.1,0.4,0,0.2 +GUJARAT REGION,1922,2.1,0,0,0,0,130.8,314.8,106.8,314.3,5,4.1,0.7 +GUJARAT REGION,1923,0,5.2,1.5,4,4.6,2.6,295,157.5,81.9,0.9,0,0 +GUJARAT REGION,1924,1.4,0,0.4,0,5.5,117.3,297.3,267,198.7,21,0,1 +GUJARAT REGION,1925,0,0,0.1,0,25.8,264.6,199.3,81.8,14.2,0.4,6.6,0.2 +GUJARAT REGION,1926,6.5,0,0.9,2,8.5,20.1,406.1,471,359.1,0.1,0.1,0 +GUJARAT REGION,1927,0,4.9,0,0.2,1.9,139.4,903.3,199.2,113.9,26.2,18.3,14.8 +GUJARAT REGION,1928,0,0.2,0,0,0,51.5,372.7,220.5,138.3,19.6,16.4,1.8 +GUJARAT REGION,1929,1.9,0,0,5.5,0.9,123.6,353.7,150.7,20.6,7.2,0.6,11.6 +GUJARAT REGION,1930,2,0.2,0.2,0.1,1.1,160.2,426,152.9,102.8,48.2,0,0.9 +GUJARAT REGION,1931,0,0.1,0,0,1.7,18.4,332.5,546.3,86.4,113.6,4.2,1.3 +GUJARAT REGION,1932,0,0,0.8,0.4,0.4,57.9,540,146.6,129.2,30.1,0.9,0.3 +GUJARAT REGION,1933,0,3.4,0.7,3.5,44.3,118.3,241.3,473.6,227.5,15.1,1.4,7.9 +GUJARAT REGION,1934,0.1,0,0.7,0.3,0,219.7,266.1,392.9,81.2,0.9,17.6,0 +GUJARAT REGION,1935,7.3,0,0,1.6,0.4,82.4,356,107.1,187.6,14.2,0.1,0.3 +GUJARAT REGION,1936,0,1.8,1.3,0,0.8,189.4,133.4,52.9,175.8,1.3,52.5,0 +GUJARAT REGION,1937,0,4,0.2,0.1,0,260.6,577.8,32,320.1,3.3,0.1,4.8 +GUJARAT REGION,1938,0,0.1,0,0,15.8,265,342.6,134.6,26.3,30.3,0,0 +GUJARAT REGION,1939,0,1.1,3.1,0,0,30.3,210.3,265.3,91.6,1.3,2.4,0.2 +GUJARAT REGION,1940,11.3,4.4,10.1,2,1.5,152.6,208.3,241.8,119.8,91.5,26.7,0 +GUJARAT REGION,1941,1,12.5,0.1,0.7,0.9,42.5,671.9,187.7,40.7,3.3,0,0.4 +GUJARAT REGION,1942,2,13.7,0,0,9,130.1,501.1,367.8,162.6,0,0,0.3 +GUJARAT REGION,1943,0.1,0,0,0.6,19,132.8,484.2,80.9,152.2,42.6,0.4,0 +GUJARAT REGION,1944,2.9,0,5.1,2.3,2.3,110.1,625.9,502.7,72.2,16.9,0,0 +GUJARAT REGION,1945,7,0,0,1.9,0.7,160.9,518.8,245.3,339.5,2.7,0,0 +GUJARAT REGION,1946,0,2.1,0,1.1,4.2,233.3,291.7,469.6,104.6,1.1,34.4,5.5 +GUJARAT REGION,1947,0.4,0,0,40.4,0,5.4,216.7,257.1,252.7,8.3,2.3,0 +GUJARAT REGION,1948,11.7,0.4,0,0,0.7,65.5,185.9,115.9,49.8,18.2,25.1,0.6 +GUJARAT REGION,1949,0,0.1,0,0,2.5,35.2,290,205.5,241.1,23.5,2.5,0 +GUJARAT REGION,1950,0,0,0,0,0.1,11.7,730.7,76.9,306.6,3.3,0,0 +GUJARAT REGION,1951,0,0,0.4,0.3,2.1,65.6,218.6,162.6,7.3,13.9,7.3,0.3 +GUJARAT REGION,1952,0,0,0,0,0.2,138.7,487.7,136.4,11.6,1.8,0,0 +GUJARAT REGION,1953,12.6,0,0,0.1,0.3,143.6,240,552.9,104.5,1,0,0.4 +GUJARAT REGION,1954,0.1,2,5.5,0,0.2,114.3,355,214.1,522,32,0.1,2.6 +GUJARAT REGION,1955,0.3,0.1,0.1,0.7,3.1,104.9,109.9,393.5,311.4,51.4,0.1,0 +GUJARAT REGION,1956,0,0.1,0,0.1,26.5,102.9,661.3,329.8,135,107.4,2.2,1.4 +GUJARAT REGION,1957,2.3,0,0.2,0,5.7,151.8,257.1,198.7,16.1,7.5,8.2,0.2 +GUJARAT REGION,1958,1,0,0.3,1.1,0.7,103.4,336.8,287.1,335.9,46.9,10,0.1 +GUJARAT REGION,1959,0,0,0,2.8,1.4,98,632.6,321.8,377.6,121.7,4.7,0 +GUJARAT REGION,1960,1.6,0,0.2,0,8,131.4,218.3,210.6,73.1,6.3,0,0.1 +GUJARAT REGION,1961,0,0.6,0,0,0.6,90.2,365.1,174.6,297.7,16.1,0.1,0 +GUJARAT REGION,1962,0,0,1.4,1.3,2.3,49.3,298.8,181,227.1,0,8.9,2.9 +GUJARAT REGION,1963,1.4,0,0.9,0.3,0.3,65.4,291.4,350.9,227.6,26,33.1,0.4 +GUJARAT REGION,1964,0.1,0,0,0,4,106.2,371,296.3,114.6,0.5,0,0 +GUJARAT REGION,1965,7.4,0,0.6,0.4,1.3,11.2,442.4,165.9,24.1,1,2.4,0.1 +GUJARAT REGION,1966,0.2,0,0,0,0.5,123.1,316.4,71.2,183.9,0.8,0.3,0.1 +GUJARAT REGION,1967,0,0,42.1,0.4,0.2,132.7,413.2,204.1,123.8,1,0,21.1 +GUJARAT REGION,1968,0.1,0.3,1.2,0,0.1,33.8,279.1,297.1,45.8,10.3,0.1,0 +GUJARAT REGION,1969,0,0.2,0,0,0,100.5,331.3,154.6,191.9,0,7.2,3.2 +GUJARAT REGION,1970,0.2,1,0.1,0.1,5.3,262.6,261.2,495.8,321.8,5.8,0,0 +GUJARAT REGION,1971,0,0.1,0,0.3,5,176.2,253.6,194.1,134.9,5,0,0 +GUJARAT REGION,1972,0.1,2,0,0,1.8,87.8,208.4,180.4,23,0.2,0,0 +GUJARAT REGION,1973,0.2,0.7,0.1,0,1.3,97.3,301.4,364.5,387,7.1,0,0.1 +GUJARAT REGION,1974,0,0,0,0.6,51.3,22.1,135.5,103,68.7,38.6,0,1.5 +GUJARAT REGION,1975,0,0,0.7,0,0.1,156,219.5,449.6,318.5,48.2,0,0 +GUJARAT REGION,1976,3.2,0,0,0,0.2,342.5,584.4,482.4,149.5,0.2,57.7,0 +GUJARAT REGION,1977,3.9,0.1,0.2,0.1,15.4,310.2,565.2,242.9,160,0.7,8.9,0 +GUJARAT REGION,1978,0,1.1,0,2,0.3,155.5,280.7,405.7,52.3,6.1,26.2,5.9 +GUJARAT REGION,1979,1,4.6,0,0,0.3,132.3,174.2,441.3,46.3,11.5,92.8,0.1 +GUJARAT REGION,1980,0.1,0,0,0,0.1,261.3,268.7,249.1,24,0.8,0.4,17.6 +GUJARAT REGION,1981,1.3,0,0.7,0.1,0.3,111.3,414.3,377,137.9,40.8,30.5,0 +GUJARAT REGION,1982,0.4,0.1,0.1,2.6,45.8,39.6,274.4,266.3,25.8,6.5,96.6,0 +GUJARAT REGION,1983,0.1,0,0,8,1.3,129.3,408.8,405.9,180.8,79.8,0,0 +GUJARAT REGION,1984,0,0,0,0,0,85.2,250.5,421.4,89.2,5.7,1.7,0 +GUJARAT REGION,1985,0,0,0,0.8,2.1,14.7,247.2,182.5,18.1,124,0,0.3 +GUJARAT REGION,1986,0,0,0.1,0,2,180.1,161.8,149.4,5.9,1.5,1.1,0 +GUJARAT REGION,1987,0.4,0.5,0,0,0.3,69.6,119.4,180.6,5.7,3.4,11.2,10.7 +GUJARAT REGION,1988,0,0,0,2.5,0,74.7,573.1,245.5,190.4,11.2,0,0 +GUJARAT REGION,1989,1.3,0,0,0,0.1,112.5,351.2,298.3,58,1.5,0,0 +GUJARAT REGION,1990,0,3.3,0.2,0,32.9,79,221.6,530.5,226.2,16,4.8,3.8 +GUJARAT REGION,1991,0,0,0,0,0,55.6,440.8,133.8,41.8,0,0.7,0 +GUJARAT REGION,1992,0.8,0,0,0,0.9,132.8,256.3,244.4,244.1,19.2,2.5,0 +GUJARAT REGION,1993,0,1.7,0.1,0,0,133.2,557.4,69.5,147.8,30.1,1.5,0 +GUJARAT REGION,1994,7.2,0,0,0.1,0,320.7,490.6,370.1,343.7,2,0.1,0 +GUJARAT REGION,1995,2.2,0,0.2,0,0,8.5,451,127.4,71,22.9,0.3,0.7 +GUJARAT REGION,1996,1,0,0,0,0,123.9,374.6,228.5,151.3,23.3,0.1,0 +GUJARAT REGION,1997,0.7,0,0.2,3.3,3.6,355.3,241.9,358,96.1,8.1,0.9,0.9 +GUJARAT REGION,1998,0,0.1,0,0,0,111.5,312.2,196.1,346.9,98.8,4.4,0 +GUJARAT REGION,1999,0,2,0,0,7.4,158,219.4,55.1,57.2,69.5,0,0 +GUJARAT REGION,2000,0,0.1,0,0,36.1,62.9,301.1,133,13.5,0.2,0,3.6 +GUJARAT REGION,2001,6.1,0,0,0.2,2.1,216.9,320,256.8,17.8,28.9,0.2,0 +GUJARAT REGION,2002,4.1,0,0.1,0,0,234.2,45.8,238.5,113.7,0.6,0.1,0.1 +GUJARAT REGION,2003,0,6.1,0.1,0,0,209.3,518.7,314.6,109.5,1.9,0,0 +GUJARAT REGION,2004,0,0,0,0,4.4,135.5,238.2,553.7,51.8,22.2,0,0 +GUJARAT REGION,2005,0,0,0,0,0.3,367.3,378.7,229.4,339.2,1.4,0,0 +GUJARAT REGION,2006,0,0,0.8,0,0.2,123.5,576,624.8,140.6,9.2,2.9,0 +GUJARAT REGION,2007,0.1,0.4,0,0,0.3,94,567.8,345.6,169.4,0,1.4,0 +GUJARAT REGION,2008,0,0,0,3.1,0.1,58.2,261.9,369.5,204.3,11.6,0.1,2.3 +GUJARAT REGION,2009,0,0,0.3,0,0,17,390.3,143.5,54.9,27.4,8.1,0 +GUJARAT REGION,2010,0.2,0,0,0,0,59.3,328.2,431,216.6,12.2,41,0.2 +GUJARAT REGION,2011,0,0.2,0,0,0,16.3,259.2,451.7,162.5,0.4,0,0 +GUJARAT REGION,2012,0.1,0,0,0,0,34.4,178.2,230.3,263.8,7.1,0,0 +GUJARAT REGION,2013,0,0.9,0.1,4.6,0,155.7,405.4,211.1,287.3,53.2,0.1,0 +GUJARAT REGION,2014,5.7,0.1,0.2,1,1.3,11.6,307.5,138.6,235.1,3.3,1.3,0 +GUJARAT REGION,2015,1.8,0,6.1,5.5,0.9,120.7,354.7,37.4,93.4,2.2,0.3,0 +SAURASHTRA & KUTCH,1915,1.3,1.3,7.9,7.2,1.3,34.9,99.3,12.3,29.5,50.6,0,0.2 +SAURASHTRA & KUTCH,1916,0,0,0,0,2.7,21,105.7,238.9,98.3,29.3,0,0 +SAURASHTRA & KUTCH,1917,3.4,0.2,0,1.5,57,81.4,215.2,209.9,109.6,208.5,0,0 +SAURASHTRA & KUTCH,1918,0,0,0.6,0.6,3.8,9.9,45,49,8.6,0.2,0,0 +SAURASHTRA & KUTCH,1919,7.5,0,0,1.1,0.9,24.9,170.4,179.6,31.2,18.2,11.3,0 +SAURASHTRA & KUTCH,1920,12.5,4.5,0.3,0.2,20.7,237.7,145.2,52.4,16.5,0,0,0 +SAURASHTRA & KUTCH,1921,0,0,0,0,0,8.6,317.4,79.1,190,2.7,0,0.2 +SAURASHTRA & KUTCH,1922,0,0,0,1,0.1,40.7,127.4,31.5,130.6,1.1,0,2.3 +SAURASHTRA & KUTCH,1923,0,11.4,0,0.5,2.7,2,103.7,69.8,14,0.8,0,0 +SAURASHTRA & KUTCH,1924,0,0.1,0.1,0,6.7,41,121.3,78.6,62.1,0.3,0,0.4 +SAURASHTRA & KUTCH,1925,0,0,0,0,11.7,200.5,79.9,29.2,7.6,0,11.8,0 +SAURASHTRA & KUTCH,1926,6,0,0.3,2.2,22.1,9.9,250.4,212.3,396.6,1.7,0,0 +SAURASHTRA & KUTCH,1927,0,8.8,0.1,0,1.9,52.5,442.1,47.7,55.8,22,3.5,5.1 +SAURASHTRA & KUTCH,1928,0.6,0,0,0.2,0,4.8,203.4,91.8,88.9,26.9,10.3,0 +SAURASHTRA & KUTCH,1929,5.1,0,0,3.1,0.5,39.6,268.4,63.2,11.5,7.7,1.3,21.3 +SAURASHTRA & KUTCH,1930,4.8,0.5,0,0.1,1.8,124.1,225,38.2,38.5,17.1,0,0.1 +SAURASHTRA & KUTCH,1931,0.2,0.6,0,0.1,3.1,8.1,115,119.2,20.8,60.1,2.5,0 +SAURASHTRA & KUTCH,1932,0,0,0,0,0.3,16.1,384.1,38.5,18.4,35,0,0 +SAURASHTRA & KUTCH,1933,0,4.5,1.2,11.4,103.9,59.6,220.1,242,107,5.9,2.2,0.2 +SAURASHTRA & KUTCH,1934,0,0,0.6,0.1,0,161.6,114.9,104.8,11.4,0.9,4,0 +SAURASHTRA & KUTCH,1935,11.5,0,0,2.5,0,44.8,353,64.6,42.3,4.9,0,0.4 +SAURASHTRA & KUTCH,1936,0,3.2,0.4,0,0.2,114.4,87.8,17.3,114.6,0,32.4,0.8 +SAURASHTRA & KUTCH,1937,0,2.4,0,0,0,117.2,271.4,6,112.2,8.3,0,16.1 +SAURASHTRA & KUTCH,1938,0,0,0,0,10,141.4,114.3,59.2,5.3,15.4,0,0.3 +SAURASHTRA & KUTCH,1939,0,8.6,2.3,0,0,9,62.2,79.5,11.8,4.1,1.9,0 +SAURASHTRA & KUTCH,1940,7.2,6.4,6.5,0.1,1.7,111.6,87.6,85.6,23.2,2.2,24.5,0 +SAURASHTRA & KUTCH,1941,0.5,3.4,0,0.1,0.8,14.4,347.2,13.4,17.1,2.9,0,2 +SAURASHTRA & KUTCH,1942,1,21,0,0,6,13.2,111.3,146.7,42.9,0,0,0.1 +SAURASHTRA & KUTCH,1943,0.2,0,0,1.8,8.8,62.1,352.7,13.4,71.7,15.8,0.1,0 +SAURASHTRA & KUTCH,1944,0.9,0,2.1,0,4,70,429.5,196.4,13.1,0.3,0,1.3 +SAURASHTRA & KUTCH,1945,10,0,0,0.7,0.4,120.9,328.3,102.9,69.1,0.8,0,0 +SAURASHTRA & KUTCH,1946,0,0.4,0,0.9,3.2,137.1,134.3,156.5,30.3,1.8,8.2,0.6 +SAURASHTRA & KUTCH,1947,0,0,0,64.4,0,1.2,79.1,260.4,151.6,2.1,0,0 +SAURASHTRA & KUTCH,1948,8.2,0,0,0,0.4,13.4,19.4,74.7,72.6,34,23.5,1.4 +SAURASHTRA & KUTCH,1949,0,0.1,0,0,0.9,13.3,236.5,231.8,55.9,3.4,0.3,0 +SAURASHTRA & KUTCH,1950,0.2,0,0,0,0,3.1,386.8,21,62.5,0,0,0 +SAURASHTRA & KUTCH,1951,0,0,0.8,0.8,1.4,40,128.3,87.7,6.9,0.4,18.8,0 +SAURASHTRA & KUTCH,1952,0,0.3,0,0.1,1.7,79.1,279.3,32.7,5.6,1.4,0.7,0 +SAURASHTRA & KUTCH,1953,6.5,0.3,0.3,0,0,66.3,112.1,450.3,69.7,1,0,0 +SAURASHTRA & KUTCH,1954,1.9,1.1,3.5,0,0.4,47.6,180.6,207,154.9,0.8,0.5,1.5 +SAURASHTRA & KUTCH,1955,0,0,0.9,0,0.9,26.3,26.5,140.8,181,8.3,0,0.4 +SAURASHTRA & KUTCH,1956,0.3,0.2,0,0.2,1.2,81.3,318.8,175.4,100.4,59,1.8,0.4 +SAURASHTRA & KUTCH,1957,1.7,0,0.1,0.1,1.5,78.6,197.7,90.4,8,1.5,18.1,0.8 +SAURASHTRA & KUTCH,1958,0.9,0.5,0.3,3.3,0.5,43.5,159.9,80.8,213.9,34.6,10.1,3.4 +SAURASHTRA & KUTCH,1959,0.9,0,0,2.2,1.7,66.5,549.1,69,210.2,116.7,4.6,0 +SAURASHTRA & KUTCH,1960,0.1,0,0.5,0,5.9,122.4,132.5,42.9,32.4,0.5,0,0 +SAURASHTRA & KUTCH,1961,1,7,4.8,0,2,125.9,294,127.2,178.8,12.1,0.2,0 +SAURASHTRA & KUTCH,1962,0,0,0.7,0.7,2.8,24,136.9,103.2,90.3,0.3,12.7,0.2 +SAURASHTRA & KUTCH,1963,0.5,0,1,1.5,0.5,25,83.1,123.6,65.8,45.4,32.5,0.2 +SAURASHTRA & KUTCH,1964,0.2,0,0,0,1.6,105.5,168.4,184.9,78.8,0.1,0,0 +SAURASHTRA & KUTCH,1965,5.5,0,0,0.3,0.2,1.4,285.7,112.1,13.7,0.2,2.1,0 +SAURASHTRA & KUTCH,1966,0.2,0,0,0,0.2,74.7,167.3,6.8,76.5,0.7,0.1,0 +SAURASHTRA & KUTCH,1967,0,0,46.2,0.7,0.2,106.2,467.4,61.2,30.8,0.1,0,25.6 +SAURASHTRA & KUTCH,1968,1.1,1,0.9,0,0.6,11,104.9,165.2,24.2,5.1,0.6,0 +SAURASHTRA & KUTCH,1969,0,0.2,0,0,0,44.2,176.3,35.5,26.9,0.3,6.4,0.2 +SAURASHTRA & KUTCH,1970,0.1,0.1,0.4,0.2,7.6,70.2,215.7,327.5,196,17.7,0.1,0 +SAURASHTRA & KUTCH,1971,0.3,0,0,0.3,2,147.1,176.8,134.1,52.2,0.9,0,0 +SAURASHTRA & KUTCH,1972,0.1,3.4,0,0,0.3,87,98.8,24.9,7.2,0.4,0,0 +SAURASHTRA & KUTCH,1973,0.8,0.1,0,0,0.5,50.8,177.2,78.6,75.3,7,0,0 +SAURASHTRA & KUTCH,1974,0,0,0,0.2,10.3,16.1,56.4,26.1,45.6,29.6,0,0.4 +SAURASHTRA & KUTCH,1975,0.7,0,0,0,0,101.2,87.5,189.3,200,103.3,0,0 +SAURASHTRA & KUTCH,1976,1,0.1,1,0,0,103.7,237.8,188.2,64.8,2.3,26.6,0 +SAURASHTRA & KUTCH,1977,1,0,0,0,7.7,161,198.2,88.6,98.9,0.9,7.8,0 +SAURASHTRA & KUTCH,1978,0,0.7,0,2.5,0,157.4,104.2,170.3,11.1,9.7,32.1,0.5 +SAURASHTRA & KUTCH,1979,0,3.3,0,0,0.1,143.5,34.7,634,37,12.2,89.7,1 +SAURASHTRA & KUTCH,1980,0.3,0.2,0,0,0,321.8,231.6,58.1,15.1,0.1,0.9,7.8 +SAURASHTRA & KUTCH,1981,0.7,0,0,0,0.7,46,284.5,163.8,89.5,32.8,87,0 +SAURASHTRA & KUTCH,1982,0.1,0,0,0.3,20.5,5.2,136.7,114.1,16.9,0.7,106.7,0 +SAURASHTRA & KUTCH,1983,0.2,0.1,0,1.3,0.5,210.2,211.8,246.3,67.8,20.3,0,0 +SAURASHTRA & KUTCH,1984,0,0,0,0,0,57.7,116.7,153.2,116.1,0,0,0 +SAURASHTRA & KUTCH,1985,0,0,0,0,5.1,12,103.3,118.6,17.7,42.1,0,0 +SAURASHTRA & KUTCH,1986,0,0,0.2,0,2.2,167.8,30.4,93,4.8,0,0,0.1 +SAURASHTRA & KUTCH,1987,0,0,0.4,0,0.1,31.4,18.4,33.5,2.1,0.1,3.2,3.3 +SAURASHTRA & KUTCH,1988,0,0,0,1.1,0.1,12.7,495.8,110.8,131,0.8,0,0 +SAURASHTRA & KUTCH,1989,1.8,0,0.2,0,0,134.5,256.6,60.6,41.3,3.1,0,0 +SAURASHTRA & KUTCH,1990,0,2.3,0.4,0,5.9,32.9,16.9,259.4,70.1,18.8,0.1,1.1 +SAURASHTRA & KUTCH,1991,0,0,0,0,0,13.3,155.6,44.2,5.4,0,0,0.3 +SAURASHTRA & KUTCH,1992,1.8,0.2,0,0,0.1,45.1,343.2,111.9,88.7,9.5,0.2,0 +SAURASHTRA & KUTCH,1993,1.5,4.8,0,0,0,41.4,140.6,4,70.1,30.5,17.2,2.5 +SAURASHTRA & KUTCH,1994,1,0,0,0,0,99.4,403.1,137.5,231.6,0.2,0,0 +SAURASHTRA & KUTCH,1995,0,0,0.2,0,0,3,259.1,45.4,42.5,23.9,0,0 +SAURASHTRA & KUTCH,1996,0.4,0,0,0.1,0,137.1,162.1,23.9,11.8,39,0,0 +SAURASHTRA & KUTCH,1997,0.8,0,0.6,0.3,3,189.8,137.4,95.7,170.7,1.9,0,0 +SAURASHTRA & KUTCH,1998,0,0,0,0,0,109.1,149.6,94.4,62.1,150,1.6,0 +SAURASHTRA & KUTCH,1999,1.3,10.5,0,0,131.9,60.6,42.3,17.4,23.9,92.9,0,0 +SAURASHTRA & KUTCH,2000,0,0,0,0,2.9,5.4,224.7,46.2,4.5,2.2,0,0.1 +SAURASHTRA & KUTCH,2001,0,0,0,0.2,0.9,172.9,191.1,116.9,20.6,7.6,0,0 +SAURASHTRA & KUTCH,2002,0,0,0,0,0,166.4,8,117.5,15.1,0.2,0.2,0.6 +SAURASHTRA & KUTCH,2003,0,0.4,0,0,0,68.2,402.2,190.7,21.7,3,0,0 +SAURASHTRA & KUTCH,2004,0.2,0,0,0,13.6,95,90,227.7,36.1,19.7,0,0 +SAURASHTRA & KUTCH,2005,0,0,0,0.2,0.2,201.2,126.7,68.4,233.1,1.7,0,0 +SAURASHTRA & KUTCH,2006,0,0,1.9,0,0,66.2,373.4,189.8,68.2,1.4,0.3,0.6 +SAURASHTRA & KUTCH,2007,0,1.9,0.1,0,0.2,114.1,209.2,405.4,157,1.7,1.2,0 +SAURASHTRA & KUTCH,2008,0.1,0.1,0.1,0.5,0,96,150.3,115.1,231.6,5.8,0.6,7.7 +SAURASHTRA & KUTCH,2009,0,0,0,0,0,68.1,409.1,106,8.8,3.3,1.5,0 +SAURASHTRA & KUTCH,2010,0.1,0,0,0,0.1,71.1,393.8,391.3,187.6,11.6,64.3,0 +SAURASHTRA & KUTCH,2011,0,1.4,0,0,0,26,212.7,290.9,210.1,1.2,0.1,0 +SAURASHTRA & KUTCH,2012,0,0,0,0.2,0.1,22.4,34.7,34.5,228.5,2.4,0,1 +SAURASHTRA & KUTCH,2013,1.7,0.2,0.1,8.5,0.1,127.7,171.2,83.3,260.2,28.6,0,0 +SAURASHTRA & KUTCH,2014,0.3,0,0.1,0.5,2.1,17.3,137.7,118.8,99.2,5.2,2.7,0 +SAURASHTRA & KUTCH,2015,0.9,0,4.4,2.1,0.8,112.6,226.7,10.6,79.9,3.3,0.3,0 +KONKAN & GOA,1915,0,4.7,5.9,10.2,7.7,845.1,734.4,355.1,412.2,137.4,12.8,0.3 +KONKAN & GOA,1916,0,0,0,2.4,39.9,832.7,765.6,851.1,620.1,204.7,86.1,0 +KONKAN & GOA,1917,0,18.4,1.2,0.3,17.5,807.6,675.1,902.5,567.7,408,32.6,0 +KONKAN & GOA,1918,0.1,0,3.3,0.1,345.4,334.1,424.7,578.1,123.6,5.8,52,0 +KONKAN & GOA,1919,2.5,0,0,0,9.6,643.6,1120.2,643.5,276.8,124.5,20.6,10.5 +KONKAN & GOA,1920,14,1.2,0,12,5.1,424.9,824,360.8,226.7,52.4,2.9,0 +KONKAN & GOA,1921,0.3,0,0.1,4.8,0,658.1,1102.5,611.8,450.4,57.5,13.7,0 +KONKAN & GOA,1922,0,0,0,6.3,13.4,774.3,1290.6,339.3,261.1,41.4,90,1.2 +KONKAN & GOA,1923,0,0.5,4.7,1.3,7.8,259.4,1643.9,480.7,363.7,8.3,0.1,0 +KONKAN & GOA,1924,0,0,0.1,0.1,0.4,522.5,932.2,641.7,324.4,19,3.8,0 +KONKAN & GOA,1925,0.1,0,7.4,5.2,121,800.9,655.5,501.5,120.4,74.6,18.6,0 +KONKAN & GOA,1926,31.8,0,0,0,1.5,306.1,1203.6,1149.6,432.9,39.2,1.1,0 +KONKAN & GOA,1927,0,0.2,0.2,0,5.5,785.6,1030.3,416.6,240.9,178.8,87.3,1.6 +KONKAN & GOA,1928,0,1.3,0.2,3.1,1.1,657,1159.4,939.9,264.5,137.9,7.7,0.4 +KONKAN & GOA,1929,1,0,3.2,14.9,6.2,773.8,767.6,516,250.9,152.4,11.2,12.1 +KONKAN & GOA,1930,0,0.2,0.1,0.3,12.5,1024.9,690.5,427.3,542.6,136.2,10.6,0.6 +KONKAN & GOA,1931,0,0,0.1,1.7,1.8,344.9,1867.2,944.9,307.1,458.9,51.5,21.2 +KONKAN & GOA,1932,0.5,0,0,2.9,45.9,435.3,1248.1,485.6,456.2,259.1,21.1,8.2 +KONKAN & GOA,1933,0,0.1,1.6,15.3,129.2,816.5,909,758.6,485.8,179.7,19.2,28.4 +KONKAN & GOA,1934,0.7,0,0.3,2.7,0.7,1060.2,893,870.7,329.7,60.3,53.5,0.5 +KONKAN & GOA,1935,0.2,0.1,0,0,0,700.3,879.9,466.5,419.7,64.3,11,0.6 +KONKAN & GOA,1936,0,0,0.1,0.3,23.2,993.2,712.9,534.9,376.2,62.1,79.1,1.3 +KONKAN & GOA,1937,0,4,0.1,53.5,2.4,826.9,1492.9,270.1,378.1,159.2,4,0.7 +KONKAN & GOA,1938,0,0.4,4,2.1,55.2,1118.1,908.2,634.8,345.6,400,27,0.1 +KONKAN & GOA,1939,0.2,0,0.4,5.8,0.1,509.6,1116.8,817.1,227.9,58,22.7,0 +KONKAN & GOA,1940,4.8,6.1,2.8,1.9,7.9,668.3,1105.9,987.1,328.9,172.7,26.7,0.6 +KONKAN & GOA,1941,17.1,0.2,0.1,1,5.1,602.7,718,282,194.6,61.4,0.2,7.3 +KONKAN & GOA,1942,0,0,0,3.3,2.6,987.6,1386.3,536.7,312,37.1,1.4,12.4 +KONKAN & GOA,1943,3.6,0,0.1,0,200,788,1313.1,281.8,468.4,168.4,27.8,0 +KONKAN & GOA,1944,0.1,0,0.7,0,17.5,542.5,1456,658.6,85.7,177,14.1,0 +KONKAN & GOA,1945,8.8,0,0,0.9,1.1,733.2,1394.2,709.4,348.4,44.9,3.6,0 +KONKAN & GOA,1946,0,0,0,14.4,30,787.9,1085.7,878.9,334,47.3,170.4,10.4 +KONKAN & GOA,1947,4.9,0,5.8,67.3,7.5,398.3,1133.9,919.2,497.5,50.8,2,2.9 +KONKAN & GOA,1948,10.5,0,0.2,2.3,7.2,599.3,1080.4,797.3,376.6,77.7,168.1,0 +KONKAN & GOA,1949,0.2,0,0.1,1.3,128.9,442.2,1147.3,594.7,782.3,108.3,8.4,0 +KONKAN & GOA,1950,0,0,0.2,0.2,21.3,364.1,1336.1,302.6,777.5,119.1,8.1,0 +KONKAN & GOA,1951,0,0,2.5,9.8,22.7,730.4,1114.7,507.6,129,296.3,36.3,0 +KONKAN & GOA,1952,0,0,0,2.8,23.5,729.4,1013.1,512.3,87.5,151.5,0,1.8 +KONKAN & GOA,1953,0,0,0,15.4,0,910.3,1321.9,713.3,210.5,156.1,0.2,0 +KONKAN & GOA,1954,0,2.4,3.5,7.2,3.9,581.5,1470.8,912.8,750.7,48.9,0.1,8.6 +KONKAN & GOA,1955,0.2,0,2.2,11.6,34.2,779.2,995.9,1299.8,463,297.1,14.2,0 +KONKAN & GOA,1956,0,0.3,0,5.8,176.4,780.2,1325.8,700.8,433.4,195,46,0 +KONKAN & GOA,1957,0,0,0,1.7,30.6,593.8,1175,1051.7,130.6,86.6,52.9,0.6 +KONKAN & GOA,1958,0.2,0.1,0.2,9,34.8,1044.5,1280.2,1177.9,383.7,54.8,14.7,0.2 +KONKAN & GOA,1959,0,0,0,6,36.2,750.1,1357.1,690.9,521.8,201.4,24.8,0.3 +KONKAN & GOA,1960,0,0,0,1.1,81,920.1,1140.9,501.8,285.1,82,15.3,0.5 +KONKAN & GOA,1961,0,5.2,0,2.3,182.2,738,1543.3,712.6,486.1,248.9,2.4,0 +KONKAN & GOA,1962,0.2,0,0.1,0.7,129.5,435.5,1355.1,880.4,525.9,48.8,12.8,96.2 +KONKAN & GOA,1963,0,0.1,0.1,1.1,7.6,594.5,1178.8,1414.7,306.3,91.9,11.7,0 +KONKAN & GOA,1964,0,0,0,0.9,5.2,690.3,908.3,1031.8,378.9,158,18.9,0.4 +KONKAN & GOA,1965,3.4,0,0,5.7,0.1,817.6,1393.7,608.8,147.5,8.9,2.2,83.7 +KONKAN & GOA,1966,0,0,0,0.2,64.7,370,1168.8,224.1,443.5,43.9,111.3,1.1 +KONKAN & GOA,1967,0,0,7.7,0.8,7.5,768.9,1109.2,416.9,317.1,109.6,0.7,14 +KONKAN & GOA,1968,0,0.3,0.1,6,1.5,556.9,1134.7,318.7,202.1,130.4,8.6,0 +KONKAN & GOA,1969,0,0,0,1.1,2.4,666.5,1282.2,527.1,586,37.9,23.2,0.9 +KONKAN & GOA,1970,0,0,0,1.5,74.5,963.3,993.8,1164.8,312.7,85.8,0,0.2 +KONKAN & GOA,1971,0,0,0,0.3,85.1,1011.9,650.8,602,362.6,40.4,0.9,0 +KONKAN & GOA,1972,0,0.1,0,0.6,10.7,662,731.6,293.9,138.8,8.5,26.8,0 +KONKAN & GOA,1973,0,0.4,0,0,3.1,455.9,922.1,910.6,437.4,103.6,2.9,0.2 +KONKAN & GOA,1974,0.7,0,0,6.8,73.9,508.2,1133,774.4,351.1,238.6,0,0 +KONKAN & GOA,1975,0,0.1,0,1,13.6,856.9,1027,848,556,192.7,20.2,0 +KONKAN & GOA,1976,0,0,1.6,0.4,4.5,635.1,1279.2,690.1,360.7,20.3,71,0 +KONKAN & GOA,1977,0,0,0.8,1.3,10.3,583,1384.6,580.5,386.9,77,78.8,0.2 +KONKAN & GOA,1978,0,0,0,8.3,86.6,946.2,907.2,575.4,243,67.2,48.8,2.8 +KONKAN & GOA,1979,0,0.7,0.1,0,0.3,653.1,797.2,687.2,266.5,26.8,77.3,0 +KONKAN & GOA,1980,0,0,0,3.5,2.9,877.7,749.9,851.8,166.4,20.7,26.1,25.2 +KONKAN & GOA,1981,0.6,0,0,0.1,4.2,773.9,1073,708.6,480.6,59.1,24.5,0.1 +KONKAN & GOA,1982,0,0,0,0,14.5,558.4,987.1,810.8,216.3,42.1,69.6,0 +KONKAN & GOA,1983,0,0,0,0.3,0.4,655.3,1073.2,1331.2,638.8,102.4,9.7,3.2 +KONKAN & GOA,1984,0,0.2,0.1,0.9,0.3,728,1090.5,421.4,220.5,118.7,2.9,0.3 +KONKAN & GOA,1985,0,0,0,0.4,23.3,1000,921.3,663.1,153.1,204.8,2.5,0 +KONKAN & GOA,1986,0,0,0,0.1,1,777.2,543.2,670.9,65,15.6,53.6,1 +KONKAN & GOA,1987,0,0,0,0.6,9,612,832.2,835.6,149.3,166.8,20.2,9.3 +KONKAN & GOA,1988,0,0,0,4.3,1.3,506.1,1432.1,664.4,617.9,66.9,0,0 +KONKAN & GOA,1989,0,0,0.6,1,4,733.1,943,704.9,300.5,80.7,3.6,0 +KONKAN & GOA,1990,0,0,0.1,0,193.9,802.1,873.7,1164.2,323.2,190,20.8,0 +KONKAN & GOA,1991,0,0,0,6.4,14.7,759.2,1461.4,598.8,92.7,20.3,0.8,0.3 +KONKAN & GOA,1992,0,0,0,0,6.2,493,822.9,1093.1,343.4,79,2.8,0 +KONKAN & GOA,1993,0,0,0.6,0.1,11.4,587.7,1394.1,648.7,597.2,227.6,9.4,4 +KONKAN & GOA,1994,1.3,0,0,12.5,11.7,784.8,1168.5,654.4,406.5,137.9,2.2,0 +KONKAN & GOA,1995,3.5,0,0,3.3,15.3,345.9,1171.2,606.5,419.5,196.5,4.4,0 +KONKAN & GOA,1996,0.1,0,0,0.6,1.4,535.7,1232,594.6,308.4,245.9,1.2,0.9 +KONKAN & GOA,1997,2.6,0,0.8,1.8,0.2,757.9,1072.6,847.6,215.2,21.8,47.1,59.6 +KONKAN & GOA,1998,0,0,0,0,9.7,671.3,909.1,758.3,561.8,280,44.3,0.1 +KONKAN & GOA,1999,0,0,0,0,67.1,978.7,1105.1,283.7,297.1,179.7,0.7,0 +KONKAN & GOA,2000,1.2,0,0,0.9,190.3,739.4,1200.4,789.5,111.9,91.8,1.6,6.2 +KONKAN & GOA,2001,5.6,0,0,2.8,59.6,540.1,873.4,611.3,207.9,91.6,3.1,0 +KONKAN & GOA,2002,0,0,0.1,2.8,9.4,942,452.8,834.5,217.1,75.3,3,0.3 +KONKAN & GOA,2003,0.5,0.6,0.8,1.2,11.2,865.3,1013.9,593.7,298.7,54.4,1.9,0 +KONKAN & GOA,2004,0,0,0,10.4,46.9,678.6,902.3,1011.5,293.3,32.9,10.2,0 +KONKAN & GOA,2005,1.3,0.1,1.9,4,9.8,730.2,1340.9,772.2,678.8,76.5,0,0.1 +KONKAN & GOA,2006,0,0,9.9,0,211.8,683.1,1066.2,886.4,399.9,202.4,22.5,0 +KONKAN & GOA,2007,0,0,0.1,3.3,33.4,939.3,841.3,980.2,609,45.6,16,0.1 +KONKAN & GOA,2008,0,0.1,31.5,0.3,11.1,798.5,766.6,833.1,551.2,57.3,0.9,2.4 +KONKAN & GOA,2009,0,0,0.3,0.1,5.6,330.6,1271.2,292.9,387.5,307.4,121,0 +KONKAN & GOA,2010,2.7,0,0,1.5,8.2,680.8,1405.3,850,531.3,190.2,106.7,1.4 +KONKAN & GOA,2011,0,0,0,3.4,1.1,857,1384.1,987.9,468.3,120.3,3.1,0 +KONKAN & GOA,2012,0,0,0,0.6,1.1,633,928.5,762.5,515.3,175.1,2.3,0 +KONKAN & GOA,2013,1.8,5.4,0.1,0.1,18.5,1028.3,1478.5,497.6,340.7,149.3,2.1,1.5 +KONKAN & GOA,2014,1.3,5.3,1.8,0.7,21.3,238.2,1293.2,658,419.5,98.7,8,11.7 +KONKAN & GOA,2015,2.7,0,36.8,3.6,11.3,764,526.5,377.3,240.9,91.4,27.3,0 +MADHYA MAHARASHTRA,1915,8.6,6.6,13.9,21.9,12.1,195.2,225.4,80,228.5,76.8,20.9,18 +MADHYA MAHARASHTRA,1916,0,0.2,0.4,4.9,55.2,144.8,257.6,185.9,217.5,136.8,69.1,0.1 +MADHYA MAHARASHTRA,1917,0.1,20,4.8,7.7,15.6,174.3,120.6,187,205.2,169.5,33.4,0 +MADHYA MAHARASHTRA,1918,5.1,0.6,2.6,1,90.5,51.7,68.4,112.4,55.1,13.3,30,7.5 +MADHYA MAHARASHTRA,1919,3,0.5,1.2,2.7,38.2,173.5,198.9,153.8,231.7,45.1,28.4,1.9 +MADHYA MAHARASHTRA,1920,41.5,0.2,0.1,9.7,8,120.7,185.9,94.1,113.8,26,0.3,0 +MADHYA MAHARASHTRA,1921,1.6,0,0.3,9,1.1,105.8,291.6,125,128.7,47.5,23.7,0 +MADHYA MAHARASHTRA,1922,18.3,2.6,0,16.7,27.4,161.7,218.2,79.4,97.1,41.2,141.1,1.4 +MADHYA MAHARASHTRA,1923,1.9,1.7,32.7,8.7,10.5,30.7,290,126.5,169.5,6.4,0,2.3 +MADHYA MAHARASHTRA,1924,2.1,0,2.8,19.7,4.6,80.3,173.8,220.6,185.8,49.7,3.6,5.3 +MADHYA MAHARASHTRA,1925,0,0,3.1,1.5,38.9,177.7,152,115.2,94.7,33.9,40.7,4 +MADHYA MAHARASHTRA,1926,34.3,0.6,0.1,0.2,11.2,85.9,230.6,258,147.7,8.1,8.3,2.2 +MADHYA MAHARASHTRA,1927,0,1,0.9,4.6,9.3,184.9,318.7,85.4,183.6,51.3,83.3,2 +MADHYA MAHARASHTRA,1928,0.1,10.3,3.7,8,0.3,143.3,217.7,159.6,209,62.5,3.1,14.1 +MADHYA MAHARASHTRA,1929,1,6.4,2,37.1,6.4,155.9,168.2,73.7,151.6,82.5,3.4,2.2 +MADHYA MAHARASHTRA,1930,0,0,0.7,3.2,29.8,178.1,233.7,106.5,247,87.4,37.7,5 +MADHYA MAHARASHTRA,1931,0,0,0.6,14,2.9,109.7,316.3,233.5,178.9,180.9,70.2,25.3 +MADHYA MAHARASHTRA,1932,0,0.5,8.6,22.3,27.3,67.3,351.7,221.3,162.8,148.4,30.8,4 +MADHYA MAHARASHTRA,1933,1.4,0.5,3.4,8.5,76.5,182.3,194.7,259.4,286.1,93.3,24,22.3 +MADHYA MAHARASHTRA,1934,3.7,0,1.9,7.3,8,138.2,217,222.3,136.8,41.2,82,0 +MADHYA MAHARASHTRA,1935,2.5,0,0,3.7,1.4,149.6,208.6,195.5,126.7,119.4,7.7,3.9 +MADHYA MAHARASHTRA,1936,1.3,6.2,4.3,3.8,21.1,169.2,113.9,106.3,161.5,17.2,130.4,0.3 +MADHYA MAHARASHTRA,1937,0,2,2,47.7,4.7,146.7,319.4,63.6,219.9,96.1,1.3,11 +MADHYA MAHARASHTRA,1938,0.6,1,23.5,12.2,50.4,239.9,286.6,169.4,191.5,141.3,7.6,2.3 +MADHYA MAHARASHTRA,1939,0.2,0.2,4.1,6.3,1.1,127.6,303.9,219.9,88.5,41.8,27.3,0.8 +MADHYA MAHARASHTRA,1940,1.3,1.8,0.5,16.5,15.8,191.3,215.9,188.7,132,95.2,30.1,4.2 +MADHYA MAHARASHTRA,1941,28.2,8,1.8,5.4,4.2,96.1,338.6,103.7,143.3,44.5,0.1,0.4 +MADHYA MAHARASHTRA,1942,0.2,2.5,0.2,6.7,10,213.3,364.7,191.6,93.8,20,1.3,36.9 +MADHYA MAHARASHTRA,1943,4.1,0,1.5,3.5,63.4,150.5,316.4,80.9,166.2,196,10.6,0 +MADHYA MAHARASHTRA,1944,0.8,0.7,10.3,0.1,21.4,132.2,421.7,227.8,142.1,115.3,13.6,0 +MADHYA MAHARASHTRA,1945,4.2,0,0,9.8,5.2,125.6,263.7,209,132.4,37.1,6.3,0 +MADHYA MAHARASHTRA,1946,0,2.9,0,22,34.3,138.4,288.5,255.9,170.3,23.1,152.8,15.4 +MADHYA MAHARASHTRA,1947,18.7,1.4,4.4,31,19.6,63,230.6,272.8,216.2,23,10.3,14.6 +MADHYA MAHARASHTRA,1948,16.9,0.7,4.3,7.6,8.9,191,239.6,181.4,162,66.6,137.1,0.1 +MADHYA MAHARASHTRA,1949,0,0,2,4.8,58.4,102,201.3,174,323.1,82.2,5.7,0 +MADHYA MAHARASHTRA,1950,0,0.2,1.5,5.9,23.2,59.5,400.2,102.9,248.8,87.3,2.2,0.8 +MADHYA MAHARASHTRA,1951,0.1,0,0.5,9.3,29.5,150.1,250.2,136.3,71.7,128.9,20.1,0 +MADHYA MAHARASHTRA,1952,0,1.9,0,8.9,18.9,131.2,268.8,139.1,57.1,56.7,0,0.8 +MADHYA MAHARASHTRA,1953,1.2,0,0.1,24.5,2,186.3,216.5,220.2,126.8,116.1,0,0 +MADHYA MAHARASHTRA,1954,2,0.4,16,6,15.8,158.5,305.3,171.7,263,30.1,0,16.2 +MADHYA MAHARASHTRA,1955,3.2,0,6.8,12.2,25.8,140.9,149.6,254.3,218.9,159,10.4,0 +MADHYA MAHARASHTRA,1956,1.5,0.2,1.1,11.3,91.2,111,360.5,252,165.8,148,90.1,1.1 +MADHYA MAHARASHTRA,1957,0.1,0,4.8,20.9,36.9,177.8,196.4,202.2,98.7,85.1,26.8,0.1 +MADHYA MAHARASHTRA,1958,1.6,0,5.4,23.6,32.9,101.9,393.3,296.6,112.1,57.4,29.2,0.1 +MADHYA MAHARASHTRA,1959,2.4,0,0,16.8,39.3,174.7,344.3,199,202.7,84.7,54.9,0.1 +MADHYA MAHARASHTRA,1960,3.6,0,3,5.1,61.3,146.4,235,138,229,44.9,18.8,0.8 +MADHYA MAHARASHTRA,1961,0.3,0.1,0.5,9.8,104.2,163.5,411.9,135,104.8,128,10,2.5 +MADHYA MAHARASHTRA,1962,0.2,0.1,6.7,12.9,57.2,46.8,287.5,164,199.9,51.9,23,48.8 +MADHYA MAHARASHTRA,1963,0.8,4.3,14,12,23.3,138.6,252.3,268.7,72.7,93.5,19.1,0.6 +MADHYA MAHARASHTRA,1964,0,0,4.1,6.2,7,139.8,238.9,242.3,223.1,60,23.3,0.9 +MADHYA MAHARASHTRA,1965,5.8,0.2,0.3,10.2,12.3,82.9,380.7,200.3,54.8,10,4.6,28.5 +MADHYA MAHARASHTRA,1966,1.9,0.5,1.4,2.1,81.5,83.8,315,94,149,14.5,82.6,11.2 +MADHYA MAHARASHTRA,1967,0,0.1,4.7,13.3,7.8,130.4,367.4,139,146.7,43.1,2.1,58.6 +MADHYA MAHARASHTRA,1968,1.6,3.6,9.4,11.2,2.5,95.4,238.9,213.3,172.1,60.6,15.1,0.3 +MADHYA MAHARASHTRA,1969,0.2,0,1.4,5.8,4,140.1,307.1,248.3,234,20.1,22.3,0.9 +MADHYA MAHARASHTRA,1970,1,0,0.6,17.9,39.1,195.4,200.1,254.9,161.3,70.9,0,0 +MADHYA MAHARASHTRA,1971,0,0,0.1,3.8,43.3,155.6,124.9,204,185.6,56,0,0 +MADHYA MAHARASHTRA,1972,0,0.2,0,4,13.8,90.4,195.1,99.3,88.1,7.3,21.6,0.1 +MADHYA MAHARASHTRA,1973,0,3,1.8,3.2,10.1,124.7,312,243.9,172.8,104.8,3.9,0.4 +MADHYA MAHARASHTRA,1974,0,0.1,2.5,14.6,60.9,77.5,217.9,184.7,201.5,152,0.1,0 +MADHYA MAHARASHTRA,1975,0.4,1.1,0.1,1,15.4,165.6,228,223.2,242.8,158.3,4.8,0 +MADHYA MAHARASHTRA,1976,0.1,0,6,3.4,3.3,283.6,315.6,240.8,87.7,14.3,68.9,2.2 +MADHYA MAHARASHTRA,1977,0,0.1,7.1,9.9,31.3,209,262.5,150.4,94.6,64.4,112.1,5.7 +MADHYA MAHARASHTRA,1978,0.7,10.8,4.6,22.2,33.1,174.2,179.6,211.8,124.1,57,63.5,2.1 +MADHYA MAHARASHTRA,1979,3.5,1.8,5.3,1,7.1,129.7,194.5,299,249.9,46,88.4,0.5 +MADHYA MAHARASHTRA,1980,0,0,1.5,16.1,8.6,279.2,197.4,286.6,89.2,14.7,29.8,16.4 +MADHYA MAHARASHTRA,1981,10.5,0,3.7,6.8,7.7,135.9,248.9,188.6,253.7,56.8,11,6.2 +MADHYA MAHARASHTRA,1982,2.1,0.2,0.2,6.3,33.8,114.6,187.7,186.6,119.5,55.2,45.8,0 +MADHYA MAHARASHTRA,1983,0.1,1.4,0,0,2.8,125.3,218.1,259.4,263,43.2,2.5,2.8 +MADHYA MAHARASHTRA,1984,0.6,11.2,3.7,4.6,0.6,109.6,260.8,140,133.2,109.1,4.7,1.7 +MADHYA MAHARASHTRA,1985,2.6,0.2,2.3,9.1,12.3,118.7,189.5,145.1,63.5,107.3,5.4,0 +MADHYA MAHARASHTRA,1986,1.6,2.7,0.3,2.4,8.6,200.8,126.1,157.9,101,8.9,19.4,14.6 +MADHYA MAHARASHTRA,1987,1.7,3.9,2.5,4,36.6,130.3,166.7,226.9,63.5,98.8,38,34.6 +MADHYA MAHARASHTRA,1988,0,0.1,0.1,18.8,7.6,111,314.1,165.7,324.8,27.5,1.9,4.9 +MADHYA MAHARASHTRA,1989,0,0,16.3,3.3,11.8,153.5,271.9,152.1,181.6,22.9,1.4,1.7 +MADHYA MAHARASHTRA,1990,2.6,0.2,0,0.2,78.2,150.5,227.3,294.6,94.9,154.9,17.2,1.9 +MADHYA MAHARASHTRA,1991,0,0.1,0.3,12.2,19.2,293.8,318.1,143.9,67.3,21,4.7,0.1 +MADHYA MAHARASHTRA,1992,0,0,0,2.1,5.1,146.9,190.6,248.6,132.1,55.6,10.1,0 +MADHYA MAHARASHTRA,1993,0,0.1,3,5.7,11.5,147.6,289.2,162.4,162.6,192.8,10.7,34.3 +MADHYA MAHARASHTRA,1994,3.1,0.1,0.6,21.8,23.8,253.2,332.9,188.4,118.9,66.2,12.6,0 +MADHYA MAHARASHTRA,1995,20,0.2,5.4,6.7,24,63.6,253.1,82.7,194.3,121.5,4.9,0 +MADHYA MAHARASHTRA,1996,0.1,0,0.1,4.1,5.7,162.3,281,184.1,161.4,171.3,4.8,0.4 +MADHYA MAHARASHTRA,1997,3.3,0,2.4,15.3,6.5,180.2,239.9,295.5,91.7,57.7,68.8,39.6 +MADHYA MAHARASHTRA,1998,0.2,0,0.6,2.5,18.4,147.1,264.1,226.4,257.2,162.5,22.1,0 +MADHYA MAHARASHTRA,1999,0,6.7,0,0.1,39.2,225.3,262.5,85.4,169,177.6,0,0 +MADHYA MAHARASHTRA,2000,0.4,1.1,0.2,1.7,18.5,173,198.7,159.6,87,56.5,2.7,2.1 +MADHYA MAHARASHTRA,2001,4.4,0,0.3,4.7,8.4,157.9,179.3,160.9,137.3,125.5,5.7,0.5 +MADHYA MAHARASHTRA,2002,1.7,3.1,1,13,14.4,251.9,95.6,221.5,95.8,36.3,5.9,0 +MADHYA MAHARASHTRA,2003,0.8,2.2,1.5,5.7,15.1,210.8,208.7,178.4,116.2,29.5,3.5,0.1 +MADHYA MAHARASHTRA,2004,0.1,0.1,0,4.7,49,215.9,174.2,354.1,181.2,42.1,8,0.1 +MADHYA MAHARASHTRA,2005,3.6,0.4,1.6,11.1,7.8,240.5,361.2,256.1,276.4,62.7,0,0 +MADHYA MAHARASHTRA,2006,0,0,7.1,0.2,42.3,205.3,416.4,421.7,217,60.1,25.5,0 +MADHYA MAHARASHTRA,2007,1.3,0.4,0,2.1,5.5,266.9,293.5,274.2,189.2,3.4,3.9,0 +MADHYA MAHARASHTRA,2008,0,0,18.1,0.6,1.1,107.9,157.9,257.6,312.4,56.6,3.7,0.9 +MADHYA MAHARASHTRA,2009,0,1.7,0.8,0.4,7.7,68.9,329.8,148.2,162.6,96.2,121.3,4.3 +MADHYA MAHARASHTRA,2010,2.9,0.1,0.9,2.3,5.4,185.6,280.9,233.2,165.6,77.1,73.4,0.2 +MADHYA MAHARASHTRA,2011,0,0.3,0.3,5,2.9,133.3,261.4,238.1,148.4,62.8,0,0 +MADHYA MAHARASHTRA,2012,0,0,0,3,1.4,67.9,203,187.8,129.5,95.2,2.2,0 +MADHYA MAHARASHTRA,2013,0.1,5.3,0.8,5.7,6,212.4,311.8,147,210.3,57.8,4,1.3 +MADHYA MAHARASHTRA,2014,3.1,6.2,24.4,7.5,29.8,44,277.9,240.3,120.4,38.5,32.8,13.1 +MADHYA MAHARASHTRA,2015,1.4,0.8,41.2,9.6,24.4,177,111.7,67.2,146.6,48.3,16.2,0.1 +MATATHWADA,1915,28,2.6,55.9,18.9,11.5,207.8,146.8,96.1,299.1,99.7,10.1,25.1 +MATATHWADA,1916,0,5,3,1.7,43.6,149.8,374.7,139.7,305.1,115,40.3,0 +MATATHWADA,1917,1.7,63.5,10.8,7,17.1,176.8,144.6,259.3,348.7,101.2,37.5,0 +MATATHWADA,1918,0.7,0,0.2,0.6,121.4,93.5,65.9,78.6,89.9,4.7,9.8,20.7 +MATATHWADA,1919,11.9,0.9,0.3,5.1,11.2,149.7,119.9,85.3,228,28,21.4,1.1 +MATATHWADA,1920,27,0,0.3,3.1,2.1,60.4,50.5,86.1,127.7,3.8,0,0 +MATATHWADA,1921,2.1,0,0,2.4,0,151,174.8,70.2,113.4,41.9,6.6,0 +MATATHWADA,1922,54.4,1.9,0,2.8,19.3,220.3,119.5,39.4,206.4,47.8,122.7,1.4 +MATATHWADA,1923,4,0.5,55.9,9.9,0.6,20.5,300.4,72,300.1,0.2,0,0.8 +MATATHWADA,1924,3.2,0,7.7,8.1,0.2,49.2,130.4,180.7,200.2,59.8,9.8,13.4 +MATATHWADA,1925,0,0,0,0,30.1,130.3,84.3,173.6,73.4,38.1,75.1,0 +MATATHWADA,1926,70.4,0,0,1.5,17.6,85,126.3,254.1,147.6,0,11.2,1.8 +MATATHWADA,1927,0,3.2,10.2,7.5,0,173,143.5,67,175.7,37.2,126.9,0.4 +MATATHWADA,1928,0,28.3,9.5,2,0,160.5,141.7,135,288.1,58.8,0,1.7 +MATATHWADA,1929,0,31.6,0.9,21.6,1.7,165.8,104.7,48.2,179,51.7,0,4.2 +MATATHWADA,1930,0,1,1.7,13,4.1,132.2,49.6,75.7,281,64.6,17.1,0.3 +MATATHWADA,1931,0,0,3.8,4.4,7.7,134.5,295.1,142.8,242.1,175.1,70.1,13.1 +MATATHWADA,1932,0,2.5,7.7,7.7,20.1,111.5,276.6,161.3,161.6,54.6,34.3,6.3 +MATATHWADA,1933,9.1,7.6,10.1,13.5,66.7,206.6,214.7,180.4,340.8,30.7,17.5,25.2 +MATATHWADA,1934,6,0,0,11.9,1.3,95.8,248.6,256.8,159.9,16.8,79.5,0 +MATATHWADA,1935,7.2,0.5,0,14,0.4,191.1,197.4,196.6,223.5,84.1,5.8,1.4 +MATATHWADA,1936,0,26.6,7.8,10.7,33.3,137.5,92.2,119.3,145.1,9.1,139.9,6.2 +MATATHWADA,1937,0,13.2,11.3,43.8,1.1,75.8,277.3,35.8,152.8,106.4,0.3,20.5 +MATATHWADA,1938,0,8.8,17.7,15.6,27.3,253.3,260.1,146.5,256.1,86.8,0.2,0.3 +MATATHWADA,1939,0.2,0,3.7,9.1,0.2,98.2,163.6,188.6,73.8,25.3,16.5,1 +MATATHWADA,1940,0,0.4,0,11.2,13.4,178.8,176.9,239.5,139,63.1,31.5,1.8 +MATATHWADA,1941,9.4,9.3,1.1,0.5,0,50.2,114.9,150.4,190.6,14.5,0,0 +MATATHWADA,1942,0,24.3,0,6.6,3.9,221,227.2,311.4,124.9,11.1,0,72.6 +MATATHWADA,1943,7.1,0.1,1.5,0.2,47.6,187.4,105.8,62.3,282.9,156.5,1,0 +MATATHWADA,1944,0.4,12.2,32.6,0,5.2,85.1,230.7,116,167,94.5,15.2,0 +MATATHWADA,1945,1.8,0,0,5,0.3,129.6,140.2,154.4,161.9,27.7,1.3,0 +MATATHWADA,1946,0,9.7,1.9,21.3,16.3,165.6,212.4,114.5,180.1,6.8,98.2,21.9 +MATATHWADA,1947,28,22,7.7,11.5,2,65.7,164.5,276,253.3,13.6,2.1,8.6 +MATATHWADA,1948,7.9,2.2,4.1,3.3,1.9,179.4,218.7,110.1,221.6,21.1,176.1,0 +MATATHWADA,1949,2.9,0.5,0.1,0.7,35.2,188.9,189.5,89.8,369.1,32.3,5.2,0 +MATATHWADA,1950,0,11.9,4.1,0.4,7.1,67.6,141.1,113.9,271,38.8,0,1.6 +MATATHWADA,1951,0.4,0,6.2,10.6,11.2,159.5,271,101.3,89.3,78.4,3.5,0 +MATATHWADA,1952,0.2,18.8,0,3.3,21.7,95.4,144.6,87.2,136.1,36.4,0,2.3 +MATATHWADA,1953,0.3,0,0.3,15.2,0.4,200.4,217.9,160.6,208,88.1,0,0 +MATATHWADA,1954,0.4,0,15.5,5.6,5.2,181,276,138.8,255.6,11.9,0,9.7 +MATATHWADA,1955,6.5,0,2.4,3.4,12.2,229.8,213.2,364.7,208.6,109.3,1.2,0 +MATATHWADA,1956,1.2,1.9,0.1,4.1,78.4,154.1,310,134.6,202.5,70.7,79.7,0 +MATATHWADA,1957,1.5,2.1,13.9,14.5,30,126.9,255.1,294.6,104.7,53.7,3.6,0 +MATATHWADA,1958,0.1,0,4.4,25.2,12.7,92.2,264.4,456.1,79.8,41.2,48.3,0 +MATATHWADA,1959,1.5,0,0.1,9.5,13.2,173.6,188.3,200,246.3,99.8,17,1 +MATATHWADA,1960,3.6,0,18.1,1,49.2,163.6,136.6,66.8,206.8,78.5,14,0.1 +MATATHWADA,1961,0.9,0.1,5.6,6.7,35.7,170.8,253.7,143.4,97,238.1,5.2,1.8 +MATATHWADA,1962,0.6,2.8,2.7,37.8,43.4,67.3,164.7,192.2,304.7,41.4,33.5,54.6 +MATATHWADA,1963,0,6.2,15.5,7,13.5,228.4,172.2,380.4,82.8,92.4,2.7,0 +MATATHWADA,1964,0,0.2,5.1,1.5,1.3,120.3,246.5,150.7,219.9,20.1,15,0 +MATATHWADA,1965,5.4,1.5,0,9.5,0.8,129.3,218.7,180,69.4,5.9,0.4,10.4 +MATATHWADA,1966,18.9,0,10.4,10.5,45.8,63.1,228.6,85.9,191.6,13,65.9,13.5 +MATATHWADA,1967,0,0,4,1,5.9,146,224,104.1,136,26.4,0,112.4 +MATATHWADA,1968,5.8,23.8,32.2,11.3,0.7,94.2,219,63.6,210.6,24.5,26.3,0.3 +MATATHWADA,1969,0,0,0.2,0.1,2.7,120.8,222.6,148.3,277.1,14.7,38.1,0 +MATATHWADA,1970,8.4,0,2.8,7.5,30.2,215.1,103.9,344.9,178.1,19.9,0,0 +MATATHWADA,1971,0.2,0.1,1.3,0.1,38.8,83.2,24.3,220,131.5,108.4,0,0 +MATATHWADA,1972,0,0,0,0.1,3,115.1,41.9,85.3,65.3,4.2,28.4,3.8 +MATATHWADA,1973,0,0.7,0,3.8,0.6,112.3,203.1,334.9,115.6,99.3,1,0 +MATATHWADA,1974,0,0.4,0.4,2.9,36,98.4,100.7,123.2,154.4,134.1,0,0 +MATATHWADA,1975,2.1,8.3,7.3,0,11.3,117.2,249,231.7,309.9,113.9,0.1,0 +MATATHWADA,1976,0,0.2,3.2,7.4,2.9,92.1,213,195.6,63,3.8,39.4,2.4 +MATATHWADA,1977,0,1.5,6,4.6,5.4,126,155.4,149.3,116.8,66.4,129.9,6.5 +MATATHWADA,1978,5.7,18.8,9.6,12,19.1,212.4,215,105.3,80.6,70.5,34.6,1.2 +MATATHWADA,1979,3.4,11.8,5.6,1.4,18.1,125.5,163.1,132.9,236.5,17.7,90.6,0.8 +MATATHWADA,1980,0.1,0,4.7,4.6,2.3,223,114.4,325.1,113.6,1.1,3.6,20.3 +MATATHWADA,1981,27.3,0.7,11,1.6,12.7,100.5,122.3,127.3,285.1,68.7,11.2,18.3 +MATATHWADA,1982,10,0.6,5.1,7.8,15.9,99.6,170.1,84.8,172,43.6,27,0 +MATATHWADA,1983,0,0,0.3,0.3,6,96.8,231.9,315.4,422.3,106.8,1,6.9 +MATATHWADA,1984,3.1,9.5,0.4,0.8,0,75.7,168.5,59.8,120.1,106.2,5.4,3.3 +MATATHWADA,1985,7.1,0,6.2,10.5,7.6,160.8,148.9,63.9,82.3,86,0.7,1.5 +MATATHWADA,1986,9.6,9.6,1.3,2.7,7.3,132.3,140.2,127.1,104,6.6,10.1,12.1 +MATATHWADA,1987,7.9,3.6,0.8,2,20.9,155.1,132,220.2,46.1,145.7,41.1,10.8 +MATATHWADA,1988,0,0,0.2,7.2,4.2,169.7,301.6,245.4,411.9,18.5,7.7,3.5 +MATATHWADA,1989,0,0,42.3,2.8,6.4,237.9,336.2,245.7,170,17.6,0.5,9 +MATATHWADA,1990,2.9,0,0,0,142.1,221,131,365.9,104.2,223.1,5,2.9 +MATATHWADA,1991,0.3,0.4,0.4,9.8,9.4,250.1,222.4,49.7,38.5,9.1,10.9,0 +MATATHWADA,1992,0,0,0,3.5,6.7,217.9,79.4,203,140.4,52.2,23.5,0 +MATATHWADA,1993,0,1,5.6,1.7,9.1,87.5,216.3,166.2,121.8,136.3,5.8,55.1 +MATATHWADA,1994,3.2,0.1,0,14.9,14.3,110.6,117.1,162.8,63.4,64.3,32.9,0 +MATATHWADA,1995,46.9,0.2,23.6,11.4,17.6,135.5,186,96,137.9,153.2,1.2,0 +MATATHWADA,1996,0.1,0,0.3,10.6,1.6,55.8,186.6,246.4,229.8,118.9,4.4,0.4 +MATATHWADA,1997,7.7,1.1,8.3,14.3,8,75.8,131,121.1,163.4,106.8,98.6,54.3 +MATATHWADA,1998,0.1,0.3,3.4,1.7,8.7,189.8,255.1,249.9,235.8,150.3,31.6,0 +MATATHWADA,1999,0,6,0.1,0,17.9,141.5,133.3,133.4,215.4,119.9,0,0 +MATATHWADA,2000,0.4,3.8,0.5,0.4,16.3,188.3,157.3,239.5,44.8,30.8,0.7,1.7 +MATATHWADA,2001,4.8,0.5,0.5,9.9,0.7,148.7,56.7,255.8,83.5,170.5,0.8,0 +MATATHWADA,2002,5.5,4.1,0.7,6.1,8.5,241.8,58.2,223.6,122.4,46.4,4.8,0 +MATATHWADA,2003,2.1,1.3,2.3,4.9,28.5,117.6,255.9,183.9,95.7,22.1,4.9,0.8 +MATATHWADA,2004,1.2,0.4,5.5,1.9,30.4,100,201.7,75,177.2,58.1,27.2,0 +MATATHWADA,2005,13.2,0.7,11.6,1.6,2.1,59.7,413.5,124.1,213.5,100.5,0,0 +MATATHWADA,2006,0,0,30.7,1.6,26.7,134.7,116.2,301.3,209.4,47.7,4.6,0 +MATATHWADA,2007,0,0,0.1,0.7,10,185.4,123.1,146.2,240.7,0.9,7.5,0 +MATATHWADA,2008,0.1,0.1,14.6,3.7,1.8,66.7,106.5,150.8,267.8,33.8,0.3,0.1 +MATATHWADA,2009,0,0,0.6,0.8,7,63.1,139.2,167.6,159.9,59,63.3,8.4 +MATATHWADA,2010,4.3,5.8,3.9,0.7,4.6,119.7,329.5,291.4,157.3,57.7,36.8,0 +MATATHWADA,2011,0,3.8,0.7,3.5,3.1,79.2,230.1,228.5,90,24.8,0,0 +MATATHWADA,2012,0,0,0,0.6,2.3,72.2,161.1,101.4,120,68.8,0.3,0 +MATATHWADA,2013,1.5,9.4,2.6,7.9,6.4,160.9,293.4,136.9,154.1,94.3,7.4,13.1 +MATATHWADA,2014,1.4,13.4,79,11.9,7,30.4,105,178.9,84.5,14.2,19.9,3.3 +MATATHWADA,2015,10.1,1.6,32,39.6,12.3,118.3,27.4,112.2,154.3,19.5,4.8,0 +VIDARBHA,1915,33.3,9.1,65.9,18.9,13.1,190.2,311,229.6,195.2,111,7.4,15 +VIDARBHA,1916,0,14.4,0.8,2.2,21.7,257,345.3,306.2,253.1,124.1,37.4,0 +VIDARBHA,1917,0.9,78.5,20.6,11.5,48.9,234.9,350.1,200.3,328.5,120.9,1.7,0 +VIDARBHA,1918,2.5,2.9,3.1,0.2,83.1,278.3,168,174.5,55.5,3.4,16.8,13.2 +VIDARBHA,1919,55.8,37,15.9,6.3,19.9,325.6,280.3,249.8,103.6,98,19.3,1.1 +VIDARBHA,1920,26.7,0.3,5.2,6.2,4.8,101.8,237.8,111.7,83.3,0.5,0,0 +VIDARBHA,1921,20.3,0.1,0,2.6,0,283.9,293,292,182.3,11.3,0.2,0 +VIDARBHA,1922,33.8,2.3,0,3.8,5.1,206.1,361.7,116.5,295.3,4.7,80.3,0.3 +VIDARBHA,1923,1,6.7,30.6,3.4,2.3,21.4,402.9,201.1,260.1,11,0.1,0.7 +VIDARBHA,1924,21.3,0.5,4.4,6.2,3.2,43.8,308.3,220.6,217.3,126.9,33.6,8.1 +VIDARBHA,1925,0,0,7.3,5.4,28,130.3,293.9,307.2,77.4,21.8,61.5,8.4 +VIDARBHA,1926,59.5,5.7,23.7,15.1,34.4,31.8,330.6,420,109.9,38.7,1.3,0.6 +VIDARBHA,1927,0.7,10,12.2,2,2.2,280.2,414.7,220.1,97.7,51.5,70.4,5.7 +VIDARBHA,1928,0.2,43.1,5.9,0.2,2.2,177.8,296.2,185.2,180.1,108.5,0.1,17.8 +VIDARBHA,1929,3.8,52.6,0.7,11.8,0.7,170.9,263.5,157.4,193.1,28.2,0,29.8 +VIDARBHA,1930,0,5.3,1.2,27.4,4.4,181.3,252.9,194.4,233.2,44.8,36.3,1.9 +VIDARBHA,1931,4,4.6,11.6,5.6,3.1,103.3,380.6,390.7,232.9,225.1,40.2,2.4 +VIDARBHA,1932,0,27.4,12.9,3.4,10.3,154.2,526.6,176.7,183.8,25.6,9.7,0 +VIDARBHA,1933,4.8,38.3,9.1,20.5,64.6,244.6,353.7,365.4,301.7,75.1,8.4,16 +VIDARBHA,1934,2.2,0,0.3,8.5,0.3,169.1,335.1,390.9,254.4,10.8,46.6,0.1 +VIDARBHA,1935,14.5,4.6,0.7,26,1,151.8,528.1,164.8,250.4,13.4,0.4,2.3 +VIDARBHA,1936,17.6,60.3,21.6,4.8,30.5,377.5,285.3,308.3,188.8,61.9,90.9,3.5 +VIDARBHA,1937,0,33.1,42.4,112.7,1.5,135.6,476.2,177.2,226,105.7,0.4,8.4 +VIDARBHA,1938,4,12.4,9.7,6.5,26.2,354,425.6,314.1,181.6,126.8,0,0 +VIDARBHA,1939,1.3,1.9,34.2,12.2,0.1,116.1,224.2,385.4,66.5,33.5,6,0.4 +VIDARBHA,1940,0,9.3,1.3,12.8,11.5,262.7,591,298.6,53.6,79,24.3,13.4 +VIDARBHA,1941,9.6,15.2,13.5,3.1,4.8,142.3,338.8,182.4,112.8,6.5,0,0 +VIDARBHA,1942,2.4,84.9,0,12.9,1.9,179.4,508.3,366.5,159.2,4.9,0,21.2 +VIDARBHA,1943,55,0.1,0.4,7.2,28.3,141.9,275.1,149.2,277.5,83.4,0.1,0 +VIDARBHA,1944,4.5,59.4,64.8,1.6,2.7,96.6,470.4,370.6,213.2,67.4,16.5,0 +VIDARBHA,1945,13.8,0.4,0,24.6,3.3,147,404.7,299.6,274.2,30.3,0.6,1.1 +VIDARBHA,1946,0,14.2,0.7,15.5,9.7,237,376.9,292.4,107.4,8.6,97.6,13 +VIDARBHA,1947,35,26.7,23.7,7.8,5.3,112.1,406,345.8,167.8,25.9,0.3,11.8 +VIDARBHA,1948,48.9,9.4,7,3.9,4.5,125.1,374.1,267.8,201.1,14.4,126.5,0 +VIDARBHA,1949,1.2,1.5,1,5.6,28.8,222.7,412.9,266.2,323.5,134.8,0,0.1 +VIDARBHA,1950,0.1,27.3,14.9,0.7,5.6,84.6,375,143.7,116.3,13.3,0.3,11.9 +VIDARBHA,1951,4.6,0.6,41.9,14.6,11.1,136.8,348.8,318.6,123.1,81.5,0.6,0 +VIDARBHA,1952,0,10.6,4.2,10.8,2.5,98,235.1,266.5,146,33.6,0,0.5 +VIDARBHA,1953,3.9,1.1,0,21.4,0.2,138.2,299.4,449.9,173,50.7,0,0 +VIDARBHA,1954,0.3,0.6,11.4,4,1.1,132.4,407.9,248.8,288.3,4.6,0.9,0.1 +VIDARBHA,1955,15.5,0.3,2.3,6.8,5,274.7,278.4,371.8,244.6,169.1,0.2,0 +VIDARBHA,1956,1.3,1.9,0.8,0.5,52.8,248.7,370.5,163.4,198,40.1,37.3,9.3 +VIDARBHA,1957,8.6,2.5,44.4,31.6,15.5,148.5,303.8,354.2,133.4,27.5,1,0 +VIDARBHA,1958,5.7,2,20.4,10.5,10.4,102.7,341.5,354,220.3,68,36.5,0.1 +VIDARBHA,1959,13.6,1.2,0.4,11.8,6.2,178,467.9,377.3,469.9,79.4,0.5,0.1 +VIDARBHA,1960,38.8,0,41,6.7,8.2,195.2,378.5,199.9,114.8,78.5,1.1,2.4 +VIDARBHA,1961,1.1,5.7,4.5,5.3,21.4,152.7,372.6,401.6,326.2,143.3,2.9,3.4 +VIDARBHA,1962,5.6,4.6,18.4,33.1,21.7,67.1,364.3,267.3,267.2,8.3,30.5,64.5 +VIDARBHA,1963,0.3,10.5,12.9,14.8,19.5,204,282.1,397.9,123.9,80.1,1.7,0 +VIDARBHA,1964,0,2,3,1.3,0.6,166,259.5,357.9,176.8,40.8,2.3,0.6 +VIDARBHA,1965,18.7,4.9,4.9,15.5,1.6,113.6,262,181,139.6,1.3,0,0.5 +VIDARBHA,1966,16.1,1.1,10.5,7.9,30.7,84.8,387.5,206.5,191.4,4.6,34.9,26.8 +VIDARBHA,1967,0.5,0,50,7.4,1.6,184.6,406.8,244.8,101.6,8,1.1,121.8 +VIDARBHA,1968,14.6,23.9,36.6,15.4,0.7,104.8,291.4,210.5,193,23,4.7,4.3 +VIDARBHA,1969,1.5,0,0.6,4,9.6,98.6,371,200,281.5,5.4,19.4,1.3 +VIDARBHA,1970,15.9,1,18.3,4.2,17.5,304.1,211,435.6,223.3,9.6,0,0 +VIDARBHA,1971,3.7,12.8,21.2,12.4,26.7,193.6,124.3,259.2,119.5,108.9,0,0 +VIDARBHA,1972,0,1.1,0,3.8,3.4,139.8,197.7,280.8,60.7,20.9,28.5,4.2 +VIDARBHA,1973,1.7,5,0.3,2.3,1.5,75.1,428.5,346.4,136.4,163.4,1.4,0.5 +VIDARBHA,1974,0,4.8,1.2,0.5,12.6,93.2,211,281.4,68.1,162.6,5.4,0 +VIDARBHA,1975,3.5,22.4,7,1.1,6.4,264.3,321.3,316,288.9,92.8,0.3,0 +VIDARBHA,1976,2.1,0.1,4.7,11.5,4.6,90.8,386,260.7,174.7,0.9,38.5,0.2 +VIDARBHA,1977,0,2.1,3.7,8.9,15,169.7,283.9,340.8,131.7,37.8,71.2,3.2 +VIDARBHA,1978,13.3,24.4,18.6,10.1,1.9,228,399.3,430,46.2,16.4,20.7,40.5 +VIDARBHA,1979,30.4,59.7,1.7,0.5,12.9,245.6,218.2,323.2,143.3,6.3,34.9,10.6 +VIDARBHA,1980,15.3,3.2,1,2.9,0.5,253.6,246.3,361.8,131.4,2,0.4,24.1 +VIDARBHA,1981,20.2,0.9,25.4,3.6,12.6,173.1,302.5,352.6,294.5,17.6,1.8,13.8 +VIDARBHA,1982,45.7,10.6,6,5.2,15.3,100.6,256.4,206.8,144.2,49.2,16.1,0 +VIDARBHA,1983,1.6,7.4,1.9,1.5,6.7,156.4,327.9,376.7,289.8,58.4,0,12.2 +VIDARBHA,1984,26.9,18.6,0.4,3.2,0.4,105.6,258.6,271,48.7,76.6,0,0.6 +VIDARBHA,1985,22.5,1.1,1,7.3,9.7,196.8,271.7,181.9,61.9,120.4,0,2.6 +VIDARBHA,1986,11.7,40.5,6.4,4.2,6.5,232.8,353.4,382.2,61.2,12.7,17.2,28.3 +VIDARBHA,1987,24.3,6.1,7.5,0.7,9.8,117,204.7,283.7,37.7,72.1,55.4,3.6 +VIDARBHA,1988,0.7,7.9,3.8,12.5,4.2,186.8,485,286.6,230.1,86.4,4.3,0.3 +VIDARBHA,1989,0,0,23.6,0.1,2,236.5,240.6,330.1,118,15.2,1.6,30.1 +VIDARBHA,1990,3.5,6.8,8.6,3.9,71.3,303.2,326.3,507.3,121.5,143.7,1.6,7.1 +VIDARBHA,1991,6.3,1.6,4.6,4.7,3,168.9,348,255.4,23,9.6,12.1,1.5 +VIDARBHA,1992,0.2,0.5,0.4,2.9,5.7,167.9,241.3,565.5,116.1,35.9,12.4,0 +VIDARBHA,1993,0.5,3.6,17.9,2.8,5,145.8,365.6,222,171.3,77.7,0.5,10.4 +VIDARBHA,1994,10,9.8,0.1,9.6,2.2,228.6,508.2,343.3,225.4,83.3,6.2,0.4 +VIDARBHA,1995,49.8,5.5,45.4,8.8,8,156.1,335.8,165.9,201.3,100.5,0.1,0.3 +VIDARBHA,1996,2.2,3.7,3.6,9.3,0.7,64.4,266,261.1,149.8,92.2,1.9,0 +VIDARBHA,1997,16.3,0,2.5,18.4,8.4,108,248.4,265.8,145.7,77.4,69.9,78.5 +VIDARBHA,1998,12.8,14.7,16.2,8.3,10.6,127.5,274,234.2,247.4,53.9,62.2,0 +VIDARBHA,1999,0.2,20.9,0.2,0,33.3,228.8,234,294.1,248,105.5,0,0 +VIDARBHA,2000,0.1,16.4,0.1,0.1,28.8,235.9,472.1,286.2,54,11,0,0.5 +VIDARBHA,2001,8.9,0.1,15.2,18.3,7.9,338.6,202,359.8,37.4,129.2,4.7,0 +VIDARBHA,2002,2.4,4,1.1,2.9,8.2,301.1,88.1,352.5,128.6,35.2,1.9,0.1 +VIDARBHA,2003,0,4.4,3.6,2.7,3,140.2,401,280.9,138,42.6,0.8,1.3 +VIDARBHA,2004,10.3,5.5,0.6,3.5,12.2,137.9,217.7,223.1,86.3,27.7,6.9,0.2 +VIDARBHA,2005,74.9,7,7.2,1.9,2.6,144.4,393.2,249.2,246.8,87.2,0,0.2 +VIDARBHA,2006,0,0,50.6,16.2,20.9,115,360.8,421.4,175.8,43.7,11.1,0 +VIDARBHA,2007,0.1,1.3,1.4,3.2,1.2,256.7,349.1,282.4,241.8,27.3,2.5,0 +VIDARBHA,2008,0.2,1.9,19.2,2.8,2.9,137.9,261.5,254,160.8,22.4,2.9,0.1 +VIDARBHA,2009,0.1,0,0.9,2.4,5.9,78.1,310.8,175.4,90.3,41.9,63.8,1.2 +VIDARBHA,2010,14,1.9,7.5,0.3,1.9,144.8,454.5,384,238,51,37,3.2 +VIDARBHA,2011,0,1.2,0.1,7.7,0.6,137.9,247.1,302.8,191,4.7,0,0 +VIDARBHA,2012,3.1,0.1,0,0.6,0.2,125.5,370.5,316.2,249.4,34.9,7.3,0 +VIDARBHA,2013,6.6,13,3.8,2.8,0.5,366.7,535.5,326.1,131.7,133.5,0,0 +VIDARBHA,2014,1.2,18.3,49.6,2.6,4,63.3,337.6,191.7,224.9,17.3,6.2,2.3 +VIDARBHA,2015,26.3,4.7,66.3,28.1,12.8,254.6,137.2,288.9,167.5,7,0,0.2 +CHHATTISGARH,1915,25,42.4,19.7,16.6,21.2,131.3,364.6,435.9,251,121,27.2,0 +CHHATTISGARH,1916,0,26.5,2.1,6.9,20.2,325.5,289.4,374.6,199.2,178.4,20.3,0 +CHHATTISGARH,1917,3.6,63.7,26.6,10.8,44,296.9,374,475.2,287.8,144.1,0.3,0.7 +CHHATTISGARH,1918,14.1,4.5,1.9,10.7,48.3,431.2,238,490.9,122.5,1.7,4.7,8.8 +CHHATTISGARH,1919,98.3,65.2,30.1,13.5,33,396.5,392.9,511.2,152.4,150.6,13.9,1.4 +CHHATTISGARH,1920,1.7,2.6,21.9,25.6,23.4,97,542.5,391.5,92,5.2,0,0 +CHHATTISGARH,1921,39.6,1.6,0,6.2,0,335.4,311.4,401.8,210.9,12.3,0,0 +CHHATTISGARH,1922,21.1,1.2,0.5,12.7,9.5,180.2,416.7,305.2,297.6,23.5,38.9,1.7 +CHHATTISGARH,1923,3.9,27.1,15.2,9.7,5.3,103.8,374.6,582.3,194.9,61.9,8,0.5 +CHHATTISGARH,1924,32.3,11.1,5.9,9,18,83.5,310.3,329.5,330.6,79.5,124.5,0.1 +CHHATTISGARH,1925,0.2,0.5,0.3,10.6,88.6,368.8,560.4,476.6,166.8,45.1,19.1,0 +CHHATTISGARH,1926,33.2,10.7,99.7,63.3,45.3,55.3,374.4,555.5,330.5,63.4,0.2,3.3 +CHHATTISGARH,1927,11.7,57.9,24.1,2.3,15.9,193.3,468.3,488.8,171.9,75.2,27.8,0 +CHHATTISGARH,1928,6.8,11.3,8.8,13.6,16.7,210.1,384.4,272.7,192.5,97.8,0,4.4 +CHHATTISGARH,1929,23.1,28.9,1.2,14.4,5.6,216.2,597.9,461.1,179.2,94.3,0,41.9 +CHHATTISGARH,1930,0,4,13.5,43.3,7.9,190.9,517.4,285,185.3,37.3,93.9,5.1 +CHHATTISGARH,1931,8.4,64.4,14.5,10.6,14.6,104.6,359.1,510.8,169.3,156.3,54.1,0.2 +CHHATTISGARH,1932,0,22.9,3.7,9.5,18.8,109.6,525.2,300.9,272.6,56.4,37.6,0.2 +CHHATTISGARH,1933,31.6,75.9,14.9,21.9,97.3,310.7,388.9,368.3,286.5,41.4,7.9,5.5 +CHHATTISGARH,1934,1.8,0,1.5,11.5,0,263.1,412,483.4,305.3,37,12.3,1.1 +CHHATTISGARH,1935,12.2,17.9,5.1,33.4,4.1,132.2,562.1,247.2,247.6,3.8,0,3.6 +CHHATTISGARH,1936,31.9,44.7,14.6,4.3,46.6,413.1,463.8,434.5,258,90.4,18.2,6.1 +CHHATTISGARH,1937,0,66.2,21.5,76.3,19.2,222.6,501,391.9,237,79.8,1,0.2 +CHHATTISGARH,1938,18.4,25.1,5.4,8.2,48.8,269.2,386.8,343.5,266.7,126.6,7,0.1 +CHHATTISGARH,1939,6.5,22.8,53.2,19.9,1.1,188.6,427.5,478.6,198.3,79.3,4.6,0 +CHHATTISGARH,1940,0.2,23,31.1,26.4,41.5,218.6,542.9,395.6,72.8,67.2,4.9,24.3 +CHHATTISGARH,1941,20.8,13.8,18.4,3.3,27.1,240.8,218.6,238.7,146,70.9,6.5,0.2 +CHHATTISGARH,1942,13.1,48.2,7.5,18.7,17.7,164.1,540.7,470.7,289.6,23.9,1.6,2.3 +CHHATTISGARH,1943,99.5,5.1,1,19.5,32.1,214.2,459.7,386.5,373.6,52.8,1,0 +CHHATTISGARH,1944,24.4,78.3,102.9,25,11.1,101.3,611.7,439.8,247.7,142.8,7.5,0.1 +CHHATTISGARH,1945,30.1,7.6,0,58.6,7,200.7,428.5,397.2,376.6,71.9,6.4,0.9 +CHHATTISGARH,1946,0,11,2.3,35.3,25.3,307.9,419.9,522.5,181.6,63.9,29,0.4 +CHHATTISGARH,1947,31,29.9,12,6.7,9.7,140.1,510.6,476.4,283.2,80,4.5,15.6 +CHHATTISGARH,1948,31,8,14.2,21.5,11.6,216,390.1,423.7,246.9,42.3,86.4,0 +CHHATTISGARH,1949,1.2,7.6,4,9.9,61.5,181.7,381,412.3,280.3,159.8,0,0.2 +CHHATTISGARH,1950,0.4,40.1,50.9,1.3,10,172.4,457.2,374.7,148.9,16.7,19.6,0 +CHHATTISGARH,1951,4.5,2.8,102.3,59.8,34.5,145.1,338.4,459.4,166.5,96.8,1.5,0 +CHHATTISGARH,1952,1.2,20,18.8,18.2,23.4,120.8,439.4,385.8,304,62.8,0,2 +CHHATTISGARH,1953,24.3,5.1,0.1,22.7,5.8,140.8,421.3,483.6,209.1,55,2.4,0 +CHHATTISGARH,1954,2.7,2.2,4.4,11.7,6.5,114.9,314,358.1,361.4,12.5,0,5.4 +CHHATTISGARH,1955,15.1,1.2,3.2,13.5,23.3,242.1,283.1,406,276.6,174.2,2.4,0 +CHHATTISGARH,1956,2.2,13.9,7.1,3,68.4,278,468.5,404.3,227.3,69.6,10.7,4 +CHHATTISGARH,1957,14.8,10.4,48.7,17,16.2,114.8,449.7,416.7,105.8,28.3,0,0 +CHHATTISGARH,1958,9.5,38.8,21.6,17.1,19.2,101.2,509.4,376,265.8,133,29.3,0 +CHHATTISGARH,1959,32,3.3,0.2,3.6,15.5,180.4,408.9,473.1,357.9,69,0.1,0.3 +CHHATTISGARH,1960,18,0.7,44.4,10.2,11.2,168.6,412.1,441.5,145.4,111.9,0.4,0 +CHHATTISGARH,1961,2.5,44.1,5,10.9,16.1,377.4,533.2,467.6,401.2,102.8,5.8,7.3 +CHHATTISGARH,1962,3.8,15.8,10.4,23.8,28,130.5,371.6,276.1,210,26.3,2,26.4 +CHHATTISGARH,1963,0.4,5.4,8.9,44.8,28.2,160.8,349.4,387.7,258.8,91.2,1.2,0.3 +CHHATTISGARH,1964,1,21.9,3.9,6.5,4.5,269.2,371.6,515.3,201.8,109.1,4.1,0 +CHHATTISGARH,1965,5.8,4.5,22.3,14.4,8.4,111.1,310,208.3,251.8,4.9,0,0 +CHHATTISGARH,1966,20.9,0,2.2,16.3,19,267.8,294,253.4,154.6,25.1,12.8,20.9 +CHHATTISGARH,1967,1.7,0,96.8,15.5,12.2,184.3,397.9,508.3,188.5,9.2,0.4,57.6 +CHHATTISGARH,1968,25.6,26.1,16.3,19.5,4.5,176.2,354.9,269.9,210.7,59.7,0.7,3.9 +CHHATTISGARH,1969,6,1.6,0.6,18.7,46.2,121.8,442.4,291.4,211.4,18.5,6,7.9 +CHHATTISGARH,1970,12.1,11.9,44.9,18.9,23.2,237.9,453.2,443.1,236.4,19.9,0,0 +CHHATTISGARH,1971,20.3,24.8,11.6,48.8,68.6,384.1,354.6,398.8,127.9,89.6,4.7,0 +CHHATTISGARH,1972,0.1,19.2,1.2,15.2,6.2,123.9,319.4,392,232.4,49.2,36.3,3.9 +CHHATTISGARH,1973,3.8,10,2.6,3.1,6.9,97.9,429.3,401.9,286.5,223.3,2,0 +CHHATTISGARH,1974,0,6.6,2.5,1.5,9.2,115.6,253.4,353.3,100.4,97.3,11.3,0 +CHHATTISGARH,1975,9.7,7.4,11.3,3.7,8.7,202.5,403.3,421.3,265.7,140.8,0.9,0 +CHHATTISGARH,1976,0.4,4.1,1.1,15.9,12.6,100,569,492.1,174.5,2.8,6.7,0.2 +CHHATTISGARH,1977,4.1,4.9,2.2,19,33.7,242.4,509.3,386.3,196.5,19.9,40.9,6.1 +CHHATTISGARH,1978,4.1,13.7,18.9,12.8,3.7,257,377.7,470.8,176,11.5,11.9,12.2 +CHHATTISGARH,1979,20.7,24.7,0.6,4.4,4.4,176.3,209.8,267.2,155.5,26.1,11.3,3.6 +CHHATTISGARH,1980,5.3,2.3,7.9,7.2,15.5,273,426.6,362.2,369.4,21.4,0,4.6 +CHHATTISGARH,1981,20.7,1.6,20.7,4,15.6,127.5,356.2,409.1,237.2,20.7,0.9,2.2 +CHHATTISGARH,1982,27.2,18.9,22.5,11.5,25,133.5,251.8,501.1,119.1,75.2,10.9,0.6 +CHHATTISGARH,1983,0.3,24.9,1.5,20.4,28.4,155.7,324.2,417.6,330.9,58.2,0.6,9.4 +CHHATTISGARH,1984,35.3,12.4,0.1,24.9,15.5,291.6,322,400.2,99.8,52.7,0.2,0 +CHHATTISGARH,1985,33.2,9.4,0.4,8.7,11.9,137.2,398.9,346,214.6,77.2,0,0 +CHHATTISGARH,1986,23.3,45.7,10,11.5,8.7,361.9,367.9,321,98.7,61.9,33.9,24.1 +CHHATTISGARH,1987,9.2,9.3,7.9,2.4,22.1,81,409.9,264.8,214,82.5,37.5,2.2 +CHHATTISGARH,1988,0.7,25.1,6.2,22.7,8.8,219.7,375,351.1,167.8,28.7,0.4,0.1 +CHHATTISGARH,1989,0.1,0,10.5,1,8.9,226.8,372.1,353.7,173.9,10.4,5.2,24.6 +CHHATTISGARH,1990,0.5,18.5,9.2,7.4,122.3,293.6,393.9,375.9,268.2,143.6,9.4,1.4 +CHHATTISGARH,1991,10.6,1.6,9.2,3.7,4.7,143.8,446.2,411.2,135.1,37.9,9.3,7.6 +CHHATTISGARH,1992,0.1,0.3,0.5,1.9,5.4,137.1,401.3,419.1,180,7.9,3,0 +CHHATTISGARH,1993,0,5.3,7.1,4.7,10,167.2,351,299.5,298.6,60.1,1.9,0 +CHHATTISGARH,1994,3.5,8.4,0,5.2,9.1,413.4,575.7,447.7,212,76.9,2.7,0 +CHHATTISGARH,1995,43.5,2.6,24,5.2,24.9,119.5,478.3,356,137.7,69.6,11.2,8.2 +CHHATTISGARH,1996,11.1,5.6,3.6,4.8,2.2,195.2,352.4,429.4,156.8,25,0.8,0.2 +CHHATTISGARH,1997,6.3,0.1,2.2,45.7,7.2,153.8,384.6,414.7,167.5,30.2,51.4,53.5 +CHHATTISGARH,1998,64.9,11.2,27.3,11.9,16.4,156.2,356,259.6,288.3,93.1,47.8,0 +CHHATTISGARH,1999,0,3.1,0.1,0,31.5,222.5,310,408.7,253.7,91.2,1.3,0.6 +CHHATTISGARH,2000,2.6,0,0.6,1.5,9.3,180.7,322.4,215.6,169.1,4.3,0.2,0.1 +CHHATTISGARH,2001,0.8,0.3,14.6,17.6,16.6,339.4,630.6,380.3,108.4,86.9,4.6,0 +CHHATTISGARH,2002,41.5,4.9,12.2,3.3,32.1,196.3,138.4,352.4,122.3,57.8,13.3,15.9 +CHHATTISGARH,2003,3.7,17.7,12.1,2.6,0.7,128.7,446.6,519.7,384.1,157.6,5.8,14.9 +CHHATTISGARH,2004,37.8,16.7,3.1,21.2,6.8,213.1,323.1,351.7,126.5,43.9,0.7,0.1 +CHHATTISGARH,2005,57.6,15.6,6.1,6.5,16.4,197,393.8,267.7,240.5,83.5,1.6,1 +CHHATTISGARH,2006,2.7,0,26.2,17.2,23.5,92.2,495.1,447.2,184.6,13.3,15.1,0.7 +CHHATTISGARH,2007,0,15.7,6.2,11.4,10.4,259.4,309.9,338.8,259.1,67.8,2,0.5 +CHHATTISGARH,2008,6.7,9.7,22.2,11.2,9.5,236.4,280.5,305.1,215.4,10.7,1.2,0 +CHHATTISGARH,2009,1.2,0,2.3,1.9,11.2,45.3,455,247.1,104.7,43.6,42.5,1.9 +CHHATTISGARH,2010,7.9,4.9,1,5.9,12.6,102.6,426.8,340.3,302.5,54.3,20.2,27.6 +CHHATTISGARH,2011,0.3,11.5,2.6,35,16.8,183.5,272.6,379.8,382.2,15.5,0,2.8 +CHHATTISGARH,2012,36.6,4.8,1.1,14.9,9.4,147.3,430.6,442.2,245.3,19.8,20.4,5 +CHHATTISGARH,2013,2.8,19.7,4.9,45.8,5.7,263.6,418.8,336.6,140.9,180.9,0.3,0 +CHHATTISGARH,2014,2.3,29,21.4,17.3,25,104.9,416.7,327.7,252.7,77.9,2.6,1.1 +CHHATTISGARH,2015,15.8,1.2,21.2,37,13,257.6,248.6,286.6,216.9,17.7,0.6,1.5 +COASTAL ANDHRA PRADESH,1915,21.1,17.9,53.3,44.8,63.5,177.3,134.8,226.5,170.5,228.8,208.8,0 +COASTAL ANDHRA PRADESH,1916,0.2,5.1,0.5,16.3,43.9,157.9,282.1,197.1,166.2,355.9,126,0.1 +COASTAL ANDHRA PRADESH,1917,1.1,25.1,14.9,16.4,105.5,201.4,142.4,215.8,219.6,216,126.5,5 +COASTAL ANDHRA PRADESH,1918,25.1,2.5,9.5,13,79.6,109.4,107.4,130.9,149.6,30.8,111.7,8.5 +COASTAL ANDHRA PRADESH,1919,41.3,22.9,10.4,23.6,70,111.2,194.8,118.6,161.8,194.5,183.6,8.7 +COASTAL ANDHRA PRADESH,1920,9.6,23.8,4.7,25.1,78.4,83,71.6,124.9,113.6,176.5,12.2,0 +COASTAL ANDHRA PRADESH,1921,52.3,0.1,0.1,35.3,11.2,97.6,204.6,168,228.7,192.6,24.7,0 +COASTAL ANDHRA PRADESH,1922,10.9,0,0,5.3,35.8,103.3,145.6,132.6,117.5,128,174,0.2 +COASTAL ANDHRA PRADESH,1923,0.2,58.3,13.5,14.9,39.1,44.3,128.8,53.4,260.6,267.5,245.6,0.1 +COASTAL ANDHRA PRADESH,1924,3.7,6.2,0.6,8.8,66.1,66.2,111.6,197.6,349.8,131,240.3,0 +COASTAL ANDHRA PRADESH,1925,2.9,0.1,5.6,40.2,196.4,151.4,197.8,223.9,103.4,262.6,46.1,8.1 +COASTAL ANDHRA PRADESH,1926,13.7,7.7,78.7,57.1,36.4,72.4,191.4,173.3,162.8,76.7,0.5,0 +COASTAL ANDHRA PRADESH,1927,14.1,8.4,18.5,6.3,40,196.4,172.4,197.2,157,66.1,176.5,0 +COASTAL ANDHRA PRADESH,1928,0,2.8,1.4,55.1,31,88.7,189,136.4,208.2,385.9,2.2,0.7 +COASTAL ANDHRA PRADESH,1929,2.7,37.4,1.5,19.7,41,190,78.3,138.4,146.3,173.1,5.3,25.4 +COASTAL ANDHRA PRADESH,1930,0.5,32.4,6.6,23.2,117.3,189.6,112.4,133,136.7,284.1,181.9,5.1 +COASTAL ANDHRA PRADESH,1931,0.5,0.4,5.2,8.8,46.9,142.2,177.7,120.5,231.7,388.8,164,0.3 +COASTAL ANDHRA PRADESH,1932,0,53.2,0.1,20.8,47.2,79.6,203.3,122.3,147.8,117.2,180,0.1 +COASTAL ANDHRA PRADESH,1933,4.1,0,6.8,23.3,88,106,187.1,135.6,193,251.3,67.3,24.8 +COASTAL ANDHRA PRADESH,1934,0,0.2,0.6,19.9,21.7,100.5,202.2,207.5,131.5,116.2,80.6,3.2 +COASTAL ANDHRA PRADESH,1935,1.2,0.1,4.2,24.7,10.5,94.6,158.9,122.6,191.8,141,1.6,0 +COASTAL ANDHRA PRADESH,1936,8.7,127.1,5.8,22.4,145.2,162.7,211.9,188.3,123.9,233.4,91.2,8.1 +COASTAL ANDHRA PRADESH,1937,0,71.8,15.2,86.3,30.3,59.3,172.5,153.7,108.7,185.2,8.9,0.2 +COASTAL ANDHRA PRADESH,1938,0.1,31.9,7.6,3.5,82.6,158.9,161.3,176.1,294.2,115.2,174.4,0.4 +COASTAL ANDHRA PRADESH,1939,3,0,29.7,19.7,11.3,80.2,138.7,121.9,150.1,416.7,95.8,3.2 +COASTAL ANDHRA PRADESH,1940,0.2,5.3,65.6,15,202.1,120.3,157.4,186.6,122.1,106.3,75.8,12.4 +COASTAL ANDHRA PRADESH,1941,2.6,13.8,4.1,8.2,58.5,192.7,83,97.4,184.1,266.4,107.8,7.8 +COASTAL ANDHRA PRADESH,1942,2.9,5.6,2.1,37.2,30.5,84.7,130.9,196.1,142.1,159.7,85.6,2.4 +COASTAL ANDHRA PRADESH,1943,20.2,5.3,1.6,72.5,46,142.1,129.5,116.6,195.4,208.2,40.2,0.2 +COASTAL ANDHRA PRADESH,1944,4.9,19.4,96.6,24.8,42.5,132.2,179.8,157.6,159.4,304.7,33.9,0 +COASTAL ANDHRA PRADESH,1945,1,0,0,48,39.9,46.6,193.3,185.8,201.2,242,19.1,14.7 +COASTAL ANDHRA PRADESH,1946,0,3.8,5.4,66,60.7,127.6,179.4,157.7,113.3,94.4,160,2 +COASTAL ANDHRA PRADESH,1947,10.3,3,0.8,15.4,18.3,86.5,217.4,216.1,209.8,154.7,58.3,135.5 +COASTAL ANDHRA PRADESH,1948,1.4,26.8,7.4,24.8,44.6,92.7,193.5,113.8,232.7,103.7,181.6,1.5 +COASTAL ANDHRA PRADESH,1949,7.7,0.6,2.5,32.2,71.2,97.3,231.2,179.2,254.8,319.4,21.3,0 +COASTAL ANDHRA PRADESH,1950,0,17.2,31,7,52.8,97.8,221.8,132.3,192.5,130.1,103.2,0.3 +COASTAL ANDHRA PRADESH,1951,1.2,0,27.9,46.1,75.4,133.7,285.2,186.5,174.1,89.7,74.2,2.2 +COASTAL ANDHRA PRADESH,1952,0,17.4,12.2,28.8,94.2,87.4,130.1,128.8,130.2,251.8,0,35.7 +COASTAL ANDHRA PRADESH,1953,13.2,0.6,0,21.5,43.4,136.7,149.6,190.6,183.7,234.8,15.6,0.3 +COASTAL ANDHRA PRADESH,1954,0.3,0,9,8,37.5,129.7,218.5,205.7,266.5,263,0,15.3 +COASTAL ANDHRA PRADESH,1955,5.1,0.3,18.6,14.2,250.1,118.8,128.9,263.6,177,325.9,76.2,0.3 +COASTAL ANDHRA PRADESH,1956,4.2,3.2,0.5,28.6,89.1,210.1,305.2,163.7,209.3,331.1,60.9,2.7 +COASTAL ANDHRA PRADESH,1957,0.7,1.8,21.2,14.3,28.3,152.6,149.5,298.1,198.8,125.5,26.9,0 +COASTAL ANDHRA PRADESH,1958,7.4,1.8,10.7,17.5,40.9,108.5,281.4,245.6,215.9,527.2,148.4,0.1 +COASTAL ANDHRA PRADESH,1959,5.8,10.7,0,14.7,11.5,178.8,272.3,230.9,161.1,227.3,2.6,5 +COASTAL ANDHRA PRADESH,1960,1.4,0.2,25.1,1.3,18.3,167.8,196.4,92.5,287.3,108.8,24.3,20.3 +COASTAL ANDHRA PRADESH,1961,9.6,28.4,2.3,9,44.4,138.6,199.8,172.9,181.2,282.3,48.7,2.1 +COASTAL ANDHRA PRADESH,1962,3.7,8.7,0.9,34.6,69.6,121.1,231.3,179.1,288.1,357.6,35.8,15 +COASTAL ANDHRA PRADESH,1963,0,0,7,50.2,23.5,126.6,137.4,176.1,131.3,371.7,0.1,0 +COASTAL ANDHRA PRADESH,1964,0.7,11.2,1.1,6,33.5,116.9,170.1,226.4,353.6,76.2,64.6,0.7 +COASTAL ANDHRA PRADESH,1965,1.4,1.2,7.1,35.4,36.7,52,166.3,157.5,208.1,61.3,25,2.3 +COASTAL ANDHRA PRADESH,1966,40.1,1.2,5,8.6,22.8,107.1,243.3,163.9,128.7,66.5,146.6,20.9 +COASTAL ANDHRA PRADESH,1967,13.1,0.1,71.8,18.6,19.7,124.3,245.6,124.6,141.5,27.9,4.6,51.4 +COASTAL ANDHRA PRADESH,1968,11.3,11.8,13.6,42.9,28,70.8,170.2,45.5,164.8,197.2,78.1,4.8 +COASTAL ANDHRA PRADESH,1969,0.2,0.4,2.7,5.6,262.6,125.1,192.4,99.8,122.7,208,201.7,58.5 +COASTAL ANDHRA PRADESH,1970,0.9,9.7,22.3,18.7,95,174,182.5,243.5,133.3,183.3,0.8,0 +COASTAL ANDHRA PRADESH,1971,1,26.4,12.7,104.1,88.3,86.4,99.8,205.3,222,186.2,1,0 +COASTAL ANDHRA PRADESH,1972,0,32.5,0,32.1,20.7,125.1,121.3,80.8,191.6,324.2,86.8,13.3 +COASTAL ANDHRA PRADESH,1973,0,0.4,12,1.1,45.2,73.3,158.6,178.4,132.5,233.7,23.5,0.3 +COASTAL ANDHRA PRADESH,1974,0.1,1.5,11.2,12.9,34.9,120.4,126.3,132.8,194.3,274.2,36.3,0 +COASTAL ANDHRA PRADESH,1975,0.2,10.5,0.3,2.6,33.5,200.7,154.2,210.9,230.8,300.8,47.6,0.3 +COASTAL ANDHRA PRADESH,1976,0,1.1,2.7,22.7,36.9,78.4,199,228.8,92.2,81.3,345.9,1.1 +COASTAL ANDHRA PRADESH,1977,1.5,0,1.2,62.5,102.4,112.5,149.7,176.8,112.3,121,289.9,3 +COASTAL ANDHRA PRADESH,1978,9.1,18,12.2,29.4,19,166.7,193.1,258.5,194.2,77.8,54.2,6 +COASTAL ANDHRA PRADESH,1979,0.6,30.2,0.1,15.2,125.1,108.7,97.3,95.5,233.2,52.2,160.6,15.5 +COASTAL ANDHRA PRADESH,1980,0.5,2.4,5.6,16.1,31.5,217.5,169.3,176.7,128,205,48.4,13.8 +COASTAL ANDHRA PRADESH,1981,16,0.1,31.4,15.2,62.3,99.7,181.3,149.5,264,89.7,18,2.1 +COASTAL ANDHRA PRADESH,1982,1.6,0.5,7.5,37.5,47.6,94.4,151.2,148.3,135.7,210.6,53.5,0.1 +COASTAL ANDHRA PRADESH,1983,0.1,17.3,4.6,8.8,56.2,147,188.1,264.1,259.2,232.7,7.6,10.2 +COASTAL ANDHRA PRADESH,1984,5.7,9.8,1.8,26.5,21.2,89.1,219,123.1,154.8,111.8,20.9,1.6 +COASTAL ANDHRA PRADESH,1985,42.7,0.4,1.7,7,17.9,105.1,198.6,179.3,88.6,248.2,32.6,45.5 +COASTAL ANDHRA PRADESH,1986,32.6,25.9,2.2,26.6,44.1,101,106,336.2,95.3,124.4,111.9,3.7 +COASTAL ANDHRA PRADESH,1987,20.9,0.2,24,16.9,52.9,75.6,99.7,163.4,103.4,265,243.6,14.2 +COASTAL ANDHRA PRADESH,1988,0,16.7,2.3,38.4,69.6,68.2,313.4,269.8,277.5,78.6,5.8,24.6 +COASTAL ANDHRA PRADESH,1989,0.1,0.1,37.4,7.3,31.9,128.3,329.6,235.5,189.6,55.5,13.2,1.6 +COASTAL ANDHRA PRADESH,1990,10.3,81.1,84.5,24.2,507.7,107.4,102.5,223.2,158.5,248.7,58.9,4.3 +COASTAL ANDHRA PRADESH,1991,19.6,3.3,6.6,17.9,24.5,215.5,145.3,134.4,265.7,148.7,132.4,8.3 +COASTAL ANDHRA PRADESH,1992,13.1,4.3,0,9.1,45.5,75.6,208.4,207.2,145.8,147.5,144.4,0 +COASTAL ANDHRA PRADESH,1993,2.2,9.8,16.6,26.6,71.7,73.2,166.2,99.3,172.9,196.2,17.5,17.5 +COASTAL ANDHRA PRADESH,1994,7.2,17.4,3.1,30.6,49.2,62.5,218.3,156.5,137,257.6,213.4,2.1 +COASTAL ANDHRA PRADESH,1995,27.5,2.5,12,19.8,257.8,80,225.3,212.7,128.6,329.6,50.1,6.1 +COASTAL ANDHRA PRADESH,1996,3.4,5.8,4.4,23.7,23.8,236.8,206.9,225.2,160.5,240,68.9,11.4 +COASTAL ANDHRA PRADESH,1997,15.1,5.6,19.7,62.6,25.2,63.1,156,128.1,315.5,83.6,51.7,45.7 +COASTAL ANDHRA PRADESH,1998,12.6,35.7,24.7,38.9,33.6,136.2,214.1,252.2,255.5,178.6,128.6,0 +COASTAL ANDHRA PRADESH,1999,0.1,2.7,0.2,11,74.3,126.4,154.2,136.6,137.5,153.9,28.3,0 +COASTAL ANDHRA PRADESH,2000,0.1,42.4,0.7,19.1,68.4,200.5,154.1,311.5,102.9,69.6,10.6,12.4 +COASTAL ANDHRA PRADESH,2001,4.6,3.8,20,54.1,50.8,117.2,123,170.7,187.2,196,78,4.1 +COASTAL ANDHRA PRADESH,2002,28,0,7.3,34.8,35,115.2,74.7,173.5,71.7,148.7,14.3,0 +COASTAL ANDHRA PRADESH,2003,6.2,19.4,40.7,19.4,12.2,104,241.7,158.3,130.2,252.3,11.5,101.1 +COASTAL ANDHRA PRADESH,2004,24,11.4,11.6,40.1,57.6,152.8,192.1,125,101.7,147.9,9.4,0.2 +COASTAL ANDHRA PRADESH,2005,13.6,8,17.4,32.2,48.4,88.1,151.5,105.9,398.1,298,56.2,4.2 +COASTAL ANDHRA PRADESH,2006,0,0,30.7,58,67.6,132,126.8,279.7,224.1,185.4,55.3,0 +COASTAL ANDHRA PRADESH,2007,0,5.1,0.1,8.5,13,300.1,141,164.4,287.1,167.7,11.9,0.5 +COASTAL ANDHRA PRADESH,2008,3.2,61.6,93.8,18.5,34.9,119.8,208.5,276.2,166.8,51.6,71.4,1.2 +COASTAL ANDHRA PRADESH,2009,0,0,5.7,6.4,53,72.6,140.9,163.5,151.9,92.6,102.6,1.3 +COASTAL ANDHRA PRADESH,2010,21.8,2.3,4.4,14.8,162,156.1,318.9,248.6,230.5,204,210.9,138.2 +COASTAL ANDHRA PRADESH,2011,0,17.9,0.9,62.3,67.9,86.8,196,215.8,129.7,74.6,4.9,5 +COASTAL ANDHRA PRADESH,2012,37.6,0,2.7,24,39.3,95.4,221.9,221.2,246.5,140,289.7,0 +COASTAL ANDHRA PRADESH,2013,2,29.6,0.2,48,28.2,127.5,162.4,123.1,132,411.5,53.1,2.8 +COASTAL ANDHRA PRADESH,2014,0.4,1.2,9.1,6,112.9,45.7,151.8,177.8,144.5,195.6,23.7,6.4 +COASTAL ANDHRA PRADESH,2015,2,0.6,5.5,32.3,34.1,283.8,116,192,201.8,59.7,81.2,2 +TELANGANA,1915,15.4,8.6,77.8,18.8,26.7,165.6,140.4,236.2,186.8,122,23.6,0.1 +TELANGANA,1916,0,4.1,0,15.9,16.1,233.2,216.4,137,291.8,153.1,95.1,0 +TELANGANA,1917,0,65.5,33,34.1,52.7,184.1,267.5,180.1,275.6,106.7,6.6,0 +TELANGANA,1918,20.2,0,32.6,8.3,55.5,97.8,106.1,89.6,96.9,6.4,7.5,33.9 +TELANGANA,1919,5.5,39.2,31.3,35,23.6,158.8,139.4,115.3,129.9,130.6,78.5,7.4 +TELANGANA,1920,7.4,0,1.7,24.4,31.4,62.8,138.8,66.5,78.9,24.9,0,0 +TELANGANA,1921,7.1,0,0.1,5.4,5.5,200.9,296.7,161.1,240.7,68,17.9,0 +TELANGANA,1922,55.3,0,0,6.6,50.1,69.2,184.3,158.3,170.2,23,50.7,0 +TELANGANA,1923,3,5.3,23.3,10.7,18,43.5,222.8,80.3,334.4,44,1,0 +TELANGANA,1924,37,0,0,9.2,34.6,62.8,124.7,220.2,288.2,51.6,116.1,0 +TELANGANA,1925,0,0,0,49.8,97.8,168.1,266.2,239.2,148.1,187.5,8.1,3.1 +TELANGANA,1926,46.1,2,24,48.8,24,74.7,227.3,205.1,70.5,41,0,0 +TELANGANA,1927,9.6,11,4.6,2,14.3,248.3,266,158.5,142.4,59.9,89,0 +TELANGANA,1928,0,15.8,47.3,4.5,27.9,143.9,248.6,191.6,215.2,104.1,0,7.4 +TELANGANA,1929,5.3,64.8,0,21.7,2.8,146,115,142.2,232.5,35.9,0,24.5 +TELANGANA,1930,0,14.7,5.4,13.5,1.7,184.9,131.1,144.7,215.6,60,64.3,0 +TELANGANA,1931,0.3,5.1,4,13.3,25.9,187.3,368.6,155.9,288.1,107.4,25.5,1.6 +TELANGANA,1932,0,40.3,1.3,17.6,25.8,119.7,300.4,179,172.9,32,60.9,0 +TELANGANA,1933,12.9,17.4,15.7,25,63.4,332,243.4,226.7,262.2,128.9,24,44.5 +TELANGANA,1934,0.1,0,0.1,18.3,1.2,111.7,296.9,280.2,162.3,15.2,42,0 +TELANGANA,1935,16.2,3.4,1.4,42.2,2.7,115.1,309.7,162.9,198.3,43.5,2.6,0.5 +TELANGANA,1936,2.5,79.1,15.3,8.4,73.7,200,268.9,220.9,128.4,96.4,48.2,15.1 +TELANGANA,1937,0,33.2,28.6,105.6,3,77.8,285.8,102.4,153.6,72.1,0.9,3 +TELANGANA,1938,0,41.3,14.2,16.6,27.8,226.3,331.6,256.5,201.9,59.2,0,0 +TELANGANA,1939,0,0,22,16.7,3,73.5,173.2,202.5,107.1,130.3,11.8,0 +TELANGANA,1940,0,0.5,11.4,33.6,91.4,128.5,345.8,281.5,94.7,64.9,22.2,8.1 +TELANGANA,1941,16.6,3.3,4.8,4.8,17.5,121.4,87.9,149.9,137.5,49.6,0.7,0.4 +TELANGANA,1942,0,23,0.2,31.7,30.9,160,250.1,277.3,107.4,20.9,3.9,1.6 +TELANGANA,1943,15.2,0.6,1.7,34.4,26.9,180.4,179.3,133.4,262.2,62.7,2.6,0 +TELANGANA,1944,0,13.7,82.3,5.4,15.7,114.5,224.1,142.4,207.7,131.9,22.7,0 +TELANGANA,1945,4.3,0,0,39,11.2,144.5,332.1,238.4,159.1,94.1,4.8,0 +TELANGANA,1946,0,15.9,5.2,21.7,14.5,152.1,287.2,149.5,85,30.7,57.5,3.6 +TELANGANA,1947,13.4,18,3.3,1.8,10.8,59.9,273.3,315.5,248.3,35.3,16.2,9.7 +TELANGANA,1948,3.7,4.6,5.1,20,15,71.4,239.3,165.4,242.5,25,123,0 +TELANGANA,1949,0.5,0,2.4,13.8,67.9,152,335.5,173.6,198.1,94.6,0.2,0 +TELANGANA,1950,0,34.7,14.2,0.2,11.6,78.4,222.7,118.5,254.1,21.8,4.7,0.5 +TELANGANA,1951,0,0,56.1,20.1,31.1,116.8,356,151.7,103.9,64.4,0.7,0 +TELANGANA,1952,0.5,16.4,0.8,12.4,32.5,80.1,205.1,148.9,137.7,88.3,0.2,6.9 +TELANGANA,1953,5.1,0,3,26.8,0.7,224,200.9,364.5,269.5,175.8,1.7,0 +TELANGANA,1954,0,0,13.2,4.3,14.4,105.3,300.4,192.5,252.9,44.2,0,1.2 +TELANGANA,1955,1,0,2.9,9.8,27.8,230.3,259.9,300.1,249.7,116.2,5.5,0 +TELANGANA,1956,0.7,1.5,1.9,5.9,52.9,220.1,393.8,133.3,156.9,94.5,59.1,0 +TELANGANA,1957,0,7.7,23.7,33.4,18.6,157.9,206.9,358.5,100.9,75.6,0,0 +TELANGANA,1958,2.1,4.9,10,24.7,14.1,72.9,407.5,351.7,135.2,69.8,20.9,0 +TELANGANA,1959,1,0.4,0,4,16.3,163.7,403.2,348.3,212.8,68.6,4.2,1.7 +TELANGANA,1960,0.7,0,32.9,4.1,21.9,223.9,203.6,82.1,197.5,59.4,12,1.4 +TELANGANA,1961,0.8,6.1,2.7,11.8,46.1,142.2,368.3,209.2,144.5,188.3,26.4,0.2 +TELANGANA,1962,0.2,25.1,2.1,47,20.3,84.5,270.5,264.1,289.6,62.5,38.6,34.2 +TELANGANA,1963,0,0.3,4,35.5,9,179.5,214.7,372.7,103.3,91.2,0,0 +TELANGANA,1964,0,0.2,5.5,2.1,0.7,109.1,186.3,232.3,302.4,41.7,7.2,0 +TELANGANA,1965,2.7,0.8,4.4,6.8,2.7,124.3,318.6,152.2,166.2,0.1,0,0 +TELANGANA,1966,19.8,0,2.6,7.9,2.7,67.2,294,216.3,254.4,39.5,34.9,31.7 +TELANGANA,1967,0.3,0,62.7,8.5,1.1,166.7,320.8,183.7,139.4,5.6,0.2,53.1 +TELANGANA,1968,16.5,15,35.1,16,7.4,87.6,188.6,52.3,231.4,82.7,15.8,0.1 +TELANGANA,1969,2.2,0,1.4,9.6,53.3,103.2,265.5,186.4,278.8,56.1,64.4,26.2 +TELANGANA,1970,6.9,0.7,4.5,22.5,45.8,205.5,135.6,345.8,176.1,26.8,0,0 +TELANGANA,1971,7.3,7.5,6.3,6.9,37.8,139.9,114.1,144.3,97.2,167.9,0,0 +TELANGANA,1972,0,14.6,0.1,12.7,12.2,162.8,183.9,93.9,71.3,64.8,49.7,4.8 +TELANGANA,1973,0,0,1.7,5.5,6.4,110.5,239.4,367,83.5,223,5.3,0.1 +TELANGANA,1974,0,0,1.8,7,32.9,111.1,113.1,171.9,124.8,261.6,6,0 +TELANGANA,1975,12.9,10.5,7.7,3,21.8,138.8,269.4,194,347,204.9,5.7,0 +TELANGANA,1976,0.2,0,1,25.6,10.7,85.7,471.7,277.3,123.4,5.6,34.5,0 +TELANGANA,1977,0,0,2.4,8,42.3,97.4,253.1,240,70.9,51,36.7,6.7 +TELANGANA,1978,30.7,19.1,5.9,20.6,23,261.6,376.5,376.7,116,50.1,31.6,0 +TELANGANA,1979,9.8,22.8,1.2,12.6,48.7,145.9,156.4,131.8,200,15.7,39.5,7.3 +TELANGANA,1980,0,0,5.3,15.5,8.3,219.6,210.1,294.5,145.6,5,2.4,16.2 +TELANGANA,1981,10.3,0,26.2,11.7,40.1,187.2,227.5,310.2,285.2,42.5,0.8,2.1 +TELANGANA,1982,5.7,0,4.2,22.2,37.1,123.8,265.6,184.1,174.4,100.8,15.3,0 +TELANGANA,1983,0,4.2,1.7,3.9,38.4,158.8,301.5,416.8,378.2,185.4,1,7.5 +TELANGANA,1984,7.3,8.1,4.7,11.4,3.5,104.9,277.8,119.8,111.8,91.1,2.2,0 +TELANGANA,1985,5.7,0,4.7,15.5,13.6,181.4,223.8,160.8,70,108,0,2.3 +TELANGANA,1986,29.4,60.3,1.9,21.5,9.1,115.5,234.9,406.8,65.6,24.6,20.4,17.3 +TELANGANA,1987,15.3,1,18.4,9.5,30.5,133.1,275,221.6,60.1,94.7,116,1.8 +TELANGANA,1988,0,6.5,1.1,26.6,3.4,135.8,656.2,341.7,313.4,50.5,2.4,7.2 +TELANGANA,1989,0,0,39.2,1.9,4.9,238.5,406,277.7,165.4,17.4,1.4,8.6 +TELANGANA,1990,4.2,4.1,35.2,1,159.8,245.1,180.2,471.1,132.1,180.2,12.4,0.1 +TELANGANA,1991,21.7,4.1,8.9,21.6,34.4,194.5,268.8,122,100.8,29.4,36.8,6 +TELANGANA,1992,4.8,0,2.5,10.7,20.6,180.5,180.5,271.8,99,47,46.1,0 +TELANGANA,1993,4.9,2,12.9,13.1,29.4,83.9,291.8,146.4,187,100.9,0.1,13.2 +TELANGANA,1994,8.6,12.5,0,21.5,20.4,115.3,308.2,256.3,53.9,143,36.2,0 +TELANGANA,1995,98.7,0.5,22,16,35.6,135.4,282.1,209.2,141.1,332.7,12.6,0 +TELANGANA,1996,0,7.9,4.7,31.1,13.6,115.9,264.1,295.9,160.2,72.4,13.2,7.8 +TELANGANA,1997,22.6,0.9,20.2,43.4,21.3,85.5,156.7,154.5,169.1,87.9,46.9,46.9 +TELANGANA,1998,5.2,22.2,15.2,15.5,27.9,149.4,264,290.5,209.3,79.4,14.5,0 +TELANGANA,1999,0,9.3,4.6,1.7,74.8,141.6,205.2,190.9,177.6,55.7,2.2,0 +TELANGANA,2000,0.6,16.8,1,16.3,48.8,253.2,220.9,420.5,70.7,20.2,6.4,2.5 +TELANGANA,2001,8.5,0,21.5,37.3,7.5,183.9,123.8,266.8,119.9,135.6,17.4,0 +TELANGANA,2002,18.8,10.1,7.6,7.7,32,143.2,91.7,321.7,52.4,76.2,3.9,0 +TELANGANA,2003,0,10.7,21.9,14,7.9,112.6,312.2,266.5,103.2,101.7,7.3,5.3 +TELANGANA,2004,34.4,17.9,9.3,25.9,34.6,64.6,216.7,117.7,110.1,30.6,5.3,0 +TELANGANA,2005,43.4,14.1,14.6,23.8,19.7,115.1,400.3,126.9,246.3,136.1,3.9,18.8 +TELANGANA,2006,0,0,42.7,38.6,46.1,104.8,169.5,308.2,280.2,28.1,34.7,0 +TELANGANA,2007,0,0,0.1,0.1,9.2,176.6,134.6,206.6,262.3,40.8,13,0 +TELANGANA,2008,0.2,18.6,108.6,15.7,4.9,132.9,183.4,391.8,146.7,24.2,7.5,0.8 +TELANGANA,2009,0,0,2.1,4.5,13.1,85.8,118.4,192.3,149.7,69.5,29.6,1.2 +TELANGANA,2010,10.3,5.3,1.5,5.6,24.9,127,395.5,308.1,249.8,98.7,40.5,9.3 +TELANGANA,2011,0,11.9,2.6,25.6,9.3,83.9,268.2,225.9,107.6,13.9,4.2,0 +TELANGANA,2012,6.7,0,0.2,14,8.4,124.4,300.3,229.9,202.4,83.6,38.7,0 +TELANGANA,2013,2.4,29,0.2,24.4,8.5,213.4,453.8,230.6,161.4,205.9,16.4,2.7 +TELANGANA,2014,0.2,2.9,58.3,10.3,73.3,62.3,146,205.2,146.8,29.6,10.8,0.7 +TELANGANA,2015,17.5,0,43,65.7,23.3,266.9,104.4,160.5,158.3,15.6,0.3,1.7 +RAYALSEEMA,1915,44.9,4.8,80.2,11.9,47.4,55.3,155.3,59.7,167.9,64.6,225.1,5.9 +RAYALSEEMA,1916,0,1.3,0,7.9,32.9,48.1,210.1,160.2,182.9,252.5,140.9,10.4 +RAYALSEEMA,1917,4.5,35.6,7.2,5.4,63,86.5,63,171.5,185.6,183.8,105.1,21.9 +RAYALSEEMA,1918,60.6,2.7,10.5,10.4,69.2,37.6,30.8,74.1,111.4,4.4,211.6,22.8 +RAYALSEEMA,1919,24.8,0,22.4,14.6,51.5,72.3,151.8,33,237.8,79,180.6,22.7 +RAYALSEEMA,1920,79.5,1.2,0.4,11.5,27.5,42,24.4,86.3,155.6,134.9,111.5,0 +RAYALSEEMA,1921,43.2,0,0,40.7,9.1,58.6,180.3,93.3,84.4,185.8,43,5.2 +RAYALSEEMA,1922,36.9,0,0,12,52,48.4,64.8,85,34.8,120,306.3,10 +RAYALSEEMA,1923,23,8.5,18,17.6,23.7,40.6,58.6,24.8,167.4,96.7,19.6,17.3 +RAYALSEEMA,1924,9.8,0,1.2,12.7,37,44.7,83.9,86.2,202.9,47.5,158.1,0.3 +RAYALSEEMA,1925,0,0,5.9,18.3,125.9,33.9,106.3,135.7,85.2,137.3,108,109 +RAYALSEEMA,1926,57.3,0,15,38.1,27.8,83,87.9,92.3,147.9,80.6,43.6,9 +RAYALSEEMA,1927,2.9,1.9,0,1.2,29.8,67.8,98.7,76.1,191.6,60.2,150.8,1 +RAYALSEEMA,1928,1.3,38.7,10.9,23.2,22.8,71.9,85,87.5,100.1,202.4,37,30.4 +RAYALSEEMA,1929,11,10.3,0.2,35.4,31.1,66.6,36.6,45.7,165.7,146.5,109.4,38.2 +RAYALSEEMA,1930,15.6,33.9,8.3,7.6,169.6,98.1,45.6,33.1,137.3,245.8,156.6,44 +RAYALSEEMA,1931,0.2,0,2.1,8.9,53.9,92,101.2,32.1,137,135.7,92.4,63.6 +RAYALSEEMA,1932,0,17.2,0,12.1,50.8,59.7,72.4,128.6,77.6,92.6,108.6,16.2 +RAYALSEEMA,1933,0,1.7,9.4,14.8,47.7,23.5,74.8,181.7,56.3,124.6,42,101.7 +RAYALSEEMA,1934,21.5,0,0,23.2,29.3,84.7,115,49.9,57.8,151.5,72.9,5.6 +RAYALSEEMA,1935,8.5,0.6,1.8,22.9,17.5,79.7,92.6,226.1,113.9,171.4,35.8,11.5 +RAYALSEEMA,1936,0.2,31.9,8.3,12.7,52.7,87.7,75.7,49.7,149.1,66.8,150.4,10.4 +RAYALSEEMA,1937,0.5,9,6.2,93.5,25.9,55.7,105,63.7,110.4,161.2,123,21.3 +RAYALSEEMA,1938,0,6.7,5.4,1.9,54.1,75.6,72.4,199.4,224.8,24.5,2.7,7 +RAYALSEEMA,1939,17.4,0,18.3,72.9,10.2,59.3,50,85.4,142.5,163,177,2.2 +RAYALSEEMA,1940,0.3,0.1,8.8,29.4,122.1,91,65.7,105.3,128.1,171.7,168.3,13.8 +RAYALSEEMA,1941,5.6,7.3,0,7.5,38.3,34.3,25.7,57.5,173.8,108.8,98.3,96.2 +RAYALSEEMA,1942,0.4,0.3,0,15.1,28.2,86.5,28.8,123.2,86.3,53.1,63.2,51.8 +RAYALSEEMA,1943,22,1.8,0.4,26.6,239.8,33.4,88.1,78.1,134.3,309.2,95.7,7.3 +RAYALSEEMA,1944,0.2,10.4,86.9,9.9,21.2,87.5,144.2,69,151.5,180,141.1,15.7 +RAYALSEEMA,1945,0,0,0,22.5,36.7,35.1,160.8,107.6,105.2,60,75.6,0.5 +RAYALSEEMA,1946,1.7,4.1,7.9,11.8,41.8,42.6,60,88.4,151.1,87.4,258.2,198.7 +RAYALSEEMA,1947,23.2,1.4,0.8,10.3,20.3,65.6,124,136.2,126.2,87.4,17.2,11.8 +RAYALSEEMA,1948,4.2,1.1,4.1,32.5,36.9,33.2,82.9,105.8,77.7,108.8,113.4,8.1 +RAYALSEEMA,1949,0,0,0.1,9.1,68.9,115.6,137.8,163.1,180.9,98,53.1,0 +RAYALSEEMA,1950,0.2,5.9,3.4,0.7,38.3,31.4,66.8,85.2,136.4,101.5,40.9,0.2 +RAYALSEEMA,1951,0,0.1,16.1,45.9,78.4,54.8,106.7,56.9,65.6,72.1,41.7,0.1 +RAYALSEEMA,1952,0,4.3,1.2,12.2,183.5,55.8,59.6,81.9,52.6,108.7,7.4,134.2 +RAYALSEEMA,1953,1.2,0.5,0,39.2,19.8,63.7,125.2,58.7,141.9,309.4,35.7,0.3 +RAYALSEEMA,1954,13.4,0,11.9,8.8,35.4,50.6,208.4,79.3,73,222.4,0,82 +RAYALSEEMA,1955,15.2,1,4.8,13.8,135.6,42.5,107.3,183.2,118.8,98.9,62.3,33 +RAYALSEEMA,1956,3.6,0.1,0,56.2,59.4,90.6,144,72.3,168.6,220.3,79.7,36 +RAYALSEEMA,1957,1,0.4,11,11.4,41.2,119.2,77,89.2,73.2,79.1,69.1,0 +RAYALSEEMA,1958,2.6,6.2,4.4,30.8,44.1,31.1,65.6,219.2,93.5,202.7,88.2,19.8 +RAYALSEEMA,1959,0.2,5.2,0,19,39.4,102.7,89.1,92.8,132.9,77.5,61.6,15.3 +RAYALSEEMA,1960,0.5,0,5,6.6,41.5,55.5,89.9,27.1,224,59.8,227.1,7.2 +RAYALSEEMA,1961,2.4,7.9,0.5,3,41.4,96.2,112.5,124.7,54.3,141.5,62.8,4.2 +RAYALSEEMA,1962,1.9,4,5.4,44.8,77.5,54.2,40.4,117.1,140.7,231.4,34.4,64.4 +RAYALSEEMA,1963,7.1,0.3,10.1,38.1,26.4,77.6,82.6,148.2,95.9,159.7,33,30 +RAYALSEEMA,1964,0,0,0,2,12,56.6,213.4,89.4,225.2,51,128.4,13.6 +RAYALSEEMA,1965,0.6,0.6,5.5,40.2,15.6,47.2,78.6,168.8,109.4,13.2,62.2,54.3 +RAYALSEEMA,1966,6.1,0.2,0,9.7,45.2,94.5,96.7,129.1,143.9,94.2,247.9,36.6 +RAYALSEEMA,1967,16.8,0,34.7,7.3,51.5,62.7,127.3,48.9,140.9,100.3,43.2,104.2 +RAYALSEEMA,1968,0.1,2.6,10.8,38.1,21.2,45.2,77.9,13.6,150.4,113.7,83.6,66.8 +RAYALSEEMA,1969,0,0,0.9,5,55.3,61.2,118.1,126.6,49.3,258.1,109,58.8 +RAYALSEEMA,1970,0.1,14.2,2.9,12.3,76.7,57.7,107.5,201.3,131.2,107.9,64.1,0.5 +RAYALSEEMA,1971,3.6,4.8,20,27.7,52.1,35.3,60.5,98.5,90.7,163.4,40.8,23.8 +RAYALSEEMA,1972,3.2,0.7,0,13.8,89.2,110.8,30.8,27.4,131.5,218.1,108.3,92.3 +RAYALSEEMA,1973,0,0,0.1,1.5,30.2,51.1,80.4,150.2,141.9,164.1,34.2,35.7 +RAYALSEEMA,1974,0,0,0,7.8,61.7,67.3,94.5,68.5,204.9,194.1,29.5,0 +RAYALSEEMA,1975,0.8,0.1,4.9,3.8,46.8,46,176.9,133.7,156.7,345.5,121,5.3 +RAYALSEEMA,1976,0.9,0,0,11.7,14.6,70.4,134.7,189.3,50.1,137.9,203.8,3.6 +RAYALSEEMA,1977,0.4,0.4,2.2,22.5,70.4,98.6,87.4,140.2,51.3,217,175.1,1 +RAYALSEEMA,1978,1.6,7.4,0.5,30.6,33,61.7,130,93.3,196.2,80,143.4,91.4 +RAYALSEEMA,1979,3.2,19.4,0,7,96.6,49.7,72.2,79.7,155.3,61.5,256.6,12.3 +RAYALSEEMA,1980,0,0,1.5,6.6,29.5,58.3,79.5,110.5,62.9,38.6,158.7,27.5 +RAYALSEEMA,1981,7.9,0,20.5,10.4,39.3,61.4,100.7,115.2,210,141.7,37.6,40.6 +RAYALSEEMA,1982,0.9,0,0.6,11.3,37.3,76.7,72.7,32.2,105.5,127.8,130.4,0 +RAYALSEEMA,1983,0,1,3.9,4.7,54.6,54.8,110,193,272.5,125.1,35.9,87.5 +RAYALSEEMA,1984,6.5,81,28.4,12.4,10.1,27.8,162.1,19.1,130.9,79.3,127.6,47.8 +RAYALSEEMA,1985,17.7,0,4.2,11.9,13.7,52.1,134.3,77.8,72.3,121.1,140.2,40.6 +RAYALSEEMA,1986,68.8,14.5,0,9.2,17,58.7,55.9,54.7,106.9,103.1,81.8,10.3 +RAYALSEEMA,1987,5.1,0,11.9,7.9,28.7,56.9,28.8,154.5,88,178.4,120.3,88.9 +RAYALSEEMA,1988,0.6,0.4,4,43,52.9,24.8,178,217.6,186.1,42.8,61.3,30.7 +RAYALSEEMA,1989,0,0,25.4,2.2,24,50.4,245.2,26.6,146.8,51.2,75.7,46.1 +RAYALSEEMA,1990,2.1,5.5,16.9,8.1,138.8,48.9,62.3,100.1,184.7,186,166.4,10.9 +RAYALSEEMA,1991,11.5,0,6.2,26.3,32.4,187.6,79.8,101.6,99.9,191,219.6,11.7 +RAYALSEEMA,1992,7.7,0,0,17.1,41.5,39.3,90.5,89.9,73.5,89.3,142.7,4.6 +RAYALSEEMA,1993,0,6.7,17,11.3,49.3,41.9,109.5,123.7,128,172.7,132.3,94.5 +RAYALSEEMA,1994,5.3,13.2,2.1,25.1,43.8,34.4,91.5,107.8,38,207.4,101.1,20.8 +RAYALSEEMA,1995,28.1,4.8,12.8,10.4,136.4,69.4,156.1,182.1,94,130.9,45,4.3 +RAYALSEEMA,1996,0,0.9,2.4,36.6,32.9,270.7,72.2,183.8,210.1,279.2,44.3,144.6 +RAYALSEEMA,1997,16.5,1.4,16.9,33.6,36.2,73.7,40.8,80.7,207.4,103.8,145.3,78.8 +RAYALSEEMA,1998,0.2,3.1,4.3,32.7,29,52.8,126.5,164.7,202,146.6,141.3,44.7 +RAYALSEEMA,1999,0.8,5.1,0.5,11.1,68.8,57.6,50.6,97.4,63.3,100.2,69.8,12 +RAYALSEEMA,2000,0,34.3,0.2,22.1,73.8,92.7,94.7,241.5,102.9,134.7,37.7,36.7 +RAYALSEEMA,2001,7.7,0,6.5,68.2,24.5,24,70.1,95.8,195.5,352.5,41.7,38.1 +RAYALSEEMA,2002,25.6,3.2,7.7,17.5,55,90.8,42.9,69.8,78.2,167.5,44.2,12.9 +RAYALSEEMA,2003,0,1.3,26.1,15,4.1,57.4,183.4,116.4,124.9,175.5,11.7,9.6 +RAYALSEEMA,2004,10.2,4.3,12.9,35.1,149.7,39.8,122.9,23.1,153.7,124.4,65.6,0 +RAYALSEEMA,2005,1.3,13.6,14.7,38.5,48.4,51.2,133.2,106.6,127.6,304.8,144.8,81.7 +RAYALSEEMA,2006,0.2,0,32.8,9.7,62.7,85.8,43.2,72,144.7,88.4,78.6,20 +RAYALSEEMA,2007,0,0.5,0.1,6,15.1,208.2,83.8,186.9,186,176.9,35.3,81.8 +RAYALSEEMA,2008,6.4,18.7,62.9,4.1,42.1,31.7,81.4,104.9,121.7,126,192.1,5.9 +RAYALSEEMA,2009,0.5,0,5.3,8.4,47.4,68.9,33.2,128.5,155.8,69.3,135.6,35.4 +RAYALSEEMA,2010,4.7,0.8,0.6,13,65.4,108.3,187.6,155,122.9,83.4,175.1,46.7 +RAYALSEEMA,2011,0.8,12.1,0,34.6,33,44.5,128.9,163.6,71.2,107.5,106.9,35.1 +RAYALSEEMA,2012,2.7,0,2.5,32.7,38.8,47,139.7,120,69.5,113.7,86.6,61.9 +RAYALSEEMA,2013,1.3,30.6,11.5,26.8,38.9,73.8,95.7,110.3,163.2,169.3,38.6,2.6 +RAYALSEEMA,2014,0.2,0.7,12.5,5.1,46.7,66.3,68.7,115.1,81.4,104.6,37.8,12.8 +RAYALSEEMA,2015,1.9,0,13.4,73.4,39.7,73,43.1,123.6,136.3,106.7,383.8,52.2 +TAMIL NADU,1915,35.1,18.1,43.6,37,52.4,66.4,117.7,82.9,133,99.9,241,61.5 +TAMIL NADU,1916,0.1,3.2,3.1,19.2,61.1,34.5,168.6,125.5,94.7,208.6,145.7,33.2 +TAMIL NADU,1917,14.3,39.1,32.3,11.9,77.5,72.4,45.1,155.7,163.5,123.1,167.5,45.9 +TAMIL NADU,1918,80.9,5.4,25.9,9.9,81.8,36.2,40.8,58.6,47,81.8,315.1,88.4 +TAMIL NADU,1919,22.9,0.8,16.2,25,88.5,49.9,87.8,51.6,162.7,152.4,264.4,106.4 +TAMIL NADU,1920,135.9,3.1,3.7,67.3,59.6,47.3,37.3,74.8,156.3,159.4,404.9,4.7 +TAMIL NADU,1921,141.2,0,1.7,72.3,39.5,55.7,92.5,129.6,78.3,236.4,76,56.1 +TAMIL NADU,1922,41.9,18.1,2.5,34.9,100.1,48.8,45.4,87.1,75.3,262.8,291.8,71.6 +TAMIL NADU,1923,136,2.5,50.1,26.6,30.8,33.7,40.5,39.8,99.8,220.3,44.3,109.7 +TAMIL NADU,1924,29.7,0.7,31.3,30.2,75.4,54.9,113.9,87.1,170.8,107.1,163.5,30.6 +TAMIL NADU,1925,17.6,4.6,57.2,30.1,85,50.6,38.7,91.7,77.3,148.9,229,182.8 +TAMIL NADU,1926,88,2.2,30.4,41.4,53.7,38.7,73.8,70.5,120.2,151.5,119.2,26.1 +TAMIL NADU,1927,18,21.6,17.2,50.7,73.7,83.1,65.9,77.8,131,87.2,171.3,32.5 +TAMIL NADU,1928,21,54.9,24,56.9,51,41.1,75.5,95.2,59.7,219,173.8,98.8 +TAMIL NADU,1929,20.4,29.2,9.4,107.3,50.7,63.2,48.9,70.7,135.1,161.2,192,89.6 +TAMIL NADU,1930,53.6,60.3,21.4,34.4,165.7,68.9,38.9,66.7,94.2,436.1,186.5,48.7 +TAMIL NADU,1931,22.7,0,3.3,55.6,54.2,40.8,77.3,81.7,104.7,120.3,183.4,295.8 +TAMIL NADU,1932,0.7,31.9,7.3,62.9,109.6,43,56.5,163.5,61.6,247.4,246.9,78.5 +TAMIL NADU,1933,2.7,5,41.2,52.5,105.3,36.9,60.7,169.9,104.5,201.8,124.5,105.9 +TAMIL NADU,1934,99.8,0.1,11.6,34.6,49.6,73.5,57.5,56.4,38.1,303.4,99.2,15.9 +TAMIL NADU,1935,37.5,2.5,9.3,63.9,23.7,60,38.6,153.4,78.6,192.4,147.6,86.3 +TAMIL NADU,1936,1.9,51.1,55.3,35.7,74.4,56.3,85.5,59.4,122,103.7,234.5,64.7 +TAMIL NADU,1937,10.7,16.7,26.7,96.1,59.9,42.3,51.1,118.1,105.7,189.8,280.1,22.8 +TAMIL NADU,1938,1.2,52.1,34.8,44.5,54.3,53,101.4,146.3,116.8,87.5,39.3,51.8 +TAMIL NADU,1939,31.1,5,26,132.1,60,60.4,35.1,91.3,96.2,243.8,266.2,8.6 +TAMIL NADU,1940,0.9,0.7,12.6,82.8,131.5,85.2,59,69.4,121.2,152,367.8,95.4 +TAMIL NADU,1941,31.7,4.4,1.4,58.6,70.9,47.1,69.6,84.7,166.4,148.1,216.4,107.5 +TAMIL NADU,1942,0.5,0.6,6,78.6,61.3,53.1,54.9,110.1,120.8,146.5,68,146.9 +TAMIL NADU,1943,112,18.5,10.8,72.1,204.4,43.2,75.3,78.8,101.1,310.6,117.4,43.2 +TAMIL NADU,1944,18.4,34.6,83.5,32.7,46.1,81.8,73.8,104.7,143.5,188.8,288.8,130.9 +TAMIL NADU,1945,4.6,5.5,5,74.7,38.2,22,75.1,110.1,58.6,168.4,206.8,15 +TAMIL NADU,1946,19.8,1,46.4,45.7,76.4,56.8,59.3,87.7,140.8,175.5,311.2,273.5 +TAMIL NADU,1947,59.5,14.8,54.4,92.8,40.9,54.1,125.5,113.4,127.6,205.9,30.5,20 +TAMIL NADU,1948,51.7,9.9,10.6,35.3,72.5,67.5,79.8,102.3,68.8,145.4,226.2,36.6 +TAMIL NADU,1949,8.6,3,0.6,62.3,98.2,75.6,113.6,148.2,82.3,159.4,86.4,2.3 +TAMIL NADU,1950,2.4,68,16.8,11.8,54.5,31.2,56.1,125.3,85.5,160.6,100.7,34.6 +TAMIL NADU,1951,11.7,0.8,26.7,115.2,83,30.8,83.6,94.7,113.4,98.3,187.2,9.6 +TAMIL NADU,1952,13.7,47.7,8.9,29.5,58.7,32.9,74.3,73.7,38.2,123.8,47.2,167.6 +TAMIL NADU,1953,13,15.8,4.8,97.8,45.8,67.6,111.7,86.2,131.1,278.2,97.1,18.9 +TAMIL NADU,1954,77.5,2.7,58.2,54.2,77.9,35.5,118.5,147.2,34,271,32.6,107 +TAMIL NADU,1955,35.7,1.3,10.3,85.3,149.4,47.8,73.4,88.1,128.2,165.2,130.6,145.3 +TAMIL NADU,1956,22.9,0.5,1,34.3,35.1,98,46,99.2,126.4,255.8,225.5,45.1 +TAMIL NADU,1957,1.2,10.3,15.1,14.8,81.1,65.4,64,60.8,73.5,203.3,200.4,77.1 +TAMIL NADU,1958,12.1,6,27.2,49.4,114.7,33,47.3,147.7,80,155.2,154.4,25.5 +TAMIL NADU,1959,3.7,34.8,0.1,51.4,68.2,83.5,60.6,62.1,99.1,187,190.4,53.4 +TAMIL NADU,1960,5.5,9.9,21,60,60.9,35.9,146.8,55.6,108.4,134.5,354.1,21.2 +TAMIL NADU,1961,76,12.7,2.2,23.9,71.9,73.8,99.4,110.4,122.2,154.7,107.5,56.1 +TAMIL NADU,1962,10,23.6,13.6,48.4,114.1,44,56.7,130.5,114.8,275.7,63.1,47.1 +TAMIL NADU,1963,76.2,4.8,39.1,56.5,45.1,49.9,93.1,88.7,115,173.4,195,135.9 +TAMIL NADU,1964,1.6,1.2,15.5,11.4,56.8,31.3,174.7,100.8,92.3,187.7,166.4,70.9 +TAMIL NADU,1965,1.8,7.2,10.1,63.8,40.9,33.5,55.4,169.8,92.7,123.9,120.3,202.3 +TAMIL NADU,1966,16,1.6,11.9,33.4,51.8,51.6,76.4,143.4,166.1,290.6,224.3,99.8 +TAMIL NADU,1967,28.9,1,40.4,19.3,47.6,69.1,69.4,81.2,76.2,182.3,127.1,156.7 +TAMIL NADU,1968,4.6,5.6,36.5,85.9,46.9,47.9,53.7,65,137.7,111.8,121.1,72.7 +TAMIL NADU,1969,1.5,7.2,3.5,32.1,57,30.4,60.9,139.7,36.8,275.1,190.5,127.1 +TAMIL NADU,1970,15.9,18,9.2,61.8,85.4,51.6,88.9,98.5,102.4,195.1,199.9,15.3 +TAMIL NADU,1971,19.3,11.1,37.8,40.6,75.7,46.9,87.2,127.8,109,221.3,71.3,199.6 +TAMIL NADU,1972,4,1.2,1,14,151.1,55.1,49.2,42.7,175.3,273.1,126,200.6 +TAMIL NADU,1973,0.3,0.2,5.3,20.7,57,63.5,92.3,87.6,130.4,195.2,79.1,127.1 +TAMIL NADU,1974,0.6,8.9,6.7,30.4,59.5,40.6,79.8,63.5,178,114.8,47.8,22.2 +TAMIL NADU,1975,6,4.3,34.8,20.8,80.8,46.8,129.1,121.3,147.8,165.3,130.3,36.4 +TAMIL NADU,1976,1.2,0.2,8.4,50.1,33.8,48.6,64,129.9,83.7,137.6,244.9,56.6 +TAMIL NADU,1977,1.4,24.8,10.4,45.5,104.1,50.6,55.4,128.3,118.6,347.5,346.8,12.6 +TAMIL NADU,1978,1.4,11.2,10.9,35.9,55.2,29.4,78.2,55.4,137.2,151.4,234.6,198.1 +TAMIL NADU,1979,0.7,43.5,12.5,15.3,35.1,60.2,75.2,80.2,183.1,132.6,416.7,48.2 +TAMIL NADU,1980,0.1,0,15.4,45.9,69.2,37.7,64.9,64.2,76.3,122.3,166.2,47 +TAMIL NADU,1981,8.9,1.3,21.7,23.7,87.2,57,117,91.8,200.5,258,106.4,72.5 +TAMIL NADU,1982,0.2,0.1,8.6,25.2,58.8,49.8,52.5,44.5,93.4,114,200.8,30.9 +TAMIL NADU,1983,0.2,0.2,1.9,5.5,86.9,72.9,77.9,132,154.6,138.7,94.5,242.6 +TAMIL NADU,1984,34.5,131.3,101.7,45.4,21.6,43.6,149.5,38,151.3,134.8,113.5,58.5 +TAMIL NADU,1985,89.7,5.2,11.9,43.9,33.4,108.8,81.2,129.7,161.6,107.3,233.3,57.4 +TAMIL NADU,1986,65.5,39,16.1,20.9,62.7,63.4,66.9,115.2,142.3,170.5,133.4,57.1 +TAMIL NADU,1987,8,1.2,28.7,20,50.5,70.5,26.1,82.8,127,236.7,136.9,175 +TAMIL NADU,1988,0.2,3.8,27.4,94.6,59.1,41.1,102.6,149.8,136.1,71.8,117.6,33.1 +TAMIL NADU,1989,2.7,0,27.9,40.8,53.6,57.4,154.9,39.7,137.3,148.6,154,39.8 +TAMIL NADU,1990,84.8,10.2,36.2,24.3,94.9,28.9,40,80.1,119.6,194.1,144,46.1 +TAMIL NADU,1991,24.2,4.6,9.7,37.4,29.5,128.1,54.7,71.7,114,225.1,234.4,21.4 +TAMIL NADU,1992,3.1,0.2,0,22.5,58.3,66.4,77.9,59.9,157.3,123.9,297.2,52.1 +TAMIL NADU,1993,0.1,7,9.9,11.2,46.6,68.2,60.3,88.8,96.7,214.5,315.9,163.1 +TAMIL NADU,1994,7,27.6,5.5,48.3,66.6,38.6,75.3,66.1,84.2,230.6,229.1,27 +TAMIL NADU,1995,23.8,3.3,16.7,39.5,139,64.6,86.7,121.1,94,143.1,107.9,3.7 +TAMIL NADU,1996,7.6,3.6,5,91.5,34,125.3,55.4,112.4,141.2,149.7,106,237.6 +TAMIL NADU,1997,7.7,0.2,2.3,42,49.2,50.4,63.5,56.4,116,169.5,258.1,135.2 +TAMIL NADU,1998,6.9,5.7,4.1,23.6,55.8,43,101.9,152.9,121.8,124.7,242,197.4 +TAMIL NADU,1999,8.3,24.1,3.9,56.9,74.5,46.4,55.3,74.8,73.1,268.9,182.8,53.6 +TAMIL NADU,2000,30.3,74.5,9.4,41.6,54.7,52.2,45.8,136.1,169.8,120.3,148.6,88.9 +TAMIL NADU,2001,21.8,10.9,13,93.8,45,39.9,37.2,18.7,53.8,69.5,52.3,27.6 +TAMIL NADU,2002,2.9,22.1,3.9,9.2,32.6,23.7,11.8,26.5,32.2,93.7,47.2,12.2 +TAMIL NADU,2003,0.3,4.1,18,17.1,19.8,22.5,38.7,49.3,26.1,86,59.5,7.1 +TAMIL NADU,2004,2.8,0.7,3,16.2,101.1,21.2,98.6,85.1,208.3,271.1,204.5,25 +TAMIL NADU,2005,4.1,11.1,24.4,128,80.6,35.7,87.9,93.3,117.9,280.5,353.4,148.5 +TAMIL NADU,2006,15.3,0.2,52.4,32.6,65.2,57.2,33.6,73.4,116.3,240.4,215.1,26.1 +TAMIL NADU,2007,7.2,7.5,1.8,58,44.9,73.1,101,136.5,89.1,248.9,79.2,219.9 +TAMIL NADU,2008,11.7,29.1,164.7,31.5,53.7,51.1,73.1,126.5,70.7,242.7,298.5,50.1 +TAMIL NADU,2009,7.9,0,41,41.4,74.8,27,42.1,96.9,114.4,62.1,314.7,106.2 +TAMIL NADU,2010,11.8,0.2,1.9,22.9,91.9,70,81.4,102.9,111.1,148.1,328.6,124.5 +TAMIL NADU,2011,4.3,11.2,8,91.5,33.4,56,45.5,128.9,76,200.4,230.5,41 +TAMIL NADU,2012,3,0.1,2.5,35.5,41.9,30.1,46.5,98,84.9,235.2,44.5,14 +TAMIL NADU,2013,3.9,30.9,30,20.3,42,54.6,42.7,110.7,113.5,127.9,112.3,53.2 +TAMIL NADU,2014,7.4,6.1,8.1,8.3,139.1,47.8,50.6,117.7,98.9,252.2,110.8,66 +TAMIL NADU,2015,8.3,2.3,21.7,108.8,112.4,62.4,43.5,81.6,98.4,132.6,379.8,152.8 +NORTH INTERIOR KARNATAKA,1915,26.5,2.4,25.6,32.4,40.3,107.2,150.1,57.8,173.6,89.3,42.6,5.5 +NORTH INTERIOR KARNATAKA,1916,0,1.2,0.2,22.7,60.1,97.4,234,82.4,190.8,197.3,201.8,0 +NORTH INTERIOR KARNATAKA,1917,0,21.1,22.7,11.7,20.2,117,77.8,164.2,192.6,137.2,59.4,0 +NORTH INTERIOR KARNATAKA,1918,5.9,0.2,2.3,22.5,117.3,43.3,37,61.2,150.8,19.6,62.5,5.5 +NORTH INTERIOR KARNATAKA,1919,10.6,0.3,0.1,13.2,64.7,124.2,72.7,41,228.5,84.3,85,2.5 +NORTH INTERIOR KARNATAKA,1920,2.6,0,0,25.1,32.3,75.3,82.6,56.5,139.5,54.3,2.2,0 +NORTH INTERIOR KARNATAKA,1921,0.2,0,1.2,33.6,5.4,63.5,158.2,41.7,49.4,125.3,104.5,0 +NORTH INTERIOR KARNATAKA,1922,24.5,1.5,0.2,30.2,40.4,70.7,108.1,40.4,35.9,64.9,92.1,0 +NORTH INTERIOR KARNATAKA,1923,0.2,13.2,32.9,21.4,28.2,38.2,229.4,64.4,163.1,9.4,0,2.3 +NORTH INTERIOR KARNATAKA,1924,5.1,0,6,42,22,68.3,120.4,117.9,155.1,37.9,13.4,3.1 +NORTH INTERIOR KARNATAKA,1925,0,0,7.3,34.3,79,74.1,113.7,77.5,108.7,118.7,16.6,12.9 +NORTH INTERIOR KARNATAKA,1926,24.8,1,2.1,4.5,37.1,65.5,123,138.4,161.7,22.1,0.8,0 +NORTH INTERIOR KARNATAKA,1927,0,1.4,4.4,9.3,34.4,123.9,161,54.3,184.7,24.7,82.7,0 +NORTH INTERIOR KARNATAKA,1928,0.5,28.4,13.2,18.2,20.5,153.6,130.2,73.4,210.7,102.6,0.3,17 +NORTH INTERIOR KARNATAKA,1929,2,24.9,2.7,49,37.8,105.6,67.4,33,167.2,91.3,16,1.2 +NORTH INTERIOR KARNATAKA,1930,0,0.3,3.1,9.5,56.2,94.1,61,61.1,189.4,130.8,22.8,4.3 +NORTH INTERIOR KARNATAKA,1931,0,0.1,4.5,30.6,33.1,114.1,134.9,70.1,195.1,51.7,65.6,19.4 +NORTH INTERIOR KARNATAKA,1932,0,1.9,0.6,24.8,46.5,49.9,165.3,160.4,113.9,146.8,98.5,0.1 +NORTH INTERIOR KARNATAKA,1933,0.1,2.8,13.6,50.1,84.1,113.2,131.6,158.9,149.4,160.7,52.3,30.4 +NORTH INTERIOR KARNATAKA,1934,1.2,0,0.3,29.5,9.9,70.8,212.3,98.9,67.5,58.9,41.8,0 +NORTH INTERIOR KARNATAKA,1935,13.9,0.4,0.1,30.1,13.1,120.8,106.8,204.3,80.5,131.7,11.5,1.7 +NORTH INTERIOR KARNATAKA,1936,0,18.4,5.9,13.3,50.4,101.5,62.7,59.5,136.4,50.8,62.7,3 +NORTH INTERIOR KARNATAKA,1937,0,14,12.8,63.4,16.4,54.4,124.8,36.6,109.6,113.5,0,6.9 +NORTH INTERIOR KARNATAKA,1938,0,4.9,43.4,15.6,45.6,119,142.1,190.4,200.9,44.2,8,1 +NORTH INTERIOR KARNATAKA,1939,0,0,5.5,11.1,12.9,87.9,113.2,157.8,115.8,122.1,27.6,0 +NORTH INTERIOR KARNATAKA,1940,2,0,0.1,31,64.5,122.7,118.3,138,111.9,115.2,18.6,14.4 +NORTH INTERIOR KARNATAKA,1941,10.7,3.9,7.2,11.2,24.9,64.7,106.3,80.3,164.6,52.5,0.3,9.1 +NORTH INTERIOR KARNATAKA,1942,0,3.2,0.4,30.2,35.7,138.5,111.7,143.7,57.4,33.8,4.2,26.7 +NORTH INTERIOR KARNATAKA,1943,6.7,0.8,3.1,31.6,117.8,115.6,128.8,71.8,200.9,174.1,28,0 +NORTH INTERIOR KARNATAKA,1944,0,3.2,30.3,12.3,44.8,92.6,174.6,28,140.5,158.8,37.1,0 +NORTH INTERIOR KARNATAKA,1945,0.3,0,0,11.2,21.3,69.7,191.9,95.7,92.8,57.6,3.5,0 +NORTH INTERIOR KARNATAKA,1946,0,7.6,3.8,44.2,56.8,106.7,135,127.9,146.2,75.5,102,3.3 +NORTH INTERIOR KARNATAKA,1947,8.6,6.7,11.1,13.9,29,102.9,175.5,217,161.3,38.4,13.4,8.6 +NORTH INTERIOR KARNATAKA,1948,0.9,0,7.9,40.1,38.2,72.6,110.3,147.3,155.9,79,126.3,0.1 +NORTH INTERIOR KARNATAKA,1949,0,1.5,6.4,15.2,72.9,82.5,114.1,100.5,265.4,94.1,10.7,0 +NORTH INTERIOR KARNATAKA,1950,0,6.8,4,8.2,51.9,94.9,122.6,120.8,180.4,109.8,7,0 +NORTH INTERIOR KARNATAKA,1951,0,0,4.5,17.3,63.8,117.6,179,64.8,149,101.2,10.4,0.8 +NORTH INTERIOR KARNATAKA,1952,0,8,0.1,32.1,98.3,52.9,132,64.7,85.2,141.6,0,13.7 +NORTH INTERIOR KARNATAKA,1953,0,0,0.1,38.9,5.8,127.8,192.4,91.6,186.2,248.3,0,0 +NORTH INTERIOR KARNATAKA,1954,0,0,16.9,19.7,44.9,80.1,216.4,152.7,78.2,62.8,0.2,11.4 +NORTH INTERIOR KARNATAKA,1955,0.1,0,10,30.7,92.4,128.7,140.7,223.3,197.2,132,12,0 +NORTH INTERIOR KARNATAKA,1956,0,2.8,1.1,30.2,64,96.8,314.1,117.9,144.9,164.6,100.1,2.4 +NORTH INTERIOR KARNATAKA,1957,0,0.9,5.5,25.5,70,115.4,146.6,188.8,87.8,174.3,23.1,0 +NORTH INTERIOR KARNATAKA,1958,2,0.2,7.3,46,100.3,55.2,174.8,179.7,71.2,83.7,31,0.5 +NORTH INTERIOR KARNATAKA,1959,0.1,0,0.6,26.2,43.8,163.2,155.1,90.6,148.8,52.3,17.2,0.6 +NORTH INTERIOR KARNATAKA,1960,0,0,14.9,17.2,79.6,86.8,96.4,29.4,313.9,32.9,20.4,0.1 +NORTH INTERIOR KARNATAKA,1961,0.1,0.6,6.4,32.1,102.1,99.9,245.4,78.4,33.1,144.9,5.6,0 +NORTH INTERIOR KARNATAKA,1962,0,5,2.9,58.8,52.5,82.1,140.1,144.7,165.7,99.3,25.4,62.4 +NORTH INTERIOR KARNATAKA,1963,0,10.9,33.9,34.4,78.9,113.1,73.9,195.5,63,178.6,1,0 +NORTH INTERIOR KARNATAKA,1964,0,0.8,4.3,16.9,14.6,97.6,211.7,129.2,289.1,110.8,22.4,2.4 +NORTH INTERIOR KARNATAKA,1965,1.3,0,0.5,14,17.2,110.4,185.9,120,150.1,3.8,2.8,26.8 +NORTH INTERIOR KARNATAKA,1966,13.4,0.3,5.5,10.6,82.9,68.9,145.5,80.7,160.6,54.8,92,8.4 +NORTH INTERIOR KARNATAKA,1967,1.2,0,11.8,34.6,32.5,74.1,187.1,72.5,141.9,80,1.7,8.4 +NORTH INTERIOR KARNATAKA,1968,1.9,15.8,2.7,41.2,32.2,92.4,162.3,47.6,202.5,98.5,29.9,0.3 +NORTH INTERIOR KARNATAKA,1969,0,0,4.1,14.9,40.6,89.4,151.1,159.2,121.5,113.7,33.5,1.3 +NORTH INTERIOR KARNATAKA,1970,0.4,0.2,1,31.5,76.5,80.7,131.5,199.9,173.2,95.7,0,0 +NORTH INTERIOR KARNATAKA,1971,0.9,0,0.3,23.9,69.3,102.2,53.7,121,109,131.2,0.6,0 +NORTH INTERIOR KARNATAKA,1972,0,2.4,1.3,19.5,45.9,79.4,100.8,40.7,126.3,47.2,34.4,1.4 +NORTH INTERIOR KARNATAKA,1973,0,0,0.2,10.1,29.7,136.2,101.3,154,100.6,212.5,5.6,0.5 +NORTH INTERIOR KARNATAKA,1974,0,0,5,23.9,83.9,93.3,98.9,92.2,242.5,176.9,0.5,0 +NORTH INTERIOR KARNATAKA,1975,8.2,1.1,5.6,7.2,59.6,104.2,238.6,109.6,214.8,323.1,21.6,0.1 +NORTH INTERIOR KARNATAKA,1976,0,0,5.5,35.1,11.1,82.5,131.6,147.9,74.1,15.6,57.9,0.1 +NORTH INTERIOR KARNATAKA,1977,0,1.2,10.7,34.8,75,170.3,144.4,135.9,70.5,134.2,72.3,0.6 +NORTH INTERIOR KARNATAKA,1978,0.5,13.2,0.8,35.1,76.9,102,165.9,160.3,204.8,85.9,55.1,4.3 +NORTH INTERIOR KARNATAKA,1979,2,13.1,2.4,7.3,60.7,141.7,125.4,168.8,291.4,54.5,95.8,0.1 +NORTH INTERIOR KARNATAKA,1980,0.1,0,1.6,51.5,20.1,149.1,126,171.6,125.9,19.8,22.6,3.4 +NORTH INTERIOR KARNATAKA,1981,6.2,0,10.3,12.1,39.6,160.8,127.5,151.9,284.3,68.3,16.1,0.1 +NORTH INTERIOR KARNATAKA,1982,0.1,0,0.8,13.8,59.8,87.2,163.4,83.2,145.5,83.8,43.8,0 +NORTH INTERIOR KARNATAKA,1983,0,0,0,0.2,24.5,167.4,135.1,169,198.1,66.5,8.3,8.7 +NORTH INTERIOR KARNATAKA,1984,0.4,3.9,6.2,14.3,8,64.1,217.4,62.1,127.1,113.5,1.1,0.1 +NORTH INTERIOR KARNATAKA,1985,2.9,0,6.8,20.8,34.1,86.6,109.7,67.7,75.8,94.7,1.4,0.6 +NORTH INTERIOR KARNATAKA,1986,11,7.4,1.4,23.2,38.1,124.9,76.1,129,114.1,29.5,60.4,5.3 +NORTH INTERIOR KARNATAKA,1987,0.4,0.9,0.5,2,44.9,124,83.1,166.6,109.3,119.7,68.9,26.8 +NORTH INTERIOR KARNATAKA,1988,1.3,1.6,1.5,38.3,34.5,77.2,170.6,219.5,214.2,16.1,2,18.8 +NORTH INTERIOR KARNATAKA,1989,0,0,21.6,10.7,28.5,102,199.6,64.1,203.3,23.3,8.9,14.1 +NORTH INTERIOR KARNATAKA,1990,4.8,0,0.1,7.8,127.3,129.7,96.2,170,64.2,95.6,23.3,0 +NORTH INTERIOR KARNATAKA,1991,0.2,0,1.3,47.3,59.8,235.7,155.6,94,67.6,49.6,8.9,0 +NORTH INTERIOR KARNATAKA,1992,0,0,0,12.7,48.1,108,100,121,85.1,68,125.4,0 +NORTH INTERIOR KARNATAKA,1993,0,0.1,6.5,11.4,37.6,69.3,134.9,128.1,94.8,201.9,10.8,36.4 +NORTH INTERIOR KARNATAKA,1994,4.2,0.3,0.2,35.3,16.8,101.8,146,95.9,38.1,200.3,4.2,0 +NORTH INTERIOR KARNATAKA,1995,28.3,0.1,5.4,11.8,33.1,75.5,140.9,95.9,104.3,148.9,18.2,0 +NORTH INTERIOR KARNATAKA,1996,0,0,0.5,20.5,25.1,138.5,98.2,165.2,199.5,154.2,7.5,2.6 +NORTH INTERIOR KARNATAKA,1997,4.3,0,14.8,22.6,17.5,213,272.8,290.1,76.9,85.3,64.6,33.8 +NORTH INTERIOR KARNATAKA,1998,0,0,0.4,6.1,32.7,107.8,140.4,155.4,223.1,172.7,13.9,0.1 +NORTH INTERIOR KARNATAKA,1999,0,3.4,0.6,3.9,89,93.2,130.5,89.5,97.5,152.9,0.3,0 +NORTH INTERIOR KARNATAKA,2000,0.4,2.6,0.1,8.4,49,107.5,127.1,164.6,134.4,115.1,2.8,0.5 +NORTH INTERIOR KARNATAKA,2001,2.1,0,0.1,22.1,13.3,60.9,62.1,108.8,187.1,137.5,2.5,1.4 +NORTH INTERIOR KARNATAKA,2002,3.8,7.9,0.3,14.7,40.6,108.2,54.7,118.2,52.2,126.4,3.4,0 +NORTH INTERIOR KARNATAKA,2003,0.3,1.5,15.2,24.9,3.5,66.9,94.4,104,64.3,92.1,4.2,2.2 +NORTH INTERIOR KARNATAKA,2004,2.6,2.7,1.6,29.9,93.8,106.1,111.7,92.8,134.6,61.6,4.3,0.2 +NORTH INTERIOR KARNATAKA,2005,5.8,0.8,5.5,52.5,34.5,98.7,219.4,123.3,159.7,102.3,5,0.1 +NORTH INTERIOR KARNATAKA,2006,0,0,16.8,12.1,79,130.2,113.9,89.1,136.8,43.6,29,0 +NORTH INTERIOR KARNATAKA,2007,11.7,6.8,7.7,27,38.9,215.5,117.2,143.4,205.4,40.5,13.5,9.2 +NORTH INTERIOR KARNATAKA,2008,0.4,9.2,109.2,22.8,29.2,71.6,80.6,147.7,152.5,54.1,29.8,5.3 +NORTH INTERIOR KARNATAKA,2009,0.3,0,9.9,17.4,63.1,112,134.9,135.4,215.6,168.6,42.3,13.9 +NORTH INTERIOR KARNATAKA,2010,9.6,2.5,0.5,15.5,39.5,110.1,193.5,207.5,119.2,82.1,71.9,1.2 +NORTH INTERIOR KARNATAKA,2011,0.5,7.2,7.2,41.2,46.8,101.3,150.8,152,69,73.4,5.7,0 +NORTH INTERIOR KARNATAKA,2012,28.5,6.2,0.4,35.4,19.5,60,114.5,105.5,79.2,85.2,46.5,2.9 +NORTH INTERIOR KARNATAKA,2013,1.2,6.1,3,25.4,47.4,99.4,160.7,73.9,201,101,4.2,0.1 +NORTH INTERIOR KARNATAKA,2014,0,6.1,29.2,26.4,93,50.4,136.8,205.2,90.2,80.3,25,14.1 +NORTH INTERIOR KARNATAKA,2015,2.4,0,27.5,50.8,45.3,89.6,38.5,78.4,150.8,61.2,5.7,1.7 +SOUTH INTERIOR KARNATAKA,1915,9.7,2.6,31.6,43.9,66.5,222.9,184.2,75.7,185,106.7,93.4,9.5 +SOUTH INTERIOR KARNATAKA,1916,0,0.1,0.2,23.9,146.3,184,188.5,204.7,145.5,178.4,151.6,7.4 +SOUTH INTERIOR KARNATAKA,1917,0.3,37.2,15.9,18.4,51.8,163.8,104.4,171.2,275.6,160,94.7,1 +SOUTH INTERIOR KARNATAKA,1918,11.1,0.7,13.9,41,110.1,69.2,47.5,102.7,98.7,47,182.6,8.9 +SOUTH INTERIOR KARNATAKA,1919,4.8,0,7.7,27.1,99.8,152.7,166.9,108.4,225,81.9,132.3,4.7 +SOUTH INTERIOR KARNATAKA,1920,8.4,0.4,1.7,42.8,58.6,125.1,241.2,92.1,128.1,101.9,28.4,0.1 +SOUTH INTERIOR KARNATAKA,1921,15.4,0,2.9,84.6,47.2,114.9,217.8,169.5,77.5,167.6,88.7,0 +SOUTH INTERIOR KARNATAKA,1922,16.1,1.2,0.3,33.1,109.9,99.5,186.3,114.3,53.4,151.8,129,2.2 +SOUTH INTERIOR KARNATAKA,1923,3.7,3.9,27.2,31.8,73.8,84.3,408.1,207.7,100.3,40,6.7,2.9 +SOUTH INTERIOR KARNATAKA,1924,0.9,0.1,5.8,38.7,96,125.7,460.9,146.7,135.1,58.4,47.1,11.7 +SOUTH INTERIOR KARNATAKA,1925,0,0.1,8.4,63,116.5,143.2,221.3,132.6,115.3,65.8,69.4,46.8 +SOUTH INTERIOR KARNATAKA,1926,23,0.4,7.1,37.5,64.1,89.6,234.3,174.2,168.3,89.7,7.6,1.2 +SOUTH INTERIOR KARNATAKA,1927,0.1,2.5,5.2,11.2,82.5,114.3,249.1,118.5,186.8,19.4,74.2,0 +SOUTH INTERIOR KARNATAKA,1928,0.6,44.3,24,43.4,66.1,112.1,189.1,161.7,37.8,229.7,28.9,12.7 +SOUTH INTERIOR KARNATAKA,1929,4.7,13.7,1.9,127.7,101.3,149.7,178.6,88.8,186,100.9,76.5,5.2 +SOUTH INTERIOR KARNATAKA,1930,5.2,6.6,10.8,27,156.8,126.9,117.2,85.5,150.5,253.9,40.9,12.1 +SOUTH INTERIOR KARNATAKA,1931,0,0,3,45.7,81.7,116.8,188.2,246,144.6,42.7,117.5,26.3 +SOUTH INTERIOR KARNATAKA,1932,0,10.4,0.5,35.8,155.8,72.4,262.9,264.3,117.1,227,122.4,1.6 +SOUTH INTERIOR KARNATAKA,1933,0,2.9,10.5,43.8,176,139.9,216.8,241.6,195.1,236.6,19.2,46.6 +SOUTH INTERIOR KARNATAKA,1934,5.9,0.4,1.1,40.9,52.6,149.4,158.7,137.5,27.7,173.5,38.3,0.3 +SOUTH INTERIOR KARNATAKA,1935,6.2,1.2,5.2,48.6,52.6,121.9,211,197.1,105.2,191.6,6.8,7.3 +SOUTH INTERIOR KARNATAKA,1936,0,6.2,34.7,15.7,102.1,185.2,156.2,111.6,176.1,89.5,76.5,4.5 +SOUTH INTERIOR KARNATAKA,1937,0.1,9.8,14.6,90.8,81.6,99.6,232.7,78,121.7,147,25.5,9.7 +SOUTH INTERIOR KARNATAKA,1938,0,3.9,17.4,40.7,45.8,144.4,153.8,237.6,178.7,30.6,15.9,2.6 +SOUTH INTERIOR KARNATAKA,1939,3.5,0,13.1,70.5,49.6,92.1,184.7,198.1,114.7,226.6,71.6,0 +SOUTH INTERIOR KARNATAKA,1940,0,0.1,0.7,60.1,138.3,177.6,203.4,188.7,80.7,174.9,139.7,15.8 +SOUTH INTERIOR KARNATAKA,1941,1.2,2.3,2.3,43.8,73.8,154.9,186.5,154.9,129.8,108.4,19.5,60.2 +SOUTH INTERIOR KARNATAKA,1942,0.1,2,0.5,45,91,164.1,247.5,145.9,77.3,109,26.7,23.7 +SOUTH INTERIOR KARNATAKA,1943,24.4,0.9,3.7,48.3,189.9,88.5,243.1,67.5,137,283,50.8,0 +SOUTH INTERIOR KARNATAKA,1944,0.2,24.3,37,21.7,98.5,100,275.1,82,127.2,178.5,74.4,6.7 +SOUTH INTERIOR KARNATAKA,1945,0.4,1.2,0.3,54.9,93.3,79.9,260.9,109.9,72.6,85.2,33.7,0.1 +SOUTH INTERIOR KARNATAKA,1946,0.1,2.4,14.8,62.5,86.9,146.8,201.5,255.9,168.1,112.9,150.3,42.9 +SOUTH INTERIOR KARNATAKA,1947,8.1,5.9,10,22.4,53.2,83.5,238.9,236.2,139.7,127.6,15.2,17.6 +SOUTH INTERIOR KARNATAKA,1948,4,0.1,3.2,70.7,153.9,135.6,188.6,255.6,61.1,117.7,81.5,2.1 +SOUTH INTERIOR KARNATAKA,1949,0.1,0.1,3.8,32.1,103.6,82.4,179.5,165.2,107.8,188.3,13.6,0 +SOUTH INTERIOR KARNATAKA,1950,0.1,13.3,0.8,6.5,61.3,91.2,268.8,148.7,154.5,133.7,77.1,0.4 +SOUTH INTERIOR KARNATAKA,1951,0.2,0,13,60.9,135.2,111.7,205.7,89.4,177.9,98,33.3,0 +SOUTH INTERIOR KARNATAKA,1952,0.3,10.7,0.6,40,76.8,106.8,176.2,156.2,66.7,188.6,0.7,48.2 +SOUTH INTERIOR KARNATAKA,1953,0.5,2.2,0.7,71,34.4,163.7,368.5,191.5,113,307.4,2.6,0.5 +SOUTH INTERIOR KARNATAKA,1954,1.8,0.5,8.9,38.5,127.2,139.3,298.5,175.6,56.9,164.8,0.5,18.6 +SOUTH INTERIOR KARNATAKA,1955,0.9,0.1,10.4,48.7,168.2,135.9,88.9,151.6,201.2,175.1,18.1,2.9 +SOUTH INTERIOR KARNATAKA,1956,0.4,1.4,2.5,68.5,62.5,209.6,251.3,137.1,120.1,265,124,1.2 +SOUTH INTERIOR KARNATAKA,1957,0,0.5,9.4,18.6,169,174.9,242.6,147.2,47,177.6,77.9,0.1 +SOUTH INTERIOR KARNATAKA,1958,3.3,1.3,13.1,60.6,134.5,163.2,340.2,201.7,123.1,108.7,59.6,0.6 +SOUTH INTERIOR KARNATAKA,1959,0.2,2.5,0.3,25.2,89.8,255.8,425.6,172.2,218.2,55.4,29.3,6.3 +SOUTH INTERIOR KARNATAKA,1960,0.3,0,15.3,42.4,92.6,119.8,254.3,124.4,162.7,112.8,65.3,0.2 +SOUTH INTERIOR KARNATAKA,1961,2.1,3.4,2.6,62.5,161.6,196.2,492.7,213.5,93.8,165.4,14.3,1.4 +SOUTH INTERIOR KARNATAKA,1962,1.4,6.9,5.5,81.3,118.5,66.1,310.4,268.5,149.1,203.7,29.6,65.9 +SOUTH INTERIOR KARNATAKA,1963,1.2,2.8,13,51.6,78.1,108.5,197.5,232.5,92.6,193.8,9,12.3 +SOUTH INTERIOR KARNATAKA,1964,0,0.1,0.7,23.6,51,122.2,280,305.4,182.7,121.5,78.4,3.8 +SOUTH INTERIOR KARNATAKA,1965,1,0.2,4.6,24.6,42,129.8,245.2,141.1,81.4,17.7,25.8,21.7 +SOUTH INTERIOR KARNATAKA,1966,4.2,0.9,2.5,24.7,90.9,82.3,256.1,91,188.5,132.8,123.2,13.8 +SOUTH INTERIOR KARNATAKA,1967,5.7,0,4.7,25.7,77.8,136.3,350.4,157.3,57.8,96.2,12.3,16 +SOUTH INTERIOR KARNATAKA,1968,0,8,8.5,47.5,71.8,120.6,284.1,124.7,209.7,99.3,23.4,3.4 +SOUTH INTERIOR KARNATAKA,1969,0,0,2.3,37.8,101.9,100.8,289.5,216.3,104,174.8,51.4,27.7 +SOUTH INTERIOR KARNATAKA,1970,1.4,5.4,4.3,49.5,129.6,99.5,210.1,206.4,129,217.6,20.9,0.2 +SOUTH INTERIOR KARNATAKA,1971,2,5.3,2.7,37.9,100.5,204.5,174.9,180.7,161.7,122.3,17.4,10.3 +SOUTH INTERIOR KARNATAKA,1972,0,1.1,0.1,26.9,190.5,153.6,214.6,97.6,176.2,135.7,26.3,41.5 +SOUTH INTERIOR KARNATAKA,1973,0,0,0.2,21.8,102.4,214.9,232.7,220.8,118,140.5,26.5,8.7 +SOUTH INTERIOR KARNATAKA,1974,0.1,0,4.3,34.5,113.2,71,281.8,166.7,235,138.2,6.6,0 +SOUTH INTERIOR KARNATAKA,1975,4.1,3.2,15.5,21,93,224.8,260.6,252.8,224,157.7,76.3,1.3 +SOUTH INTERIOR KARNATAKA,1976,0,0.1,2.6,66.9,25.9,64,203.7,148.3,87.2,54.4,106.5,1.7 +SOUTH INTERIOR KARNATAKA,1977,0,1.3,13.8,51.2,136.8,168.5,227.7,134.5,166.5,224.6,82.8,0.1 +SOUTH INTERIOR KARNATAKA,1978,0.5,7,2.6,40.1,104.5,188.1,281.8,231.2,156.8,107.1,81,30.8 +SOUTH INTERIOR KARNATAKA,1979,0.3,29.2,4.1,31.3,49,192.8,189.3,207.9,219.6,81.9,113.9,1.4 +SOUTH INTERIOR KARNATAKA,1980,0,0,7.2,79.1,99,228,287.7,179.6,161.8,99.6,81.1,1.9 +SOUTH INTERIOR KARNATAKA,1981,1.8,0.1,19.6,25.5,94.9,136.3,189.4,299.8,254.6,123.2,32.8,6.5 +SOUTH INTERIOR KARNATAKA,1982,0.1,0,2,18.3,99.2,151.1,217,240.8,126.9,97.1,50.8,0.2 +SOUTH INTERIOR KARNATAKA,1983,0,0,0.9,5.1,77,215.3,206.6,262.5,185.9,97.8,21.1,38.9 +SOUTH INTERIOR KARNATAKA,1984,2.1,7.9,75.4,39,44.7,196.2,256.8,122.3,167.1,142.3,5.7,4.4 +SOUTH INTERIOR KARNATAKA,1985,4.1,0.1,13.8,42.1,52.8,193.3,138.7,172.3,139.7,67.4,29.3,5.8 +SOUTH INTERIOR KARNATAKA,1986,13.9,9.2,3.9,26.2,51.7,210,149.9,208.2,175.3,79.4,94.1,8.4 +SOUTH INTERIOR KARNATAKA,1987,0.3,0,4.5,9.2,64.2,135.7,114.9,151.7,139.9,205.4,76.9,31.9 +SOUTH INTERIOR KARNATAKA,1988,0.2,2.9,11.9,71.4,84.9,68,276,251.3,199.2,30.6,5.9,19.9 +SOUTH INTERIOR KARNATAKA,1989,0,0.1,12.5,24,53.3,145,286.3,135,149.4,86.9,15.7,5.2 +SOUTH INTERIOR KARNATAKA,1990,4,0.1,5,15.2,115.1,130.1,148.5,193.8,59,128.5,47,2.2 +SOUTH INTERIOR KARNATAKA,1991,1,0.1,2.6,64.2,108.6,248.9,261.9,165.5,115.8,192.5,60,0.1 +SOUTH INTERIOR KARNATAKA,1992,0.2,0.3,0,28.6,78.9,269.4,202.1,215.9,145.5,113.5,146.5,0.2 +SOUTH INTERIOR KARNATAKA,1993,0,0.5,6.2,22.9,66.4,149,204.7,189.9,105.3,234.5,25,33.7 +SOUTH INTERIOR KARNATAKA,1994,11.7,2.4,3.9,54.6,70.9,184.9,336.4,132.6,96.4,238.6,24.8,0.5 +SOUTH INTERIOR KARNATAKA,1995,4.2,0.2,3.5,32.1,70.9,79.6,248.4,179.8,135.6,98.8,30.1,0 +SOUTH INTERIOR KARNATAKA,1996,1.1,0.2,1.5,49.8,52.8,204.4,187.3,187.4,188.3,132.9,10.9,27.5 +SOUTH INTERIOR KARNATAKA,1997,4.9,0.1,26.2,26,45.3,178.9,251.7,246.8,108.4,134.4,123.8,33.6 +SOUTH INTERIOR KARNATAKA,1998,0,0,3.5,31.6,47,155.6,278.4,205.5,175.8,148.9,55,11.7 +SOUTH INTERIOR KARNATAKA,1999,0.1,4.6,1.5,42.2,131.2,129.5,289.6,138.8,108,271.9,28.8,3.5 +SOUTH INTERIOR KARNATAKA,2000,1.4,15.5,0.3,46.3,59.3,167.5,200.5,300.6,183.5,206.2,14.1,12.1 +SOUTH INTERIOR KARNATAKA,2001,0.5,1.1,1.7,90.6,30.4,127.2,168.2,152,189.9,122.7,40,2.1 +SOUTH INTERIOR KARNATAKA,2002,2,11.4,2.3,20.6,77.2,131.9,92.6,155.1,74.9,168.4,18.8,0.6 +SOUTH INTERIOR KARNATAKA,2003,0.1,4.2,20.1,36.4,9.6,118.2,162.5,152.2,51.9,192.4,11.5,3.6 +SOUTH INTERIOR KARNATAKA,2004,9.1,12.8,16.4,62.2,180.2,196.6,191.7,211.1,117.5,101.5,24,10.4 +SOUTH INTERIOR KARNATAKA,2005,7.2,3.9,3.2,76,74.7,138.7,333.5,233.2,145.5,241.8,56.3,5.3 +SOUTH INTERIOR KARNATAKA,2006,0.2,0.1,35.4,24.7,127.1,183.7,226.7,172.9,112,61.7,84.9,1.1 +SOUTH INTERIOR KARNATAKA,2007,0.1,0.3,0.9,39.8,76.7,216.7,267.2,245.5,198.5,152.5,18.2,14.6 +SOUTH INTERIOR KARNATAKA,2008,0.8,20.7,108.9,24.9,66.3,149.8,203.4,269.8,141.4,117.1,32.3,5.2 +SOUTH INTERIOR KARNATAKA,2009,0.1,0.1,27.3,25.4,101.3,101.6,324.7,153.2,247.9,98.2,55.7,22.9 +SOUTH INTERIOR KARNATAKA,2010,7.9,1.7,5.6,71.1,94.9,129.1,235.1,228.1,150.7,129.6,183.5,2.5 +SOUTH INTERIOR KARNATAKA,2011,2.1,12.4,12.4,80.2,83.5,177.1,202.4,199.5,111.2,144.8,56.7,5 +SOUTH INTERIOR KARNATAKA,2012,4.6,5.5,8.1,99,45.6,81.8,144.7,236.5,100.6,62.8,82.6,6.2 +SOUTH INTERIOR KARNATAKA,2013,0.5,10.1,11.7,34.6,95.6,176.2,307.4,151.7,191.8,103.7,24.9,2.4 +SOUTH INTERIOR KARNATAKA,2014,0.4,2.4,17.7,46.7,130.5,106.8,271.6,254.6,161.6,152.9,20.2,18.7 +SOUTH INTERIOR KARNATAKA,2015,1.7,0.2,24.4,80.5,125.3,218.7,112,136.6,164.5,106.1,138.1,4.4 +KERALA,1915,16.9,23.5,42.7,106,154.5,696.1,775.6,298.8,396.6,196.6,302.5,14.9 +KERALA,1916,0,7.8,22,82.4,199,920.2,513.9,396.9,339.3,320.7,134.3,8.9 +KERALA,1917,2.9,47.6,79.4,38.1,122.9,703.7,342.7,335.1,470.3,264.1,256.4,41.6 +KERALA,1918,42.9,5,32.8,51.3,683,464.3,167.5,376,96.4,233.2,295.4,54.1 +KERALA,1919,43,6.1,33.9,65.9,247,636.8,648,484.2,255.9,249.2,280.1,53 +KERALA,1920,35.2,5.5,24.1,172,87.7,964.3,940.8,235,178,350.1,302.3,8.2 +KERALA,1921,43,4.7,15,171.3,104.1,489.1,639.8,641.9,156.7,302.4,136.2,15.8 +KERALA,1922,30.5,21.4,16.3,89.6,293.6,663.1,1025.1,320.6,222.4,266.3,293.7,25.1 +KERALA,1923,24.7,0.7,78.9,43.5,80,722.5,1008.7,943,254.3,203.1,83.9,41.6 +KERALA,1924,19.3,2.9,66.6,111,185.4,1011.7,1526.5,624,289.1,176.5,162.9,50.4 +KERALA,1925,4.1,16.5,76.9,93.4,258.2,688.8,593.5,554.1,158.8,295.4,223.7,98.8 +KERALA,1926,28.6,5.8,23.1,55.8,222.6,563.9,885.2,536,322.7,216.7,88.8,16.2 +KERALA,1927,18.8,35.3,49.6,86.5,265.4,720.2,888.2,315,335.6,135.8,137.6,6.8 +KERALA,1928,12.7,65.9,51.3,121.1,81.9,590.7,420.6,553.2,75.9,321.5,155.2,52.7 +KERALA,1929,12.8,29.8,58.9,210.7,148,946.6,844,293.9,268.9,350.4,158.2,39.4 +KERALA,1930,10.8,10.8,39,102.7,404.9,633.1,401.7,273.4,411.5,433.9,207,89.2 +KERALA,1931,3.3,0.3,19.2,126.9,131.7,541.7,653.9,1199.2,163.2,149.3,164.3,106.5 +KERALA,1932,0.1,19.3,28.6,113,646.5,341,716.4,423.2,317.3,543.2,223.2,31.3 +KERALA,1933,1,9.3,36.9,139.5,738.8,859.3,773.4,479.5,469.7,397,126.1,42.3 +KERALA,1934,74.5,1.7,47.7,92.4,106.7,852.9,415,337.2,48.4,335.9,93.4,4.9 +KERALA,1935,23.9,8.3,18.1,120.7,56.6,431.3,687.3,280.9,283.3,403.8,153,30.9 +KERALA,1936,1.2,16.5,116,34,466.5,620.8,672.1,367.9,286.7,231.7,211.1,18.6 +KERALA,1937,6.5,21.2,58.7,175.5,137.1,485.6,970.5,281.2,139.8,401.9,121,19.1 +KERALA,1938,0.3,79,53.3,164.5,179.6,681.6,648.6,287.9,223.2,223.7,69.5,22.9 +KERALA,1939,13.6,3.6,24.9,172.8,105.1,625.8,749.6,459.9,134.1,339.8,298.1,10.2 +KERALA,1940,0.6,1.5,3.8,126.5,217.4,606.4,877.3,610.8,68.2,257.7,287.5,60.1 +KERALA,1941,15.9,4.6,12.7,101.9,417.5,797.6,517.9,458.5,257.9,221.6,220.5,84.6 +KERALA,1942,2.4,4.7,23.2,180.3,191.9,813.6,828.8,329.3,99.8,374.4,84.7,117.9 +KERALA,1943,83.5,14.6,38.4,107.5,478.4,794.5,831.6,183.3,257.6,427.2,223.4,24.3 +KERALA,1944,6.4,26.6,61.6,61.6,212.7,498.9,614.1,230.7,155,289,244.1,89.2 +KERALA,1945,4.4,9.9,12.7,104.1,53.4,549.8,704,351.8,110.9,253.8,259.5,18 +KERALA,1946,1.8,5.4,108.4,139.8,83,919,671.7,695.6,199.4,266.1,273,202.3 +KERALA,1947,22.2,27.3,98,142.2,85.7,556.1,669.3,739.6,394.5,183.7,32.4,47 +KERALA,1948,43,8.3,48.2,125,212.3,910.2,619,487.9,166.6,183.9,215.6,19.2 +KERALA,1949,0.6,1.8,4.5,98.1,440,536.3,758.7,445.2,354.5,229.1,71.9,1.8 +KERALA,1950,0.1,53.7,31.1,68.5,242,638.3,905.7,387.3,411.6,250.4,149.2,8.8 +KERALA,1951,6.6,6.5,41.6,175.9,148.5,774.1,544.6,190.6,313.8,250.6,229.6,23.2 +KERALA,1952,5.2,48.2,20.8,112.2,214.6,576.7,430,413.6,57.4,339.6,49.6,66.9 +KERALA,1953,13.1,22.6,18.5,132.4,55.4,340.5,1027.6,356.4,100.5,410.5,62.2,5.1 +KERALA,1954,23.5,2.8,90.6,136.9,179.5,798.3,640.5,467,201.6,303.1,31.6,62.5 +KERALA,1955,4.2,6.3,28.2,125.9,544.2,782.4,392.8,236,438.5,378.2,178.1,19.8 +KERALA,1956,7.9,11.7,15.1,151.6,351.3,755.4,466.8,319.5,178.4,353.3,178.2,9.1 +KERALA,1957,1.2,16,25.7,70.2,381.2,872,835.3,358.8,41.3,280.1,192.5,28.9 +KERALA,1958,4.4,19.3,57.3,135.1,353.5,713.3,622.7,526.6,86.1,191,206.1,7.7 +KERALA,1959,3,21.4,6.3,150.7,347.2,872.8,1155.7,397.3,405.5,200.4,151.9,34 +KERALA,1960,9.4,8.4,44.4,206.6,540,480.3,750.9,336.8,371.2,255.9,358,23.7 +KERALA,1961,13.7,31.3,11.4,94.1,500.5,1005.2,1146.5,678.3,399.3,274.2,85.9,17.5 +KERALA,1962,28.4,54.7,39.6,95.1,472.4,244.9,951.1,510.7,394.9,475.6,31.5,76.9 +KERALA,1963,30.2,24.8,69.8,96.3,157.1,393.3,720.2,511,223.9,282.6,93.4,48.4 +KERALA,1964,1.1,7.8,67.2,83.3,94.8,379.4,754.2,548,398.2,325.7,191.7,17.8 +KERALA,1965,9.1,0.9,28.3,109.8,214.5,597.7,465.1,296.1,150.1,183.7,131.7,155.5 +KERALA,1966,3,6.9,67.7,167.4,95.2,496.2,601.9,202.1,293.2,392.3,245.4,50.5 +KERALA,1967,14.3,0.1,24.6,70.1,244.9,541.7,741.4,508.4,145.8,172.7,74,31.1 +KERALA,1968,7.3,30.5,89.2,133.3,90,696.4,1308.9,380.7,325.4,178.9,119.4,32.7 +KERALA,1969,2.7,6.4,19.4,117.2,227.4,550.5,818.8,284.8,216.4,235.6,119.4,66.3 +KERALA,1970,12.9,17.6,25.8,132.7,289.1,535.3,558.1,554.8,212.5,278.3,80.5,5.7 +KERALA,1971,31.6,18.5,20,113,317.5,889.6,648.6,385.2,331.2,220.9,38.3,62.3 +KERALA,1972,2.6,7.5,2.5,87.5,436,401.8,714.4,294.9,185.7,351.5,140.5,114.3 +KERALA,1973,0,0.3,12.3,131.5,119.9,617,583.5,487.5,61.3,260.8,84.5,53.8 +KERALA,1974,1.6,5.4,16,128,221.5,266.9,1004.2,533.6,383.6,142.1,61,3.6 +KERALA,1975,5.2,21.4,63.4,123.8,162.2,864.4,531.3,675.9,457.7,368.9,204.3,19.9 +KERALA,1976,0.1,1.5,21,134.5,75.8,196.8,641.5,342.6,116.2,221.3,286.7,30.8 +KERALA,1977,1.1,15.7,28.3,102.3,306.4,599.6,753.3,234.2,201.3,437,361.7,6.7 +KERALA,1978,3.3,14.7,31.4,73.9,396.8,758.1,686.7,516.8,119.4,171,365.6,39 +KERALA,1979,2.4,30,11.7,42,127.7,582.9,662.2,383.7,211.7,163.8,261.7,23.3 +KERALA,1980,0,0.9,20.8,114.8,105.3,745.9,754,438.1,139.5,282.3,162.3,39.5 +KERALA,1981,7,6.8,28.5,75.9,166.3,912.4,489.8,495.6,376.6,265,138.6,43.3 +KERALA,1982,0.7,0.1,21.9,60.4,148.2,612.2,511.5,495,70.6,164.4,127.5,10.8 +KERALA,1983,0.2,1.5,0.9,13.1,76,322.8,583.2,579.9,421.1,136.2,116.5,69.1 +KERALA,1984,36.8,60,95.3,162.1,84.6,842.6,653.6,284.4,171.1,286,67.7,18 +KERALA,1985,61.2,6.1,29.3,66.6,254.2,828.7,388.9,315.3,117.6,204,74.9,44 +KERALA,1986,5.6,18.7,11.2,63.1,126.7,597.9,324.8,340.3,235.4,165.5,194.7,9.5 +KERALA,1987,0.6,0.8,4.3,57.2,108.3,572.6,221,396.6,157,272.1,216,131.1 +KERALA,1988,0.8,17.5,38.1,177.6,157.2,511.3,502.8,379.8,451.7,68.5,67,31.1 +KERALA,1989,10.3,0,30.1,141.5,169.4,657.5,450.7,285.5,271.1,308,92.9,5.6 +KERALA,1990,14.9,4.8,18,41.8,488.5,528.6,635.4,370.8,103.3,323.2,158.8,5.2 +KERALA,1991,10.9,4.4,33.2,97,113.4,1096.1,905.5,465.5,48.5,307.8,99.9,2.3 +KERALA,1992,2.4,0.9,0.1,43,218.4,819.3,767.8,508,297.5,290.7,287.6,3.7 +KERALA,1993,0,17.8,20.1,66.5,159,657.1,776.1,301.9,88,431.2,153.8,46.2 +KERALA,1994,24.3,27.1,18.1,154.5,141.3,845,955.5,479.9,212.6,428.4,117.6,6.5 +KERALA,1995,10.3,6.5,37.3,134.9,355.6,493.4,702.5,457.3,280,198.3,182.6,0.1 +KERALA,1996,2.8,9.1,14.4,124.3,74.3,572.4,696,327.4,342.7,294.1,89.9,62.5 +KERALA,1997,2.1,1.5,36.1,60.6,133.6,544.2,970.5,536,292.2,288.9,298.4,88.4 +KERALA,1998,6,2.1,8.1,61.1,151.6,732.5,641.4,371.8,517.6,444.8,135,79.4 +KERALA,1999,1.8,23.8,21.4,111.6,453.2,607.3,700.4,266.3,88,567.9,68.1,4.9 +KERALA,2000,11.7,57.8,21.5,96.3,124.5,633.8,343.2,566.5,195.8,214.2,78.1,69.1 +KERALA,2001,16.5,28.3,7,238,238.6,715.3,598.5,361.3,216.8,319.6,181,10.1 +KERALA,2002,4.7,8.7,35.7,117.3,330.8,503.1,318.7,438.2,99,511.7,137.5,2.1 +KERALA,2003,0.7,50.9,82.1,134.4,91,566.7,532,350.3,93.6,407,76.4,9.7 +KERALA,2004,2.4,8.1,37.9,113.2,610.9,673.4,385.4,417.9,192.8,320.6,120.7,2.7 +KERALA,2005,19.8,7,25.3,205.9,134.8,619.2,832.7,291,414.7,240.1,184.3,56.4 +KERALA,2006,8.1,0.5,90.7,65.3,521.2,482.4,804,432.6,474.8,376.4,162.8,1.8 +KERALA,2007,0.5,5.6,7.3,138.5,192.7,705.9,966.3,489.6,526.7,357.2,87.4,11.9 +KERALA,2008,0.8,30.3,217.2,108.4,81.2,469.9,505.1,349,347,343.4,55.4,17 +KERALA,2009,3.3,1.5,62.6,69,191.6,438.2,924.9,269.3,326.5,205.2,274.4,44.2 +KERALA,2010,18.6,1,31.4,138.9,190.6,667.5,629,356,275.6,441.4,335.1,46.8 +KERALA,2011,20.5,45.7,24.1,165.2,124.2,788.5,536.8,492.7,391.2,227.2,169.7,49.5 +KERALA,2012,7.4,11,21,171.1,95.3,430.3,362.6,501.6,241.1,187.5,112.9,9.4 +KERALA,2013,3.9,40.1,49.9,49.3,119.3,1042.7,830.2,369.7,318.6,259.9,154.9,17 +KERALA,2014,4.6,10.3,17.9,95.7,251,454.4,677.8,733.9,298.8,355.5,99.5,47.2 +KERALA,2015,3.1,5.8,50.1,214.1,201.8,563.6,406,252.2,292.9,308.1,223.6,79.4 diff --git a/docs/assets/IndiaRainfallSource.csv b/docs/assets/IndiaRainfallSource.csv new file mode 100644 index 0000000..51328d6 --- /dev/null +++ b/docs/assets/IndiaRainfallSource.csv @@ -0,0 +1,4117 @@ +SUBDIVISION,YEAR,JAN,FEB,MAR,APR,MAY,JUN,JUL,AUG,SEP,OCT,NOV,DEC,ANNUAL,Jan-Feb,Mar-May,Jun-Sep,Oct-Dec +ANDAMAN & NICOBAR ISLANDS,1901,49.20,87.10,29.20,2.30,528.80,517.50,365.10,481.10,332.60,388.50,558.20,33.60,3373.20,136.30,560.30,1696.30,980.30 +ANDAMAN & NICOBAR ISLANDS,1902,0.00,159.80,12.20,0.00,446.10,537.10,228.90,753.70,666.20,197.20,359.00,160.50,3520.70,159.80,458.30,2185.90,716.70 +ANDAMAN & NICOBAR ISLANDS,1903,12.70,144.00,0.00,1.00,235.10,479.90,728.40,326.70,339.00,181.20,284.40,225.00,2957.40,156.70,236.10,1874.00,690.60 +ANDAMAN & NICOBAR ISLANDS,1904,9.40,14.70,0.00,202.40,304.50,495.10,502.00,160.10,820.40,222.20,308.70,40.10,3079.60,24.10,506.90,1977.60,571.00 +ANDAMAN & NICOBAR ISLANDS,1905,1.30,0.00,3.30,26.90,279.50,628.70,368.70,330.50,297.00,260.70,25.40,344.70,2566.70,1.30,309.70,1624.90,630.80 +ANDAMAN & NICOBAR ISLANDS,1906,36.60,0.00,0.00,0.00,556.10,733.30,247.70,320.50,164.30,267.80,128.90,79.20,2534.40,36.60,556.10,1465.80,475.90 +ANDAMAN & NICOBAR ISLANDS,1907,110.70,0.00,113.30,21.60,616.30,305.20,443.90,377.60,200.40,264.40,648.90,245.60,3347.90,110.70,751.20,1327.10,1158.90 +ANDAMAN & NICOBAR ISLANDS,1908,20.90,85.10,0.00,29.00,562.00,693.60,481.40,699.90,428.80,170.70,208.10,196.90,3576.40,106.00,591.00,2303.70,575.70 +ANDAMAN & NICOBAR ISLANDS,1910,26.60,22.70,206.30,89.30,224.50,472.70,264.30,337.40,626.60,208.20,267.30,153.50,2899.40,49.30,520.10,1701.00,629.00 +ANDAMAN & NICOBAR ISLANDS,1911,0.00,8.40,0.00,122.50,327.30,649.00,253.00,187.10,464.50,333.80,94.50,247.10,2687.20,8.40,449.80,1553.60,675.40 +ANDAMAN & NICOBAR ISLANDS,1912,583.70,0.80,0.00,21.90,140.70,549.80,468.90,370.30,386.20,318.70,117.20,2.30,2960.50,584.50,162.60,1775.20,438.20 +ANDAMAN & NICOBAR ISLANDS,1913,84.80,0.50,1.30,2.50,190.70,530.00,280.80,205.80,580.10,288.80,133.00,67.50,2365.80,85.30,194.50,1596.70,489.30 +ANDAMAN & NICOBAR ISLANDS,1914,0.00,0.00,0.00,37.70,298.80,383.30,792.80,520.50,310.80,139.80,184.40,289.70,2957.80,0.00,336.50,2007.40,613.90 +ANDAMAN & NICOBAR ISLANDS,1915,45.00,56.70,33.30,40.90,170.20,334.70,269.00,317.20,429.80,468.10,258.40,318.00,2741.30,101.70,244.40,1350.70,1044.50 +ANDAMAN & NICOBAR ISLANDS,1916,0.00,0.00,0.00,0.50,487.40,450.10,317.30,425.00,561.20,369.70,192.60,133.70,2937.50,0.00,487.90,1753.60,696.00 +ANDAMAN & NICOBAR ISLANDS,1917,8.00,3.60,112.00,4.50,295.90,301.10,394.80,437.40,471.80,238.10,108.30,236.90,2612.40,11.60,412.40,1605.10,583.30 +ANDAMAN & NICOBAR ISLANDS,1918,77.40,6.90,11.40,10.70,729.30,710.80,200.90,455.40,303.30,227.00,366.90,175.00,3275.00,84.30,751.40,1670.40,768.90 +ANDAMAN & NICOBAR ISLANDS,1919,10.20,18.00,0.00,35.50,283.90,542.50,246.50,259.80,170.70,186.20,340.40,258.40,2352.10,28.20,319.40,1219.50,785.00 +ANDAMAN & NICOBAR ISLANDS,1920,122.30,7.40,3.10,13.00,237.40,546.90,294.40,467.40,505.40,397.50,262.90,85.50,2943.20,129.70,253.50,1814.10,745.90 +ANDAMAN & NICOBAR ISLANDS,1921,13.20,3.10,0.00,37.50,351.20,282.70,487.10,330.00,581.20,360.70,118.20,41.50,2606.40,16.30,388.70,1681.00,520.40 +ANDAMAN & NICOBAR ISLANDS,1922,245.30,34.30,15.60,323.10,289.70,506.10,425.80,307.40,511.70,162.00,541.00,192.20,3554.20,279.60,628.40,1751.00,895.20 +ANDAMAN & NICOBAR ISLANDS,1923,79.50,0.00,NA,91.30,293.50,808.40,636.90,182.20,560.50,131.90,197.40,70.60,NA,79.50,NA,2188.00,399.90 +ANDAMAN & NICOBAR ISLANDS,1924,28.70,0.00,14.80,89.70,191.20,261.20,493.30,290.90,251.20,331.10,378.60,NA,NA,28.70,295.70,1296.60,NA +ANDAMAN & NICOBAR ISLANDS,1925,36.60,0.00,8.60,50.40,282.20,663.80,241.80,278.20,201.90,249.50,271.50,196.00,2480.50,36.60,341.20,1385.70,717.00 +ANDAMAN & NICOBAR ISLANDS,1926,122.10,0.00,0.00,0.50,198.40,370.00,195.30,523.70,719.30,443.80,148.40,560.70,3282.20,122.10,198.90,1808.30,1152.90 +ANDAMAN & NICOBAR ISLANDS,1927,3.00,17.50,17.80,108.60,504.10,433.30,195.20,370.10,126.20,327.50,274.10,65.50,2442.90,20.50,630.50,1124.80,667.10 +ANDAMAN & NICOBAR ISLANDS,1928,50.90,67.60,80.70,129.30,499.50,410.20,406.30,391.50,404.80,444.50,99.50,13.50,2998.30,118.50,709.50,1612.80,557.50 +ANDAMAN & NICOBAR ISLANDS,1929,74.20,118.40,129.20,69.80,316.60,588.80,134.00,644.70,172.90,413.00,251.50,13.50,2926.60,192.60,515.60,1540.40,678.00 +ANDAMAN & NICOBAR ISLANDS,1930,87.40,105.40,131.20,10.90,231.50,533.60,317.90,446.70,677.20,82.30,249.40,201.60,3075.10,192.80,373.60,1975.40,533.30 +ANDAMAN & NICOBAR ISLANDS,1931,25.30,0.00,2.50,2.50,205.40,393.50,289.30,571.00,294.40,368.30,22.80,182.70,2357.70,25.30,210.40,1548.20,573.80 +ANDAMAN & NICOBAR ISLANDS,1932,2.80,2.50,10.10,58.20,479.70,NA,NA,NA,NA,NA,NA,NA,NA,5.30,548.00,NA,NA +ANDAMAN & NICOBAR ISLANDS,1933,4.50,11.70,8.10,58.40,365.40,544.20,376.60,294.10,759.00,239.80,268.80,56.90,2987.50,16.20,431.90,1973.90,565.50 +ANDAMAN & NICOBAR ISLANDS,1934,7.30,172.90,6.90,131.40,62.00,708.40,323.50,924.90,761.10,338.10,240.20,46.10,3722.80,180.20,200.30,2717.90,624.40 +ANDAMAN & NICOBAR ISLANDS,1935,6.60,0.00,0.50,133.60,726.80,374.10,368.70,411.60,578.90,182.40,275.40,95.40,3154.00,6.60,860.90,1733.30,553.20 +ANDAMAN & NICOBAR ISLANDS,1936,16.50,15.30,116.50,NA,194.30,498.30,664.80,562.90,383.80,174.90,199.20,212.20,NA,31.80,NA,2109.80,586.30 +ANDAMAN & NICOBAR ISLANDS,1937,21.60,10.70,0.00,112.00,330.50,732.80,449.50,332.00,349.50,383.30,251.70,617.50,3591.10,32.30,442.50,1863.80,1252.50 +ANDAMAN & NICOBAR ISLANDS,1938,13.40,57.20,50.50,101.60,368.90,668.60,318.20,397.10,546.70,318.40,316.30,107.50,3264.40,70.60,521.00,1930.60,742.20 +ANDAMAN & NICOBAR ISLANDS,1939,54.10,1.50,16.10,77.30,480.50,541.00,335.60,202.80,512.50,263.90,165.90,131.30,2782.50,55.60,573.90,1591.90,561.10 +ANDAMAN & NICOBAR ISLANDS,1940,0.50,2.80,59.40,0.00,320.70,335.40,268.10,889.20,477.50,114.10,221.00,318.80,3007.50,3.30,380.10,1970.20,653.90 +ANDAMAN & NICOBAR ISLANDS,1941,0.00,12.80,0.00,77.80,251.90,497.00,302.50,311.90,516.00,382.80,266.00,279.50,2898.20,12.80,329.70,1627.40,928.30 +ANDAMAN & NICOBAR ISLANDS,1942,39.20,7.40,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,46.60,NA,NA,NA +ANDAMAN & NICOBAR ISLANDS,1946,84.40,3.60,21.10,135.20,309.10,535.90,189.00,367.40,478.30,276.90,146.90,243.80,2791.60,88.00,465.40,1570.60,667.60 +ANDAMAN & NICOBAR ISLANDS,1947,25.10,111.10,63.20,127.70,206.30,965.60,490.00,293.70,NA,376.00,67.50,168.60,NA,136.20,397.20,NA,612.10 +ANDAMAN & NICOBAR ISLANDS,1949,0.00,56.40,0.00,166.50,405.80,658.40,743.30,404.00,627.50,339.60,81.10,7.00,3489.60,56.40,572.30,2433.20,427.70 +ANDAMAN & NICOBAR ISLANDS,1950,0.80,0.00,0.00,95.50,264.20,369.90,366.70,347.30,494.50,224.60,89.30,169.40,2422.20,0.80,359.70,1578.40,483.30 +ANDAMAN & NICOBAR ISLANDS,1951,82.70,7.20,0.00,45.40,259.00,619.90,665.30,101.30,360.90,489.00,209.60,434.80,3275.10,89.90,304.40,1747.40,1133.40 +ANDAMAN & NICOBAR ISLANDS,1952,0.00,0.80,69.70,39.40,452.90,657.70,385.50,541.30,240.30,315.60,287.50,89.20,3079.90,0.80,562.00,1824.80,692.30 +ANDAMAN & NICOBAR ISLANDS,1953,56.00,65.30,20.10,159.40,241.10,549.90,444.40,262.80,370.10,243.60,246.00,63.30,2721.90,121.30,420.50,1627.10,552.90 +ANDAMAN & NICOBAR ISLANDS,1954,83.80,2.10,34.30,58.00,394.70,539.40,510.80,605.40,763.80,247.20,84.80,124.70,3449.00,85.90,487.00,2419.40,456.70 +ANDAMAN & NICOBAR ISLANDS,1955,57.30,28.20,9.90,68.80,663.60,651.10,298.40,356.90,341.80,466.50,362.90,44.20,3349.60,85.50,742.20,1648.30,873.60 +ANDAMAN & NICOBAR ISLANDS,1956,49.20,77.20,33.80,130.30,491.80,343.10,468.40,467.70,325.10,458.70,164.10,70.50,3080.00,126.40,656.00,1604.40,693.30 +ANDAMAN & NICOBAR ISLANDS,1957,28.00,19.30,4.60,19.00,142.40,741.90,316.20,421.30,354.30,299.70,88.60,71.90,2507.20,47.30,166.00,1833.60,460.30 +ANDAMAN & NICOBAR ISLANDS,1958,22.90,14.30,30.40,24.60,355.10,530.70,440.70,388.40,350.60,265.20,313.80,70.70,2807.40,37.20,410.20,1710.40,649.60 +ANDAMAN & NICOBAR ISLANDS,1959,10.10,1.80,31.30,86.70,238.10,455.70,817.10,409.30,589.60,332.70,242.50,128.50,3343.30,11.90,356.10,2271.70,703.60 +ANDAMAN & NICOBAR ISLANDS,1960,104.20,72.40,12.10,53.50,535.40,541.50,308.40,270.70,442.40,400.00,191.70,92.80,3025.00,176.60,601.00,1563.00,684.50 +ANDAMAN & NICOBAR ISLANDS,1961,82.10,99.40,33.20,88.10,973.10,383.30,304.90,557.10,612.00,379.90,280.60,144.50,3938.20,181.50,1094.50,1857.30,805.00 +ANDAMAN & NICOBAR ISLANDS,1962,152.40,14.90,17.30,46.40,310.40,367.70,409.10,420.60,474.50,259.80,101.70,384.90,2959.70,167.30,374.10,1671.90,746.40 +ANDAMAN & NICOBAR ISLANDS,1963,79.90,26.80,7.40,69.50,259.90,434.70,303.30,601.20,614.30,295.50,109.30,179.90,2981.70,106.70,336.80,1953.50,584.70 +ANDAMAN & NICOBAR ISLANDS,1964,65.50,21.90,3.10,18.10,530.60,465.30,287.30,472.10,521.20,218.90,349.20,101.60,3054.80,87.40,551.80,1745.90,669.80 +ANDAMAN & NICOBAR ISLANDS,1965,11.80,30.40,25.30,51.00,292.30,408.80,392.10,396.60,576.80,290.50,187.90,500.40,3163.80,42.20,368.50,1774.30,978.80 +ANDAMAN & NICOBAR ISLANDS,1966,79.80,4.20,12.00,38.70,376.90,148.80,433.50,335.60,454.10,171.90,333.80,311.90,2701.20,83.90,427.60,1372.10,817.60 +ANDAMAN & NICOBAR ISLANDS,1967,164.60,21.60,30.00,63.40,516.40,340.80,537.80,614.30,303.50,427.50,99.70,97.00,3216.40,186.20,609.70,1796.40,624.10 +ANDAMAN & NICOBAR ISLANDS,1968,22.10,1.30,4.20,81.50,297.60,545.20,519.30,242.00,496.80,281.60,152.00,119.20,2762.80,23.40,383.30,1803.30,552.80 +ANDAMAN & NICOBAR ISLANDS,1969,106.30,64.70,14.60,20.80,317.30,422.80,345.20,281.40,489.80,146.80,343.70,65.80,2619.00,171.00,352.70,1539.10,556.30 +ANDAMAN & NICOBAR ISLANDS,1970,72.20,34.00,7.80,58.20,422.70,407.30,564.60,342.90,423.50,386.60,418.40,232.70,3370.80,106.20,488.70,1738.20,1037.70 +ANDAMAN & NICOBAR ISLANDS,1971,41.50,32.80,37.70,35.30,398.00,394.60,421.10,327.90,470.20,505.30,178.40,155.90,2998.60,74.30,471.00,1613.70,839.60 +ANDAMAN & NICOBAR ISLANDS,1972,13.70,1.70,7.50,178.30,420.20,470.00,544.60,384.90,444.50,263.80,413.90,180.00,3323.00,15.30,605.90,1844.00,857.70 +ANDAMAN & NICOBAR ISLANDS,1973,18.10,20.30,30.50,29.60,418.60,488.60,371.40,370.30,357.50,247.20,349.80,289.10,2991.10,38.50,478.70,1587.80,886.10 +ANDAMAN & NICOBAR ISLANDS,1974,22.20,43.90,17.20,301.40,353.30,343.80,257.10,456.20,321.60,398.40,372.20,74.80,2962.00,66.00,672.00,1378.70,845.30 +ANDAMAN & NICOBAR ISLANDS,1975,276.90,27.50,8.00,24.20,362.90,706.30,173.60,357.40,351.80,373.60,323.70,99.70,3085.70,304.40,395.20,1589.10,797.00 +ANDAMAN & NICOBAR ISLANDS,1976,20.90,9.70,0.60,161.60,551.40,441.40,382.10,487.70,387.00,166.80,307.20,359.60,3276.00,30.60,713.50,1698.20,833.70 +ANDAMAN & NICOBAR ISLANDS,1977,79.70,43.20,6.10,6.90,275.30,339.30,341.10,345.50,467.10,263.60,153.30,67.10,2388.20,122.90,288.30,1492.90,484.10 +ANDAMAN & NICOBAR ISLANDS,1978,109.60,29.30,18.90,63.40,343.60,462.20,656.60,346.30,310.80,243.70,83.40,44.60,2712.40,138.90,425.90,1775.90,371.60 +ANDAMAN & NICOBAR ISLANDS,1979,35.50,9.40,3.90,64.80,146.30,282.80,455.90,173.60,330.20,163.50,169.80,13.60,1849.40,44.90,215.00,1242.50,347.00 +ANDAMAN & NICOBAR ISLANDS,1980,5.50,0.80,9.20,38.80,728.40,604.20,575.70,494.40,271.90,252.00,143.70,500.70,3625.30,6.30,776.50,1946.30,896.30 +ANDAMAN & NICOBAR ISLANDS,1981,11.10,27.80,1.70,94.10,270.80,600.60,344.10,510.70,452.60,242.10,348.40,170.70,3074.80,38.90,366.70,1908.00,761.20 +ANDAMAN & NICOBAR ISLANDS,1982,8.80,2.80,6.60,97.50,229.20,448.70,410.50,347.60,369.00,164.50,238.80,60.50,2384.50,11.60,333.30,1575.80,463.80 +ANDAMAN & NICOBAR ISLANDS,1983,22.10,0.00,3.10,9.10,240.80,424.30,468.90,493.80,505.50,275.80,261.00,88.10,2792.40,22.10,253.00,1892.40,624.90 +ANDAMAN & NICOBAR ISLANDS,1984,69.40,173.80,26.30,156.60,162.30,424.90,446.40,125.80,283.60,347.10,158.90,445.20,2820.30,243.20,345.20,1280.70,951.20 +ANDAMAN & NICOBAR ISLANDS,1985,12.00,19.20,24.10,55.00,278.10,588.40,230.90,375.20,362.50,358.90,232.10,94.40,2630.80,31.20,357.20,1557.00,685.40 +ANDAMAN & NICOBAR ISLANDS,1986,14.80,0.60,1.50,8.20,302.60,312.20,308.50,444.00,408.90,176.10,163.50,47.00,2187.80,15.40,312.30,1473.60,386.50 +ANDAMAN & NICOBAR ISLANDS,1987,72.40,35.20,20.40,17.70,162.90,343.70,45.30,666.50,378.90,373.40,313.40,334.10,2764.00,107.60,200.90,1434.50,1021.00 +ANDAMAN & NICOBAR ISLANDS,1988,10.20,39.90,28.00,82.70,427.50,357.40,495.60,354.20,603.30,271.40,583.00,69.90,3323.00,50.10,538.10,1810.50,924.30 +ANDAMAN & NICOBAR ISLANDS,1989,56.00,12.80,68.10,42.60,379.30,414.90,380.10,413.20,215.90,291.80,255.00,4.00,2533.60,68.80,490.00,1424.10,550.70 +ANDAMAN & NICOBAR ISLANDS,1990,13.40,0.20,24.60,87.50,424.60,291.00,213.20,293.30,310.40,133.60,291.10,100.30,2183.40,13.60,536.80,1108.00,525.10 +ANDAMAN & NICOBAR ISLANDS,1991,14.10,3.80,28.00,132.90,191.30,165.70,547.20,486.50,489.90,287.60,130.10,58.50,2535.80,18.00,352.20,1689.30,476.20 +ANDAMAN & NICOBAR ISLANDS,1992,75.90,10.90,0.00,5.10,241.70,392.00,348.20,372.30,323.70,257.30,64.30,7.20,2098.70,86.80,246.80,1436.20,328.80 +ANDAMAN & NICOBAR ISLANDS,1993,14.90,0.00,129.90,43.70,181.40,257.10,391.70,226.70,437.00,299.30,189.00,66.70,2237.40,14.90,355.00,1312.50,555.00 +ANDAMAN & NICOBAR ISLANDS,1994,7.20,35.50,129.40,154.60,403.20,386.30,569.70,460.50,775.10,137.50,180.30,23.80,3262.80,42.60,687.20,2191.50,341.50 +ANDAMAN & NICOBAR ISLANDS,1995,51.80,12.50,12.10,21.10,314.80,450.40,501.40,555.80,426.40,294.70,452.90,21.60,3115.40,64.30,348.10,1933.90,769.20 +ANDAMAN & NICOBAR ISLANDS,1996,52.20,4.80,3.40,122.70,298.00,559.20,335.50,328.00,541.60,318.50,254.20,178.80,2996.90,57.00,424.10,1764.30,751.50 +ANDAMAN & NICOBAR ISLANDS,1997,9.50,0.00,0.20,15.60,281.10,199.50,918.50,430.60,440.20,128.70,292.80,38.40,2755.10,9.50,296.90,1988.80,459.90 +ANDAMAN & NICOBAR ISLANDS,1998,0.90,0.00,0.00,0.00,348.90,600.00,364.50,258.90,337.80,618.60,227.80,89.00,2846.40,0.90,348.90,1561.20,935.40 +ANDAMAN & NICOBAR ISLANDS,1999,46.80,44.60,14.20,270.60,257.40,295.00,408.50,329.20,325.30,437.50,124.90,145.70,2699.70,91.40,542.20,1358.00,708.10 +ANDAMAN & NICOBAR ISLANDS,2000,53.00,59.00,171.30,218.10,422.80,357.00,176.30,460.80,250.10,321.20,158.30,115.20,2763.20,112.00,812.20,1244.20,594.70 +ANDAMAN & NICOBAR ISLANDS,2001,89.00,15.70,143.30,30.10,705.30,370.70,341.30,469.00,334.40,267.60,222.60,91.80,3080.90,104.70,878.70,1515.40,582.00 +ANDAMAN & NICOBAR ISLANDS,2002,10.60,0.00,11.50,100.20,366.70,358.30,317.40,429.80,420.00,169.00,306.70,129.90,2620.20,10.70,478.40,1525.60,605.50 +ANDAMAN & NICOBAR ISLANDS,2003,44.30,7.90,149.20,19.40,296.30,159.90,494.90,379.40,371.90,310.40,74.10,48.00,2355.90,52.20,465.00,1406.10,432.50 +ANDAMAN & NICOBAR ISLANDS,2004,54.50,35.90,36.50,41.60,505.10,423.90,378.90,308.70,280.70,223.90,169.90,0.40,2460.10,90.40,583.20,1392.20,394.20 +ANDAMAN & NICOBAR ISLANDS,2005,0.00,0.00,20.30,51.10,305.30,452.40,429.30,311.10,507.50,293.50,300.10,283.90,2954.70,0.00,376.80,1700.40,877.50 +ANDAMAN & NICOBAR ISLANDS,2006,16.30,14.40,48.90,163.70,321.40,366.00,182.70,219.60,546.50,374.70,76.10,74.40,2404.70,30.70,534.00,1314.90,525.20 +ANDAMAN & NICOBAR ISLANDS,2007,4.90,1.60,5.00,54.60,370.00,378.30,463.20,465.30,486.40,209.40,223.90,85.60,2748.00,6.50,429.60,1793.10,518.90 +ANDAMAN & NICOBAR ISLANDS,2008,9.90,67.70,115.80,216.10,545.50,457.80,511.20,482.10,332.00,243.70,321.10,72.00,3374.80,77.60,877.30,1783.10,636.80 +ANDAMAN & NICOBAR ISLANDS,2009,24.50,6.30,44.20,136.50,313.10,633.50,297.30,351.50,344.70,272.80,66.20,48.00,2538.60,30.80,493.70,1627.10,386.90 +ANDAMAN & NICOBAR ISLANDS,2010,101.70,8.00,0.70,12.50,319.00,448.90,521.90,563.80,263.30,402.40,268.50,246.40,3157.10,109.80,332.20,1797.80,917.30 +ANDAMAN & NICOBAR ISLANDS,2011,265.90,84.80,272.80,111.40,326.50,383.20,583.20,441.50,757.10,212.30,150.80,238.50,3828.00,350.70,710.70,2165.00,601.60 +ANDAMAN & NICOBAR ISLANDS,2012,119.90,45.60,30.90,55.80,533.90,458.20,317.30,369.60,868.90,209.70,300.50,187.30,3497.60,165.60,620.50,2014.00,697.50 +ANDAMAN & NICOBAR ISLANDS,2013,67.10,37.60,43.00,46.30,509.30,777.00,564.80,336.70,473.60,455.80,354.20,92.30,3757.80,104.70,598.60,2152.10,902.40 +ANDAMAN & NICOBAR ISLANDS,2014,41.90,8.60,0.00,11.10,238.00,416.60,467.60,321.60,412.90,402.60,201.20,100.40,2622.40,50.50,249.10,1618.70,704.20 +ANDAMAN & NICOBAR ISLANDS,2015,126.80,7.60,3.10,138.20,331.90,346.40,328.90,480.00,523.30,252.10,236.30,129.90,2904.60,134.40,473.20,1678.60,618.40 +ARUNACHAL PRADESH,1916,48.10,69.80,71.10,316.10,424.60,1124.90,NA,629.70,333.90,NA,NA,NA,NA,117.90,811.80,NA,NA +ARUNACHAL PRADESH,1917,21.40,164.50,NA,269.60,107.90,823.80,909.10,628.40,411.50,199.30,63.50,0.00,NA,185.90,NA,2772.80,262.80 +ARUNACHAL PRADESH,1918,10.40,11.00,191.20,144.60,861.10,1609.90,1303.00,692.60,515.80,125.20,7.80,13.70,5486.30,21.40,1196.90,4121.30,146.70 +ARUNACHAL PRADESH,1919,34.50,67.80,28.50,256.90,420.60,973.60,999.00,286.70,628.70,948.30,40.70,8.60,4693.90,102.30,706.00,2888.00,997.60 +ARUNACHAL PRADESH,1920,14.00,196.30,605.60,364.70,173.60,840.60,535.40,896.50,376.70,103.30,0.00,0.00,4106.70,210.30,1143.90,2649.20,103.30 +ARUNACHAL PRADESH,1921,78.90,54.30,180.30,358.00,598.00,1233.20,1433.00,885.90,603.40,246.30,4.60,15.50,5691.40,133.20,1136.30,4155.50,266.40 +ARUNACHAL PRADESH,1922,50.70,59.40,170.40,299.50,350.50,1109.30,918.70,488.30,207.60,483.50,30.30,19.00,4187.20,110.10,820.40,2723.90,532.80 +ARUNACHAL PRADESH,1923,9.40,160.80,34.00,240.90,445.40,408.60,1278.50,251.30,617.30,50.10,8.40,2.80,3507.50,170.20,720.30,2555.70,61.30 +ARUNACHAL PRADESH,1924,85.70,45.10,74.10,162.40,515.70,1165.00,942.70,713.80,410.80,303.30,31.90,0.00,4450.50,130.80,752.20,3232.30,335.20 +ARUNACHAL PRADESH,1925,80.60,114.00,143.30,223.00,587.20,611.60,611.00,684.70,1222.00,153.20,5.10,4.10,4439.80,194.60,953.50,3129.30,162.40 +ARUNACHAL PRADESH,1926,38.10,40.80,179.10,249.70,248.10,675.20,978.70,445.60,286.90,311.50,18.60,49.30,3521.60,78.90,676.90,2386.40,379.40 +ARUNACHAL PRADESH,1927,48.30,208.50,88.10,384.00,164.00,1045.40,923.20,727.80,1108.90,537.20,17.80,0.00,5253.20,256.80,636.10,3805.30,555.00 +ARUNACHAL PRADESH,1928,48.90,39.70,118.20,123.40,431.90,1168.30,993.60,981.20,706.10,633.50,25.60,2.30,5272.70,88.60,673.50,3849.20,661.40 +ARUNACHAL PRADESH,1929,144.80,59.20,124.30,492.30,615.80,853.00,614.40,670.00,384.30,188.00,64.50,109.50,4320.20,204.10,1232.40,2521.80,362.00 +ARUNACHAL PRADESH,1930,64.40,84.30,202.50,565.40,148.90,720.90,376.20,1055.50,637.00,361.10,93.20,24.90,4334.10,148.70,916.80,2789.50,479.10 +ARUNACHAL PRADESH,1931,61.30,189.70,231.60,502.70,277.70,1149.40,1399.90,337.70,480.70,157.40,37.80,46.20,4872.10,251.00,1012.00,3367.70,241.30 +ARUNACHAL PRADESH,1932,70.20,110.30,105.50,282.70,661.60,1065.20,521.20,907.80,682.90,152.20,231.40,59.90,4850.90,180.50,1049.80,3177.10,443.50 +ARUNACHAL PRADESH,1933,56.00,59.40,101.60,267.90,435.30,782.10,743.20,685.20,376.10,217.90,40.60,8.10,3773.30,115.40,804.80,2586.50,266.60 +ARUNACHAL PRADESH,1934,84.90,88.30,128.30,595.10,454.50,1024.60,935.90,640.90,382.60,141.60,77.00,21.90,4575.70,173.20,1177.90,2984.00,240.60 +ARUNACHAL PRADESH,1935,18.10,143.60,169.70,211.20,299.90,1147.10,489.90,968.80,631.60,21.80,44.40,27.40,4173.70,161.80,680.90,3237.50,93.60 +ARUNACHAL PRADESH,1936,105.90,175.20,151.70,374.70,295.70,833.10,1132.80,668.40,584.30,216.50,122.80,127.60,4788.90,281.10,822.20,3218.60,467.00 +ARUNACHAL PRADESH,1937,19.90,105.60,91.20,261.00,399.00,456.40,611.60,816.90,339.70,239.80,16.70,17.30,3375.10,125.50,751.20,2224.60,273.80 +ARUNACHAL PRADESH,1938,144.80,121.60,340.50,395.30,306.50,1511.30,1355.10,790.80,877.30,220.60,59.70,5.60,6129.00,266.40,1042.30,4534.50,285.80 +ARUNACHAL PRADESH,1939,13.60,140.50,112.70,388.10,314.60,1132.50,838.50,310.20,476.40,157.60,6.20,7.70,3898.70,154.20,815.50,2757.60,171.40 +ARUNACHAL PRADESH,1940,12.70,168.50,381.80,133.90,480.50,511.00,1067.90,340.50,791.40,154.60,12.40,44.30,4099.30,181.20,996.20,2710.70,211.30 +ARUNACHAL PRADESH,1941,37.40,101.70,157.90,245.40,652.40,518.10,935.90,729.20,687.00,89.70,19.60,45.90,4220.20,139.10,1055.70,2870.30,155.20 +ARUNACHAL PRADESH,1942,15.80,164.90,277.80,272.40,618.90,1182.60,457.50,438.90,357.60,8.70,32.10,1.10,3828.20,180.70,1169.10,2436.60,41.90 +ARUNACHAL PRADESH,1943,164.50,46.30,286.30,322.60,656.60,712.30,688.10,501.00,727.70,155.40,43.00,22.80,4326.70,210.80,1265.40,2629.20,221.30 +ARUNACHAL PRADESH,1944,73.10,67.00,128.40,179.90,664.60,935.90,483.60,307.40,656.10,334.80,26.00,47.50,3904.30,140.10,972.90,2383.00,408.40 +ARUNACHAL PRADESH,1945,43.40,107.80,151.30,282.90,366.00,420.20,960.00,771.30,328.60,187.70,1.30,28.70,3649.30,151.20,800.20,2480.10,217.70 +ARUNACHAL PRADESH,1946,1.80,73.20,141.70,238.30,631.20,448.60,1212.20,478.70,540.40,215.90,25.40,3.80,4011.20,75.10,1011.20,2679.90,245.10 +ARUNACHAL PRADESH,1947,37.80,68.50,158.60,460.20,494.40,650.20,1245.00,417.90,503.80,297.30,9.50,25.90,4369.10,106.30,1113.20,2816.90,332.60 +ARUNACHAL PRADESH,1948,35.60,119.50,136.10,441.10,1168.60,889.50,2362.80,603.30,350.40,150.10,52.70,21.40,6331.10,155.10,1745.80,4206.00,224.20 +ARUNACHAL PRADESH,1949,80.10,88.10,287.40,436.90,567.20,943.90,1002.00,672.60,482.00,224.90,39.60,50.10,4874.70,168.10,1291.50,3100.50,314.60 +ARUNACHAL PRADESH,1950,38.60,92.80,205.80,425.20,274.20,NA,377.60,241.80,285.80,356.00,49.50,43.90,NA,131.40,905.20,NA,449.40 +ARUNACHAL PRADESH,1951,31.80,65.30,309.90,441.00,344.50,757.80,554.70,278.50,383.70,101.80,46.20,39.10,3354.20,97.10,1095.30,1974.70,187.10 +ARUNACHAL PRADESH,1952,17.20,24.50,189.60,151.50,235.10,276.80,320.60,481.10,368.20,257.90,43.90,29.70,2396.10,41.70,576.20,1446.70,331.50 +ARUNACHAL PRADESH,1953,56.40,106.90,236.00,214.90,314.90,409.90,512.50,245.30,449.80,NA,10.40,23.40,NA,163.30,765.80,1617.50,NA +ARUNACHAL PRADESH,1957,NA,NA,NA,246.90,448.90,608.10,1219.40,542.60,505.80,146.60,17.10,40.60,NA,NA,NA,2875.90,204.30 +ARUNACHAL PRADESH,1958,98.40,67.50,32.90,138.50,698.60,511.20,457.70,1664.60,705.20,669.40,2.50,17.00,5063.50,165.90,870.00,3338.70,688.90 +ARUNACHAL PRADESH,1959,83.20,137.90,104.50,146.40,671.80,812.90,1137.70,333.20,508.80,247.00,12.10,0.00,4195.50,221.10,922.70,2792.60,259.10 +ARUNACHAL PRADESH,1960,8.00,26.80,53.20,137.10,210.70,653.90,1296.80,251.30,1034.80,13.00,13.40,10.40,3709.40,34.80,401.00,3236.80,36.80 +ARUNACHAL PRADESH,1961,50.00,204.20,289.60,181.00,492.30,595.50,738.30,547.90,256.20,260.50,57.10,3.90,3676.50,254.20,962.90,2137.90,321.50 +ARUNACHAL PRADESH,1962,37.20,87.10,45.10,250.30,601.90,1088.80,758.10,1405.90,222.40,255.60,NA,NA,NA,124.30,897.30,3475.20,NA +ARUNACHAL PRADESH,1963,14.60,35.20,168.60,262.60,346.40,755.40,817.40,1199.30,366.40,136.40,20.00,15.70,4138.00,49.80,777.60,3138.50,172.10 +ARUNACHAL PRADESH,1964,55.40,90.30,81.10,219.70,286.40,1432.80,1506.10,492.10,465.10,246.20,12.20,71.90,4959.30,145.70,587.20,3896.10,330.30 +ARUNACHAL PRADESH,1965,37.40,120.70,103.70,254.40,306.90,404.70,315.80,351.30,172.90,51.50,72.60,4.90,2196.80,158.10,665.00,1244.70,129.00 +ARUNACHAL PRADESH,1966,22.40,91.50,98.40,180.20,177.90,473.20,432.70,411.60,197.60,78.90,39.00,6.30,2209.60,113.80,456.50,1515.10,124.20 +ARUNACHAL PRADESH,1967,13.30,45.50,147.90,96.60,164.00,253.10,434.50,220.80,212.80,58.50,10.00,11.50,1668.50,58.80,408.50,1121.20,80.00 +ARUNACHAL PRADESH,1968,54.20,41.40,135.90,117.60,307.20,510.10,404.80,227.50,243.50,75.80,12.50,8.40,2139.00,95.70,560.70,1385.90,96.80 +ARUNACHAL PRADESH,1969,19.20,10.00,33.80,127.00,202.30,412.30,405.10,333.90,241.40,42.90,34.80,15.10,1877.70,29.20,363.10,1392.70,92.80 +ARUNACHAL PRADESH,1970,49.20,78.80,57.40,108.80,213.40,409.60,377.90,245.40,287.40,138.60,6.90,0.00,1973.40,128.00,379.70,1320.20,145.50 +ARUNACHAL PRADESH,1971,56.00,67.80,47.10,121.80,222.40,446.00,385.50,288.20,239.60,235.10,67.80,7.30,2184.50,123.80,391.30,1359.30,310.20 +ARUNACHAL PRADESH,1972,39.20,114.20,108.30,231.50,299.50,314.40,438.30,270.70,334.50,83.30,25.90,21.50,2281.30,153.50,639.30,1357.90,130.70 +ARUNACHAL PRADESH,1973,136.40,147.10,82.30,215.30,256.50,571.10,284.80,271.30,258.30,110.20,88.90,35.40,2457.50,283.50,554.00,1385.50,234.40 +ARUNACHAL PRADESH,1974,130.90,95.40,127.80,272.60,248.30,466.70,648.90,446.80,461.20,121.10,14.00,30.30,3063.90,226.30,648.70,2023.50,165.40 +ARUNACHAL PRADESH,1975,17.30,76.90,101.70,165.10,188.00,268.50,427.00,185.20,297.00,451.60,21.50,13.60,2213.30,94.20,454.80,1177.70,486.60 +ARUNACHAL PRADESH,1976,8.90,112.90,168.00,229.30,210.70,506.30,375.40,357.40,177.50,139.70,87.90,45.60,2419.50,121.80,608.00,1416.70,273.10 +ARUNACHAL PRADESH,1977,71.20,133.50,209.30,560.20,417.80,543.50,484.70,610.10,311.90,213.50,141.00,77.70,3774.30,204.60,1187.30,1950.20,432.20 +ARUNACHAL PRADESH,1978,37.10,82.20,150.60,216.40,345.60,577.20,357.50,172.40,310.40,133.00,146.10,2.50,2531.00,119.30,712.60,1417.40,281.60 +ARUNACHAL PRADESH,1979,47.40,81.60,138.20,158.80,210.30,239.40,665.40,296.90,417.50,409.60,27.40,81.20,2773.60,129.00,507.20,1619.20,518.30 +ARUNACHAL PRADESH,1980,65.60,130.40,251.40,372.00,245.50,530.90,514.10,544.70,367.40,185.40,7.80,0.20,3215.30,195.90,868.90,1957.10,193.30 +ARUNACHAL PRADESH,1981,93.10,136.10,255.20,197.40,285.00,494.90,549.30,360.60,262.60,71.80,29.30,55.50,2790.90,229.20,737.60,1667.40,156.70 +ARUNACHAL PRADESH,1982,6.40,100.40,151.20,335.30,241.40,429.80,593.00,197.00,526.60,82.30,53.80,62.20,2779.50,106.80,727.90,1746.40,198.30 +ARUNACHAL PRADESH,1983,65.40,171.10,217.60,351.20,301.90,551.00,563.20,389.90,476.40,191.70,14.90,40.80,3335.30,236.50,870.70,1980.60,247.40 +ARUNACHAL PRADESH,1984,98.10,42.80,166.90,389.30,448.70,417.30,671.00,309.20,455.50,184.10,5.70,89.50,3278.00,140.80,1004.90,1853.00,279.30 +ARUNACHAL PRADESH,1985,54.10,81.00,255.60,347.10,345.50,506.00,657.80,326.30,502.20,116.60,25.40,48.80,3266.20,135.00,948.20,1992.20,190.70 +ARUNACHAL PRADESH,1986,19.30,90.10,122.80,335.30,101.80,402.50,453.70,355.30,387.60,176.60,36.60,14.00,2495.60,109.50,559.80,1599.10,227.20 +ARUNACHAL PRADESH,1987,3.70,72.50,147.70,352.00,230.80,501.50,754.90,558.80,646.60,101.10,24.10,39.60,3433.20,76.20,730.40,2461.90,164.80 +ARUNACHAL PRADESH,1988,50.90,118.30,250.70,278.90,535.90,287.00,868.10,815.60,486.30,416.40,34.20,13.10,4155.30,169.20,1065.40,2457.00,463.60 +ARUNACHAL PRADESH,1989,52.60,171.90,92.90,388.70,239.70,484.20,640.70,305.30,526.50,281.70,77.90,19.60,3281.60,224.50,721.20,1956.80,379.10 +ARUNACHAL PRADESH,1990,54.80,112.40,149.00,289.90,366.20,857.20,534.00,352.80,625.50,240.60,2.00,19.70,3604.00,167.20,805.10,2369.50,262.30 +ARUNACHAL PRADESH,1991,24.90,86.00,110.70,193.30,423.70,608.30,607.70,603.40,484.50,189.00,22.20,80.80,3434.40,110.90,727.70,2303.90,291.90 +ARUNACHAL PRADESH,1992,33.20,128.90,184.60,196.40,239.20,522.90,557.20,294.30,328.20,201.50,11.50,8.90,2707.00,162.10,620.30,1702.70,221.80 +ARUNACHAL PRADESH,1993,95.70,125.40,134.40,130.60,408.30,569.50,619.20,691.90,323.10,228.60,14.70,7.50,3348.90,221.10,673.30,2203.70,250.80 +ARUNACHAL PRADESH,1994,48.20,72.60,215.30,232.10,382.90,416.10,233.00,280.20,225.00,161.60,14.10,6.20,2287.40,120.80,830.30,1154.40,181.90 +ARUNACHAL PRADESH,1995,20.60,79.90,84.30,198.80,363.90,686.90,714.50,328.80,425.10,82.40,51.00,32.60,3068.80,100.50,647.10,2155.20,166.00 +ARUNACHAL PRADESH,1996,35.70,56.20,163.60,171.40,398.20,316.20,593.00,372.10,191.20,212.50,9.10,1.40,2520.50,91.80,733.10,1472.50,223.00 +ARUNACHAL PRADESH,1997,26.20,68.50,158.50,94.70,212.60,548.00,395.20,237.00,403.50,58.50,45.90,26.30,2274.90,94.60,465.80,1583.70,130.70 +ARUNACHAL PRADESH,1998,26.70,78.80,193.60,125.00,275.00,839.80,823.80,807.00,236.80,187.20,20.50,2.50,3616.70,105.60,593.60,2707.40,210.20 +ARUNACHAL PRADESH,1999,7.90,6.10,40.40,159.60,343.20,450.00,376.90,438.10,254.00,207.90,28.30,4.30,2316.60,14.00,543.20,1519.00,240.40 +ARUNACHAL PRADESH,2000,54.10,47.10,139.90,293.80,267.20,459.80,395.40,387.40,407.40,81.30,53.90,9.60,2596.80,101.20,700.80,1650.00,144.80 +ARUNACHAL PRADESH,2001,53.10,66.60,134.90,229.90,195.60,277.20,302.60,279.90,288.10,173.80,19.30,14.90,2036.00,119.70,560.50,1147.80,208.00 +ARUNACHAL PRADESH,2002,74.20,37.20,126.30,248.20,197.10,396.80,604.00,290.70,257.90,94.00,45.00,17.90,2389.20,111.40,571.60,1549.40,156.90 +ARUNACHAL PRADESH,2003,22.90,83.20,109.60,182.00,173.50,424.30,645.30,327.20,259.90,182.60,25.00,16.20,2451.80,106.10,465.20,1656.60,223.90 +ARUNACHAL PRADESH,2004,38.00,39.10,175.50,210.20,298.70,402.90,654.30,243.00,278.50,184.80,5.60,15.20,2545.70,77.10,684.30,1578.70,205.60 +ARUNACHAL PRADESH,2005,48.40,167.60,229.50,195.30,179.80,269.30,430.80,400.00,243.60,139.30,28.60,3.30,2335.50,216.00,604.60,1343.70,171.20 +ARUNACHAL PRADESH,2006,6.00,103.70,63.30,202.70,321.70,520.40,382.20,227.60,263.20,77.20,69.70,21.70,2259.60,109.70,587.70,1393.50,168.70 +ARUNACHAL PRADESH,2007,13.40,97.40,48.10,292.40,250.40,530.20,761.00,364.60,529.30,102.60,24.30,6.90,3020.70,110.80,590.90,2185.10,133.90 +ARUNACHAL PRADESH,2008,76.70,39.70,122.60,192.40,185.00,423.60,456.10,439.30,189.70,115.10,1.70,2.60,2244.40,116.40,499.90,1508.70,119.40 +ARUNACHAL PRADESH,2009,18.00,92.80,72.10,132.70,189.90,259.10,329.90,370.30,152.50,82.90,33.90,15.90,1749.90,110.80,394.70,1111.80,132.70 +ARUNACHAL PRADESH,2010,0.60,13.20,237.80,466.90,312.70,509.90,378.00,321.50,444.20,97.70,58.90,14.20,2855.70,13.90,1017.50,1653.60,170.90 +ARUNACHAL PRADESH,2011,40.00,51.30,174.50,240.80,219.60,288.40,531.40,277.60,286.70,51.90,16.20,15.20,2193.70,91.40,634.90,1384.20,83.30 +ARUNACHAL PRADESH,2012,57.80,35.80,134.20,403.40,187.40,645.80,638.90,316.00,724.90,248.10,22.00,26.20,3440.30,93.60,724.90,2325.60,296.30 +ARUNACHAL PRADESH,2013,18.50,40.50,115.10,175.10,335.80,290.00,329.60,230.20,316.10,164.10,13.30,14.60,2042.90,59.00,626.00,1165.90,192.00 +ARUNACHAL PRADESH,2014,19.00,101.90,80.30,86.70,299.00,415.80,392.40,599.60,343.00,35.10,20.10,10.20,2403.20,120.90,466.00,1750.80,65.40 +ARUNACHAL PRADESH,2015,30.80,47.50,97.50,287.10,238.90,637.90,329.30,595.50,374.20,65.20,33.80,29.80,2767.50,78.30,623.50,1936.90,128.80 +ASSAM & MEGHALAYA,1901,27.10,19.50,30.60,223.00,207.00,524.90,430.60,464.10,291.40,163.70,115.60,1.20,2498.60,46.60,460.50,1710.90,280.50 +ASSAM & MEGHALAYA,1902,9.30,10.20,105.60,350.00,262.10,620.70,510.80,536.00,441.30,97.00,7.80,1.30,2952.10,19.40,717.60,2108.90,106.20 +ASSAM & MEGHALAYA,1903,19.90,25.40,103.60,140.60,206.60,607.40,362.70,551.90,306.40,159.50,59.30,1.30,2544.70,45.40,450.80,1828.50,220.10 +ASSAM & MEGHALAYA,1904,11.10,56.10,51.90,457.10,375.20,385.70,477.60,438.80,245.90,115.90,46.40,2.50,2664.10,67.10,884.20,1548.00,164.80 +ASSAM & MEGHALAYA,1905,19.90,16.90,137.90,213.00,275.50,521.70,439.10,649.10,276.00,200.00,16.80,24.80,2790.60,36.80,626.30,1886.00,241.60 +ASSAM & MEGHALAYA,1906,9.70,59.20,88.40,263.50,271.30,388.40,541.80,585.90,264.20,165.70,24.90,0.20,2663.40,68.90,623.30,1780.40,190.80 +ASSAM & MEGHALAYA,1907,55.80,37.20,109.70,254.80,213.70,509.80,578.90,304.20,401.00,37.60,4.80,13.80,2521.10,93.00,578.10,1793.80,56.20 +ASSAM & MEGHALAYA,1908,16.20,25.10,20.70,176.60,332.70,390.80,477.20,339.40,403.40,91.90,3.80,0.00,2277.80,41.30,530.00,1610.80,95.70 +ASSAM & MEGHALAYA,1909,19.00,8.90,4.40,195.00,310.40,639.40,345.00,445.20,216.40,162.40,24.60,6.30,2377.00,27.90,509.80,1646.00,193.30 +ASSAM & MEGHALAYA,1910,9.20,32.10,152.80,211.50,274.60,582.50,738.30,418.30,247.80,199.70,16.20,4.30,2887.30,41.30,638.90,1986.90,220.20 +ASSAM & MEGHALAYA,1911,74.20,19.00,93.00,234.00,431.70,534.00,618.60,417.10,387.80,257.40,26.30,3.00,3096.20,93.20,758.70,1957.50,286.80 +ASSAM & MEGHALAYA,1912,9.00,57.80,126.10,301.00,250.20,482.70,567.00,453.40,236.80,181.50,68.40,9.50,2743.50,66.80,677.40,1739.90,259.50 +ASSAM & MEGHALAYA,1913,11.90,90.20,118.40,334.20,392.30,458.60,438.00,354.00,279.20,227.70,10.40,45.60,2760.50,102.20,844.90,1529.70,283.70 +ASSAM & MEGHALAYA,1914,6.30,79.10,69.90,219.60,317.90,403.90,396.40,472.90,292.30,67.60,10.60,7.40,2343.80,85.50,607.40,1565.40,85.60 +ASSAM & MEGHALAYA,1915,9.30,58.90,74.40,201.90,662.90,509.10,738.20,529.10,258.80,108.20,10.00,4.40,3165.10,68.20,939.20,2035.10,122.60 +ASSAM & MEGHALAYA,1916,20.00,28.00,118.40,227.90,340.60,367.30,475.30,430.70,308.80,244.90,32.80,6.30,2601.10,48.00,686.90,1582.10,284.00 +ASSAM & MEGHALAYA,1917,12.80,91.60,38.70,168.80,206.20,584.70,472.80,346.30,313.70,236.60,46.40,1.40,2519.90,104.40,413.60,1717.40,284.40 +ASSAM & MEGHALAYA,1918,4.60,16.10,125.50,152.20,287.40,659.40,805.00,604.80,373.20,70.70,6.80,1.10,3106.80,20.70,565.10,2442.50,78.60 +ASSAM & MEGHALAYA,1919,13.10,12.40,22.60,162.10,266.90,485.50,459.00,249.10,441.60,185.70,42.50,3.60,2344.20,25.50,451.60,1635.30,231.90 +ASSAM & MEGHALAYA,1920,4.80,51.00,228.10,184.80,282.70,523.80,309.80,521.50,382.60,129.50,3.30,1.80,2623.60,55.80,695.60,1737.60,134.60 +ASSAM & MEGHALAYA,1921,35.10,20.30,134.10,324.60,414.80,604.90,542.20,429.40,333.20,142.10,8.50,10.30,2999.70,55.40,873.60,1909.80,160.90 +ASSAM & MEGHALAYA,1922,16.60,4.90,77.80,168.70,233.10,548.90,418.40,379.40,265.60,129.90,9.30,9.40,2261.90,21.40,479.60,1612.30,148.70 +ASSAM & MEGHALAYA,1923,0.40,59.60,17.10,258.10,397.80,588.60,375.40,267.20,360.90,98.20,11.20,5.90,2440.60,60.00,673.00,1592.10,115.40 +ASSAM & MEGHALAYA,1924,10.60,22.70,20.00,221.90,299.40,473.90,609.00,434.00,346.00,127.00,126.90,0.20,2691.40,33.30,541.30,1862.80,254.00 +ASSAM & MEGHALAYA,1925,26.40,21.50,53.80,278.30,602.20,330.80,411.10,400.70,322.30,89.50,13.70,0.20,2550.50,47.90,934.20,1465.00,103.40 +ASSAM & MEGHALAYA,1926,23.40,23.20,156.90,140.80,253.90,559.30,576.50,354.70,189.20,193.70,6.40,33.60,2511.70,46.60,551.60,1679.70,233.80 +ASSAM & MEGHALAYA,1927,33.80,60.50,66.00,265.20,238.40,573.90,447.70,366.40,549.80,161.20,29.80,0.20,2793.10,94.30,569.70,1937.90,191.20 +ASSAM & MEGHALAYA,1928,8.30,21.10,61.00,138.90,446.50,420.60,428.10,448.20,343.50,294.80,21.60,1.50,2634.30,29.40,646.40,1640.50,317.90 +ASSAM & MEGHALAYA,1929,83.90,3.80,84.10,321.70,570.20,643.40,385.00,333.20,292.80,196.00,17.60,22.10,2953.80,87.70,976.00,1654.40,235.70 +ASSAM & MEGHALAYA,1930,18.00,41.00,99.80,199.40,209.80,686.90,287.80,438.50,299.10,149.90,114.40,6.20,2550.70,59.00,509.00,1712.40,270.40 +ASSAM & MEGHALAYA,1931,7.60,29.20,47.60,294.70,374.00,605.60,654.60,282.00,330.20,136.70,21.60,16.30,2800.10,36.70,716.30,1872.40,174.70 +ASSAM & MEGHALAYA,1932,14.90,36.70,59.10,163.20,488.60,628.50,454.60,467.30,355.80,108.40,90.90,20.60,2888.70,51.50,711.00,1906.30,219.90 +ASSAM & MEGHALAYA,1933,10.30,29.00,16.70,214.40,286.70,477.20,427.10,501.70,243.10,122.10,8.10,2.70,2339.10,39.20,517.70,1649.20,132.90 +ASSAM & MEGHALAYA,1934,18.50,68.20,27.10,301.20,444.60,754.50,553.20,361.80,246.80,232.80,59.80,6.30,3074.90,86.80,773.00,1916.30,298.90 +ASSAM & MEGHALAYA,1935,3.40,53.20,66.50,122.10,381.50,696.90,395.20,573.90,335.00,28.10,19.80,2.90,2678.40,56.60,570.10,2001.00,50.80 +ASSAM & MEGHALAYA,1936,13.60,58.70,75.70,217.80,422.80,456.10,559.90,356.40,283.50,179.60,24.00,23.20,2671.30,72.20,716.30,1655.90,226.80 +ASSAM & MEGHALAYA,1937,2.20,51.10,19.30,97.40,406.60,422.50,409.20,480.50,278.10,139.30,13.50,4.90,2324.60,53.30,523.40,1590.30,157.60 +ASSAM & MEGHALAYA,1938,27.20,16.20,138.00,202.00,247.30,581.00,510.60,435.20,431.40,141.80,55.20,0.60,2786.50,43.40,587.30,1958.20,197.60 +ASSAM & MEGHALAYA,1939,1.50,33.60,11.20,178.30,349.60,533.70,484.90,224.90,389.00,190.10,2.80,1.90,2401.60,35.10,539.20,1632.50,194.90 +ASSAM & MEGHALAYA,1940,1.50,57.90,180.80,72.60,391.90,500.50,435.40,330.80,353.70,98.10,19.00,9.50,2451.60,59.40,645.30,1620.30,126.60 +ASSAM & MEGHALAYA,1941,4.50,32.70,53.80,245.10,522.40,541.70,409.40,361.80,368.10,143.30,16.70,9.90,2709.50,37.20,821.20,1681.00,170.00 +ASSAM & MEGHALAYA,1942,7.40,25.30,130.90,233.50,469.10,618.80,332.90,328.80,462.90,40.00,27.50,0.00,2677.00,32.70,833.50,1743.40,67.50 +ASSAM & MEGHALAYA,1943,54.40,34.10,170.60,247.70,406.60,513.30,391.90,417.90,365.00,86.70,9.40,6.20,2703.70,88.40,824.90,1688.10,102.30 +ASSAM & MEGHALAYA,1944,39.20,21.30,62.90,139.00,518.00,490.60,386.90,304.10,455.60,89.70,7.20,9.90,2524.30,60.40,719.90,1637.20,106.80 +ASSAM & MEGHALAYA,1945,37.00,39.70,67.50,139.50,396.50,500.50,507.70,493.50,283.20,196.60,1.10,2.90,2665.70,76.70,603.50,1785.00,200.50 +ASSAM & MEGHALAYA,1946,0.40,19.40,102.60,178.50,328.00,582.60,547.00,297.90,266.80,346.30,8.60,1.40,2679.50,19.80,609.20,1694.20,356.40 +ASSAM & MEGHALAYA,1947,3.90,9.00,83.90,243.40,380.20,486.40,570.80,285.00,362.30,202.20,3.00,13.10,2643.30,12.90,707.60,1704.60,218.30 +ASSAM & MEGHALAYA,1948,10.10,42.40,59.50,260.40,681.20,599.40,534.80,448.30,314.40,176.60,50.60,7.80,3185.40,52.50,1001.10,1896.80,234.90 +ASSAM & MEGHALAYA,1949,22.90,23.10,76.00,371.00,335.90,683.40,444.10,461.90,392.60,148.30,13.00,11.10,2983.40,45.90,782.90,1982.10,172.40 +ASSAM & MEGHALAYA,1950,21.20,51.20,93.50,112.90,282.10,562.00,389.50,490.90,200.70,134.60,49.90,3.90,2392.40,72.50,488.50,1643.10,188.40 +ASSAM & MEGHALAYA,1951,4.90,3.30,53.50,242.90,250.40,588.80,550.50,387.40,209.70,270.50,46.20,5.80,2613.80,8.20,546.90,1736.30,322.50 +ASSAM & MEGHALAYA,1952,4.40,10.40,107.50,155.90,465.60,399.90,573.90,467.60,343.70,277.10,43.20,2.10,2851.30,14.80,729.00,1785.20,322.40 +ASSAM & MEGHALAYA,1953,18.00,13.30,227.30,157.40,377.70,405.50,461.90,284.50,451.50,144.00,5.80,13.10,2559.90,31.30,762.40,1603.40,162.90 +ASSAM & MEGHALAYA,1954,22.00,45.70,40.60,266.00,490.30,594.30,572.20,427.30,218.80,155.50,2.00,24.50,2859.10,67.60,796.90,1812.60,182.00 +ASSAM & MEGHALAYA,1955,9.20,9.50,143.50,210.20,328.80,546.50,567.00,415.80,283.30,149.30,89.60,8.50,2761.20,18.70,682.50,1812.60,247.40 +ASSAM & MEGHALAYA,1956,29.80,3.20,121.70,204.80,533.50,712.40,440.30,382.10,171.90,149.30,44.30,9.60,2802.90,33.00,859.90,1706.70,203.30 +ASSAM & MEGHALAYA,1957,66.90,33.50,20.10,136.00,449.20,446.00,407.20,366.60,208.70,99.90,12.20,10.70,2257.20,100.40,605.40,1428.60,122.80 +ASSAM & MEGHALAYA,1958,18.80,44.20,10.30,192.40,545.20,393.20,361.10,546.90,278.70,212.40,4.60,18.70,2626.40,63.00,747.90,1579.80,235.70 +ASSAM & MEGHALAYA,1959,30.80,45.60,109.90,144.10,470.60,517.60,364.20,255.90,286.80,301.70,8.30,0.20,2535.80,76.40,724.60,1424.60,310.10 +ASSAM & MEGHALAYA,1960,0.10,11.10,38.70,45.90,315.20,454.80,553.70,349.20,479.40,60.90,29.30,3.90,2342.20,11.20,399.90,1837.00,94.00 +ASSAM & MEGHALAYA,1961,11.50,19.70,253.80,123.00,355.80,335.40,352.90,347.40,226.10,128.10,34.80,6.90,2195.30,31.20,732.60,1261.70,169.80 +ASSAM & MEGHALAYA,1962,24.90,27.60,17.30,134.70,369.00,601.40,338.80,509.80,137.40,118.20,11.10,5.80,2295.90,52.50,521.10,1587.30,135.00 +ASSAM & MEGHALAYA,1963,3.30,7.90,51.10,183.30,288.40,596.00,557.30,432.00,211.70,144.10,29.40,7.20,2511.80,11.20,522.80,1797.10,180.70 +ASSAM & MEGHALAYA,1964,9.60,22.60,80.70,268.30,297.40,557.90,600.30,340.40,326.30,205.10,8.30,12.80,2729.60,32.20,646.40,1824.80,226.20 +ASSAM & MEGHALAYA,1965,5.10,73.60,52.50,158.20,327.10,501.00,399.60,422.10,304.00,82.40,60.80,12.50,2398.90,78.70,537.70,1626.70,155.70 +ASSAM & MEGHALAYA,1966,20.00,23.60,36.10,164.30,323.70,780.50,507.10,518.20,248.10,124.50,31.80,11.40,2789.30,43.60,524.10,2053.90,167.70 +ASSAM & MEGHALAYA,1967,11.40,37.30,105.90,112.00,287.50,395.70,497.70,258.90,300.60,97.60,14.50,4.20,2123.40,48.80,505.40,1452.90,116.30 +ASSAM & MEGHALAYA,1968,22.90,19.80,78.20,170.80,432.30,595.00,494.10,346.00,231.70,113.80,23.90,2.30,2530.80,42.70,681.30,1666.80,140.00 +ASSAM & MEGHALAYA,1969,27.40,1.80,99.70,178.70,254.10,567.20,461.10,446.70,185.40,80.90,27.50,1.80,2332.20,29.20,532.40,1660.30,110.20 +ASSAM & MEGHALAYA,1970,47.00,35.80,89.70,204.80,493.40,658.30,475.30,389.20,390.70,246.40,17.80,0.10,3048.40,82.80,787.90,1913.50,264.30 +ASSAM & MEGHALAYA,1971,36.90,18.40,37.60,142.90,236.30,437.10,407.90,474.80,231.60,199.50,80.00,12.10,2315.10,55.30,416.80,1551.30,291.60 +ASSAM & MEGHALAYA,1972,18.00,39.60,99.30,260.30,339.30,576.20,441.00,271.00,227.10,99.10,2.90,5.30,2379.10,57.60,698.90,1515.30,107.30 +ASSAM & MEGHALAYA,1973,9.80,82.80,28.90,252.10,324.50,634.40,364.60,395.00,348.60,128.70,67.40,35.30,2672.10,92.60,605.50,1742.60,231.40 +ASSAM & MEGHALAYA,1974,31.60,11.40,78.70,255.80,369.40,627.00,789.30,510.90,429.10,271.00,27.10,2.30,3403.50,43.00,703.80,2356.30,300.40 +ASSAM & MEGHALAYA,1975,10.00,22.30,18.80,227.90,321.20,337.60,522.40,314.80,299.10,172.70,18.00,5.80,2270.60,32.30,567.90,1473.90,196.50 +ASSAM & MEGHALAYA,1976,5.70,36.30,92.60,139.40,179.50,509.70,390.50,358.50,149.10,67.30,24.30,3.10,1956.00,42.10,411.50,1407.80,94.60 +ASSAM & MEGHALAYA,1977,9.10,16.20,74.40,375.10,391.60,405.00,461.30,461.90,176.90,175.70,47.70,21.80,2616.60,25.20,841.10,1505.20,245.20 +ASSAM & MEGHALAYA,1978,5.00,8.20,44.30,100.90,253.70,506.60,444.00,255.80,271.80,65.00,55.90,0.60,2011.90,13.20,399.00,1478.20,121.60 +ASSAM & MEGHALAYA,1979,3.30,8.70,38.20,93.80,225.60,307.80,640.10,252.40,342.30,216.60,23.40,36.20,2188.50,12.00,357.70,1542.60,276.30 +ASSAM & MEGHALAYA,1980,13.10,36.30,96.90,173.20,289.40,389.50,460.00,417.80,269.80,141.60,1.00,0.60,2289.20,49.30,559.60,1537.10,143.20 +ASSAM & MEGHALAYA,1981,29.60,30.70,91.00,152.10,251.50,273.10,543.50,340.70,274.50,47.50,9.00,36.10,2079.30,60.30,494.60,1431.80,92.70 +ASSAM & MEGHALAYA,1982,1.80,31.10,50.60,254.30,215.50,517.20,539.90,377.20,286.40,62.00,29.90,16.40,2382.20,32.90,520.40,1720.60,108.30 +ASSAM & MEGHALAYA,1983,16.40,37.80,90.00,165.90,278.20,362.00,582.90,450.20,449.10,156.70,7.00,24.00,2620.00,54.20,534.10,1844.20,187.60 +ASSAM & MEGHALAYA,1984,22.40,7.20,28.60,202.80,416.00,478.50,995.20,360.70,458.00,159.60,5.70,22.20,3157.00,29.70,647.40,2292.50,187.50 +ASSAM & MEGHALAYA,1985,8.70,32.30,152.60,268.10,335.00,496.00,714.60,349.40,335.10,74.40,15.80,19.70,2801.60,41.00,755.70,1895.10,109.90 +ASSAM & MEGHALAYA,1986,16.40,11.70,28.00,282.80,159.70,404.20,465.00,416.40,441.10,300.50,59.50,7.40,2592.80,28.10,470.60,1726.60,367.50 +ASSAM & MEGHALAYA,1987,8.80,27.80,110.40,197.60,199.00,525.80,766.50,433.00,445.40,157.80,37.60,11.90,2921.40,36.50,506.90,2170.60,207.30 +ASSAM & MEGHALAYA,1988,7.30,46.10,82.30,157.90,568.60,403.80,644.20,773.40,329.60,168.30,74.30,5.90,3261.70,53.40,808.90,2151.00,248.50 +ASSAM & MEGHALAYA,1989,10.50,51.60,30.40,183.40,260.10,488.80,747.00,267.90,425.80,194.10,16.20,6.50,2682.10,62.00,473.80,1929.50,216.80 +ASSAM & MEGHALAYA,1990,19.20,46.90,96.70,333.70,304.10,513.80,446.40,348.80,441.10,208.30,7.00,5.20,2771.20,66.10,734.40,1750.20,220.50 +ASSAM & MEGHALAYA,1991,13.70,30.20,62.10,175.70,495.80,517.80,440.50,388.20,437.30,226.20,9.40,41.10,2838.00,43.90,733.60,1783.80,276.70 +ASSAM & MEGHALAYA,1992,14.70,46.30,62.00,114.50,292.30,450.90,491.40,339.30,296.90,125.00,14.30,12.10,2259.80,61.10,468.80,1578.50,151.40 +ASSAM & MEGHALAYA,1993,73.30,96.90,86.10,138.50,374.00,619.50,576.90,477.50,296.00,130.30,8.20,2.00,2879.20,170.20,598.60,1969.90,140.50 +ASSAM & MEGHALAYA,1994,26.60,42.50,157.20,161.30,282.00,477.60,308.60,308.70,178.50,147.00,15.90,15.40,2121.30,69.10,600.50,1273.40,178.30 +ASSAM & MEGHALAYA,1995,8.70,39.70,42.00,145.70,299.10,663.30,558.40,543.30,404.00,80.70,94.00,7.10,2886.10,48.50,486.80,2169.00,181.80 +ASSAM & MEGHALAYA,1996,12.80,23.20,101.60,99.20,415.60,397.70,499.60,421.80,224.40,267.20,3.50,0.20,2466.90,36.00,616.40,1543.50,271.00 +ASSAM & MEGHALAYA,1997,18.20,40.70,91.80,131.90,241.80,569.90,511.20,315.50,366.80,36.40,12.60,35.40,2372.20,58.90,465.60,1763.40,84.30 +ASSAM & MEGHALAYA,1998,11.80,31.50,136.80,185.70,250.60,581.20,604.40,549.50,212.30,190.00,48.90,0.40,2803.10,43.40,573.10,1947.40,239.20 +ASSAM & MEGHALAYA,1999,2.40,0.50,38.70,150.60,466.80,429.00,596.70,487.50,196.90,208.60,14.10,2.30,2594.20,2.90,656.10,1710.20,225.00 +ASSAM & MEGHALAYA,2000,20.50,13.70,65.90,238.50,375.10,540.20,313.30,513.20,299.90,83.90,22.20,0.40,2487.00,34.20,679.50,1666.60,106.60 +ASSAM & MEGHALAYA,2001,5.50,39.70,30.90,198.60,266.40,399.80,451.10,295.60,266.80,201.40,20.50,2.30,2178.40,45.20,495.80,1413.20,224.20 +ASSAM & MEGHALAYA,2002,20.20,5.70,83.30,279.90,286.90,502.50,565.10,312.50,209.70,49.50,69.40,7.90,2392.70,25.90,650.20,1589.80,126.80 +ASSAM & MEGHALAYA,2003,9.50,41.50,96.90,213.80,235.80,551.40,481.20,290.70,250.00,231.80,13.00,18.60,2434.10,51.00,546.50,1573.30,263.40 +ASSAM & MEGHALAYA,2004,15.30,19.50,72.80,340.80,342.20,397.90,848.40,286.20,317.20,340.80,6.50,6.60,2994.30,34.80,755.90,1849.70,353.90 +ASSAM & MEGHALAYA,2005,22.80,30.50,172.20,207.50,281.20,373.90,474.50,501.90,174.90,218.60,8.90,1.30,2468.30,53.30,660.90,1525.20,228.90 +ASSAM & MEGHALAYA,2006,0.70,40.90,20.80,169.00,325.70,395.90,350.30,209.70,252.30,97.60,25.10,10.70,1898.60,41.50,515.50,1208.10,133.50 +ASSAM & MEGHALAYA,2007,1.50,73.70,23.50,242.70,219.80,489.70,682.70,308.00,494.70,164.70,47.70,4.00,2752.80,75.20,486.10,1975.10,216.40 +ASSAM & MEGHALAYA,2008,29.70,14.50,107.50,156.20,210.60,414.60,493.20,508.60,267.50,133.40,2.20,1.60,2339.70,44.20,474.40,1683.90,137.20 +ASSAM & MEGHALAYA,2009,7.90,11.60,44.90,134.90,246.50,321.10,426.30,533.80,192.30,135.90,9.00,4.00,2068.20,19.50,426.20,1473.50,149.00 +ASSAM & MEGHALAYA,2010,0.50,3.10,99.60,389.30,393.40,569.70,415.10,387.00,318.30,116.20,11.60,7.60,2711.50,3.70,882.30,1690.20,135.30 +ASSAM & MEGHALAYA,2011,11.10,11.40,109.00,92.10,238.30,316.00,395.80,302.60,221.60,30.20,11.90,3.50,1743.40,22.50,439.40,1236.00,45.60 +ASSAM & MEGHALAYA,2012,15.20,6.90,28.80,279.10,185.80,729.70,444.30,289.20,411.60,199.40,17.10,2.30,2609.40,22.10,493.70,1874.80,218.80 +ASSAM & MEGHALAYA,2013,1.10,9.60,44.00,112.80,346.70,286.20,367.80,289.70,229.30,126.30,1.00,2.00,1816.40,10.70,503.50,1172.90,129.30 +ASSAM & MEGHALAYA,2014,2.00,28.30,29.30,51.50,351.10,426.40,374.40,484.60,420.20,35.00,3.00,0.40,2206.10,30.30,431.90,1705.50,38.50 +ASSAM & MEGHALAYA,2015,13.40,15.50,37.50,250.90,332.50,558.50,300.10,590.90,279.90,62.60,14.00,15.20,2470.90,28.90,620.90,1729.30,91.80 +NAGA MANI MIZO TRIPURA,1901,11.70,18.10,29.40,206.20,124.00,443.30,331.40,466.00,304.10,166.70,67.40,0.00,2168.40,29.80,359.60,1544.80,234.20 +NAGA MANI MIZO TRIPURA,1902,4.80,0.50,36.30,297.80,215.50,480.10,392.40,312.80,318.70,102.40,8.90,4.70,2175.00,5.20,549.70,1504.00,116.00 +NAGA MANI MIZO TRIPURA,1903,6.50,40.50,139.80,45.50,159.90,458.60,300.20,470.60,366.10,166.40,76.70,0.10,2230.70,47.00,345.10,1595.40,243.20 +NAGA MANI MIZO TRIPURA,1904,2.30,46.90,47.50,290.30,230.50,455.30,423.50,423.60,375.80,128.90,90.00,5.00,2519.80,49.30,568.30,1678.20,224.00 +NAGA MANI MIZO TRIPURA,1905,9.10,35.30,306.50,161.70,193.60,339.70,450.10,429.90,320.10,246.40,8.00,27.10,2527.60,44.50,661.80,1539.80,281.50 +NAGA MANI MIZO TRIPURA,1906,7.00,71.50,72.50,99.00,302.70,417.40,475.20,439.20,439.10,142.80,44.90,3.20,2514.40,78.50,474.20,1770.90,190.90 +NAGA MANI MIZO TRIPURA,1907,39.10,30.40,92.80,189.10,156.00,414.10,400.90,291.40,336.10,114.60,3.90,53.40,2121.70,69.50,437.90,1442.40,171.90 +NAGA MANI MIZO TRIPURA,1908,26.40,15.00,4.30,141.10,252.10,360.00,531.50,371.90,317.80,192.60,106.50,0.00,2319.30,41.40,397.50,1581.30,299.10 +NAGA MANI MIZO TRIPURA,1909,6.00,4.70,3.10,201.80,235.10,415.30,348.90,540.00,245.80,167.70,71.40,69.00,2308.70,10.70,439.90,1549.90,308.10 +NAGA MANI MIZO TRIPURA,1910,26.00,10.90,30.70,138.40,228.00,444.80,405.00,439.80,336.20,196.00,12.30,0.00,2267.90,36.90,397.00,1625.80,208.30 +NAGA MANI MIZO TRIPURA,1911,47.30,11.90,102.20,141.30,331.30,444.90,471.50,397.90,287.80,226.00,17.40,0.30,2479.80,59.10,574.90,1602.00,243.70 +NAGA MANI MIZO TRIPURA,1912,1.00,36.70,127.80,305.90,222.50,344.70,392.60,394.80,262.80,179.10,34.90,6.10,2308.80,37.70,656.20,1394.90,220.00 +NAGA MANI MIZO TRIPURA,1913,4.30,63.40,109.90,138.10,264.10,559.10,509.20,426.70,222.10,202.90,83.60,29.70,2613.20,67.70,512.20,1717.10,316.20 +NAGA MANI MIZO TRIPURA,1914,5.00,93.30,129.70,255.90,276.50,342.60,437.40,501.50,262.00,106.00,13.80,105.40,2529.20,98.40,662.10,1543.50,225.20 +NAGA MANI MIZO TRIPURA,1915,13.90,35.50,89.40,198.90,448.90,465.20,478.00,510.50,310.40,231.10,37.70,0.40,2819.90,49.40,737.20,1764.10,269.20 +NAGA MANI MIZO TRIPURA,1916,13.20,17.50,37.30,212.50,131.80,363.80,491.40,419.30,388.50,417.50,55.00,7.10,2555.00,30.70,381.60,1663.10,479.60 +NAGA MANI MIZO TRIPURA,1917,1.30,81.80,25.60,289.10,121.70,356.60,387.30,375.80,371.70,147.90,63.30,0.10,2222.20,83.10,436.40,1491.40,211.30 +NAGA MANI MIZO TRIPURA,1918,3.80,6.10,138.60,224.80,361.90,573.80,638.50,569.30,363.90,75.70,52.30,4.50,3013.30,9.90,725.30,2145.50,132.50 +NAGA MANI MIZO TRIPURA,1919,17.50,18.10,17.30,151.10,132.70,358.40,403.50,372.90,375.00,111.10,84.80,5.70,2047.90,35.60,301.00,1509.70,201.60 +NAGA MANI MIZO TRIPURA,1920,5.10,56.80,272.70,143.70,167.90,363.30,443.60,449.60,326.20,137.00,7.10,2.70,2375.80,61.90,584.30,1582.70,146.90 +NAGA MANI MIZO TRIPURA,1921,46.90,24.10,179.20,178.20,271.30,443.80,387.80,382.40,430.70,286.70,4.70,2.40,2638.20,70.90,628.80,1644.70,293.80 +NAGA MANI MIZO TRIPURA,1922,8.50,4.50,17.30,119.30,182.10,569.10,479.60,536.60,330.90,170.80,38.20,5.80,2462.60,13.00,318.70,1916.20,214.80 +NAGA MANI MIZO TRIPURA,1923,0.00,64.90,13.50,216.20,296.10,506.20,411.90,488.50,374.90,210.90,93.70,8.70,2685.50,64.90,525.80,1781.50,313.30 +NAGA MANI MIZO TRIPURA,1924,3.70,45.20,14.10,170.90,295.10,478.60,462.70,482.20,356.20,179.20,213.70,0.10,2701.70,48.80,480.10,1779.70,393.00 +NAGA MANI MIZO TRIPURA,1925,43.00,36.40,35.00,195.60,385.50,362.40,461.40,440.30,280.10,170.70,37.00,0.00,2447.50,79.40,616.20,1544.30,207.70 +NAGA MANI MIZO TRIPURA,1926,24.00,70.10,155.50,177.10,229.70,361.10,477.60,441.70,287.30,155.60,36.40,47.10,2463.20,94.10,562.30,1567.70,239.10 +NAGA MANI MIZO TRIPURA,1927,41.40,103.50,56.30,360.40,245.20,363.80,498.40,456.60,533.90,178.40,48.60,0.80,2887.50,145.00,662.00,1852.70,227.90 +NAGA MANI MIZO TRIPURA,1928,4.30,28.50,52.30,65.30,309.00,463.20,397.70,468.30,392.80,272.50,18.40,0.10,2472.40,32.80,426.70,1722.00,291.00 +NAGA MANI MIZO TRIPURA,1929,38.30,7.70,48.00,242.70,433.00,859.10,385.00,371.40,314.80,121.70,11.30,26.40,2859.40,46.00,723.70,1930.40,159.40 +NAGA MANI MIZO TRIPURA,1930,22.60,53.60,107.50,161.00,223.10,506.60,438.20,385.60,256.70,100.80,230.70,1.00,2487.40,76.30,491.60,1587.00,332.50 +NAGA MANI MIZO TRIPURA,1931,2.70,53.00,59.60,109.90,360.60,388.80,520.00,300.40,364.10,209.90,69.20,23.00,2461.10,55.80,530.10,1573.30,302.10 +NAGA MANI MIZO TRIPURA,1932,6.10,69.70,99.10,162.20,323.60,600.70,491.20,402.40,376.20,80.40,145.90,4.30,2761.70,75.70,584.80,1870.50,230.60 +NAGA MANI MIZO TRIPURA,1933,2.50,19.70,34.30,167.00,298.40,463.40,476.30,603.50,259.60,113.40,9.60,4.10,2451.80,22.20,499.70,1802.80,127.10 +NAGA MANI MIZO TRIPURA,1934,16.00,135.10,57.10,191.10,313.20,567.20,618.60,368.30,336.40,227.70,197.30,12.80,3040.80,151.10,561.30,1890.60,437.90 +NAGA MANI MIZO TRIPURA,1935,0.60,48.30,43.70,173.30,171.20,547.10,506.40,553.50,339.10,124.80,33.10,2.20,2543.30,48.80,388.20,1946.10,160.10 +NAGA MANI MIZO TRIPURA,1936,19.30,73.10,104.60,227.50,489.50,418.30,529.70,507.60,309.40,202.60,22.60,13.00,2917.10,92.40,821.60,1765.00,238.20 +NAGA MANI MIZO TRIPURA,1937,0.10,60.00,37.30,85.40,337.10,528.90,490.10,614.80,291.00,207.10,17.90,72.00,2741.60,60.10,459.80,1924.70,297.00 +NAGA MANI MIZO TRIPURA,1938,29.20,29.20,133.80,153.60,429.00,494.60,413.60,491.40,441.70,243.90,111.70,0.00,2971.60,58.40,716.40,1841.20,355.60 +NAGA MANI MIZO TRIPURA,1939,2.60,59.30,34.50,203.70,274.40,449.60,638.80,333.90,380.80,198.80,30.00,2.00,2608.30,61.80,512.60,1803.10,230.80 +NAGA MANI MIZO TRIPURA,1940,0.30,74.60,230.90,35.50,325.60,496.20,458.20,345.70,373.30,131.60,31.40,23.60,2526.70,74.80,592.00,1673.40,186.50 +NAGA MANI MIZO TRIPURA,1941,14.10,63.10,34.10,256.60,563.10,689.40,489.50,372.60,288.20,143.30,44.20,7.90,2966.20,77.20,853.80,1839.70,195.50 +NAGA MANI MIZO TRIPURA,1942,6.00,15.70,78.70,250.40,305.30,528.70,403.30,461.80,420.80,65.40,143.20,1.50,2680.90,21.70,634.40,1814.60,210.10 +NAGA MANI MIZO TRIPURA,1943,68.40,28.80,131.30,143.70,210.30,496.10,422.50,485.20,354.90,84.00,2.20,0.60,2427.90,97.20,485.20,1758.80,86.70 +NAGA MANI MIZO TRIPURA,1944,91.40,20.20,69.70,128.60,321.80,670.50,527.90,440.70,490.80,110.50,4.40,0.70,2877.30,111.60,520.20,2130.00,115.60 +NAGA MANI MIZO TRIPURA,1945,68.70,60.90,67.70,170.40,354.20,595.30,573.90,509.70,378.80,205.60,13.30,53.30,3051.90,129.60,592.30,2057.70,272.20 +NAGA MANI MIZO TRIPURA,1946,0.00,19.10,189.30,237.50,352.40,517.50,647.70,397.90,305.10,311.40,7.70,50.50,3036.20,19.10,779.20,1868.20,369.60 +NAGA MANI MIZO TRIPURA,1947,3.00,4.30,44.30,176.00,374.40,723.90,640.50,491.10,415.60,306.00,1.70,29.70,3210.20,7.30,594.60,2271.10,337.30 +NAGA MANI MIZO TRIPURA,1948,5.50,65.10,54.30,206.50,468.40,410.30,500.10,472.50,424.20,140.00,71.40,3.70,2822.10,70.60,729.30,1807.20,215.10 +NAGA MANI MIZO TRIPURA,1949,8.10,12.60,67.40,370.20,419.60,562.80,507.70,416.90,427.50,177.30,4.20,2.00,2976.30,20.60,857.30,1914.90,183.50 +NAGA MANI MIZO TRIPURA,1950,12.30,59.70,79.10,87.80,207.40,407.40,449.40,535.30,255.40,237.50,82.90,8.70,2423.00,72.10,374.30,1647.50,329.10 +NAGA MANI MIZO TRIPURA,1951,3.90,0.20,62.40,360.10,233.70,495.00,436.20,440.50,191.10,310.60,54.90,20.80,2609.30,4.10,656.30,1562.70,386.20 +NAGA MANI MIZO TRIPURA,1952,9.60,6.50,97.10,208.20,345.90,442.60,556.80,422.80,320.50,323.60,76.20,1.10,2810.90,16.10,651.20,1742.70,400.90 +NAGA MANI MIZO TRIPURA,1953,7.40,16.50,98.40,90.00,453.50,570.90,387.00,424.30,443.80,136.20,25.00,8.70,2661.60,23.80,641.90,1825.90,169.90 +NAGA MANI MIZO TRIPURA,1954,12.80,52.40,37.70,165.30,300.20,619.80,491.40,558.30,361.70,294.20,2.40,8.80,2905.10,65.20,503.30,2031.20,305.40 +NAGA MANI MIZO TRIPURA,1955,6.20,5.70,161.30,213.60,280.60,461.40,559.20,514.70,253.80,183.50,220.20,5.10,2865.00,11.90,655.50,1789.00,408.70 +NAGA MANI MIZO TRIPURA,1956,18.30,1.30,102.20,115.50,474.00,758.90,529.80,469.60,257.50,187.10,101.10,7.40,3022.70,19.60,691.70,2015.70,295.60 +NAGA MANI MIZO TRIPURA,1957,59.10,60.60,10.20,104.80,300.10,409.10,425.70,429.10,354.40,148.30,0.80,1.70,2303.90,119.70,415.10,1618.30,150.80 +NAGA MANI MIZO TRIPURA,1958,6.20,87.20,18.30,93.70,400.60,256.40,308.30,254.80,299.50,238.50,2.30,2.70,1968.60,93.40,512.60,1119.00,243.50 +NAGA MANI MIZO TRIPURA,1959,39.90,77.70,148.00,74.00,260.00,378.50,396.30,357.30,239.10,352.80,0.10,3.90,2327.60,117.60,482.00,1371.20,356.80 +NAGA MANI MIZO TRIPURA,1960,0.00,6.10,24.90,34.20,193.80,406.40,374.90,286.60,255.60,165.90,51.30,0.30,1799.90,6.10,252.80,1323.50,217.50 +NAGA MANI MIZO TRIPURA,1961,9.50,37.50,193.30,76.90,212.10,332.50,316.50,342.80,258.80,96.10,24.40,0.80,1901.20,47.00,482.40,1250.50,121.30 +NAGA MANI MIZO TRIPURA,1962,11.20,26.60,5.40,139.80,156.60,554.60,298.80,356.60,142.50,130.40,0.00,0.00,1822.50,37.80,301.90,1352.40,130.40 +NAGA MANI MIZO TRIPURA,1963,0.00,4.60,50.70,179.30,278.50,687.90,510.30,383.00,494.60,373.40,6.50,1.20,2970.00,4.60,508.40,2075.90,381.10 +NAGA MANI MIZO TRIPURA,1964,4.00,37.10,67.90,280.60,303.20,357.80,484.40,242.00,213.30,284.70,46.30,7.50,2328.70,41.10,651.70,1297.40,338.40 +NAGA MANI MIZO TRIPURA,1965,1.90,61.50,35.90,59.40,169.50,520.50,373.40,323.00,262.20,164.10,22.60,37.00,2031.00,63.40,264.70,1479.10,223.70 +NAGA MANI MIZO TRIPURA,1966,15.00,2.70,39.80,85.30,190.30,666.80,399.30,405.00,361.50,207.00,40.90,65.10,2478.60,17.70,315.40,1832.60,313.00 +NAGA MANI MIZO TRIPURA,1967,51.50,33.60,129.50,195.80,247.80,311.70,388.00,334.00,341.30,184.80,10.90,1.10,2229.90,85.00,573.10,1374.90,196.80 +NAGA MANI MIZO TRIPURA,1968,17.30,20.90,80.90,142.20,253.80,396.10,531.90,391.00,178.30,68.90,28.70,0.00,2110.00,38.10,476.90,1497.40,97.60 +NAGA MANI MIZO TRIPURA,1969,20.10,2.40,124.60,189.80,73.50,606.60,868.30,1347.20,228.10,126.30,23.20,0.00,3610.00,22.40,387.90,3050.20,149.50 +NAGA MANI MIZO TRIPURA,1970,45.80,306.30,103.60,160.10,315.90,541.70,976.70,836.70,486.20,425.60,116.70,1.00,4316.20,352.10,579.60,2841.30,543.20 +NAGA MANI MIZO TRIPURA,1971,28.40,67.60,12.40,312.60,248.00,543.20,624.00,553.10,421.20,171.30,94.60,4.50,3080.70,96.00,572.90,2141.50,270.50 +NAGA MANI MIZO TRIPURA,1972,4.50,46.30,32.80,145.00,169.10,235.60,262.70,270.80,129.60,45.00,12.50,0.00,1353.80,50.70,347.00,898.70,57.50 +NAGA MANI MIZO TRIPURA,1973,16.80,46.00,29.30,135.30,329.00,367.20,260.00,323.90,232.70,159.70,162.60,43.60,2105.80,62.70,493.50,1183.80,365.80 +NAGA MANI MIZO TRIPURA,1974,8.90,2.40,98.70,160.70,218.80,438.10,517.30,361.50,273.40,167.80,81.80,0.20,2329.60,11.30,478.10,1590.30,249.90 +NAGA MANI MIZO TRIPURA,1975,1.20,24.50,17.50,164.20,243.70,348.80,526.60,252.90,278.90,205.10,146.10,0.30,2209.70,25.70,425.30,1407.10,351.50 +NAGA MANI MIZO TRIPURA,1976,3.30,51.30,113.70,187.80,287.10,861.10,507.80,365.00,175.10,64.80,34.20,0.10,2651.40,54.70,588.60,1909.00,99.20 +NAGA MANI MIZO TRIPURA,1977,14.20,34.90,27.70,383.80,303.70,452.00,389.10,355.80,193.00,149.60,38.20,16.60,2358.50,49.10,715.10,1389.90,204.40 +NAGA MANI MIZO TRIPURA,1978,0.70,4.00,51.60,147.50,449.40,496.70,357.80,277.00,273.90,70.40,21.60,0.00,2150.80,4.70,648.60,1405.50,92.00 +NAGA MANI MIZO TRIPURA,1979,1.30,8.30,72.90,55.40,158.80,361.80,370.00,309.70,272.90,57.90,47.10,33.10,1749.20,9.60,287.10,1314.40,138.10 +NAGA MANI MIZO TRIPURA,1980,7.20,42.40,101.60,145.70,461.50,373.30,327.40,312.10,364.40,168.50,0.10,0.70,2305.00,49.60,708.80,1377.30,169.30 +NAGA MANI MIZO TRIPURA,1981,26.60,26.30,105.50,268.00,377.50,223.20,448.10,329.70,213.20,33.10,11.50,9.60,2072.20,53.00,750.90,1214.20,54.20 +NAGA MANI MIZO TRIPURA,1982,0.10,54.80,73.80,224.60,103.30,371.90,373.60,466.30,284.50,32.80,38.10,3.70,2027.50,54.90,401.70,1496.30,74.50 +NAGA MANI MIZO TRIPURA,1983,19.20,49.30,244.90,303.80,402.40,380.90,329.70,392.80,239.70,189.00,6.20,30.20,2588.00,68.40,951.10,1343.00,225.40 +NAGA MANI MIZO TRIPURA,1984,17.40,1.80,5.10,121.10,743.00,514.60,255.30,387.20,250.20,120.40,9.10,28.80,2454.00,19.20,869.20,1407.30,158.30 +NAGA MANI MIZO TRIPURA,1985,6.40,36.20,87.10,162.80,377.60,507.50,275.50,301.90,279.40,52.30,8.70,9.90,2105.30,42.60,627.50,1364.20,70.90 +NAGA MANI MIZO TRIPURA,1986,8.80,7.30,17.70,263.40,153.00,325.50,376.90,364.60,355.80,311.70,131.20,26.30,2342.30,16.10,434.10,1422.80,469.30 +NAGA MANI MIZO TRIPURA,1987,7.70,13.10,68.90,195.00,144.90,420.80,447.20,422.70,388.60,172.20,74.00,6.10,2361.30,20.80,408.80,1679.40,252.30 +NAGA MANI MIZO TRIPURA,1988,0.40,33.60,83.50,141.90,470.20,466.40,540.00,407.40,298.60,298.60,75.30,4.30,2820.20,34.00,695.60,1712.40,378.20 +NAGA MANI MIZO TRIPURA,1989,0.70,27.10,17.20,139.10,206.90,367.10,470.60,393.60,376.30,352.90,5.30,2.30,2359.00,27.80,363.20,1607.60,360.40 +NAGA MANI MIZO TRIPURA,1990,0.20,32.50,197.60,274.90,314.60,380.00,387.90,344.70,339.40,168.20,99.30,42.90,2582.30,32.70,787.20,1452.00,310.40 +NAGA MANI MIZO TRIPURA,1991,27.50,41.90,64.10,253.50,619.40,456.60,297.30,326.00,387.30,291.40,28.00,58.90,2851.90,69.40,937.00,1467.20,378.30 +NAGA MANI MIZO TRIPURA,1992,4.40,67.10,23.30,95.70,250.20,343.80,439.10,397.20,323.60,243.20,25.40,8.50,2221.40,71.50,369.20,1503.60,277.10 +NAGA MANI MIZO TRIPURA,1993,11.10,139.30,92.80,155.40,499.40,539.60,530.90,428.90,302.90,165.40,16.00,0.00,2881.70,150.40,747.70,1802.30,181.40 +NAGA MANI MIZO TRIPURA,1994,9.50,30.10,219.30,134.70,130.70,256.20,305.70,335.70,161.60,102.00,27.00,0.00,1712.50,39.60,484.70,1059.20,129.00 +NAGA MANI MIZO TRIPURA,1995,5.40,36.50,52.00,68.70,254.50,425.80,403.60,495.90,312.50,129.70,155.30,0.20,2340.20,41.90,375.20,1637.90,285.30 +NAGA MANI MIZO TRIPURA,1996,8.10,30.00,153.90,97.30,284.20,314.00,395.10,363.50,341.30,179.70,18.80,8.70,2194.50,38.10,535.30,1413.90,207.20 +NAGA MANI MIZO TRIPURA,1997,11.30,23.70,134.40,112.00,255.00,334.00,598.50,273.90,361.60,48.60,17.80,41.30,2212.00,35.10,501.40,1567.90,107.70 +NAGA MANI MIZO TRIPURA,1998,28.10,31.60,136.40,164.60,352.20,297.60,480.60,367.30,222.30,97.90,46.50,0.30,2225.40,59.70,653.20,1367.90,144.70 +NAGA MANI MIZO TRIPURA,1999,2.20,0.00,33.50,26.30,397.50,358.40,422.70,391.30,338.50,227.70,16.50,18.30,2233.00,2.20,457.30,1510.90,262.60 +NAGA MANI MIZO TRIPURA,2000,22.50,26.10,129.10,214.20,403.60,325.40,269.20,465.00,298.30,185.20,24.20,1.10,2363.90,48.60,746.90,1357.90,210.40 +NAGA MANI MIZO TRIPURA,2001,1.50,46.90,38.80,83.60,313.80,478.00,322.60,263.00,269.00,266.40,65.40,0.20,2149.00,48.40,436.10,1332.60,332.00 +NAGA MANI MIZO TRIPURA,2002,18.60,3.90,62.70,143.80,438.70,351.60,462.20,358.40,225.70,98.90,71.90,6.00,2242.30,22.50,645.10,1397.80,176.90 +NAGA MANI MIZO TRIPURA,2003,3.80,11.50,78.00,158.90,265.60,590.90,262.40,281.70,288.40,175.10,5.10,40.90,2162.20,15.30,502.40,1423.40,221.10 +NAGA MANI MIZO TRIPURA,2004,4.80,2.70,11.00,341.50,211.00,449.20,558.60,284.30,351.00,132.70,6.40,0.50,2353.70,7.40,563.50,1643.20,139.60 +NAGA MANI MIZO TRIPURA,2005,6.40,15.00,118.60,98.10,237.00,212.30,301.50,334.80,292.60,194.30,15.60,10.50,1836.70,21.40,453.70,1141.10,220.40 +NAGA MANI MIZO TRIPURA,2006,0.60,12.40,5.50,111.10,382.20,445.60,335.00,241.60,231.10,90.40,13.00,3.70,1872.00,12.90,498.80,1253.20,107.10 +NAGA MANI MIZO TRIPURA,2007,7.90,54.70,28.70,220.40,276.70,446.30,430.00,373.80,426.60,180.50,82.60,10.10,2538.20,62.60,525.80,1676.60,273.20 +NAGA MANI MIZO TRIPURA,2008,30.70,13.80,49.60,54.90,200.80,327.40,333.30,358.60,223.70,150.20,4.70,1.20,1748.90,44.40,305.30,1243.00,156.10 +NAGA MANI MIZO TRIPURA,2009,0.00,3.20,27.50,93.10,209.50,271.90,295.80,380.90,271.30,158.20,26.10,0.20,1737.70,3.20,330.10,1219.90,184.50 +NAGA MANI MIZO TRIPURA,2010,1.00,7.90,85.80,161.50,294.00,411.60,367.50,393.20,309.80,220.20,9.20,33.50,2295.20,8.90,541.40,1482.00,262.90 +NAGA MANI MIZO TRIPURA,2011,12.60,3.60,51.40,81.10,334.90,374.20,313.30,367.60,258.30,92.60,2.40,0.20,1892.10,16.10,467.40,1313.40,95.20 +NAGA MANI MIZO TRIPURA,2012,24.50,10.20,20.30,243.50,163.50,396.20,280.10,342.70,248.70,160.90,32.00,0.40,1922.90,34.70,427.30,1267.60,193.30 +NAGA MANI MIZO TRIPURA,2013,0.20,5.70,19.70,60.30,348.90,206.60,255.90,291.30,241.40,125.60,0.30,1.20,1557.20,5.90,428.90,995.20,127.10 +NAGA MANI MIZO TRIPURA,2014,1.20,21.00,25.40,49.60,192.50,268.30,295.70,372.30,300.90,69.60,3.30,0.10,1599.90,22.20,267.50,1237.20,73.00 +NAGA MANI MIZO TRIPURA,2015,14.40,14.20,21.60,253.50,198.30,283.90,413.60,334.20,255.90,118.70,3.90,10.00,1922.40,28.70,473.40,1287.70,132.60 +SUB HIMALAYAN WEST BENGAL & SIKKIM,1901,26.50,14.80,14.10,29.20,195.50,488.40,524.80,501.10,242.70,55.50,17.90,2.60,2113.20,41.30,238.90,1757.00,76.10 +SUB HIMALAYAN WEST BENGAL & SIKKIM,1902,1.20,0.70,87.10,126.10,271.30,539.20,671.00,603.80,799.90,74.40,5.60,0.00,3180.40,1.90,484.60,2613.90,80.10 +SUB HIMALAYAN WEST BENGAL & SIKKIM,1903,5.50,8.70,19.60,18.60,163.60,541.20,431.50,708.80,365.20,141.30,0.30,0.00,2404.50,14.30,201.90,2046.70,141.60 +SUB HIMALAYAN WEST BENGAL & SIKKIM,1904,3.40,29.20,0.90,124.30,333.60,274.20,500.40,468.50,260.60,164.80,8.90,1.10,2169.90,32.50,458.80,1503.70,174.80 +SUB HIMALAYAN WEST BENGAL & SIKKIM,1905,12.00,31.20,51.90,104.40,290.60,524.80,523.10,1036.60,321.10,87.90,2.70,18.70,3005.00,43.20,447.00,2405.60,109.30 +SUB HIMALAYAN WEST BENGAL & SIKKIM,1906,9.30,49.20,30.40,13.00,198.10,438.00,706.40,816.00,208.60,140.50,8.00,0.40,2618.00,58.50,241.50,2169.00,149.00 +SUB HIMALAYAN WEST BENGAL & SIKKIM,1907,10.40,20.80,71.10,108.80,156.20,408.10,889.80,358.80,456.10,40.00,5.80,4.10,2530.00,31.20,336.10,2112.90,49.80 +SUB HIMALAYAN WEST BENGAL & SIKKIM,1908,10.60,32.90,9.80,53.80,315.00,368.60,449.10,268.50,441.60,36.00,2.30,0.00,1988.20,43.50,378.60,1527.80,38.30 +SUB HIMALAYAN WEST BENGAL & SIKKIM,1909,2.10,8.60,0.00,147.80,191.90,896.00,340.90,600.50,340.20,136.80,3.60,1.80,2670.10,10.70,339.70,2177.50,142.20 +SUB HIMALAYAN WEST BENGAL & SIKKIM,1910,2.50,17.40,73.20,47.40,170.40,833.70,859.80,489.20,353.10,188.00,11.20,0.20,3046.10,19.90,291.10,2535.70,199.30 +SUB HIMALAYAN WEST BENGAL & SIKKIM,1911,22.90,6.70,40.80,117.30,315.20,575.40,853.20,430.40,493.30,326.40,12.40,0.10,3194.20,29.70,473.30,2352.30,338.90 +SUB HIMALAYAN WEST BENGAL & SIKKIM,1912,2.30,12.00,81.80,134.70,277.30,397.80,743.50,553.30,335.60,133.00,121.90,0.50,2793.60,14.30,493.80,2030.10,255.40 +SUB HIMALAYAN WEST BENGAL & SIKKIM,1913,0.70,35.10,46.50,52.20,301.40,736.90,596.10,477.70,476.60,153.70,4.80,53.20,2935.10,35.90,400.10,2287.40,211.80 +SUB HIMALAYAN WEST BENGAL & SIKKIM,1914,2.20,70.00,9.10,139.20,247.70,402.20,351.30,741.70,392.80,43.00,14.80,0.30,2414.10,72.20,396.00,1887.90,58.00 +SUB HIMALAYAN WEST BENGAL & SIKKIM,1915,1.00,52.90,50.40,72.70,366.40,352.70,509.10,610.70,359.00,116.50,13.00,0.60,2504.90,53.90,489.50,1831.50,130.10 +SUB HIMALAYAN WEST BENGAL & SIKKIM,1916,6.60,17.60,8.70,165.30,305.40,649.00,1020.80,514.90,571.90,209.90,5.60,1.10,3476.80,24.20,479.40,2756.60,216.60 +SUB HIMALAYAN WEST BENGAL & SIKKIM,1917,1.00,21.40,15.10,23.40,226.10,619.40,740.50,410.50,428.00,354.30,1.70,0.40,2841.60,22.40,264.50,2198.40,356.30 +SUB HIMALAYAN WEST BENGAL & SIKKIM,1918,0.80,1.50,17.20,141.90,306.30,682.60,703.80,746.90,345.00,33.60,2.00,0.10,2981.40,2.20,465.30,2478.20,35.60 +SUB HIMALAYAN WEST BENGAL & SIKKIM,1919,19.60,5.00,5.50,93.40,177.80,558.00,704.00,285.90,518.20,170.50,6.10,0.40,2544.50,24.60,276.70,2066.10,177.00 +SUB HIMALAYAN WEST BENGAL & SIKKIM,1920,0.80,24.20,80.50,66.00,148.90,615.20,389.80,608.70,788.80,161.00,0.20,0.00,2884.10,25.10,295.30,2402.50,161.20 +SUB HIMALAYAN WEST BENGAL & SIKKIM,1921,37.90,6.00,54.90,157.40,503.10,589.20,970.20,521.40,479.60,183.80,2.70,7.10,3513.40,43.90,715.50,2560.40,193.70 +SUB HIMALAYAN WEST BENGAL & SIKKIM,1922,17.80,2.50,5.60,45.40,217.10,803.00,719.80,526.30,571.20,87.20,1.90,3.90,3001.90,20.40,268.10,2620.30,93.10 +SUB HIMALAYAN WEST BENGAL & SIKKIM,1923,0.00,40.20,3.80,104.20,336.50,536.90,656.30,228.10,504.10,76.50,0.60,1.70,2489.00,40.20,444.50,1925.40,78.90 +SUB HIMALAYAN WEST BENGAL & SIKKIM,1924,0.80,3.50,4.10,110.90,264.70,693.10,732.00,491.20,439.00,128.20,81.40,1.90,2950.90,4.30,379.70,2355.40,211.50 +SUB HIMALAYAN WEST BENGAL & SIKKIM,1925,3.00,6.10,13.10,261.60,284.60,554.10,446.00,664.50,568.60,69.30,14.80,0.80,2886.60,9.10,559.30,2233.30,84.90 +SUB HIMALAYAN WEST BENGAL & SIKKIM,1926,12.70,2.90,66.50,43.70,236.10,580.80,853.80,396.40,331.80,102.80,0.20,9.90,2637.70,15.60,346.40,2162.80,112.90 +SUB HIMALAYAN WEST BENGAL & SIKKIM,1927,21.00,33.90,56.40,44.50,300.40,682.10,518.10,408.40,543.50,107.30,16.30,0.30,2732.20,55.00,401.20,2152.00,124.00 +SUB HIMALAYAN WEST BENGAL & SIKKIM,1928,25.50,11.80,5.40,92.60,210.80,527.80,666.20,660.90,395.90,255.30,14.90,1.90,2868.90,37.30,308.90,2250.70,272.10 +SUB HIMALAYAN WEST BENGAL & SIKKIM,1929,49.70,2.00,37.90,126.40,235.00,594.00,554.50,392.60,400.90,513.50,10.50,14.30,2931.30,51.70,399.40,1942.00,538.30 +SUB HIMALAYAN WEST BENGAL & SIKKIM,1930,17.60,19.90,51.70,61.30,192.30,495.10,346.10,475.80,329.60,140.40,52.00,2.40,2184.50,37.50,305.40,1646.70,194.90 +SUB HIMALAYAN WEST BENGAL & SIKKIM,1931,2.80,9.70,28.20,98.60,296.30,523.70,793.80,408.70,585.30,112.10,12.70,4.50,2876.50,12.40,423.20,2311.60,129.30 +SUB HIMALAYAN WEST BENGAL & SIKKIM,1932,3.00,7.00,8.60,72.40,255.90,731.30,363.50,582.90,380.10,154.40,132.10,24.40,2715.60,10.00,336.90,2057.80,310.90 +SUB HIMALAYAN WEST BENGAL & SIKKIM,1933,16.50,9.40,0.50,112.40,206.00,565.30,653.30,512.30,284.10,149.30,3.90,1.10,2514.20,25.90,318.90,2015.00,154.40 +SUB HIMALAYAN WEST BENGAL & SIKKIM,1934,10.50,60.20,0.40,86.80,227.50,517.20,656.20,455.60,436.30,151.40,4.00,6.80,2612.90,70.70,314.70,2065.40,162.20 +SUB HIMALAYAN WEST BENGAL & SIKKIM,1935,9.50,28.40,16.60,24.20,248.90,609.20,365.40,935.10,521.70,18.00,6.30,1.80,2785.10,37.90,289.70,2431.50,26.10 +SUB HIMALAYAN WEST BENGAL & SIKKIM,1936,3.70,8.90,46.70,85.70,274.80,410.40,663.80,508.70,536.00,113.20,0.10,8.30,2660.30,12.50,407.30,2118.80,121.60 +SUB HIMALAYAN WEST BENGAL & SIKKIM,1937,0.00,68.60,2.20,63.70,270.20,317.20,477.30,654.00,354.80,351.60,6.70,2.00,2568.40,68.60,336.00,1803.40,360.40 +SUB HIMALAYAN WEST BENGAL & SIKKIM,1938,0.80,8.20,7.60,76.20,460.90,889.20,699.40,539.00,461.00,102.40,4.40,0.10,3249.30,8.90,544.70,2588.70,106.90 +SUB HIMALAYAN WEST BENGAL & SIKKIM,1939,0.00,19.80,5.80,6.70,268.30,626.30,605.90,460.50,444.60,146.30,6.50,0.30,2591.10,19.80,280.80,2137.40,153.10 +SUB HIMALAYAN WEST BENGAL & SIKKIM,1940,0.10,54.20,121.20,24.70,217.10,469.10,600.30,400.80,408.40,11.70,9.50,3.10,2320.20,54.20,363.00,1878.70,24.30 +SUB HIMALAYAN WEST BENGAL & SIKKIM,1941,3.80,6.30,12.70,85.40,378.80,470.10,544.90,582.10,452.80,154.50,22.00,4.50,2718.00,10.10,477.00,2049.90,181.00 +SUB HIMALAYAN WEST BENGAL & SIKKIM,1942,6.60,19.50,45.70,186.90,253.80,537.80,382.20,363.80,511.70,49.70,7.60,0.00,2365.40,26.10,486.40,1795.60,57.30 +SUB HIMALAYAN WEST BENGAL & SIKKIM,1943,42.00,38.80,30.30,185.00,209.60,828.90,450.00,555.70,532.80,39.60,4.00,0.90,2917.60,80.80,424.90,2367.40,44.50 +SUB HIMALAYAN WEST BENGAL & SIKKIM,1944,37.10,15.70,53.90,105.90,248.80,585.90,446.90,416.70,613.30,52.10,6.90,0.00,2583.20,52.80,408.60,2062.80,59.00 +SUB HIMALAYAN WEST BENGAL & SIKKIM,1945,27.80,21.30,6.90,120.30,305.40,398.30,551.30,680.00,406.90,235.90,0.00,1.30,2755.40,49.20,432.60,2036.50,237.10 +SUB HIMALAYAN WEST BENGAL & SIKKIM,1946,0.00,11.60,34.20,182.80,248.70,523.40,599.90,401.10,461.70,297.00,7.80,0.20,2768.50,11.60,465.70,1986.10,305.10 +SUB HIMALAYAN WEST BENGAL & SIKKIM,1947,1.60,0.80,93.40,76.00,171.10,377.70,688.10,439.20,542.00,141.90,1.90,0.50,2534.10,2.40,340.50,2046.90,144.30 +SUB HIMALAYAN WEST BENGAL & SIKKIM,1948,0.50,15.50,21.50,178.30,357.50,556.30,798.00,415.50,349.20,185.80,57.10,1.30,2936.60,15.90,557.30,2119.10,244.20 +SUB HIMALAYAN WEST BENGAL & SIKKIM,1949,9.60,25.50,14.10,281.80,351.90,660.90,645.10,586.30,395.80,311.40,0.10,5.10,3287.70,35.10,647.80,2288.10,316.70 +SUB HIMALAYAN WEST BENGAL & SIKKIM,1950,0.30,19.60,27.90,48.40,210.40,747.50,570.90,639.90,366.20,131.00,0.20,0.30,2762.50,19.90,286.70,2324.50,131.50 +SUB HIMALAYAN WEST BENGAL & SIKKIM,1951,1.00,0.50,22.70,69.30,239.80,546.50,778.30,503.70,326.10,158.00,37.30,0.00,2683.10,1.50,331.70,2154.50,195.40 +SUB HIMALAYAN WEST BENGAL & SIKKIM,1952,1.30,22.20,80.80,168.20,420.80,580.60,713.00,522.90,587.90,148.80,20.70,3.70,3270.70,23.40,669.90,2404.30,173.10 +SUB HIMALAYAN WEST BENGAL & SIKKIM,1953,28.20,10.70,88.10,64.50,253.20,427.70,755.20,315.50,540.70,105.70,0.40,4.10,2594.00,39.00,405.80,2039.10,110.20 +SUB HIMALAYAN WEST BENGAL & SIKKIM,1954,15.70,10.20,10.00,71.10,308.90,841.50,961.50,496.20,250.80,85.60,0.70,3.50,3055.60,25.90,390.00,2549.90,89.70 +SUB HIMALAYAN WEST BENGAL & SIKKIM,1955,4.60,2.80,34.60,71.50,220.50,541.00,1064.60,626.20,365.00,51.30,6.10,4.60,2992.90,7.40,326.60,2596.90,62.00 +SUB HIMALAYAN WEST BENGAL & SIKKIM,1956,14.80,1.40,42.60,164.90,420.90,747.90,471.40,486.80,285.20,215.80,30.10,3.60,2885.50,16.20,628.40,1991.40,249.60 +SUB HIMALAYAN WEST BENGAL & SIKKIM,1957,103.00,8.90,25.50,10.60,167.70,430.20,650.60,535.40,208.40,73.70,7.70,3.80,2225.50,112.00,203.70,1824.60,85.10 +SUB HIMALAYAN WEST BENGAL & SIKKIM,1958,8.10,17.50,14.80,120.60,269.40,487.80,500.30,898.10,353.20,145.60,1.80,3.00,2820.30,25.60,404.80,2239.40,150.40 +SUB HIMALAYAN WEST BENGAL & SIKKIM,1959,99.80,5.70,64.30,111.60,218.70,565.90,538.60,291.70,337.90,345.00,0.90,0.10,2580.10,105.50,394.60,1734.20,346.00 +SUB HIMALAYAN WEST BENGAL & SIKKIM,1960,0.10,6.50,52.00,4.80,293.20,407.20,764.50,387.20,623.00,71.90,0.00,0.00,2610.50,6.60,350.00,2182.00,71.90 +SUB HIMALAYAN WEST BENGAL & SIKKIM,1961,11.50,38.90,19.60,39.30,279.20,448.30,448.90,542.00,341.50,127.50,2.10,5.40,2304.20,50.40,338.10,1780.80,135.00 +SUB HIMALAYAN WEST BENGAL & SIKKIM,1962,33.00,21.70,14.40,57.20,318.70,537.10,516.60,663.20,279.50,77.40,0.40,2.60,2521.70,54.70,390.30,1996.40,80.30 +SUB HIMALAYAN WEST BENGAL & SIKKIM,1963,2.10,0.70,32.20,103.90,323.60,409.40,676.10,611.90,267.70,152.50,21.70,3.00,2604.70,2.70,459.70,1965.10,177.20 +SUB HIMALAYAN WEST BENGAL & SIKKIM,1964,0.00,1.20,9.40,127.00,184.70,613.20,959.10,445.60,486.80,151.00,3.40,0.10,2981.40,1.20,321.00,2504.70,154.50 +SUB HIMALAYAN WEST BENGAL & SIKKIM,1965,0.20,22.00,48.20,69.50,232.40,444.60,697.60,830.20,345.70,39.50,32.70,0.20,2762.70,22.10,350.10,2318.20,72.30 +SUB HIMALAYAN WEST BENGAL & SIKKIM,1966,29.50,7.60,3.00,51.50,231.70,287.50,741.50,682.80,357.30,100.90,18.30,3.80,2515.30,37.10,286.20,2069.10,123.00 +SUB HIMALAYAN WEST BENGAL & SIKKIM,1967,2.30,0.10,98.80,85.30,213.70,727.50,901.60,274.10,409.40,128.70,7.90,11.10,2860.50,2.40,397.80,2312.60,147.70 +SUB HIMALAYAN WEST BENGAL & SIKKIM,1968,26.30,4.70,34.30,90.80,237.30,646.70,827.60,594.20,514.80,314.30,87.30,0.50,3378.80,31.00,362.40,2583.30,402.10 +SUB HIMALAYAN WEST BENGAL & SIKKIM,1969,11.50,2.80,45.10,77.50,273.30,504.80,550.50,448.20,431.20,45.80,34.10,0.00,2424.90,14.40,396.00,1934.60,79.90 +SUB HIMALAYAN WEST BENGAL & SIKKIM,1970,18.00,13.40,7.60,162.50,162.70,556.60,731.20,425.40,560.80,60.70,3.30,0.00,2702.30,31.40,332.90,2273.90,64.10 +SUB HIMALAYAN WEST BENGAL & SIKKIM,1971,28.40,21.30,63.00,239.80,244.50,757.60,599.50,542.00,375.40,328.70,24.80,1.90,3226.80,49.70,547.40,2274.40,355.40 +SUB HIMALAYAN WEST BENGAL & SIKKIM,1972,9.40,41.60,52.10,134.30,287.50,457.20,590.30,335.10,407.10,86.80,12.30,0.90,2414.60,51.00,473.90,1789.70,100.00 +SUB HIMALAYAN WEST BENGAL & SIKKIM,1973,13.80,35.90,40.80,82.90,324.30,679.80,426.50,424.70,474.10,281.30,16.60,3.90,2804.60,49.70,448.00,2005.10,301.80 +SUB HIMALAYAN WEST BENGAL & SIKKIM,1974,19.10,2.50,94.40,210.80,339.00,508.10,826.80,673.70,480.80,175.00,3.00,8.30,3341.60,21.60,644.20,2489.40,186.30 +SUB HIMALAYAN WEST BENGAL & SIKKIM,1975,20.40,29.90,15.60,83.70,251.10,493.20,808.20,263.80,515.70,174.60,1.00,6.60,2663.60,50.20,350.40,2080.80,182.20 +SUB HIMALAYAN WEST BENGAL & SIKKIM,1976,8.80,51.00,27.30,112.80,303.50,649.20,531.90,671.70,288.00,113.10,35.50,1.20,2793.90,59.70,443.60,2140.80,149.80 +SUB HIMALAYAN WEST BENGAL & SIKKIM,1977,6.60,16.00,67.60,245.60,308.10,466.00,502.90,627.80,316.00,263.70,60.80,25.30,2906.50,22.60,621.30,1912.70,349.80 +SUB HIMALAYAN WEST BENGAL & SIKKIM,1978,14.70,17.90,49.30,136.70,313.30,515.50,545.20,274.00,376.50,62.90,61.10,10.80,2377.80,32.60,499.20,1711.10,134.80 +SUB HIMALAYAN WEST BENGAL & SIKKIM,1979,8.10,26.80,15.10,100.60,142.00,261.70,741.70,432.40,427.00,286.50,31.70,38.10,2511.70,34.90,257.70,1862.90,356.30 +SUB HIMALAYAN WEST BENGAL & SIKKIM,1980,11.60,44.80,77.30,130.40,300.10,485.90,774.40,692.50,477.50,151.20,0.90,2.00,3148.60,56.40,507.80,2430.40,154.10 +SUB HIMALAYAN WEST BENGAL & SIKKIM,1981,48.80,23.00,77.80,185.60,273.70,468.60,833.10,540.90,453.20,38.10,9.20,17.30,2969.30,71.80,537.10,2295.90,64.60 +SUB HIMALAYAN WEST BENGAL & SIKKIM,1982,0.20,9.90,47.00,125.60,174.50,499.00,749.50,305.50,341.60,54.10,20.00,10.60,2337.70,10.10,347.10,1895.70,84.80 +SUB HIMALAYAN WEST BENGAL & SIKKIM,1983,26.70,56.90,35.30,87.70,335.30,557.90,758.40,295.60,535.80,125.10,3.20,20.80,2838.80,83.70,458.30,2147.60,149.10 +SUB HIMALAYAN WEST BENGAL & SIKKIM,1984,29.30,11.30,42.60,127.30,360.10,474.60,737.20,364.80,405.50,179.10,5.10,11.50,2748.40,40.60,530.00,1982.10,195.70 +SUB HIMALAYAN WEST BENGAL & SIKKIM,1985,2.20,30.50,43.20,69.50,358.60,532.70,907.40,372.70,464.50,211.90,17.40,27.30,3037.90,32.80,471.20,2277.30,256.60 +SUB HIMALAYAN WEST BENGAL & SIKKIM,1986,1.30,5.80,7.90,122.40,152.10,436.40,545.40,363.20,493.90,215.10,15.50,6.40,2365.40,7.10,282.40,1838.90,237.00 +SUB HIMALAYAN WEST BENGAL & SIKKIM,1987,2.80,35.30,79.80,152.70,148.00,451.00,791.90,836.60,530.30,150.30,5.60,1.20,3185.50,38.10,380.60,2609.80,157.10 +SUB HIMALAYAN WEST BENGAL & SIKKIM,1988,6.80,24.60,71.20,96.50,268.80,304.90,831.70,990.50,446.60,76.00,18.40,5.50,3141.40,31.40,436.50,2573.60,99.90 +SUB HIMALAYAN WEST BENGAL & SIKKIM,1989,21.00,41.60,45.80,58.10,358.40,551.30,629.80,407.80,593.60,98.90,30.70,17.60,2854.60,62.60,462.20,2182.50,147.20 +SUB HIMALAYAN WEST BENGAL & SIKKIM,1990,3.80,109.90,80.10,158.30,358.20,554.70,814.10,916.60,440.60,115.00,0.40,13.70,3565.30,113.60,596.60,2726.00,129.10 +SUB HIMALAYAN WEST BENGAL & SIKKIM,1991,41.50,24.20,45.80,102.70,283.70,691.40,592.60,500.90,689.50,67.80,1.70,30.40,3072.40,65.70,432.30,2474.40,99.90 +SUB HIMALAYAN WEST BENGAL & SIKKIM,1992,10.00,46.70,26.00,84.00,253.40,328.10,736.30,458.00,276.40,125.50,5.00,9.50,2358.80,56.70,363.40,1798.80,140.00 +SUB HIMALAYAN WEST BENGAL & SIKKIM,1993,37.60,35.20,58.80,136.90,320.50,449.60,723.90,521.60,352.20,228.80,28.40,2.40,2895.90,72.90,516.20,2047.30,259.60 +SUB HIMALAYAN WEST BENGAL & SIKKIM,1994,49.60,55.00,114.10,126.60,243.30,388.00,357.30,396.10,302.10,84.30,8.50,2.20,2127.30,104.60,484.10,1443.60,95.00 +SUB HIMALAYAN WEST BENGAL & SIKKIM,1995,17.90,41.10,50.60,84.20,349.60,859.00,775.30,539.20,638.50,99.70,88.60,14.00,3557.80,59.00,484.50,2812.00,202.30 +SUB HIMALAYAN WEST BENGAL & SIKKIM,1996,30.90,34.20,59.50,85.00,401.70,334.60,863.60,545.10,337.90,107.30,0.40,0.00,2800.30,65.10,546.10,2081.30,107.80 +SUB HIMALAYAN WEST BENGAL & SIKKIM,1997,18.90,31.30,76.40,119.50,166.90,613.30,488.10,479.00,443.90,41.30,16.30,56.50,2551.40,50.20,362.90,2024.20,114.10 +SUB HIMALAYAN WEST BENGAL & SIKKIM,1998,13.60,37.00,125.10,154.10,254.20,653.00,854.60,860.40,478.90,209.10,13.10,2.10,3655.10,50.50,533.40,2846.80,224.30 +SUB HIMALAYAN WEST BENGAL & SIKKIM,1999,8.70,6.20,17.90,156.00,335.40,550.50,831.70,751.60,404.10,246.00,10.70,4.50,3323.30,14.90,509.30,2537.90,261.20 +SUB HIMALAYAN WEST BENGAL & SIKKIM,2000,10.70,36.20,55.10,185.10,326.50,649.60,574.30,498.10,465.80,82.90,22.60,1.20,2908.00,46.90,566.60,2187.80,106.70 +SUB HIMALAYAN WEST BENGAL & SIKKIM,2001,4.00,20.50,50.20,134.80,347.20,472.20,399.00,424.50,434.90,282.80,36.60,5.90,2612.60,24.50,532.20,1730.50,325.40 +SUB HIMALAYAN WEST BENGAL & SIKKIM,2002,30.10,10.00,95.60,237.10,181.70,407.20,743.30,406.60,340.10,75.70,8.70,10.80,2547.00,40.10,514.40,1897.20,95.20 +SUB HIMALAYAN WEST BENGAL & SIKKIM,2003,17.00,79.20,90.10,171.40,211.70,516.60,703.00,354.00,321.40,223.00,16.40,19.20,2723.30,96.30,473.30,1895.10,258.70 +SUB HIMALAYAN WEST BENGAL & SIKKIM,2004,19.90,11.50,40.50,163.50,287.50,489.50,739.50,356.40,394.70,198.40,9.00,4.40,2714.70,31.40,491.50,1980.10,211.80 +SUB HIMALAYAN WEST BENGAL & SIKKIM,2005,19.50,21.00,132.10,155.50,254.00,446.50,704.30,564.50,229.90,271.10,8.80,0.50,2807.70,40.60,541.60,1945.10,280.40 +SUB HIMALAYAN WEST BENGAL & SIKKIM,2006,0.70,17.00,39.80,119.30,270.50,446.20,470.20,295.00,456.80,118.40,20.30,7.90,2262.10,17.70,429.60,1668.20,146.60 +SUB HIMALAYAN WEST BENGAL & SIKKIM,2007,3.10,81.10,46.60,160.10,215.10,485.10,686.30,412.40,458.60,79.50,8.80,2.00,2638.90,84.20,421.70,2042.50,90.30 +SUB HIMALAYAN WEST BENGAL & SIKKIM,2008,33.20,22.10,79.80,141.80,171.40,526.50,657.70,636.30,296.70,97.90,16.90,9.50,2689.90,55.30,393.00,2117.30,124.30 +SUB HIMALAYAN WEST BENGAL & SIKKIM,2009,6.00,40.30,55.00,115.20,308.70,350.60,456.10,568.40,174.60,235.10,9.10,5.60,2324.60,46.30,478.90,1549.60,249.80 +SUB HIMALAYAN WEST BENGAL & SIKKIM,2010,5.60,19.60,77.60,176.60,335.90,558.10,593.40,461.30,308.10,66.20,7.90,2.20,2612.30,25.20,590.00,1920.80,76.30 +SUB HIMALAYAN WEST BENGAL & SIKKIM,2011,8.50,19.90,71.20,135.00,247.80,419.80,612.30,470.30,356.30,46.70,26.70,4.30,2418.70,28.40,453.90,1858.60,77.70 +SUB HIMALAYAN WEST BENGAL & SIKKIM,2012,15.30,13.90,45.50,159.80,202.40,604.20,684.50,332.70,434.70,119.40,12.50,7.40,2632.20,29.20,407.70,2056.00,139.30 +SUB HIMALAYAN WEST BENGAL & SIKKIM,2013,3.00,23.60,32.10,114.70,296.50,404.90,588.40,416.30,308.00,199.80,16.10,2.70,2406.10,26.70,443.40,1717.60,218.50 +SUB HIMALAYAN WEST BENGAL & SIKKIM,2014,0.20,26.60,37.70,47.90,308.60,543.20,384.60,563.30,371.50,31.20,5.30,2.40,2322.60,26.90,394.20,1862.60,38.90 +SUB HIMALAYAN WEST BENGAL & SIKKIM,2015,15.70,15.00,64.80,149.00,304.60,508.20,393.30,626.60,354.90,53.60,23.80,9.00,2518.60,30.70,518.50,1883.00,86.40 +GANGETIC WEST BENGAL,1901,37.10,58.40,3.90,64.10,121.70,198.00,280.80,275.70,313.50,51.10,83.40,0.00,1487.60,95.50,189.70,1068.00,134.40 +GANGETIC WEST BENGAL,1902,0.00,1.20,44.20,103.80,161.60,140.90,347.80,264.80,230.50,32.50,10.40,9.90,1347.70,1.20,309.60,984.00,52.90 +GANGETIC WEST BENGAL,1903,17.50,24.60,37.30,30.60,78.50,201.70,179.60,277.60,300.70,198.00,8.20,0.00,1354.30,42.10,146.40,959.60,206.20 +GANGETIC WEST BENGAL,1904,0.10,23.90,35.60,17.50,160.20,286.70,435.30,241.70,142.80,35.10,4.10,0.10,1383.10,24.00,213.30,1106.40,39.30 +GANGETIC WEST BENGAL,1905,30.90,49.60,84.70,84.90,156.80,70.90,525.50,263.60,287.60,107.30,0.00,5.20,1666.90,80.50,326.30,1147.60,112.60 +GANGETIC WEST BENGAL,1906,46.80,123.60,53.30,1.10,81.30,172.00,307.10,264.60,193.20,140.00,12.50,0.00,1395.60,170.40,135.70,936.90,152.60 +GANGETIC WEST BENGAL,1907,0.70,24.20,94.90,39.70,92.30,347.60,217.50,249.90,232.30,13.30,0.00,24.70,1337.00,24.80,226.90,1047.30,38.00 +GANGETIC WEST BENGAL,1908,27.00,5.10,1.90,5.20,109.90,380.40,383.50,290.40,174.90,21.30,0.20,0.00,1400.00,32.10,117.10,1229.20,21.50 +GANGETIC WEST BENGAL,1909,5.60,6.40,0.60,145.20,97.20,335.00,232.40,504.30,273.00,75.30,1.30,21.40,1697.80,12.10,242.90,1344.80,98.00 +GANGETIC WEST BENGAL,1910,23.00,10.80,9.40,48.40,101.70,241.80,319.40,250.90,209.60,170.70,0.20,0.00,1385.90,33.80,159.40,1021.80,170.90 +GANGETIC WEST BENGAL,1911,1.20,2.90,42.80,35.30,110.40,276.60,168.40,261.50,260.20,93.30,12.30,0.00,1264.90,4.10,188.50,966.70,105.50 +GANGETIC WEST BENGAL,1912,1.80,23.60,71.60,48.90,109.30,199.40,325.30,255.00,134.30,99.50,78.70,0.00,1347.40,25.30,229.80,914.00,178.20 +GANGETIC WEST BENGAL,1913,4.10,110.70,35.10,12.80,157.00,512.00,367.70,290.30,186.20,122.60,18.50,9.80,1826.80,114.80,204.90,1356.30,150.90 +GANGETIC WEST BENGAL,1914,0.00,31.00,21.80,56.40,230.90,192.80,400.80,218.80,186.40,28.50,0.00,16.40,1383.90,31.00,309.20,998.80,44.90 +GANGETIC WEST BENGAL,1915,6.10,9.10,79.50,26.50,122.50,224.50,228.50,236.70,229.30,88.30,59.00,0.30,1310.30,15.10,228.50,919.00,147.60 +GANGETIC WEST BENGAL,1916,0.60,2.10,0.50,58.30,42.30,378.50,148.90,320.50,283.80,286.70,78.20,0.10,1600.50,2.70,101.20,1131.60,365.00 +GANGETIC WEST BENGAL,1917,0.40,33.60,19.70,29.40,171.40,366.80,321.80,259.90,204.70,358.30,9.70,0.00,1775.80,34.00,220.60,1153.20,368.00 +GANGETIC WEST BENGAL,1918,1.30,0.00,22.90,81.10,177.80,374.60,194.20,366.80,169.20,4.10,0.30,3.00,1395.40,1.40,281.80,1104.80,7.50 +GANGETIC WEST BENGAL,1919,41.90,19.30,10.50,61.80,125.30,306.00,299.00,385.90,148.90,48.00,35.70,0.00,1482.20,61.30,197.60,1139.80,83.60 +GANGETIC WEST BENGAL,1920,0.40,36.70,152.50,14.60,77.00,127.80,380.30,294.40,171.20,106.10,2.50,0.00,1363.60,37.10,244.10,973.70,108.70 +GANGETIC WEST BENGAL,1921,36.50,10.10,13.20,57.40,53.30,238.40,279.60,382.10,177.70,51.90,0.00,0.00,1300.20,46.60,123.90,1077.80,51.90 +GANGETIC WEST BENGAL,1922,7.40,3.10,1.20,22.00,72.30,553.00,269.70,400.80,244.30,75.80,4.70,1.40,1655.60,10.50,95.40,1467.70,81.90 +GANGETIC WEST BENGAL,1923,0.10,92.20,8.20,22.10,71.50,154.30,330.80,405.60,110.10,72.20,16.90,1.20,1285.20,92.30,101.80,1000.80,90.30 +GANGETIC WEST BENGAL,1924,8.20,5.30,0.30,38.50,64.90,181.20,308.00,260.70,254.80,82.10,62.50,0.00,1266.50,13.50,103.70,1004.70,144.60 +GANGETIC WEST BENGAL,1925,10.70,14.80,28.40,78.90,106.20,171.80,305.70,211.20,158.40,184.50,3.10,0.00,1273.60,25.50,213.50,847.00,187.60 +GANGETIC WEST BENGAL,1926,26.40,9.50,111.30,25.60,85.50,103.70,579.30,431.30,243.70,78.90,0.90,9.10,1705.40,35.90,222.40,1358.10,89.00 +GANGETIC WEST BENGAL,1927,31.60,37.40,9.10,22.30,96.70,227.70,317.40,224.60,161.60,58.60,3.70,0.00,1190.50,69.00,128.10,931.20,62.30 +GANGETIC WEST BENGAL,1928,12.80,3.20,1.60,51.30,110.90,427.00,428.10,325.10,113.30,149.90,1.70,0.10,1625.00,15.90,163.80,1293.50,151.80 +GANGETIC WEST BENGAL,1929,42.80,13.20,38.80,41.80,52.50,208.10,398.60,297.30,168.30,264.60,0.00,31.40,1557.30,56.00,133.10,1072.30,296.00 +GANGETIC WEST BENGAL,1930,1.80,12.10,19.90,18.60,86.30,186.90,410.70,307.30,200.10,41.10,95.10,1.10,1380.80,13.80,124.80,1105.00,137.30 +GANGETIC WEST BENGAL,1931,2.20,74.60,27.10,22.70,111.50,157.20,368.50,286.70,197.00,168.30,59.00,0.90,1475.80,76.80,161.30,1009.40,228.30 +GANGETIC WEST BENGAL,1932,0.00,12.90,5.10,31.90,196.60,151.10,297.50,259.60,177.70,64.20,110.20,0.00,1306.90,12.90,233.60,885.90,174.40 +GANGETIC WEST BENGAL,1933,16.30,53.30,3.70,75.60,171.60,326.30,384.90,420.80,266.90,144.80,2.10,0.80,1867.20,69.60,250.90,1398.90,147.70 +GANGETIC WEST BENGAL,1934,5.50,19.60,0.60,39.90,58.60,200.00,209.00,269.60,197.10,85.00,14.90,17.80,1117.40,25.10,99.00,875.60,117.70 +GANGETIC WEST BENGAL,1935,12.10,26.30,30.80,34.60,33.60,163.40,233.10,298.90,171.10,9.60,0.00,1.60,1015.10,38.30,99.00,866.50,11.20 +GANGETIC WEST BENGAL,1936,9.80,12.60,20.30,16.40,223.80,299.90,331.40,251.40,253.90,74.70,4.00,7.50,1505.60,22.40,260.50,1136.60,86.10 +GANGETIC WEST BENGAL,1937,0.00,112.80,8.60,16.80,130.30,300.80,265.60,280.40,295.70,109.20,1.90,0.40,1522.50,112.80,155.80,1142.50,111.40 +GANGETIC WEST BENGAL,1938,15.70,33.10,2.80,8.90,234.90,233.70,244.60,310.20,160.80,78.90,14.20,0.00,1337.80,48.80,246.60,949.30,93.10 +GANGETIC WEST BENGAL,1939,2.40,23.10,10.90,20.20,70.20,250.50,420.20,450.90,207.50,220.60,21.20,0.80,1698.40,25.50,101.30,1329.10,242.60 +GANGETIC WEST BENGAL,1940,0.10,30.30,103.90,18.30,98.90,218.10,236.20,384.30,199.60,58.90,7.30,2.80,1358.50,30.30,221.10,1038.10,68.90 +GANGETIC WEST BENGAL,1941,29.30,0.40,0.70,27.60,87.50,376.10,404.30,396.50,184.40,219.60,74.30,0.40,1801.10,29.70,115.90,1361.30,294.30 +GANGETIC WEST BENGAL,1942,1.20,16.70,14.70,52.00,64.20,144.50,374.90,406.90,384.10,142.60,13.90,0.00,1615.60,18.00,130.80,1310.30,156.50 +GANGETIC WEST BENGAL,1943,39.40,25.70,16.90,85.40,53.60,209.50,418.50,320.50,186.80,90.00,0.00,0.00,1446.20,65.10,155.90,1135.30,90.00 +GANGETIC WEST BENGAL,1944,60.00,24.40,40.20,44.80,36.10,147.50,349.80,477.40,147.00,79.10,0.10,0.00,1406.40,84.30,121.10,1121.80,79.10 +GANGETIC WEST BENGAL,1945,18.00,13.60,5.10,75.70,110.20,196.20,196.30,213.20,198.60,244.20,0.10,0.30,1271.50,31.60,191.00,804.30,244.60 +GANGETIC WEST BENGAL,1946,0.00,4.20,11.30,131.50,117.60,247.40,297.40,374.20,305.30,196.80,28.30,0.20,1714.20,4.20,260.40,1224.30,225.30 +GANGETIC WEST BENGAL,1947,3.40,13.10,43.30,18.40,104.00,172.70,348.90,292.00,237.40,95.90,0.50,33.50,1363.00,16.50,165.70,1050.90,129.90 +GANGETIC WEST BENGAL,1948,13.20,44.90,48.40,52.60,135.90,200.40,268.40,323.60,214.30,116.70,113.60,0.00,1532.10,58.10,236.90,1006.80,230.30 +GANGETIC WEST BENGAL,1949,6.80,3.00,33.50,114.70,188.90,214.50,325.00,285.50,209.80,110.50,1.30,0.00,1493.70,9.80,337.20,1034.80,111.80 +GANGETIC WEST BENGAL,1950,0.00,6.50,25.90,14.10,101.20,371.10,338.80,373.30,176.40,93.30,115.20,0.00,1615.60,6.50,141.20,1259.50,208.50 +GANGETIC WEST BENGAL,1951,0.00,0.40,62.10,13.10,67.40,180.70,253.50,260.30,200.10,140.00,36.00,0.40,1214.00,0.40,142.70,894.50,176.50 +GANGETIC WEST BENGAL,1952,0.30,1.10,23.30,99.70,77.00,167.40,431.00,244.70,189.10,159.60,2.50,0.00,1395.70,1.40,199.90,1032.20,162.10 +GANGETIC WEST BENGAL,1953,25.80,14.10,4.80,13.60,61.90,311.10,358.30,343.10,278.50,56.00,38.60,0.00,1505.80,39.90,80.30,1291.00,94.60 +GANGETIC WEST BENGAL,1954,12.30,5.90,0.30,11.60,88.60,211.10,201.70,215.10,247.10,56.80,1.50,28.00,1080.00,18.20,100.50,875.00,86.30 +GANGETIC WEST BENGAL,1955,2.90,2.30,11.40,24.30,48.00,174.70,338.80,251.90,188.10,151.90,73.90,0.10,1268.20,5.20,83.80,953.40,225.90 +GANGETIC WEST BENGAL,1956,4.50,33.90,50.70,25.60,141.60,343.30,253.90,295.40,391.10,157.60,12.70,3.90,1714.20,38.30,217.90,1283.70,174.20 +GANGETIC WEST BENGAL,1957,50.20,26.60,8.70,6.00,16.40,231.80,312.10,201.10,239.40,38.20,0.10,0.00,1130.50,76.80,31.10,984.40,38.30 +GANGETIC WEST BENGAL,1958,12.70,25.60,13.30,37.90,58.30,95.20,280.10,215.10,294.70,109.30,8.90,0.00,1151.10,38.40,109.50,885.10,118.20 +GANGETIC WEST BENGAL,1959,33.50,12.70,17.30,28.20,91.40,208.50,273.30,328.50,487.30,331.20,0.30,0.40,1812.90,46.30,137.00,1297.70,332.00 +GANGETIC WEST BENGAL,1960,0.60,1.40,30.90,0.90,122.30,117.50,336.50,317.40,246.30,71.10,0.60,0.00,1245.50,2.00,154.20,1017.70,71.60 +GANGETIC WEST BENGAL,1961,11.10,75.80,6.80,13.60,91.20,275.00,171.40,252.80,290.90,101.00,0.80,0.10,1290.40,86.80,111.60,990.10,101.90 +GANGETIC WEST BENGAL,1962,8.80,13.10,6.00,54.50,80.30,185.60,241.10,209.30,233.60,141.00,0.00,0.10,1173.60,21.90,140.90,869.70,141.10 +GANGETIC WEST BENGAL,1963,0.40,2.40,5.70,61.60,103.60,258.80,277.60,167.10,270.90,131.50,9.50,0.50,1289.50,2.70,170.90,974.40,141.50 +GANGETIC WEST BENGAL,1964,2.70,11.10,18.00,58.30,84.70,136.20,404.20,211.30,219.90,124.00,8.00,0.00,1278.50,13.80,161.10,971.60,132.00 +GANGETIC WEST BENGAL,1965,0.30,33.90,46.50,32.80,45.30,227.60,289.60,287.00,220.30,80.10,0.30,0.20,1263.70,34.20,124.50,1024.50,80.50 +GANGETIC WEST BENGAL,1966,33.10,4.40,5.10,18.30,43.40,296.00,168.70,236.60,187.20,84.90,34.70,6.30,1118.70,37.50,66.80,888.50,125.90 +GANGETIC WEST BENGAL,1967,52.50,3.30,44.90,65.30,53.00,131.60,247.80,368.80,326.20,52.30,1.30,1.40,1348.40,55.80,163.20,1074.40,55.00 +GANGETIC WEST BENGAL,1968,5.70,7.60,7.70,12.60,35.50,368.80,418.20,472.20,115.20,115.90,37.80,0.60,1597.70,13.30,55.70,1374.30,154.30 +GANGETIC WEST BENGAL,1969,4.70,5.10,20.90,80.20,89.00,139.80,276.20,418.00,300.90,45.90,23.20,0.20,1404.00,9.90,190.10,1134.90,69.30 +GANGETIC WEST BENGAL,1970,10.80,15.10,30.80,16.80,63.50,323.20,285.00,219.80,472.60,195.00,15.80,0.00,1648.50,25.90,111.10,1300.70,210.90 +GANGETIC WEST BENGAL,1971,30.60,14.20,4.80,174.20,122.10,260.30,472.50,573.40,252.80,163.50,31.40,0.00,2099.80,44.80,301.10,1559.00,194.90 +GANGETIC WEST BENGAL,1972,2.80,43.10,4.10,16.40,25.10,125.90,288.30,543.20,222.50,59.70,2.10,0.00,1333.20,45.80,45.60,1179.90,61.80 +GANGETIC WEST BENGAL,1973,1.30,8.90,67.60,26.00,134.20,204.20,304.90,335.00,401.60,206.60,20.90,23.90,1735.20,10.20,227.80,1245.70,251.50 +GANGETIC WEST BENGAL,1974,3.60,0.00,83.10,29.80,94.50,96.40,438.50,317.10,262.70,140.30,4.60,0.00,1470.70,3.60,207.50,1114.60,144.90 +GANGETIC WEST BENGAL,1975,9.90,18.70,10.60,38.10,65.80,156.60,364.90,331.10,286.30,141.60,42.60,0.00,1466.20,28.60,114.50,1138.90,184.20 +GANGETIC WEST BENGAL,1976,0.00,32.80,20.70,47.50,133.10,148.90,296.60,279.60,197.50,52.10,31.20,0.60,1240.60,32.80,201.30,922.60,83.80 +GANGETIC WEST BENGAL,1977,11.70,24.20,7.30,89.90,176.40,409.40,450.90,329.40,171.30,86.60,48.00,35.50,1840.60,35.90,273.60,1361.00,170.10 +GANGETIC WEST BENGAL,1978,1.40,21.20,50.50,49.80,116.30,253.00,274.10,349.10,591.80,148.80,10.30,6.40,1872.50,22.60,216.50,1467.90,165.50 +GANGETIC WEST BENGAL,1979,16.00,27.30,8.40,28.00,22.30,282.90,296.40,229.60,167.00,48.00,11.50,20.40,1157.90,43.30,58.70,975.90,79.90 +GANGETIC WEST BENGAL,1980,15.50,22.60,60.90,21.80,109.90,303.60,403.20,243.30,181.00,158.60,0.00,0.40,1521.00,38.10,192.70,1131.20,159.10 +GANGETIC WEST BENGAL,1981,13.70,63.90,64.80,110.80,250.90,321.40,417.70,327.70,250.00,11.60,3.80,72.80,1909.00,77.60,426.50,1316.70,88.20 +GANGETIC WEST BENGAL,1982,2.40,35.80,87.20,70.90,37.10,196.00,224.50,308.90,101.10,29.20,17.90,0.00,1111.00,38.20,195.20,830.40,47.10 +GANGETIC WEST BENGAL,1983,9.10,39.20,47.00,44.20,132.50,188.90,207.60,365.40,247.40,167.60,1.10,13.60,1463.60,48.20,223.70,1009.40,182.30 +GANGETIC WEST BENGAL,1984,19.10,2.60,0.60,46.60,82.60,597.10,332.70,442.20,196.40,111.80,0.00,0.00,1831.70,21.70,129.80,1568.40,111.80 +GANGETIC WEST BENGAL,1985,10.90,22.00,8.80,24.10,99.60,280.40,286.30,340.60,201.80,137.20,1.80,0.00,1413.40,32.90,132.40,1109.10,139.00 +GANGETIC WEST BENGAL,1986,9.60,6.30,7.10,48.50,146.10,227.90,313.40,181.20,522.20,201.50,106.40,20.60,1791.00,15.90,201.70,1244.80,328.50 +GANGETIC WEST BENGAL,1987,1.80,7.10,18.90,76.60,91.70,146.90,427.40,473.00,262.60,34.10,43.70,7.70,1591.50,8.90,187.20,1309.90,85.50 +GANGETIC WEST BENGAL,1988,1.70,22.90,53.50,45.30,109.30,508.80,299.90,292.60,207.10,100.40,39.50,0.50,1681.50,24.60,208.10,1308.40,140.40 +GANGETIC WEST BENGAL,1989,0.40,4.90,6.10,5.40,173.60,318.20,414.50,291.40,284.20,105.50,3.70,18.30,1626.30,5.30,185.10,1308.30,127.50 +GANGETIC WEST BENGAL,1990,2.20,62.20,119.00,79.30,147.60,268.20,520.20,236.30,300.70,174.20,47.90,3.50,1961.30,64.40,346.00,1325.40,225.60 +GANGETIC WEST BENGAL,1991,27.80,11.40,41.70,34.50,66.10,257.40,381.20,331.30,249.20,125.60,15.60,67.50,1609.10,39.20,142.20,1219.00,208.70 +GANGETIC WEST BENGAL,1992,14.00,49.50,0.10,25.00,127.00,239.90,407.60,254.10,226.60,66.20,4.40,0.20,1414.60,63.50,152.10,1128.30,70.70 +GANGETIC WEST BENGAL,1993,0.30,3.80,40.80,78.60,116.20,328.50,280.00,357.70,421.40,94.20,38.20,0.00,1759.70,4.00,235.60,1387.60,132.50 +GANGETIC WEST BENGAL,1994,23.80,48.80,7.30,63.70,98.00,310.10,426.10,294.40,166.10,82.90,9.60,0.00,1530.80,72.60,169.00,1196.80,92.50 +GANGETIC WEST BENGAL,1995,20.20,30.10,8.70,10.10,202.90,185.40,401.10,413.00,411.50,86.40,160.50,6.20,1936.00,50.30,221.70,1411.00,253.10 +GANGETIC WEST BENGAL,1996,11.00,13.20,10.40,39.20,67.50,336.00,251.30,472.00,143.50,155.90,4.10,0.00,1504.00,24.20,117.00,1202.70,160.00 +GANGETIC WEST BENGAL,1997,18.70,23.60,44.20,101.80,98.20,219.60,437.30,387.30,244.00,27.80,30.50,24.90,1657.70,42.30,244.10,1288.10,83.10 +GANGETIC WEST BENGAL,1998,52.90,31.00,128.80,53.00,87.10,154.30,295.20,265.70,296.30,191.40,77.10,0.00,1632.70,83.90,268.90,1011.50,268.40 +GANGETIC WEST BENGAL,1999,0.10,0.70,1.60,10.50,217.90,268.80,405.20,375.40,467.80,195.30,13.70,0.00,1957.00,0.80,230.00,1517.20,209.00 +GANGETIC WEST BENGAL,2000,9.50,57.90,3.80,54.00,215.00,205.60,341.50,178.40,428.40,76.20,1.60,0.10,1572.10,67.40,272.80,1153.90,77.90 +GANGETIC WEST BENGAL,2001,0.30,1.90,32.80,49.40,175.80,384.20,269.30,248.70,205.90,163.60,8.80,0.00,1540.60,2.20,258.00,1108.00,172.40 +GANGETIC WEST BENGAL,2002,26.30,1.50,26.60,77.40,114.10,347.70,281.60,289.30,326.40,71.50,50.90,0.10,1613.30,27.80,218.10,1244.90,122.50 +GANGETIC WEST BENGAL,2003,0.50,11.70,70.00,36.30,81.90,280.50,253.40,239.30,155.00,341.50,8.90,17.70,1496.70,12.20,188.20,928.20,368.10 +GANGETIC WEST BENGAL,2004,3.30,1.60,14.90,62.80,72.90,287.50,250.70,389.90,264.30,220.70,0.00,0.80,1569.40,4.90,150.70,1192.30,221.50 +GANGETIC WEST BENGAL,2005,26.80,11.80,82.80,41.80,82.40,200.10,354.50,226.70,221.30,351.70,0.00,4.90,1604.90,38.60,207.00,1002.60,356.60 +GANGETIC WEST BENGAL,2006,0.80,3.00,10.60,60.50,120.80,221.00,486.60,320.30,380.90,49.70,5.90,0.30,1660.50,3.90,191.90,1408.80,55.90 +GANGETIC WEST BENGAL,2007,3.90,56.20,39.30,38.70,98.70,226.30,610.10,328.00,459.90,55.80,24.60,0.00,1941.40,60.10,176.70,1624.20,80.40 +GANGETIC WEST BENGAL,2008,49.40,12.40,11.50,42.80,94.40,414.50,338.40,252.20,267.30,72.30,0.00,0.20,1555.20,61.80,148.80,1272.30,72.40 +GANGETIC WEST BENGAL,2009,2.40,1.40,17.90,2.60,229.00,69.70,277.60,332.70,294.60,77.30,9.40,0.30,1315.00,3.80,249.50,974.60,87.10 +GANGETIC WEST BENGAL,2010,0.20,10.30,8.00,15.90,127.50,189.30,196.30,192.60,192.60,96.20,6.30,29.70,1064.80,10.50,151.30,770.70,132.20 +GANGETIC WEST BENGAL,2011,2.50,2.70,40.50,75.00,132.60,434.50,219.90,443.20,295.90,36.90,1.30,1.40,1686.50,5.20,248.10,1393.60,39.60 +GANGETIC WEST BENGAL,2012,40.70,15.30,4.40,57.70,44.20,146.60,315.00,261.40,246.90,64.20,47.00,24.60,1268.00,56.00,106.30,969.90,135.80 +GANGETIC WEST BENGAL,2013,2.50,10.00,4.80,45.60,195.90,233.40,263.20,401.40,254.00,353.20,0.00,0.00,1764.10,12.50,246.30,1152.00,353.30 +GANGETIC WEST BENGAL,2014,0.90,42.20,19.90,1.90,124.40,193.60,298.70,292.60,229.50,56.90,0.10,0.60,1261.40,43.10,146.20,1014.40,57.70 +GANGETIC WEST BENGAL,2015,12.90,5.50,19.30,88.70,57.60,247.20,633.10,260.60,164.00,32.70,2.30,6.30,1530.30,18.40,165.60,1304.90,41.30 +ORISSA,1901,39.50,65.10,16.10,51.60,79.00,78.20,288.40,307.70,185.30,76.60,96.70,0.00,1284.20,104.60,146.70,859.60,173.30 +ORISSA,1902,3.40,0.20,14.20,101.10,56.70,108.30,437.40,349.10,202.70,33.20,13.00,29.60,1349.00,3.50,172.10,1097.60,75.80 +ORISSA,1903,19.70,18.90,10.50,34.60,73.30,154.30,410.40,295.20,265.60,228.50,46.20,11.00,1568.30,38.60,118.50,1125.50,285.70 +ORISSA,1904,0.20,12.20,20.60,10.10,100.20,342.90,336.70,350.40,227.80,111.80,0.00,1.90,1514.80,12.40,130.90,1257.80,113.70 +ORISSA,1905,24.30,17.20,66.30,56.90,107.50,92.00,330.10,281.40,344.10,36.40,0.70,0.40,1357.30,41.50,230.70,1047.60,37.50 +ORISSA,1906,19.80,88.30,40.90,5.00,46.30,219.00,348.80,261.80,251.70,86.20,13.00,27.40,1408.20,108.10,92.20,1081.30,126.70 +ORISSA,1907,0.10,16.90,57.40,105.10,39.80,226.30,203.90,531.80,204.80,15.90,14.00,31.20,1447.10,17.00,202.30,1166.80,61.10 +ORISSA,1908,36.20,0.60,12.20,9.90,59.30,218.70,327.20,507.30,213.90,45.30,0.00,0.00,1430.60,36.80,81.40,1267.10,45.30 +ORISSA,1909,5.70,11.90,4.80,148.40,53.10,288.20,452.70,234.30,234.00,42.30,1.80,58.10,1535.50,17.70,206.30,1209.20,102.20 +ORISSA,1910,10.60,0.60,2.10,52.70,60.60,258.80,381.80,368.70,237.90,216.20,8.50,0.00,1598.50,11.20,115.50,1247.10,224.70 +ORISSA,1911,0.00,2.70,26.20,18.60,56.60,351.60,172.20,406.20,270.00,92.30,15.00,5.90,1417.30,2.70,101.40,1200.00,113.20 +ORISSA,1912,1.00,62.50,10.40,49.30,39.60,113.00,388.40,405.60,216.40,64.50,46.50,0.00,1397.20,63.50,99.30,1123.40,111.00 +ORISSA,1913,1.20,56.30,9.60,12.30,87.10,230.00,448.00,356.40,166.30,149.70,25.70,1.70,1544.30,57.50,108.90,1200.70,177.10 +ORISSA,1914,0.00,20.20,12.70,64.60,175.00,255.80,397.70,309.70,342.20,12.90,1.00,6.80,1598.50,20.20,252.30,1305.30,20.70 +ORISSA,1915,15.40,21.40,37.30,25.20,74.50,165.10,239.40,313.00,270.80,149.20,125.60,0.00,1437.10,36.90,137.10,988.30,274.80 +ORISSA,1916,0.00,4.90,0.80,33.80,45.50,339.60,250.70,334.70,197.60,216.10,55.80,0.00,1479.40,5.00,80.10,1122.50,271.90 +ORISSA,1917,0.00,68.50,24.00,26.00,95.10,336.30,319.00,319.40,280.60,364.40,16.40,0.30,1850.10,68.50,145.20,1255.40,381.10 +ORISSA,1918,10.80,0.30,19.30,28.50,127.70,363.30,216.50,324.80,190.10,7.50,5.10,3.60,1297.40,11.10,175.50,1094.70,16.10 +ORISSA,1919,59.80,56.60,29.50,30.20,72.00,332.30,354.70,492.20,138.30,89.80,99.70,2.80,1758.10,116.40,131.70,1317.60,192.40 +ORISSA,1920,3.30,18.20,50.70,26.90,51.20,173.20,561.40,303.90,167.20,44.90,1.60,0.00,1402.60,21.50,128.80,1205.80,46.50 +ORISSA,1921,48.70,1.10,1.70,26.40,19.50,210.20,321.90,289.10,338.20,62.90,4.40,0.00,1324.00,49.70,47.70,1159.40,67.20 +ORISSA,1922,20.00,0.20,1.90,13.90,46.60,247.00,431.80,295.40,328.80,50.90,30.00,0.10,1466.50,20.20,62.40,1302.90,81.00 +ORISSA,1923,0.20,66.30,9.60,17.10,34.40,106.70,288.70,333.00,210.50,112.60,74.80,4.70,1258.60,66.40,61.10,939.00,192.10 +ORISSA,1924,30.20,5.90,1.30,15.70,83.90,95.30,228.50,312.40,232.00,106.00,152.30,0.00,1263.40,36.10,100.80,868.10,258.30 +ORISSA,1925,2.00,0.00,6.00,52.20,111.80,353.50,433.70,429.90,201.50,201.80,4.80,10.70,1807.80,2.00,170.00,1418.60,217.20 +ORISSA,1926,34.80,11.30,83.20,34.10,59.20,71.70,296.50,565.30,288.90,88.10,0.00,2.60,1535.80,46.10,176.50,1222.40,90.70 +ORISSA,1927,3.00,27.20,8.10,12.60,51.60,241.80,454.50,431.50,181.00,92.20,22.10,0.00,1525.50,30.20,72.20,1308.80,114.30 +ORISSA,1928,4.60,4.60,6.30,62.80,68.80,266.70,468.80,266.10,226.50,208.00,1.70,0.60,1585.60,9.30,137.90,1228.20,210.30 +ORISSA,1929,18.00,18.80,4.50,25.00,37.80,193.40,525.00,423.40,190.90,185.70,0.00,15.30,1637.80,36.80,67.20,1332.70,201.10 +ORISSA,1930,0.20,12.10,9.90,33.40,38.00,177.50,357.50,333.70,287.50,50.50,143.10,2.70,1446.40,12.40,81.40,1156.30,196.30 +ORISSA,1931,7.40,36.80,20.70,18.60,44.30,108.00,239.90,511.00,197.00,233.40,59.50,0.40,1477.20,44.20,83.60,1055.90,293.40 +ORISSA,1932,0.20,34.00,9.90,26.90,67.40,116.50,474.70,271.00,246.30,57.30,136.00,0.00,1440.20,34.30,104.10,1108.60,193.30 +ORISSA,1933,17.80,57.40,7.90,25.50,136.50,288.60,404.80,448.60,294.70,138.10,20.00,11.10,1851.00,75.20,169.90,1436.70,169.20 +ORISSA,1934,0.10,1.40,4.20,11.00,21.00,230.60,371.80,425.40,300.10,102.60,17.40,3.30,1488.90,1.50,36.20,1327.90,123.30 +ORISSA,1935,1.10,10.20,12.40,42.10,16.20,135.50,531.30,212.80,237.80,17.50,0.10,2.30,1219.40,11.30,70.70,1117.50,19.90 +ORISSA,1936,16.80,42.90,11.70,7.90,155.30,477.60,360.10,384.90,247.30,154.40,11.50,5.50,1876.00,59.70,174.90,1469.90,171.40 +ORISSA,1937,0.00,89.00,28.40,66.90,64.90,235.20,430.60,290.00,285.80,75.50,0.80,0.30,1567.30,89.00,160.20,1241.60,76.50 +ORISSA,1938,11.00,16.80,14.00,14.50,119.60,229.60,267.20,339.80,226.40,179.00,23.70,0.00,1441.60,27.80,148.10,1063.00,202.70 +ORISSA,1939,8.10,10.90,34.90,26.30,19.10,196.90,411.90,410.10,242.10,181.20,19.30,2.80,1563.40,18.90,80.20,1260.90,203.30 +ORISSA,1940,0.00,35.30,70.10,29.10,133.10,286.20,532.60,395.90,133.30,58.30,3.30,10.50,1687.70,35.30,232.30,1348.00,72.10 +ORISSA,1941,28.30,1.40,8.20,14.50,62.30,288.20,356.50,272.40,186.00,155.90,61.50,0.10,1435.20,29.70,85.00,1103.00,217.50 +ORISSA,1942,4.70,18.60,2.50,37.60,29.60,156.80,423.80,379.80,256.40,62.70,75.40,0.10,1448.30,23.40,69.80,1216.90,138.30 +ORISSA,1943,63.90,4.10,11.90,68.90,54.60,200.30,413.30,382.90,294.70,71.80,20.10,0.00,1586.50,68.00,135.30,1291.20,92.00 +ORISSA,1944,35.10,72.90,75.30,46.70,32.90,121.90,491.40,415.90,151.50,155.90,8.70,0.00,1608.10,108.00,154.80,1180.60,164.60 +ORISSA,1945,20.30,4.70,0.10,50.60,58.00,152.60,387.10,270.30,405.90,176.10,2.50,10.40,1538.60,25.00,108.70,1215.90,189.00 +ORISSA,1946,0.00,2.60,5.20,104.20,83.70,249.70,345.50,399.20,248.00,143.20,33.30,0.30,1614.90,2.60,193.10,1242.30,176.80 +ORISSA,1947,21.80,19.30,14.70,17.30,38.50,210.90,341.50,374.90,173.30,127.10,10.30,61.30,1410.90,41.10,70.40,1100.70,198.60 +ORISSA,1948,14.00,36.10,13.50,28.50,60.70,164.80,289.40,312.40,257.60,82.50,74.20,0.20,1333.80,50.10,102.70,1024.10,156.90 +ORISSA,1949,0.90,3.10,8.70,35.10,78.10,140.70,248.90,307.10,303.10,222.10,1.10,0.00,1348.90,4.00,121.80,999.80,223.30 +ORISSA,1950,0.00,21.20,69.70,7.70,49.40,199.40,326.90,327.40,197.90,55.10,138.10,0.00,1392.80,21.20,126.80,1051.60,193.20 +ORISSA,1951,2.20,0.00,89.70,37.10,48.00,172.50,339.10,349.50,165.50,155.60,37.10,0.00,1396.20,2.20,174.80,1026.60,192.60 +ORISSA,1952,0.30,9.50,26.20,53.20,44.40,187.10,356.40,352.00,307.90,176.60,2.20,1.10,1516.70,9.80,123.70,1203.40,179.90 +ORISSA,1953,39.90,5.90,0.20,13.80,23.70,182.80,318.90,512.10,231.50,59.20,49.80,0.00,1437.70,45.80,37.70,1245.30,109.00 +ORISSA,1954,0.60,6.20,8.60,19.20,50.20,163.20,211.70,271.90,344.00,118.20,0.00,14.20,1208.00,6.80,78.10,990.80,132.40 +ORISSA,1955,0.10,0.20,8.40,29.60,76.50,201.70,238.00,355.90,371.40,262.70,52.30,0.30,1597.00,0.30,114.40,1167.00,315.30 +ORISSA,1956,1.40,37.90,18.20,11.90,118.10,345.20,470.00,434.50,249.80,191.70,6.70,0.00,1885.40,39.30,148.20,1499.50,198.40 +ORISSA,1957,12.30,26.60,30.40,12.40,33.60,153.50,349.20,415.40,194.50,49.50,0.10,0.00,1277.50,39.00,76.30,1112.70,49.60 +ORISSA,1958,11.50,42.80,16.00,32.80,39.00,125.20,404.10,319.10,364.20,217.40,51.80,0.10,1624.00,54.30,87.80,1212.60,269.30 +ORISSA,1959,28.50,2.40,2.70,22.20,47.10,202.70,357.40,341.60,316.50,170.50,1.50,2.70,1495.90,30.90,72.10,1218.20,174.70 +ORISSA,1960,5.40,0.80,51.60,12.40,42.70,211.40,444.10,461.70,214.60,130.80,3.60,13.90,1593.00,6.20,106.80,1331.80,148.20 +ORISSA,1961,15.90,116.20,3.20,15.90,59.70,324.80,406.20,327.90,483.20,178.20,11.30,2.70,1945.30,132.10,78.90,1542.10,192.20 +ORISSA,1962,8.30,5.10,19.80,35.90,34.10,192.70,379.00,263.20,237.30,164.00,2.50,4.70,1346.50,13.40,89.80,1072.20,171.20 +ORISSA,1963,0.20,6.90,9.10,47.00,90.00,218.70,310.60,361.90,306.90,204.90,3.90,2.00,1562.00,7.00,146.10,1198.10,210.80 +ORISSA,1964,1.70,28.30,11.90,33.20,48.80,142.50,372.40,427.90,195.50,84.10,8.20,0.00,1354.70,30.00,94.00,1138.30,92.30 +ORISSA,1965,10.60,17.30,59.10,37.90,37.60,123.10,392.90,187.30,222.90,83.90,1.00,1.00,1174.70,27.80,134.70,926.20,85.90 +ORISSA,1966,49.90,3.60,0.90,28.00,37.90,306.30,340.20,211.00,155.90,78.90,63.40,10.90,1286.80,53.50,66.80,1013.40,153.20 +ORISSA,1967,70.90,0.40,87.70,40.90,25.70,233.30,315.30,340.70,281.80,18.30,1.80,10.70,1427.50,71.40,154.30,1171.00,30.80 +ORISSA,1968,33.40,29.70,20.70,26.50,45.70,186.70,311.60,335.40,236.60,191.60,45.50,0.70,1464.10,63.10,92.90,1070.30,237.80 +ORISSA,1969,0.70,1.00,4.00,27.30,80.70,158.60,432.50,293.50,197.70,41.80,38.90,6.40,1283.20,1.70,112.10,1082.30,87.10 +ORISSA,1970,4.60,27.50,47.20,32.30,60.80,307.90,307.80,348.80,205.90,66.90,2.40,0.20,1412.30,32.10,140.20,1170.50,69.50 +ORISSA,1971,16.10,23.50,1.90,76.90,82.20,290.80,290.90,411.00,171.50,229.90,2.10,0.00,1596.80,39.60,161.00,1164.20,232.10 +ORISSA,1972,0.00,22.00,2.60,25.90,16.30,133.90,333.90,383.40,282.70,83.10,40.90,0.30,1324.90,22.00,44.80,1133.80,124.40 +ORISSA,1973,1.70,5.70,33.40,8.70,67.50,103.20,434.90,380.90,266.50,244.70,13.30,13.00,1573.50,7.30,109.70,1185.40,271.00 +ORISSA,1974,0.00,1.30,27.40,12.10,44.80,128.90,223.30,306.50,131.70,103.00,8.00,0.00,987.00,1.30,84.30,790.40,111.10 +ORISSA,1975,1.80,17.70,21.50,18.20,18.40,193.30,279.50,437.00,251.70,135.10,17.50,0.30,1392.00,19.50,58.10,1161.40,153.00 +ORISSA,1976,0.00,10.10,10.50,25.90,57.90,108.10,347.80,374.10,172.60,36.80,32.80,2.40,1178.80,10.10,94.30,1002.50,72.00 +ORISSA,1977,4.90,5.00,5.40,50.70,124.90,181.40,355.40,335.70,256.60,61.50,87.00,9.40,1477.90,9.90,181.10,1129.10,157.80 +ORISSA,1978,4.00,31.00,45.30,28.70,37.40,183.50,336.20,462.10,199.00,80.10,21.80,9.80,1439.00,35.00,111.50,1180.80,111.70 +ORISSA,1979,6.70,14.90,3.20,22.70,25.10,198.50,240.20,251.80,171.70,46.50,7.30,7.40,995.90,21.50,50.90,862.20,61.20 +ORISSA,1980,10.80,9.20,41.70,23.20,59.90,325.50,367.60,228.10,302.10,86.60,3.00,5.20,1462.90,20.00,124.80,1223.30,94.80 +ORISSA,1981,25.80,13.60,67.10,45.70,85.00,189.20,238.30,348.10,257.10,18.80,0.40,6.50,1295.70,39.40,197.80,1032.70,25.70 +ORISSA,1982,5.50,32.30,80.10,51.80,38.20,191.40,223.20,466.40,129.80,33.80,6.10,0.00,1258.50,37.80,170.10,1010.70,39.80 +ORISSA,1983,1.90,55.00,22.10,47.60,67.60,153.00,273.10,379.50,324.60,100.70,2.00,5.00,1432.00,56.90,137.30,1130.10,107.70 +ORISSA,1984,9.30,6.70,3.40,46.00,34.60,302.60,369.50,422.30,127.30,55.40,0.00,0.30,1377.60,16.00,84.10,1221.80,55.70 +ORISSA,1985,24.20,35.00,4.70,16.40,52.90,195.40,305.70,460.90,335.20,175.80,1.10,0.00,1607.30,59.20,74.00,1297.20,176.90 +ORISSA,1986,25.80,35.80,12.60,41.90,74.50,291.70,348.70,301.80,183.00,134.90,92.20,17.00,1560.00,61.60,129.10,1125.20,244.10 +ORISSA,1987,10.60,3.60,18.40,30.30,55.30,112.30,338.80,190.30,150.20,83.90,102.30,1.70,1097.60,14.10,104.00,791.60,187.90 +ORISSA,1988,0.10,49.40,23.70,55.10,58.90,247.90,286.10,268.60,252.50,63.00,1.60,0.00,1306.90,49.50,137.70,1055.10,64.60 +ORISSA,1989,0.00,0.10,12.90,5.00,81.20,332.50,271.70,369.90,196.10,28.60,0.00,1.70,1299.70,0.10,99.20,1170.20,30.20 +ORISSA,1990,0.40,50.00,89.80,57.30,178.10,237.20,282.90,371.40,260.70,245.60,130.70,1.00,1905.00,50.30,325.20,1152.30,377.20 +ORISSA,1991,20.00,2.80,21.80,29.60,36.20,149.50,458.50,439.00,181.50,93.50,32.90,7.30,1472.80,22.80,87.70,1228.60,133.70 +ORISSA,1992,6.10,16.90,1.70,16.10,66.00,177.20,394.90,385.10,191.80,63.70,9.90,0.00,1329.50,23.00,83.80,1149.10,73.60 +ORISSA,1993,0.00,1.30,11.40,56.10,82.20,257.50,328.50,327.00,287.90,88.70,7.50,0.00,1448.00,1.30,149.60,1200.90,96.20 +ORISSA,1994,4.10,28.60,6.20,48.10,46.30,299.40,474.00,463.90,292.60,69.10,12.30,0.10,1744.60,32.60,100.60,1529.90,81.50 +ORISSA,1995,50.10,17.60,21.10,23.60,293.00,112.30,322.60,316.60,202.70,149.70,103.40,1.30,1614.00,67.70,337.70,954.30,254.30 +ORISSA,1996,14.60,10.10,11.70,28.10,28.60,211.90,264.80,319.40,113.20,49.90,8.40,0.90,1061.80,24.80,68.40,909.30,59.30 +ORISSA,1997,17.90,5.30,31.90,77.80,33.00,197.60,303.40,479.90,234.60,37.00,27.40,58.80,1504.50,23.20,142.70,1215.50,123.20 +ORISSA,1998,31.50,28.30,52.40,43.40,53.40,176.40,277.60,203.50,277.30,139.60,73.80,0.00,1357.10,59.80,149.10,934.80,213.40 +ORISSA,1999,0.10,0.70,0.90,3.20,164.80,222.90,270.20,325.90,266.40,215.40,13.90,0.00,1484.30,0.80,168.90,1085.30,229.30 +ORISSA,2000,0.90,33.30,1.10,21.30,74.70,233.70,272.30,273.60,158.00,26.60,1.60,0.10,1097.20,34.20,97.00,937.60,28.30 +ORISSA,2001,0.40,1.40,32.30,28.70,71.00,336.10,584.20,380.90,132.00,86.80,18.70,0.00,1672.50,1.80,132.00,1433.20,105.60 +ORISSA,2002,11.70,0.20,13.10,25.10,67.50,182.40,170.20,371.20,206.50,47.10,7.80,0.00,1102.80,11.90,105.70,930.20,54.90 +ORISSA,2003,0.10,16.20,21.60,24.70,22.60,178.90,367.50,425.10,264.30,287.40,11.00,28.80,1648.20,16.30,68.90,1235.70,327.30 +ORISSA,2004,6.80,8.00,6.40,49.20,29.70,216.40,328.00,346.40,148.10,149.60,1.80,0.00,1290.40,14.80,85.30,1038.90,151.40 +ORISSA,2005,29.40,4.00,24.30,20.90,44.90,199.40,410.30,201.00,342.80,206.90,12.40,7.10,1503.40,33.40,90.10,1153.50,226.40 +ORISSA,2006,0.20,0.00,29.90,25.00,105.60,175.20,454.00,624.90,254.70,26.40,21.00,0.00,1716.90,0.20,160.50,1508.80,47.40 +ORISSA,2007,0.70,32.50,8.00,21.00,62.80,321.00,285.10,420.60,401.70,66.40,14.00,0.00,1633.80,33.20,91.80,1428.40,80.40 +ORISSA,2008,27.50,10.40,17.50,28.20,37.40,343.50,306.40,388.30,355.00,22.10,2.70,0.00,1538.90,37.90,83.10,1393.20,24.80 +ORISSA,2009,1.90,0.50,2.70,1.10,68.20,87.30,586.00,286.90,162.50,105.80,27.30,0.10,1330.30,2.40,72.00,1122.70,133.20 +ORISSA,2010,8.80,1.20,5.60,7.80,93.00,146.40,304.90,282.70,236.00,133.00,35.60,37.20,1291.90,9.90,106.40,969.90,205.70 +ORISSA,2011,3.70,16.20,4.90,58.20,75.60,210.10,199.60,358.60,398.70,20.20,0.10,0.40,1346.20,19.80,138.70,1167.00,20.70 +ORISSA,2012,50.80,3.60,0.90,34.80,21.30,169.60,324.30,417.00,242.40,66.00,72.10,3.10,1405.90,54.40,57.00,1153.30,141.30 +ORISSA,2013,3.30,7.80,2.10,53.60,57.70,272.60,380.00,254.90,208.10,391.00,1.20,0.00,1632.40,11.20,113.40,1115.60,392.20 +ORISSA,2014,0.00,17.60,25.10,11.70,111.90,92.20,496.20,386.30,281.10,111.80,2.20,0.90,1536.90,17.70,148.70,1255.70,114.80 +ORISSA,2015,15.10,3.30,10.50,67.60,32.60,238.60,294.80,264.00,237.00,24.70,6.20,15.60,1210.10,18.40,110.70,1034.50,46.50 +JHARKHAND,1901,92.70,66.60,11.10,18.40,33.50,70.90,269.40,415.10,248.00,37.30,11.50,0.00,1274.50,159.30,63.00,1003.40,48.80 +JHARKHAND,1902,4.20,7.70,13.20,28.50,59.80,89.90,456.10,204.90,306.60,17.60,5.90,3.20,1197.60,11.90,101.50,1057.50,26.70 +JHARKHAND,1903,25.10,19.50,10.70,32.80,56.40,142.10,206.10,280.80,190.20,210.10,0.50,0.00,1174.30,44.60,99.90,819.30,210.60 +JHARKHAND,1904,2.50,17.00,38.10,9.10,116.10,308.90,494.10,336.10,125.60,30.60,2.30,0.40,1480.70,19.60,163.30,1264.60,33.30 +JHARKHAND,1905,38.40,53.30,61.60,32.90,66.20,41.50,420.30,293.70,322.80,21.30,0.00,2.70,1354.70,91.70,160.70,1078.30,24.00 +JHARKHAND,1906,45.80,128.50,35.90,1.70,33.90,170.90,355.60,251.60,185.40,96.80,7.10,1.10,1314.30,174.30,71.50,963.50,105.00 +JHARKHAND,1907,2.00,59.30,76.00,26.30,27.40,338.10,230.40,469.40,200.20,1.70,0.00,24.80,1455.70,61.40,129.70,1238.10,26.50 +JHARKHAND,1908,12.20,46.40,4.80,0.60,48.60,210.10,326.20,368.00,171.60,25.50,0.10,0.10,1214.20,58.70,54.00,1075.90,25.60 +JHARKHAND,1909,32.20,10.10,0.90,78.80,27.20,314.00,319.90,360.30,267.80,23.40,0.00,13.30,1447.90,42.30,106.90,1262.00,36.70 +JHARKHAND,1910,20.70,9.00,2.40,24.40,43.70,255.50,268.60,334.50,244.70,84.20,9.40,0.30,1297.60,29.70,70.50,1103.30,94.00 +JHARKHAND,1911,0.70,0.20,31.50,7.70,25.50,391.60,164.20,410.30,303.50,100.50,39.70,0.00,1475.40,0.90,64.70,1269.60,140.20 +JHARKHAND,1912,1.70,25.10,15.20,29.70,42.40,125.20,361.70,347.60,108.70,34.30,51.20,0.00,1142.90,26.90,87.40,943.20,85.50 +JHARKHAND,1913,1.90,111.60,40.10,1.00,77.90,375.50,321.30,383.80,164.30,73.80,18.30,16.30,1585.60,113.50,118.90,1244.80,108.40 +JHARKHAND,1914,0.10,24.60,19.40,23.60,150.10,123.80,354.40,337.00,159.50,16.70,0.00,6.20,1215.50,24.80,193.10,974.70,23.00 +JHARKHAND,1915,7.70,36.70,33.40,10.70,58.60,149.70,270.20,220.50,214.70,60.00,39.90,0.10,1102.30,44.40,102.70,855.10,100.00 +JHARKHAND,1916,0.00,14.30,0.20,17.10,22.60,283.50,224.90,303.20,231.50,253.20,13.80,0.00,1364.30,14.30,39.90,1043.10,267.00 +JHARKHAND,1917,1.70,40.10,17.10,9.00,107.10,287.00,359.50,372.80,251.20,277.10,1.20,0.50,1724.40,41.80,133.20,1270.50,278.80 +JHARKHAND,1918,4.20,2.40,3.60,15.50,78.50,324.00,149.70,406.70,175.90,1.70,0.00,0.50,1162.60,6.50,97.60,1056.30,2.20 +JHARKHAND,1919,102.90,16.20,23.50,19.00,67.90,367.30,331.80,398.20,215.70,87.40,3.40,0.10,1633.50,119.10,110.40,1313.00,91.00 +JHARKHAND,1920,0.00,19.50,62.60,8.80,41.90,109.40,660.20,321.60,184.70,6.30,0.00,0.00,1415.00,19.50,113.30,1275.90,6.30 +JHARKHAND,1921,37.10,11.00,1.40,20.80,12.90,228.20,325.20,391.50,182.80,22.80,0.00,0.00,1233.80,48.10,35.20,1127.70,22.80 +JHARKHAND,1922,8.20,6.20,0.00,14.50,19.50,305.30,404.70,365.90,250.00,58.80,9.20,0.90,1443.20,14.40,34.00,1325.90,68.90 +JHARKHAND,1923,0.70,68.30,5.30,5.10,26.70,186.00,398.40,552.50,124.00,46.00,18.20,0.60,1431.90,69.00,37.10,1260.90,64.80 +JHARKHAND,1924,23.00,16.60,1.90,12.20,26.30,148.70,431.80,269.60,323.60,75.10,103.10,0.00,1431.80,39.50,40.40,1173.70,178.20 +JHARKHAND,1925,4.70,6.10,12.10,37.10,84.60,196.50,428.30,314.00,172.50,63.50,7.70,0.50,1327.60,10.80,133.80,1111.30,71.70 +JHARKHAND,1926,33.50,3.40,95.00,13.50,41.50,55.70,466.50,391.20,309.60,44.60,2.90,21.00,1478.40,36.90,150.00,1223.00,68.50 +JHARKHAND,1927,27.90,99.00,31.60,2.90,41.70,92.30,452.50,311.60,156.40,51.40,15.80,0.00,1283.10,126.80,76.30,1012.80,67.20 +JHARKHAND,1928,51.40,11.80,3.00,26.40,48.10,313.40,396.70,213.70,131.70,183.30,0.10,4.40,1384.00,63.20,77.40,1055.50,187.80 +JHARKHAND,1929,63.90,15.20,12.70,11.40,29.50,111.40,541.70,412.20,124.60,236.40,0.00,52.50,1611.50,79.10,53.50,1190.00,288.80 +JHARKHAND,1930,0.90,4.30,7.70,18.10,16.50,125.50,506.80,361.40,222.80,44.50,121.10,4.40,1434.00,5.20,42.30,1216.50,170.00 +JHARKHAND,1931,7.00,116.90,18.00,2.20,37.10,109.00,357.00,355.20,201.20,112.70,33.40,0.80,1350.40,123.90,57.30,1022.30,146.90 +JHARKHAND,1932,0.00,32.80,4.00,15.00,45.80,96.50,374.10,297.80,221.10,50.20,55.50,0.90,1193.80,32.80,64.80,989.50,106.60 +JHARKHAND,1933,61.20,58.70,8.90,37.00,94.00,218.10,366.80,397.30,209.60,74.50,4.10,5.50,1535.60,119.90,139.90,1191.80,84.10 +JHARKHAND,1934,24.00,10.30,1.80,13.10,13.60,166.70,324.20,341.40,230.50,55.90,12.00,3.90,1197.40,34.30,28.40,1062.80,71.90 +JHARKHAND,1935,35.80,21.70,10.00,23.40,6.70,120.50,295.80,435.60,200.00,1.60,0.00,0.50,1151.60,57.50,40.00,1051.90,2.10 +JHARKHAND,1936,15.90,18.90,13.50,5.40,93.00,279.10,378.90,346.20,356.80,135.20,11.40,10.10,1664.30,34.80,111.80,1361.00,156.70 +JHARKHAND,1937,0.00,96.40,4.90,20.70,72.10,186.10,363.20,300.80,276.20,129.60,0.40,0.00,1450.60,96.40,97.70,1126.40,130.10 +JHARKHAND,1938,29.00,36.10,0.20,0.80,102.10,201.00,269.00,344.10,200.40,45.10,1.90,0.00,1229.80,65.20,103.10,1014.50,47.10 +JHARKHAND,1939,14.70,47.80,41.70,15.40,18.30,237.00,367.30,378.20,257.00,139.80,1.00,1.60,1519.70,62.40,75.30,1239.50,142.40 +JHARKHAND,1940,0.20,38.10,89.60,15.60,42.30,123.30,339.60,387.30,130.10,41.20,0.00,24.60,1231.90,38.40,147.50,980.30,65.80 +JHARKHAND,1941,41.60,4.20,2.50,7.00,52.30,287.80,357.20,365.30,196.30,164.70,34.60,0.10,1513.50,45.90,61.70,1206.50,199.30 +JHARKHAND,1942,8.80,61.40,19.90,31.20,22.70,140.50,482.30,433.30,356.20,25.90,5.80,1.00,1589.00,70.20,73.80,1412.30,32.70 +JHARKHAND,1943,76.40,12.50,0.70,34.90,38.90,127.50,452.10,488.00,245.00,80.10,0.00,0.00,1556.10,88.90,74.50,1312.50,80.10 +JHARKHAND,1944,34.50,65.30,46.60,29.10,18.70,129.40,368.50,428.30,149.00,112.50,4.30,0.30,1386.30,99.80,94.30,1075.10,117.10 +JHARKHAND,1945,45.80,27.40,0.40,25.60,45.20,168.40,276.60,293.10,277.20,144.60,3.20,1.20,1308.70,73.20,71.20,1015.30,149.00 +JHARKHAND,1946,0.00,16.10,16.70,68.50,84.10,270.10,329.40,345.00,253.00,135.60,34.60,0.10,1553.20,16.10,169.30,1197.50,170.40 +JHARKHAND,1947,12.10,24.10,45.90,2.80,35.70,143.80,291.10,302.80,253.50,106.20,2.30,14.30,1234.50,36.20,84.30,991.20,122.80 +JHARKHAND,1948,26.70,18.70,17.70,8.40,47.00,185.90,386.00,318.00,207.30,96.90,89.90,0.20,1402.60,45.40,73.10,1097.10,187.00 +JHARKHAND,1949,21.80,16.20,15.50,57.40,107.80,187.30,364.00,384.70,215.00,66.00,0.00,1.00,1436.70,37.90,180.70,1151.00,67.00 +JHARKHAND,1950,1.00,14.80,31.40,1.90,36.40,318.40,389.60,389.60,173.10,21.10,11.90,3.70,1393.00,15.90,69.60,1270.70,36.70 +JHARKHAND,1951,5.10,0.40,48.90,24.20,25.10,177.50,259.10,267.00,186.10,69.20,9.00,0.00,1071.70,5.50,98.20,889.70,78.20 +JHARKHAND,1952,3.90,10.70,24.20,36.00,58.00,210.70,357.70,355.70,237.90,89.70,1.40,1.40,1387.40,14.60,118.20,1162.00,92.50 +JHARKHAND,1953,35.30,11.00,0.80,7.40,28.50,213.00,440.00,416.20,314.50,23.40,19.30,0.00,1509.40,46.30,36.60,1383.70,42.70 +JHARKHAND,1954,12.40,8.40,4.30,3.50,29.70,160.90,272.20,267.40,257.80,35.30,0.60,7.00,1059.50,20.80,37.60,958.30,42.90 +JHARKHAND,1955,43.60,9.80,5.90,5.10,23.90,137.70,347.10,240.50,155.40,96.90,14.80,0.10,1080.80,53.40,34.80,880.70,111.80 +JHARKHAND,1956,13.90,25.70,50.30,5.80,78.50,259.30,301.60,344.60,312.90,140.90,14.30,7.90,1555.70,39.60,134.60,1218.40,163.20 +JHARKHAND,1957,56.30,24.70,30.60,2.40,6.50,163.60,498.70,293.20,283.00,18.20,0.00,0.20,1377.50,81.10,39.50,1238.60,18.40 +JHARKHAND,1958,11.50,39.80,20.00,24.80,12.20,93.60,336.10,263.30,267.20,111.30,0.70,0.00,1180.50,51.30,56.90,960.30,112.00 +JHARKHAND,1959,51.60,5.60,5.20,17.50,56.40,188.50,332.60,305.80,363.90,272.80,0.00,0.00,1599.90,57.10,79.00,1190.90,272.80 +JHARKHAND,1960,6.60,0.50,29.30,1.90,32.10,115.60,310.10,432.70,274.60,44.80,0.60,0.00,1248.80,7.00,63.30,1133.00,45.40 +JHARKHAND,1961,8.90,84.30,1.00,4.60,30.00,298.60,296.30,358.20,317.20,155.30,1.60,4.60,1560.50,93.20,35.60,1270.20,161.50 +JHARKHAND,1962,8.20,15.00,4.30,31.10,26.50,167.40,251.50,265.50,213.50,55.80,0.00,8.90,1047.70,23.20,61.90,897.90,64.80 +JHARKHAND,1963,2.80,7.80,9.90,23.30,67.70,171.50,301.60,249.00,241.30,228.60,11.20,0.20,1315.00,10.60,100.80,963.40,240.10 +JHARKHAND,1964,2.20,12.20,4.70,18.90,53.80,200.40,306.40,262.00,214.40,71.50,3.90,0.00,1150.30,14.30,77.40,983.20,75.40 +JHARKHAND,1965,0.80,8.70,26.60,31.30,14.80,113.10,354.60,215.90,206.20,39.20,0.30,0.90,1012.40,9.50,72.80,889.70,40.40 +JHARKHAND,1966,24.70,3.80,0.20,10.50,22.10,233.20,174.10,263.40,87.90,35.80,15.90,8.10,879.80,28.50,32.80,758.70,59.80 +JHARKHAND,1967,8.60,1.00,39.90,24.20,43.70,71.90,283.50,450.80,268.50,19.80,1.10,12.30,1225.30,9.60,107.80,1074.60,33.20 +JHARKHAND,1968,34.40,9.40,5.50,4.70,22.00,272.60,351.50,420.50,97.20,71.20,0.50,3.70,1293.40,43.90,32.20,1141.80,75.50 +JHARKHAND,1969,6.20,4.00,5.00,34.70,86.10,130.20,299.00,337.40,209.40,25.10,20.90,0.10,1158.10,10.20,125.80,976.00,46.10 +JHARKHAND,1970,24.30,16.60,28.00,8.40,29.70,182.40,300.00,252.80,380.70,67.00,1.50,0.00,1291.50,40.90,66.10,1116.00,68.50 +JHARKHAND,1971,43.40,24.30,2.10,95.60,83.50,272.30,503.10,526.10,237.50,104.00,6.70,0.10,1898.60,67.70,181.20,1539.00,110.80 +JHARKHAND,1972,8.60,46.50,0.20,9.10,3.20,75.90,248.50,352.70,175.10,54.40,21.60,0.40,996.10,55.10,12.50,852.10,76.30 +JHARKHAND,1973,10.60,15.20,23.90,7.10,56.40,184.30,224.30,294.60,365.40,245.10,13.70,0.60,1441.00,25.80,87.40,1068.50,259.40 +JHARKHAND,1974,2.60,0.50,24.30,3.30,51.90,64.90,334.90,331.70,235.00,76.60,0.30,1.00,1127.00,3.10,79.50,966.60,77.90 +JHARKHAND,1975,17.20,13.40,26.00,10.10,30.10,121.00,477.60,339.20,224.30,102.50,0.10,0.00,1361.30,30.60,66.10,1162.10,102.60 +JHARKHAND,1976,0.00,23.10,7.20,25.20,58.20,107.00,297.50,263.00,394.50,9.30,3.20,3.50,1191.80,23.10,90.60,1062.00,16.00 +JHARKHAND,1977,19.20,8.10,3.80,47.90,102.50,281.10,458.30,316.40,184.80,50.30,27.30,21.80,1521.50,27.30,154.20,1240.70,99.30 +JHARKHAND,1978,10.50,50.90,45.30,28.40,33.80,283.70,252.80,341.10,376.50,114.30,7.00,12.00,1556.10,61.40,107.50,1254.00,133.20 +JHARKHAND,1979,22.40,38.70,6.10,19.50,6.10,129.10,286.00,174.90,134.20,36.10,18.70,11.00,882.80,61.10,31.60,724.30,65.80 +JHARKHAND,1980,13.60,14.90,37.10,21.00,40.00,273.70,350.70,281.20,232.10,73.80,0.00,2.30,1340.60,28.50,98.10,1137.80,76.10 +JHARKHAND,1981,40.70,33.50,20.10,40.90,94.90,143.30,355.30,226.40,189.50,6.10,3.10,13.40,1167.20,74.20,156.00,914.50,22.50 +JHARKHAND,1982,8.40,23.60,77.30,30.90,33.40,183.90,180.80,358.70,118.10,52.70,15.70,1.80,1085.30,32.00,141.50,841.50,70.20 +JHARKHAND,1983,4.30,33.10,9.90,44.40,83.30,131.80,280.00,240.60,308.80,110.70,0.20,14.70,1261.70,37.40,137.60,961.20,125.50 +JHARKHAND,1984,33.40,26.20,1.60,14.10,31.00,479.60,350.40,387.30,155.80,50.20,0.10,0.10,1529.90,59.60,46.70,1373.20,50.50 +JHARKHAND,1985,19.10,9.10,1.60,8.80,48.20,131.20,338.00,312.60,216.60,153.70,0.50,0.90,1240.30,28.30,58.60,998.30,155.10 +JHARKHAND,1986,6.90,21.20,3.80,25.00,74.80,253.00,352.20,212.90,188.50,128.20,31.10,37.90,1335.60,28.10,103.70,1006.60,197.20 +JHARKHAND,1987,5.90,10.10,10.90,30.30,44.90,93.10,410.80,371.10,299.10,19.70,31.40,5.40,1332.70,15.90,86.10,1174.10,56.60 +JHARKHAND,1988,3.10,37.10,42.20,23.70,23.60,303.60,273.50,276.10,127.80,38.70,2.60,1.60,1153.70,40.20,89.50,981.10,42.90 +JHARKHAND,1989,1.90,0.30,2.80,0.10,66.40,246.00,285.60,258.90,219.00,39.60,8.60,19.70,1149.00,2.20,69.30,1009.50,67.90 +JHARKHAND,1990,0.80,48.00,22.20,15.40,90.60,197.40,430.70,230.80,226.00,128.10,14.20,0.30,1404.20,48.70,128.20,1084.80,142.60 +JHARKHAND,1991,19.30,8.00,31.10,11.20,33.70,171.30,252.90,384.00,274.00,29.40,1.90,34.20,1250.90,27.30,76.00,1082.20,65.50 +JHARKHAND,1992,2.30,6.10,0.60,8.80,51.80,129.80,295.70,265.20,148.50,22.50,1.60,0.30,933.00,8.30,61.20,839.20,24.30 +JHARKHAND,1993,1.70,2.00,16.10,32.00,50.50,203.20,214.40,245.90,372.40,49.60,16.20,0.00,1204.00,3.70,98.60,1035.90,65.90 +JHARKHAND,1994,17.70,23.80,0.60,20.00,29.20,391.30,451.60,360.70,162.80,118.90,2.70,0.10,1579.40,41.50,49.80,1366.30,121.80 +JHARKHAND,1995,13.70,9.70,22.40,4.30,30.30,134.20,312.30,301.50,395.90,37.50,84.70,20.10,1366.50,23.50,56.90,1143.90,142.20 +JHARKHAND,1996,17.10,24.40,4.90,8.00,18.50,302.70,274.10,384.30,133.60,23.90,0.10,0.00,1191.70,41.50,31.40,1094.80,24.10 +JHARKHAND,1997,9.50,3.70,1.50,29.40,25.20,230.40,400.50,431.60,199.60,54.30,39.00,36.60,1461.30,13.20,56.10,1262.10,129.80 +JHARKHAND,1998,76.30,20.60,54.10,33.80,45.50,109.90,302.40,263.20,288.60,132.30,26.30,0.70,1353.80,97.00,133.40,964.10,159.30 +JHARKHAND,1999,0.60,0.10,0.10,1.50,95.40,240.20,416.00,373.10,315.80,140.60,3.30,0.20,1586.90,0.70,97.00,1345.10,144.10 +JHARKHAND,2000,3.60,21.20,6.30,19.60,67.70,185.30,358.40,152.80,356.90,19.10,0.40,0.20,1191.50,24.70,93.60,1053.40,19.70 +JHARKHAND,2001,1.90,4.00,30.00,14.00,57.40,324.70,354.60,219.40,132.80,115.50,0.20,0.00,1254.40,5.80,101.40,1031.50,115.70 +JHARKHAND,2002,9.00,5.40,10.70,11.50,38.70,184.90,186.80,277.40,253.40,55.00,1.30,0.80,1034.90,14.40,60.90,902.50,57.10 +JHARKHAND,2003,3.30,30.50,33.60,17.90,21.50,152.40,247.50,245.10,224.00,255.50,6.20,7.40,1245.00,33.90,73.10,869.00,269.10 +JHARKHAND,2004,5.50,2.70,3.10,41.00,31.10,184.40,200.70,327.00,211.50,128.10,0.10,1.60,1136.60,8.20,75.20,923.50,129.70 +JHARKHAND,2005,22.10,17.50,17.70,9.60,23.50,157.20,266.40,214.50,141.50,83.10,1.30,6.10,960.40,39.60,50.70,779.50,90.50 +JHARKHAND,2006,0.30,0.20,22.40,15.70,107.40,198.30,447.10,337.20,298.70,24.60,7.40,0.00,1459.50,0.50,145.50,1281.40,32.00 +JHARKHAND,2007,1.70,48.40,25.50,22.30,58.10,125.40,430.40,353.60,324.70,39.60,7.60,0.00,1437.30,50.10,105.80,1234.10,47.20 +JHARKHAND,2008,19.40,3.60,6.20,10.70,42.90,366.30,377.90,310.50,152.90,34.00,1.00,0.00,1325.30,22.90,59.70,1207.70,35.00 +JHARKHAND,2009,1.80,0.80,2.00,0.80,78.10,62.70,266.60,248.00,248.80,82.20,4.00,0.50,996.10,2.60,80.80,826.10,86.60 +JHARKHAND,2010,0.20,2.30,0.90,6.30,29.20,92.60,170.20,155.10,160.50,55.10,4.70,20.00,697.10,2.50,36.40,578.40,79.80 +JHARKHAND,2011,3.30,2.50,6.40,25.40,55.00,349.00,181.80,403.20,324.60,23.30,0.00,0.10,1374.70,5.80,86.80,1258.70,23.40 +JHARKHAND,2012,34.60,10.30,1.50,9.60,6.60,121.10,287.20,282.40,217.60,37.80,48.60,7.60,1065.00,45.00,17.70,908.30,94.00 +JHARKHAND,2013,1.10,17.90,1.60,22.30,85.00,181.50,211.10,278.10,173.80,281.10,0.00,0.00,1253.60,19.00,109.00,844.50,281.10 +JHARKHAND,2014,9.90,47.50,22.90,1.90,98.20,139.70,321.30,290.90,178.20,44.90,0.00,1.20,1156.60,57.40,123.10,930.10,46.10 +JHARKHAND,2015,12.20,2.60,21.60,55.50,25.50,183.30,429.70,240.70,85.10,22.70,0.20,2.70,1081.80,14.80,102.60,938.80,25.60 +BIHAR,1901,51.80,19.60,11.90,1.10,65.60,66.30,245.90,319.40,155.10,8.30,7.30,0.10,952.30,71.40,78.60,786.70,15.60 +BIHAR,1902,4.60,0.70,24.30,17.30,66.30,118.20,361.00,225.50,358.70,28.50,1.10,0.00,1206.20,5.20,107.90,1063.40,29.60 +BIHAR,1903,5.30,4.70,2.00,4.70,28.20,192.90,115.00,342.60,173.90,147.00,0.10,0.00,1016.30,10.00,34.90,824.40,147.10 +BIHAR,1904,6.30,1.70,3.50,5.30,118.70,191.60,394.40,351.30,84.40,98.10,10.60,3.80,1269.50,7.90,127.40,1021.80,112.40 +BIHAR,1905,16.00,30.10,32.60,21.40,77.50,50.50,409.10,495.30,353.90,11.60,0.00,0.60,1498.50,46.10,131.40,1308.80,12.20 +BIHAR,1906,14.40,56.90,8.60,0.90,44.70,191.30,366.20,430.10,118.70,32.90,0.40,0.00,1265.10,71.30,54.20,1106.20,33.30 +BIHAR,1907,1.30,55.20,39.40,27.00,32.90,232.20,282.40,242.20,206.90,4.80,0.00,2.10,1126.40,56.50,99.30,963.80,6.90 +BIHAR,1908,14.70,38.60,6.10,2.20,36.70,94.00,202.30,167.30,149.90,25.40,0.00,0.30,737.50,53.30,45.00,613.60,25.60 +BIHAR,1909,7.00,6.30,0.00,72.80,25.80,446.00,256.20,352.40,175.40,43.10,0.00,5.60,1390.50,13.30,98.60,1229.90,48.70 +BIHAR,1910,2.40,4.80,6.60,5.70,51.50,279.50,365.10,328.80,258.50,73.80,21.70,0.00,1398.50,7.20,63.80,1232.00,95.50 +BIHAR,1911,9.40,0.10,28.20,13.10,41.70,312.30,199.00,425.50,279.10,122.80,17.80,0.00,1449.20,9.50,83.00,1216.00,140.70 +BIHAR,1912,5.50,8.50,23.90,25.40,62.70,146.80,362.40,302.90,104.70,14.00,72.60,0.00,1129.40,14.00,112.00,916.90,86.60 +BIHAR,1913,0.00,38.00,18.10,1.40,106.10,379.90,258.80,363.00,270.30,61.00,0.50,32.80,1529.70,38.00,125.50,1272.00,94.30 +BIHAR,1914,0.20,22.70,8.00,29.00,77.00,84.40,269.10,460.40,98.40,10.10,0.00,0.60,1059.80,22.80,114.00,912.30,10.70 +BIHAR,1915,8.20,57.10,22.50,6.40,72.50,149.10,321.30,415.00,185.10,75.30,36.70,0.30,1349.40,65.30,101.40,1070.40,112.40 +BIHAR,1916,0.60,16.50,0.30,25.30,25.10,270.30,445.60,325.20,265.20,130.10,0.40,0.00,1504.60,17.10,50.70,1306.30,130.60 +BIHAR,1917,2.70,19.70,7.90,5.80,103.30,227.80,328.70,249.30,272.10,116.50,0.00,0.20,1334.10,22.40,117.00,1077.90,116.70 +BIHAR,1918,0.60,0.10,1.80,29.50,105.40,251.60,240.30,519.20,254.40,8.60,0.10,0.00,1411.70,0.70,136.80,1265.50,8.70 +BIHAR,1919,40.20,7.70,3.80,11.60,42.30,195.00,417.80,230.10,244.80,58.60,0.00,0.70,1252.70,47.90,57.60,1087.90,59.40 +BIHAR,1920,0.00,19.20,31.00,2.60,28.80,108.90,361.60,228.50,337.60,5.60,0.00,0.00,1123.90,19.30,62.40,1036.60,5.60 +BIHAR,1921,26.80,0.60,6.50,21.20,26.30,132.40,303.80,422.00,295.80,37.00,0.00,0.00,1272.20,27.30,54.00,1153.90,37.00 +BIHAR,1922,12.20,4.60,0.00,9.60,22.00,345.80,427.30,363.50,241.30,15.70,0.70,6.50,1449.20,16.80,31.60,1377.90,22.90 +BIHAR,1923,1.30,35.10,1.50,13.50,38.10,171.70,253.90,243.20,148.90,74.40,0.70,0.40,982.80,36.40,53.10,817.80,75.50 +BIHAR,1924,2.50,12.70,1.80,8.80,14.80,170.60,514.00,295.70,320.30,53.10,61.70,0.20,1456.30,15.30,25.50,1300.60,115.00 +BIHAR,1925,7.70,1.80,7.70,52.90,38.60,130.40,322.90,331.50,269.40,17.60,11.00,0.00,1191.50,9.60,99.20,1054.20,28.60 +BIHAR,1926,16.30,0.60,29.70,12.80,47.00,48.10,451.50,276.00,211.60,17.60,1.80,8.70,1121.80,16.90,89.60,987.20,28.10 +BIHAR,1927,24.20,36.40,31.90,3.10,52.90,115.90,301.50,242.70,231.40,21.50,38.60,0.20,1100.20,60.60,87.90,891.50,60.30 +BIHAR,1928,41.20,21.50,0.10,18.30,54.30,208.00,377.20,272.90,83.30,164.30,0.90,7.60,1249.80,62.70,72.70,941.50,172.80 +BIHAR,1929,51.60,1.10,11.40,16.20,33.10,190.20,328.80,326.30,124.70,231.40,0.00,44.40,1359.20,52.70,60.60,970.10,275.80 +BIHAR,1930,11.60,7.60,13.60,6.60,28.60,144.60,298.20,247.80,290.90,30.40,24.00,10.40,1114.30,19.20,48.80,981.50,64.80 +BIHAR,1931,1.30,32.40,11.40,1.60,27.50,75.90,441.30,218.80,248.20,76.10,11.20,0.70,1146.30,33.70,40.50,984.20,87.90 +BIHAR,1932,0.00,8.20,0.50,14.80,26.60,152.10,164.30,249.30,191.20,32.40,78.70,8.90,926.90,8.20,41.90,756.80,120.00 +BIHAR,1933,28.30,13.10,0.70,62.10,90.30,197.00,377.30,377.80,167.80,77.60,0.30,0.30,1392.60,41.30,153.20,1119.80,78.20 +BIHAR,1934,30.10,13.70,3.00,9.10,22.00,165.50,432.60,251.30,231.20,55.20,9.80,2.80,1226.10,43.70,34.10,1080.60,67.70 +BIHAR,1935,21.00,19.60,0.60,0.70,21.90,127.90,193.80,481.70,370.30,2.60,0.10,0.10,1240.40,40.60,23.30,1173.70,2.80 +BIHAR,1936,7.70,6.90,4.60,7.70,84.30,188.90,462.20,261.50,449.20,88.80,0.40,10.30,1572.50,14.60,96.60,1361.90,99.50 +BIHAR,1937,0.00,66.30,0.80,10.70,80.00,113.60,217.90,441.80,179.30,194.60,0.30,1.10,1306.40,66.30,91.50,952.60,196.00 +BIHAR,1938,12.40,17.00,0.00,2.90,115.50,382.40,362.10,385.10,201.40,27.10,0.80,0.00,1506.70,29.40,118.50,1331.00,27.90 +BIHAR,1939,5.00,42.30,11.30,1.70,41.50,230.40,315.00,277.10,262.00,56.90,0.00,0.00,1243.20,47.30,54.50,1084.50,56.90 +BIHAR,1940,0.90,43.80,65.50,5.00,31.90,114.60,317.60,314.90,171.60,4.90,0.00,17.50,1088.30,44.70,102.50,918.70,22.40 +BIHAR,1941,16.20,2.80,0.70,4.60,67.10,177.70,248.80,466.00,190.20,47.80,1.10,0.00,1223.10,19.00,72.50,1082.70,48.90 +BIHAR,1942,34.40,43.50,14.70,18.20,28.10,174.70,253.50,330.40,347.20,7.00,0.00,0.90,1252.50,77.80,61.00,1105.70,8.00 +BIHAR,1943,34.70,16.90,0.20,40.70,37.00,169.80,296.00,322.10,215.40,37.00,0.00,0.00,1169.90,51.60,78.00,1003.30,37.00 +BIHAR,1944,27.30,32.60,42.00,34.10,21.90,223.90,253.50,322.80,221.30,48.50,0.20,0.80,1228.80,59.90,98.00,1021.50,49.50 +BIHAR,1945,50.70,24.00,1.40,32.40,57.80,120.50,226.90,265.60,305.50,154.80,0.00,3.20,1242.90,74.70,91.50,918.60,158.00 +BIHAR,1946,0.00,21.30,5.00,52.30,88.60,168.70,354.70,267.80,271.80,148.70,14.90,0.00,1393.70,21.30,145.90,1062.90,163.60 +BIHAR,1947,5.60,5.60,10.20,7.50,57.70,89.40,394.40,244.60,215.30,61.50,0.10,0.30,1092.10,11.20,75.40,943.70,61.90 +BIHAR,1948,11.10,7.50,3.60,11.30,46.30,114.60,409.00,329.80,248.90,81.00,36.20,0.00,1299.20,18.60,61.20,1102.20,117.20 +BIHAR,1949,16.50,42.80,5.70,35.50,93.10,200.20,341.70,386.50,217.90,103.40,1.10,0.00,1444.40,59.40,134.30,1146.30,104.50 +BIHAR,1950,9.80,11.80,22.10,2.20,43.30,346.50,257.00,313.30,113.40,3.00,0.10,2.10,1124.60,21.60,67.60,1030.10,5.20 +BIHAR,1951,7.30,1.50,5.80,8.20,22.80,144.50,307.80,204.50,114.30,28.70,4.70,0.10,850.20,8.80,36.80,771.10,33.50 +BIHAR,1952,1.10,10.30,20.10,24.60,57.00,272.50,212.50,291.90,297.70,15.40,3.40,0.40,1206.80,11.40,101.60,1074.50,19.30 +BIHAR,1953,29.70,4.20,8.70,16.70,37.40,224.70,431.80,263.30,342.20,18.40,0.90,0.80,1378.70,33.90,62.70,1262.00,20.20 +BIHAR,1954,12.50,8.40,0.80,0.60,40.90,166.60,366.10,308.60,129.50,15.10,0.20,1.30,1050.50,20.90,42.30,970.70,16.60 +BIHAR,1955,20.00,6.70,2.30,11.90,28.20,172.50,505.70,268.70,192.20,35.70,0.30,0.10,1244.20,26.70,42.50,1139.00,36.10 +BIHAR,1956,19.30,4.70,9.60,5.30,75.40,319.40,200.60,286.30,359.80,168.80,36.00,8.10,1493.40,24.00,90.40,1166.20,212.90 +BIHAR,1957,75.20,2.80,11.60,0.50,1.30,115.60,334.50,295.80,115.20,11.60,0.00,2.70,966.90,78.00,13.40,861.20,14.40 +BIHAR,1958,16.00,2.70,4.70,26.40,16.10,120.70,222.80,451.10,224.20,81.50,0.70,0.60,1167.40,18.70,47.20,1018.80,82.70 +BIHAR,1959,81.20,1.50,9.40,18.60,35.70,132.30,245.80,264.20,157.10,233.80,0.00,0.10,1179.60,82.70,63.70,799.30,233.90 +BIHAR,1960,1.40,0.10,42.70,5.20,49.90,117.60,357.40,285.50,348.10,37.90,2.00,0.00,1247.90,1.50,97.90,1108.70,39.90 +BIHAR,1961,11.70,35.80,1.40,2.00,33.90,239.70,211.60,317.50,157.50,236.00,0.80,10.10,1258.10,47.50,37.30,926.30,246.90 +BIHAR,1962,13.00,7.80,9.50,20.80,38.80,156.40,244.30,395.40,216.30,72.50,0.00,3.20,1178.10,20.80,69.10,1012.40,75.70 +BIHAR,1963,3.40,1.70,9.40,17.50,78.90,154.00,375.40,273.50,255.70,138.70,17.80,0.20,1326.10,5.10,105.90,1058.60,156.60 +BIHAR,1964,1.40,3.30,2.40,21.90,59.30,134.70,453.60,157.70,219.00,66.30,2.70,0.00,1122.50,4.70,83.60,965.10,69.10 +BIHAR,1965,0.40,1.20,15.70,7.10,7.70,98.80,302.20,328.30,215.00,22.20,1.80,2.40,1002.70,1.70,30.40,944.30,26.30 +BIHAR,1966,21.20,6.90,0.10,0.90,39.50,114.50,155.50,308.30,83.10,18.30,17.10,1.60,767.00,28.10,40.40,661.50,37.00 +BIHAR,1967,0.20,0.10,38.60,30.60,23.60,80.70,278.20,282.10,253.80,10.30,0.10,1.50,999.90,0.20,92.80,894.80,12.00 +BIHAR,1968,29.10,1.70,7.00,3.00,17.30,261.80,329.60,293.10,79.20,113.30,0.00,4.90,1140.10,30.80,27.30,963.70,118.20 +BIHAR,1969,5.20,9.30,9.70,20.70,64.40,193.10,348.40,379.40,219.10,15.30,23.60,0.30,1288.60,14.50,94.80,1140.10,39.20 +BIHAR,1970,22.10,13.40,3.20,17.90,39.20,194.60,284.20,235.60,229.50,34.50,0.40,0.00,1074.70,35.50,60.20,944.00,35.00 +BIHAR,1971,17.30,14.60,5.10,91.40,81.50,278.00,307.00,367.90,129.20,138.60,1.90,0.00,1432.60,31.90,178.00,1082.20,140.50 +BIHAR,1972,12.90,38.00,2.70,3.20,3.40,56.70,163.40,154.90,209.70,48.40,24.60,0.00,717.90,51.00,9.20,584.70,73.00 +BIHAR,1973,22.90,10.20,3.80,4.40,65.00,200.90,185.10,258.90,271.40,158.20,8.30,0.00,1189.00,33.10,73.10,916.30,166.50 +BIHAR,1974,3.90,0.70,21.90,9.90,39.10,129.40,451.60,317.50,229.20,28.00,0.30,3.70,1235.20,4.60,70.90,1127.70,32.00 +BIHAR,1975,9.10,4.10,12.00,11.00,34.40,143.20,403.10,155.20,245.30,51.70,0.00,0.00,1069.10,13.20,57.50,946.70,51.70 +BIHAR,1976,2.30,12.40,0.90,8.90,80.10,147.10,221.00,292.80,372.60,22.40,0.70,0.50,1161.70,14.70,90.00,1033.40,23.70 +BIHAR,1977,5.30,2.90,1.30,17.00,83.70,102.50,375.50,266.00,121.00,147.10,8.10,17.30,1147.50,8.10,101.90,865.00,172.50 +BIHAR,1978,13.40,27.80,16.80,24.50,51.80,190.40,313.60,252.60,248.60,142.80,4.80,3.70,1290.80,41.10,93.00,1005.20,151.40 +BIHAR,1979,23.40,19.40,2.30,21.30,6.20,90.60,435.50,166.10,113.00,88.50,25.20,10.30,1001.90,42.90,29.80,805.20,124.00 +BIHAR,1980,4.70,2.40,9.50,7.90,80.90,160.20,389.90,375.30,190.50,29.50,0.20,1.00,1252.20,7.10,98.40,1115.90,30.80 +BIHAR,1981,31.30,5.70,14.30,47.90,86.30,107.90,580.10,311.30,168.80,1.00,6.10,3.90,1364.70,37.00,148.40,1168.10,11.00 +BIHAR,1982,4.40,6.10,28.20,14.70,31.00,222.40,227.20,164.50,170.50,42.10,21.50,1.00,933.50,10.50,73.90,784.60,64.60 +BIHAR,1983,13.10,1.70,8.00,45.00,81.10,101.20,353.80,195.80,220.60,69.90,0.00,14.10,1104.20,14.80,134.10,871.30,84.00 +BIHAR,1984,28.60,33.90,1.30,11.20,65.60,353.40,476.40,216.90,219.00,15.40,1.50,3.00,1426.20,62.50,78.10,1265.80,19.90 +BIHAR,1985,8.80,0.50,0.50,8.00,69.20,163.20,481.50,238.00,289.00,188.00,1.20,7.10,1455.00,9.30,77.70,1171.70,196.30 +BIHAR,1986,1.10,13.90,0.50,16.00,94.30,168.40,395.70,263.50,221.10,124.20,1.30,22.10,1322.10,15.00,110.80,1048.60,147.60 +BIHAR,1987,0.70,3.70,5.40,37.70,40.10,143.60,452.00,539.80,379.70,52.80,2.70,2.30,1660.40,4.30,83.10,1515.10,57.90 +BIHAR,1988,1.20,15.30,27.30,46.90,46.20,174.50,364.50,459.40,153.20,33.70,1.50,13.80,1337.40,16.40,120.30,1151.60,49.00 +BIHAR,1989,8.90,8.70,6.90,0.20,100.30,152.90,446.00,171.90,330.90,28.20,1.00,14.00,1269.90,17.50,107.40,1101.70,43.20 +BIHAR,1990,0.30,30.20,13.80,14.00,83.30,156.60,485.50,204.40,201.20,49.70,0.00,0.20,1239.40,30.60,111.10,1047.80,49.90 +BIHAR,1991,14.50,6.30,7.90,8.90,31.20,176.20,179.70,324.20,270.50,7.20,0.00,19.20,1045.70,20.70,48.00,950.50,26.50 +BIHAR,1992,2.60,3.10,0.10,2.60,61.10,83.90,284.80,219.20,85.90,52.40,1.40,0.40,797.60,5.80,63.80,673.80,54.20 +BIHAR,1993,9.40,4.00,24.50,24.50,51.10,154.80,209.10,357.30,320.00,34.30,19.30,0.10,1208.30,13.40,100.10,1041.20,53.60 +BIHAR,1994,28.30,29.10,1.00,7.00,32.70,130.90,217.70,257.60,226.50,32.90,4.40,1.20,969.40,57.50,40.70,832.80,38.50 +BIHAR,1995,6.80,11.60,2.00,0.10,6.70,162.90,227.50,335.70,279.10,11.40,44.40,23.80,1111.90,18.40,8.80,1005.10,79.60 +BIHAR,1996,26.00,21.70,0.20,3.00,18.20,220.10,238.50,350.90,162.50,66.20,0.00,0.00,1107.20,47.70,21.40,972.00,66.20 +BIHAR,1997,10.50,1.10,2.90,29.30,42.20,211.00,463.90,287.60,185.80,27.80,11.00,30.60,1303.70,11.60,74.40,1148.30,69.50 +BIHAR,1998,8.40,11.20,23.60,26.60,38.20,96.60,465.10,377.40,188.00,83.00,14.50,0.00,1332.50,19.60,88.40,1127.00,97.50 +BIHAR,1999,0.10,0.20,0.40,3.80,83.60,265.10,380.80,347.50,199.60,114.10,6.90,0.60,1402.70,0.30,87.80,1192.90,121.70 +BIHAR,2000,0.50,12.10,3.60,37.20,96.20,267.20,264.30,201.40,314.80,9.60,0.00,0.10,1207.00,12.70,137.00,1047.70,9.70 +BIHAR,2001,1.00,0.50,3.00,12.60,98.40,224.40,224.70,225.90,274.80,181.30,0.50,0.00,1247.00,1.50,114.00,949.80,181.80 +BIHAR,2002,13.40,11.30,2.20,25.00,74.80,116.60,386.10,247.70,192.80,33.80,1.40,0.70,1105.80,24.60,102.10,943.20,35.80 +BIHAR,2003,13.20,39.70,10.20,21.90,41.40,230.90,356.80,310.60,183.90,142.00,0.20,3.00,1353.90,52.90,73.50,1082.30,145.20 +BIHAR,2004,22.70,2.10,2.20,32.00,72.70,246.80,418.40,175.90,115.30,56.40,3.10,0.00,1147.80,24.80,107.00,956.40,59.50 +BIHAR,2005,13.90,14.30,12.10,7.70,28.60,82.50,300.00,309.10,105.10,34.30,0.00,0.20,907.80,28.20,48.50,796.70,34.50 +BIHAR,2006,0.10,0.00,1.90,19.20,73.20,200.00,290.70,160.40,285.20,17.60,2.90,1.60,1052.80,0.10,94.30,936.30,22.10 +BIHAR,2007,0.20,34.20,25.40,20.30,94.40,170.40,549.40,340.60,309.00,39.60,9.10,7.50,1600.20,34.30,140.20,1369.40,56.20 +BIHAR,2008,25.60,4.40,3.20,10.40,48.90,291.20,397.20,278.10,117.10,21.40,0.10,0.00,1197.70,30.00,62.60,1083.50,21.60 +BIHAR,2009,0.30,0.40,1.10,2.90,98.50,67.70,213.60,298.90,127.60,72.60,5.10,0.80,889.30,0.70,102.50,707.70,78.40 +BIHAR,2010,0.10,1.10,0.20,6.50,44.40,80.90,191.20,158.40,105.70,33.60,5.00,2.10,629.20,1.30,51.10,536.20,40.70 +BIHAR,2011,4.20,7.70,9.20,23.90,74.50,211.00,241.10,278.70,234.10,10.00,2.00,0.90,1097.10,11.80,107.60,964.80,12.90 +BIHAR,2012,18.10,2.70,7.30,20.40,18.80,96.20,354.00,240.40,233.80,34.30,6.40,0.00,1032.40,20.90,46.50,924.40,40.60 +BIHAR,2013,5.10,22.60,0.60,32.30,89.50,183.30,182.00,213.60,143.30,197.10,0.40,0.00,1069.90,27.70,122.40,722.20,197.50 +BIHAR,2014,17.00,33.50,8.40,0.70,103.90,115.20,265.40,307.60,160.30,47.80,0.00,1.20,1061.00,50.50,112.90,848.60,49.00 +BIHAR,2015,12.80,1.80,27.20,38.70,39.50,122.10,231.50,287.00,101.70,10.40,0.00,0.00,872.70,14.60,105.50,742.30,10.40 +EAST UTTAR PRADESH,1901,62.60,31.30,8.20,1.10,13.60,21.80,226.50,285.60,215.40,4.90,0.10,2.10,873.20,93.90,22.90,749.30,7.10 +EAST UTTAR PRADESH,1902,6.10,2.30,2.40,2.00,21.40,32.50,411.50,155.40,257.20,13.20,1.20,0.00,905.20,8.30,25.90,856.60,14.50 +EAST UTTAR PRADESH,1903,8.20,0.40,1.30,0.70,15.30,71.60,115.30,420.20,258.70,324.70,0.00,0.00,1216.40,8.60,17.30,865.80,324.70 +EAST UTTAR PRADESH,1904,7.30,1.50,8.30,0.40,28.70,148.00,359.40,328.80,95.00,50.60,17.00,26.30,1071.20,8.80,37.40,931.10,93.90 +EAST UTTAR PRADESH,1905,16.80,23.60,20.00,5.40,15.40,17.30,302.40,316.20,169.50,3.30,0.00,1.60,891.60,40.50,40.90,805.40,4.90 +EAST UTTAR PRADESH,1906,5.70,58.20,6.70,0.00,13.50,140.60,341.20,290.90,135.50,5.10,0.00,0.10,997.70,64.00,20.30,908.20,5.20 +EAST UTTAR PRADESH,1907,2.10,74.90,19.20,20.30,11.10,48.60,173.50,290.90,25.70,0.00,0.00,0.10,666.30,77.00,50.50,538.60,0.10 +EAST UTTAR PRADESH,1908,19.20,15.70,7.70,0.80,5.20,63.30,230.50,304.00,86.10,11.90,0.00,0.30,744.70,34.90,13.70,683.90,12.20 +EAST UTTAR PRADESH,1909,8.40,5.40,0.00,66.60,6.60,248.90,399.00,206.90,135.30,9.00,0.00,20.50,1106.90,13.90,73.20,990.20,29.50 +EAST UTTAR PRADESH,1910,4.40,0.20,0.50,1.60,28.60,163.80,231.10,341.40,213.50,103.00,28.00,0.20,1116.40,4.60,30.80,949.80,131.20 +EAST UTTAR PRADESH,1911,40.10,0.10,29.10,2.20,4.00,121.80,85.90,320.70,373.40,99.40,37.10,0.10,1113.90,40.20,35.30,901.80,136.60 +EAST UTTAR PRADESH,1912,16.00,7.30,6.50,5.70,18.80,60.60,336.50,279.10,117.60,0.70,30.20,0.50,879.60,23.40,31.00,793.80,31.40 +EAST UTTAR PRADESH,1913,0.60,37.10,32.00,0.50,68.70,175.00,222.00,200.00,95.70,15.50,0.00,14.50,861.40,37.70,101.20,692.60,29.90 +EAST UTTAR PRADESH,1914,1.30,16.10,21.80,8.30,55.30,37.20,407.70,346.10,92.10,2.60,0.10,0.20,988.80,17.30,85.40,883.10,2.90 +EAST UTTAR PRADESH,1915,12.50,45.50,25.60,5.80,20.10,107.90,285.40,417.20,387.40,98.60,1.90,1.90,1409.80,58.00,51.50,1197.90,102.50 +EAST UTTAR PRADESH,1916,0.00,20.10,0.00,6.90,7.30,243.50,314.80,351.20,197.40,55.50,5.10,0.00,1201.90,20.10,14.20,1106.90,60.70 +EAST UTTAR PRADESH,1917,7.90,32.20,8.40,3.90,43.80,171.40,356.70,230.00,302.20,55.40,0.00,4.60,1216.50,40.20,56.00,1060.30,60.00 +EAST UTTAR PRADESH,1918,0.60,0.10,5.30,4.30,20.30,142.00,110.40,261.60,104.00,0.10,1.10,0.90,650.70,0.70,29.90,618.10,2.10 +EAST UTTAR PRADESH,1919,46.20,9.60,2.90,6.50,12.20,68.80,347.40,237.40,228.90,59.10,0.10,4.40,1023.40,55.70,21.50,882.50,63.60 +EAST UTTAR PRADESH,1920,0.00,12.50,13.60,0.80,16.00,86.20,468.40,161.40,98.20,3.10,0.00,0.00,860.20,12.60,30.30,814.20,3.10 +EAST UTTAR PRADESH,1921,41.20,0.70,2.50,8.50,0.50,166.80,203.60,460.70,218.20,11.10,0.00,1.00,1114.70,41.90,11.50,1049.30,12.10 +EAST UTTAR PRADESH,1922,27.60,5.70,0.00,4.40,2.90,130.20,436.80,438.10,299.10,3.10,0.60,15.50,1364.00,33.40,7.30,1304.10,19.20 +EAST UTTAR PRADESH,1923,1.20,38.10,0.10,0.10,5.40,41.90,276.60,340.50,261.70,93.20,1.00,16.20,1076.20,39.30,5.70,920.70,110.50 +EAST UTTAR PRADESH,1924,11.50,7.30,1.00,0.20,2.20,42.10,500.90,239.90,266.30,29.20,11.10,8.30,1119.90,18.80,3.40,1049.20,48.60 +EAST UTTAR PRADESH,1925,5.20,0.00,0.40,16.70,20.90,140.80,443.90,236.30,233.10,6.00,10.90,0.00,1114.10,5.20,37.90,1054.10,16.90 +EAST UTTAR PRADESH,1926,11.30,2.50,44.60,14.00,19.00,18.70,365.50,259.80,225.20,26.80,0.50,1.50,989.50,13.80,77.60,869.30,28.80 +EAST UTTAR PRADESH,1927,6.40,21.30,15.50,1.60,29.70,67.80,280.50,306.30,151.80,73.40,72.90,3.90,1031.20,27.70,46.90,806.40,150.20 +EAST UTTAR PRADESH,1928,24.90,84.30,0.70,12.70,11.70,118.40,290.80,112.10,65.20,68.60,0.30,15.10,804.80,109.20,25.10,586.50,84.00 +EAST UTTAR PRADESH,1929,42.40,1.40,13.00,1.70,6.60,163.70,286.70,354.60,48.50,53.30,0.00,43.00,1014.80,43.80,21.20,853.50,96.30 +EAST UTTAR PRADESH,1930,11.30,16.80,5.20,3.50,6.10,54.20,367.00,265.00,284.80,38.60,3.50,13.40,1069.50,28.10,14.80,971.10,55.60 +EAST UTTAR PRADESH,1931,0.50,27.40,1.80,0.20,8.60,36.80,297.00,240.20,332.00,102.30,0.20,0.10,1047.10,27.90,10.60,905.90,102.70 +EAST UTTAR PRADESH,1932,0.00,5.50,2.20,1.40,7.60,89.40,170.10,287.40,125.70,16.80,29.50,2.90,738.50,5.50,11.20,672.60,49.20 +EAST UTTAR PRADESH,1933,14.80,18.50,2.90,37.00,46.80,128.00,223.70,247.30,158.10,100.50,0.00,0.00,977.50,33.30,86.60,757.10,100.50 +EAST UTTAR PRADESH,1934,33.70,1.60,12.50,1.00,1.50,148.70,360.70,257.30,236.40,9.50,1.50,3.90,1068.40,35.30,15.00,1003.10,14.90 +EAST UTTAR PRADESH,1935,19.90,18.00,0.00,10.80,0.20,73.90,259.00,325.30,198.10,0.00,0.00,14.60,919.80,37.90,11.10,856.20,14.60 +EAST UTTAR PRADESH,1936,6.30,31.10,4.10,4.60,24.20,219.50,598.80,354.20,252.50,28.40,3.30,18.40,1545.50,37.40,32.80,1425.10,50.10 +EAST UTTAR PRADESH,1937,0.00,58.30,1.40,6.00,21.20,94.90,313.50,363.90,102.20,70.50,0.10,3.30,1035.30,58.30,28.60,874.60,73.90 +EAST UTTAR PRADESH,1938,24.50,11.50,0.00,1.70,37.40,285.70,376.80,378.90,224.20,33.10,0.30,0.00,1374.20,36.00,39.10,1265.60,33.40 +EAST UTTAR PRADESH,1939,14.00,21.00,4.30,1.10,2.50,146.80,284.40,227.60,222.60,20.70,0.00,0.00,945.00,35.00,7.90,881.50,20.70 +EAST UTTAR PRADESH,1940,8.30,20.90,31.50,5.00,10.50,66.20,256.70,315.20,121.00,5.90,0.00,25.80,866.80,29.20,46.90,759.10,31.70 +EAST UTTAR PRADESH,1941,19.00,5.60,0.40,0.20,19.10,138.30,142.80,297.50,171.00,4.00,0.20,0.00,798.20,24.60,19.70,749.70,4.20 +EAST UTTAR PRADESH,1942,56.20,55.80,7.90,4.70,4.90,99.60,277.80,312.40,203.00,0.20,0.00,6.20,1028.60,111.90,17.50,892.80,6.40 +EAST UTTAR PRADESH,1943,24.30,7.30,0.10,20.70,15.60,75.40,231.30,444.40,266.50,15.40,0.00,0.00,1101.10,31.60,36.50,1017.50,15.40 +EAST UTTAR PRADESH,1944,19.20,41.60,63.70,12.40,6.30,105.90,278.40,304.70,178.50,47.50,0.00,3.20,1061.50,60.80,82.30,867.50,50.80 +EAST UTTAR PRADESH,1945,46.50,1.80,1.70,14.90,12.00,70.30,239.30,211.50,267.90,108.90,0.00,5.70,980.40,48.30,28.50,789.00,114.60 +EAST UTTAR PRADESH,1946,0.00,25.70,0.50,26.90,35.00,88.20,395.50,219.50,142.60,92.50,10.50,2.00,1038.90,25.70,62.40,845.80,105.00 +EAST UTTAR PRADESH,1947,17.30,7.30,11.30,0.70,14.50,88.00,419.40,229.50,189.00,27.70,0.00,1.60,1006.30,24.60,26.50,925.90,29.30 +EAST UTTAR PRADESH,1948,28.30,9.90,0.50,0.70,14.00,100.20,420.40,391.70,275.50,66.80,15.10,0.00,1323.10,38.20,15.30,1187.80,81.90 +EAST UTTAR PRADESH,1949,3.80,41.30,1.20,3.80,28.50,52.70,287.80,352.40,272.40,86.70,0.50,0.00,1131.00,45.10,33.50,965.20,87.20 +EAST UTTAR PRADESH,1950,28.80,7.50,19.80,0.20,10.60,147.10,250.90,366.80,91.20,3.30,0.10,25.10,951.40,36.30,30.60,856.00,28.60 +EAST UTTAR PRADESH,1951,27.40,10.90,21.60,6.10,2.50,114.40,139.20,247.40,168.30,12.70,2.00,0.10,752.50,38.30,30.20,669.30,14.80 +EAST UTTAR PRADESH,1952,2.80,12.80,33.70,2.70,9.40,244.80,161.90,350.10,110.80,4.40,0.00,2.60,935.90,15.60,45.80,867.50,7.10 +EAST UTTAR PRADESH,1953,32.40,6.30,1.30,3.40,14.90,138.40,497.50,323.70,243.60,3.60,0.00,1.70,1266.90,38.70,19.60,1203.30,5.30 +EAST UTTAR PRADESH,1954,36.50,32.10,1.70,0.00,3.60,65.20,309.90,300.40,186.50,33.60,0.00,0.20,969.70,68.60,5.20,862.00,33.80 +EAST UTTAR PRADESH,1955,34.40,9.60,1.20,1.90,4.50,202.10,529.90,310.80,230.70,99.10,0.00,0.10,1424.30,44.00,7.60,1273.60,99.20 +EAST UTTAR PRADESH,1956,21.50,5.70,12.30,1.20,39.70,165.20,220.30,281.10,292.30,167.20,38.90,8.70,1254.10,27.20,53.10,959.00,214.90 +EAST UTTAR PRADESH,1957,44.20,0.40,18.00,1.00,1.00,56.40,367.30,293.50,163.30,5.10,0.10,5.40,955.70,44.60,20.00,880.50,10.50 +EAST UTTAR PRADESH,1958,14.60,3.20,5.80,4.40,1.30,52.60,247.30,388.50,184.40,111.90,0.00,2.90,1016.90,17.80,11.50,872.80,114.80 +EAST UTTAR PRADESH,1959,53.20,4.20,4.80,4.10,36.00,44.40,234.10,274.60,85.90,125.90,2.00,0.00,869.20,57.40,44.90,639.00,127.90 +EAST UTTAR PRADESH,1960,9.60,0.10,36.30,2.90,5.90,75.20,411.00,317.20,174.50,136.70,0.60,0.00,1170.00,9.70,45.10,977.80,137.40 +EAST UTTAR PRADESH,1961,24.70,25.60,0.00,1.60,6.60,92.70,285.10,407.00,154.80,203.50,0.60,11.90,1214.30,50.30,8.30,939.60,216.00 +EAST UTTAR PRADESH,1962,28.60,17.00,9.20,4.80,3.20,81.70,226.30,428.10,265.40,2.30,0.00,5.40,1072.00,45.60,17.20,1001.40,7.70 +EAST UTTAR PRADESH,1963,14.80,2.40,10.00,8.60,19.40,99.90,320.80,339.90,146.10,24.90,8.00,1.70,996.30,17.10,38.00,906.70,34.50 +EAST UTTAR PRADESH,1964,1.60,6.60,0.20,3.70,43.40,82.90,398.70,179.90,292.20,18.30,0.80,8.50,1036.60,8.20,47.30,953.60,27.60 +EAST UTTAR PRADESH,1965,2.10,0.70,9.90,19.30,2.70,21.40,204.50,213.60,161.70,47.90,0.50,1.20,685.50,2.80,32.00,601.10,49.60 +EAST UTTAR PRADESH,1966,13.50,8.80,0.20,0.00,8.40,185.70,149.30,274.30,23.10,15.00,18.30,11.10,707.80,22.30,8.60,632.50,44.40 +EAST UTTAR PRADESH,1967,2.10,0.10,30.50,9.20,8.10,81.00,264.70,443.30,155.90,2.70,0.70,31.00,1029.40,2.20,47.80,945.00,34.40 +EAST UTTAR PRADESH,1968,28.80,5.50,4.50,2.60,1.70,95.10,311.30,251.10,104.10,32.90,0.00,2.30,840.00,34.30,8.80,761.80,35.20 +EAST UTTAR PRADESH,1969,2.80,2.60,2.90,7.00,37.30,59.20,370.10,322.20,200.50,6.80,13.30,0.00,1024.60,5.40,47.20,952.00,20.00 +EAST UTTAR PRADESH,1970,31.30,41.30,8.40,2.10,30.30,178.10,197.90,226.10,365.50,51.20,0.10,0.00,1132.30,72.60,40.80,967.50,51.40 +EAST UTTAR PRADESH,1971,15.70,11.60,7.10,39.60,54.50,202.50,295.30,386.70,221.80,75.80,0.50,0.00,1311.10,27.30,101.30,1106.30,76.30 +EAST UTTAR PRADESH,1972,9.70,23.40,3.00,1.10,1.00,26.90,185.80,208.30,167.80,24.60,14.80,0.40,666.90,33.10,5.10,588.90,39.70 +EAST UTTAR PRADESH,1973,11.70,18.30,0.70,0.00,17.90,119.70,245.10,257.80,174.50,109.70,0.10,0.10,955.70,30.00,18.70,797.00,110.00 +EAST UTTAR PRADESH,1974,0.50,3.20,4.90,0.20,7.00,53.30,375.60,257.40,126.60,38.20,1.50,13.70,882.20,3.70,12.10,813.00,53.40 +EAST UTTAR PRADESH,1975,13.50,7.60,13.10,0.80,8.00,234.90,405.90,312.50,188.90,40.30,0.00,0.00,1225.50,21.10,21.90,1142.20,40.30 +EAST UTTAR PRADESH,1976,6.10,3.50,0.20,5.70,23.40,61.40,254.00,309.30,254.80,4.80,0.30,0.10,923.50,9.50,29.40,879.50,5.20 +EAST UTTAR PRADESH,1977,10.30,3.70,0.10,9.80,30.90,57.90,397.20,193.50,128.50,66.40,0.70,15.10,914.10,14.10,40.80,777.10,82.20 +EAST UTTAR PRADESH,1978,27.90,27.20,31.60,9.60,6.50,187.10,327.20,262.60,219.10,12.20,1.60,3.90,1116.30,55.00,47.80,995.90,17.60 +EAST UTTAR PRADESH,1979,27.60,30.60,2.30,6.80,12.00,85.20,320.60,118.10,31.60,18.50,33.60,9.60,696.50,58.20,21.10,555.50,61.70 +EAST UTTAR PRADESH,1980,3.00,4.20,8.90,0.30,15.50,153.40,553.10,449.70,269.80,19.80,0.20,10.70,1488.50,7.10,24.70,1426.00,30.70 +EAST UTTAR PRADESH,1981,19.60,3.70,11.80,4.80,29.20,80.00,436.00,216.80,293.00,1.40,10.90,3.10,1110.10,23.30,45.80,1025.70,15.40 +EAST UTTAR PRADESH,1982,34.70,9.90,40.30,11.10,44.90,120.10,215.20,316.60,281.90,10.40,20.50,5.00,1110.60,44.60,96.30,933.80,35.90 +EAST UTTAR PRADESH,1983,20.00,1.60,0.70,24.90,45.90,104.20,271.00,242.50,364.20,110.40,0.00,19.60,1204.80,21.60,71.50,981.90,129.90 +EAST UTTAR PRADESH,1984,24.00,23.50,1.40,9.40,10.70,286.90,329.70,203.70,164.10,18.50,0.00,4.70,1076.70,47.50,21.60,984.40,23.30 +EAST UTTAR PRADESH,1985,20.80,0.00,0.50,2.20,10.40,69.70,351.80,215.70,333.30,158.30,0.00,13.20,1175.90,20.80,13.10,970.50,171.60 +EAST UTTAR PRADESH,1986,7.10,36.50,0.90,5.60,26.00,116.90,301.00,245.30,121.20,31.60,1.00,42.50,935.30,43.50,32.40,784.40,75.00 +EAST UTTAR PRADESH,1987,11.10,6.40,2.60,6.40,22.20,20.70,215.90,167.60,289.50,78.70,0.00,3.50,824.70,17.50,31.30,693.70,82.20 +EAST UTTAR PRADESH,1988,2.30,11.10,17.40,14.00,17.40,107.00,375.40,365.00,102.30,54.70,0.00,18.50,1085.10,13.40,48.80,949.70,73.20 +EAST UTTAR PRADESH,1989,14.50,4.30,9.30,0.00,7.30,138.40,370.70,194.70,207.40,7.90,1.80,13.60,969.90,18.80,16.60,911.30,23.20 +EAST UTTAR PRADESH,1990,0.00,42.60,9.50,1.80,42.30,135.70,488.80,212.20,153.90,12.00,0.00,7.40,1106.10,42.60,53.60,990.60,19.30 +EAST UTTAR PRADESH,1991,8.60,10.90,7.90,3.90,4.10,98.20,123.00,395.90,201.60,0.20,2.70,18.30,875.20,19.50,15.90,818.70,21.10 +EAST UTTAR PRADESH,1992,9.00,8.70,0.30,1.20,14.00,51.40,243.30,233.20,191.10,103.90,7.30,0.00,863.40,17.70,15.50,719.00,111.20 +EAST UTTAR PRADESH,1993,1.70,5.10,23.20,8.90,33.90,162.50,142.60,206.60,240.70,7.80,0.50,0.30,834.00,6.80,66.10,752.40,8.60 +EAST UTTAR PRADESH,1994,22.20,24.70,0.10,9.50,7.60,127.50,230.80,300.10,177.50,10.00,0.30,0.00,910.20,46.90,17.30,835.80,10.20 +EAST UTTAR PRADESH,1995,19.20,23.10,1.90,2.00,2.10,133.80,173.00,290.40,187.20,2.40,16.70,8.40,860.50,42.30,6.10,784.50,27.60 +EAST UTTAR PRADESH,1996,55.60,39.60,0.60,2.50,1.20,145.10,201.00,337.90,147.10,79.80,0.00,0.00,1010.30,95.20,4.30,831.00,79.80 +EAST UTTAR PRADESH,1997,6.00,0.40,0.60,13.30,15.80,69.50,291.30,41.50,32.10,8.10,4.10,10.80,493.30,6.40,29.70,434.30,23.00 +EAST UTTAR PRADESH,1998,9.50,8.60,14.20,6.60,20.10,55.40,218.30,247.00,63.80,14.50,3.00,0.00,661.00,18.10,41.00,584.40,17.50 +EAST UTTAR PRADESH,1999,8.70,6.80,0.00,0.20,23.60,112.60,254.20,261.50,211.10,71.00,1.00,2.00,952.80,15.50,23.80,839.40,74.10 +EAST UTTAR PRADESH,2000,2.60,5.30,2.90,10.50,38.60,199.10,240.90,204.70,222.70,1.30,18.10,0.20,946.80,7.90,52.00,867.40,19.50 +EAST UTTAR PRADESH,2001,1.10,1.40,1.30,4.20,26.70,229.00,294.00,185.90,152.10,75.30,2.80,0.00,973.80,2.60,32.20,860.90,78.10 +EAST UTTAR PRADESH,2002,15.00,26.10,0.60,2.50,29.20,50.60,101.70,212.10,226.70,20.60,1.40,2.70,689.10,41.10,32.20,591.10,24.70 +EAST UTTAR PRADESH,2003,13.80,36.90,2.60,8.80,2.00,124.90,255.20,301.40,333.80,7.60,0.00,9.30,1096.40,50.70,13.40,1015.30,16.90 +EAST UTTAR PRADESH,2004,22.80,1.80,0.00,8.70,25.80,161.00,219.50,147.60,126.50,33.00,0.10,0.10,746.90,24.60,34.50,654.60,33.20 +EAST UTTAR PRADESH,2005,14.00,14.00,10.30,0.90,8.00,57.50,290.30,227.30,119.70,25.20,0.00,2.90,770.30,28.00,19.20,694.80,28.20 +EAST UTTAR PRADESH,2006,0.00,0.00,10.70,7.80,27.10,107.40,269.10,146.70,51.50,9.10,1.20,1.50,632.10,0.00,45.60,574.80,11.80 +EAST UTTAR PRADESH,2007,0.10,46.60,25.80,3.20,28.30,64.50,265.20,180.40,111.50,14.60,0.00,1.10,741.20,46.70,57.20,621.60,15.70 +EAST UTTAR PRADESH,2008,3.10,2.40,0.20,3.00,16.10,223.70,341.60,239.60,112.70,10.30,0.60,0.00,953.40,5.50,19.30,917.60,10.90 +EAST UTTAR PRADESH,2009,0.00,1.10,0.80,0.60,22.80,29.90,149.40,177.00,139.60,80.90,4.90,3.00,610.20,1.10,24.20,496.00,88.90 +EAST UTTAR PRADESH,2010,2.20,10.00,0.00,0.00,14.70,23.90,220.80,215.90,184.50,15.50,4.50,0.10,692.20,12.20,14.70,645.20,20.10 +EAST UTTAR PRADESH,2011,1.00,2.70,1.60,2.90,32.20,163.80,197.90,232.10,146.40,0.60,0.00,0.00,781.20,3.70,36.70,740.20,0.60 +EAST UTTAR PRADESH,2012,20.30,1.20,3.40,2.80,0.20,18.50,234.20,156.00,164.40,0.70,0.30,0.70,602.70,21.50,6.40,573.10,1.80 +EAST UTTAR PRADESH,2013,6.10,59.60,2.70,8.70,1.10,309.70,230.00,246.10,78.20,97.40,0.50,1.10,1041.40,65.80,12.60,864.00,99.00 +EAST UTTAR PRADESH,2014,47.40,25.80,15.40,1.70,10.70,47.80,224.50,138.10,106.70,74.70,0.00,8.40,701.20,73.30,27.70,517.10,83.10 +EAST UTTAR PRADESH,2015,30.00,4.10,48.20,23.20,8.60,95.30,179.00,175.80,21.90,11.80,0.50,4.90,603.30,34.10,80.00,472.00,17.20 +WEST UTTAR PRADESH,1901,51.40,25.60,9.50,0.70,5.60,23.80,201.90,374.30,67.70,7.60,0.00,7.90,775.90,76.90,15.80,667.70,15.40 +WEST UTTAR PRADESH,1902,4.60,4.60,0.60,4.80,7.20,54.50,325.90,180.60,143.10,9.60,0.90,0.20,736.60,9.20,12.70,704.10,10.60 +WEST UTTAR PRADESH,1903,13.40,0.40,1.20,0.00,8.20,32.70,145.40,279.10,150.40,177.30,0.00,0.40,808.40,13.70,9.40,607.60,177.60 +WEST UTTAR PRADESH,1904,6.30,2.00,29.70,0.40,24.80,68.50,358.80,311.10,97.10,2.70,15.70,28.20,945.20,8.20,54.90,835.50,46.60 +WEST UTTAR PRADESH,1905,32.30,26.60,14.80,3.60,7.10,18.90,139.80,95.00,92.20,0.20,0.00,2.90,433.50,59.00,25.50,345.90,3.10 +WEST UTTAR PRADESH,1906,3.30,63.20,21.50,0.20,3.40,206.50,240.50,172.60,260.60,1.10,0.00,5.70,978.70,66.50,25.20,880.20,6.80 +WEST UTTAR PRADESH,1907,13.80,64.80,17.60,27.20,9.60,15.80,176.50,263.90,0.50,0.00,0.00,0.00,589.50,78.60,54.40,456.60,0.00 +WEST UTTAR PRADESH,1908,22.40,11.40,1.70,1.90,12.00,44.40,325.20,409.10,35.80,0.20,0.70,1.30,866.30,33.90,15.70,814.60,2.20 +WEST UTTAR PRADESH,1909,16.70,6.10,0.10,69.00,2.80,163.30,350.60,155.10,106.80,1.10,0.00,31.40,903.00,22.80,71.90,775.80,32.50 +WEST UTTAR PRADESH,1910,11.10,2.50,0.00,1.40,13.50,88.00,120.30,274.50,205.40,149.50,9.10,0.40,875.90,13.60,15.00,688.30,159.00 +WEST UTTAR PRADESH,1911,63.80,0.50,31.60,0.80,0.30,58.80,57.40,135.60,346.20,17.20,38.90,0.60,751.60,64.30,32.60,598.00,56.70 +WEST UTTAR PRADESH,1912,24.50,6.00,8.50,4.10,5.00,27.50,238.10,224.80,254.80,0.10,9.50,1.40,804.50,30.50,17.70,745.20,11.00 +WEST UTTAR PRADESH,1913,0.20,37.40,27.00,1.80,52.00,124.20,123.70,101.20,19.70,0.90,0.70,6.40,495.30,37.60,80.80,368.90,8.00 +WEST UTTAR PRADESH,1914,0.10,8.50,21.80,17.90,30.50,48.30,335.20,195.60,212.80,11.30,5.50,0.00,887.50,8.50,70.20,791.90,16.90 +WEST UTTAR PRADESH,1915,20.20,60.70,50.30,7.40,11.90,58.50,196.00,241.30,136.00,18.40,0.00,1.80,802.50,80.90,69.60,631.70,20.20 +WEST UTTAR PRADESH,1916,0.10,17.90,0.00,2.50,10.40,139.90,299.70,356.90,230.50,48.90,7.40,0.00,1114.20,18.00,13.00,1027.00,56.30 +WEST UTTAR PRADESH,1917,9.70,25.60,11.70,16.80,48.50,101.80,298.10,235.50,288.90,80.10,0.00,3.50,1120.20,35.30,77.00,924.30,83.60 +WEST UTTAR PRADESH,1918,7.20,0.70,10.90,4.90,5.50,83.60,72.90,161.00,20.30,0.20,4.10,0.60,371.90,7.90,21.40,337.80,4.80 +WEST UTTAR PRADESH,1919,68.60,4.40,3.30,5.80,14.20,19.50,311.40,381.60,129.60,12.10,3.70,14.70,969.10,73.00,23.40,842.10,30.50 +WEST UTTAR PRADESH,1920,5.20,9.30,9.70,0.40,19.60,128.10,332.40,88.20,28.10,1.80,0.00,0.00,622.80,14.50,29.70,576.80,1.80 +WEST UTTAR PRADESH,1921,50.00,0.70,1.10,3.40,0.50,141.80,164.50,384.60,232.70,12.60,0.00,0.30,992.30,50.70,5.10,923.70,12.90 +WEST UTTAR PRADESH,1922,36.80,4.10,0.00,1.60,2.60,77.60,326.30,336.90,190.70,2.90,0.90,20.40,1000.80,40.90,4.10,931.60,24.20 +WEST UTTAR PRADESH,1923,4.90,39.70,0.30,0.00,7.40,8.10,209.80,350.40,204.10,39.70,1.40,36.40,902.30,44.60,7.80,772.40,77.50 +WEST UTTAR PRADESH,1924,29.10,20.30,2.20,0.20,7.70,17.80,308.80,256.60,354.70,41.70,1.60,23.40,1064.10,49.40,10.20,938.00,66.60 +WEST UTTAR PRADESH,1925,4.20,0.20,0.10,5.50,12.50,207.50,403.30,227.00,58.50,5.30,19.80,0.00,943.80,4.40,18.10,896.30,25.10 +WEST UTTAR PRADESH,1926,13.00,8.20,53.70,14.60,24.90,15.90,282.30,312.40,168.20,22.20,1.30,0.40,917.00,21.10,93.20,778.80,23.80 +WEST UTTAR PRADESH,1927,0.00,23.00,19.20,4.40,19.10,73.40,252.60,316.00,66.70,104.40,42.00,13.40,934.20,23.00,42.70,708.60,159.90 +WEST UTTAR PRADESH,1928,28.60,89.90,1.90,7.80,8.60,55.90,262.40,85.10,33.70,43.20,8.60,18.90,644.60,118.50,18.40,437.10,70.70 +WEST UTTAR PRADESH,1929,26.30,2.50,1.90,5.70,1.50,83.00,210.70,234.70,32.70,18.40,0.80,32.20,650.10,28.70,9.10,561.00,51.30 +WEST UTTAR PRADESH,1930,23.80,18.30,0.60,2.60,4.30,64.00,369.60,219.70,50.40,30.90,0.20,4.00,788.10,42.10,7.40,703.60,35.10 +WEST UTTAR PRADESH,1931,0.50,25.90,6.30,0.40,6.30,16.20,217.00,224.30,349.50,84.00,0.20,0.20,930.80,26.40,12.90,807.00,84.40 +WEST UTTAR PRADESH,1932,0.00,4.20,13.00,4.20,2.90,24.30,175.30,178.70,286.70,0.10,8.60,7.90,706.00,4.20,20.10,665.10,16.60 +WEST UTTAR PRADESH,1933,5.50,14.70,6.00,19.60,33.30,239.00,205.50,224.00,199.60,85.90,1.00,1.40,1035.30,20.20,58.90,868.00,88.30 +WEST UTTAR PRADESH,1934,28.10,1.80,27.70,1.00,0.90,120.70,217.20,343.30,144.10,1.00,0.80,11.10,897.70,29.90,29.60,825.30,12.90 +WEST UTTAR PRADESH,1935,28.40,22.00,2.80,15.90,0.20,16.80,321.40,170.90,174.60,2.30,2.90,26.50,784.60,50.30,19.00,683.70,31.70 +WEST UTTAR PRADESH,1936,3.50,16.90,11.90,2.50,17.50,291.20,353.90,284.10,194.10,1.50,12.90,28.60,1218.40,20.30,31.90,1123.30,42.90 +WEST UTTAR PRADESH,1937,0.30,64.60,1.80,11.50,10.50,66.10,211.80,164.80,131.70,2.20,0.90,10.70,676.70,64.90,23.70,574.30,13.80 +WEST UTTAR PRADESH,1938,39.20,5.90,0.10,1.10,7.90,158.80,273.60,182.20,42.60,18.50,0.50,0.00,730.40,45.10,9.10,657.20,19.00 +WEST UTTAR PRADESH,1939,8.00,21.20,6.30,0.60,2.90,130.20,235.50,101.70,211.50,3.20,0.00,0.00,721.10,29.20,9.80,678.90,3.20 +WEST UTTAR PRADESH,1940,21.10,39.30,19.10,5.80,5.70,40.40,232.40,348.70,53.90,1.50,0.20,15.80,783.90,60.40,30.60,675.50,17.40 +WEST UTTAR PRADESH,1941,35.60,8.30,1.60,0.00,16.00,87.60,56.20,221.60,83.00,4.40,0.00,2.00,516.40,43.90,17.60,448.40,6.50 +WEST UTTAR PRADESH,1942,33.20,54.30,1.30,5.90,5.40,98.00,362.40,320.10,193.90,0.00,0.00,13.70,1088.20,87.50,12.60,974.40,13.70 +WEST UTTAR PRADESH,1943,25.80,0.50,2.80,13.90,11.20,75.70,186.60,379.50,149.80,4.50,0.00,0.10,850.40,26.20,27.90,791.70,4.60 +WEST UTTAR PRADESH,1944,32.30,43.20,44.40,25.10,0.40,76.50,255.40,183.20,87.10,21.00,0.60,1.20,770.30,75.60,69.90,602.20,22.70 +WEST UTTAR PRADESH,1945,35.50,0.00,0.50,4.60,4.40,31.00,309.50,260.00,278.80,41.60,0.00,0.10,966.00,35.50,9.50,879.40,41.70 +WEST UTTAR PRADESH,1946,0.10,19.30,0.70,11.90,20.40,92.20,378.20,277.60,40.00,31.50,18.20,6.70,896.60,19.40,33.00,787.90,56.40 +WEST UTTAR PRADESH,1947,18.10,12.20,11.00,0.20,2.90,47.40,237.30,197.80,263.60,11.10,0.00,7.40,809.20,30.40,14.10,746.10,18.50 +WEST UTTAR PRADESH,1948,37.20,18.80,11.90,0.30,5.30,9.20,310.30,422.80,179.70,22.50,9.60,0.50,1028.10,56.00,17.40,922.00,32.70 +WEST UTTAR PRADESH,1949,0.60,38.30,3.40,3.20,10.70,14.50,339.00,267.70,207.80,21.30,0.00,0.10,906.70,38.90,17.40,829.00,21.40 +WEST UTTAR PRADESH,1950,21.10,5.80,21.20,0.70,7.10,47.70,265.90,311.20,138.40,0.20,0.00,14.80,834.00,26.80,28.90,763.30,15.00 +WEST UTTAR PRADESH,1951,16.40,8.20,34.90,6.60,11.50,31.70,141.00,253.40,199.90,6.50,18.70,0.00,728.90,24.60,53.10,626.00,25.20 +WEST UTTAR PRADESH,1952,6.60,20.00,23.40,2.60,8.10,190.80,198.80,379.10,36.20,2.30,0.10,7.30,875.30,26.50,34.20,804.80,9.70 +WEST UTTAR PRADESH,1953,36.90,0.50,0.00,5.90,7.40,64.60,366.80,192.80,85.10,1.10,0.00,0.50,761.80,37.50,13.30,709.40,1.70 +WEST UTTAR PRADESH,1954,34.90,67.60,11.00,0.10,0.70,40.80,232.50,222.70,169.00,99.90,0.00,0.00,879.30,102.50,11.80,665.00,99.90 +WEST UTTAR PRADESH,1955,44.80,5.70,2.40,3.30,2.10,98.10,199.40,295.20,216.20,193.70,0.00,0.00,1060.90,50.50,7.70,808.90,193.70 +WEST UTTAR PRADESH,1956,23.10,4.30,22.20,0.40,12.40,67.20,334.70,289.80,96.80,206.50,4.50,2.60,1064.40,27.40,35.00,788.50,213.60 +WEST UTTAR PRADESH,1957,59.70,0.30,29.10,5.40,2.40,42.30,282.30,271.10,278.90,18.20,3.20,12.30,1005.20,60.00,36.80,874.60,33.80 +WEST UTTAR PRADESH,1958,7.70,2.80,3.50,5.50,0.70,42.10,397.10,327.30,246.70,122.40,0.20,9.40,1165.30,10.50,9.60,1013.20,132.00 +WEST UTTAR PRADESH,1959,46.30,3.90,5.70,1.30,34.10,18.90,203.50,281.10,106.80,50.20,16.50,0.00,768.30,50.20,41.10,610.30,66.60 +WEST UTTAR PRADESH,1960,11.60,0.00,33.90,2.30,5.80,64.90,334.90,391.90,94.70,187.70,0.00,1.90,1129.80,11.70,42.10,886.40,189.70 +WEST UTTAR PRADESH,1961,44.50,33.10,0.10,2.10,7.60,73.40,302.50,467.50,113.50,141.40,1.90,10.50,1198.30,77.70,9.80,956.90,153.90 +WEST UTTAR PRADESH,1962,34.00,18.60,15.10,0.80,2.20,45.90,221.20,238.00,214.60,0.10,1.60,6.10,798.20,52.60,18.10,719.70,7.80 +WEST UTTAR PRADESH,1963,13.60,5.00,5.20,3.50,9.70,70.90,165.40,361.40,279.50,0.30,10.90,4.30,929.70,18.50,18.40,877.20,15.60 +WEST UTTAR PRADESH,1964,2.30,0.80,1.90,0.60,20.20,38.80,416.30,246.70,261.00,1.60,0.20,11.60,1002.00,3.10,22.60,962.90,13.40 +WEST UTTAR PRADESH,1965,8.00,10.40,10.60,21.10,10.60,3.70,215.40,219.40,148.40,25.30,0.00,0.70,673.50,18.40,42.20,586.90,26.00 +WEST UTTAR PRADESH,1966,6.00,13.00,0.80,0.20,20.50,143.30,146.50,356.50,49.30,9.30,7.80,2.90,756.00,19.00,21.50,695.60,19.90 +WEST UTTAR PRADESH,1967,0.50,0.10,34.40,1.30,3.80,51.80,263.60,509.60,223.50,4.80,2.10,61.60,1157.20,0.60,39.40,1048.60,68.50 +WEST UTTAR PRADESH,1968,21.80,8.40,10.00,0.30,0.10,46.40,319.30,205.00,64.70,15.60,0.00,1.50,693.30,30.20,10.40,635.50,17.20 +WEST UTTAR PRADESH,1969,5.80,3.00,10.00,4.80,16.60,17.10,311.40,262.40,231.20,0.40,15.40,0.00,878.10,8.80,31.40,822.20,15.80 +WEST UTTAR PRADESH,1970,37.80,44.60,9.30,0.10,15.50,129.00,133.60,316.30,160.80,16.90,0.00,0.00,863.80,82.30,24.80,739.70,16.90 +WEST UTTAR PRADESH,1971,10.90,12.50,2.90,11.50,44.70,139.10,284.60,280.50,125.70,84.30,6.20,0.00,1003.10,23.40,59.20,830.00,90.60 +WEST UTTAR PRADESH,1972,4.00,26.30,4.50,3.10,0.40,31.90,165.90,211.50,119.00,7.50,9.40,1.60,585.10,30.30,8.00,528.30,18.50 +WEST UTTAR PRADESH,1973,7.50,12.70,2.60,0.00,7.90,79.90,263.50,292.00,87.10,51.00,0.10,1.70,805.90,20.20,10.50,722.40,52.80 +WEST UTTAR PRADESH,1974,0.20,0.70,0.80,0.10,7.90,25.80,356.60,191.50,27.60,39.10,0.00,18.60,668.90,0.90,8.70,601.50,57.70 +WEST UTTAR PRADESH,1975,13.40,7.80,7.00,0.80,2.50,159.70,273.10,245.60,256.90,22.60,0.00,0.00,989.50,21.20,10.30,935.30,22.60 +WEST UTTAR PRADESH,1976,1.50,11.90,2.90,2.30,11.00,69.80,228.80,246.10,75.20,2.60,0.60,0.30,653.20,13.40,16.20,620.00,3.60 +WEST UTTAR PRADESH,1977,15.90,2.80,0.20,20.00,22.70,78.50,440.60,192.30,176.10,27.80,0.30,17.20,994.30,18.70,42.80,887.50,45.30 +WEST UTTAR PRADESH,1978,6.00,31.70,57.10,8.30,0.70,206.20,279.70,397.00,244.90,3.50,2.70,6.20,1244.20,37.70,66.10,1127.90,12.50 +WEST UTTAR PRADESH,1979,45.10,48.60,10.60,2.30,29.90,56.70,240.80,69.70,26.60,1.70,18.60,7.40,558.00,93.70,42.80,393.70,27.80 +WEST UTTAR PRADESH,1980,4.50,4.80,19.30,0.40,2.20,104.70,349.40,364.40,99.30,16.10,1.40,18.10,984.70,9.20,21.90,917.90,35.60 +WEST UTTAR PRADESH,1981,19.00,5.20,13.40,1.30,22.70,102.20,314.50,131.40,101.90,3.10,20.60,4.20,739.60,24.30,37.50,650.00,27.90 +WEST UTTAR PRADESH,1982,30.50,8.30,61.80,23.80,40.50,53.10,231.10,403.40,81.80,8.70,14.40,11.60,969.10,38.80,126.20,769.40,34.70 +WEST UTTAR PRADESH,1983,28.10,5.40,5.50,59.80,33.70,89.70,306.70,385.50,212.60,50.70,0.00,14.00,1191.70,33.50,99.00,994.40,64.70 +WEST UTTAR PRADESH,1984,24.70,27.50,0.60,7.40,0.30,134.50,200.20,268.30,116.60,0.40,0.00,0.70,781.30,52.20,8.30,719.60,1.10 +WEST UTTAR PRADESH,1985,7.50,0.00,1.70,6.90,6.10,44.30,305.50,221.80,204.40,143.80,0.00,15.20,957.20,7.50,14.70,776.00,159.00 +WEST UTTAR PRADESH,1986,14.80,46.50,5.70,3.90,29.80,95.30,202.60,181.00,105.50,15.10,2.10,13.00,715.20,61.30,39.50,584.30,30.10 +WEST UTTAR PRADESH,1987,15.20,13.10,2.70,1.80,39.80,34.60,105.00,124.20,92.40,30.80,0.00,7.30,466.80,28.40,44.20,356.10,38.10 +WEST UTTAR PRADESH,1988,3.50,11.40,26.60,8.00,6.10,85.60,318.00,412.70,139.60,14.90,0.00,9.10,1035.60,14.90,40.70,956.00,24.00 +WEST UTTAR PRADESH,1989,24.60,1.10,15.40,0.00,1.60,88.50,132.10,222.00,153.60,0.40,4.10,14.00,657.30,25.70,17.00,596.10,18.40 +WEST UTTAR PRADESH,1990,0.00,67.50,9.20,0.70,29.80,45.90,334.20,195.90,250.40,3.70,3.50,17.40,958.00,67.50,39.70,826.40,24.50 +WEST UTTAR PRADESH,1991,2.90,18.90,7.50,2.90,2.70,44.80,108.60,406.20,124.70,0.00,7.90,21.70,748.70,21.80,13.10,684.30,29.60 +WEST UTTAR PRADESH,1992,14.20,9.70,4.00,0.30,7.90,25.90,196.90,306.10,179.40,67.40,8.90,0.00,820.60,23.90,12.10,708.30,76.30 +WEST UTTAR PRADESH,1993,3.70,13.50,21.20,1.00,15.20,82.00,156.60,136.90,326.80,15.10,0.10,0.00,771.90,17.10,37.40,702.20,15.10 +WEST UTTAR PRADESH,1994,24.00,17.30,0.00,12.40,6.50,72.50,364.30,290.20,19.70,0.00,0.00,0.10,806.80,41.20,18.90,746.60,0.20 +WEST UTTAR PRADESH,1995,30.10,11.20,7.90,3.70,0.00,72.20,188.30,389.20,122.10,0.10,0.20,1.90,826.80,41.30,11.60,771.70,2.20 +WEST UTTAR PRADESH,1996,24.80,55.80,2.70,0.40,3.70,86.10,210.30,350.40,170.70,36.20,0.00,0.00,941.20,80.60,6.90,817.50,36.20 +WEST UTTAR PRADESH,1997,3.80,0.70,2.40,19.20,22.80,79.90,235.70,34.60,24.00,7.50,3.20,11.40,445.20,4.50,44.30,374.20,22.10 +WEST UTTAR PRADESH,1998,3.30,8.10,23.50,9.00,10.40,71.40,273.40,343.70,84.20,39.60,0.70,0.00,867.20,11.40,42.90,772.70,40.20 +WEST UTTAR PRADESH,1999,19.30,1.10,0.00,0.00,8.30,66.30,215.10,180.50,261.60,33.40,0.10,0.70,786.40,20.50,8.30,723.50,34.20 +WEST UTTAR PRADESH,2000,8.80,22.90,1.70,2.10,23.60,143.00,251.20,238.90,79.10,0.00,0.00,0.00,771.40,31.70,27.40,712.20,0.10 +WEST UTTAR PRADESH,2001,2.50,2.30,2.60,12.00,29.60,164.40,282.00,122.10,26.70,16.30,1.10,0.10,661.70,4.80,44.20,595.20,17.60 +WEST UTTAR PRADESH,2002,16.80,37.60,2.00,0.70,21.50,29.00,29.60,252.30,218.10,6.70,0.40,10.50,625.20,54.50,24.20,529.00,17.60 +WEST UTTAR PRADESH,2003,18.60,40.40,2.50,4.40,5.90,74.10,315.60,214.20,356.60,0.70,0.80,13.60,1047.50,59.00,12.90,960.50,15.10 +WEST UTTAR PRADESH,2004,20.60,0.70,0.00,20.00,21.70,59.30,124.20,250.50,84.00,60.50,0.70,0.20,642.30,21.30,41.70,517.90,61.40 +WEST UTTAR PRADESH,2005,10.10,17.90,22.60,1.20,6.90,67.10,298.20,96.00,202.50,2.50,0.00,0.60,725.70,28.00,30.70,663.90,3.10 +WEST UTTAR PRADESH,2006,0.50,0.00,20.20,4.00,34.10,66.60,241.60,78.10,65.70,16.70,0.70,1.00,529.30,0.50,58.30,452.00,18.40 +WEST UTTAR PRADESH,2007,0.40,66.90,37.40,0.90,11.00,88.40,155.10,152.20,57.00,1.80,0.00,1.40,572.50,67.30,49.30,452.70,3.20 +WEST UTTAR PRADESH,2008,0.90,0.20,0.00,4.00,24.80,193.80,258.50,217.40,90.90,5.10,4.00,0.00,799.80,1.20,28.80,760.70,9.10 +WEST UTTAR PRADESH,2009,1.30,3.90,1.20,8.70,12.80,17.10,118.30,184.50,125.40,59.30,13.90,2.80,549.20,5.20,22.70,445.30,76.00 +WEST UTTAR PRADESH,2010,3.20,13.70,0.20,0.40,9.30,12.50,282.00,213.80,263.90,4.70,12.80,4.10,820.70,16.80,10.00,772.30,21.60 +WEST UTTAR PRADESH,2011,2.10,10.40,3.90,2.80,29.60,175.90,215.90,232.30,101.70,0.70,0.50,1.50,777.40,12.50,36.30,725.90,2.70 +WEST UTTAR PRADESH,2012,14.50,0.10,1.40,4.70,0.30,4.00,145.10,149.10,67.80,0.50,0.10,2.00,389.60,14.50,6.40,366.00,2.70 +WEST UTTAR PRADESH,2013,20.40,69.50,3.50,1.60,2.10,190.60,233.90,287.10,52.20,61.20,1.70,8.90,932.80,89.90,7.20,763.80,71.80 +WEST UTTAR PRADESH,2014,48.30,29.40,22.60,5.30,11.00,22.00,151.60,81.00,84.70,14.60,0.00,16.30,486.90,77.70,39.00,339.40,30.80 +WEST UTTAR PRADESH,2015,31.60,7.20,66.80,21.00,8.10,72.00,194.20,143.50,26.50,6.90,2.00,3.00,582.70,38.80,95.90,436.10,11.90 +UTTARAKHAND,1901,134.50,81.40,44.50,5.90,60.80,33.60,381.10,612.30,167.10,16.30,0.00,24.90,1562.50,215.90,111.30,1194.10,41.30 +UTTARAKHAND,1902,0.00,17.00,52.20,63.70,52.10,113.10,444.10,327.50,220.40,31.90,2.10,0.00,1324.20,17.10,168.10,1105.10,34.00 +UTTARAKHAND,1903,68.00,7.90,87.60,10.30,37.50,83.00,251.60,442.70,249.30,57.50,0.00,11.30,1306.50,75.90,135.40,1026.50,68.70 +UTTARAKHAND,1904,40.00,5.20,78.30,13.60,61.10,180.10,449.60,417.20,174.10,6.30,35.60,31.00,1492.00,45.20,153.00,1221.00,72.90 +UTTARAKHAND,1905,115.40,80.70,99.80,26.10,70.30,111.50,299.90,349.50,129.50,0.00,1.00,18.50,1302.10,196.00,196.20,890.40,19.50 +UTTARAKHAND,1906,26.10,162.00,36.80,10.10,44.60,195.60,363.90,440.90,232.20,11.60,0.40,13.80,1537.90,188.10,91.50,1232.60,25.80 +UTTARAKHAND,1907,49.40,131.60,144.40,41.70,57.60,74.80,342.30,323.80,28.20,0.40,0.00,0.10,1194.40,181.00,243.70,769.10,0.50 +UTTARAKHAND,1908,49.40,74.60,6.30,31.80,46.30,144.90,411.40,423.50,56.20,2.50,2.60,6.60,1256.20,124.00,84.40,1036.10,11.70 +UTTARAKHAND,1909,75.80,43.10,8.70,64.60,16.50,306.50,565.80,464.20,94.40,8.00,0.70,69.50,1717.70,118.90,89.80,1430.80,78.20 +UTTARAKHAND,1910,34.60,38.80,12.10,21.40,59.30,231.00,505.60,526.80,253.90,264.60,8.40,7.40,1963.90,73.30,92.80,1517.30,280.50 +UTTARAKHAND,1911,211.40,4.20,190.30,20.40,19.50,204.10,149.30,381.90,266.40,19.70,75.70,0.00,1542.90,215.50,230.20,1001.70,95.40 +UTTARAKHAND,1912,79.00,31.10,44.50,27.80,51.40,103.10,333.50,423.20,259.30,2.20,26.90,12.30,1394.50,110.20,123.70,1119.20,41.50 +UTTARAKHAND,1913,11.40,91.80,70.30,24.40,98.30,289.10,261.80,188.70,49.50,12.10,7.30,32.90,1137.60,103.20,193.00,789.10,52.30 +UTTARAKHAND,1914,0.90,119.90,115.70,50.20,82.30,141.30,563.30,377.80,439.60,27.10,22.30,0.50,1940.90,120.80,248.20,1522.00,49.90 +UTTARAKHAND,1915,32.40,126.30,101.00,40.60,57.20,129.80,370.20,539.90,178.30,12.90,0.00,12.60,1601.30,158.70,198.90,1218.20,25.60 +UTTARAKHAND,1916,3.90,35.60,1.90,20.60,49.00,373.80,432.30,397.70,280.10,83.80,0.00,0.00,1678.80,39.60,71.40,1483.90,83.80 +UTTARAKHAND,1917,7.60,55.40,64.90,80.10,118.20,298.10,561.20,372.70,405.70,115.80,0.00,23.30,2102.90,63.00,263.20,1637.60,139.10 +UTTARAKHAND,1918,17.20,0.00,73.90,85.60,46.50,237.60,225.80,397.20,101.00,4.00,18.40,8.20,1215.20,17.20,205.90,961.50,30.60 +UTTARAKHAND,1919,158.90,46.70,44.10,40.20,51.00,278.40,372.50,295.90,242.60,14.20,9.70,29.10,1583.10,205.60,135.20,1189.40,52.90 +UTTARAKHAND,1920,6.10,52.70,100.70,10.00,65.30,221.70,472.50,307.10,76.90,12.90,0.00,2.60,1328.40,58.80,176.00,1078.10,15.40 +UTTARAKHAND,1921,101.00,5.60,12.50,19.70,3.60,364.10,329.30,652.80,299.50,55.80,0.20,4.70,1848.70,106.60,35.80,1645.70,60.60 +UTTARAKHAND,1922,86.40,34.40,11.70,21.00,12.10,125.10,507.10,685.20,320.90,3.80,1.30,51.10,1860.00,120.80,44.80,1638.30,56.20 +UTTARAKHAND,1923,80.50,146.60,18.50,10.80,26.90,84.80,372.50,427.90,289.90,69.40,10.00,45.10,1582.90,227.10,56.20,1175.10,124.50 +UTTARAKHAND,1924,42.50,60.10,27.70,6.80,43.40,39.40,450.20,414.00,651.50,128.10,0.60,62.80,1927.10,102.70,77.90,1555.10,191.50 +UTTARAKHAND,1925,34.30,17.70,11.70,43.50,57.00,309.10,554.50,384.50,65.90,20.10,36.70,0.00,1535.00,52.00,112.10,1314.00,56.80 +UTTARAKHAND,1926,22.00,28.20,143.00,52.00,57.80,34.80,475.30,400.70,133.30,10.20,22.00,2.00,1381.20,50.20,252.80,1044.10,34.20 +UTTARAKHAND,1927,13.70,121.80,53.20,24.50,66.80,210.20,308.90,516.80,159.90,120.80,43.70,9.50,1649.90,135.50,144.50,1195.90,174.00 +UTTARAKHAND,1928,89.50,150.10,27.20,40.20,18.60,114.50,468.00,251.40,29.70,6.30,17.40,28.90,1241.90,239.60,86.00,863.60,52.60 +UTTARAKHAND,1929,52.90,33.20,16.90,21.70,20.60,138.70,279.70,403.20,65.20,44.50,0.00,135.50,1212.20,86.10,59.30,886.90,180.00 +UTTARAKHAND,1930,65.70,72.70,52.10,34.80,39.60,126.50,399.70,348.30,76.50,21.60,8.10,25.60,1271.20,138.40,126.50,950.90,55.30 +UTTARAKHAND,1931,7.80,89.90,45.10,1.90,56.90,55.00,319.10,307.20,335.30,105.80,6.80,3.40,1334.10,97.70,103.90,1016.50,116.10 +UTTARAKHAND,1932,1.90,18.50,34.30,12.80,27.00,95.70,343.50,438.90,326.90,6.30,5.50,58.40,1369.60,20.30,74.20,1204.90,70.20 +UTTARAKHAND,1933,51.70,67.20,23.40,52.60,89.40,227.00,466.80,337.30,151.20,128.00,0.00,1.20,1595.80,118.90,165.30,1182.30,129.20 +UTTARAKHAND,1934,66.30,10.40,21.00,8.60,20.60,201.70,459.40,410.40,97.10,1.60,0.50,41.50,1339.00,76.70,50.20,1168.60,43.50 +UTTARAKHAND,1935,93.00,34.50,26.70,37.80,4.20,44.00,385.10,308.10,174.80,3.60,8.80,16.50,1137.20,127.50,68.70,912.10,29.00 +UTTARAKHAND,1936,6.90,54.70,42.20,33.60,92.80,345.10,570.80,390.40,241.20,19.80,2.10,112.70,1912.30,61.60,168.60,1547.50,134.60 +UTTARAKHAND,1937,10.50,149.30,7.20,43.90,47.60,172.70,398.70,439.60,211.70,15.80,2.00,34.50,1533.60,159.80,98.60,1222.90,52.30 +UTTARAKHAND,1938,122.50,85.40,7.50,4.50,37.00,293.60,459.20,396.40,110.80,11.40,0.80,0.10,1529.30,208.00,49.00,1260.00,12.30 +UTTARAKHAND,1939,21.10,82.10,39.20,15.50,9.10,213.10,352.90,199.30,186.20,24.20,0.00,0.00,1142.60,103.20,63.70,951.50,24.20 +UTTARAKHAND,1940,49.20,100.50,57.30,21.80,44.20,136.00,395.10,300.00,82.60,1.40,0.40,35.30,1223.70,149.70,123.30,913.70,37.00 +UTTARAKHAND,1941,58.20,37.30,14.00,4.40,67.40,200.30,171.50,354.10,95.70,32.30,0.50,25.90,1061.60,95.50,85.80,821.50,58.80 +UTTARAKHAND,1942,109.00,81.80,17.60,53.40,34.90,191.50,481.00,455.80,223.80,1.00,0.10,61.60,1711.40,190.80,105.90,1352.10,62.70 +UTTARAKHAND,1943,61.20,17.60,27.80,53.50,15.90,134.40,283.20,590.90,181.40,0.20,0.10,0.30,1366.70,78.80,97.20,1190.00,0.70 +UTTARAKHAND,1944,76.60,72.00,62.60,51.20,18.40,192.00,354.40,194.70,144.50,21.40,0.70,10.30,1198.90,148.70,132.20,885.60,32.50 +UTTARAKHAND,1945,120.20,4.50,39.30,42.70,16.50,90.60,468.60,379.80,391.80,92.00,0.10,1.80,1648.00,124.80,98.60,1330.80,93.90 +UTTARAKHAND,1946,0.50,47.90,20.40,64.80,121.50,193.10,565.10,311.50,114.90,48.70,18.20,20.10,1526.70,48.40,206.70,1184.60,86.90 +UTTARAKHAND,1947,46.80,52.20,47.70,1.60,49.00,126.80,383.40,274.20,350.50,16.60,0.40,10.80,1359.80,98.90,98.30,1134.80,27.80 +UTTARAKHAND,1948,1.60,103.00,121.60,23.80,35.10,53.20,337.10,592.50,205.10,50.70,3.10,8.70,1535.40,104.50,180.50,1187.80,62.50 +UTTARAKHAND,1949,7.30,135.50,32.40,29.00,59.70,52.40,450.20,414.50,204.00,22.20,0.20,4.80,1412.10,142.80,121.10,1121.10,27.20 +UTTARAKHAND,1950,59.50,30.30,55.00,2.70,40.20,240.10,492.80,493.40,160.80,2.70,0.00,6.60,1584.10,89.80,97.80,1387.20,9.30 +UTTARAKHAND,1951,54.00,41.80,46.80,30.70,61.70,74.00,200.90,403.00,204.20,13.50,43.80,0.10,1174.30,95.70,139.10,882.00,57.40 +UTTARAKHAND,1952,39.40,61.10,125.50,19.90,34.80,241.00,346.10,506.40,82.40,11.20,3.60,6.40,1477.80,100.50,180.20,1175.90,21.20 +UTTARAKHAND,1953,118.10,14.80,18.30,34.70,71.20,181.80,617.50,338.90,125.80,9.80,0.00,35.00,1565.80,132.90,124.20,1263.90,44.80 +UTTARAKHAND,1954,117.90,155.70,22.30,5.20,27.60,111.60,472.60,567.30,217.20,148.60,3.40,13.40,1862.90,273.60,55.00,1368.70,165.50 +UTTARAKHAND,1955,84.70,14.20,51.90,41.10,19.80,151.40,356.10,429.00,236.30,271.20,0.00,11.30,1666.90,98.90,112.80,1172.80,282.40 +UTTARAKHAND,1956,40.50,24.90,105.30,15.10,132.40,213.90,466.40,359.30,182.70,370.40,5.90,26.10,1943.00,65.40,252.80,1222.30,402.40 +UTTARAKHAND,1957,166.40,6.60,77.50,73.30,75.90,113.40,532.10,286.50,308.30,57.70,20.10,62.90,1780.70,173.00,226.70,1240.30,140.60 +UTTARAKHAND,1958,59.20,16.50,38.70,23.30,26.30,95.30,436.60,436.20,233.40,78.90,2.50,52.10,1499.00,75.60,88.30,1201.50,133.60 +UTTARAKHAND,1959,68.00,93.30,58.10,20.30,49.00,118.80,483.50,442.30,294.60,87.90,26.20,0.90,1743.00,161.20,127.40,1339.30,115.00 +UTTARAKHAND,1960,80.00,1.40,97.10,33.50,24.00,132.40,466.70,420.70,189.20,76.60,2.20,16.30,1540.10,81.50,154.60,1209.00,95.10 +UTTARAKHAND,1961,126.30,133.70,24.10,20.50,41.00,181.20,490.10,511.60,226.40,122.70,13.10,57.50,1948.30,260.00,85.60,1409.40,193.30 +UTTARAKHAND,1962,79.50,86.30,68.70,27.30,21.50,150.90,402.20,398.20,341.50,8.60,29.00,33.90,1647.40,165.80,117.40,1292.80,71.50 +UTTARAKHAND,1963,17.40,35.50,130.90,51.40,49.30,193.10,360.90,523.40,345.10,10.80,43.90,40.20,1802.00,52.80,231.60,1422.50,95.00 +UTTARAKHAND,1964,89.70,72.50,75.00,48.40,95.20,162.70,463.80,402.00,327.60,1.30,0.00,31.30,1769.60,162.20,218.60,1356.20,32.60 +UTTARAKHAND,1965,44.40,159.50,119.30,62.10,44.10,50.30,388.00,302.80,87.50,33.00,11.80,2.90,1305.70,204.00,225.40,828.60,47.70 +UTTARAKHAND,1966,3.20,86.60,48.90,17.80,76.70,270.00,363.00,410.30,125.70,35.10,15.30,13.30,1465.80,89.80,143.50,1168.90,63.60 +UTTARAKHAND,1967,11.00,35.00,112.50,26.00,23.20,122.60,436.30,518.70,146.50,22.00,22.40,79.90,1556.20,46.10,161.70,1224.00,124.30 +UTTARAKHAND,1968,173.10,122.80,62.90,49.00,15.00,218.60,393.60,280.60,109.60,13.00,1.40,38.90,1478.60,296.00,126.90,1002.40,53.30 +UTTARAKHAND,1969,79.80,43.10,49.00,60.70,77.00,89.60,381.00,483.50,345.60,25.30,0.20,1.00,1635.70,122.90,186.70,1299.60,26.50 +UTTARAKHAND,1970,85.90,44.00,32.70,5.70,68.90,192.90,319.20,355.30,157.80,30.00,0.80,0.20,1293.50,129.90,107.30,1025.30,31.10 +UTTARAKHAND,1971,52.40,101.40,45.30,69.00,270.20,297.80,332.80,377.00,155.90,79.50,22.00,0.30,1803.80,153.90,384.50,1163.60,101.90 +UTTARAKHAND,1972,30.30,91.70,44.70,50.50,7.40,62.80,315.40,218.80,212.60,18.80,7.90,17.00,1077.80,122.00,102.60,809.60,43.60 +UTTARAKHAND,1973,73.00,65.70,47.80,1.80,44.80,254.30,265.90,297.90,130.80,46.80,1.60,9.20,1239.70,138.70,94.50,948.90,57.60 +UTTARAKHAND,1974,56.80,28.00,18.20,12.20,22.10,86.50,392.90,347.30,102.60,46.90,4.50,43.60,1161.80,84.80,52.50,929.40,95.10 +UTTARAKHAND,1975,75.40,70.50,69.60,1.10,36.40,219.90,403.10,359.60,322.80,21.80,0.00,0.00,1580.30,145.80,107.10,1305.50,21.90 +UTTARAKHAND,1976,12.70,58.40,31.20,22.10,40.50,87.60,269.20,328.50,129.30,5.60,0.10,1.10,986.30,71.10,93.80,814.60,6.80 +UTTARAKHAND,1977,47.00,7.80,4.50,65.20,101.10,122.00,487.00,292.30,208.30,30.10,2.90,48.10,1416.30,54.70,170.80,1109.60,81.10 +UTTARAKHAND,1978,34.60,83.10,187.30,51.20,51.80,291.00,414.30,528.40,324.80,16.90,43.70,4.30,2031.40,117.70,290.20,1558.50,65.00 +UTTARAKHAND,1979,50.60,68.40,65.90,23.60,64.00,110.20,323.50,276.10,37.70,11.70,8.20,32.40,1072.30,119.00,153.50,747.50,52.30 +UTTARAKHAND,1980,21.70,55.70,60.30,15.60,21.30,175.00,466.00,322.70,133.50,37.30,2.40,21.90,1333.50,77.40,97.30,1097.20,61.60 +UTTARAKHAND,1981,67.60,27.80,81.30,23.70,77.40,162.10,488.10,263.50,103.10,4.60,42.10,15.00,1356.10,95.40,182.30,1016.70,61.70 +UTTARAKHAND,1982,61.90,58.60,143.20,78.20,77.10,90.60,264.00,435.10,110.70,17.80,1.40,33.50,1372.10,120.50,298.50,900.40,52.70 +UTTARAKHAND,1983,80.90,45.50,92.10,132.90,101.00,114.10,261.30,312.90,320.00,53.80,1.60,9.10,1525.30,126.40,326.10,1008.30,64.50 +UTTARAKHAND,1984,19.60,128.90,14.60,42.00,27.50,300.10,359.30,237.70,173.50,3.20,2.60,30.10,1339.10,148.50,84.00,1070.60,35.90 +UTTARAKHAND,1985,54.30,9.60,14.00,40.90,63.50,104.40,451.70,389.40,228.20,220.50,3.00,74.10,1653.70,63.90,118.40,1173.80,297.60 +UTTARAKHAND,1986,3.80,68.40,85.40,70.70,149.70,141.60,418.30,281.70,155.50,61.60,13.80,63.90,1514.50,72.20,305.90,997.10,139.30 +UTTARAKHAND,1987,29.80,61.70,30.30,48.80,148.00,55.90,190.30,261.00,123.90,20.20,0.20,17.10,987.30,91.50,227.10,631.10,37.50 +UTTARAKHAND,1988,18.10,81.60,136.50,26.30,45.30,129.70,490.90,390.80,202.00,16.60,0.90,63.70,1602.40,99.70,208.10,1213.40,81.20 +UTTARAKHAND,1989,91.00,14.70,30.30,9.90,28.50,117.90,333.40,386.60,183.50,12.30,17.30,38.20,1263.80,105.70,68.70,1021.40,67.90 +UTTARAKHAND,1990,0.80,97.10,91.30,20.40,81.60,120.30,473.00,413.60,179.10,14.60,6.10,67.10,1564.90,97.90,193.30,1185.80,87.80 +UTTARAKHAND,1991,13.20,58.00,52.00,51.60,21.20,81.80,219.80,346.70,126.40,0.50,10.10,39.40,1020.70,71.20,124.80,774.60,50.10 +UTTARAKHAND,1992,71.30,32.50,46.10,2.90,31.50,117.50,254.40,385.10,152.40,9.00,5.40,0.00,1108.10,103.80,80.50,909.40,14.50 +UTTARAKHAND,1993,77.10,70.30,162.80,19.80,71.70,144.70,309.40,282.30,447.00,1.50,7.40,0.00,1594.10,147.30,254.40,1183.50,8.80 +UTTARAKHAND,1994,56.70,84.20,11.00,69.80,75.60,112.10,476.90,428.20,98.00,5.30,1.70,22.30,1441.70,140.90,156.40,1115.10,29.30 +UTTARAKHAND,1995,98.90,123.60,79.90,41.40,34.60,138.50,358.30,430.70,282.80,5.10,2.10,20.20,1616.10,222.60,155.80,1210.20,27.50 +UTTARAKHAND,1996,49.70,89.60,67.10,28.40,18.30,181.60,308.10,441.10,185.60,31.40,0.50,0.00,1401.40,139.40,113.80,1116.40,31.90 +UTTARAKHAND,1997,42.10,14.90,31.20,90.50,56.10,129.80,290.00,73.30,36.40,9.90,10.80,18.50,803.40,57.00,177.90,529.50,39.10 +UTTARAKHAND,1998,9.60,68.40,106.20,73.00,78.50,163.30,242.90,260.00,120.00,75.50,1.20,0.00,1198.60,78.00,257.70,786.20,76.70 +UTTARAKHAND,1999,33.00,11.40,1.40,1.20,50.50,158.90,389.00,285.50,217.90,32.00,0.10,4.70,1185.50,44.40,53.10,1051.20,36.80 +UTTARAKHAND,2000,29.90,69.40,37.90,18.10,83.30,313.90,420.10,536.10,195.30,1.10,7.00,0.70,1712.90,99.30,139.40,1465.40,8.80 +UTTARAKHAND,2001,22.70,27.90,83.40,48.20,109.10,297.30,493.00,371.70,68.30,6.30,1.40,15.10,1544.40,50.60,240.70,1230.30,22.90 +UTTARAKHAND,2002,53.80,123.20,100.00,76.30,82.30,139.60,205.70,465.40,301.30,19.90,3.00,4.20,1574.70,177.00,258.50,1112.10,27.10 +UTTARAKHAND,2003,40.70,126.00,99.70,54.10,67.10,145.20,515.30,416.20,239.90,1.80,4.80,23.60,1734.30,166.70,220.90,1316.60,30.20 +UTTARAKHAND,2004,58.50,11.70,0.00,51.50,66.00,130.70,400.90,326.30,96.80,70.70,0.80,5.70,1219.60,70.20,117.60,954.70,77.10 +UTTARAKHAND,2005,64.10,83.20,54.20,12.80,52.10,74.00,400.10,249.20,337.90,14.10,2.20,4.30,1348.20,147.30,119.10,1061.30,20.50 +UTTARAKHAND,2006,48.70,9.60,71.70,52.20,120.50,104.20,345.60,294.70,79.10,18.80,6.80,27.00,1178.90,58.30,244.40,823.70,52.60 +UTTARAKHAND,2007,1.70,138.90,123.10,41.10,78.80,139.90,522.90,502.80,325.60,25.10,7.80,16.70,1924.30,140.60,243.00,1491.20,49.60 +UTTARAKHAND,2008,55.60,11.70,18.10,93.00,67.30,332.40,313.30,245.80,190.80,23.10,11.90,0.60,1363.70,67.30,178.40,1082.30,35.70 +UTTARAKHAND,2009,1.80,27.60,18.80,18.40,77.60,41.90,157.50,202.60,206.60,81.30,12.60,0.90,847.80,29.40,114.80,608.70,94.90 +UTTARAKHAND,2010,11.40,62.10,3.80,13.80,47.00,72.70,455.80,335.70,389.70,8.00,4.50,19.50,1424.00,73.60,64.50,1253.90,32.00 +UTTARAKHAND,2011,30.90,65.20,18.00,30.90,84.20,223.10,433.30,523.70,148.40,3.40,1.20,2.30,1564.70,96.10,133.10,1328.50,6.90 +UTTARAKHAND,2012,38.80,11.90,28.10,39.20,9.10,46.00,387.10,419.50,220.60,4.70,3.40,15.50,1223.90,50.80,76.40,1073.10,23.60 +UTTARAKHAND,2013,73.00,188.30,22.00,24.70,18.20,488.90,413.40,359.40,111.30,29.10,3.20,3.80,1735.40,261.30,65.00,1373.00,36.20 +UTTARAKHAND,2014,45.90,99.90,68.40,37.60,52.90,62.90,462.70,264.20,107.90,40.80,0.00,44.30,1287.40,145.80,158.80,897.70,85.10 +UTTARAKHAND,2015,54.50,62.60,127.30,57.30,38.00,186.60,337.00,305.30,52.60,16.80,2.40,7.20,1247.60,117.00,222.60,881.50,26.40 +HARYANA DELHI & CHANDIGARH,1901,35.40,28.90,11.10,0.00,5.10,13.20,126.40,151.50,10.50,2.00,0.00,6.10,390.10,64.30,16.20,301.60,8.10 +HARYANA DELHI & CHANDIGARH,1902,0.00,0.70,2.90,10.20,15.80,74.60,149.30,97.10,59.80,9.30,0.00,0.00,419.80,0.70,28.90,380.90,9.30 +HARYANA DELHI & CHANDIGARH,1903,14.70,0.50,2.30,0.50,8.50,8.60,151.60,138.20,97.70,4.00,0.00,2.30,428.90,15.20,11.30,396.10,6.20 +HARYANA DELHI & CHANDIGARH,1904,7.60,0.70,48.00,0.50,29.30,34.30,109.70,162.90,102.30,1.50,10.40,20.30,527.80,8.30,77.80,409.30,32.30 +HARYANA DELHI & CHANDIGARH,1905,44.80,20.80,14.00,1.30,7.40,20.10,93.60,23.10,92.60,0.00,0.00,5.10,322.90,65.70,22.70,229.40,5.10 +HARYANA DELHI & CHANDIGARH,1906,3.60,64.10,31.40,0.10,1.40,70.20,128.90,103.80,185.20,0.00,0.00,5.00,593.60,67.70,32.90,488.00,5.00 +HARYANA DELHI & CHANDIGARH,1907,14.30,42.80,25.90,33.50,7.80,20.00,123.20,175.30,1.00,0.10,0.00,0.00,443.90,57.10,67.20,319.50,0.10 +HARYANA DELHI & CHANDIGARH,1908,31.40,6.10,0.10,7.60,22.40,14.50,196.60,398.20,10.10,0.30,1.10,0.60,689.00,37.50,30.10,619.50,2.00 +HARYANA DELHI & CHANDIGARH,1909,5.90,13.10,0.00,78.10,2.80,123.70,228.70,118.90,162.40,3.10,0.00,32.70,769.30,19.00,80.90,633.70,35.80 +HARYANA DELHI & CHANDIGARH,1910,19.70,5.10,0.10,2.10,3.10,69.00,107.90,150.40,159.70,87.30,0.00,0.80,605.20,24.80,5.30,487.00,88.10 +HARYANA DELHI & CHANDIGARH,1911,66.50,1.30,53.30,0.70,0.10,53.10,26.30,49.30,208.70,10.70,39.70,0.00,509.70,67.80,54.10,337.40,50.40 +HARYANA DELHI & CHANDIGARH,1912,43.40,12.50,9.00,9.20,2.80,26.50,161.10,134.20,119.50,0.00,10.50,0.50,529.30,55.90,21.00,441.40,11.00 +HARYANA DELHI & CHANDIGARH,1913,1.10,42.90,22.40,1.90,69.70,111.80,142.90,82.30,22.60,0.70,0.90,9.30,508.40,43.90,94.00,359.60,10.90 +HARYANA DELHI & CHANDIGARH,1914,2.30,7.00,4.70,22.70,21.00,51.10,252.00,100.00,182.90,18.70,2.00,0.30,664.70,9.30,48.40,586.00,21.00 +HARYANA DELHI & CHANDIGARH,1915,30.70,49.10,40.90,7.10,8.00,39.90,66.90,69.90,101.70,6.40,0.00,1.80,422.40,79.90,55.90,278.40,8.20 +HARYANA DELHI & CHANDIGARH,1916,0.50,15.70,0.20,2.30,12.50,71.20,139.70,217.70,107.80,61.60,0.00,0.00,629.10,16.20,14.90,536.40,61.60 +HARYANA DELHI & CHANDIGARH,1917,6.10,7.40,3.20,34.50,25.80,64.60,164.30,210.90,361.50,101.00,0.00,7.50,986.70,13.50,63.50,801.20,108.50 +HARYANA DELHI & CHANDIGARH,1918,10.00,0.00,11.10,9.90,1.10,34.30,20.00,142.10,5.00,0.30,0.80,0.00,234.70,10.10,22.20,201.40,1.10 +HARYANA DELHI & CHANDIGARH,1919,61.00,2.70,8.40,2.30,14.80,7.00,208.70,172.10,50.60,0.00,3.40,22.80,553.70,63.80,25.40,438.30,26.20 +HARYANA DELHI & CHANDIGARH,1920,11.20,12.90,13.20,0.20,21.60,73.00,194.80,30.80,9.60,1.40,0.00,0.10,368.80,24.10,35.10,308.10,1.50 +HARYANA DELHI & CHANDIGARH,1921,21.30,1.20,0.50,1.40,0.00,13.70,100.20,189.50,86.10,29.50,0.00,3.00,446.50,22.50,2.00,389.50,32.50 +HARYANA DELHI & CHANDIGARH,1922,14.30,4.50,0.60,0.60,1.40,86.70,139.60,99.70,176.50,1.70,0.00,27.10,552.90,18.80,2.70,502.60,28.70 +HARYANA DELHI & CHANDIGARH,1923,17.00,52.70,0.80,0.10,19.70,24.80,183.70,221.30,17.60,9.10,0.30,34.40,581.50,69.70,20.60,447.40,43.80 +HARYANA DELHI & CHANDIGARH,1924,48.50,18.90,2.00,1.30,5.50,18.50,98.30,151.30,247.50,45.50,2.50,15.00,654.80,67.40,8.80,515.60,63.00 +HARYANA DELHI & CHANDIGARH,1925,4.80,0.10,0.10,3.10,11.20,153.80,247.00,108.60,10.20,5.70,12.20,0.30,557.20,5.00,14.40,519.60,18.20 +HARYANA DELHI & CHANDIGARH,1926,9.40,9.30,39.20,10.30,33.40,18.40,190.00,257.40,45.50,0.60,2.40,0.10,615.90,18.70,82.80,511.30,3.00 +HARYANA DELHI & CHANDIGARH,1927,0.20,34.10,14.80,7.40,13.90,12.20,160.90,163.90,42.70,18.10,1.70,32.50,502.50,34.30,36.10,379.70,52.40 +HARYANA DELHI & CHANDIGARH,1928,21.50,28.30,3.40,5.90,3.70,36.50,131.00,77.60,35.60,7.60,20.30,16.80,388.20,49.80,13.00,280.70,44.60 +HARYANA DELHI & CHANDIGARH,1929,15.20,0.10,0.00,9.50,3.70,18.70,135.20,82.80,11.40,3.80,0.00,26.20,306.60,15.40,13.20,248.10,30.00 +HARYANA DELHI & CHANDIGARH,1930,28.40,11.40,4.00,1.80,3.40,68.60,266.50,78.40,32.30,2.80,0.90,2.10,500.50,39.80,9.20,445.90,5.70 +HARYANA DELHI & CHANDIGARH,1931,0.40,17.00,14.20,0.30,7.80,11.10,198.70,122.50,109.50,37.40,0.00,0.10,519.20,17.50,22.40,441.90,37.50 +HARYANA DELHI & CHANDIGARH,1932,3.00,2.00,26.20,4.80,6.10,14.30,136.80,113.40,117.50,0.00,0.00,15.80,440.10,5.10,37.10,382.10,15.80 +HARYANA DELHI & CHANDIGARH,1933,1.10,19.50,10.80,6.70,43.20,105.10,131.40,227.30,293.10,17.00,0.40,1.30,856.90,20.60,60.70,756.80,18.70 +HARYANA DELHI & CHANDIGARH,1934,21.60,1.00,47.60,0.70,2.00,64.60,140.80,199.10,18.30,0.00,0.00,5.60,501.40,22.60,50.40,422.80,5.60 +HARYANA DELHI & CHANDIGARH,1935,35.10,25.10,7.10,29.20,0.70,5.30,208.90,132.30,97.00,7.50,6.00,14.20,568.30,60.20,37.00,443.50,27.70 +HARYANA DELHI & CHANDIGARH,1936,1.60,18.20,6.80,0.70,3.30,141.30,124.40,125.70,61.30,0.10,1.20,26.50,511.10,19.80,10.80,452.70,27.70 +HARYANA DELHI & CHANDIGARH,1937,0.80,75.80,5.30,20.30,5.20,43.70,171.60,39.30,109.80,0.40,0.30,9.10,481.70,76.70,30.80,364.40,9.80 +HARYANA DELHI & CHANDIGARH,1938,38.20,7.70,0.40,1.10,7.40,61.70,89.70,56.90,8.10,7.60,0.10,0.00,278.80,45.90,8.90,216.30,7.70 +HARYANA DELHI & CHANDIGARH,1939,1.90,38.50,20.20,0.50,0.30,88.80,62.70,32.90,63.30,1.20,0.00,0.00,310.20,40.50,20.90,247.60,1.20 +HARYANA DELHI & CHANDIGARH,1940,28.20,35.60,11.90,6.70,1.70,38.70,117.40,142.30,12.60,0.20,0.00,0.40,395.70,63.80,20.30,311.10,0.50 +HARYANA DELHI & CHANDIGARH,1941,59.20,5.10,2.20,0.00,16.20,96.30,41.00,90.10,46.40,3.90,0.00,3.50,363.90,64.30,18.40,273.80,7.40 +HARYANA DELHI & CHANDIGARH,1942,24.90,48.60,2.20,11.70,7.30,48.20,257.50,237.60,154.20,0.30,0.00,11.90,804.50,73.60,21.20,697.60,12.20 +HARYANA DELHI & CHANDIGARH,1943,19.60,2.10,2.40,14.70,8.50,28.80,129.60,112.40,89.70,0.00,0.00,0.10,407.90,21.70,25.60,360.40,0.10 +HARYANA DELHI & CHANDIGARH,1944,21.50,32.90,35.10,27.60,0.50,52.20,150.70,99.00,38.80,24.80,0.60,0.60,484.20,54.40,63.10,340.70,26.00 +HARYANA DELHI & CHANDIGARH,1945,41.50,0.00,2.40,6.50,7.90,36.50,120.00,122.30,312.50,5.10,0.00,0.00,654.60,41.50,16.80,591.20,5.10 +HARYANA DELHI & CHANDIGARH,1946,0.10,9.70,1.70,3.40,27.00,72.00,122.90,155.40,17.30,15.60,1.00,11.60,437.80,9.80,32.10,367.60,28.30 +HARYANA DELHI & CHANDIGARH,1947,17.20,15.80,7.20,0.60,3.00,13.70,22.90,80.60,292.90,4.50,0.00,6.20,464.50,33.00,10.80,410.00,10.70 +HARYANA DELHI & CHANDIGARH,1948,34.40,31.40,18.80,1.10,4.80,16.00,212.40,233.00,34.60,4.30,0.90,0.30,592.10,65.90,24.70,496.10,5.40 +HARYANA DELHI & CHANDIGARH,1949,3.40,27.90,0.70,1.20,5.90,12.10,287.90,58.30,84.70,1.20,0.00,2.00,485.30,31.30,7.80,442.90,3.20 +HARYANA DELHI & CHANDIGARH,1950,22.20,6.50,18.10,0.50,6.10,9.70,220.40,147.60,118.70,0.00,0.00,1.40,551.10,28.70,24.70,496.40,1.40 +HARYANA DELHI & CHANDIGARH,1951,8.20,0.40,33.60,11.60,9.10,21.30,56.00,135.40,35.00,0.20,27.40,0.00,338.20,8.70,54.20,247.70,27.70 +HARYANA DELHI & CHANDIGARH,1952,8.20,17.80,12.00,2.60,10.80,67.10,122.50,311.00,1.30,0.00,0.00,3.20,556.30,26.00,25.30,501.90,3.20 +HARYANA DELHI & CHANDIGARH,1953,39.50,1.60,0.00,4.10,5.90,58.90,241.00,154.90,48.40,0.90,0.00,6.60,561.90,41.10,10.00,503.30,7.50 +HARYANA DELHI & CHANDIGARH,1954,26.10,91.00,10.10,0.40,3.90,26.70,152.30,45.60,136.60,43.90,0.30,0.00,537.00,117.10,14.50,361.20,44.20 +HARYANA DELHI & CHANDIGARH,1955,32.80,1.90,7.70,7.30,12.70,66.10,100.30,173.10,159.30,129.40,2.80,0.60,694.10,34.70,27.70,498.80,132.80 +HARYANA DELHI & CHANDIGARH,1956,16.60,3.10,25.60,0.80,2.40,50.80,239.10,159.50,19.50,131.30,4.40,0.60,653.80,19.70,28.90,468.90,136.30 +HARYANA DELHI & CHANDIGARH,1957,53.20,0.20,28.90,2.80,6.90,24.40,190.60,101.60,149.60,26.60,7.70,24.70,617.20,53.40,38.70,466.20,58.90 +HARYANA DELHI & CHANDIGARH,1958,4.10,0.70,5.40,1.90,4.40,17.00,150.00,182.70,273.40,21.80,1.00,10.60,673.00,4.80,11.70,623.10,33.40 +HARYANA DELHI & CHANDIGARH,1959,28.40,8.00,3.80,0.40,13.20,25.30,103.80,163.80,102.80,16.10,19.30,0.10,484.90,36.40,17.40,395.70,35.40 +HARYANA DELHI & CHANDIGARH,1960,11.30,0.00,24.40,4.20,1.30,33.10,249.90,339.00,15.60,35.20,0.00,8.90,722.90,11.30,30.00,637.50,44.10 +HARYANA DELHI & CHANDIGARH,1961,40.20,29.90,0.40,4.60,11.00,46.20,150.10,251.40,52.40,25.80,6.60,9.20,627.90,70.20,16.00,500.10,41.60 +HARYANA DELHI & CHANDIGARH,1962,21.10,10.40,7.70,1.30,1.50,14.00,144.70,111.50,189.40,0.00,2.90,6.50,511.00,31.50,10.50,459.60,9.40 +HARYANA DELHI & CHANDIGARH,1963,3.10,4.10,4.40,2.00,3.90,40.70,55.30,307.60,85.30,0.00,9.00,6.30,521.80,7.20,10.40,488.90,15.40 +HARYANA DELHI & CHANDIGARH,1964,4.70,1.50,0.90,0.40,14.60,8.80,370.70,191.50,111.20,0.60,0.10,6.00,710.90,6.20,15.90,682.10,6.70 +HARYANA DELHI & CHANDIGARH,1965,6.20,11.50,7.30,8.60,20.40,2.10,120.30,133.30,60.90,11.00,0.10,0.20,381.90,17.70,36.30,316.70,11.30 +HARYANA DELHI & CHANDIGARH,1966,3.30,34.00,6.70,1.70,45.30,128.90,98.20,312.80,69.10,6.70,1.00,0.20,707.70,37.30,53.70,609.00,7.80 +HARYANA DELHI & CHANDIGARH,1967,0.00,2.40,43.40,0.90,13.00,33.10,224.30,336.00,96.30,7.80,13.80,68.90,839.90,2.40,57.30,689.70,90.50 +HARYANA DELHI & CHANDIGARH,1968,14.10,15.90,17.30,0.00,2.30,28.30,211.20,90.10,0.10,7.00,0.00,2.00,388.30,30.00,19.60,329.60,9.10 +HARYANA DELHI & CHANDIGARH,1969,1.50,6.80,9.70,3.60,21.00,11.30,130.90,132.70,158.80,0.30,0.60,0.00,477.20,8.30,34.30,433.70,1.00 +HARYANA DELHI & CHANDIGARH,1970,35.40,35.40,9.40,0.00,11.50,67.20,65.70,207.90,104.90,0.80,0.00,0.00,538.20,70.80,20.90,445.70,0.80 +HARYANA DELHI & CHANDIGARH,1971,17.00,18.90,1.10,7.50,58.70,61.30,148.40,259.20,51.60,11.30,1.80,0.00,636.80,35.90,67.40,520.50,13.10 +HARYANA DELHI & CHANDIGARH,1972,6.80,12.10,5.60,11.60,0.10,24.90,137.10,186.00,12.60,7.70,33.10,3.20,440.80,18.90,17.40,360.60,44.00 +HARYANA DELHI & CHANDIGARH,1973,15.80,5.20,3.20,0.50,32.90,75.10,118.30,189.80,57.60,19.70,0.00,9.00,527.20,21.00,36.70,440.80,28.60 +HARYANA DELHI & CHANDIGARH,1974,0.50,1.30,1.60,0.90,4.60,37.90,201.50,94.50,12.20,16.40,0.00,13.50,384.90,1.80,7.00,346.10,29.90 +HARYANA DELHI & CHANDIGARH,1975,20.30,2.90,9.30,0.30,5.60,57.90,182.60,180.10,142.40,20.60,0.00,0.00,622.10,23.20,15.30,563.00,20.60 +HARYANA DELHI & CHANDIGARH,1976,8.80,23.10,6.80,2.70,32.40,80.20,216.20,317.40,38.00,0.20,0.10,0.80,726.70,31.80,41.90,651.80,1.10 +HARYANA DELHI & CHANDIGARH,1977,50.10,1.50,0.80,22.80,23.60,50.60,288.40,165.70,118.30,8.40,0.50,9.40,740.10,51.60,47.20,623.10,18.30 +HARYANA DELHI & CHANDIGARH,1978,0.20,24.80,51.70,4.20,1.50,71.50,202.70,184.80,104.50,2.10,2.80,0.50,651.10,25.00,57.40,563.40,5.30 +HARYANA DELHI & CHANDIGARH,1979,23.20,45.50,10.70,3.50,30.00,33.60,122.70,39.70,19.90,3.60,2.80,6.30,341.50,68.70,44.10,215.90,12.70 +HARYANA DELHI & CHANDIGARH,1980,5.80,2.30,22.00,0.40,8.90,45.50,236.50,102.00,50.20,13.40,4.90,21.40,513.20,8.00,31.20,434.30,39.70 +HARYANA DELHI & CHANDIGARH,1981,25.70,13.30,34.60,0.50,18.00,63.30,196.70,63.70,34.70,0.10,42.10,0.60,493.40,39.00,53.20,358.40,42.90 +HARYANA DELHI & CHANDIGARH,1982,21.40,20.00,70.70,33.10,57.30,29.90,99.20,150.40,5.40,3.20,2.40,13.60,506.60,41.40,161.10,284.90,19.20 +HARYANA DELHI & CHANDIGARH,1983,38.00,5.30,6.40,82.50,35.30,29.50,218.30,240.70,79.80,5.40,0.00,3.30,744.50,43.20,124.30,568.20,8.70 +HARYANA DELHI & CHANDIGARH,1984,1.90,14.50,0.40,2.70,0.70,48.60,154.20,179.50,75.50,0.90,0.00,0.30,479.20,16.40,3.80,457.80,1.10 +HARYANA DELHI & CHANDIGARH,1985,3.50,0.30,1.10,8.10,3.10,44.20,256.90,152.40,35.90,42.60,0.00,24.30,572.40,3.80,12.30,489.40,66.90 +HARYANA DELHI & CHANDIGARH,1986,7.20,31.00,12.70,3.30,36.00,85.10,92.50,108.90,52.90,11.20,0.70,9.50,450.90,38.20,52.10,339.30,21.40 +HARYANA DELHI & CHANDIGARH,1987,21.30,27.80,12.40,6.40,62.50,27.70,26.40,106.60,18.00,3.20,0.00,6.30,318.60,49.10,81.30,178.70,9.50 +HARYANA DELHI & CHANDIGARH,1988,1.50,13.20,34.50,3.60,3.40,82.40,288.50,222.50,183.40,0.00,0.10,12.00,845.00,14.70,41.50,776.70,12.10 +HARYANA DELHI & CHANDIGARH,1989,40.10,0.40,11.70,0.60,2.30,31.60,90.80,152.50,68.70,0.20,5.20,12.40,416.50,40.50,14.60,343.60,17.80 +HARYANA DELHI & CHANDIGARH,1990,0.00,79.50,4.90,2.20,21.90,25.30,201.20,137.70,194.50,2.70,14.10,19.20,703.10,79.50,28.90,558.70,36.00 +HARYANA DELHI & CHANDIGARH,1991,0.10,19.70,2.90,13.20,6.00,50.40,55.30,187.90,36.90,1.40,3.80,16.20,393.90,19.70,22.20,330.50,21.40 +HARYANA DELHI & CHANDIGARH,1992,20.30,16.40,0.50,1.20,7.80,17.20,124.50,171.60,59.00,3.80,7.20,0.00,429.70,36.70,9.60,372.30,11.10 +HARYANA DELHI & CHANDIGARH,1993,4.50,16.10,11.30,5.40,8.80,42.00,274.60,35.60,125.40,0.00,0.00,0.00,523.80,20.70,25.50,477.60,0.00 +HARYANA DELHI & CHANDIGARH,1994,20.10,11.30,0.60,7.60,8.50,51.30,275.80,160.60,28.20,0.00,0.10,0.20,564.40,31.40,16.70,515.90,0.30 +HARYANA DELHI & CHANDIGARH,1995,38.80,21.70,9.80,4.90,0.60,47.20,115.00,405.30,175.30,0.20,0.10,0.30,819.10,60.50,15.30,742.70,0.70 +HARYANA DELHI & CHANDIGARH,1996,16.00,30.50,11.60,0.60,5.10,109.40,85.80,249.20,116.30,19.90,0.00,0.30,644.60,46.50,17.30,560.70,20.20 +HARYANA DELHI & CHANDIGARH,1997,6.60,2.20,14.60,35.30,38.00,60.20,133.60,226.80,36.90,53.70,13.40,47.30,668.60,8.80,87.90,457.50,114.40 +HARYANA DELHI & CHANDIGARH,1998,0.40,24.60,25.40,9.10,6.10,68.40,154.80,161.60,150.90,78.20,5.80,0.00,685.30,25.00,40.60,535.60,84.00 +HARYANA DELHI & CHANDIGARH,1999,31.70,0.70,1.40,0.00,20.10,42.20,109.80,78.70,54.70,4.80,0.00,0.40,344.40,32.40,21.50,285.40,5.10 +HARYANA DELHI & CHANDIGARH,2000,17.10,29.10,1.40,1.30,22.80,58.90,146.80,87.90,17.50,0.00,0.40,1.20,384.40,46.20,25.60,311.10,1.60 +HARYANA DELHI & CHANDIGARH,2001,17.80,5.20,7.20,19.80,47.80,117.20,145.20,103.50,10.30,11.10,0.10,0.20,485.50,23.00,74.80,376.30,11.40 +HARYANA DELHI & CHANDIGARH,2002,11.60,31.10,9.00,1.10,52.00,21.20,19.40,78.20,123.00,1.90,0.00,8.80,357.20,42.70,62.10,241.80,10.70 +HARYANA DELHI & CHANDIGARH,2003,14.70,29.90,4.00,1.80,7.50,26.60,277.60,165.30,58.90,0.00,0.10,11.00,597.60,44.60,13.30,528.50,11.20 +HARYANA DELHI & CHANDIGARH,2004,25.40,0.30,0.00,18.10,40.70,52.50,19.90,252.90,22.10,54.10,0.00,1.20,487.30,25.70,58.80,347.50,55.30 +HARYANA DELHI & CHANDIGARH,2005,13.90,35.70,29.90,2.70,7.60,53.90,175.60,52.60,146.70,0.00,0.80,0.00,519.50,49.60,40.30,428.80,0.80 +HARYANA DELHI & CHANDIGARH,2006,2.30,0.10,30.40,0.60,24.80,45.40,135.20,32.10,49.90,3.80,1.20,5.20,330.90,2.40,55.70,262.60,10.20 +HARYANA DELHI & CHANDIGARH,2007,0.50,76.00,40.10,2.00,12.40,88.70,82.00,87.90,55.20,0.10,0.30,1.40,446.60,76.50,54.60,313.70,1.70 +HARYANA DELHI & CHANDIGARH,2008,2.40,0.40,0.60,13.40,72.90,193.50,124.30,174.20,114.50,8.40,5.50,0.20,710.40,2.80,86.90,606.60,14.10 +HARYANA DELHI & CHANDIGARH,2009,4.10,5.90,5.70,11.70,17.70,15.20,106.40,63.80,160.80,2.50,1.10,0.40,395.40,10.00,35.20,346.30,4.00 +HARYANA DELHI & CHANDIGARH,2010,4.80,10.20,0.50,0.80,5.90,29.10,189.30,198.50,183.90,1.10,3.50,12.80,640.50,15.00,7.20,600.80,17.50 +HARYANA DELHI & CHANDIGARH,2011,0.70,26.70,6.90,8.90,28.70,94.40,85.00,127.30,133.10,0.00,0.00,0.40,512.00,27.50,44.40,439.80,0.40 +HARYANA DELHI & CHANDIGARH,2012,8.20,0.20,0.10,11.80,3.80,5.30,68.10,196.60,90.70,2.40,0.60,3.50,391.40,8.40,15.80,360.70,6.50 +HARYANA DELHI & CHANDIGARH,2013,21.10,52.20,5.30,3.30,1.40,62.10,96.50,161.90,42.80,10.90,1.70,2.10,461.20,73.20,10.00,363.30,14.70 +HARYANA DELHI & CHANDIGARH,2014,13.00,17.30,26.80,7.50,20.30,25.90,72.30,34.80,67.30,10.50,0.20,9.60,305.50,30.30,54.60,200.20,20.30 +HARYANA DELHI & CHANDIGARH,2015,12.40,6.60,71.80,34.80,8.40,43.70,130.30,89.20,32.10,3.70,2.30,0.20,435.30,18.90,114.90,295.20,6.20 +PUNJAB,1901,55.70,50.10,25.20,2.10,25.20,10.40,178.20,145.00,24.40,3.70,0.00,3.30,523.50,105.90,52.50,358.10,7.00 +PUNJAB,1902,0.00,0.80,9.90,10.90,29.60,49.90,125.60,94.90,67.20,9.00,0.00,0.10,398.00,0.80,50.40,337.70,9.10 +PUNJAB,1903,29.50,0.50,45.00,1.30,9.20,5.20,212.20,119.10,132.50,6.90,0.00,9.50,571.00,29.90,55.50,469.10,16.40 +PUNJAB,1904,24.20,1.70,87.80,1.20,13.80,22.00,59.90,124.00,73.80,7.40,9.80,25.90,451.50,25.90,102.90,279.70,43.10 +PUNJAB,1905,53.00,40.30,24.30,0.50,2.20,19.20,122.60,50.30,111.10,1.20,0.00,9.40,434.30,93.30,27.00,303.20,10.70 +PUNJAB,1906,5.30,83.10,50.50,1.50,4.70,38.30,99.40,190.50,181.50,0.50,0.00,22.20,677.50,88.40,56.60,509.80,22.70 +PUNJAB,1907,27.30,95.40,53.10,50.70,3.30,20.20,82.80,249.00,6.80,0.40,0.00,0.00,589.20,122.60,107.20,358.90,0.40 +PUNJAB,1908,46.90,11.80,0.30,31.30,12.10,13.00,183.80,399.10,37.30,1.20,1.70,2.00,740.40,58.70,43.70,633.10,4.90 +PUNJAB,1909,34.00,21.00,0.20,48.60,1.80,81.30,240.90,178.70,197.20,1.50,0.00,40.50,846.10,55.10,50.70,698.20,42.10 +PUNJAB,1910,27.10,5.60,1.10,2.70,1.40,111.40,143.90,217.90,79.50,21.00,0.00,4.80,616.30,32.70,5.20,552.60,25.70 +PUNJAB,1911,112.10,7.30,108.50,3.70,1.00,64.90,26.40,103.50,34.00,11.70,32.60,0.10,505.60,119.40,113.10,228.80,44.40 +PUNJAB,1912,53.30,5.20,8.50,19.90,10.00,10.60,173.30,197.40,37.50,0.00,18.50,2.20,536.40,58.50,38.30,418.90,20.70 +PUNJAB,1913,0.90,58.70,47.50,0.60,52.80,86.90,111.50,159.00,22.60,2.20,2.60,15.80,561.20,59.60,100.90,380.10,20.60 +PUNJAB,1914,19.80,26.90,15.80,44.60,17.30,58.90,290.90,75.60,193.10,34.70,8.10,8.70,794.40,46.70,77.70,618.50,51.50 +PUNJAB,1915,28.70,59.80,48.30,9.30,4.30,22.50,54.10,67.40,105.50,19.30,0.00,2.40,421.70,88.50,61.90,249.60,21.70 +PUNJAB,1916,2.80,20.90,2.80,4.40,8.20,33.90,238.30,184.10,71.30,21.10,0.00,0.60,588.40,23.70,15.40,527.60,21.60 +PUNJAB,1917,6.50,3.10,12.50,71.90,31.30,82.60,172.40,211.40,369.10,156.50,0.00,9.40,1126.70,9.60,115.70,835.50,165.90 +PUNJAB,1918,3.10,1.20,61.40,38.50,0.60,31.90,38.70,140.50,15.50,0.20,3.50,4.50,339.60,4.40,100.50,226.50,8.30 +PUNJAB,1919,81.40,12.30,11.10,4.90,11.90,6.40,202.00,137.00,46.20,0.40,3.30,32.90,549.90,93.70,27.90,391.70,36.50 +PUNJAB,1920,25.70,18.30,21.30,0.60,20.00,42.70,148.00,81.30,23.30,0.40,0.00,1.50,383.10,44.00,41.90,295.30,1.90 +PUNJAB,1921,19.30,3.90,0.70,0.70,1.00,19.90,116.80,113.90,46.60,27.00,0.00,20.50,370.40,23.20,2.50,297.20,47.60 +PUNJAB,1922,23.80,14.00,3.10,3.00,1.70,65.10,132.80,85.60,148.50,2.50,0.00,33.50,513.60,37.80,7.70,432.10,36.00 +PUNJAB,1923,36.40,63.00,7.30,4.90,38.00,21.80,222.20,279.10,12.80,5.70,2.50,44.10,737.90,99.40,50.20,536.00,52.30 +PUNJAB,1924,39.10,42.30,2.60,1.10,17.70,2.30,185.80,109.00,155.00,0.50,1.10,34.40,590.80,81.40,21.30,452.10,36.00 +PUNJAB,1925,18.10,2.10,1.10,7.70,21.10,104.70,284.40,158.80,14.40,7.50,9.80,0.00,629.60,20.20,29.80,562.30,17.30 +PUNJAB,1926,14.10,7.50,50.20,16.20,34.90,7.20,189.00,228.40,54.10,0.10,1.30,4.40,607.30,21.60,101.20,478.70,5.80 +PUNJAB,1927,0.70,39.80,15.70,6.60,18.10,18.60,226.10,95.20,24.80,5.50,2.30,27.70,481.00,40.50,40.40,364.70,35.50 +PUNJAB,1928,25.60,21.30,6.30,10.20,2.80,34.90,92.30,120.20,58.80,1.00,27.00,36.90,437.10,46.90,19.20,306.10,64.90 +PUNJAB,1929,8.90,1.10,0.00,11.50,1.70,45.60,163.30,111.60,8.50,10.20,0.00,60.60,423.00,10.00,13.20,329.00,70.80 +PUNJAB,1930,25.60,27.00,6.70,13.30,7.10,55.00,258.40,57.40,91.70,1.10,0.20,13.90,557.20,52.50,27.10,462.40,15.10 +PUNJAB,1931,12.60,27.10,21.10,2.00,19.40,9.50,183.80,222.10,68.80,21.80,0.00,0.50,588.60,39.60,42.50,484.20,22.30 +PUNJAB,1932,19.00,13.20,28.80,7.30,11.60,19.90,190.70,136.10,32.00,1.50,0.30,29.90,490.30,32.20,47.70,378.70,31.60 +PUNJAB,1933,6.20,26.40,35.70,7.20,25.70,37.10,180.00,327.30,202.70,8.40,2.90,0.90,860.60,32.60,68.60,747.20,12.20 +PUNJAB,1934,18.30,1.70,37.50,2.40,6.00,51.00,150.90,136.60,14.90,0.00,0.00,9.90,429.20,20.00,46.00,353.30,9.90 +PUNJAB,1935,73.70,40.90,12.80,44.20,2.10,8.20,203.90,144.60,45.10,2.70,11.60,8.20,598.20,114.50,59.10,401.90,22.60 +PUNJAB,1936,1.30,58.80,17.30,10.90,5.40,105.00,170.20,165.50,57.70,6.20,0.20,27.90,626.40,60.10,33.70,498.40,34.30 +PUNJAB,1937,5.80,96.00,10.20,41.80,8.80,55.40,218.60,30.50,70.20,7.30,0.30,26.20,571.10,101.80,60.80,374.70,33.80 +PUNJAB,1938,77.50,22.20,1.80,9.10,3.40,112.80,102.30,85.40,5.80,9.90,0.00,0.60,430.90,99.70,14.30,306.40,10.50 +PUNJAB,1939,6.20,61.00,58.10,8.30,0.80,49.80,100.50,78.60,37.90,2.60,0.00,0.00,403.70,67.20,67.20,266.80,2.60 +PUNJAB,1940,36.80,45.10,13.70,2.90,6.50,60.30,159.30,179.60,27.40,0.10,0.10,0.50,532.20,81.90,23.00,426.60,0.70 +PUNJAB,1941,55.30,8.50,12.40,1.00,15.20,89.50,111.40,152.10,41.00,9.80,0.00,10.20,506.30,63.80,28.60,394.00,19.90 +PUNJAB,1942,27.20,57.20,15.40,19.60,13.40,52.40,253.30,256.40,131.70,5.10,0.00,39.80,871.60,84.40,48.40,693.90,44.90 +PUNJAB,1943,55.60,1.90,7.90,7.80,9.80,29.20,130.40,132.60,46.60,0.40,0.00,0.20,422.30,57.40,25.50,338.90,0.60 +PUNJAB,1944,32.30,54.60,49.50,46.50,0.60,21.80,183.80,145.80,67.20,14.60,1.60,8.40,626.90,86.90,96.70,418.70,24.70 +PUNJAB,1945,71.40,0.00,14.50,15.90,3.20,38.30,156.90,138.60,359.80,6.00,0.50,0.20,805.30,71.40,33.60,693.60,6.70 +PUNJAB,1946,2.60,16.10,7.00,4.20,19.30,63.10,129.50,150.50,7.40,32.00,7.60,38.70,478.10,18.70,30.60,350.50,78.30 +PUNJAB,1947,23.20,14.50,9.40,0.00,5.40,3.50,57.40,177.40,270.80,3.00,0.00,36.30,600.90,37.70,14.80,509.10,39.30 +PUNJAB,1948,19.90,53.10,66.50,6.70,2.20,11.20,195.70,209.60,38.30,0.60,0.30,16.20,620.20,73.00,75.30,454.80,17.20 +PUNJAB,1949,9.30,58.40,4.80,5.20,9.80,26.90,320.00,93.70,51.00,1.40,0.00,4.50,584.90,67.70,19.80,491.50,5.90 +PUNJAB,1950,53.10,25.40,50.10,2.40,8.10,14.10,209.20,232.30,396.80,0.40,0.00,0.10,992.00,78.50,60.50,852.40,0.60 +PUNJAB,1951,23.90,4.30,53.50,10.40,21.50,5.10,207.80,122.20,12.50,1.90,34.50,1.90,499.50,28.20,85.30,347.60,38.30 +PUNJAB,1952,19.70,20.40,34.00,0.70,6.40,59.80,137.00,282.30,1.70,0.10,0.10,3.80,565.90,40.10,41.10,480.80,4.00 +PUNJAB,1953,47.10,1.50,0.00,8.20,2.20,54.30,262.70,153.30,72.10,0.50,0.40,9.30,611.50,48.60,10.40,542.30,10.20 +PUNJAB,1954,30.80,92.20,9.50,0.10,2.40,27.60,181.80,45.70,226.50,16.60,0.00,0.00,633.20,123.00,11.90,481.60,16.60 +PUNJAB,1955,33.00,3.60,24.90,20.50,18.60,38.00,148.70,169.70,144.20,370.30,0.00,2.60,973.90,36.50,64.00,500.60,372.80 +PUNJAB,1956,21.60,6.80,45.30,5.10,0.70,53.50,236.50,208.70,26.70,140.10,0.20,5.30,750.40,28.40,51.20,525.30,145.60 +PUNJAB,1957,105.00,4.00,26.60,10.60,10.80,19.50,197.50,167.40,106.10,17.20,10.30,35.50,710.50,109.10,47.90,490.50,63.10 +PUNJAB,1958,9.50,3.50,6.90,4.40,0.40,28.00,186.20,128.40,372.30,43.40,0.00,45.00,828.00,13.00,11.70,714.80,88.50 +PUNJAB,1959,43.30,21.40,10.00,4.80,20.30,21.50,188.00,210.10,133.90,24.00,21.90,0.50,699.80,64.70,35.20,553.50,46.40 +PUNJAB,1960,14.20,0.10,33.30,4.70,4.00,44.10,243.10,234.10,8.60,0.50,0.00,20.30,606.90,14.30,42.00,529.90,20.80 +PUNJAB,1961,51.70,39.50,3.00,14.20,4.60,43.00,216.10,199.30,87.00,22.80,2.80,6.10,690.10,91.20,21.80,545.40,31.70 +PUNJAB,1962,39.60,14.20,43.20,4.20,4.70,26.00,167.50,126.80,321.20,0.50,14.80,6.70,769.30,53.80,52.10,641.50,22.00 +PUNJAB,1963,0.40,14.50,34.30,3.00,12.70,31.30,116.70,199.40,42.60,0.60,7.00,13.60,476.20,14.90,50.00,390.00,21.30 +PUNJAB,1964,11.00,5.70,3.90,5.20,19.20,10.20,359.30,189.80,95.00,0.00,0.00,9.60,708.80,16.70,28.20,654.30,9.60 +PUNJAB,1965,13.10,23.90,15.30,21.30,34.30,1.60,192.60,91.60,14.20,10.40,4.50,0.50,423.20,37.00,70.90,300.00,15.30 +PUNJAB,1966,0.20,38.90,18.50,3.60,37.60,85.10,109.80,200.00,132.60,9.50,0.00,2.30,638.20,39.10,59.60,527.50,11.90 +PUNJAB,1967,0.20,13.10,84.80,1.80,1.10,14.70,211.60,197.80,61.50,14.20,1.90,77.60,680.40,13.30,87.80,485.60,93.60 +PUNJAB,1968,24.70,30.50,32.70,2.10,1.60,42.60,239.40,142.10,0.50,11.70,0.50,7.80,536.20,55.20,36.40,424.60,20.00 +PUNJAB,1969,14.20,21.70,24.40,12.00,17.20,10.80,145.90,122.90,120.90,1.10,3.70,0.00,494.80,35.90,53.60,400.50,4.90 +PUNJAB,1970,40.10,20.60,7.30,0.30,12.80,119.80,75.40,260.70,109.40,4.20,0.00,0.00,650.60,60.70,20.30,565.30,4.20 +PUNJAB,1971,5.20,42.00,3.30,11.80,42.60,99.00,251.40,255.90,27.20,1.60,8.10,0.00,748.00,47.20,57.60,633.50,9.60 +PUNJAB,1972,9.10,31.90,10.80,6.50,0.10,23.80,192.90,132.30,26.10,7.90,19.60,10.10,470.90,40.90,17.40,375.10,37.50 +PUNJAB,1973,26.00,32.40,8.20,1.80,41.20,111.40,170.50,256.30,43.30,19.60,0.00,32.40,743.10,58.40,51.20,581.50,51.90 +PUNJAB,1974,3.20,2.00,3.10,1.30,6.90,71.00,136.70,101.30,14.40,0.60,0.00,15.80,356.20,5.10,11.30,323.40,16.30 +PUNJAB,1975,21.10,20.40,20.00,1.30,3.30,60.00,230.60,195.10,148.80,5.20,0.00,0.00,705.90,41.40,24.70,634.50,5.30 +PUNJAB,1976,29.20,53.70,22.70,9.40,12.50,63.10,195.30,318.70,85.10,4.40,0.00,0.50,794.70,82.80,44.60,662.20,5.00 +PUNJAB,1977,37.70,0.50,1.00,37.10,41.90,62.30,208.10,175.90,120.10,6.60,0.40,21.10,712.60,38.20,80.00,566.40,28.00 +PUNJAB,1978,4.10,30.00,65.10,2.80,1.90,99.20,229.40,231.60,45.70,2.30,8.10,0.50,720.60,34.20,69.70,605.80,10.90 +PUNJAB,1979,25.90,71.90,45.70,6.80,22.20,37.30,147.50,46.60,45.10,2.00,7.80,5.10,464.00,97.80,74.80,276.50,14.90 +PUNJAB,1980,19.40,12.40,24.30,3.70,1.40,53.50,316.70,122.20,39.10,11.60,16.20,41.20,661.70,31.70,29.30,531.60,69.10 +PUNJAB,1981,48.10,20.60,53.80,2.20,9.60,21.70,215.50,58.30,23.00,0.30,50.70,0.00,503.70,68.70,65.50,318.50,51.00 +PUNJAB,1982,35.80,27.70,87.50,49.90,57.20,17.00,83.50,172.70,3.70,4.00,9.80,22.60,571.30,63.50,194.60,276.90,36.30 +PUNJAB,1983,65.30,26.70,27.40,113.20,48.20,26.60,151.90,208.10,69.70,12.20,0.00,1.70,751.10,92.00,188.80,456.30,13.90 +PUNJAB,1984,2.40,67.20,13.90,9.30,1.30,50.20,220.20,214.50,125.70,0.20,0.60,4.90,710.50,69.60,24.50,610.70,5.70 +PUNJAB,1985,4.80,0.90,3.60,21.20,6.20,55.70,269.50,243.30,51.90,50.20,0.60,45.10,752.90,5.70,31.00,620.40,95.80 +PUNJAB,1986,0.70,42.10,24.60,18.90,32.30,92.20,156.40,153.00,55.10,16.00,9.50,11.20,611.90,42.80,75.70,456.70,36.70 +PUNJAB,1987,23.10,30.80,23.30,14.90,98.30,44.70,44.10,82.20,10.50,34.10,0.20,3.30,409.60,54.00,136.40,181.50,37.60 +PUNJAB,1988,5.00,22.50,86.40,3.30,3.60,42.70,356.10,234.30,434.10,0.40,0.70,33.50,1222.60,27.50,93.30,1067.20,34.60 +PUNJAB,1989,45.70,4.10,17.60,1.70,4.90,39.60,164.10,151.90,20.70,0.30,8.00,21.80,480.30,49.80,24.20,376.20,30.10 +PUNJAB,1990,1.90,57.70,32.70,4.20,13.80,18.60,200.30,188.80,194.40,0.60,5.60,36.10,754.70,59.70,50.70,602.00,42.20 +PUNJAB,1991,0.10,39.80,16.00,34.80,10.80,73.50,86.80,144.30,41.70,1.00,0.20,26.80,475.90,39.90,61.70,346.30,28.00 +PUNJAB,1992,38.80,34.20,11.90,2.20,8.60,24.70,144.50,146.50,50.00,3.20,13.00,0.50,478.20,73.00,22.70,365.70,16.80 +PUNJAB,1993,8.50,12.70,29.50,9.40,13.30,38.70,352.60,17.40,98.40,0.30,2.10,0.00,583.10,21.20,52.30,507.20,2.40 +PUNJAB,1994,27.60,23.30,2.80,6.40,7.20,29.50,167.40,222.20,89.00,0.40,0.00,5.10,580.90,50.90,16.50,508.00,5.50 +PUNJAB,1995,50.80,56.00,17.20,8.80,1.30,51.00,160.00,375.50,145.60,1.30,1.40,0.30,869.10,106.80,27.30,732.00,2.90 +PUNJAB,1996,32.70,38.90,19.00,2.80,3.70,118.60,87.90,194.10,72.40,18.80,0.00,0.70,589.70,71.60,25.50,473.00,19.60 +PUNJAB,1997,14.50,5.40,8.90,35.80,30.40,55.30,144.10,261.50,24.30,39.00,28.80,42.10,690.10,19.90,75.10,485.10,110.00 +PUNJAB,1998,2.80,55.80,25.50,19.10,2.70,42.40,160.60,90.10,139.50,49.90,0.00,0.20,588.60,58.70,47.30,432.60,50.10 +PUNJAB,1999,43.40,5.60,4.30,0.00,22.60,35.60,139.60,82.00,30.70,0.50,0.10,0.20,364.40,49.00,26.80,287.90,0.70 +PUNJAB,2000,25.40,26.60,6.90,1.30,15.30,50.10,164.80,70.00,42.00,0.00,0.70,2.20,405.30,52.00,23.50,326.90,2.90 +PUNJAB,2001,8.00,2.10,6.20,24.50,36.90,93.80,173.90,69.50,19.90,1.50,0.90,3.80,441.00,10.10,67.50,357.10,6.20 +PUNJAB,2002,2.40,6.60,6.80,3.30,20.80,24.70,50.40,58.40,95.00,2.60,0.00,3.70,274.70,9.00,31.00,228.40,6.30 +PUNJAB,2003,10.60,56.40,19.40,3.00,3.90,40.70,136.70,94.70,52.20,0.00,2.20,5.00,424.60,67.00,26.20,324.30,7.10 +PUNJAB,2004,32.40,5.70,0.00,15.50,27.20,48.80,52.10,124.20,8.90,31.20,0.80,5.00,351.70,38.00,42.70,234.00,37.00 +PUNJAB,2005,35.80,60.30,28.60,8.40,5.20,34.60,176.70,95.30,106.70,0.40,0.00,0.00,552.00,96.10,42.20,413.40,0.40 +PUNJAB,2006,15.00,3.70,46.10,1.30,32.10,73.00,220.30,90.80,120.70,24.60,13.40,6.70,647.70,18.70,79.50,504.80,44.70 +PUNJAB,2007,1.20,68.80,48.20,10.00,5.90,64.40,95.10,215.40,73.70,0.60,0.90,10.60,594.80,70.00,64.10,448.60,12.10 +PUNJAB,2008,12.00,4.10,0.00,19.70,40.60,155.50,101.90,312.20,59.80,9.90,0.60,0.90,717.10,16.10,60.30,629.30,11.40 +PUNJAB,2009,9.40,14.40,10.50,14.00,5.60,10.60,158.00,76.80,54.70,4.00,2.70,0.40,361.20,23.90,30.10,300.10,7.10 +PUNJAB,2010,3.80,13.80,1.90,0.70,6.00,41.80,143.80,96.70,112.80,4.70,1.10,24.40,451.50,17.60,8.60,395.10,30.20 +PUNJAB,2011,3.50,35.60,8.20,17.80,18.90,162.90,120.90,193.50,140.20,0.00,1.00,2.60,705.20,39.20,44.90,617.50,3.60 +PUNJAB,2012,62.60,3.20,1.90,31.10,1.60,11.90,120.20,135.10,112.30,2.20,0.40,11.00,493.60,65.80,34.70,379.60,13.60 +PUNJAB,2013,9.30,50.10,11.60,3.40,3.60,120.30,117.90,217.10,24.40,16.20,6.10,6.60,586.60,59.40,18.60,479.70,28.90 +PUNJAB,2014,21.80,20.10,30.30,24.50,20.80,20.60,76.30,41.90,105.80,6.00,0.70,14.10,382.70,41.90,75.50,244.60,20.70 +PUNJAB,2015,17.70,31.30,68.50,29.80,16.70,48.30,130.20,88.60,69.20,9.00,0.80,0.70,510.80,49.00,115.00,336.30,10.50 +HIMACHAL PRADESH,1901,137.80,174.50,75.00,19.20,89.60,32.70,280.50,459.70,53.00,3.90,0.00,19.10,1345.10,312.30,183.80,825.90,23.00 +HIMACHAL PRADESH,1902,6.50,27.00,104.40,76.20,61.30,78.80,258.60,199.30,113.40,23.60,2.50,0.00,951.60,33.60,241.90,650.00,26.10 +HIMACHAL PRADESH,1903,76.50,21.40,213.70,25.40,54.70,32.20,157.70,256.50,107.90,5.80,0.20,41.40,993.30,97.90,293.70,554.20,47.40 +HIMACHAL PRADESH,1904,79.30,22.40,131.70,48.00,90.30,33.10,241.10,184.30,56.40,51.60,17.30,32.00,987.60,101.70,270.00,515.00,100.90 +HIMACHAL PRADESH,1905,81.30,76.80,160.20,39.30,50.40,43.60,191.10,132.80,119.10,0.30,0.90,34.40,930.20,158.10,249.80,486.60,35.60 +HIMACHAL PRADESH,1906,44.10,143.90,89.50,5.30,29.90,152.60,168.70,433.70,230.90,2.90,0.00,15.90,1317.50,188.00,124.70,986.00,18.80 +HIMACHAL PRADESH,1907,124.20,145.10,144.90,73.00,34.20,23.70,95.70,200.60,18.90,14.90,0.00,0.00,875.40,269.40,252.10,338.90,14.90 +HIMACHAL PRADESH,1908,38.40,76.10,12.30,181.70,43.60,46.80,225.60,287.40,43.00,2.80,7.30,22.50,987.60,114.50,237.60,602.90,32.60 +HIMACHAL PRADESH,1909,111.00,82.10,25.40,31.70,19.00,107.60,292.40,234.50,105.90,17.60,0.00,49.90,1077.00,193.00,76.10,740.40,67.50 +HIMACHAL PRADESH,1910,49.90,48.90,42.70,48.90,46.80,133.50,408.30,355.40,174.20,37.00,5.50,55.80,1406.90,98.80,138.40,1071.40,98.30 +HIMACHAL PRADESH,1911,246.30,21.90,277.30,35.10,8.80,121.00,103.20,240.90,174.40,24.00,75.20,5.80,1333.80,268.10,321.30,639.50,104.90 +HIMACHAL PRADESH,1912,95.60,34.70,55.70,60.10,54.30,36.90,357.60,346.80,126.60,1.00,26.90,11.40,1207.60,130.30,170.10,867.90,39.30 +HIMACHAL PRADESH,1913,21.30,126.60,72.40,35.50,114.60,168.00,215.40,239.00,40.30,14.10,20.30,51.80,1119.30,147.90,222.50,662.70,86.20 +HIMACHAL PRADESH,1914,15.90,88.80,105.50,110.80,76.10,135.10,495.40,292.70,269.60,71.60,22.50,51.90,1735.90,104.70,292.40,1192.80,146.10 +HIMACHAL PRADESH,1915,62.20,100.40,90.00,66.60,19.40,67.50,249.00,380.60,157.70,23.40,0.00,20.00,1236.80,162.60,176.00,854.80,43.40 +HIMACHAL PRADESH,1916,10.40,75.30,33.70,41.80,35.30,238.90,275.80,254.90,118.90,86.90,0.00,0.20,1172.10,85.70,110.80,888.50,87.10 +HIMACHAL PRADESH,1917,20.40,30.00,61.80,162.90,79.80,135.10,376.30,309.80,330.30,174.40,0.00,22.70,1703.60,50.50,304.50,1151.50,197.10 +HIMACHAL PRADESH,1918,21.20,22.30,171.20,103.40,14.30,135.60,200.60,208.90,21.50,7.90,51.00,26.90,984.70,43.40,288.90,566.60,85.80 +HIMACHAL PRADESH,1919,141.30,47.40,75.60,60.40,43.50,80.10,417.30,227.80,66.50,0.70,9.80,42.90,1213.10,188.60,179.40,791.70,53.30 +HIMACHAL PRADESH,1920,53.00,58.10,126.10,32.80,109.40,55.60,385.10,168.00,76.00,3.30,0.00,17.40,1084.80,111.10,268.30,684.70,20.70 +HIMACHAL PRADESH,1921,87.80,20.90,9.10,29.60,32.00,42.60,264.10,465.60,195.70,57.90,0.00,106.10,1311.20,108.70,70.60,968.00,164.00 +HIMACHAL PRADESH,1922,106.60,57.50,68.20,87.70,13.00,106.80,425.80,508.10,274.00,14.20,6.50,50.20,1718.60,164.10,169.00,1314.70,70.90 +HIMACHAL PRADESH,1923,113.40,151.20,51.00,27.20,93.00,64.30,320.10,512.10,125.50,60.10,17.50,85.60,1620.90,264.60,171.10,1021.90,163.20 +HIMACHAL PRADESH,1924,50.20,135.10,63.00,26.60,86.70,26.60,419.30,345.50,418.60,12.40,14.90,61.70,1660.70,185.30,176.30,1210.00,89.00 +HIMACHAL PRADESH,1925,86.20,61.70,33.50,65.40,86.60,167.50,450.20,388.10,48.50,33.20,88.50,0.00,1509.30,147.80,185.50,1054.30,121.60 +HIMACHAL PRADESH,1926,52.90,48.60,179.70,86.30,114.40,23.90,349.60,422.90,127.90,4.20,25.10,14.30,1450.00,101.50,380.50,924.30,43.70 +HIMACHAL PRADESH,1927,17.50,132.50,48.20,51.40,79.10,37.90,384.70,542.40,78.00,37.90,5.80,19.30,1435.00,150.00,178.80,1043.10,63.10 +HIMACHAL PRADESH,1928,129.00,112.90,48.10,94.60,14.50,82.90,276.50,329.20,67.30,2.00,59.90,91.90,1308.90,241.90,157.20,756.00,153.80 +HIMACHAL PRADESH,1929,109.00,52.30,17.60,48.00,24.90,101.70,363.90,423.70,50.30,57.30,0.00,176.00,1424.70,161.20,90.50,939.60,233.30 +HIMACHAL PRADESH,1930,98.80,64.10,52.70,87.70,28.20,120.80,424.50,307.00,77.70,13.00,5.20,25.70,1305.50,163.00,168.60,930.00,43.90 +HIMACHAL PRADESH,1931,58.50,149.60,79.90,14.60,84.50,25.00,263.60,339.60,202.50,47.80,0.20,0.60,1266.30,208.10,179.00,830.70,48.50 +HIMACHAL PRADESH,1932,43.00,52.80,62.10,17.10,61.40,54.60,409.20,451.30,183.10,6.10,9.50,68.40,1418.90,95.90,140.70,1098.30,84.10 +HIMACHAL PRADESH,1933,60.20,93.60,109.40,80.20,54.70,106.00,259.30,244.20,172.70,49.10,8.20,2.80,1240.40,153.80,244.30,782.20,60.20 +HIMACHAL PRADESH,1934,91.80,12.80,40.30,82.30,59.90,70.70,281.00,241.10,30.40,0.90,1.30,69.50,982.10,104.70,182.50,623.20,71.70 +HIMACHAL PRADESH,1935,136.70,73.40,60.30,83.60,18.40,40.30,233.60,216.60,88.00,28.50,26.50,22.10,1027.90,210.10,162.30,578.50,77.10 +HIMACHAL PRADESH,1936,11.50,111.10,118.20,61.00,42.80,193.60,240.90,173.80,107.90,9.10,0.50,87.50,1158.00,122.70,221.90,716.20,97.10 +HIMACHAL PRADESH,1937,57.30,141.00,53.70,60.30,35.10,116.40,282.90,325.70,227.30,53.80,9.50,101.90,1465.00,198.30,149.10,952.30,165.20 +HIMACHAL PRADESH,1938,175.50,124.30,48.10,38.90,11.10,125.30,211.80,156.50,16.80,6.70,6.70,5.70,927.50,299.80,98.10,510.40,19.20 +HIMACHAL PRADESH,1939,56.40,112.30,97.90,47.10,9.90,103.00,201.00,110.50,108.60,30.90,0.00,0.00,877.80,168.70,155.00,523.20,30.90 +HIMACHAL PRADESH,1940,64.10,79.90,69.40,60.40,56.40,103.30,321.60,220.70,84.80,1.40,2.30,24.30,1088.60,144.00,186.20,730.40,28.00 +HIMACHAL PRADESH,1941,44.50,49.40,70.10,21.50,70.60,92.80,182.00,231.60,83.50,12.50,2.90,34.10,895.50,93.90,162.30,589.90,49.50 +HIMACHAL PRADESH,1942,74.80,156.80,28.30,84.60,73.50,66.60,273.80,348.60,153.60,7.80,0.00,59.80,1328.30,231.60,186.40,842.70,67.60 +HIMACHAL PRADESH,1943,171.10,26.10,96.70,74.80,78.10,36.60,237.20,377.70,111.50,0.00,0.20,13.10,1223.10,197.20,249.60,763.00,13.30 +HIMACHAL PRADESH,1944,108.30,112.50,106.20,51.00,16.90,51.00,277.40,226.70,80.20,23.90,7.20,67.40,1128.80,220.80,174.20,635.30,98.50 +HIMACHAL PRADESH,1945,196.00,10.30,105.00,81.00,24.50,74.20,424.40,352.50,331.00,40.00,2.90,5.20,1646.90,206.30,210.40,1182.00,48.20 +HIMACHAL PRADESH,1946,45.20,85.90,77.90,42.00,56.60,159.30,462.30,379.10,41.10,79.10,49.00,61.50,1539.00,131.00,176.50,1041.90,189.60 +HIMACHAL PRADESH,1947,78.00,38.20,82.80,4.50,32.20,50.30,260.10,257.30,438.10,14.60,0.00,57.30,1313.20,116.20,119.40,1005.70,71.90 +HIMACHAL PRADESH,1948,33.50,185.00,382.00,47.50,13.70,55.50,380.00,456.60,115.40,16.50,0.00,73.00,1758.70,218.50,443.20,1007.50,89.50 +HIMACHAL PRADESH,1949,28.00,140.00,81.60,45.00,35.20,48.20,548.70,265.20,99.50,4.70,0.00,15.00,1310.90,168.00,161.70,961.50,19.70 +HIMACHAL PRADESH,1950,211.00,67.00,155.00,51.70,65.10,83.60,392.80,319.30,329.80,2.20,0.00,7.00,1684.40,278.00,271.70,1125.60,9.20 +HIMACHAL PRADESH,1951,112.30,69.40,87.40,90.40,89.10,38.80,217.30,309.30,124.50,19.30,69.60,11.10,1238.50,181.70,266.80,690.00,100.00 +HIMACHAL PRADESH,1952,86.40,82.80,191.40,35.20,66.80,146.90,198.10,371.10,26.70,12.90,2.80,42.50,1263.70,169.20,293.40,742.80,58.20 +HIMACHAL PRADESH,1953,149.20,51.90,98.30,86.60,36.90,107.60,390.90,330.30,90.20,11.60,9.30,62.80,1425.70,201.10,221.80,919.10,83.70 +HIMACHAL PRADESH,1954,196.40,271.80,87.20,13.00,52.20,47.50,336.60,348.90,293.40,46.20,7.60,16.70,1717.60,468.30,152.40,1026.40,70.50 +HIMACHAL PRADESH,1955,165.00,42.00,141.40,87.70,114.70,86.20,320.90,337.50,194.40,413.60,0.30,15.50,1919.20,207.00,343.80,939.00,429.40 +HIMACHAL PRADESH,1956,96.50,44.70,206.50,58.00,26.80,118.80,293.90,266.10,113.10,222.30,8.30,86.60,1541.60,141.20,291.40,791.90,317.10 +HIMACHAL PRADESH,1957,181.00,37.90,133.80,146.40,151.90,79.00,321.30,253.90,263.70,84.50,56.30,112.90,1822.70,218.90,432.20,917.90,253.80 +HIMACHAL PRADESH,1958,84.00,22.40,72.80,61.70,65.00,34.70,452.00,265.30,265.90,75.20,2.20,171.10,1572.30,106.40,199.40,1017.90,248.60 +HIMACHAL PRADESH,1959,136.10,243.10,94.70,43.30,52.80,52.00,418.60,243.70,219.50,81.70,53.90,1.00,1640.30,379.20,190.80,933.80,136.50 +HIMACHAL PRADESH,1960,82.90,0.70,134.20,66.20,20.80,78.30,355.30,226.80,72.90,7.20,3.80,66.20,1115.10,83.60,221.10,733.30,77.20 +HIMACHAL PRADESH,1961,153.80,157.20,68.80,104.20,34.20,88.70,320.30,314.30,153.10,46.20,37.60,37.20,1515.50,311.00,207.10,876.30,121.00 +HIMACHAL PRADESH,1962,45.00,102.90,82.90,102.60,55.40,86.50,242.70,255.80,303.70,5.80,66.50,43.80,1393.50,147.90,240.90,888.60,116.10 +HIMACHAL PRADESH,1963,14.10,57.20,201.20,49.50,47.20,108.90,325.70,308.10,111.30,2.40,76.80,52.20,1354.50,71.30,297.90,854.00,131.30 +HIMACHAL PRADESH,1964,176.60,58.80,83.60,97.70,86.80,86.20,278.90,246.80,197.10,0.10,1.80,39.60,1354.10,235.50,268.20,809.10,41.40 +HIMACHAL PRADESH,1965,52.50,209.10,170.90,126.60,143.90,24.90,278.30,117.30,39.90,25.80,12.80,18.30,1220.40,261.60,441.40,460.40,57.00 +HIMACHAL PRADESH,1966,0.30,145.00,78.40,77.20,95.70,187.10,250.50,298.00,153.30,30.80,13.90,40.80,1371.00,145.30,251.20,888.90,85.60 +HIMACHAL PRADESH,1967,30.80,99.10,181.50,31.40,48.10,99.30,386.30,403.30,105.70,36.90,23.80,112.40,1558.50,129.90,260.90,994.50,173.20 +HIMACHAL PRADESH,1968,188.50,114.10,80.80,50.90,44.90,99.30,277.20,181.10,16.30,47.20,9.10,58.80,1168.20,302.60,176.60,573.80,115.20 +HIMACHAL PRADESH,1969,66.00,78.60,72.70,130.40,111.00,31.00,201.80,306.70,117.20,8.40,2.40,1.50,1127.60,144.60,314.10,656.60,12.30 +HIMACHAL PRADESH,1970,116.50,39.00,37.90,7.30,43.50,163.20,223.40,280.40,164.40,6.60,0.20,0.30,1082.50,155.40,88.60,831.40,7.10 +HIMACHAL PRADESH,1971,53.10,76.50,13.70,57.50,71.80,252.70,352.80,301.20,67.00,13.80,12.20,2.60,1275.10,129.60,143.10,973.70,28.60 +HIMACHAL PRADESH,1972,55.00,77.00,55.00,82.10,21.30,43.80,184.20,159.90,57.60,31.10,21.30,54.00,842.30,132.00,158.40,445.50,106.40 +HIMACHAL PRADESH,1973,116.80,80.60,68.40,15.70,40.00,99.10,167.80,213.90,86.30,32.10,5.40,29.10,955.20,197.30,124.10,567.10,66.60 +HIMACHAL PRADESH,1974,75.00,44.60,33.70,24.60,41.80,76.40,168.80,204.60,30.50,28.80,2.40,45.10,776.10,119.60,100.00,480.20,76.30 +HIMACHAL PRADESH,1975,137.80,124.70,126.30,25.40,35.10,86.90,214.00,191.80,95.30,13.80,0.20,2.70,1054.10,262.50,186.80,587.90,16.80 +HIMACHAL PRADESH,1976,66.70,105.50,126.60,49.10,30.10,85.50,368.90,238.00,72.60,20.20,1.70,14.60,1179.30,172.20,205.70,765.00,36.40 +HIMACHAL PRADESH,1977,85.50,4.70,12.90,97.50,87.20,86.10,339.70,236.40,197.10,18.80,9.90,69.20,1245.00,90.20,197.60,859.30,97.90 +HIMACHAL PRADESH,1978,63.70,102.60,157.90,53.50,31.10,156.10,280.00,300.10,137.70,3.60,75.90,9.00,1371.20,166.30,242.50,873.90,88.40 +HIMACHAL PRADESH,1979,170.00,115.30,157.40,31.90,85.10,64.80,163.40,119.00,43.50,7.00,34.00,29.60,1021.00,285.20,274.40,390.70,70.70 +HIMACHAL PRADESH,1980,83.20,87.10,71.70,28.50,26.10,106.80,477.10,128.80,52.50,25.30,27.30,40.50,1155.00,170.40,126.40,765.30,93.00 +HIMACHAL PRADESH,1981,114.50,96.30,162.00,54.40,67.10,94.70,233.50,163.40,71.60,11.40,70.40,7.90,1147.10,210.80,283.40,563.30,89.60 +HIMACHAL PRADESH,1982,187.30,147.70,228.90,146.20,152.50,58.30,160.40,170.20,31.50,42.50,21.80,75.70,1423.00,335.00,527.60,420.40,140.00 +HIMACHAL PRADESH,1983,91.70,97.60,162.80,136.70,86.10,59.20,166.70,204.20,121.50,48.20,1.00,13.90,1189.60,189.30,385.50,551.60,63.20 +HIMACHAL PRADESH,1984,24.30,134.50,38.70,68.60,14.70,105.00,194.40,192.50,121.50,10.60,25.10,38.40,968.30,158.80,122.00,613.30,74.20 +HIMACHAL PRADESH,1985,70.40,23.00,36.20,65.60,54.30,54.10,301.30,252.70,118.00,127.60,2.80,88.00,1193.90,93.40,156.10,726.10,218.30 +HIMACHAL PRADESH,1986,7.30,119.30,159.40,105.30,99.10,86.40,240.90,246.90,52.40,43.40,72.70,89.50,1322.60,126.60,363.70,626.60,205.60 +HIMACHAL PRADESH,1987,68.10,84.60,77.90,132.10,214.20,81.00,90.40,147.80,50.30,76.70,0.80,11.60,1035.60,152.70,424.20,369.60,89.10 +HIMACHAL PRADESH,1988,41.60,128.30,353.90,27.20,39.30,84.00,411.30,304.70,360.20,2.20,4.90,123.50,1881.10,169.80,420.40,1160.30,130.60 +HIMACHAL PRADESH,1989,111.00,62.50,89.20,39.40,92.50,59.70,291.10,247.30,64.90,7.30,52.90,59.40,1177.20,173.50,221.20,663.00,119.60 +HIMACHAL PRADESH,1990,36.20,161.20,217.70,52.50,61.80,80.20,302.30,221.80,162.80,15.60,10.10,140.60,1462.70,197.40,332.00,767.00,166.30 +HIMACHAL PRADESH,1991,24.00,143.10,120.60,104.50,69.70,67.10,141.60,258.30,128.50,2.20,4.30,40.90,1104.80,167.10,294.80,595.60,47.40 +HIMACHAL PRADESH,1992,123.90,75.80,199.40,36.90,83.90,53.00,277.50,374.00,127.60,7.00,19.40,4.70,1383.10,199.70,320.10,832.20,31.10 +HIMACHAL PRADESH,1993,109.20,69.70,164.10,20.60,56.70,70.90,386.90,89.10,143.10,0.30,17.70,0.00,1128.30,178.80,241.50,690.00,18.00 +HIMACHAL PRADESH,1994,88.70,124.70,29.00,131.30,65.50,114.20,367.00,311.00,92.70,8.50,0.10,77.60,1410.20,213.40,225.80,884.80,86.20 +HIMACHAL PRADESH,1995,61.50,140.00,96.70,85.80,44.20,66.50,332.40,345.10,284.50,5.40,13.90,17.70,1493.90,201.50,226.70,1028.60,37.10 +HIMACHAL PRADESH,1996,118.60,117.80,112.50,50.60,68.50,173.70,210.60,348.30,138.50,38.30,0.60,6.40,1384.40,236.40,231.60,871.10,45.30 +HIMACHAL PRADESH,1997,50.90,58.50,60.40,97.40,66.10,92.30,198.70,476.10,113.80,44.40,87.40,108.50,1454.50,109.30,223.80,881.00,240.30 +HIMACHAL PRADESH,1998,13.50,133.80,139.40,71.50,41.30,152.30,210.70,239.80,251.50,119.40,5.90,2.40,1381.60,147.30,252.30,854.30,127.70 +HIMACHAL PRADESH,1999,109.20,54.30,33.40,7.10,98.30,104.70,304.10,284.60,111.40,6.40,28.90,2.50,1144.90,163.50,138.80,804.80,37.80 +HIMACHAL PRADESH,2000,118.20,119.00,68.10,25.60,79.90,198.00,265.10,126.70,50.10,0.00,10.50,6.90,1068.40,237.20,173.70,640.00,17.50 +HIMACHAL PRADESH,2001,30.50,35.70,105.80,66.90,67.30,153.80,239.50,202.30,26.90,5.00,20.80,37.30,991.80,66.20,240.00,622.50,63.10 +HIMACHAL PRADESH,2002,66.70,136.50,136.90,124.00,27.00,56.10,81.80,225.60,123.10,8.20,0.70,3.90,990.40,203.20,287.90,486.60,12.80 +HIMACHAL PRADESH,2003,39.50,116.60,113.00,52.90,35.90,61.40,187.70,228.70,135.50,0.30,22.50,40.40,1034.50,156.10,201.90,613.30,63.20 +HIMACHAL PRADESH,2004,86.20,43.00,5.90,54.70,57.60,76.10,141.30,202.50,47.60,104.70,9.30,49.40,878.50,129.30,118.30,467.50,163.50 +HIMACHAL PRADESH,2005,147.80,222.90,143.30,35.20,52.40,52.60,317.20,114.20,156.30,1.80,0.30,4.50,1248.50,370.70,230.90,640.30,6.60 +HIMACHAL PRADESH,2006,102.50,38.20,137.30,44.30,68.40,104.80,260.30,274.20,92.80,17.50,26.90,51.20,1218.40,140.70,250.00,732.10,95.60 +HIMACHAL PRADESH,2007,1.30,121.00,177.00,9.60,39.30,155.70,155.20,234.30,85.70,18.70,1.00,35.60,1034.50,122.30,225.90,631.00,55.40 +HIMACHAL PRADESH,2008,129.90,63.20,6.30,44.40,42.90,187.30,194.90,224.70,142.60,33.90,5.30,38.90,1114.20,193.10,93.60,749.40,78.00 +HIMACHAL PRADESH,2009,54.80,45.90,43.40,91.20,53.50,45.50,170.20,162.60,172.10,16.40,93.10,7.80,956.50,100.70,188.20,550.30,117.20 +HIMACHAL PRADESH,2010,25.50,96.60,45.10,60.30,81.40,108.50,291.80,274.10,176.70,30.50,10.80,58.10,1259.40,122.10,186.80,851.20,99.40 +HIMACHAL PRADESH,2011,43.90,97.40,49.70,62.40,45.10,118.30,177.70,380.20,120.30,6.00,0.30,6.90,1108.30,141.30,157.30,796.60,13.20 +HIMACHAL PRADESH,2012,92.30,51.30,28.40,55.90,9.40,31.10,241.50,280.60,133.10,3.10,3.20,21.80,951.60,143.50,93.70,686.30,28.10 +HIMACHAL PRADESH,2013,79.90,182.60,76.60,28.90,32.60,233.60,208.80,240.00,65.80,21.80,16.60,24.80,1211.90,262.50,138.10,748.20,63.20 +HIMACHAL PRADESH,2014,69.60,124.90,125.20,60.60,68.90,51.70,203.60,146.70,84.60,19.30,4.50,49.30,1008.70,194.50,254.60,486.60,73.00 +HIMACHAL PRADESH,2015,67.20,156.60,192.50,84.90,45.00,85.80,249.90,195.90,75.50,17.70,14.50,25.00,1210.50,223.90,322.30,607.20,57.20 +JAMMU & KASHMIR,1901,66.40,69.30,69.60,132.20,105.80,53.40,171.70,181.30,101.80,24.10,0.00,4.40,979.90,135.60,307.60,508.20,28.50 +JAMMU & KASHMIR,1902,6.50,9.70,91.30,100.50,70.70,113.30,108.40,136.90,62.20,15.10,44.00,1.80,760.50,16.20,262.50,420.90,60.90 +JAMMU & KASHMIR,1903,96.20,21.50,238.60,58.70,57.30,18.90,332.50,218.60,176.90,10.70,15.00,41.80,1286.60,117.70,354.60,746.90,67.50 +JAMMU & KASHMIR,1904,110.60,17.30,145.20,64.50,67.80,25.90,182.30,132.20,62.30,50.00,24.80,99.20,982.20,128.00,277.50,402.70,174.00 +JAMMU & KASHMIR,1905,146.70,76.30,161.40,71.70,65.20,43.30,145.20,111.50,239.70,5.80,0.60,90.20,1157.70,223.00,298.40,539.70,96.70 +JAMMU & KASHMIR,1906,81.00,160.40,167.20,49.30,39.40,52.20,107.00,257.40,237.00,5.30,0.00,36.90,1193.10,241.40,255.90,653.60,42.10 +JAMMU & KASHMIR,1907,99.60,195.80,132.20,151.00,57.00,85.90,85.10,220.30,24.90,13.90,3.10,0.80,1069.60,295.40,340.20,416.30,17.80 +JAMMU & KASHMIR,1908,86.40,51.40,28.10,195.80,45.30,26.10,233.30,345.90,118.90,9.00,1.20,86.00,1227.30,137.70,269.10,724.30,96.20 +JAMMU & KASHMIR,1909,91.90,149.30,56.10,48.00,43.10,68.20,252.20,264.70,237.70,55.20,0.10,73.40,1339.90,241.20,147.20,822.90,128.70 +JAMMU & KASHMIR,1910,123.60,85.10,65.60,99.70,33.00,126.20,193.70,276.10,39.40,0.40,0.10,66.70,1109.40,208.70,198.30,635.40,67.10 +JAMMU & KASHMIR,1911,344.80,52.30,285.40,53.10,18.70,76.70,95.10,144.40,72.80,15.10,93.60,28.10,1280.20,397.10,357.20,389.00,136.90 +JAMMU & KASHMIR,1912,169.80,39.70,107.50,102.80,61.10,22.90,192.70,152.90,14.00,4.60,21.40,47.30,936.70,209.50,271.40,382.50,73.30 +JAMMU & KASHMIR,1913,68.40,141.90,95.00,81.00,54.40,99.10,152.20,173.90,24.40,12.80,33.40,63.70,1000.20,210.30,230.40,449.60,109.80 +JAMMU & KASHMIR,1914,47.80,228.90,155.40,153.70,91.90,86.10,369.90,159.30,103.30,157.30,43.00,95.60,1692.10,276.70,400.90,718.60,295.90 +JAMMU & KASHMIR,1915,47.40,218.30,109.70,132.30,18.20,54.40,87.70,174.60,71.70,27.60,0.00,21.90,963.90,265.80,260.20,388.40,49.50 +JAMMU & KASHMIR,1916,37.50,159.40,69.00,67.70,58.60,92.90,244.30,216.50,46.90,30.90,3.40,7.20,1034.30,196.80,195.30,600.60,41.60 +JAMMU & KASHMIR,1917,63.60,34.20,92.70,145.00,67.90,155.40,170.30,231.40,219.50,129.60,0.00,76.50,1386.10,97.80,305.60,776.70,206.00 +JAMMU & KASHMIR,1918,25.80,27.70,269.00,173.90,4.70,59.60,95.30,118.10,19.00,14.90,19.60,88.90,916.50,53.50,447.60,292.00,123.40 +JAMMU & KASHMIR,1919,187.70,98.30,121.60,73.30,49.50,36.90,247.20,208.50,37.70,1.40,0.30,126.80,1189.20,285.90,244.40,530.40,128.50 +JAMMU & KASHMIR,1920,82.90,126.40,199.80,97.20,63.30,40.20,81.20,98.10,48.00,17.30,0.80,34.70,889.90,209.20,360.40,267.50,52.80 +JAMMU & KASHMIR,1921,140.60,71.30,60.40,44.90,21.80,56.70,137.70,209.30,65.80,76.80,3.10,169.30,1057.60,211.90,127.10,469.50,249.20 +JAMMU & KASHMIR,1922,87.90,60.60,82.40,67.40,26.50,63.40,163.90,99.10,149.70,28.70,1.50,59.70,890.80,148.50,176.30,476.10,89.80 +JAMMU & KASHMIR,1923,185.90,163.20,106.90,60.90,135.70,23.80,176.70,244.90,33.00,71.40,9.30,52.60,1264.30,349.20,303.50,478.30,133.30 +JAMMU & KASHMIR,1924,89.20,218.70,91.60,87.60,132.20,4.00,138.20,203.90,103.20,1.30,22.30,89.80,1182.20,307.90,311.50,449.50,113.40 +JAMMU & KASHMIR,1925,90.40,86.80,45.70,70.90,106.10,80.70,242.30,179.30,25.90,32.70,52.50,0.00,1013.30,177.30,222.70,528.20,85.20 +JAMMU & KASHMIR,1926,52.60,61.70,182.40,123.90,92.00,33.90,185.80,245.10,109.20,0.30,2.50,34.10,1123.60,114.40,398.30,574.00,36.90 +JAMMU & KASHMIR,1927,84.60,117.30,80.80,53.20,82.60,27.90,226.20,220.30,27.70,7.60,4.50,40.30,973.10,202.00,216.60,502.20,52.30 +JAMMU & KASHMIR,1928,142.90,192.20,125.90,109.20,18.40,46.20,115.70,177.10,121.60,1.20,102.40,138.30,1291.00,335.10,253.40,460.60,241.90 +JAMMU & KASHMIR,1929,121.20,66.40,40.30,53.00,42.60,60.00,182.60,266.70,20.90,60.40,2.00,186.60,1102.70,187.60,135.90,530.20,249.00 +JAMMU & KASHMIR,1930,201.80,116.10,114.60,209.20,53.10,55.10,211.00,105.90,49.00,43.70,0.90,7.60,1168.00,317.90,376.90,421.10,52.20 +JAMMU & KASHMIR,1931,124.70,142.40,47.10,35.50,109.00,11.10,205.00,192.60,30.40,43.90,7.90,5.30,955.00,267.10,191.70,439.10,57.20 +JAMMU & KASHMIR,1932,99.40,102.70,122.70,32.80,87.10,58.60,255.00,174.10,11.50,9.90,1.60,84.00,1039.40,202.10,242.60,499.20,95.50 +JAMMU & KASHMIR,1933,104.00,137.40,187.10,107.20,31.10,63.70,175.20,217.70,101.90,48.10,12.20,2.10,1187.70,241.40,325.40,558.50,62.40 +JAMMU & KASHMIR,1934,110.10,27.20,71.10,96.80,36.20,60.70,146.30,158.90,16.80,3.50,2.00,73.50,803.10,137.30,204.10,382.70,79.00 +JAMMU & KASHMIR,1935,193.30,95.70,129.90,145.50,20.10,44.70,154.30,183.40,30.40,19.50,48.90,19.70,1085.50,289.00,295.60,412.80,88.10 +JAMMU & KASHMIR,1936,59.90,168.90,242.10,62.40,21.80,96.00,163.60,140.20,54.70,16.70,19.90,94.70,1140.80,228.80,326.30,454.40,131.30 +JAMMU & KASHMIR,1937,67.90,160.00,91.00,80.70,19.50,32.20,133.00,73.50,57.50,88.70,14.70,121.10,939.60,227.80,191.20,296.20,224.40 +JAMMU & KASHMIR,1938,183.10,194.20,132.60,76.40,14.80,118.70,123.00,136.70,11.20,31.00,11.10,29.00,1061.70,377.30,223.70,389.60,71.00 +JAMMU & KASHMIR,1939,89.10,221.00,179.90,68.50,19.60,34.60,164.20,95.20,72.70,57.40,0.00,1.10,1003.50,310.20,268.10,366.70,58.60 +JAMMU & KASHMIR,1940,96.80,61.10,108.90,71.90,69.00,85.20,127.40,151.90,69.90,8.50,8.60,19.20,878.30,157.80,249.80,434.30,36.40 +JAMMU & KASHMIR,1941,81.70,52.50,109.60,40.10,41.30,44.00,120.20,100.80,163.20,11.40,19.90,87.00,871.60,134.20,191.00,428.10,118.30 +JAMMU & KASHMIR,1942,127.70,196.90,39.40,85.90,88.00,35.50,200.00,274.50,80.30,21.70,9.80,80.20,1239.80,324.60,213.30,590.20,111.70 +JAMMU & KASHMIR,1943,245.50,37.50,145.00,94.90,124.80,27.60,135.10,228.80,94.00,1.10,3.60,29.80,1167.70,283.10,364.60,485.50,34.50 +JAMMU & KASHMIR,1944,114.90,142.50,98.80,72.50,26.40,37.20,193.90,183.20,51.10,18.40,37.80,74.20,1051.00,257.40,197.70,465.50,130.40 +JAMMU & KASHMIR,1945,131.70,23.00,138.20,101.80,37.80,49.80,129.70,104.10,94.30,26.10,9.50,10.30,856.20,154.70,277.80,377.80,45.80 +JAMMU & KASHMIR,1946,36.60,89.70,87.10,26.00,32.40,82.60,159.00,173.80,16.30,43.50,70.80,104.50,922.30,126.20,145.60,431.70,218.80 +JAMMU & KASHMIR,1947,64.70,81.90,68.30,5.70,61.30,39.20,130.00,182.00,177.90,14.60,8.90,79.40,914.00,146.60,135.30,529.20,102.90 +JAMMU & KASHMIR,1948,47.90,133.70,261.10,43.40,21.40,66.90,278.30,182.00,60.60,6.20,5.50,76.10,1183.10,181.60,325.90,587.80,87.90 +JAMMU & KASHMIR,1949,101.30,194.00,127.70,59.10,54.90,69.20,144.60,85.10,38.60,24.00,11.00,37.50,946.90,295.30,241.60,337.50,72.40 +JAMMU & KASHMIR,1950,367.80,96.10,115.40,119.30,55.50,20.90,182.20,175.60,371.10,12.80,0.70,5.70,1523.10,463.90,290.20,749.80,19.20 +JAMMU & KASHMIR,1951,107.30,99.30,120.60,90.10,94.60,64.80,116.90,160.60,27.40,23.00,25.40,32.80,963.00,206.60,305.30,369.80,81.30 +JAMMU & KASHMIR,1952,88.20,94.10,199.50,42.70,62.80,77.40,175.90,216.90,19.40,1.40,16.00,75.20,1069.60,182.30,305.00,489.60,92.60 +JAMMU & KASHMIR,1953,135.50,46.60,98.60,97.20,29.60,75.40,248.70,257.50,117.50,51.30,16.00,55.80,1229.60,182.00,225.40,699.10,123.10 +JAMMU & KASHMIR,1954,308.40,250.60,60.70,16.20,73.70,26.10,96.10,123.20,286.00,38.10,15.90,12.30,1307.10,559.00,150.50,531.40,66.20 +JAMMU & KASHMIR,1955,47.90,14.90,124.40,64.40,113.50,20.80,160.00,329.40,89.20,170.60,0.00,21.40,1156.40,62.80,302.20,599.30,192.00 +JAMMU & KASHMIR,1956,136.40,63.90,180.90,115.10,18.50,113.00,356.80,292.50,49.30,134.00,2.50,57.80,1520.80,200.30,314.50,811.60,194.40 +JAMMU & KASHMIR,1957,184.10,144.70,110.90,222.70,144.40,73.50,143.80,203.20,29.90,113.60,86.90,62.60,1520.30,328.70,478.00,450.40,263.10 +JAMMU & KASHMIR,1958,38.70,85.80,116.00,101.00,91.60,34.50,253.50,265.10,229.30,25.30,16.30,93.30,1350.40,124.50,308.60,782.50,134.80 +JAMMU & KASHMIR,1959,113.50,120.80,114.60,33.30,57.40,19.80,454.60,243.70,243.00,47.30,85.20,17.00,1550.30,234.30,205.30,961.20,149.60 +JAMMU & KASHMIR,1960,48.20,9.90,144.70,47.00,29.30,23.30,202.30,183.30,34.20,1.10,4.10,39.00,766.40,58.00,221.00,443.10,44.20 +JAMMU & KASHMIR,1961,103.30,57.90,54.50,107.50,55.10,107.30,199.60,217.40,118.30,28.80,53.20,35.00,1138.20,161.20,217.20,642.70,117.10 +JAMMU & KASHMIR,1962,20.50,97.00,51.00,117.50,34.00,41.10,132.70,137.10,171.30,11.90,52.70,63.50,930.30,117.40,202.50,482.30,128.10 +JAMMU & KASHMIR,1963,0.00,36.40,251.80,188.90,82.40,24.80,68.40,67.00,32.90,12.80,83.50,60.20,909.20,36.40,523.10,193.10,156.50 +JAMMU & KASHMIR,1964,126.20,60.70,96.00,134.60,41.30,92.70,167.40,99.40,64.00,1.30,4.60,58.00,946.20,186.90,272.00,423.50,63.90 +JAMMU & KASHMIR,1965,62.20,138.10,99.90,179.80,153.40,32.40,83.90,62.00,16.40,26.20,33.00,25.20,912.60,200.40,433.10,194.70,84.40 +JAMMU & KASHMIR,1966,1.50,199.30,155.20,148.50,114.00,59.90,169.70,203.90,217.40,83.60,3.50,22.40,1378.90,200.90,417.60,650.90,109.50 +JAMMU & KASHMIR,1967,17.50,114.00,156.90,88.10,54.50,52.00,137.90,160.60,115.90,47.10,15.70,131.20,1091.30,131.50,299.50,466.30,194.00 +JAMMU & KASHMIR,1968,117.20,72.40,85.20,63.00,58.60,52.10,259.30,183.20,20.90,65.60,29.80,58.20,1065.60,189.70,206.80,515.50,153.60 +JAMMU & KASHMIR,1969,81.20,139.70,112.10,174.10,107.70,33.30,156.60,176.40,45.00,62.80,5.60,1.10,1095.60,220.90,393.90,411.30,69.50 +JAMMU & KASHMIR,1970,51.70,44.50,94.10,36.00,37.50,79.50,67.20,99.80,84.40,57.30,0.00,4.90,657.00,96.20,167.50,331.00,62.20 +JAMMU & KASHMIR,1971,28.10,112.00,10.40,111.00,34.50,93.20,117.60,192.70,13.50,3.60,27.10,20.80,764.70,140.20,155.90,417.10,51.50 +JAMMU & KASHMIR,1972,70.20,128.50,169.30,119.50,84.10,31.80,122.40,142.80,67.50,96.70,25.80,87.10,1145.60,198.70,372.90,364.50,209.60 +JAMMU & KASHMIR,1973,134.10,83.40,131.30,65.90,57.20,29.10,180.90,299.70,45.50,21.60,0.00,51.80,1100.50,217.50,254.40,555.20,73.40 +JAMMU & KASHMIR,1974,118.10,100.60,64.30,46.20,76.00,122.30,90.10,49.10,44.00,12.00,0.60,79.20,802.60,218.70,186.50,305.50,91.90 +JAMMU & KASHMIR,1975,71.50,94.30,180.10,83.50,98.40,39.60,262.70,256.50,73.50,1.80,12.80,5.80,1180.40,165.80,362.00,632.20,20.30 +JAMMU & KASHMIR,1976,96.60,156.40,116.80,72.40,41.10,47.60,108.20,266.90,58.80,35.10,0.00,23.50,1023.70,253.10,230.40,481.60,58.70 +JAMMU & KASHMIR,1977,150.20,21.30,21.10,145.30,68.80,56.50,183.70,115.00,63.20,36.10,20.80,73.10,955.00,171.50,235.20,418.40,130.00 +JAMMU & KASHMIR,1978,50.20,73.00,253.60,60.60,40.40,76.70,172.00,173.40,70.10,1.10,89.70,0.80,1061.60,123.20,354.50,492.30,91.60 +JAMMU & KASHMIR,1979,65.60,98.40,228.60,58.40,147.10,51.60,103.80,115.90,71.00,7.60,89.90,39.50,1077.40,164.00,434.00,342.30,137.10 +JAMMU & KASHMIR,1980,84.10,171.60,136.80,36.10,61.40,106.90,161.90,68.70,57.80,28.00,47.30,57.10,1017.90,255.70,234.40,395.30,132.40 +JAMMU & KASHMIR,1981,146.10,131.20,227.30,88.90,76.70,72.30,216.00,90.30,26.70,15.30,37.40,7.30,1135.50,277.30,392.80,405.30,60.10 +JAMMU & KASHMIR,1982,91.90,139.00,222.40,128.70,104.60,42.00,89.60,134.50,33.30,64.20,55.90,96.00,1202.20,230.90,455.80,299.40,216.20 +JAMMU & KASHMIR,1983,118.80,97.20,318.80,207.80,108.80,67.10,154.00,222.10,115.10,39.70,14.60,21.20,1485.20,216.00,635.40,558.20,75.60 +JAMMU & KASHMIR,1984,33.60,181.20,90.50,128.20,52.30,63.20,159.60,234.70,96.40,2.00,45.40,70.20,1157.40,214.80,271.00,553.90,117.70 +JAMMU & KASHMIR,1985,80.10,23.70,42.10,71.40,106.90,54.40,295.50,154.80,54.70,90.00,13.90,179.70,1167.10,103.90,220.40,559.40,283.50 +JAMMU & KASHMIR,1986,20.90,110.90,235.00,163.70,72.40,63.50,230.80,217.90,36.90,45.50,164.10,159.50,1521.00,131.80,471.10,548.90,369.20 +JAMMU & KASHMIR,1987,45.00,150.10,140.40,134.70,234.40,125.10,71.90,128.40,47.00,122.80,0.30,15.90,1216.00,195.10,509.50,372.50,139.00 +JAMMU & KASHMIR,1988,78.20,155.50,280.20,46.80,39.90,76.30,413.80,165.70,308.60,5.40,7.00,93.60,1670.90,233.60,366.90,964.40,106.00 +JAMMU & KASHMIR,1989,74.90,78.20,134.10,114.60,139.00,69.10,293.80,114.90,39.30,40.30,50.70,67.10,1216.00,153.10,387.70,517.10,158.10 +JAMMU & KASHMIR,1990,110.20,206.50,309.80,98.40,28.60,69.10,193.30,133.50,115.60,38.60,10.50,259.70,1574.00,316.70,436.90,511.50,308.90 +JAMMU & KASHMIR,1991,71.30,216.50,176.10,233.20,93.50,75.60,162.80,204.40,148.90,10.60,5.60,50.50,1448.80,287.80,502.70,591.60,66.70 +JAMMU & KASHMIR,1992,161.90,91.20,194.70,86.80,110.70,44.60,168.80,306.10,226.60,22.60,36.40,27.60,1478.10,253.20,392.20,746.10,86.60 +JAMMU & KASHMIR,1993,114.90,123.60,233.10,31.80,106.50,93.60,324.70,63.40,84.30,13.20,54.40,0.20,1243.80,238.50,371.40,566.00,67.80 +JAMMU & KASHMIR,1994,139.90,133.00,82.30,136.60,99.20,107.90,344.70,329.10,88.60,32.40,2.70,236.00,1732.50,273.00,318.10,870.30,271.10 +JAMMU & KASHMIR,1995,101.40,210.20,129.30,124.90,74.40,56.00,408.00,241.30,140.10,38.80,45.60,49.60,1619.60,311.60,328.50,845.40,134.10 +JAMMU & KASHMIR,1996,127.50,115.70,213.60,85.40,125.50,182.00,136.00,441.50,52.30,96.40,25.80,18.80,1620.40,243.20,424.40,811.80,141.00 +JAMMU & KASHMIR,1997,68.40,55.60,164.10,144.50,89.10,81.20,126.60,270.20,75.40,77.30,84.30,59.20,1295.90,124.00,397.70,553.40,220.80 +JAMMU & KASHMIR,1998,75.00,297.20,185.40,192.80,75.10,59.30,161.00,131.10,97.90,49.20,1.80,0.00,1325.90,372.20,453.30,449.30,51.10 +JAMMU & KASHMIR,1999,183.50,56.00,91.60,24.30,47.60,51.90,133.80,145.00,84.80,3.50,68.40,0.20,890.30,239.40,163.50,415.50,72.00 +JAMMU & KASHMIR,2000,159.50,106.60,90.40,30.40,51.10,95.50,193.70,123.60,73.20,1.40,21.00,38.20,984.60,266.20,171.90,485.90,60.60 +JAMMU & KASHMIR,2001,17.40,54.30,81.70,92.80,69.60,121.70,243.90,126.70,53.90,12.70,51.60,26.40,952.70,71.70,244.10,546.30,90.60 +JAMMU & KASHMIR,2002,58.70,101.20,105.50,86.30,33.00,94.20,78.70,217.40,97.90,15.20,0.70,14.60,903.50,159.90,224.80,488.30,30.50 +JAMMU & KASHMIR,2003,26.90,267.20,170.90,117.50,111.30,41.00,136.00,185.50,126.10,13.30,33.70,81.70,1311.10,294.20,399.70,488.50,128.80 +JAMMU & KASHMIR,2004,176.00,70.60,21.20,118.90,87.50,95.20,118.00,77.90,40.50,73.30,23.30,42.40,944.90,246.60,227.60,331.80,138.90 +JAMMU & KASHMIR,2005,296.00,403.50,189.70,64.90,92.00,41.60,440.30,77.70,50.00,14.60,21.80,0.50,1692.70,699.50,346.60,609.70,37.00 +JAMMU & KASHMIR,2006,200.30,92.30,96.80,34.40,43.80,74.30,209.00,331.50,203.00,46.20,72.50,115.80,1519.80,292.50,174.90,817.80,234.50 +JAMMU & KASHMIR,2007,12.30,116.70,259.30,15.00,65.60,143.90,132.40,196.80,33.00,1.60,0.00,47.00,1023.50,129.00,339.80,506.10,48.60 +JAMMU & KASHMIR,2008,153.50,130.80,9.90,97.70,63.30,134.90,266.30,166.00,44.70,42.40,25.20,89.80,1224.50,284.20,170.80,612.00,157.40 +JAMMU & KASHMIR,2009,120.30,117.90,63.70,113.50,64.30,64.10,NA,96.50,50.50,8.10,NA,NA,NA,238.20,241.50,NA,NA +JAMMU & KASHMIR,2010,30.90,142.20,34.90,63.90,128.30,67.40,137.30,253.20,65.00,25.00,13.60,36.10,997.90,173.20,227.10,522.90,74.70 +JAMMU & KASHMIR,2011,43.40,211.60,97.80,89.00,32.40,72.50,81.60,131.20,72.00,19.40,12.90,23.80,887.60,254.90,219.20,357.30,56.10 +JAMMU & KASHMIR,2012,150.90,95.80,45.20,86.60,48.90,32.60,118.80,264.90,106.70,15.70,10.80,57.80,1034.70,246.70,180.70,523.00,84.30 +JAMMU & KASHMIR,2013,52.20,136.40,41.90,47.40,47.40,80.50,125.10,219.10,41.20,34.40,13.40,20.30,859.30,188.60,136.70,465.80,68.10 +JAMMU & KASHMIR,2014,75.80,64.00,153.10,76.10,52.70,25.30,100.50,134.60,362.80,32.20,14.10,2.30,1093.40,139.80,281.90,623.20,48.50 +JAMMU & KASHMIR,2015,27.90,187.20,341.40,173.30,64.60,121.40,233.20,129.20,130.20,87.10,38.10,39.30,1572.80,215.10,579.30,614.00,164.50 +WEST RAJASTHAN,1901,6.70,0.00,1.10,0.00,6.10,3.00,79.00,59.20,1.00,2.10,0.00,0.60,158.90,6.70,7.20,142.20,2.70 +WEST RAJASTHAN,1902,0.00,0.00,0.00,0.50,4.00,49.10,27.00,71.30,41.80,1.80,0.00,0.00,195.60,0.00,4.50,189.20,1.80 +WEST RAJASTHAN,1903,1.70,1.30,5.50,0.00,4.20,2.70,154.80,87.10,49.30,0.10,0.00,0.50,307.00,3.00,9.70,293.80,0.50 +WEST RAJASTHAN,1904,3.80,2.90,16.30,0.70,11.40,14.60,39.80,45.60,21.40,1.40,2.90,7.10,167.90,6.60,28.50,121.40,11.40 +WEST RAJASTHAN,1905,6.30,4.80,0.70,1.30,0.30,4.90,30.10,0.60,64.50,0.00,0.00,0.90,114.40,11.00,2.40,100.10,0.90 +WEST RAJASTHAN,1906,0.10,39.10,7.80,0.00,0.20,19.90,53.70,58.60,87.10,0.70,0.00,2.40,269.50,39.10,8.00,219.30,3.10 +WEST RAJASTHAN,1907,0.60,24.50,6.30,7.30,6.80,12.80,52.20,242.50,0.20,0.10,0.00,0.00,353.20,25.00,20.30,307.70,0.10 +WEST RAJASTHAN,1908,8.50,0.20,0.00,3.80,6.60,28.40,208.90,265.80,56.80,2.00,1.00,0.00,581.90,8.60,10.40,559.90,3.00 +WEST RAJASTHAN,1909,1.90,6.50,0.00,23.70,2.30,29.20,158.20,73.90,114.50,0.60,0.00,15.40,426.20,8.40,25.90,375.80,16.00 +WEST RAJASTHAN,1910,2.20,0.20,0.00,3.60,0.30,67.30,50.50,156.60,12.20,0.50,0.00,0.00,293.20,2.30,3.90,286.50,0.50 +WEST RAJASTHAN,1911,2.80,0.30,37.30,1.90,0.10,26.00,3.20,14.80,44.50,5.90,2.10,0.00,138.80,3.10,39.20,88.50,8.00 +WEST RAJASTHAN,1912,16.30,0.00,0.10,2.20,2.90,19.70,119.70,96.80,13.40,5.00,3.70,0.00,279.90,16.30,5.30,249.60,8.70 +WEST RAJASTHAN,1913,0.10,8.50,2.70,0.50,26.80,53.40,52.00,58.20,31.10,0.10,0.60,14.10,248.30,8.60,30.00,194.70,14.90 +WEST RAJASTHAN,1914,2.60,1.80,0.10,8.40,3.00,51.60,125.30,54.10,48.30,4.00,3.10,0.00,302.30,4.40,11.50,279.30,7.20 +WEST RAJASTHAN,1915,7.00,19.70,15.40,0.10,0.60,16.30,25.80,19.00,12.30,31.10,0.00,0.00,147.20,26.70,16.00,73.40,31.10 +WEST RAJASTHAN,1916,1.50,0.30,0.20,1.70,16.40,21.20,66.10,191.50,102.80,20.00,0.00,0.00,421.70,1.80,18.40,381.60,20.00 +WEST RAJASTHAN,1917,1.30,1.20,1.10,12.20,56.80,73.90,97.10,243.40,203.00,78.30,0.00,0.50,768.80,2.50,70.20,617.30,78.90 +WEST RAJASTHAN,1918,0.40,0.00,2.70,0.50,0.70,5.60,5.10,40.80,5.90,0.20,0.20,0.10,62.30,0.40,4.00,57.40,0.50 +WEST RAJASTHAN,1919,13.70,1.60,0.70,5.40,7.20,1.10,95.70,151.90,21.30,0.00,4.40,2.00,305.00,15.30,13.30,270.00,6.40 +WEST RAJASTHAN,1920,2.70,1.50,0.90,1.50,49.20,60.30,94.70,37.20,0.60,0.00,0.00,0.00,248.70,4.20,51.60,192.80,0.00 +WEST RAJASTHAN,1921,0.10,0.00,0.00,0.00,0.00,4.30,119.20,46.70,46.60,0.60,0.10,0.40,218.00,0.10,0.00,216.80,1.10 +WEST RAJASTHAN,1922,0.40,0.60,0.00,0.80,4.60,18.10,90.80,33.90,91.70,1.50,0.00,2.50,244.80,1.00,5.40,234.50,4.00 +WEST RAJASTHAN,1923,3.30,4.90,0.70,0.40,9.60,7.80,118.90,118.30,4.70,0.40,0.00,4.40,273.40,8.20,10.70,249.80,4.80 +WEST RAJASTHAN,1924,4.40,2.20,0.10,0.50,8.60,11.50,86.00,68.80,103.60,0.90,0.30,10.10,297.10,6.60,9.30,270.00,11.30 +WEST RAJASTHAN,1925,0.00,0.00,0.00,0.00,8.20,62.60,71.70,20.00,4.50,0.80,1.80,0.00,169.70,0.00,8.20,158.80,2.60 +WEST RAJASTHAN,1926,5.40,0.30,19.40,0.80,21.40,4.00,95.60,179.40,113.60,0.00,0.00,0.30,440.20,5.70,41.60,392.60,0.30 +WEST RAJASTHAN,1927,0.00,7.70,0.00,0.10,5.40,12.40,135.70,124.80,23.70,4.10,0.40,18.20,332.50,7.70,5.50,296.60,22.70 +WEST RAJASTHAN,1928,0.40,0.80,1.00,2.00,2.10,10.20,79.90,140.40,16.80,14.70,3.30,0.50,272.00,1.20,5.20,247.30,18.50 +WEST RAJASTHAN,1929,2.30,0.00,0.00,1.80,12.20,11.10,163.50,103.80,3.90,0.30,0.00,4.40,303.30,2.30,14.00,282.30,4.70 +WEST RAJASTHAN,1930,2.50,1.20,0.70,1.80,16.70,47.10,100.30,45.20,8.10,6.30,0.10,0.00,230.10,3.70,19.20,200.70,6.40 +WEST RAJASTHAN,1931,0.10,1.10,1.30,0.00,12.10,10.20,73.50,270.70,9.30,16.80,0.00,0.20,395.40,1.20,13.40,363.70,17.00 +WEST RAJASTHAN,1932,0.70,0.20,6.30,1.80,4.40,10.80,118.60,115.50,6.20,0.00,0.00,0.60,265.30,0.90,12.50,251.20,0.60 +WEST RAJASTHAN,1933,0.00,7.60,4.00,13.00,15.30,46.40,46.10,211.30,31.90,0.50,0.10,0.00,376.40,7.70,32.30,335.80,0.60 +WEST RAJASTHAN,1934,0.80,0.00,8.20,0.20,1.60,60.70,46.80,185.30,16.40,0.00,0.00,2.40,322.40,0.80,10.00,309.20,2.40 +WEST RAJASTHAN,1935,9.20,2.70,2.50,8.40,0.80,4.10,137.40,38.20,47.20,4.50,0.70,1.00,256.60,11.90,11.60,227.00,6.20 +WEST RAJASTHAN,1936,0.10,4.60,1.80,0.30,0.40,56.60,33.30,119.00,37.70,0.00,9.60,2.00,265.50,4.70,2.40,246.70,11.60 +WEST RAJASTHAN,1937,0.00,25.50,0.70,1.90,1.20,17.50,171.80,1.10,60.40,0.70,0.00,11.60,292.50,25.50,3.90,250.90,12.30 +WEST RAJASTHAN,1938,2.10,0.50,0.00,0.60,4.30,52.60,75.50,45.10,1.60,1.10,0.00,0.10,183.50,2.60,4.90,174.80,1.20 +WEST RAJASTHAN,1939,0.30,25.00,7.80,0.20,0.30,22.30,15.90,53.50,12.10,0.00,0.00,0.00,137.40,25.30,8.30,103.80,0.00 +WEST RAJASTHAN,1940,18.10,8.50,6.80,1.20,2.20,34.50,55.70,160.40,2.90,1.40,0.70,0.00,292.40,26.60,10.20,253.50,2.10 +WEST RAJASTHAN,1941,8.70,0.50,1.20,0.00,10.20,21.90,74.00,86.30,18.60,0.40,0.00,2.80,224.80,9.20,11.50,200.90,3.20 +WEST RAJASTHAN,1942,3.60,12.20,0.00,3.70,16.40,19.40,124.30,80.50,75.20,0.30,0.00,3.30,338.90,15.90,20.20,299.30,3.50 +WEST RAJASTHAN,1943,1.50,0.00,0.10,2.00,1.00,20.80,195.20,22.30,52.30,0.00,0.00,0.30,295.60,1.50,3.10,290.70,0.30 +WEST RAJASTHAN,1944,14.20,5.70,9.70,11.20,0.90,15.10,137.00,325.30,4.70,1.10,0.00,0.10,525.10,19.80,21.80,482.20,1.30 +WEST RAJASTHAN,1945,18.30,0.00,0.60,6.10,15.00,40.90,174.50,73.00,35.10,0.40,0.00,0.00,364.00,18.30,21.80,323.50,0.50 +WEST RAJASTHAN,1946,0.00,1.10,0.00,0.00,3.00,45.50,41.70,117.00,10.10,1.00,0.00,3.60,223.10,1.10,3.00,214.30,4.70 +WEST RAJASTHAN,1947,2.50,1.50,0.20,0.00,0.70,0.60,18.30,140.50,82.40,5.70,0.00,0.80,253.20,4.00,0.90,241.70,6.50 +WEST RAJASTHAN,1948,21.40,15.40,6.70,0.10,0.80,6.00,111.30,57.50,11.90,1.20,0.30,0.90,233.50,36.80,7.60,186.70,2.40 +WEST RAJASTHAN,1949,1.80,2.90,0.00,0.10,3.60,20.50,123.10,42.80,28.50,1.20,0.00,0.20,224.80,4.70,3.80,214.80,1.40 +WEST RAJASTHAN,1950,1.40,0.30,1.70,0.00,1.90,6.60,131.50,64.80,70.10,0.00,0.00,0.00,278.30,1.70,3.60,273.00,0.00 +WEST RAJASTHAN,1951,0.10,0.00,6.40,5.10,16.40,20.20,33.60,83.30,0.80,0.20,13.80,0.00,179.80,0.10,27.90,137.90,13.90 +WEST RAJASTHAN,1952,0.00,3.70,0.50,0.40,2.00,20.60,156.90,81.60,0.80,0.20,0.30,0.20,267.10,3.70,2.90,259.90,0.60 +WEST RAJASTHAN,1953,5.90,0.00,0.00,0.80,6.50,15.70,70.90,180.50,23.60,0.10,0.00,0.30,304.40,5.90,7.30,290.70,0.50 +WEST RAJASTHAN,1954,1.60,13.40,0.60,0.00,0.80,16.20,97.00,35.60,82.30,2.00,1.00,0.00,250.40,15.00,1.40,231.10,3.00 +WEST RAJASTHAN,1955,2.40,2.10,3.30,0.90,8.70,22.60,7.70,230.60,91.70,21.00,0.00,0.30,391.30,4.60,12.90,352.50,21.30 +WEST RAJASTHAN,1956,3.10,0.20,6.10,1.00,0.10,20.60,208.00,76.40,12.10,45.10,0.00,1.40,374.20,3.30,7.30,317.10,46.50 +WEST RAJASTHAN,1957,19.70,0.00,5.10,0.20,15.30,28.90,78.30,104.70,5.40,2.30,5.90,1.50,267.10,19.70,20.50,217.20,9.60 +WEST RAJASTHAN,1958,2.20,0.00,0.30,0.40,3.20,15.50,69.20,25.00,123.60,4.50,14.70,5.50,264.10,2.20,3.80,233.30,24.70 +WEST RAJASTHAN,1959,0.70,2.80,0.80,5.00,8.70,15.10,119.20,77.30,94.60,6.10,5.10,0.00,335.30,3.50,14.50,306.10,11.20 +WEST RAJASTHAN,1960,0.20,0.00,3.00,0.20,1.60,25.10,102.30,76.10,3.20,0.00,0.00,6.10,217.80,0.20,4.90,206.70,6.10 +WEST RAJASTHAN,1961,5.20,12.50,0.20,5.60,6.50,102.80,72.20,66.50,123.90,2.00,1.10,1.80,400.30,17.70,12.20,365.50,4.90 +WEST RAJASTHAN,1962,0.80,0.20,7.80,2.30,2.10,3.30,126.50,62.10,55.00,0.00,0.20,2.10,262.50,1.00,12.30,247.00,2.30 +WEST RAJASTHAN,1963,0.10,0.60,5.70,1.50,3.30,6.30,23.30,96.40,27.00,4.90,5.10,0.30,174.50,0.70,10.50,153.00,10.30 +WEST RAJASTHAN,1964,0.60,0.30,0.50,0.40,13.70,25.40,138.90,140.50,16.40,0.10,0.00,0.60,337.30,0.90,14.60,321.20,0.70 +WEST RAJASTHAN,1965,3.60,1.30,3.20,2.70,7.10,6.00,128.00,52.00,7.80,3.40,0.10,0.00,215.30,4.90,13.00,193.90,3.50 +WEST RAJASTHAN,1966,0.10,11.40,1.50,0.10,11.70,34.90,51.30,91.50,48.30,1.80,0.30,0.00,252.90,11.50,13.20,226.00,2.20 +WEST RAJASTHAN,1967,0.00,0.00,59.00,2.10,2.00,25.20,63.10,96.00,64.20,3.30,3.70,21.70,340.30,0.00,63.20,248.50,28.70 +WEST RAJASTHAN,1968,2.90,6.20,2.90,0.00,7.00,0.40,96.80,24.50,0.60,0.70,0.00,0.00,142.20,9.10,9.90,122.40,0.70 +WEST RAJASTHAN,1969,1.00,1.20,1.10,1.00,2.70,3.00,48.80,43.50,15.50,1.00,0.10,0.00,119.00,2.20,4.80,110.80,1.10 +WEST RAJASTHAN,1970,4.50,18.40,2.30,0.20,3.90,32.90,63.00,162.80,67.50,0.20,0.00,0.00,355.70,22.90,6.40,326.20,0.20 +WEST RAJASTHAN,1971,3.40,0.40,0.20,1.10,23.90,69.90,83.70,46.40,20.50,2.20,0.00,0.00,251.50,3.80,25.10,220.40,2.20 +WEST RAJASTHAN,1972,1.10,0.80,0.00,2.40,1.40,35.00,39.10,102.40,2.20,0.50,0.60,0.40,185.90,1.90,3.80,178.70,1.50 +WEST RAJASTHAN,1973,0.60,0.40,0.00,0.00,10.90,15.80,64.80,311.30,48.80,0.40,0.00,1.80,454.80,0.90,10.90,440.80,2.20 +WEST RAJASTHAN,1974,0.00,0.00,0.00,1.00,23.00,21.20,87.10,18.50,6.00,6.70,0.00,0.80,164.30,0.00,24.00,132.80,7.50 +WEST RAJASTHAN,1975,1.10,0.30,0.80,0.10,2.70,56.80,184.60,145.60,135.20,26.20,0.00,0.50,553.80,1.30,3.60,522.20,26.70 +WEST RAJASTHAN,1976,4.20,4.70,0.40,2.00,10.20,39.70,93.60,163.70,93.40,0.10,13.10,0.00,425.20,9.00,12.60,390.40,13.30 +WEST RAJASTHAN,1977,8.10,0.60,0.10,4.90,11.70,91.40,146.40,51.10,73.60,0.20,0.70,0.40,389.40,8.70,16.70,362.60,1.40 +WEST RAJASTHAN,1978,0.10,11.60,4.40,5.30,0.00,32.60,215.40,74.20,23.40,1.40,10.50,0.70,379.70,11.70,9.70,345.60,12.60 +WEST RAJASTHAN,1979,2.90,25.50,1.70,0.70,31.60,19.00,118.60,71.90,16.70,10.60,7.50,1.70,308.20,28.40,34.00,226.10,19.70 +WEST RAJASTHAN,1980,0.40,0.10,5.40,0.40,6.20,39.60,129.70,22.90,14.60,3.80,2.00,13.20,238.40,0.50,12.10,206.80,19.00 +WEST RAJASTHAN,1981,5.30,2.60,7.30,0.00,9.20,15.30,108.90,40.50,22.60,0.20,34.80,1.80,248.50,7.90,16.60,187.30,36.80 +WEST RAJASTHAN,1982,11.30,4.00,12.30,27.70,41.30,17.70,77.00,100.60,7.70,7.30,3.50,1.40,311.80,15.40,81.30,202.90,12.20 +WEST RAJASTHAN,1983,2.80,0.80,2.10,36.10,37.30,33.40,183.80,111.40,51.60,10.00,0.00,0.00,469.30,3.60,75.50,380.10,10.10 +WEST RAJASTHAN,1984,0.10,2.80,0.10,1.10,0.00,8.70,50.40,85.30,54.50,0.10,0.20,0.00,203.20,2.80,1.20,198.90,0.20 +WEST RAJASTHAN,1985,0.30,0.00,0.60,8.90,10.90,12.30,97.60,55.20,4.20,4.20,0.30,2.80,197.40,0.40,20.40,169.30,7.30 +WEST RAJASTHAN,1986,0.50,10.40,2.40,0.30,26.00,20.50,95.10,44.90,3.50,0.50,0.00,0.10,204.20,10.90,28.70,164.00,0.60 +WEST RAJASTHAN,1987,6.70,0.50,5.70,0.90,34.80,36.70,22.90,29.30,1.80,0.60,0.00,3.10,143.00,7.20,41.50,90.70,3.60 +WEST RAJASTHAN,1988,0.80,0.50,6.90,3.20,0.60,32.10,112.60,73.10,46.80,3.70,0.00,0.10,280.40,1.30,10.60,264.70,3.80 +WEST RAJASTHAN,1989,8.60,0.00,1.30,1.00,0.20,25.80,81.00,109.10,20.30,0.20,0.20,0.50,248.10,8.60,2.40,236.20,0.90 +WEST RAJASTHAN,1990,0.00,25.20,0.20,1.40,17.70,19.60,164.40,169.20,42.90,2.50,1.10,0.80,445.00,25.20,19.20,396.10,4.40 +WEST RAJASTHAN,1991,0.20,4.00,0.00,13.60,7.00,19.30,60.60,55.50,17.10,0.10,0.10,1.60,179.00,4.20,20.70,152.40,1.80 +WEST RAJASTHAN,1992,9.60,7.40,1.30,0.70,5.50,8.10,126.20,117.20,143.40,5.40,0.90,0.10,425.80,17.00,7.50,394.90,6.40 +WEST RAJASTHAN,1993,2.20,3.30,2.00,3.00,5.90,48.60,172.10,6.80,47.90,1.50,0.20,0.00,293.50,5.40,10.90,275.40,1.70 +WEST RAJASTHAN,1994,10.70,0.30,0.40,9.90,2.70,31.90,188.50,100.60,70.40,0.00,0.00,0.00,415.50,11.00,13.00,391.40,0.00 +WEST RAJASTHAN,1995,8.20,8.00,2.20,3.00,1.30,18.80,194.80,101.60,16.30,13.60,0.00,0.00,367.90,16.30,6.60,331.50,13.60 +WEST RAJASTHAN,1996,2.20,3.20,2.50,2.30,22.00,143.20,47.60,64.20,16.90,3.70,0.00,0.00,307.90,5.40,26.80,271.90,3.80 +WEST RAJASTHAN,1997,1.10,0.20,5.50,10.60,20.30,65.90,56.40,103.90,20.60,51.50,3.60,5.60,345.10,1.30,36.40,246.70,60.70 +WEST RAJASTHAN,1998,0.00,8.70,4.50,5.60,0.90,51.10,55.00,32.50,63.00,58.20,0.10,0.00,279.60,8.70,11.00,201.60,58.30 +WEST RAJASTHAN,1999,6.40,3.10,0.20,0.00,39.30,23.80,55.90,61.50,6.50,7.60,0.00,0.00,204.30,9.50,39.60,147.60,7.60 +WEST RAJASTHAN,2000,0.50,0.50,0.30,3.10,4.30,8.20,171.60,39.60,5.70,1.10,0.50,0.00,235.30,1.00,7.70,225.10,1.50 +WEST RAJASTHAN,2001,0.50,1.10,0.10,9.50,23.80,48.60,122.90,68.70,2.80,7.30,0.00,0.00,285.30,1.50,33.40,243.10,7.30 +WEST RAJASTHAN,2002,0.30,2.60,1.00,1.40,11.20,26.90,2.40,17.20,20.60,0.10,2.50,6.00,92.40,3.00,13.70,67.20,8.60 +WEST RAJASTHAN,2003,2.50,21.20,0.80,0.40,1.80,45.20,188.40,93.60,13.90,0.20,0.00,0.10,368.10,23.70,3.00,341.10,0.30 +WEST RAJASTHAN,2004,2.40,0.00,0.00,4.80,6.00,33.50,26.90,94.30,8.60,18.70,0.00,1.60,196.70,2.40,10.80,163.30,20.30 +WEST RAJASTHAN,2005,1.40,14.20,8.70,6.30,14.50,29.20,86.10,24.30,75.80,0.00,0.10,0.00,260.80,15.60,29.60,215.40,0.10 +WEST RAJASTHAN,2006,0.00,0.00,16.90,3.40,8.30,36.90,52.70,203.60,31.30,5.30,0.40,2.50,361.30,0.00,28.60,324.40,8.30 +WEST RAJASTHAN,2007,0.00,34.90,22.00,2.30,3.80,41.20,90.50,69.40,45.60,0.00,0.10,0.90,310.80,35.00,28.10,246.70,1.00 +WEST RAJASTHAN,2008,1.60,0.20,0.80,18.20,24.70,56.10,57.10,133.30,23.00,0.40,0.40,8.30,324.10,1.80,43.60,269.50,9.10 +WEST RAJASTHAN,2009,2.90,2.80,5.30,1.60,7.60,26.10,79.10,27.10,7.50,0.30,0.10,0.10,160.40,5.70,14.50,139.80,0.50 +WEST RAJASTHAN,2010,1.90,1.70,0.60,0.60,3.00,49.50,129.90,163.40,96.50,0.90,20.10,5.20,473.20,3.60,4.10,439.20,26.20 +WEST RAJASTHAN,2011,0.00,11.80,1.50,1.50,7.80,24.40,88.50,166.80,116.30,0.10,0.00,0.00,418.70,11.80,10.70,396.10,0.10 +WEST RAJASTHAN,2012,0.50,0.00,0.00,9.50,10.40,5.30,40.40,166.70,92.00,1.90,0.00,0.60,327.30,0.50,19.90,304.30,2.50 +WEST RAJASTHAN,2013,8.60,21.80,4.20,3.10,1.70,37.60,104.50,138.20,58.70,10.10,1.00,0.00,389.40,30.40,8.90,339.00,11.10 +WEST RAJASTHAN,2014,0.80,2.20,4.70,8.40,23.00,13.80,94.30,69.60,84.90,0.50,0.20,0.00,302.40,3.00,36.00,262.60,0.70 +WEST RAJASTHAN,2015,1.40,0.90,30.30,25.20,15.50,53.20,234.60,60.50,35.70,1.10,0.10,0.00,458.40,2.30,71.00,384.00,1.20 +EAST RAJASTHAN,1901,21.60,8.90,2.90,0.70,5.00,15.00,164.80,175.60,7.50,9.80,0.00,0.80,412.50,30.50,8.50,362.90,10.60 +EAST RAJASTHAN,1902,4.10,0.70,0.00,1.80,9.90,34.60,247.60,116.70,145.60,14.40,0.00,2.80,578.30,4.80,11.70,544.50,17.20 +EAST RAJASTHAN,1903,1.90,0.70,1.30,0.10,12.90,15.60,238.20,229.10,168.50,17.80,0.00,0.00,686.10,2.70,14.20,651.40,17.80 +EAST RAJASTHAN,1904,4.30,5.50,21.70,0.20,27.50,49.90,289.70,223.50,50.20,1.50,5.80,14.70,694.50,9.80,49.40,613.30,22.00 +EAST RAJASTHAN,1905,4.10,8.80,3.20,1.60,2.00,14.40,130.50,30.90,83.80,0.00,0.00,0.60,279.80,12.80,6.80,259.60,0.60 +EAST RAJASTHAN,1906,0.20,23.10,6.20,0.00,1.60,61.90,262.50,95.50,191.40,1.90,0.00,3.00,647.40,23.40,7.80,611.30,4.90 +EAST RAJASTHAN,1907,6.30,35.70,7.00,14.30,12.70,18.50,134.10,319.80,3.30,0.00,0.00,0.00,551.80,42.00,34.00,475.70,0.00 +EAST RAJASTHAN,1908,13.90,0.80,1.60,0.40,6.20,42.60,395.20,349.00,58.70,0.20,1.40,0.10,870.20,14.70,8.30,845.60,1.70 +EAST RAJASTHAN,1909,4.90,1.40,0.00,43.20,5.20,115.30,299.40,207.40,82.50,1.70,0.00,20.80,781.60,6.20,48.30,704.60,22.40 +EAST RAJASTHAN,1910,7.90,1.10,0.00,1.90,1.20,124.60,114.00,250.20,134.20,48.20,2.00,0.00,685.30,9.00,3.20,622.90,50.20 +EAST RAJASTHAN,1911,13.60,0.50,18.30,0.70,0.10,69.30,42.60,73.80,173.60,6.40,21.20,0.20,420.40,14.10,19.20,359.30,27.80 +EAST RAJASTHAN,1912,9.70,5.20,1.70,2.70,5.50,30.80,304.70,237.60,48.50,2.00,5.10,1.80,655.40,14.90,10.00,621.60,9.00 +EAST RAJASTHAN,1913,0.00,9.50,0.80,0.10,46.00,111.60,160.70,107.00,44.00,1.50,0.40,16.60,498.30,9.50,46.90,423.30,18.50 +EAST RAJASTHAN,1914,0.00,0.90,0.90,2.00,5.80,88.30,325.30,125.60,107.80,11.30,8.60,0.00,676.60,0.90,8.70,647.00,20.00 +EAST RAJASTHAN,1915,19.00,30.20,33.20,2.30,5.00,33.70,70.00,108.80,29.50,69.10,0.00,0.80,401.80,49.20,40.60,242.00,69.90 +EAST RAJASTHAN,1916,0.00,3.20,0.00,0.30,10.00,87.60,159.40,435.80,122.30,24.70,1.90,0.00,845.30,3.20,10.30,805.10,26.60 +EAST RAJASTHAN,1917,3.60,8.80,4.10,11.00,90.90,149.20,265.40,383.50,333.90,99.80,0.00,0.30,1350.40,12.40,105.90,1132.00,100.10 +EAST RAJASTHAN,1918,4.00,0.00,2.40,0.70,2.60,28.30,49.60,163.30,19.00,0.10,3.50,0.10,273.60,4.00,5.60,260.20,3.70 +EAST RAJASTHAN,1919,29.20,0.00,0.70,5.30,14.10,31.40,265.00,356.40,53.00,0.30,23.20,8.30,787.00,29.30,20.20,705.80,31.80 +EAST RAJASTHAN,1920,8.60,3.70,2.80,0.50,45.80,150.50,295.40,78.30,10.80,0.10,0.00,0.00,596.70,12.30,49.20,535.00,0.10 +EAST RAJASTHAN,1921,18.30,0.00,0.00,0.20,0.00,22.30,178.90,153.20,173.10,1.00,0.00,0.70,547.80,18.30,0.20,527.60,1.60 +EAST RAJASTHAN,1922,6.00,0.40,0.00,0.30,9.00,83.90,242.20,144.30,169.30,0.80,1.60,12.10,669.90,6.30,9.40,639.70,14.50 +EAST RAJASTHAN,1923,2.00,8.50,3.70,0.60,12.80,9.40,325.30,262.70,52.80,1.20,0.40,10.60,690.10,10.50,17.20,650.20,12.20 +EAST RAJASTHAN,1924,13.60,5.80,0.00,0.10,5.20,33.40,271.80,262.80,262.20,40.40,3.70,25.40,924.40,19.50,5.30,830.20,69.40 +EAST RAJASTHAN,1925,0.10,0.00,0.00,0.10,14.70,163.20,209.30,56.20,16.90,3.70,19.50,0.00,483.70,0.10,14.80,445.70,23.20 +EAST RAJASTHAN,1926,6.10,1.10,28.70,2.50,18.60,13.90,216.10,342.60,202.30,0.20,0.00,0.20,832.40,7.30,49.80,774.90,0.40 +EAST RAJASTHAN,1927,0.00,9.40,0.50,1.90,5.70,19.00,272.90,283.70,69.90,7.70,26.00,29.30,725.80,9.40,8.00,645.40,63.00 +EAST RAJASTHAN,1928,2.90,16.40,0.60,0.10,2.20,23.40,236.70,187.10,37.90,84.20,10.40,6.40,608.30,19.30,2.90,485.20,100.90 +EAST RAJASTHAN,1929,3.60,1.50,0.00,4.00,6.90,50.90,270.80,194.00,34.40,0.60,0.00,9.10,576.00,5.10,10.90,550.30,9.70 +EAST RAJASTHAN,1930,16.70,1.00,0.20,0.40,22.20,72.70,296.90,158.70,40.40,51.90,0.10,0.00,661.30,17.70,22.80,568.80,52.10 +EAST RAJASTHAN,1931,0.40,2.20,2.20,0.10,9.80,11.50,224.50,401.40,60.40,60.50,0.30,1.10,774.20,2.50,12.10,697.80,61.90 +EAST RAJASTHAN,1932,0.30,0.60,14.00,5.40,3.90,21.70,219.00,187.10,88.90,2.30,0.00,0.60,543.80,0.90,23.30,516.70,2.80 +EAST RAJASTHAN,1933,0.30,5.80,1.50,22.30,30.10,209.10,170.70,284.90,185.60,13.40,12.30,1.90,937.80,6.10,54.00,850.20,27.60 +EAST RAJASTHAN,1934,4.50,0.00,13.30,0.30,0.20,118.30,136.10,420.40,105.00,0.00,2.00,8.70,808.90,4.50,13.80,779.80,10.70 +EAST RAJASTHAN,1935,14.80,5.80,0.70,10.50,1.30,34.20,299.40,119.70,170.10,16.50,1.10,10.70,684.80,20.60,12.50,623.40,28.30 +EAST RAJASTHAN,1936,1.70,4.90,13.80,0.30,3.80,133.60,115.50,140.00,107.10,0.00,18.40,3.10,542.10,6.50,17.90,496.20,21.50 +EAST RAJASTHAN,1937,0.00,12.20,0.50,1.00,7.80,98.70,365.40,60.50,113.60,3.30,0.60,6.80,670.50,12.20,9.40,638.20,10.70 +EAST RAJASTHAN,1938,6.20,0.00,0.10,0.10,5.50,140.30,213.50,117.50,10.90,9.00,0.00,0.00,503.10,6.20,5.70,482.30,9.00 +EAST RAJASTHAN,1939,1.60,12.70,9.30,0.00,0.10,62.00,108.30,112.70,92.90,1.10,0.00,0.00,400.70,14.30,9.40,375.90,1.10 +EAST RAJASTHAN,1940,26.00,16.90,15.90,2.10,5.70,61.30,189.50,290.70,33.70,2.50,8.30,0.40,652.80,42.90,23.60,575.10,11.20 +EAST RAJASTHAN,1941,11.70,9.00,2.00,0.00,10.10,39.90,110.20,247.60,70.80,1.10,0.00,3.30,505.90,20.70,12.20,468.60,4.40 +EAST RAJASTHAN,1942,15.90,9.90,0.00,2.10,8.00,61.30,399.50,320.80,120.70,0.00,0.00,1.10,939.30,25.80,10.20,902.30,1.10 +EAST RAJASTHAN,1943,7.40,0.10,0.00,4.80,6.60,52.60,400.20,111.10,133.60,0.10,0.00,0.10,716.60,7.40,11.50,697.50,0.20 +EAST RAJASTHAN,1944,20.10,6.90,24.40,7.90,1.70,75.50,309.90,411.90,31.70,14.50,0.90,1.50,906.90,27.00,34.00,829.10,16.90 +EAST RAJASTHAN,1945,15.50,0.00,0.10,6.80,11.20,125.90,346.00,215.10,138.00,3.20,0.00,0.00,861.60,15.50,18.00,824.90,3.20 +EAST RAJASTHAN,1946,0.00,10.30,0.00,1.40,7.80,124.60,184.30,429.80,84.50,8.70,12.70,23.50,887.70,10.30,9.30,823.20,44.90 +EAST RAJASTHAN,1947,6.60,2.50,0.60,0.50,0.80,14.20,118.30,284.10,272.00,10.30,0.10,4.90,714.80,9.10,1.90,688.50,15.20 +EAST RAJASTHAN,1948,39.20,11.90,1.90,0.30,0.90,29.70,221.20,243.00,94.90,12.20,8.30,0.00,663.60,51.10,3.10,588.90,20.60 +EAST RAJASTHAN,1949,1.10,0.90,0.10,0.20,5.20,32.50,279.80,81.00,101.00,5.90,1.50,0.00,509.20,2.00,5.50,494.30,7.40 +EAST RAJASTHAN,1950,0.90,0.20,3.40,0.00,6.40,13.30,318.80,174.70,221.50,0.00,0.00,0.70,740.10,1.10,9.90,728.40,0.70 +EAST RAJASTHAN,1951,1.90,0.00,6.20,2.80,8.00,51.80,97.80,156.30,18.80,0.70,18.60,0.00,362.90,2.00,17.00,324.60,19.30 +EAST RAJASTHAN,1952,0.70,3.30,0.90,2.10,0.30,109.20,360.40,224.10,7.50,0.20,0.00,3.90,712.70,4.00,3.40,701.20,4.20 +EAST RAJASTHAN,1953,32.30,0.00,0.00,1.40,2.30,59.80,164.30,272.20,50.30,2.20,0.00,1.00,585.90,32.30,3.80,546.60,3.30 +EAST RAJASTHAN,1954,3.90,19.60,4.80,0.00,0.10,42.50,253.40,77.60,240.10,23.60,0.40,0.00,665.90,23.50,4.90,613.50,24.00 +EAST RAJASTHAN,1955,9.50,3.60,0.70,0.00,3.40,100.30,61.10,358.60,233.00,74.30,0.00,0.10,844.60,13.10,4.10,752.90,74.50 +EAST RAJASTHAN,1956,6.00,0.60,9.80,0.20,1.70,35.10,440.60,215.40,51.50,161.90,0.80,5.30,928.80,6.50,11.70,742.60,168.00 +EAST RAJASTHAN,1957,26.50,0.10,13.40,0.60,3.70,63.40,243.60,222.40,71.20,12.60,1.60,3.20,662.20,26.60,17.70,600.60,17.40 +EAST RAJASTHAN,1958,3.90,0.70,0.80,0.50,1.40,46.20,288.80,153.90,224.80,14.50,6.10,1.10,742.70,4.60,2.70,713.70,21.70 +EAST RAJASTHAN,1959,6.00,0.10,0.20,3.80,34.80,36.80,252.30,248.90,152.60,43.00,7.50,0.30,786.20,6.10,38.90,690.50,50.80 +EAST RAJASTHAN,1960,1.80,0.00,7.00,1.20,5.30,63.10,152.10,332.00,20.20,7.40,0.00,1.50,591.60,1.80,13.50,567.30,8.90 +EAST RAJASTHAN,1961,11.90,7.00,0.00,0.60,5.00,39.20,227.80,225.70,337.20,23.00,6.00,0.90,884.20,18.90,5.60,829.80,29.90 +EAST RAJASTHAN,1962,1.10,1.50,3.60,2.10,2.90,5.10,262.40,176.00,139.90,0.00,1.70,7.80,604.10,2.60,8.60,583.40,9.50 +EAST RAJASTHAN,1963,0.40,1.40,1.00,2.70,2.00,33.20,130.30,283.90,97.30,6.90,17.60,0.90,577.70,1.90,5.70,544.70,25.40 +EAST RAJASTHAN,1964,0.00,0.00,0.00,0.10,30.60,42.00,211.10,289.60,71.70,0.10,0.00,1.00,646.30,0.00,30.70,614.50,1.20 +EAST RAJASTHAN,1965,4.60,4.20,1.90,3.10,3.30,7.00,201.70,106.90,83.40,7.80,0.00,0.00,423.80,8.80,8.30,399.00,7.80 +EAST RAJASTHAN,1966,0.10,2.60,0.00,0.00,12.70,74.80,141.70,156.20,81.30,0.60,3.10,0.20,473.40,2.80,12.80,454.00,3.90 +EAST RAJASTHAN,1967,0.00,0.00,57.40,1.40,2.60,87.30,157.30,250.90,163.10,1.10,1.30,37.70,759.90,0.00,61.30,658.50,40.10 +EAST RAJASTHAN,1968,8.60,1.50,6.60,0.10,4.20,5.20,296.20,181.30,10.70,4.90,0.00,0.20,519.60,10.10,11.00,493.40,5.10 +EAST RAJASTHAN,1969,3.50,1.10,1.70,1.90,4.90,16.70,226.40,258.50,117.20,0.10,2.10,0.00,634.10,4.60,8.50,618.80,2.20 +EAST RAJASTHAN,1970,6.70,25.30,1.70,0.10,5.80,91.70,146.30,318.90,117.30,4.60,0.00,0.00,718.40,32.00,7.60,674.20,4.60 +EAST RAJASTHAN,1971,2.80,0.70,0.10,1.20,33.00,171.30,288.90,155.00,117.20,13.60,0.60,0.00,784.40,3.50,34.30,732.40,14.20 +EAST RAJASTHAN,1972,0.40,4.40,0.00,1.10,0.80,72.40,86.70,259.90,21.90,3.30,3.30,0.10,454.30,4.80,2.00,440.90,6.60 +EAST RAJASTHAN,1973,3.30,3.20,0.60,0.10,12.80,36.10,260.20,380.90,242.40,6.70,0.00,1.90,948.20,6.50,13.50,919.50,8.60 +EAST RAJASTHAN,1974,0.00,0.00,0.40,0.20,18.10,30.60,297.80,165.40,19.20,77.00,0.00,3.20,611.80,0.00,18.70,512.90,80.20 +EAST RAJASTHAN,1975,1.20,0.50,1.40,0.20,2.30,87.10,271.00,317.60,173.90,42.60,0.10,0.00,897.90,1.70,3.90,849.60,42.70 +EAST RAJASTHAN,1976,8.70,6.40,0.10,1.40,12.20,90.80,201.20,318.00,126.20,0.20,50.20,0.00,815.30,15.10,13.70,736.10,50.40 +EAST RAJASTHAN,1977,10.80,2.30,0.10,6.40,18.90,112.70,394.90,223.10,115.10,1.10,1.90,0.20,887.50,13.10,25.30,845.80,3.20 +EAST RAJASTHAN,1978,0.30,10.30,4.10,2.50,0.00,83.40,302.90,249.50,55.90,4.70,8.00,5.60,727.10,10.50,6.60,691.70,18.30 +EAST RAJASTHAN,1979,6.60,25.80,2.80,0.90,16.50,47.60,206.50,129.70,14.70,3.30,58.10,2.70,515.10,32.40,20.10,398.50,64.10 +EAST RAJASTHAN,1980,0.70,0.50,3.60,0.10,1.70,141.20,203.00,150.50,28.00,1.00,0.80,16.30,547.50,1.20,5.40,522.70,18.10 +EAST RAJASTHAN,1981,4.40,0.80,4.70,0.20,7.70,57.70,299.40,141.80,64.60,8.70,23.80,1.50,615.30,5.20,12.60,563.50,34.00 +EAST RAJASTHAN,1982,16.70,4.40,7.10,16.60,32.00,28.60,178.10,294.30,19.40,10.70,48.40,4.00,660.20,21.00,55.80,520.40,63.10 +EAST RAJASTHAN,1983,3.60,1.60,0.10,29.40,31.90,72.40,256.50,240.00,127.90,31.80,0.00,0.10,795.30,5.20,61.30,696.70,32.00 +EAST RAJASTHAN,1984,1.20,0.30,0.00,0.30,0.30,32.50,147.90,272.00,108.80,0.10,0.00,0.00,563.30,1.50,0.50,561.10,0.10 +EAST RAJASTHAN,1985,0.90,0.10,0.60,3.90,6.00,21.00,176.80,245.00,37.50,87.60,0.20,8.50,588.10,1.00,10.50,480.30,96.40 +EAST RAJASTHAN,1986,3.70,21.30,1.10,0.60,24.40,54.30,312.60,146.60,18.70,6.60,0.00,0.10,590.10,25.10,26.10,532.20,6.70 +EAST RAJASTHAN,1987,11.20,4.60,1.50,0.10,20.90,44.20,57.10,226.20,27.90,19.00,0.00,23.20,435.70,15.80,22.40,355.40,42.10 +EAST RAJASTHAN,1988,1.90,1.40,6.40,4.30,2.20,96.40,229.80,204.30,82.30,10.30,0.10,0.70,640.10,3.30,12.90,612.80,11.10 +EAST RAJASTHAN,1989,6.80,0.10,2.20,0.10,0.40,52.50,130.60,283.70,33.10,0.00,0.50,0.50,510.50,6.90,2.70,500.00,1.00 +EAST RAJASTHAN,1990,0.00,27.50,1.00,0.70,18.90,75.40,229.00,253.30,162.30,6.10,5.10,0.80,780.10,27.50,20.60,720.00,11.90 +EAST RAJASTHAN,1991,0.20,2.50,0.40,11.00,3.00,18.10,274.60,214.40,43.10,0.30,5.20,5.90,578.60,2.70,14.40,550.10,11.40 +EAST RAJASTHAN,1992,7.10,2.30,2.90,0.50,10.40,18.00,244.90,260.20,125.80,42.20,8.50,0.70,723.60,9.40,13.80,649.00,51.40 +EAST RAJASTHAN,1993,0.20,8.80,4.00,4.00,4.50,98.50,262.80,92.10,113.90,5.90,0.40,0.10,595.20,9.00,12.50,567.30,6.40 +EAST RAJASTHAN,1994,23.30,0.90,0.50,7.10,4.50,116.60,319.30,259.80,106.80,0.00,0.40,0.00,839.20,24.10,12.10,802.50,0.40 +EAST RAJASTHAN,1995,29.80,2.90,7.00,0.70,0.80,22.60,275.40,310.80,92.40,6.50,0.00,5.30,754.30,32.70,8.50,701.30,11.80 +EAST RAJASTHAN,1996,3.80,5.20,1.40,3.00,8.50,118.20,202.60,256.00,103.40,13.20,0.30,0.00,715.70,9.00,12.90,680.20,13.50 +EAST RAJASTHAN,1997,0.80,0.20,1.70,10.20,14.20,52.10,143.20,196.60,78.70,45.80,11.80,18.50,573.90,1.00,26.10,470.60,76.10 +EAST RAJASTHAN,1998,0.00,1.80,3.70,3.40,2.20,46.40,145.90,118.10,114.80,36.70,2.70,0.00,475.80,1.80,9.30,425.20,39.50 +EAST RAJASTHAN,1999,1.60,4.90,0.10,0.10,6.30,53.40,190.50,70.90,65.10,15.50,0.00,0.10,408.40,6.50,6.40,379.90,15.60 +EAST RAJASTHAN,2000,0.30,0.60,0.40,2.30,21.00,20.20,270.60,95.50,28.70,0.40,0.00,0.10,440.00,0.80,23.70,415.00,0.50 +EAST RAJASTHAN,2001,0.90,0.10,0.30,6.40,22.90,100.20,271.40,126.40,7.70,9.20,0.00,5.80,551.20,1.00,29.50,505.70,15.00 +EAST RAJASTHAN,2002,1.60,11.00,0.10,1.20,8.60,71.40,13.50,130.60,41.20,0.80,0.80,4.50,285.30,12.60,9.80,256.80,6.00 +EAST RAJASTHAN,2003,4.10,21.40,0.50,0.20,3.50,76.60,245.80,178.50,93.60,0.10,0.00,2.30,626.60,25.40,4.20,594.40,2.50 +EAST RAJASTHAN,2004,2.50,0.00,0.00,2.20,9.30,52.80,105.80,380.90,24.70,27.50,0.40,0.10,606.20,2.50,11.50,564.20,28.00 +EAST RAJASTHAN,2005,0.40,3.60,5.70,6.20,4.80,55.60,239.00,80.00,172.50,0.00,0.00,0.00,567.90,4.10,16.70,547.10,0.00 +EAST RAJASTHAN,2006,0.00,0.00,11.90,0.40,13.10,73.80,215.90,341.50,88.90,2.40,0.10,0.50,748.40,0.00,25.40,720.00,3.00 +EAST RAJASTHAN,2007,0.70,16.80,10.60,1.50,5.50,63.00,223.00,167.90,86.10,0.00,0.00,0.50,575.70,17.50,17.60,540.10,0.50 +EAST RAJASTHAN,2008,0.10,0.00,0.50,9.00,22.10,160.60,166.10,167.90,112.70,3.00,2.40,0.10,644.60,0.10,31.60,607.30,5.50 +EAST RAJASTHAN,2009,0.50,0.20,2.40,0.20,5.70,38.90,189.10,113.30,45.50,10.90,7.00,0.50,414.10,0.70,8.40,386.70,18.40 +EAST RAJASTHAN,2010,1.90,2.40,0.50,0.40,0.70,27.30,196.20,275.90,128.90,0.80,49.50,5.00,689.40,4.30,1.60,628.30,55.20 +EAST RAJASTHAN,2011,0.00,11.20,0.20,0.50,5.10,140.90,193.60,284.10,166.40,0.00,0.00,0.00,802.10,11.20,5.90,784.90,0.00 +EAST RAJASTHAN,2012,1.90,0.00,0.00,3.60,9.50,11.20,170.50,365.00,131.30,0.50,0.00,0.10,693.60,1.90,13.10,678.00,0.60 +EAST RAJASTHAN,2013,1.40,21.70,0.40,3.20,1.00,90.60,319.00,278.50,88.00,30.60,1.30,0.30,836.10,23.10,4.60,776.10,32.20 +EAST RAJASTHAN,2014,28.40,10.00,6.40,7.30,8.40,23.50,197.10,261.00,136.90,3.20,0.00,1.10,683.30,38.40,22.10,618.40,4.40 +EAST RAJASTHAN,2015,12.10,0.10,55.90,15.90,3.50,96.40,297.60,142.80,20.10,5.00,0.50,0.80,650.70,12.10,75.30,557.00,6.30 +WEST MADHYA PRADESH,1901,25.80,5.80,5.80,2.80,2.10,41.20,228.90,349.90,47.90,5.60,0.00,2.40,718.20,31.60,10.70,667.90,7.90 +WEST MADHYA PRADESH,1902,22.10,8.40,0.00,2.00,5.90,35.90,401.90,179.40,194.10,37.90,10.00,14.20,911.70,30.50,8.00,811.20,62.00 +WEST MADHYA PRADESH,1903,5.30,0.00,0.00,0.00,22.30,50.60,304.90,261.10,250.20,55.10,0.00,0.00,949.60,5.30,22.30,866.80,55.10 +WEST MADHYA PRADESH,1904,3.20,15.50,14.80,0.00,12.00,96.60,273.00,218.60,125.90,3.30,1.80,9.60,774.40,18.70,26.90,714.10,14.70 +WEST MADHYA PRADESH,1905,3.50,4.40,1.10,0.80,3.00,36.10,326.30,137.60,183.50,0.30,0.00,0.00,696.50,7.90,4.90,683.50,0.30 +WEST MADHYA PRADESH,1906,0.00,11.00,6.80,0.00,0.50,180.00,344.50,198.60,266.20,1.50,0.20,0.90,1010.20,11.00,7.30,989.30,2.60 +WEST MADHYA PRADESH,1907,5.20,25.10,0.60,12.30,2.80,48.70,202.20,328.50,17.30,0.00,7.80,0.00,650.40,30.30,15.70,596.60,7.80 +WEST MADHYA PRADESH,1908,12.10,0.60,10.10,1.50,1.90,104.50,368.80,281.90,48.50,0.50,0.40,1.80,832.60,12.70,13.60,803.60,2.70 +WEST MADHYA PRADESH,1909,3.50,2.10,0.40,24.80,9.80,150.00,246.20,257.90,106.80,0.90,0.00,27.90,830.20,5.60,35.00,760.80,28.80 +WEST MADHYA PRADESH,1910,1.50,0.00,0.30,0.30,0.70,171.00,183.50,273.90,244.10,50.30,33.80,0.00,959.50,1.50,1.30,872.60,84.10 +WEST MADHYA PRADESH,1911,16.20,0.50,3.50,0.00,0.80,112.20,111.10,154.20,222.30,11.80,43.70,0.00,676.50,16.70,4.30,599.90,55.60 +WEST MADHYA PRADESH,1912,2.10,8.40,0.10,0.40,2.20,48.00,322.30,264.40,94.80,2.00,60.60,1.90,807.30,10.50,2.70,729.60,64.50 +WEST MADHYA PRADESH,1913,0.00,7.60,3.00,0.00,28.20,168.70,290.00,220.40,58.50,0.40,0.30,13.40,790.50,7.60,31.20,737.70,14.10 +WEST MADHYA PRADESH,1914,0.00,2.60,7.40,4.10,13.40,127.70,352.60,155.20,154.70,6.30,10.70,1.70,836.30,2.60,24.90,790.20,18.70 +WEST MADHYA PRADESH,1915,9.50,24.50,34.30,5.40,6.60,124.20,179.00,215.20,90.10,75.50,3.80,4.60,772.70,34.00,46.30,608.50,83.90 +WEST MADHYA PRADESH,1916,0.00,8.60,0.00,0.20,17.70,220.00,242.50,474.40,153.40,76.80,25.50,0.00,1219.20,8.60,17.90,1090.40,102.30 +WEST MADHYA PRADESH,1917,8.30,23.10,4.50,1.90,62.70,184.30,316.60,338.00,275.40,94.40,0.00,0.10,1309.30,31.40,69.10,1114.30,94.50 +WEST MADHYA PRADESH,1918,0.30,1.50,2.00,0.10,10.20,100.50,124.20,202.90,50.60,0.50,14.20,2.50,509.40,1.80,12.20,478.10,17.20 +WEST MADHYA PRADESH,1919,43.80,1.70,0.40,4.20,10.90,163.90,330.20,545.10,69.90,39.00,22.00,1.80,1232.80,45.50,15.50,1109.10,62.70 +WEST MADHYA PRADESH,1920,54.10,1.00,2.10,0.20,23.40,120.10,303.30,146.40,64.20,0.00,0.00,0.00,714.80,55.10,25.70,634.00,0.00 +WEST MADHYA PRADESH,1921,28.60,0.30,0.00,0.00,0.00,136.80,187.30,215.30,238.90,1.30,0.00,0.00,808.70,29.00,0.00,778.30,1.30 +WEST MADHYA PRADESH,1922,31.50,3.50,0.00,0.00,6.70,130.70,311.70,147.70,243.40,1.70,32.70,8.50,918.20,35.00,6.80,833.50,42.90 +WEST MADHYA PRADESH,1923,0.90,2.70,8.40,2.60,3.50,12.10,561.60,296.20,173.60,0.70,1.20,7.60,1071.00,3.70,14.40,1043.40,9.50 +WEST MADHYA PRADESH,1924,11.90,3.40,0.50,0.60,2.00,34.30,346.50,335.60,208.40,68.20,0.20,19.50,1031.30,15.40,3.20,924.90,87.90 +WEST MADHYA PRADESH,1925,0.00,0.00,0.00,0.00,34.90,165.70,260.10,146.60,37.80,1.20,45.50,1.60,693.50,0.00,34.90,610.20,48.30 +WEST MADHYA PRADESH,1926,16.00,0.80,8.80,2.50,8.50,21.90,268.30,429.00,143.50,12.80,0.20,1.50,913.80,16.80,19.80,862.80,14.50 +WEST MADHYA PRADESH,1927,0.00,1.70,6.50,0.50,1.60,78.30,334.20,217.70,74.10,36.80,101.20,20.20,872.90,1.70,8.60,704.40,158.20 +WEST MADHYA PRADESH,1928,0.40,31.90,2.80,0.00,2.50,75.60,395.00,217.60,49.50,66.90,1.60,51.90,895.60,32.30,5.30,737.70,120.30 +WEST MADHYA PRADESH,1929,6.30,8.80,0.10,4.80,0.70,108.50,288.00,215.50,88.80,1.60,0.00,5.50,728.70,15.10,5.60,700.80,7.10 +WEST MADHYA PRADESH,1930,3.00,0.30,0.00,2.20,5.10,96.40,392.80,183.50,167.10,36.90,0.60,0.30,888.20,3.30,7.30,839.80,37.80 +WEST MADHYA PRADESH,1931,2.20,1.40,0.40,0.10,1.50,48.20,281.60,424.10,226.00,132.10,10.40,3.70,1131.60,3.50,2.00,979.90,146.20 +WEST MADHYA PRADESH,1932,0.00,2.90,12.70,2.60,1.80,57.00,467.00,128.30,289.80,24.80,1.40,0.00,988.30,2.90,17.10,942.10,26.20 +WEST MADHYA PRADESH,1933,0.20,5.00,2.10,11.70,36.70,196.50,276.90,351.80,288.10,22.70,11.40,8.50,1211.60,5.20,50.50,1113.30,42.70 +WEST MADHYA PRADESH,1934,7.00,0.00,6.00,0.80,0.10,124.70,237.60,415.70,340.50,2.90,24.80,4.80,1164.90,7.00,6.90,1118.50,32.60 +WEST MADHYA PRADESH,1935,5.30,2.90,0.00,7.80,0.70,94.30,361.20,157.50,213.60,17.80,0.60,9.50,871.10,8.20,8.40,826.60,27.90 +WEST MADHYA PRADESH,1936,2.60,6.00,17.50,2.50,11.20,192.20,152.80,211.60,198.40,0.60,104.10,1.60,901.20,8.70,31.20,755.00,106.30 +WEST MADHYA PRADESH,1937,1.00,12.10,6.10,8.10,3.60,177.60,442.00,163.90,201.90,30.00,1.00,6.20,1053.40,13.10,17.80,985.40,37.20 +WEST MADHYA PRADESH,1938,8.70,0.00,1.50,0.80,24.50,306.30,345.50,206.10,38.60,69.00,0.00,0.00,1001.20,8.70,26.80,896.50,69.10 +WEST MADHYA PRADESH,1939,6.20,0.90,8.20,0.20,0.30,64.10,284.80,312.40,119.60,3.90,1.40,0.60,802.50,7.10,8.80,780.80,5.80 +WEST MADHYA PRADESH,1940,10.40,4.50,6.10,1.80,10.80,157.60,393.90,347.70,63.90,40.80,23.60,3.80,1064.70,14.90,18.70,963.10,68.10 +WEST MADHYA PRADESH,1941,19.20,19.90,5.50,0.70,2.10,52.70,195.60,349.80,93.00,0.90,0.00,0.00,739.40,39.10,8.30,691.10,0.90 +WEST MADHYA PRADESH,1942,28.20,28.30,0.70,1.50,1.20,122.70,558.00,286.00,163.50,0.10,0.00,11.50,1201.70,56.50,3.50,1130.10,11.60 +WEST MADHYA PRADESH,1943,25.10,0.00,0.00,3.50,25.20,122.30,359.80,179.10,187.20,60.50,0.10,0.00,962.90,25.10,28.70,848.40,60.60 +WEST MADHYA PRADESH,1944,15.80,14.80,34.10,2.60,0.80,87.90,500.60,519.50,118.70,49.20,1.10,2.60,1347.70,30.70,37.50,1226.80,52.80 +WEST MADHYA PRADESH,1945,22.20,0.00,0.00,3.60,3.20,190.30,377.40,235.90,211.10,3.60,0.00,0.00,1047.40,22.20,6.90,1014.70,3.60 +WEST MADHYA PRADESH,1946,0.00,10.90,0.10,3.00,3.20,256.80,341.40,387.50,100.40,5.90,117.90,23.60,1250.70,10.90,6.30,1086.10,147.50 +WEST MADHYA PRADESH,1947,18.30,3.90,2.30,3.80,1.90,48.10,319.50,350.50,282.20,14.00,3.50,16.70,1064.70,22.30,7.90,1000.20,34.20 +WEST MADHYA PRADESH,1948,36.60,6.70,0.70,0.90,0.70,145.00,382.50,369.70,225.80,17.80,61.10,0.20,1247.60,43.30,2.30,1122.90,79.10 +WEST MADHYA PRADESH,1949,0.00,3.40,0.40,0.30,19.70,90.30,326.90,137.20,334.70,50.80,2.40,0.00,966.20,3.40,20.40,889.10,53.20 +WEST MADHYA PRADESH,1950,2.40,2.00,15.00,0.30,5.80,34.80,411.30,182.60,230.40,2.90,0.00,16.90,904.50,4.40,21.20,859.20,19.80 +WEST MADHYA PRADESH,1951,5.30,0.40,6.00,0.50,3.50,88.00,231.70,205.50,85.50,18.90,4.40,0.00,649.70,5.70,10.00,610.70,23.20 +WEST MADHYA PRADESH,1952,0.70,8.90,1.70,1.70,0.80,163.60,367.70,239.40,35.80,1.40,0.00,7.60,829.10,9.50,4.20,806.40,9.00 +WEST MADHYA PRADESH,1953,19.10,0.00,0.00,2.00,1.10,72.60,273.00,304.20,107.10,14.50,0.00,0.10,793.70,19.10,3.10,756.90,14.60 +WEST MADHYA PRADESH,1954,12.30,11.90,5.40,0.10,1.00,70.60,318.70,183.20,480.10,16.90,0.30,0.00,1100.70,24.20,6.60,1052.60,17.30 +WEST MADHYA PRADESH,1955,26.80,2.20,0.60,1.50,1.50,188.80,97.70,441.10,249.50,139.50,0.00,0.00,1149.20,29.00,3.60,977.10,139.50 +WEST MADHYA PRADESH,1956,10.90,0.80,3.50,0.40,49.10,112.10,411.40,235.50,127.80,95.80,12.80,5.70,1065.80,11.70,53.00,886.80,114.30 +WEST MADHYA PRADESH,1957,12.50,0.10,30.40,5.60,4.00,89.30,223.20,339.90,112.70,12.50,1.20,1.60,832.90,12.60,40.00,765.00,15.20 +WEST MADHYA PRADESH,1958,3.20,1.30,1.40,3.20,0.90,82.50,383.60,284.00,271.10,57.70,10.10,0.70,1099.70,4.50,5.60,1021.20,68.50 +WEST MADHYA PRADESH,1959,23.00,0.10,0.20,4.00,22.00,78.90,395.50,325.80,254.30,70.70,7.00,0.00,1181.40,23.10,26.10,1054.50,77.80 +WEST MADHYA PRADESH,1960,25.20,0.00,12.40,1.40,6.60,132.50,203.20,392.90,53.60,53.20,0.00,1.50,882.30,25.20,20.30,782.10,54.60 +WEST MADHYA PRADESH,1961,22.00,1.80,0.50,0.70,6.90,74.00,311.30,318.80,559.40,128.50,8.30,1.30,1433.70,23.90,8.20,1263.50,138.20 +WEST MADHYA PRADESH,1962,6.70,4.90,7.80,8.40,4.10,16.40,308.70,207.00,313.30,0.10,8.20,20.30,905.90,11.60,20.30,845.50,28.60 +WEST MADHYA PRADESH,1963,6.10,5.50,2.50,3.00,3.90,71.00,235.20,363.10,155.40,26.80,30.60,2.20,905.40,11.60,9.40,824.80,59.50 +WEST MADHYA PRADESH,1964,0.00,0.00,2.20,0.00,7.70,111.70,278.80,312.20,163.30,2.80,0.00,1.20,880.10,0.10,10.00,866.00,4.10 +WEST MADHYA PRADESH,1965,4.80,0.70,1.60,2.00,0.60,31.10,270.80,142.50,124.00,5.90,1.00,9.60,594.70,5.50,4.20,568.50,16.50 +WEST MADHYA PRADESH,1966,4.00,0.90,2.20,0.10,2.80,69.20,267.70,200.60,104.00,0.60,23.80,4.10,680.00,4.90,5.10,641.50,28.50 +WEST MADHYA PRADESH,1967,0.00,0.00,31.90,2.50,0.90,125.90,223.50,253.80,222.20,2.30,0.10,82.50,945.60,0.00,35.30,825.40,84.90 +WEST MADHYA PRADESH,1968,9.20,2.00,9.70,1.20,0.20,34.40,404.10,291.90,94.10,14.10,0.00,0.40,861.20,11.20,11.10,824.40,14.50 +WEST MADHYA PRADESH,1969,5.70,0.30,0.00,0.20,0.80,47.90,393.40,395.90,226.50,0.00,45.80,0.30,1117.00,6.10,1.10,1063.70,46.10 +WEST MADHYA PRADESH,1970,19.90,12.10,8.30,0.50,12.20,254.40,186.50,346.60,265.80,6.80,0.00,0.00,1113.20,32.00,21.00,1053.40,6.80 +WEST MADHYA PRADESH,1971,5.40,2.00,1.20,2.80,17.70,183.90,446.90,220.30,209.60,45.60,0.20,0.00,1135.70,7.30,21.80,1060.80,45.80 +WEST MADHYA PRADESH,1972,0.10,3.70,0.10,0.10,1.90,92.00,161.50,421.30,74.40,3.90,10.10,1.10,770.30,3.80,2.10,749.30,15.10 +WEST MADHYA PRADESH,1973,0.10,5.20,0.00,0.30,2.60,74.00,553.10,478.80,256.60,26.20,0.20,9.80,1406.90,5.30,2.90,1362.50,36.20 +WEST MADHYA PRADESH,1974,0.20,0.60,0.30,0.70,14.60,40.80,289.50,372.90,65.30,89.00,0.80,1.90,876.60,0.80,15.70,768.50,91.60 +WEST MADHYA PRADESH,1975,1.20,3.40,0.60,0.20,3.40,136.20,265.40,357.70,245.30,51.00,0.00,0.30,1064.60,4.60,4.20,1004.60,51.20 +WEST MADHYA PRADESH,1976,7.30,0.70,3.40,3.80,8.40,158.90,261.30,350.50,183.30,1.20,46.80,2.00,1027.70,8.00,15.60,954.00,50.10 +WEST MADHYA PRADESH,1977,2.50,5.30,4.90,3.00,10.30,157.30,265.30,316.10,188.80,12.50,35.20,1.60,1002.70,7.80,18.20,927.40,49.40 +WEST MADHYA PRADESH,1978,3.50,15.70,5.50,4.00,0.00,138.00,318.70,409.30,61.80,7.30,21.90,17.50,1003.30,19.30,9.50,927.80,46.80 +WEST MADHYA PRADESH,1979,21.30,35.20,8.50,0.20,9.30,110.10,195.70,260.00,34.90,6.10,97.70,2.80,781.90,56.50,18.10,600.70,106.60 +WEST MADHYA PRADESH,1980,0.40,0.70,0.50,0.20,0.90,254.40,186.80,345.70,50.30,3.40,1.80,28.90,873.90,1.10,1.60,837.20,34.00 +WEST MADHYA PRADESH,1981,4.30,0.40,10.10,0.10,10.70,118.10,268.70,297.20,122.50,20.60,19.10,18.40,890.20,4.70,20.90,806.30,58.20 +WEST MADHYA PRADESH,1982,44.80,4.70,3.20,2.70,8.30,61.50,247.20,386.70,89.30,23.30,60.00,2.40,934.10,49.60,14.10,784.70,85.60 +WEST MADHYA PRADESH,1983,4.80,0.60,0.10,13.70,13.90,88.30,238.20,364.40,291.50,55.20,0.00,1.10,1071.90,5.40,27.70,982.50,56.30 +WEST MADHYA PRADESH,1984,15.20,6.10,0.00,0.10,0.00,63.50,165.30,536.00,60.30,12.50,0.00,0.50,859.50,21.30,0.10,825.20,13.00 +WEST MADHYA PRADESH,1985,2.10,0.00,0.20,4.50,4.20,55.40,211.70,294.40,144.40,157.80,0.00,0.00,874.70,2.10,8.90,705.90,157.80 +WEST MADHYA PRADESH,1986,9.50,40.50,2.50,0.20,5.30,129.80,470.60,237.50,33.40,6.50,0.10,1.20,937.10,50.00,8.00,871.30,7.80 +WEST MADHYA PRADESH,1987,25.70,13.20,0.60,0.00,7.10,74.30,144.20,362.70,77.70,55.10,8.10,15.30,783.90,38.90,7.70,658.90,78.50 +WEST MADHYA PRADESH,1988,3.50,0.60,2.20,5.10,4.70,136.00,313.60,278.90,146.50,59.50,0.40,0.10,951.20,4.10,12.00,875.00,60.10 +WEST MADHYA PRADESH,1989,2.30,0.20,9.40,0.20,2.90,129.80,150.50,369.50,88.20,0.60,0.00,4.80,758.50,2.50,12.50,738.10,5.40 +WEST MADHYA PRADESH,1990,0.70,9.30,1.30,1.00,29.40,161.20,265.00,384.20,258.30,23.20,2.80,7.60,1144.00,10.00,31.80,1068.70,33.60 +WEST MADHYA PRADESH,1991,0.10,3.60,1.30,3.30,1.30,96.40,344.70,262.20,25.10,0.00,3.80,3.60,745.50,3.70,5.90,728.50,7.40 +WEST MADHYA PRADESH,1992,0.10,0.20,0.10,0.10,5.80,51.00,211.80,314.40,105.90,62.70,2.20,0.00,754.20,0.20,6.00,683.10,64.90 +WEST MADHYA PRADESH,1993,0.00,5.00,7.20,0.60,2.90,113.50,337.70,236.90,300.50,22.10,1.30,4.10,1031.90,5.00,10.70,988.70,27.50 +WEST MADHYA PRADESH,1994,14.70,5.40,0.20,5.50,1.30,221.10,352.90,385.80,187.20,2.60,2.90,0.00,1179.50,20.10,6.90,1147.00,5.50 +WEST MADHYA PRADESH,1995,14.70,0.80,15.60,1.40,1.30,67.20,320.20,252.10,163.60,19.60,0.00,8.10,864.70,15.50,18.30,803.10,27.70 +WEST MADHYA PRADESH,1996,10.30,4.70,2.20,0.40,1.40,48.60,438.50,366.30,154.70,57.30,1.10,0.00,1085.40,15.00,4.00,1008.00,58.40 +WEST MADHYA PRADESH,1997,3.00,0.00,0.70,4.00,1.70,89.70,345.90,334.80,97.20,36.10,51.40,93.90,1058.30,3.00,6.40,867.60,181.40 +WEST MADHYA PRADESH,1998,2.50,0.60,8.90,1.90,0.60,92.90,279.00,208.40,286.60,39.10,6.40,0.00,926.90,3.10,11.30,867.00,45.50 +WEST MADHYA PRADESH,1999,0.90,31.00,0.00,0.00,4.50,127.00,284.00,188.00,330.80,86.20,0.30,0.00,1052.70,32.00,4.50,929.80,86.50 +WEST MADHYA PRADESH,2000,0.10,NA,0.10,0.10,30.10,93.40,320.50,136.20,31.60,1.20,0.00,0.20,NA,NA,30.30,581.70,1.40 +WEST MADHYA PRADESH,2001,2.10,0.00,1.10,6.00,16.40,203.60,269.20,198.90,27.50,62.20,0.00,0.00,787.00,2.20,23.50,699.10,62.20 +WEST MADHYA PRADESH,2002,0.40,19.70,1.50,1.70,3.90,138.90,46.90,317.70,141.00,5.90,5.90,0.80,684.10,20.10,7.10,644.40,12.60 +WEST MADHYA PRADESH,2003,1.10,21.10,0.10,1.00,0.30,128.70,307.50,228.00,254.90,0.90,0.20,2.50,946.40,22.20,1.40,919.20,3.60 +WEST MADHYA PRADESH,2004,16.80,0.00,0.00,0.40,4.80,83.70,218.00,421.90,55.70,43.70,2.20,0.80,848.10,16.80,5.30,779.20,46.70 +WEST MADHYA PRADESH,2005,13.70,3.10,12.30,6.10,1.90,81.20,345.70,130.50,155.10,1.30,0.00,1.40,752.20,16.80,20.30,712.40,2.70 +WEST MADHYA PRADESH,2006,0.00,0.00,44.30,3.30,22.80,74.50,299.00,501.90,198.10,13.70,8.60,3.00,1169.20,0.00,70.40,1073.50,25.20 +WEST MADHYA PRADESH,2007,1.70,11.50,2.60,0.60,14.60,99.90,305.60,220.60,138.30,0.00,10.50,0.60,806.50,13.30,17.80,764.30,11.10 +WEST MADHYA PRADESH,2008,0.40,0.00,2.50,2.50,3.80,194.20,221.80,205.80,139.70,12.90,7.50,0.00,791.10,0.40,8.80,761.50,20.50 +WEST MADHYA PRADESH,2009,5.50,0.00,0.10,1.30,6.50,56.80,320.30,172.70,139.60,89.90,65.10,19.10,877.00,5.50,7.90,689.40,174.10 +WEST MADHYA PRADESH,2010,2.20,5.40,0.80,0.10,0.40,62.20,258.50,291.50,136.10,13.60,4.60,0.80,776.30,7.60,1.40,748.30,19.00 +WEST MADHYA PRADESH,2011,0.00,1.70,0.10,1.80,3.60,241.50,306.70,343.30,165.00,0.20,0.00,0.00,1063.90,1.70,5.50,1056.50,0.20 +WEST MADHYA PRADESH,2012,6.20,0.00,0.00,0.90,3.10,48.20,439.20,341.20,194.30,2.10,0.00,0.00,1035.20,6.20,4.00,1023.00,2.10 +WEST MADHYA PRADESH,2013,1.70,31.10,8.50,2.80,0.40,263.70,485.10,432.60,98.90,68.70,0.30,2.40,1396.30,32.80,11.70,1280.40,71.40 +WEST MADHYA PRADESH,2014,25.60,34.40,4.60,1.40,1.40,30.60,337.40,211.00,192.60,7.00,3.00,15.80,864.90,60.00,7.50,771.60,25.80 +WEST MADHYA PRADESH,2015,40.20,6.40,53.50,13.30,2.00,154.10,428.20,276.60,55.60,11.00,0.30,1.00,1042.30,46.60,68.90,914.50,12.40 +EAST MADHYA PRADESH,1901,48.50,38.10,15.70,10.70,6.20,61.00,367.50,589.20,189.90,5.90,0.00,0.00,1332.70,86.50,32.70,1207.70,5.90 +EAST MADHYA PRADESH,1902,14.90,8.90,0.00,3.60,2.70,28.00,411.90,227.00,236.60,17.00,27.60,6.10,984.20,23.80,6.20,903.50,50.70 +EAST MADHYA PRADESH,1903,5.60,2.90,0.30,0.90,37.50,67.50,261.40,366.70,257.40,177.90,0.00,0.00,1178.10,8.50,38.70,953.00,177.90 +EAST MADHYA PRADESH,1904,2.00,15.30,48.20,0.00,8.60,109.90,443.20,316.60,135.60,44.80,3.20,16.90,1144.20,17.30,56.70,1005.20,65.00 +EAST MADHYA PRADESH,1905,15.90,8.00,14.30,12.30,10.20,34.40,292.40,243.30,250.90,2.90,0.00,1.60,886.00,23.90,36.70,821.00,4.40 +EAST MADHYA PRADESH,1906,12.10,28.30,30.80,0.00,3.50,226.10,444.20,190.10,417.00,7.10,1.70,8.80,1369.70,40.40,34.40,1277.30,17.60 +EAST MADHYA PRADESH,1907,7.00,103.10,4.50,30.50,5.10,90.90,221.90,512.30,20.10,0.00,13.00,1.20,1009.60,110.10,40.10,845.20,14.20 +EAST MADHYA PRADESH,1908,18.20,17.00,9.40,1.40,3.40,117.70,528.90,588.60,127.50,13.00,0.40,5.00,1430.60,35.20,14.10,1362.80,18.40 +EAST MADHYA PRADESH,1909,19.80,16.30,5.30,72.40,6.20,208.50,387.00,240.50,123.60,0.20,0.00,42.20,1122.00,36.10,83.90,959.60,42.40 +EAST MADHYA PRADESH,1910,10.00,0.10,0.20,2.60,9.60,221.30,225.60,377.50,258.00,49.00,68.30,0.00,1222.20,10.10,12.40,1082.40,117.30 +EAST MADHYA PRADESH,1911,22.70,0.80,15.90,0.80,3.90,204.70,175.90,362.60,296.40,62.90,50.50,0.00,1197.10,23.50,20.60,1039.60,113.30 +EAST MADHYA PRADESH,1912,8.40,46.00,0.20,4.80,3.10,35.60,460.40,373.50,165.80,1.00,49.20,2.50,1150.60,54.30,8.10,1035.40,52.70 +EAST MADHYA PRADESH,1913,1.30,58.40,22.70,0.00,24.20,201.60,262.50,281.30,63.10,2.70,0.70,17.70,936.40,59.80,46.90,808.50,21.20 +EAST MADHYA PRADESH,1914,0.10,9.30,56.10,19.80,21.30,107.60,544.50,339.80,138.40,8.40,1.90,2.80,1250.10,9.40,97.20,1130.40,13.10 +EAST MADHYA PRADESH,1915,16.20,36.70,52.60,8.30,10.40,178.20,378.40,416.20,159.70,116.20,6.70,2.80,1382.30,52.90,71.30,1132.60,125.60 +EAST MADHYA PRADESH,1916,0.00,26.60,0.10,2.20,6.30,286.00,250.50,452.70,253.20,177.40,25.20,0.00,1480.20,26.60,8.50,1242.40,202.60 +EAST MADHYA PRADESH,1917,5.80,39.30,25.40,6.40,63.20,223.80,396.40,466.30,345.90,63.00,0.00,3.80,1639.30,45.00,95.00,1432.40,66.80 +EAST MADHYA PRADESH,1918,1.20,6.50,2.30,1.20,29.10,233.10,191.90,331.90,102.90,0.20,18.70,11.50,930.50,7.70,32.60,859.80,30.40 +EAST MADHYA PRADESH,1919,120.70,29.70,10.80,9.20,23.20,158.90,479.80,713.00,105.60,82.30,10.80,3.30,1747.10,150.30,43.10,1457.30,96.40 +EAST MADHYA PRADESH,1920,12.20,1.70,17.00,6.30,12.70,93.80,426.40,237.80,91.60,0.10,0.00,0.00,899.50,13.90,36.00,849.60,0.10 +EAST MADHYA PRADESH,1921,24.40,3.40,0.00,0.50,0.00,216.60,255.10,379.50,251.60,0.90,0.00,0.00,1132.10,27.80,0.60,1102.80,0.90 +EAST MADHYA PRADESH,1922,39.10,6.10,0.50,2.50,0.90,132.70,459.20,321.00,231.10,6.60,35.00,3.20,1238.00,45.20,4.00,1144.10,44.80 +EAST MADHYA PRADESH,1923,5.10,9.80,20.00,2.10,2.30,27.20,466.70,676.30,193.40,31.50,0.20,9.20,1443.90,14.90,24.50,1363.60,40.90 +EAST MADHYA PRADESH,1924,29.40,9.00,7.20,1.10,1.40,43.50,547.30,377.70,244.60,29.90,13.80,10.50,1315.30,38.40,9.70,1213.20,54.10 +EAST MADHYA PRADESH,1925,0.10,0.00,0.00,0.20,29.80,191.90,575.00,287.60,204.00,11.70,53.80,0.30,1354.50,0.10,30.10,1258.60,65.80 +EAST MADHYA PRADESH,1926,21.10,3.10,49.20,41.00,31.00,26.30,327.20,551.40,538.70,135.90,1.20,0.90,1726.80,24.20,121.20,1443.60,138.00 +EAST MADHYA PRADESH,1927,8.40,18.70,44.40,1.80,2.50,100.10,430.40,382.80,93.60,67.10,77.70,8.40,1235.90,27.10,48.80,1006.90,153.20 +EAST MADHYA PRADESH,1928,15.70,52.80,9.10,1.00,2.50,152.70,475.00,185.00,63.10,96.60,0.00,53.50,1106.90,68.50,12.60,875.70,150.10 +EAST MADHYA PRADESH,1929,30.00,17.40,0.20,11.20,1.70,94.30,524.90,399.20,103.00,17.70,0.00,47.90,1247.40,47.40,13.10,1121.40,65.60 +EAST MADHYA PRADESH,1930,2.10,3.50,3.00,31.30,6.90,134.00,597.90,268.40,109.20,33.90,5.20,8.50,1203.90,5.50,41.30,1109.50,47.60 +EAST MADHYA PRADESH,1931,13.70,29.50,9.00,3.30,3.20,69.60,294.50,458.10,290.90,151.60,16.20,2.60,1342.20,43.20,15.40,1113.10,170.50 +EAST MADHYA PRADESH,1932,0.00,22.50,13.90,2.40,6.30,105.10,534.50,198.00,242.80,22.50,3.10,0.00,1150.90,22.50,22.50,1080.30,25.60 +EAST MADHYA PRADESH,1933,8.40,44.00,18.80,29.50,74.20,143.80,360.60,321.10,294.40,61.40,8.90,3.30,1368.40,52.40,122.50,1120.00,73.50 +EAST MADHYA PRADESH,1934,15.90,0.10,10.50,2.20,0.20,228.50,320.70,447.10,395.10,19.90,20.90,12.10,1473.30,16.00,12.90,1391.40,53.00 +EAST MADHYA PRADESH,1935,21.50,17.20,0.20,19.10,0.50,88.30,624.40,292.60,200.60,2.40,0.20,12.90,1279.90,38.70,19.80,1205.90,15.50 +EAST MADHYA PRADESH,1936,10.20,31.60,22.00,10.40,15.70,233.30,421.90,415.20,217.00,49.00,71.80,6.10,1504.20,41.80,48.10,1287.30,126.90 +EAST MADHYA PRADESH,1937,0.10,59.70,11.20,43.50,2.40,186.90,465.50,344.70,179.40,100.00,3.60,1.10,1398.00,59.80,57.00,1176.50,104.70 +EAST MADHYA PRADESH,1938,52.30,11.50,6.40,2.60,22.30,300.70,403.40,322.00,158.20,94.30,0.00,0.00,1373.80,63.80,31.40,1184.40,94.30 +EAST MADHYA PRADESH,1939,36.40,19.30,20.00,6.40,0.00,186.60,496.00,393.90,180.80,7.90,0.00,0.00,1347.20,55.70,26.40,1257.20,7.90 +EAST MADHYA PRADESH,1940,3.40,15.90,16.00,6.60,10.60,117.00,447.20,431.00,81.90,35.00,2.80,25.40,1192.80,19.30,33.30,1077.00,63.20 +EAST MADHYA PRADESH,1941,30.00,35.70,15.20,3.10,8.10,124.80,190.20,300.50,111.20,9.20,0.00,0.10,828.10,65.70,26.40,726.80,9.30 +EAST MADHYA PRADESH,1942,40.80,79.80,10.20,5.00,0.90,166.40,605.60,381.80,196.50,1.20,0.00,20.10,1508.40,120.60,16.10,1350.30,21.30 +EAST MADHYA PRADESH,1943,115.60,1.80,0.00,10.70,28.50,119.20,421.80,386.50,238.30,58.80,1.30,0.00,1382.40,117.40,39.30,1165.70,60.10 +EAST MADHYA PRADESH,1944,29.60,68.40,87.30,10.70,1.80,103.10,533.70,379.50,150.50,50.50,6.30,5.70,1427.00,97.90,99.70,1166.80,62.50 +EAST MADHYA PRADESH,1945,42.50,0.70,0.00,30.00,6.00,224.90,410.00,287.10,256.20,26.60,0.00,2.20,1286.30,43.20,36.00,1178.20,28.90 +EAST MADHYA PRADESH,1946,0.00,23.20,0.90,13.50,8.10,346.00,376.30,480.80,95.60,32.60,108.90,8.60,1494.30,23.20,22.40,1298.70,150.00 +EAST MADHYA PRADESH,1947,50.50,26.50,19.60,1.70,2.40,91.40,487.90,438.70,269.50,29.30,0.30,1.80,1419.50,77.00,23.60,1287.50,31.40 +EAST MADHYA PRADESH,1948,66.10,11.00,3.60,3.20,1.20,189.20,355.80,371.20,302.80,22.60,103.80,0.00,1430.40,77.10,7.90,1219.00,126.40 +EAST MADHYA PRADESH,1949,2.00,15.40,2.80,1.50,24.30,114.40,351.00,302.70,296.20,124.70,0.00,0.40,1235.50,17.40,28.70,1064.30,125.10 +EAST MADHYA PRADESH,1950,15.10,27.70,35.90,1.70,2.50,75.30,461.10,408.40,114.30,13.10,0.20,22.60,1177.90,42.80,40.20,1059.10,35.90 +EAST MADHYA PRADESH,1951,19.30,21.00,44.50,16.50,9.90,138.50,285.80,382.40,221.60,35.90,0.00,0.00,1175.60,40.30,70.90,1028.40,35.90 +EAST MADHYA PRADESH,1952,1.10,27.10,8.80,2.90,2.60,196.40,386.80,400.30,117.10,8.30,0.00,4.00,1155.30,28.10,14.30,1100.60,12.30 +EAST MADHYA PRADESH,1953,16.40,4.80,0.00,7.10,2.00,42.70,408.30,348.00,160.80,16.30,0.00,0.60,1007.10,21.30,9.10,959.80,16.90 +EAST MADHYA PRADESH,1954,16.60,12.20,6.40,3.10,0.10,80.50,329.70,289.50,332.00,5.80,0.00,0.60,1076.70,28.90,9.60,1031.80,6.40 +EAST MADHYA PRADESH,1955,70.90,3.00,1.60,3.00,3.40,236.40,260.20,427.10,295.70,119.60,0.00,0.00,1421.00,73.90,8.10,1219.40,119.60 +EAST MADHYA PRADESH,1956,14.10,5.50,6.60,1.70,25.90,187.90,525.30,415.20,184.90,73.30,53.70,21.80,1515.80,19.60,34.10,1313.30,148.80 +EAST MADHYA PRADESH,1957,20.80,0.90,63.80,17.90,6.20,61.30,349.70,359.50,113.60,6.60,0.00,0.50,1000.80,21.80,87.90,884.10,7.10 +EAST MADHYA PRADESH,1958,8.10,17.00,14.20,6.00,1.30,65.70,435.80,273.60,236.60,109.60,3.50,0.10,1171.60,25.10,21.50,1011.80,113.10 +EAST MADHYA PRADESH,1959,49.10,3.80,1.40,8.10,30.20,81.30,437.80,397.30,231.20,61.70,0.30,0.00,1302.40,52.90,39.80,1147.70,62.00 +EAST MADHYA PRADESH,1960,46.80,0.10,24.60,6.20,1.30,113.10,376.30,495.30,82.70,104.80,0.00,0.80,1252.00,46.90,32.10,1067.40,105.60 +EAST MADHYA PRADESH,1961,29.00,11.20,3.80,5.80,8.40,132.90,499.40,462.90,358.40,65.70,7.50,13.70,1598.80,40.30,18.00,1453.70,86.80 +EAST MADHYA PRADESH,1962,12.80,23.10,21.50,9.50,9.50,55.50,327.20,325.70,229.50,1.40,1.70,51.00,1068.40,36.00,40.40,937.90,54.10 +EAST MADHYA PRADESH,1963,7.20,13.50,5.70,16.20,10.70,147.90,274.20,364.40,243.60,27.90,7.70,1.20,1120.10,20.70,32.50,1030.10,36.80 +EAST MADHYA PRADESH,1964,0.20,8.10,2.20,1.30,2.50,131.50,360.10,433.00,226.00,21.30,0.90,0.20,1187.30,8.30,6.00,1150.60,22.40 +EAST MADHYA PRADESH,1965,4.60,0.90,15.30,12.50,0.60,68.50,205.90,185.00,184.20,11.20,0.10,9.10,697.80,5.40,28.40,643.50,20.50 +EAST MADHYA PRADESH,1966,13.20,3.80,1.90,0.70,7.60,210.70,253.40,262.00,51.00,2.20,34.00,8.80,849.10,17.00,10.10,777.00,45.00 +EAST MADHYA PRADESH,1967,0.20,0.00,53.30,1.10,2.10,118.50,396.50,481.20,262.00,5.80,1.10,86.00,1407.80,0.20,56.50,1258.30,92.90 +EAST MADHYA PRADESH,1968,35.70,12.10,8.80,3.50,1.20,101.90,355.80,281.30,151.50,20.40,0.00,1.50,973.60,47.80,13.40,890.40,22.00 +EAST MADHYA PRADESH,1969,8.30,2.70,1.10,0.70,9.70,41.70,553.40,392.80,198.30,0.00,33.20,0.00,1242.10,11.10,11.60,1186.30,33.20 +EAST MADHYA PRADESH,1970,60.60,29.40,36.30,1.40,12.50,198.20,268.50,481.20,250.60,3.60,0.00,0.00,1342.20,90.00,50.10,1198.50,3.60 +EAST MADHYA PRADESH,1971,34.60,8.30,11.40,13.60,30.00,356.60,507.90,286.30,159.20,110.90,0.00,0.00,1518.70,42.90,55.00,1309.90,110.90 +EAST MADHYA PRADESH,1972,0.40,10.40,0.10,2.30,0.20,54.10,207.70,555.70,140.80,25.40,34.90,6.20,1038.30,10.90,2.70,958.30,66.50 +EAST MADHYA PRADESH,1973,1.00,29.30,0.10,1.00,1.10,54.80,440.40,430.20,205.20,81.70,0.00,7.60,1252.30,30.30,2.30,1130.50,89.20 +EAST MADHYA PRADESH,1974,0.20,6.80,1.30,0.10,4.20,98.80,303.20,420.00,55.00,76.30,5.10,0.20,971.10,7.00,5.60,876.90,81.60 +EAST MADHYA PRADESH,1975,11.80,11.30,13.10,0.10,1.40,190.40,371.80,568.50,171.80,94.00,0.10,0.00,1434.50,23.10,14.60,1302.50,94.20 +EAST MADHYA PRADESH,1976,13.50,2.40,5.60,14.60,10.70,84.70,370.60,366.60,173.50,0.30,12.30,0.90,1055.60,15.90,30.90,995.30,13.50 +EAST MADHYA PRADESH,1977,10.30,4.60,4.60,7.40,7.70,275.80,340.20,420.50,167.90,61.70,66.60,4.90,1372.20,14.90,19.70,1204.40,133.20 +EAST MADHYA PRADESH,1978,22.30,73.60,30.50,5.00,0.20,209.10,338.20,428.70,215.70,8.10,14.30,46.80,1392.60,95.80,35.80,1191.80,69.30 +EAST MADHYA PRADESH,1979,47.50,45.40,2.50,0.40,11.20,98.90,243.80,226.70,64.50,6.00,61.30,1.50,809.80,93.00,14.20,633.90,68.80 +EAST MADHYA PRADESH,1980,9.50,4.00,4.00,0.60,1.30,250.10,372.00,516.70,174.90,2.40,0.30,33.30,1369.20,13.50,5.90,1313.70,36.00 +EAST MADHYA PRADESH,1981,13.60,1.10,24.30,2.10,14.80,152.00,338.90,270.20,193.80,4.00,5.50,15.80,1036.00,14.70,41.10,954.90,25.40 +EAST MADHYA PRADESH,1982,86.00,13.40,9.70,1.70,21.40,97.10,271.70,585.40,160.60,26.50,22.20,1.50,1297.30,99.40,32.80,1114.90,50.20 +EAST MADHYA PRADESH,1983,10.50,12.40,0.20,7.90,10.30,98.10,350.90,319.80,396.40,64.90,0.00,4.10,1275.50,22.90,18.40,1165.20,69.00 +EAST MADHYA PRADESH,1984,53.70,37.60,0.00,3.40,2.00,91.40,202.00,590.30,114.00,14.80,0.00,1.50,1110.60,91.30,5.30,997.60,16.40 +EAST MADHYA PRADESH,1985,42.70,6.20,0.30,5.50,3.20,94.90,398.10,340.20,127.00,97.20,0.00,0.00,1115.40,48.90,9.10,960.20,97.20 +EAST MADHYA PRADESH,1986,11.70,99.00,19.80,1.40,11.60,186.80,317.20,243.00,82.50,14.00,1.10,41.10,1029.20,110.60,32.90,829.40,56.20 +EAST MADHYA PRADESH,1987,37.70,44.90,8.00,0.10,8.20,45.20,248.60,307.20,314.30,81.40,16.90,3.60,1116.10,82.60,16.20,915.40,101.90 +EAST MADHYA PRADESH,1988,7.10,17.60,4.60,5.60,4.10,199.10,363.70,338.10,107.50,19.90,0.00,2.20,1069.40,24.70,14.30,1008.30,22.10 +EAST MADHYA PRADESH,1989,0.40,0.00,18.50,0.00,3.40,190.30,197.70,358.90,125.30,1.40,1.50,23.60,920.90,0.40,21.90,872.20,26.50 +EAST MADHYA PRADESH,1990,0.80,31.10,2.20,2.10,32.00,315.20,334.70,285.70,331.30,37.30,0.00,7.50,1380.00,31.90,36.40,1266.90,44.90 +EAST MADHYA PRADESH,1991,3.50,7.80,16.10,3.40,2.60,98.60,319.30,488.10,67.30,5.10,2.90,2.10,1016.90,11.30,22.00,973.40,10.20 +EAST MADHYA PRADESH,1992,0.00,0.00,0.50,0.40,7.10,38.40,295.40,465.70,235.60,7.90,0.10,0.00,1051.10,0.10,8.00,1035.10,8.00 +EAST MADHYA PRADESH,1993,0.00,12.20,15.80,1.00,5.50,105.60,252.90,288.10,415.90,21.70,0.10,0.00,1118.90,12.20,22.30,1062.50,21.90 +EAST MADHYA PRADESH,1994,9.50,10.70,0.00,9.90,1.00,264.70,550.20,512.10,150.50,24.80,0.40,0.00,1533.70,20.20,10.90,1477.50,25.10 +EAST MADHYA PRADESH,1995,24.10,8.90,47.00,3.20,2.10,81.00,361.90,355.30,128.70,5.20,2.10,12.80,1032.30,33.10,52.30,926.90,20.10 +EAST MADHYA PRADESH,1996,39.10,15.90,3.50,1.90,0.90,67.20,312.40,369.50,129.00,47.30,0.00,0.00,986.60,55.00,6.20,878.10,47.30 +EAST MADHYA PRADESH,1997,4.00,0.00,0.60,7.40,3.30,95.10,449.10,358.90,198.00,61.60,76.40,102.60,1357.10,4.00,11.30,1101.10,240.60 +EAST MADHYA PRADESH,1998,29.70,5.70,24.10,5.20,2.90,84.40,297.20,323.30,187.10,20.40,33.40,0.00,1013.40,35.40,32.20,892.10,53.80 +EAST MADHYA PRADESH,1999,1.50,21.20,0.00,0.00,4.80,122.50,336.30,355.90,522.70,79.00,0.00,0.00,1443.90,22.70,4.80,1337.40,79.00 +EAST MADHYA PRADESH,2000,0.10,0.00,0.10,0.10,7.40,167.50,377.70,208.20,111.40,1.80,0.00,0.00,874.20,0.10,7.50,864.90,1.80 +EAST MADHYA PRADESH,2001,2.30,0.80,2.40,23.00,12.40,255.50,468.40,243.90,50.40,110.00,1.00,0.00,1170.10,3.10,37.70,1018.20,111.00 +EAST MADHYA PRADESH,2002,1.80,29.60,1.20,0.20,5.20,93.50,84.70,491.80,192.10,43.10,5.60,1.20,950.20,31.50,6.60,862.20,49.90 +EAST MADHYA PRADESH,2003,0.70,59.60,2.20,1.00,0.40,119.90,366.80,370.20,493.30,20.50,0.50,2.90,1438.10,60.30,3.70,1350.20,23.80 +EAST MADHYA PRADESH,2004,19.80,0.40,0.00,1.70,3.90,208.10,203.10,369.10,119.90,25.20,4.10,0.00,955.30,20.20,5.70,900.20,29.30 +EAST MADHYA PRADESH,2005,35.20,10.60,27.40,3.40,41.70,163.90,597.20,256.60,198.40,27.60,0.00,4.40,1366.40,45.80,72.50,1216.10,32.00 +EAST MADHYA PRADESH,2006,0.00,0.00,50.30,14.20,18.00,56.30,373.80,328.30,74.10,13.00,12.30,3.00,943.40,0.00,82.50,832.60,28.40 +EAST MADHYA PRADESH,2007,7.00,26.30,8.60,2.90,6.20,74.80,207.80,162.60,130.10,3.10,22.80,1.50,653.80,33.30,17.70,575.30,27.50 +EAST MADHYA PRADESH,2008,1.40,4.10,8.90,2.50,5.30,307.60,268.20,270.20,116.10,15.50,3.00,0.40,1003.20,5.50,16.70,962.20,18.90 +EAST MADHYA PRADESH,2009,14.80,1.00,1.80,2.70,3.70,35.30,317.60,191.30,208.70,68.90,79.20,19.00,943.90,15.70,8.20,752.80,167.10 +EAST MADHYA PRADESH,2010,2.90,10.40,0.10,0.70,1.70,58.40,363.30,271.90,213.40,23.60,10.90,3.30,960.40,13.20,2.40,907.00,37.80 +EAST MADHYA PRADESH,2011,0.60,1.90,0.30,7.10,4.70,332.50,323.60,326.90,276.50,1.10,0.00,0.00,1275.20,2.50,12.10,1259.40,1.10 +EAST MADHYA PRADESH,2012,39.40,0.70,0.60,1.10,1.20,67.80,398.90,351.70,172.60,12.70,3.80,2.70,1053.10,40.00,2.90,990.90,19.20 +EAST MADHYA PRADESH,2013,2.00,43.40,14.10,9.50,0.30,311.90,456.20,480.80,78.00,124.20,0.50,1.00,1521.90,45.40,23.90,1326.90,125.70 +EAST MADHYA PRADESH,2014,32.10,49.70,17.80,5.10,2.50,91.80,283.40,231.80,139.60,56.40,1.90,12.90,924.90,81.80,25.30,746.60,71.20 +EAST MADHYA PRADESH,2015,37.30,11.00,73.40,25.80,6.30,139.20,262.20,272.10,71.60,38.20,1.20,0.90,939.20,48.30,105.50,745.10,40.30 +GUJARAT REGION,1901,4.20,0.00,0.60,1.60,7.00,60.30,240.20,205.40,18.10,16.60,0.00,0.30,554.30,4.20,9.20,524.00,17.00 +GUJARAT REGION,1902,3.90,0.00,0.00,0.60,1.00,32.80,229.80,299.00,281.20,2.30,1.50,11.90,863.90,3.90,1.50,842.80,15.70 +GUJARAT REGION,1903,0.30,0.10,1.40,0.00,12.30,30.10,452.90,202.00,183.20,5.40,0.00,0.00,887.60,0.30,13.60,868.20,5.40 +GUJARAT REGION,1904,0.80,10.60,16.80,0.20,3.90,48.30,194.80,71.80,138.00,6.10,0.10,1.20,492.60,11.30,20.90,453.00,7.40 +GUJARAT REGION,1905,0.10,0.70,1.10,0.30,0.00,20.10,668.30,37.90,81.30,1.40,0.20,0.10,811.50,0.80,1.30,807.60,1.70 +GUJARAT REGION,1906,0.00,12.70,0.00,0.00,0.10,177.50,311.50,247.10,134.80,5.90,0.00,0.90,890.60,12.70,0.20,870.90,6.80 +GUJARAT REGION,1907,0.30,14.60,0.20,2.10,0.40,72.40,325.00,564.40,17.50,0.00,0.00,0.00,997.00,15.00,2.70,979.30,0.00 +GUJARAT REGION,1908,5.20,0.30,0.20,0.00,0.10,67.50,562.10,366.00,25.10,1.00,0.00,0.00,1027.50,5.50,0.30,1020.70,1.00 +GUJARAT REGION,1909,0.10,0.50,0.10,5.50,2.60,160.50,415.60,242.60,143.30,1.50,0.00,5.50,977.80,0.60,8.20,962.00,7.00 +GUJARAT REGION,1910,0.60,0.00,0.00,0.10,0.00,262.60,290.20,338.50,44.70,23.10,14.80,0.00,974.60,0.60,0.10,936.00,37.90 +GUJARAT REGION,1911,3.50,0.00,18.90,0.00,0.90,158.00,66.70,93.40,57.70,0.50,3.80,0.10,403.50,3.50,19.80,375.80,4.40 +GUJARAT REGION,1912,0.10,0.00,0.00,0.20,0.60,105.10,624.90,291.10,38.90,13.60,44.10,0.00,1118.50,0.10,0.80,1060.00,57.70 +GUJARAT REGION,1913,0.00,0.00,0.10,0.00,13.50,364.50,423.20,213.80,146.00,1.10,0.10,0.30,1162.60,0.00,13.70,1147.50,1.40 +GUJARAT REGION,1914,0.00,3.70,0.00,0.20,5.40,222.30,488.80,137.70,234.90,8.50,6.00,0.00,1107.50,3.70,5.60,1083.70,14.40 +GUJARAT REGION,1915,7.50,1.90,12.10,1.60,2.30,128.70,128.90,116.30,52.70,112.30,2.80,0.20,567.30,9.40,16.00,426.60,115.30 +GUJARAT REGION,1916,0.00,0.00,0.20,0.10,8.70,126.70,168.30,418.90,193.60,32.40,4.00,0.00,952.90,0.00,9.00,907.50,36.40 +GUJARAT REGION,1917,0.40,7.40,0.00,5.30,98.30,126.80,320.10,379.20,353.70,233.70,0.00,0.00,1524.90,7.80,103.60,1179.80,233.70 +GUJARAT REGION,1918,0.40,0.00,0.20,0.00,12.10,37.80,110.50,213.40,17.60,0.20,0.50,0.00,392.60,0.40,12.30,379.30,0.70 +GUJARAT REGION,1919,6.10,0.10,0.00,1.30,2.10,110.00,335.90,481.20,78.10,33.00,19.60,0.00,1067.40,6.20,3.50,1005.20,52.60 +GUJARAT REGION,1920,44.10,1.80,0.00,0.20,63.20,189.30,268.10,110.40,31.70,0.00,0.00,0.00,708.90,45.90,63.40,599.50,0.00 +GUJARAT REGION,1921,0.80,0.00,0.00,0.00,0.00,31.10,529.70,205.40,405.10,0.40,0.00,0.20,1172.80,0.80,0.00,1171.30,0.60 +GUJARAT REGION,1922,2.10,0.00,0.00,0.00,0.00,130.80,314.80,106.80,314.30,5.00,4.10,0.70,878.70,2.10,0.00,866.80,9.80 +GUJARAT REGION,1923,0.00,5.20,1.50,4.00,4.60,2.60,295.00,157.50,81.90,0.90,0.00,0.00,553.20,5.20,10.10,537.00,1.00 +GUJARAT REGION,1924,1.40,0.00,0.40,0.00,5.50,117.30,297.30,267.00,198.70,21.00,0.00,1.00,909.60,1.40,6.00,880.30,22.00 +GUJARAT REGION,1925,0.00,0.00,0.10,0.00,25.80,264.60,199.30,81.80,14.20,0.40,6.60,0.20,593.10,0.00,26.00,559.90,7.20 +GUJARAT REGION,1926,6.50,0.00,0.90,2.00,8.50,20.10,406.10,471.00,359.10,0.10,0.10,0.00,1274.50,6.50,11.50,1256.40,0.20 +GUJARAT REGION,1927,0.00,4.90,0.00,0.20,1.90,139.40,903.30,199.20,113.90,26.20,18.30,14.80,1422.10,4.90,2.10,1355.80,59.30 +GUJARAT REGION,1928,0.00,0.20,0.00,0.00,0.00,51.50,372.70,220.50,138.30,19.60,16.40,1.80,821.00,0.20,0.00,783.00,37.80 +GUJARAT REGION,1929,1.90,0.00,0.00,5.50,0.90,123.60,353.70,150.70,20.60,7.20,0.60,11.60,676.30,1.90,6.40,648.60,19.40 +GUJARAT REGION,1930,2.00,0.20,0.20,0.10,1.10,160.20,426.00,152.90,102.80,48.20,0.00,0.90,894.70,2.20,1.50,841.90,49.10 +GUJARAT REGION,1931,0.00,0.10,0.00,0.00,1.70,18.40,332.50,546.30,86.40,113.60,4.20,1.30,1104.60,0.10,1.70,983.70,119.10 +GUJARAT REGION,1932,0.00,0.00,0.80,0.40,0.40,57.90,540.00,146.60,129.20,30.10,0.90,0.30,906.60,0.00,1.60,873.70,31.30 +GUJARAT REGION,1933,0.00,3.40,0.70,3.50,44.30,118.30,241.30,473.60,227.50,15.10,1.40,7.90,1137.10,3.40,48.60,1060.60,24.40 +GUJARAT REGION,1934,0.10,0.00,0.70,0.30,0.00,219.70,266.10,392.90,81.20,0.90,17.60,0.00,979.60,0.10,1.10,959.90,18.50 +GUJARAT REGION,1935,7.30,0.00,0.00,1.60,0.40,82.40,356.00,107.10,187.60,14.20,0.10,0.30,756.90,7.30,1.90,733.10,14.60 +GUJARAT REGION,1936,0.00,1.80,1.30,0.00,0.80,189.40,133.40,52.90,175.80,1.30,52.50,0.00,609.30,1.80,2.10,551.50,53.90 +GUJARAT REGION,1937,0.00,4.00,0.20,0.10,0.00,260.60,577.80,32.00,320.10,3.30,0.10,4.80,1203.10,4.00,0.30,1190.60,8.20 +GUJARAT REGION,1938,0.00,0.10,0.00,0.00,15.80,265.00,342.60,134.60,26.30,30.30,0.00,0.00,814.90,0.10,15.80,768.60,30.40 +GUJARAT REGION,1939,0.00,1.10,3.10,0.00,0.00,30.30,210.30,265.30,91.60,1.30,2.40,0.20,605.60,1.10,3.10,597.50,3.90 +GUJARAT REGION,1940,11.30,4.40,10.10,2.00,1.50,152.60,208.30,241.80,119.80,91.50,26.70,0.00,870.10,15.70,13.50,722.60,118.20 +GUJARAT REGION,1941,1.00,12.50,0.10,0.70,0.90,42.50,671.90,187.70,40.70,3.30,0.00,0.40,961.80,13.50,1.80,942.90,3.70 +GUJARAT REGION,1942,2.00,13.70,0.00,0.00,9.00,130.10,501.10,367.80,162.60,0.00,0.00,0.30,1186.80,15.80,9.00,1161.60,0.40 +GUJARAT REGION,1943,0.10,0.00,0.00,0.60,19.00,132.80,484.20,80.90,152.20,42.60,0.40,0.00,912.80,0.10,19.50,850.10,43.00 +GUJARAT REGION,1944,2.90,0.00,5.10,2.30,2.30,110.10,625.90,502.70,72.20,16.90,0.00,0.00,1340.60,2.90,9.80,1310.90,17.00 +GUJARAT REGION,1945,7.00,0.00,0.00,1.90,0.70,160.90,518.80,245.30,339.50,2.70,0.00,0.00,1277.00,7.00,2.60,1264.60,2.70 +GUJARAT REGION,1946,0.00,2.10,0.00,1.10,4.20,233.30,291.70,469.60,104.60,1.10,34.40,5.50,1147.70,2.10,5.30,1099.30,41.00 +GUJARAT REGION,1947,0.40,0.00,0.00,40.40,0.00,5.40,216.70,257.10,252.70,8.30,2.30,0.00,783.40,0.40,40.40,731.90,10.70 +GUJARAT REGION,1948,11.70,0.40,0.00,0.00,0.70,65.50,185.90,115.90,49.80,18.20,25.10,0.60,473.90,12.10,0.70,417.20,43.90 +GUJARAT REGION,1949,0.00,0.10,0.00,0.00,2.50,35.20,290.00,205.50,241.10,23.50,2.50,0.00,800.30,0.10,2.50,771.80,25.90 +GUJARAT REGION,1950,0.00,0.00,0.00,0.00,0.10,11.70,730.70,76.90,306.60,3.30,0.00,0.00,1129.30,0.00,0.10,1125.90,3.30 +GUJARAT REGION,1951,0.00,0.00,0.40,0.30,2.10,65.60,218.60,162.60,7.30,13.90,7.30,0.30,478.30,0.00,2.70,454.10,21.50 +GUJARAT REGION,1952,0.00,0.00,0.00,0.00,0.20,138.70,487.70,136.40,11.60,1.80,0.00,0.00,776.60,0.00,0.30,774.50,1.80 +GUJARAT REGION,1953,12.60,0.00,0.00,0.10,0.30,143.60,240.00,552.90,104.50,1.00,0.00,0.40,1055.50,12.60,0.40,1041.00,1.40 +GUJARAT REGION,1954,0.10,2.00,5.50,0.00,0.20,114.30,355.00,214.10,522.00,32.00,0.10,2.60,1248.00,2.20,5.70,1205.50,34.70 +GUJARAT REGION,1955,0.30,0.10,0.10,0.70,3.10,104.90,109.90,393.50,311.40,51.40,0.10,0.00,975.70,0.40,4.00,919.80,51.50 +GUJARAT REGION,1956,0.00,0.10,0.00,0.10,26.50,102.90,661.30,329.80,135.00,107.40,2.20,1.40,1366.60,0.10,26.60,1229.00,110.90 +GUJARAT REGION,1957,2.30,0.00,0.20,0.00,5.70,151.80,257.10,198.70,16.10,7.50,8.20,0.20,647.80,2.30,6.00,623.60,15.90 +GUJARAT REGION,1958,1.00,0.00,0.30,1.10,0.70,103.40,336.80,287.10,335.90,46.90,10.00,0.10,1123.10,1.00,2.00,1063.20,56.90 +GUJARAT REGION,1959,0.00,0.00,0.00,2.80,1.40,98.00,632.60,321.80,377.60,121.70,4.70,0.00,1560.70,0.00,4.20,1430.10,126.40 +GUJARAT REGION,1960,1.60,0.00,0.20,0.00,8.00,131.40,218.30,210.60,73.10,6.30,0.00,0.10,649.60,1.60,8.20,633.30,6.50 +GUJARAT REGION,1961,0.00,0.60,0.00,0.00,0.60,90.20,365.10,174.60,297.70,16.10,0.10,0.00,945.10,0.60,0.60,927.60,16.20 +GUJARAT REGION,1962,0.00,0.00,1.40,1.30,2.30,49.30,298.80,181.00,227.10,0.00,8.90,2.90,773.00,0.00,5.00,756.20,11.80 +GUJARAT REGION,1963,1.40,0.00,0.90,0.30,0.30,65.40,291.40,350.90,227.60,26.00,33.10,0.40,997.90,1.40,1.60,935.30,59.50 +GUJARAT REGION,1964,0.10,0.00,0.00,0.00,4.00,106.20,371.00,296.30,114.60,0.50,0.00,0.00,892.70,0.10,4.00,888.10,0.50 +GUJARAT REGION,1965,7.40,0.00,0.60,0.40,1.30,11.20,442.40,165.90,24.10,1.00,2.40,0.10,656.70,7.40,2.20,643.60,3.50 +GUJARAT REGION,1966,0.20,0.00,0.00,0.00,0.50,123.10,316.40,71.20,183.90,0.80,0.30,0.10,696.70,0.20,0.60,694.60,1.20 +GUJARAT REGION,1967,0.00,0.00,42.10,0.40,0.20,132.70,413.20,204.10,123.80,1.00,0.00,21.10,938.70,0.00,42.70,873.80,22.10 +GUJARAT REGION,1968,0.10,0.30,1.20,0.00,0.10,33.80,279.10,297.10,45.80,10.30,0.10,0.00,668.00,0.40,1.40,655.90,10.30 +GUJARAT REGION,1969,0.00,0.20,0.00,0.00,0.00,100.50,331.30,154.60,191.90,0.00,7.20,3.20,789.00,0.30,0.00,778.30,10.40 +GUJARAT REGION,1970,0.20,1.00,0.10,0.10,5.30,262.60,261.20,495.80,321.80,5.80,0.00,0.00,1353.80,1.10,5.40,1341.40,5.80 +GUJARAT REGION,1971,0.00,0.10,0.00,0.30,5.00,176.20,253.60,194.10,134.90,5.00,0.00,0.00,769.20,0.10,5.30,758.80,5.00 +GUJARAT REGION,1972,0.10,2.00,0.00,0.00,1.80,87.80,208.40,180.40,23.00,0.20,0.00,0.00,503.80,2.00,1.90,499.70,0.20 +GUJARAT REGION,1973,0.20,0.70,0.10,0.00,1.30,97.30,301.40,364.50,387.00,7.10,0.00,0.10,1159.60,0.90,1.40,1150.20,7.10 +GUJARAT REGION,1974,0.00,0.00,0.00,0.60,51.30,22.10,135.50,103.00,68.70,38.60,0.00,1.50,421.30,0.00,51.90,329.30,40.10 +GUJARAT REGION,1975,0.00,0.00,0.70,0.00,0.10,156.00,219.50,449.60,318.50,48.20,0.00,0.00,1192.70,0.00,0.90,1143.60,48.20 +GUJARAT REGION,1976,3.20,0.00,0.00,0.00,0.20,342.50,584.40,482.40,149.50,0.20,57.70,0.00,1620.10,3.20,0.20,1558.80,57.90 +GUJARAT REGION,1977,3.90,0.10,0.20,0.10,15.40,310.20,565.20,242.90,160.00,0.70,8.90,0.00,1307.70,4.00,15.80,1278.30,9.60 +GUJARAT REGION,1978,0.00,1.10,0.00,2.00,0.30,155.50,280.70,405.70,52.30,6.10,26.20,5.90,935.80,1.10,2.30,894.20,38.20 +GUJARAT REGION,1979,1.00,4.60,0.00,0.00,0.30,132.30,174.20,441.30,46.30,11.50,92.80,0.10,904.50,5.60,0.40,794.10,104.30 +GUJARAT REGION,1980,0.10,0.00,0.00,0.00,0.10,261.30,268.70,249.10,24.00,0.80,0.40,17.60,822.00,0.10,0.10,803.10,18.70 +GUJARAT REGION,1981,1.30,0.00,0.70,0.10,0.30,111.30,414.30,377.00,137.90,40.80,30.50,0.00,1114.20,1.30,1.00,1040.60,71.40 +GUJARAT REGION,1982,0.40,0.10,0.10,2.60,45.80,39.60,274.40,266.30,25.80,6.50,96.60,0.00,758.30,0.50,48.50,606.20,103.10 +GUJARAT REGION,1983,0.10,0.00,0.00,8.00,1.30,129.30,408.80,405.90,180.80,79.80,0.00,0.00,1213.90,0.10,9.40,1124.70,79.80 +GUJARAT REGION,1984,0.00,0.00,0.00,0.00,0.00,85.20,250.50,421.40,89.20,5.70,1.70,0.00,853.60,0.00,0.00,846.30,7.30 +GUJARAT REGION,1985,0.00,0.00,0.00,0.80,2.10,14.70,247.20,182.50,18.10,124.00,0.00,0.30,589.70,0.00,2.90,462.40,124.30 +GUJARAT REGION,1986,0.00,0.00,0.10,0.00,2.00,180.10,161.80,149.40,5.90,1.50,1.10,0.00,501.80,0.00,2.10,497.10,2.60 +GUJARAT REGION,1987,0.40,0.50,0.00,0.00,0.30,69.60,119.40,180.60,5.70,3.40,11.20,10.70,401.90,0.90,0.40,375.20,25.40 +GUJARAT REGION,1988,0.00,0.00,0.00,2.50,0.00,74.70,573.10,245.50,190.40,11.20,0.00,0.00,1097.40,0.00,2.50,1083.70,11.20 +GUJARAT REGION,1989,1.30,0.00,0.00,0.00,0.10,112.50,351.20,298.30,58.00,1.50,0.00,0.00,822.80,1.30,0.10,819.90,1.50 +GUJARAT REGION,1990,0.00,3.30,0.20,0.00,32.90,79.00,221.60,530.50,226.20,16.00,4.80,3.80,1118.40,3.30,33.20,1057.30,24.60 +GUJARAT REGION,1991,0.00,0.00,0.00,0.00,0.00,55.60,440.80,133.80,41.80,0.00,0.70,0.00,672.70,0.00,0.00,672.00,0.70 +GUJARAT REGION,1992,0.80,0.00,0.00,0.00,0.90,132.80,256.30,244.40,244.10,19.20,2.50,0.00,901.10,0.80,0.90,877.70,21.70 +GUJARAT REGION,1993,0.00,1.70,0.10,0.00,0.00,133.20,557.40,69.50,147.80,30.10,1.50,0.00,941.40,1.70,0.10,908.00,31.70 +GUJARAT REGION,1994,7.20,0.00,0.00,0.10,0.00,320.70,490.60,370.10,343.70,2.00,0.10,0.00,1534.50,7.20,0.20,1525.10,2.10 +GUJARAT REGION,1995,2.20,0.00,0.20,0.00,0.00,8.50,451.00,127.40,71.00,22.90,0.30,0.70,684.30,2.20,0.30,657.90,23.90 +GUJARAT REGION,1996,1.00,0.00,0.00,0.00,0.00,123.90,374.60,228.50,151.30,23.30,0.10,0.00,902.80,1.00,0.00,878.30,23.40 +GUJARAT REGION,1997,0.70,0.00,0.20,3.30,3.60,355.30,241.90,358.00,96.10,8.10,0.90,0.90,1068.90,0.70,7.10,1051.30,9.80 +GUJARAT REGION,1998,0.00,0.10,0.00,0.00,0.00,111.50,312.20,196.10,346.90,98.80,4.40,0.00,1070.00,0.10,0.00,966.70,103.20 +GUJARAT REGION,1999,0.00,2.00,0.00,0.00,7.40,158.00,219.40,55.10,57.20,69.50,0.00,0.00,568.40,2.00,7.40,489.60,69.50 +GUJARAT REGION,2000,0.00,0.10,0.00,0.00,36.10,62.90,301.10,133.00,13.50,0.20,0.00,3.60,550.60,0.10,36.10,510.60,3.90 +GUJARAT REGION,2001,6.10,0.00,0.00,0.20,2.10,216.90,320.00,256.80,17.80,28.90,0.20,0.00,849.00,6.10,2.30,811.50,29.00 +GUJARAT REGION,2002,4.10,0.00,0.10,0.00,0.00,234.20,45.80,238.50,113.70,0.60,0.10,0.10,637.20,4.10,0.10,632.20,0.80 +GUJARAT REGION,2003,0.00,6.10,0.10,0.00,0.00,209.30,518.70,314.60,109.50,1.90,0.00,0.00,1160.30,6.10,0.10,1152.20,1.90 +GUJARAT REGION,2004,0.00,0.00,0.00,0.00,4.40,135.50,238.20,553.70,51.80,22.20,0.00,0.00,1005.80,0.00,4.40,979.10,22.30 +GUJARAT REGION,2005,0.00,0.00,0.00,0.00,0.30,367.30,378.70,229.40,339.20,1.40,0.00,0.00,1316.40,0.00,0.30,1314.70,1.40 +GUJARAT REGION,2006,0.00,0.00,0.80,0.00,0.20,123.50,576.00,624.80,140.60,9.20,2.90,0.00,1478.00,0.00,1.10,1464.90,12.10 +GUJARAT REGION,2007,0.10,0.40,0.00,0.00,0.30,94.00,567.80,345.60,169.40,0.00,1.40,0.00,1178.90,0.50,0.30,1176.70,1.40 +GUJARAT REGION,2008,0.00,0.00,0.00,3.10,0.10,58.20,261.90,369.50,204.30,11.60,0.10,2.30,911.10,0.00,3.30,893.90,14.00 +GUJARAT REGION,2009,0.00,0.00,0.30,0.00,0.00,17.00,390.30,143.50,54.90,27.40,8.10,0.00,641.60,0.00,0.30,605.70,35.50 +GUJARAT REGION,2010,0.20,0.00,0.00,0.00,0.00,59.30,328.20,431.00,216.60,12.20,41.00,0.20,1088.70,0.20,0.00,1035.00,53.40 +GUJARAT REGION,2011,0.00,0.20,0.00,0.00,0.00,16.30,259.20,451.70,162.50,0.40,0.00,0.00,890.50,0.20,0.00,889.80,0.40 +GUJARAT REGION,2012,0.10,0.00,0.00,0.00,0.00,34.40,178.20,230.30,263.80,7.10,0.00,0.00,714.00,0.10,0.00,706.70,7.10 +GUJARAT REGION,2013,0.00,0.90,0.10,4.60,0.00,155.70,405.40,211.10,287.30,53.20,0.10,0.00,1118.60,0.90,4.70,1059.60,53.30 +GUJARAT REGION,2014,5.70,0.10,0.20,1.00,1.30,11.60,307.50,138.60,235.10,3.30,1.30,0.00,705.70,5.80,2.50,692.80,4.60 +GUJARAT REGION,2015,1.80,0.00,6.10,5.50,0.90,120.70,354.70,37.40,93.40,2.20,0.30,0.00,622.90,1.80,12.50,606.10,2.60 +SAURASHTRA & KUTCH,1901,1.90,0.00,0.10,0.20,3.20,9.10,87.80,62.50,12.00,3.80,0.00,0.70,181.30,1.90,3.50,171.40,4.40 +SAURASHTRA & KUTCH,1902,0.10,0.00,0.00,0.50,1.10,14.40,92.90,160.00,123.90,1.50,0.10,6.50,401.10,0.10,1.60,391.20,8.20 +SAURASHTRA & KUTCH,1903,0.50,0.00,1.70,0.00,3.10,10.50,337.90,96.10,61.90,11.10,0.00,0.00,522.80,0.50,4.80,506.40,11.10 +SAURASHTRA & KUTCH,1904,1.40,5.80,17.50,0.00,0.00,9.50,111.20,9.40,28.90,0.30,1.70,0.00,185.60,7.10,17.50,159.00,2.00 +SAURASHTRA & KUTCH,1905,1.50,1.00,0.60,0.40,0.00,6.40,254.50,12.30,12.80,0.40,0.00,0.00,290.00,2.50,1.00,286.00,0.50 +SAURASHTRA & KUTCH,1906,0.90,28.20,0.00,0.00,0.00,126.00,161.00,152.20,56.60,14.90,0.00,0.60,540.30,29.10,0.00,495.70,15.50 +SAURASHTRA & KUTCH,1907,0.00,19.70,0.00,2.30,0.40,69.00,201.10,213.70,3.30,0.00,0.00,0.00,509.60,19.80,2.70,487.10,0.00 +SAURASHTRA & KUTCH,1908,3.60,0.00,0.00,0.00,0.00,30.20,284.80,198.80,10.40,0.10,0.00,0.00,527.90,3.60,0.00,524.30,0.10 +SAURASHTRA & KUTCH,1909,0.20,3.50,0.00,3.60,1.00,99.60,247.50,64.80,157.20,2.30,0.00,6.70,586.40,3.70,4.50,569.20,9.00 +SAURASHTRA & KUTCH,1910,0.30,0.00,0.00,0.40,0.50,163.80,162.10,194.20,24.70,3.60,0.20,0.00,549.70,0.30,0.80,544.80,3.80 +SAURASHTRA & KUTCH,1911,1.50,0.00,35.50,0.00,0.50,42.10,12.60,27.40,19.90,0.20,0.20,0.40,140.40,1.50,36.10,102.00,0.80 +SAURASHTRA & KUTCH,1912,0.00,0.00,0.70,0.50,0.30,62.60,428.70,133.50,20.20,2.70,3.40,0.00,652.60,0.00,1.50,645.00,6.00 +SAURASHTRA & KUTCH,1913,0.00,0.00,0.10,0.00,0.70,213.10,352.80,122.60,61.90,0.50,0.00,0.10,751.90,0.00,0.90,750.30,0.60 +SAURASHTRA & KUTCH,1914,0.00,9.80,0.40,0.00,4.90,161.30,118.10,36.50,238.00,4.20,4.10,0.00,577.10,9.80,5.20,553.90,8.30 +SAURASHTRA & KUTCH,1915,1.30,1.30,7.90,7.20,1.30,34.90,99.30,12.30,29.50,50.60,0.00,0.20,245.80,2.60,16.40,176.00,50.80 +SAURASHTRA & KUTCH,1916,0.00,0.00,0.00,0.00,2.70,21.00,105.70,238.90,98.30,29.30,0.00,0.00,495.90,0.00,2.70,463.90,29.30 +SAURASHTRA & KUTCH,1917,3.40,0.20,0.00,1.50,57.00,81.40,215.20,209.90,109.60,208.50,0.00,0.00,886.70,3.70,58.50,616.10,208.50 +SAURASHTRA & KUTCH,1918,0.00,0.00,0.60,0.60,3.80,9.90,45.00,49.00,8.60,0.20,0.00,0.00,117.60,0.00,5.00,112.40,0.20 +SAURASHTRA & KUTCH,1919,7.50,0.00,0.00,1.10,0.90,24.90,170.40,179.60,31.20,18.20,11.30,0.00,445.10,7.50,2.00,406.00,29.60 +SAURASHTRA & KUTCH,1920,12.50,4.50,0.30,0.20,20.70,237.70,145.20,52.40,16.50,0.00,0.00,0.00,490.10,17.00,21.20,451.80,0.00 +SAURASHTRA & KUTCH,1921,0.00,0.00,0.00,0.00,0.00,8.60,317.40,79.10,190.00,2.70,0.00,0.20,598.10,0.00,0.00,595.20,2.90 +SAURASHTRA & KUTCH,1922,0.00,0.00,0.00,1.00,0.10,40.70,127.40,31.50,130.60,1.10,0.00,2.30,334.90,0.00,1.10,330.30,3.50 +SAURASHTRA & KUTCH,1923,0.00,11.40,0.00,0.50,2.70,2.00,103.70,69.80,14.00,0.80,0.00,0.00,205.00,11.40,3.20,189.50,0.80 +SAURASHTRA & KUTCH,1924,0.00,0.10,0.10,0.00,6.70,41.00,121.30,78.60,62.10,0.30,0.00,0.40,310.70,0.10,6.80,303.10,0.70 +SAURASHTRA & KUTCH,1925,0.00,0.00,0.00,0.00,11.70,200.50,79.90,29.20,7.60,0.00,11.80,0.00,340.60,0.00,11.70,317.10,11.80 +SAURASHTRA & KUTCH,1926,6.00,0.00,0.30,2.20,22.10,9.90,250.40,212.30,396.60,1.70,0.00,0.00,901.40,6.00,24.50,869.20,1.70 +SAURASHTRA & KUTCH,1927,0.00,8.80,0.10,0.00,1.90,52.50,442.10,47.70,55.80,22.00,3.50,5.10,639.50,8.80,1.90,598.10,30.60 +SAURASHTRA & KUTCH,1928,0.60,0.00,0.00,0.20,0.00,4.80,203.40,91.80,88.90,26.90,10.30,0.00,426.80,0.60,0.20,388.80,37.10 +SAURASHTRA & KUTCH,1929,5.10,0.00,0.00,3.10,0.50,39.60,268.40,63.20,11.50,7.70,1.30,21.30,421.80,5.10,3.60,382.80,30.30 +SAURASHTRA & KUTCH,1930,4.80,0.50,0.00,0.10,1.80,124.10,225.00,38.20,38.50,17.10,0.00,0.10,450.20,5.30,1.80,425.80,17.30 +SAURASHTRA & KUTCH,1931,0.20,0.60,0.00,0.10,3.10,8.10,115.00,119.20,20.80,60.10,2.50,0.00,329.70,0.70,3.20,263.10,62.60 +SAURASHTRA & KUTCH,1932,0.00,0.00,0.00,0.00,0.30,16.10,384.10,38.50,18.40,35.00,0.00,0.00,492.50,0.00,0.30,457.20,35.00 +SAURASHTRA & KUTCH,1933,0.00,4.50,1.20,11.40,103.90,59.60,220.10,242.00,107.00,5.90,2.20,0.20,757.90,4.50,116.40,628.70,8.30 +SAURASHTRA & KUTCH,1934,0.00,0.00,0.60,0.10,0.00,161.60,114.90,104.80,11.40,0.90,4.00,0.00,398.40,0.00,0.80,392.70,4.90 +SAURASHTRA & KUTCH,1935,11.50,0.00,0.00,2.50,0.00,44.80,353.00,64.60,42.30,4.90,0.00,0.40,524.10,11.50,2.50,504.70,5.30 +SAURASHTRA & KUTCH,1936,0.00,3.20,0.40,0.00,0.20,114.40,87.80,17.30,114.60,0.00,32.40,0.80,371.10,3.20,0.60,334.10,33.20 +SAURASHTRA & KUTCH,1937,0.00,2.40,0.00,0.00,0.00,117.20,271.40,6.00,112.20,8.30,0.00,16.10,533.60,2.40,0.00,506.80,24.40 +SAURASHTRA & KUTCH,1938,0.00,0.00,0.00,0.00,10.00,141.40,114.30,59.20,5.30,15.40,0.00,0.30,346.00,0.00,10.00,320.20,15.70 +SAURASHTRA & KUTCH,1939,0.00,8.60,2.30,0.00,0.00,9.00,62.20,79.50,11.80,4.10,1.90,0.00,179.40,8.60,2.30,162.50,6.00 +SAURASHTRA & KUTCH,1940,7.20,6.40,6.50,0.10,1.70,111.60,87.60,85.60,23.20,2.20,24.50,0.00,356.50,13.60,8.30,307.90,26.70 +SAURASHTRA & KUTCH,1941,0.50,3.40,0.00,0.10,0.80,14.40,347.20,13.40,17.10,2.90,0.00,2.00,401.80,3.80,0.90,392.20,4.90 +SAURASHTRA & KUTCH,1942,1.00,21.00,0.00,0.00,6.00,13.20,111.30,146.70,42.90,0.00,0.00,0.10,342.20,22.00,6.00,314.10,0.10 +SAURASHTRA & KUTCH,1943,0.20,0.00,0.00,1.80,8.80,62.10,352.70,13.40,71.70,15.80,0.10,0.00,526.60,0.20,10.60,499.90,15.90 +SAURASHTRA & KUTCH,1944,0.90,0.00,2.10,0.00,4.00,70.00,429.50,196.40,13.10,0.30,0.00,1.30,717.60,0.90,6.10,708.90,1.60 +SAURASHTRA & KUTCH,1945,10.00,0.00,0.00,0.70,0.40,120.90,328.30,102.90,69.10,0.80,0.00,0.00,633.10,10.00,1.10,621.20,0.80 +SAURASHTRA & KUTCH,1946,0.00,0.40,0.00,0.90,3.20,137.10,134.30,156.50,30.30,1.80,8.20,0.60,473.40,0.40,4.10,458.30,10.60 +SAURASHTRA & KUTCH,1947,0.00,0.00,0.00,64.40,0.00,1.20,79.10,260.40,151.60,2.10,0.00,0.00,558.80,0.00,64.40,492.20,2.10 +SAURASHTRA & KUTCH,1948,8.20,0.00,0.00,0.00,0.40,13.40,19.40,74.70,72.60,34.00,23.50,1.40,247.70,8.20,0.40,180.10,59.00 +SAURASHTRA & KUTCH,1949,0.00,0.10,0.00,0.00,0.90,13.30,236.50,231.80,55.90,3.40,0.30,0.00,542.30,0.10,0.90,537.60,3.70 +SAURASHTRA & KUTCH,1950,0.20,0.00,0.00,0.00,0.00,3.10,386.80,21.00,62.50,0.00,0.00,0.00,473.60,0.20,0.00,473.40,0.00 +SAURASHTRA & KUTCH,1951,0.00,0.00,0.80,0.80,1.40,40.00,128.30,87.70,6.90,0.40,18.80,0.00,285.20,0.00,3.00,263.00,19.20 +SAURASHTRA & KUTCH,1952,0.00,0.30,0.00,0.10,1.70,79.10,279.30,32.70,5.60,1.40,0.70,0.00,400.80,0.30,1.80,396.70,2.10 +SAURASHTRA & KUTCH,1953,6.50,0.30,0.30,0.00,0.00,66.30,112.10,450.30,69.70,1.00,0.00,0.00,706.60,6.80,0.40,698.40,1.00 +SAURASHTRA & KUTCH,1954,1.90,1.10,3.50,0.00,0.40,47.60,180.60,207.00,154.90,0.80,0.50,1.50,599.80,3.00,3.90,590.00,2.80 +SAURASHTRA & KUTCH,1955,0.00,0.00,0.90,0.00,0.90,26.30,26.50,140.80,181.00,8.30,0.00,0.40,385.10,0.00,1.80,374.60,8.70 +SAURASHTRA & KUTCH,1956,0.30,0.20,0.00,0.20,1.20,81.30,318.80,175.40,100.40,59.00,1.80,0.40,739.10,0.50,1.40,675.90,61.20 +SAURASHTRA & KUTCH,1957,1.70,0.00,0.10,0.10,1.50,78.60,197.70,90.40,8.00,1.50,18.10,0.80,398.50,1.70,1.70,374.80,20.30 +SAURASHTRA & KUTCH,1958,0.90,0.50,0.30,3.30,0.50,43.50,159.90,80.80,213.90,34.60,10.10,3.40,551.60,1.40,4.10,498.10,48.00 +SAURASHTRA & KUTCH,1959,0.90,0.00,0.00,2.20,1.70,66.50,549.10,69.00,210.20,116.70,4.60,0.00,1020.90,0.90,4.00,894.70,121.30 +SAURASHTRA & KUTCH,1960,0.10,0.00,0.50,0.00,5.90,122.40,132.50,42.90,32.40,0.50,0.00,0.00,337.20,0.10,6.40,330.20,0.60 +SAURASHTRA & KUTCH,1961,1.00,7.00,4.80,0.00,2.00,125.90,294.00,127.20,178.80,12.10,0.20,0.00,752.90,7.90,6.80,725.90,12.30 +SAURASHTRA & KUTCH,1962,0.00,0.00,0.70,0.70,2.80,24.00,136.90,103.20,90.30,0.30,12.70,0.20,371.80,0.00,4.10,354.40,13.20 +SAURASHTRA & KUTCH,1963,0.50,0.00,1.00,1.50,0.50,25.00,83.10,123.60,65.80,45.40,32.50,0.20,379.10,0.50,3.00,297.50,78.10 +SAURASHTRA & KUTCH,1964,0.20,0.00,0.00,0.00,1.60,105.50,168.40,184.90,78.80,0.10,0.00,0.00,539.50,0.20,1.60,537.60,0.10 +SAURASHTRA & KUTCH,1965,5.50,0.00,0.00,0.30,0.20,1.40,285.70,112.10,13.70,0.20,2.10,0.00,421.30,5.50,0.50,413.00,2.30 +SAURASHTRA & KUTCH,1966,0.20,0.00,0.00,0.00,0.20,74.70,167.30,6.80,76.50,0.70,0.10,0.00,326.50,0.20,0.20,325.40,0.80 +SAURASHTRA & KUTCH,1967,0.00,0.00,46.20,0.70,0.20,106.20,467.40,61.20,30.80,0.10,0.00,25.60,738.60,0.00,47.10,665.80,25.80 +SAURASHTRA & KUTCH,1968,1.10,1.00,0.90,0.00,0.60,11.00,104.90,165.20,24.20,5.10,0.60,0.00,314.60,2.00,1.50,305.30,5.80 +SAURASHTRA & KUTCH,1969,0.00,0.20,0.00,0.00,0.00,44.20,176.30,35.50,26.90,0.30,6.40,0.20,290.00,0.20,0.00,282.90,6.90 +SAURASHTRA & KUTCH,1970,0.10,0.10,0.40,0.20,7.60,70.20,215.70,327.50,196.00,17.70,0.10,0.00,835.80,0.20,8.30,809.50,17.80 +SAURASHTRA & KUTCH,1971,0.30,0.00,0.00,0.30,2.00,147.10,176.80,134.10,52.20,0.90,0.00,0.00,513.60,0.30,2.30,510.10,0.90 +SAURASHTRA & KUTCH,1972,0.10,3.40,0.00,0.00,0.30,87.00,98.80,24.90,7.20,0.40,0.00,0.00,222.10,3.40,0.30,217.90,0.40 +SAURASHTRA & KUTCH,1973,0.80,0.10,0.00,0.00,0.50,50.80,177.20,78.60,75.30,7.00,0.00,0.00,390.30,1.00,0.50,381.90,7.00 +SAURASHTRA & KUTCH,1974,0.00,0.00,0.00,0.20,10.30,16.10,56.40,26.10,45.60,29.60,0.00,0.40,184.70,0.00,10.50,144.20,30.00 +SAURASHTRA & KUTCH,1975,0.70,0.00,0.00,0.00,0.00,101.20,87.50,189.30,200.00,103.30,0.00,0.00,682.10,0.70,0.00,578.10,103.30 +SAURASHTRA & KUTCH,1976,1.00,0.10,1.00,0.00,0.00,103.70,237.80,188.20,64.80,2.30,26.60,0.00,625.50,1.10,1.10,594.50,28.90 +SAURASHTRA & KUTCH,1977,1.00,0.00,0.00,0.00,7.70,161.00,198.20,88.60,98.90,0.90,7.80,0.00,564.10,1.00,7.70,546.60,8.80 +SAURASHTRA & KUTCH,1978,0.00,0.70,0.00,2.50,0.00,157.40,104.20,170.30,11.10,9.70,32.10,0.50,488.60,0.70,2.50,443.10,42.30 +SAURASHTRA & KUTCH,1979,0.00,3.30,0.00,0.00,0.10,143.50,34.70,634.00,37.00,12.20,89.70,1.00,955.40,3.30,0.10,849.10,102.80 +SAURASHTRA & KUTCH,1980,0.30,0.20,0.00,0.00,0.00,321.80,231.60,58.10,15.10,0.10,0.90,7.80,635.80,0.40,0.00,626.60,8.80 +SAURASHTRA & KUTCH,1981,0.70,0.00,0.00,0.00,0.70,46.00,284.50,163.80,89.50,32.80,87.00,0.00,705.00,0.70,0.80,583.70,119.80 +SAURASHTRA & KUTCH,1982,0.10,0.00,0.00,0.30,20.50,5.20,136.70,114.10,16.90,0.70,106.70,0.00,401.30,0.10,20.80,272.90,107.40 +SAURASHTRA & KUTCH,1983,0.20,0.10,0.00,1.30,0.50,210.20,211.80,246.30,67.80,20.30,0.00,0.00,758.40,0.30,1.70,736.10,20.30 +SAURASHTRA & KUTCH,1984,0.00,0.00,0.00,0.00,0.00,57.70,116.70,153.20,116.10,0.00,0.00,0.00,443.70,0.00,0.00,443.70,0.00 +SAURASHTRA & KUTCH,1985,0.00,0.00,0.00,0.00,5.10,12.00,103.30,118.60,17.70,42.10,0.00,0.00,298.80,0.00,5.10,251.60,42.10 +SAURASHTRA & KUTCH,1986,0.00,0.00,0.20,0.00,2.20,167.80,30.40,93.00,4.80,0.00,0.00,0.10,298.50,0.00,2.30,296.00,0.10 +SAURASHTRA & KUTCH,1987,0.00,0.00,0.40,0.00,0.10,31.40,18.40,33.50,2.10,0.10,3.20,3.30,92.70,0.00,0.50,85.50,6.60 +SAURASHTRA & KUTCH,1988,0.00,0.00,0.00,1.10,0.10,12.70,495.80,110.80,131.00,0.80,0.00,0.00,752.30,0.00,1.10,750.30,0.80 +SAURASHTRA & KUTCH,1989,1.80,0.00,0.20,0.00,0.00,134.50,256.60,60.60,41.30,3.10,0.00,0.00,498.20,1.80,0.20,493.10,3.10 +SAURASHTRA & KUTCH,1990,0.00,2.30,0.40,0.00,5.90,32.90,16.90,259.40,70.10,18.80,0.10,1.10,407.90,2.30,6.30,379.30,20.00 +SAURASHTRA & KUTCH,1991,0.00,0.00,0.00,0.00,0.00,13.30,155.60,44.20,5.40,0.00,0.00,0.30,218.70,0.00,0.00,218.40,0.30 +SAURASHTRA & KUTCH,1992,1.80,0.20,0.00,0.00,0.10,45.10,343.20,111.90,88.70,9.50,0.20,0.00,600.70,2.00,0.10,588.90,9.70 +SAURASHTRA & KUTCH,1993,1.50,4.80,0.00,0.00,0.00,41.40,140.60,4.00,70.10,30.50,17.20,2.50,312.70,6.40,0.00,256.20,50.10 +SAURASHTRA & KUTCH,1994,1.00,0.00,0.00,0.00,0.00,99.40,403.10,137.50,231.60,0.20,0.00,0.00,872.80,1.00,0.00,871.60,0.20 +SAURASHTRA & KUTCH,1995,0.00,0.00,0.20,0.00,0.00,3.00,259.10,45.40,42.50,23.90,0.00,0.00,374.10,0.00,0.20,350.00,23.90 +SAURASHTRA & KUTCH,1996,0.40,0.00,0.00,0.10,0.00,137.10,162.10,23.90,11.80,39.00,0.00,0.00,374.40,0.40,0.20,334.90,39.00 +SAURASHTRA & KUTCH,1997,0.80,0.00,0.60,0.30,3.00,189.80,137.40,95.70,170.70,1.90,0.00,0.00,600.20,0.80,3.90,593.70,1.90 +SAURASHTRA & KUTCH,1998,0.00,0.00,0.00,0.00,0.00,109.10,149.60,94.40,62.10,150.00,1.60,0.00,566.90,0.00,0.00,415.20,151.60 +SAURASHTRA & KUTCH,1999,1.30,10.50,0.00,0.00,131.90,60.60,42.30,17.40,23.90,92.90,0.00,0.00,380.70,11.80,131.90,144.20,92.90 +SAURASHTRA & KUTCH,2000,0.00,0.00,0.00,0.00,2.90,5.40,224.70,46.20,4.50,2.20,0.00,0.10,286.10,0.00,2.90,280.90,2.30 +SAURASHTRA & KUTCH,2001,0.00,0.00,0.00,0.20,0.90,172.90,191.10,116.90,20.60,7.60,0.00,0.00,510.20,0.00,1.00,501.50,7.60 +SAURASHTRA & KUTCH,2002,0.00,0.00,0.00,0.00,0.00,166.40,8.00,117.50,15.10,0.20,0.20,0.60,308.10,0.00,0.00,307.00,1.00 +SAURASHTRA & KUTCH,2003,0.00,0.40,0.00,0.00,0.00,68.20,402.20,190.70,21.70,3.00,0.00,0.00,686.20,0.40,0.00,682.70,3.00 +SAURASHTRA & KUTCH,2004,0.20,0.00,0.00,0.00,13.60,95.00,90.00,227.70,36.10,19.70,0.00,0.00,482.20,0.20,13.60,448.60,19.80 +SAURASHTRA & KUTCH,2005,0.00,0.00,0.00,0.20,0.20,201.20,126.70,68.40,233.10,1.70,0.00,0.00,631.60,0.00,0.40,629.40,1.70 +SAURASHTRA & KUTCH,2006,0.00,0.00,1.90,0.00,0.00,66.20,373.40,189.80,68.20,1.40,0.30,0.60,701.80,0.00,1.90,697.70,2.30 +SAURASHTRA & KUTCH,2007,0.00,1.90,0.10,0.00,0.20,114.10,209.20,405.40,157.00,1.70,1.20,0.00,890.70,1.90,0.30,885.70,2.80 +SAURASHTRA & KUTCH,2008,0.10,0.10,0.10,0.50,0.00,96.00,150.30,115.10,231.60,5.80,0.60,7.70,607.90,0.20,0.60,593.00,14.10 +SAURASHTRA & KUTCH,2009,0.00,0.00,0.00,0.00,0.00,68.10,409.10,106.00,8.80,3.30,1.50,0.00,596.90,0.00,0.10,592.00,4.90 +SAURASHTRA & KUTCH,2010,0.10,0.00,0.00,0.00,0.10,71.10,393.80,391.30,187.60,11.60,64.30,0.00,1119.90,0.10,0.10,1043.70,75.90 +SAURASHTRA & KUTCH,2011,0.00,1.40,0.00,0.00,0.00,26.00,212.70,290.90,210.10,1.20,0.10,0.00,742.50,1.40,0.00,739.80,1.30 +SAURASHTRA & KUTCH,2012,0.00,0.00,0.00,0.20,0.10,22.40,34.70,34.50,228.50,2.40,0.00,1.00,323.80,0.00,0.20,320.10,3.40 +SAURASHTRA & KUTCH,2013,1.70,0.20,0.10,8.50,0.10,127.70,171.20,83.30,260.20,28.60,0.00,0.00,681.80,1.90,8.70,642.50,28.60 +SAURASHTRA & KUTCH,2014,0.30,0.00,0.10,0.50,2.10,17.30,137.70,118.80,99.20,5.20,2.70,0.00,383.90,0.30,2.70,373.00,7.80 +SAURASHTRA & KUTCH,2015,0.90,0.00,4.40,2.10,0.80,112.60,226.70,10.60,79.90,3.30,0.30,0.00,441.70,0.90,7.40,429.80,3.60 +KONKAN & GOA,1901,5.60,0.10,0.40,35.70,19.90,746.10,1075.50,748.00,117.40,38.60,5.40,0.10,2792.90,5.70,56.00,2687.00,44.10 +KONKAN & GOA,1902,0.30,0.00,0.00,0.40,7.60,428.20,943.60,515.10,613.80,74.30,42.70,48.00,2673.90,0.30,8.00,2500.60,165.00 +KONKAN & GOA,1903,0.00,0.00,0.10,0.00,201.10,470.50,1298.60,673.90,285.10,140.80,12.40,1.70,3084.30,0.00,201.20,2728.20,154.90 +KONKAN & GOA,1904,0.00,0.10,6.60,6.30,4.60,975.80,771.70,321.30,217.00,90.30,0.00,0.00,2393.70,0.10,17.50,2285.80,90.30 +KONKAN & GOA,1905,0.10,0.10,0.00,0.40,8.60,293.70,770.60,305.50,208.30,83.50,12.10,0.00,1682.80,0.20,9.00,1578.10,95.50 +KONKAN & GOA,1906,5.00,0.90,0.00,0.00,2.90,547.40,1090.90,506.70,222.50,31.60,10.20,0.70,2418.90,5.90,2.90,2367.50,42.60 +KONKAN & GOA,1907,1.70,1.00,0.00,20.10,0.00,583.10,1170.90,811.50,164.00,11.40,1.90,0.90,2766.60,2.80,20.10,2729.50,14.20 +KONKAN & GOA,1908,0.90,1.10,0.00,2.30,1.00,440.00,1391.80,649.80,222.40,24.60,1.60,0.00,2735.50,2.00,3.30,2704.00,26.20 +KONKAN & GOA,1909,0.10,0.00,0.10,0.30,7.80,759.50,1301.80,381.50,384.40,17.50,7.40,0.10,2860.50,0.10,8.20,2827.20,25.00 +KONKAN & GOA,1910,0.00,0.00,0.30,0.00,2.60,832.40,407.80,763.20,374.60,121.40,41.70,0.00,2544.00,0.00,2.90,2378.00,163.10 +KONKAN & GOA,1911,0.20,0.00,3.20,0.00,17.10,543.60,585.60,750.30,175.50,34.20,21.40,3.60,2134.70,0.20,20.40,2055.00,59.10 +KONKAN & GOA,1912,0.00,0.00,0.00,4.10,28.90,671.00,1242.90,541.70,135.20,71.90,97.50,0.00,2793.30,0.00,33.00,2590.80,169.50 +KONKAN & GOA,1913,0.00,0.00,0.00,1.30,18.70,897.90,1074.30,321.80,194.40,107.50,1.60,0.00,2617.40,0.00,20.00,2488.40,109.10 +KONKAN & GOA,1914,0.00,0.80,0.00,0.80,1.60,706.90,1370.30,797.60,549.90,21.90,11.20,3.60,3464.60,0.80,2.50,3424.70,36.60 +KONKAN & GOA,1915,0.00,4.70,5.90,10.20,7.70,845.10,734.40,355.10,412.20,137.40,12.80,0.30,2525.80,4.80,23.80,2346.70,150.50 +KONKAN & GOA,1916,0.00,0.00,0.00,2.40,39.90,832.70,765.60,851.10,620.10,204.70,86.10,0.00,3402.60,0.00,42.30,3069.50,290.80 +KONKAN & GOA,1917,0.00,18.40,1.20,0.30,17.50,807.60,675.10,902.50,567.70,408.00,32.60,0.00,3430.90,18.40,19.00,2952.90,440.60 +KONKAN & GOA,1918,0.10,0.00,3.30,0.10,345.40,334.10,424.70,578.10,123.60,5.80,52.00,0.00,1867.30,0.10,348.80,1460.40,57.90 +KONKAN & GOA,1919,2.50,0.00,0.00,0.00,9.60,643.60,1120.20,643.50,276.80,124.50,20.60,10.50,2851.70,2.50,9.60,2684.00,155.60 +KONKAN & GOA,1920,14.00,1.20,0.00,12.00,5.10,424.90,824.00,360.80,226.70,52.40,2.90,0.00,1924.10,15.30,17.20,1836.40,55.30 +KONKAN & GOA,1921,0.30,0.00,0.10,4.80,0.00,658.10,1102.50,611.80,450.40,57.50,13.70,0.00,2899.20,0.30,5.00,2822.70,71.20 +KONKAN & GOA,1922,0.00,0.00,0.00,6.30,13.40,774.30,1290.60,339.30,261.10,41.40,90.00,1.20,2817.50,0.00,19.70,2665.30,132.50 +KONKAN & GOA,1923,0.00,0.50,4.70,1.30,7.80,259.40,1643.90,480.70,363.70,8.30,0.10,0.00,2770.50,0.50,13.80,2747.70,8.40 +KONKAN & GOA,1924,0.00,0.00,0.10,0.10,0.40,522.50,932.20,641.70,324.40,19.00,3.80,0.00,2444.30,0.00,0.60,2420.90,22.80 +KONKAN & GOA,1925,0.10,0.00,7.40,5.20,121.00,800.90,655.50,501.50,120.40,74.60,18.60,0.00,2305.10,0.10,133.60,2078.30,93.20 +KONKAN & GOA,1926,31.80,0.00,0.00,0.00,1.50,306.10,1203.60,1149.60,432.90,39.20,1.10,0.00,3165.90,31.80,1.50,3092.30,40.30 +KONKAN & GOA,1927,0.00,0.20,0.20,0.00,5.50,785.60,1030.30,416.60,240.90,178.80,87.30,1.60,2747.00,0.20,5.70,2473.40,267.60 +KONKAN & GOA,1928,0.00,1.30,0.20,3.10,1.10,657.00,1159.40,939.90,264.50,137.90,7.70,0.40,3172.40,1.30,4.40,3020.80,145.90 +KONKAN & GOA,1929,1.00,0.00,3.20,14.90,6.20,773.80,767.60,516.00,250.90,152.40,11.20,12.10,2509.40,1.00,24.30,2308.30,175.80 +KONKAN & GOA,1930,0.00,0.20,0.10,0.30,12.50,1024.90,690.50,427.30,542.60,136.20,10.60,0.60,2845.70,0.20,12.80,2685.30,147.40 +KONKAN & GOA,1931,0.00,0.00,0.10,1.70,1.80,344.90,1867.20,944.90,307.10,458.90,51.50,21.20,3999.30,0.00,3.60,3464.20,531.50 +KONKAN & GOA,1932,0.50,0.00,0.00,2.90,45.90,435.30,1248.10,485.60,456.20,259.10,21.10,8.20,2962.90,0.50,48.70,2625.20,288.50 +KONKAN & GOA,1933,0.00,0.10,1.60,15.30,129.20,816.50,909.00,758.60,485.80,179.70,19.20,28.40,3343.40,0.10,146.20,2969.80,227.30 +KONKAN & GOA,1934,0.70,0.00,0.30,2.70,0.70,1060.20,893.00,870.70,329.70,60.30,53.50,0.50,3272.30,0.70,3.70,3153.50,114.40 +KONKAN & GOA,1935,0.20,0.10,0.00,0.00,0.00,700.30,879.90,466.50,419.70,64.30,11.00,0.60,2542.70,0.30,0.10,2466.40,75.90 +KONKAN & GOA,1936,0.00,0.00,0.10,0.30,23.20,993.20,712.90,534.90,376.20,62.10,79.10,1.30,2783.40,0.00,23.70,2617.20,142.50 +KONKAN & GOA,1937,0.00,4.00,0.10,53.50,2.40,826.90,1492.90,270.10,378.10,159.20,4.00,0.70,3192.00,4.00,56.00,2968.00,163.90 +KONKAN & GOA,1938,0.00,0.40,4.00,2.10,55.20,1118.10,908.20,634.80,345.60,400.00,27.00,0.10,3495.50,0.40,61.30,3006.70,427.10 +KONKAN & GOA,1939,0.20,0.00,0.40,5.80,0.10,509.60,1116.80,817.10,227.90,58.00,22.70,0.00,2758.60,0.20,6.30,2671.40,80.80 +KONKAN & GOA,1940,4.80,6.10,2.80,1.90,7.90,668.30,1105.90,987.10,328.90,172.70,26.70,0.60,3313.70,10.80,12.60,3090.20,200.00 +KONKAN & GOA,1941,17.10,0.20,0.10,1.00,5.10,602.70,718.00,282.00,194.60,61.40,0.20,7.30,1889.60,17.30,6.20,1797.30,68.80 +KONKAN & GOA,1942,0.00,0.00,0.00,3.30,2.60,987.60,1386.30,536.70,312.00,37.10,1.40,12.40,3279.50,0.00,5.90,3222.70,51.00 +KONKAN & GOA,1943,3.60,0.00,0.10,0.00,200.00,788.00,1313.10,281.80,468.40,168.40,27.80,0.00,3251.30,3.60,200.10,2851.30,196.20 +KONKAN & GOA,1944,0.10,0.00,0.70,0.00,17.50,542.50,1456.00,658.60,85.70,177.00,14.10,0.00,2952.10,0.10,18.20,2742.70,191.10 +KONKAN & GOA,1945,8.80,0.00,0.00,0.90,1.10,733.20,1394.20,709.40,348.40,44.90,3.60,0.00,3244.50,8.80,2.00,3185.20,48.50 +KONKAN & GOA,1946,0.00,0.00,0.00,14.40,30.00,787.90,1085.70,878.90,334.00,47.30,170.40,10.40,3358.90,0.00,44.40,3086.50,228.00 +KONKAN & GOA,1947,4.90,0.00,5.80,67.30,7.50,398.30,1133.90,919.20,497.50,50.80,2.00,2.90,3090.10,4.90,80.60,2948.80,55.80 +KONKAN & GOA,1948,10.50,0.00,0.20,2.30,7.20,599.30,1080.40,797.30,376.60,77.70,168.10,0.00,3119.80,10.50,9.80,2853.60,245.90 +KONKAN & GOA,1949,0.20,0.00,0.10,1.30,128.90,442.20,1147.30,594.70,782.30,108.30,8.40,0.00,3213.70,0.20,130.30,2966.40,116.70 +KONKAN & GOA,1950,0.00,0.00,0.20,0.20,21.30,364.10,1336.10,302.60,777.50,119.10,8.10,0.00,2929.20,0.00,21.70,2780.30,127.10 +KONKAN & GOA,1951,0.00,0.00,2.50,9.80,22.70,730.40,1114.70,507.60,129.00,296.30,36.30,0.00,2849.40,0.00,35.10,2481.70,332.60 +KONKAN & GOA,1952,0.00,0.00,0.00,2.80,23.50,729.40,1013.10,512.30,87.50,151.50,0.00,1.80,2522.00,0.00,26.30,2342.30,153.40 +KONKAN & GOA,1953,0.00,0.00,0.00,15.40,0.00,910.30,1321.90,713.30,210.50,156.10,0.20,0.00,3327.80,0.00,15.40,3156.00,156.30 +KONKAN & GOA,1954,0.00,2.40,3.50,7.20,3.90,581.50,1470.80,912.80,750.70,48.90,0.10,8.60,3790.30,2.40,14.60,3715.70,57.50 +KONKAN & GOA,1955,0.20,0.00,2.20,11.60,34.20,779.20,995.90,1299.80,463.00,297.10,14.20,0.00,3897.50,0.20,48.00,3537.90,311.30 +KONKAN & GOA,1956,0.00,0.30,0.00,5.80,176.40,780.20,1325.80,700.80,433.40,195.00,46.00,0.00,3663.70,0.30,182.20,3240.20,241.00 +KONKAN & GOA,1957,0.00,0.00,0.00,1.70,30.60,593.80,1175.00,1051.70,130.60,86.60,52.90,0.60,3123.50,0.00,32.30,2951.10,140.10 +KONKAN & GOA,1958,0.20,0.10,0.20,9.00,34.80,1044.50,1280.20,1177.90,383.70,54.80,14.70,0.20,4000.20,0.30,44.00,3886.30,69.70 +KONKAN & GOA,1959,0.00,0.00,0.00,6.00,36.20,750.10,1357.10,690.90,521.80,201.40,24.80,0.30,3588.60,0.00,42.20,3319.90,226.50 +KONKAN & GOA,1960,0.00,0.00,0.00,1.10,81.00,920.10,1140.90,501.80,285.10,82.00,15.30,0.50,3027.70,0.00,82.10,2847.80,97.70 +KONKAN & GOA,1961,0.00,5.20,0.00,2.30,182.20,738.00,1543.30,712.60,486.10,248.90,2.40,0.00,3921.00,5.20,184.50,3480.10,251.30 +KONKAN & GOA,1962,0.20,0.00,0.10,0.70,129.50,435.50,1355.10,880.40,525.90,48.80,12.80,96.20,3485.10,0.20,130.30,3196.80,157.90 +KONKAN & GOA,1963,0.00,0.10,0.10,1.10,7.60,594.50,1178.80,1414.70,306.30,91.90,11.70,0.00,3606.80,0.10,8.80,3494.30,103.60 +KONKAN & GOA,1964,0.00,0.00,0.00,0.90,5.20,690.30,908.30,1031.80,378.90,158.00,18.90,0.40,3192.70,0.00,6.10,3009.40,177.30 +KONKAN & GOA,1965,3.40,0.00,0.00,5.70,0.10,817.60,1393.70,608.80,147.50,8.90,2.20,83.70,3071.50,3.40,5.80,2967.60,94.80 +KONKAN & GOA,1966,0.00,0.00,0.00,0.20,64.70,370.00,1168.80,224.10,443.50,43.90,111.30,1.10,2427.50,0.00,64.80,2206.40,156.30 +KONKAN & GOA,1967,0.00,0.00,7.70,0.80,7.50,768.90,1109.20,416.90,317.10,109.60,0.70,14.00,2752.30,0.00,16.00,2612.00,124.20 +KONKAN & GOA,1968,0.00,0.30,0.10,6.00,1.50,556.90,1134.70,318.70,202.10,130.40,8.60,0.00,2359.40,0.30,7.60,2212.40,139.00 +KONKAN & GOA,1969,0.00,0.00,0.00,1.10,2.40,666.50,1282.20,527.10,586.00,37.90,23.20,0.90,3127.40,0.00,3.50,3061.80,62.10 +KONKAN & GOA,1970,0.00,0.00,0.00,1.50,74.50,963.30,993.80,1164.80,312.70,85.80,0.00,0.20,3596.60,0.00,76.00,3434.60,86.00 +KONKAN & GOA,1971,0.00,0.00,0.00,0.30,85.10,1011.90,650.80,602.00,362.60,40.40,0.90,0.00,2754.00,0.00,85.40,2627.20,41.30 +KONKAN & GOA,1972,0.00,0.10,0.00,0.60,10.70,662.00,731.60,293.90,138.80,8.50,26.80,0.00,1873.00,0.10,11.30,1826.20,35.40 +KONKAN & GOA,1973,0.00,0.40,0.00,0.00,3.10,455.90,922.10,910.60,437.40,103.60,2.90,0.20,2836.30,0.40,3.20,2726.10,106.70 +KONKAN & GOA,1974,0.70,0.00,0.00,6.80,73.90,508.20,1133.00,774.40,351.10,238.60,0.00,0.00,3086.70,0.70,80.70,2766.70,238.60 +KONKAN & GOA,1975,0.00,0.10,0.00,1.00,13.60,856.90,1027.00,848.00,556.00,192.70,20.20,0.00,3515.40,0.10,14.60,3287.80,212.90 +KONKAN & GOA,1976,0.00,0.00,1.60,0.40,4.50,635.10,1279.20,690.10,360.70,20.30,71.00,0.00,3063.00,0.00,6.60,2965.10,91.30 +KONKAN & GOA,1977,0.00,0.00,0.80,1.30,10.30,583.00,1384.60,580.50,386.90,77.00,78.80,0.20,3103.30,0.00,12.30,2935.00,156.00 +KONKAN & GOA,1978,0.00,0.00,0.00,8.30,86.60,946.20,907.20,575.40,243.00,67.20,48.80,2.80,2885.60,0.00,95.00,2671.80,118.80 +KONKAN & GOA,1979,0.00,0.70,0.10,0.00,0.30,653.10,797.20,687.20,266.50,26.80,77.30,0.00,2509.20,0.70,0.40,2404.00,104.10 +KONKAN & GOA,1980,0.00,0.00,0.00,3.50,2.90,877.70,749.90,851.80,166.40,20.70,26.10,25.20,2724.30,0.00,6.40,2645.80,72.10 +KONKAN & GOA,1981,0.60,0.00,0.00,0.10,4.20,773.90,1073.00,708.60,480.60,59.10,24.50,0.10,3124.70,0.60,4.30,3036.10,83.70 +KONKAN & GOA,1982,0.00,0.00,0.00,0.00,14.50,558.40,987.10,810.80,216.30,42.10,69.60,0.00,2698.90,0.00,14.50,2572.60,111.70 +KONKAN & GOA,1983,0.00,0.00,0.00,0.30,0.40,655.30,1073.20,1331.20,638.80,102.40,9.70,3.20,3814.50,0.00,0.70,3698.60,115.20 +KONKAN & GOA,1984,0.00,0.20,0.10,0.90,0.30,728.00,1090.50,421.40,220.50,118.70,2.90,0.30,2583.60,0.20,1.20,2460.40,121.80 +KONKAN & GOA,1985,0.00,0.00,0.00,0.40,23.30,1000.00,921.30,663.10,153.10,204.80,2.50,0.00,2968.50,0.00,23.70,2737.50,207.30 +KONKAN & GOA,1986,0.00,0.00,0.00,0.10,1.00,777.20,543.20,670.90,65.00,15.60,53.60,1.00,2127.70,0.00,1.10,2056.30,70.30 +KONKAN & GOA,1987,0.00,0.00,0.00,0.60,9.00,612.00,832.20,835.60,149.30,166.80,20.20,9.30,2635.00,0.00,9.60,2429.10,196.30 +KONKAN & GOA,1988,0.00,0.00,0.00,4.30,1.30,506.10,1432.10,664.40,617.90,66.90,0.00,0.00,3293.00,0.00,5.60,3220.60,66.90 +KONKAN & GOA,1989,0.00,0.00,0.60,1.00,4.00,733.10,943.00,704.90,300.50,80.70,3.60,0.00,2771.50,0.00,5.60,2681.50,84.40 +KONKAN & GOA,1990,0.00,0.00,0.10,0.00,193.90,802.10,873.70,1164.20,323.20,190.00,20.80,0.00,3568.00,0.00,194.00,3163.20,210.80 +KONKAN & GOA,1991,0.00,0.00,0.00,6.40,14.70,759.20,1461.40,598.80,92.70,20.30,0.80,0.30,2954.60,0.00,21.20,2912.10,21.40 +KONKAN & GOA,1992,0.00,0.00,0.00,0.00,6.20,493.00,822.90,1093.10,343.40,79.00,2.80,0.00,2840.40,0.00,6.20,2752.40,81.80 +KONKAN & GOA,1993,0.00,0.00,0.60,0.10,11.40,587.70,1394.10,648.70,597.20,227.60,9.40,4.00,3480.90,0.00,12.10,3227.80,241.00 +KONKAN & GOA,1994,1.30,0.00,0.00,12.50,11.70,784.80,1168.50,654.40,406.50,137.90,2.20,0.00,3179.80,1.30,24.20,3014.10,140.10 +KONKAN & GOA,1995,3.50,0.00,0.00,3.30,15.30,345.90,1171.20,606.50,419.50,196.50,4.40,0.00,2766.00,3.50,18.60,2543.00,200.90 +KONKAN & GOA,1996,0.10,0.00,0.00,0.60,1.40,535.70,1232.00,594.60,308.40,245.90,1.20,0.90,2920.70,0.10,1.90,2670.80,248.00 +KONKAN & GOA,1997,2.60,0.00,0.80,1.80,0.20,757.90,1072.60,847.60,215.20,21.80,47.10,59.60,3027.20,2.60,2.80,2893.40,128.50 +KONKAN & GOA,1998,0.00,0.00,0.00,0.00,9.70,671.30,909.10,758.30,561.80,280.00,44.30,0.10,3234.70,0.00,9.70,2900.60,324.40 +KONKAN & GOA,1999,0.00,0.00,0.00,0.00,67.10,978.70,1105.10,283.70,297.10,179.70,0.70,0.00,2912.10,0.00,67.10,2664.50,180.40 +KONKAN & GOA,2000,1.20,0.00,0.00,0.90,190.30,739.40,1200.40,789.50,111.90,91.80,1.60,6.20,3133.20,1.20,191.20,2841.20,99.70 +KONKAN & GOA,2001,5.60,0.00,0.00,2.80,59.60,540.10,873.40,611.30,207.90,91.60,3.10,0.00,2395.40,5.60,62.40,2232.70,94.70 +KONKAN & GOA,2002,0.00,0.00,0.10,2.80,9.40,942.00,452.80,834.50,217.10,75.30,3.00,0.30,2537.20,0.00,12.30,2446.40,78.60 +KONKAN & GOA,2003,0.50,0.60,0.80,1.20,11.20,865.30,1013.90,593.70,298.70,54.40,1.90,0.00,2842.30,1.20,13.20,2771.60,56.30 +KONKAN & GOA,2004,0.00,0.00,0.00,10.40,46.90,678.60,902.30,1011.50,293.30,32.90,10.20,0.00,2985.90,0.00,57.20,2885.50,43.10 +KONKAN & GOA,2005,1.30,0.10,1.90,4.00,9.80,730.20,1340.90,772.20,678.80,76.50,0.00,0.10,3615.70,1.40,15.60,3522.20,76.60 +KONKAN & GOA,2006,0.00,0.00,9.90,0.00,211.80,683.10,1066.20,886.40,399.90,202.40,22.50,0.00,3482.20,0.00,221.70,3035.60,224.90 +KONKAN & GOA,2007,0.00,0.00,0.10,3.30,33.40,939.30,841.30,980.20,609.00,45.60,16.00,0.10,3468.50,0.00,36.90,3369.90,61.70 +KONKAN & GOA,2008,0.00,0.10,31.50,0.30,11.10,798.50,766.60,833.10,551.20,57.30,0.90,2.40,3053.10,0.10,43.00,2949.30,60.60 +KONKAN & GOA,2009,0.00,0.00,0.30,0.10,5.60,330.60,1271.20,292.90,387.50,307.40,121.00,0.00,2716.60,0.00,5.90,2282.20,428.50 +KONKAN & GOA,2010,2.70,0.00,0.00,1.50,8.20,680.80,1405.30,850.00,531.30,190.20,106.70,1.40,3778.10,2.70,9.70,3467.40,298.30 +KONKAN & GOA,2011,0.00,0.00,0.00,3.40,1.10,857.00,1384.10,987.90,468.30,120.30,3.10,0.00,3825.20,0.00,4.50,3697.30,123.50 +KONKAN & GOA,2012,0.00,0.00,0.00,0.60,1.10,633.00,928.50,762.50,515.30,175.10,2.30,0.00,3018.40,0.00,1.70,2839.30,177.40 +KONKAN & GOA,2013,1.80,5.40,0.10,0.10,18.50,1028.30,1478.50,497.60,340.70,149.30,2.10,1.50,3524.00,7.30,18.70,3345.20,152.80 +KONKAN & GOA,2014,1.30,5.30,1.80,0.70,21.30,238.20,1293.20,658.00,419.50,98.70,8.00,11.70,2757.50,6.60,23.80,2608.80,118.40 +KONKAN & GOA,2015,2.70,0.00,36.80,3.60,11.30,764.00,526.50,377.30,240.90,91.40,27.30,0.00,2082.00,2.70,51.70,1908.70,118.80 +MADHYA MAHARASHTRA,1901,18.80,0.60,7.70,36.60,30.40,107.70,215.90,194.10,83.70,68.70,4.40,0.50,769.00,19.40,74.70,601.40,73.50 +MADHYA MAHARASHTRA,1902,7.80,0.00,0.10,5.00,9.80,102.60,210.90,114.50,169.50,60.40,40.50,62.90,784.00,7.80,14.90,597.50,163.80 +MADHYA MAHARASHTRA,1903,7.60,0.00,0.00,3.20,77.20,86.30,281.80,155.50,142.30,74.20,7.60,2.20,837.90,7.60,80.40,665.90,84.10 +MADHYA MAHARASHTRA,1904,0.40,4.70,1.70,3.00,18.70,114.60,126.50,59.50,183.00,91.10,0.00,0.40,603.50,5.10,23.40,483.60,91.40 +MADHYA MAHARASHTRA,1905,0.00,1.20,0.00,2.30,23.60,65.00,252.80,79.00,52.60,52.90,8.30,0.00,537.80,1.20,25.90,449.50,61.20 +MADHYA MAHARASHTRA,1906,10.50,0.80,0.00,0.10,9.30,184.80,199.30,205.00,88.80,19.10,15.50,11.10,744.30,11.30,9.40,677.80,45.80 +MADHYA MAHARASHTRA,1907,0.50,3.70,1.50,54.50,0.60,118.00,262.30,267.80,94.10,7.60,3.60,0.90,815.10,4.20,56.60,742.30,12.10 +MADHYA MAHARASHTRA,1908,0.30,0.00,4.70,6.30,5.80,85.10,263.00,169.90,166.60,16.30,4.00,0.00,722.00,0.30,16.80,684.60,20.30 +MADHYA MAHARASHTRA,1909,1.20,0.10,0.70,1.40,38.50,179.60,247.00,101.60,146.20,31.10,3.10,4.70,755.20,1.30,40.60,674.40,38.90 +MADHYA MAHARASHTRA,1910,0.00,0.00,1.00,0.00,13.10,204.60,172.00,228.60,195.70,70.00,30.20,0.00,915.20,0.00,14.00,800.90,100.30 +MADHYA MAHARASHTRA,1911,2.00,0.10,2.20,0.20,12.00,136.90,137.70,153.20,29.90,23.60,42.90,3.80,544.30,2.10,14.30,457.60,70.30 +MADHYA MAHARASHTRA,1912,0.00,0.40,0.00,9.00,20.90,88.30,307.60,150.00,34.70,86.00,67.70,0.30,764.90,0.50,29.90,580.50,153.90 +MADHYA MAHARASHTRA,1913,0.00,0.20,0.00,8.40,34.00,259.90,210.80,86.60,82.80,43.70,0.60,5.50,732.50,0.20,42.40,640.10,49.80 +MADHYA MAHARASHTRA,1914,0.00,0.40,0.30,3.70,15.20,188.30,348.80,204.30,211.60,22.10,36.60,7.60,1039.00,0.40,19.20,953.00,66.30 +MADHYA MAHARASHTRA,1915,8.60,6.60,13.90,21.90,12.10,195.20,225.40,80.00,228.50,76.80,20.90,18.00,908.10,15.30,48.00,729.10,115.70 +MADHYA MAHARASHTRA,1916,0.00,0.20,0.40,4.90,55.20,144.80,257.60,185.90,217.50,136.80,69.10,0.10,1072.40,0.20,60.50,805.90,206.00 +MADHYA MAHARASHTRA,1917,0.10,20.00,4.80,7.70,15.60,174.30,120.60,187.00,205.20,169.50,33.40,0.00,938.20,20.10,28.10,687.10,203.00 +MADHYA MAHARASHTRA,1918,5.10,0.60,2.60,1.00,90.50,51.70,68.40,112.40,55.10,13.30,30.00,7.50,438.00,5.60,94.00,287.60,50.80 +MADHYA MAHARASHTRA,1919,3.00,0.50,1.20,2.70,38.20,173.50,198.90,153.80,231.70,45.10,28.40,1.90,879.10,3.50,42.20,757.90,75.50 +MADHYA MAHARASHTRA,1920,41.50,0.20,0.10,9.70,8.00,120.70,185.90,94.10,113.80,26.00,0.30,0.00,600.30,41.70,17.80,514.50,26.30 +MADHYA MAHARASHTRA,1921,1.60,0.00,0.30,9.00,1.10,105.80,291.60,125.00,128.70,47.50,23.70,0.00,734.30,1.60,10.40,651.10,71.20 +MADHYA MAHARASHTRA,1922,18.30,2.60,0.00,16.70,27.40,161.70,218.20,79.40,97.10,41.20,141.10,1.40,805.20,20.90,44.10,556.50,183.70 +MADHYA MAHARASHTRA,1923,1.90,1.70,32.70,8.70,10.50,30.70,290.00,126.50,169.50,6.40,0.00,2.30,680.90,3.50,51.90,616.70,8.70 +MADHYA MAHARASHTRA,1924,2.10,0.00,2.80,19.70,4.60,80.30,173.80,220.60,185.80,49.70,3.60,5.30,748.20,2.10,27.10,660.40,58.60 +MADHYA MAHARASHTRA,1925,0.00,0.00,3.10,1.50,38.90,177.70,152.00,115.20,94.70,33.90,40.70,4.00,661.80,0.00,43.50,539.60,78.60 +MADHYA MAHARASHTRA,1926,34.30,0.60,0.10,0.20,11.20,85.90,230.60,258.00,147.70,8.10,8.30,2.20,787.10,34.90,11.50,722.20,18.60 +MADHYA MAHARASHTRA,1927,0.00,1.00,0.90,4.60,9.30,184.90,318.70,85.40,183.60,51.30,83.30,2.00,925.20,1.00,14.90,772.70,136.60 +MADHYA MAHARASHTRA,1928,0.10,10.30,3.70,8.00,0.30,143.30,217.70,159.60,209.00,62.50,3.10,14.10,831.70,10.30,12.00,729.70,79.60 +MADHYA MAHARASHTRA,1929,1.00,6.40,2.00,37.10,6.40,155.90,168.20,73.70,151.60,82.50,3.40,2.20,690.40,7.40,45.50,549.40,88.10 +MADHYA MAHARASHTRA,1930,0.00,0.00,0.70,3.20,29.80,178.10,233.70,106.50,247.00,87.40,37.70,5.00,929.10,0.00,33.60,765.30,130.10 +MADHYA MAHARASHTRA,1931,0.00,0.00,0.60,14.00,2.90,109.70,316.30,233.50,178.90,180.90,70.20,25.30,1132.40,0.00,17.50,838.50,276.30 +MADHYA MAHARASHTRA,1932,0.00,0.50,8.60,22.30,27.30,67.30,351.70,221.30,162.80,148.40,30.80,4.00,1045.10,0.50,58.30,803.10,183.20 +MADHYA MAHARASHTRA,1933,1.40,0.50,3.40,8.50,76.50,182.30,194.70,259.40,286.10,93.30,24.00,22.30,1152.40,1.90,88.40,922.50,139.60 +MADHYA MAHARASHTRA,1934,3.70,0.00,1.90,7.30,8.00,138.20,217.00,222.30,136.80,41.20,82.00,0.00,858.30,3.70,17.20,714.20,123.20 +MADHYA MAHARASHTRA,1935,2.50,0.00,0.00,3.70,1.40,149.60,208.60,195.50,126.70,119.40,7.70,3.90,819.00,2.60,5.10,680.30,131.00 +MADHYA MAHARASHTRA,1936,1.30,6.20,4.30,3.80,21.10,169.20,113.90,106.30,161.50,17.20,130.40,0.30,735.60,7.50,29.20,550.90,147.90 +MADHYA MAHARASHTRA,1937,0.00,2.00,2.00,47.70,4.70,146.70,319.40,63.60,219.90,96.10,1.30,11.00,914.40,2.00,54.40,749.50,108.40 +MADHYA MAHARASHTRA,1938,0.60,1.00,23.50,12.20,50.40,239.90,286.60,169.40,191.50,141.30,7.60,2.30,1126.30,1.60,86.10,887.40,151.20 +MADHYA MAHARASHTRA,1939,0.20,0.20,4.10,6.30,1.10,127.60,303.90,219.90,88.50,41.80,27.30,0.80,821.90,0.50,11.50,740.00,70.00 +MADHYA MAHARASHTRA,1940,1.30,1.80,0.50,16.50,15.80,191.30,215.90,188.70,132.00,95.20,30.10,4.20,893.20,3.10,32.80,727.90,129.40 +MADHYA MAHARASHTRA,1941,28.20,8.00,1.80,5.40,4.20,96.10,338.60,103.70,143.30,44.50,0.10,0.40,774.30,36.20,11.40,681.70,45.00 +MADHYA MAHARASHTRA,1942,0.20,2.50,0.20,6.70,10.00,213.30,364.70,191.60,93.80,20.00,1.30,36.90,941.30,2.80,17.00,863.40,58.20 +MADHYA MAHARASHTRA,1943,4.10,0.00,1.50,3.50,63.40,150.50,316.40,80.90,166.20,196.00,10.60,0.00,993.20,4.10,68.40,713.90,206.70 +MADHYA MAHARASHTRA,1944,0.80,0.70,10.30,0.10,21.40,132.20,421.70,227.80,142.10,115.30,13.60,0.00,1086.00,1.60,31.80,923.70,128.90 +MADHYA MAHARASHTRA,1945,4.20,0.00,0.00,9.80,5.20,125.60,263.70,209.00,132.40,37.10,6.30,0.00,793.40,4.20,15.00,730.70,43.40 +MADHYA MAHARASHTRA,1946,0.00,2.90,0.00,22.00,34.30,138.40,288.50,255.90,170.30,23.10,152.80,15.40,1103.60,2.90,56.30,853.10,191.30 +MADHYA MAHARASHTRA,1947,18.70,1.40,4.40,31.00,19.60,63.00,230.60,272.80,216.20,23.00,10.30,14.60,905.70,20.00,55.00,782.70,48.00 +MADHYA MAHARASHTRA,1948,16.90,0.70,4.30,7.60,8.90,191.00,239.60,181.40,162.00,66.60,137.10,0.10,1016.30,17.60,20.70,774.10,203.80 +MADHYA MAHARASHTRA,1949,0.00,0.00,2.00,4.80,58.40,102.00,201.30,174.00,323.10,82.20,5.70,0.00,953.70,0.00,65.30,800.40,87.90 +MADHYA MAHARASHTRA,1950,0.00,0.20,1.50,5.90,23.20,59.50,400.20,102.90,248.80,87.30,2.20,0.80,932.60,0.20,30.60,811.40,90.30 +MADHYA MAHARASHTRA,1951,0.10,0.00,0.50,9.30,29.50,150.10,250.20,136.30,71.70,128.90,20.10,0.00,797.00,0.10,39.40,608.30,149.10 +MADHYA MAHARASHTRA,1952,0.00,1.90,0.00,8.90,18.90,131.20,268.80,139.10,57.10,56.70,0.00,0.80,683.30,1.90,27.80,596.20,57.50 +MADHYA MAHARASHTRA,1953,1.20,0.00,0.10,24.50,2.00,186.30,216.50,220.20,126.80,116.10,0.00,0.00,893.60,1.20,26.50,749.80,116.10 +MADHYA MAHARASHTRA,1954,2.00,0.40,16.00,6.00,15.80,158.50,305.30,171.70,263.00,30.10,0.00,16.20,985.10,2.40,37.80,898.50,46.40 +MADHYA MAHARASHTRA,1955,3.20,0.00,6.80,12.20,25.80,140.90,149.60,254.30,218.90,159.00,10.40,0.00,981.00,3.20,44.70,763.70,169.40 +MADHYA MAHARASHTRA,1956,1.50,0.20,1.10,11.30,91.20,111.00,360.50,252.00,165.80,148.00,90.10,1.10,1233.80,1.70,103.60,889.30,239.20 +MADHYA MAHARASHTRA,1957,0.10,0.00,4.80,20.90,36.90,177.80,196.40,202.20,98.70,85.10,26.80,0.10,849.80,0.10,62.60,675.10,112.00 +MADHYA MAHARASHTRA,1958,1.60,0.00,5.40,23.60,32.90,101.90,393.30,296.60,112.10,57.40,29.20,0.10,1054.10,1.60,61.90,903.90,86.70 +MADHYA MAHARASHTRA,1959,2.40,0.00,0.00,16.80,39.30,174.70,344.30,199.00,202.70,84.70,54.90,0.10,1118.90,2.40,56.10,920.70,139.70 +MADHYA MAHARASHTRA,1960,3.60,0.00,3.00,5.10,61.30,146.40,235.00,138.00,229.00,44.90,18.80,0.80,885.90,3.60,69.50,748.40,64.40 +MADHYA MAHARASHTRA,1961,0.30,0.10,0.50,9.80,104.20,163.50,411.90,135.00,104.80,128.00,10.00,2.50,1070.50,0.40,114.50,815.20,140.40 +MADHYA MAHARASHTRA,1962,0.20,0.10,6.70,12.90,57.20,46.80,287.50,164.00,199.90,51.90,23.00,48.80,899.00,0.30,76.80,698.30,123.60 +MADHYA MAHARASHTRA,1963,0.80,4.30,14.00,12.00,23.30,138.60,252.30,268.70,72.70,93.50,19.10,0.60,899.90,5.10,49.30,732.30,113.20 +MADHYA MAHARASHTRA,1964,0.00,0.00,4.10,6.20,7.00,139.80,238.90,242.30,223.10,60.00,23.30,0.90,945.70,0.00,17.30,844.00,84.30 +MADHYA MAHARASHTRA,1965,5.80,0.20,0.30,10.20,12.30,82.90,380.70,200.30,54.80,10.00,4.60,28.50,790.70,6.10,22.90,718.70,43.00 +MADHYA MAHARASHTRA,1966,1.90,0.50,1.40,2.10,81.50,83.80,315.00,94.00,149.00,14.50,82.60,11.20,837.30,2.40,85.00,641.70,108.30 +MADHYA MAHARASHTRA,1967,0.00,0.10,4.70,13.30,7.80,130.40,367.40,139.00,146.70,43.10,2.10,58.60,913.00,0.10,25.80,783.40,103.70 +MADHYA MAHARASHTRA,1968,1.60,3.60,9.40,11.20,2.50,95.40,238.90,213.30,172.10,60.60,15.10,0.30,824.00,5.20,23.20,719.60,76.00 +MADHYA MAHARASHTRA,1969,0.20,0.00,1.40,5.80,4.00,140.10,307.10,248.30,234.00,20.10,22.30,0.90,984.10,0.20,11.30,929.50,43.20 +MADHYA MAHARASHTRA,1970,1.00,0.00,0.60,17.90,39.10,195.40,200.10,254.90,161.30,70.90,0.00,0.00,941.40,1.00,57.60,811.80,70.90 +MADHYA MAHARASHTRA,1971,0.00,0.00,0.10,3.80,43.30,155.60,124.90,204.00,185.60,56.00,0.00,0.00,773.20,0.00,47.10,670.10,56.00 +MADHYA MAHARASHTRA,1972,0.00,0.20,0.00,4.00,13.80,90.40,195.10,99.30,88.10,7.30,21.60,0.10,519.90,0.20,17.80,472.80,29.00 +MADHYA MAHARASHTRA,1973,0.00,3.00,1.80,3.20,10.10,124.70,312.00,243.90,172.80,104.80,3.90,0.40,980.60,3.00,15.10,853.40,109.10 +MADHYA MAHARASHTRA,1974,0.00,0.10,2.50,14.60,60.90,77.50,217.90,184.70,201.50,152.00,0.10,0.00,911.80,0.10,78.10,681.60,152.10 +MADHYA MAHARASHTRA,1975,0.40,1.10,0.10,1.00,15.40,165.60,228.00,223.20,242.80,158.30,4.80,0.00,1040.70,1.50,16.40,859.70,163.10 +MADHYA MAHARASHTRA,1976,0.10,0.00,6.00,3.40,3.30,283.60,315.60,240.80,87.70,14.30,68.90,2.20,1025.80,0.10,12.70,927.70,85.40 +MADHYA MAHARASHTRA,1977,0.00,0.10,7.10,9.90,31.30,209.00,262.50,150.40,94.60,64.40,112.10,5.70,947.20,0.20,48.30,716.50,182.30 +MADHYA MAHARASHTRA,1978,0.70,10.80,4.60,22.20,33.10,174.20,179.60,211.80,124.10,57.00,63.50,2.10,883.60,11.40,59.90,689.70,122.60 +MADHYA MAHARASHTRA,1979,3.50,1.80,5.30,1.00,7.10,129.70,194.50,299.00,249.90,46.00,88.40,0.50,1026.80,5.30,13.40,873.20,134.90 +MADHYA MAHARASHTRA,1980,0.00,0.00,1.50,16.10,8.60,279.20,197.40,286.60,89.20,14.70,29.80,16.40,939.50,0.00,26.10,852.50,60.90 +MADHYA MAHARASHTRA,1981,10.50,0.00,3.70,6.80,7.70,135.90,248.90,188.60,253.70,56.80,11.00,6.20,929.80,10.50,18.20,827.10,74.00 +MADHYA MAHARASHTRA,1982,2.10,0.20,0.20,6.30,33.80,114.60,187.70,186.60,119.50,55.20,45.80,0.00,751.90,2.30,40.30,608.40,101.00 +MADHYA MAHARASHTRA,1983,0.10,1.40,0.00,0.00,2.80,125.30,218.10,259.40,263.00,43.20,2.50,2.80,918.80,1.50,2.90,865.80,48.50 +MADHYA MAHARASHTRA,1984,0.60,11.20,3.70,4.60,0.60,109.60,260.80,140.00,133.20,109.10,4.70,1.70,779.90,11.80,8.90,643.70,115.50 +MADHYA MAHARASHTRA,1985,2.60,0.20,2.30,9.10,12.30,118.70,189.50,145.10,63.50,107.30,5.40,0.00,656.10,2.80,23.80,516.80,112.70 +MADHYA MAHARASHTRA,1986,1.60,2.70,0.30,2.40,8.60,200.80,126.10,157.90,101.00,8.90,19.40,14.60,644.10,4.30,11.20,585.70,42.80 +MADHYA MAHARASHTRA,1987,1.70,3.90,2.50,4.00,36.60,130.30,166.70,226.90,63.50,98.80,38.00,34.60,807.60,5.60,43.10,587.50,171.40 +MADHYA MAHARASHTRA,1988,0.00,0.10,0.10,18.80,7.60,111.00,314.10,165.70,324.80,27.50,1.90,4.90,976.60,0.10,26.50,915.60,34.30 +MADHYA MAHARASHTRA,1989,0.00,0.00,16.30,3.30,11.80,153.50,271.90,152.10,181.60,22.90,1.40,1.70,816.60,0.00,31.40,759.10,26.00 +MADHYA MAHARASHTRA,1990,2.60,0.20,0.00,0.20,78.20,150.50,227.30,294.60,94.90,154.90,17.20,1.90,1022.50,2.80,78.40,767.30,174.10 +MADHYA MAHARASHTRA,1991,0.00,0.10,0.30,12.20,19.20,293.80,318.10,143.90,67.30,21.00,4.70,0.10,880.50,0.10,31.80,823.00,25.70 +MADHYA MAHARASHTRA,1992,0.00,0.00,0.00,2.10,5.10,146.90,190.60,248.60,132.10,55.60,10.10,0.00,791.30,0.00,7.30,718.20,65.70 +MADHYA MAHARASHTRA,1993,0.00,0.10,3.00,5.70,11.50,147.60,289.20,162.40,162.60,192.80,10.70,34.30,1019.80,0.10,20.10,761.90,237.70 +MADHYA MAHARASHTRA,1994,3.10,0.10,0.60,21.80,23.80,253.20,332.90,188.40,118.90,66.20,12.60,0.00,1021.50,3.20,46.20,893.40,78.80 +MADHYA MAHARASHTRA,1995,20.00,0.20,5.40,6.70,24.00,63.60,253.10,82.70,194.30,121.50,4.90,0.00,776.40,20.30,36.00,593.70,126.40 +MADHYA MAHARASHTRA,1996,0.10,0.00,0.10,4.10,5.70,162.30,281.00,184.10,161.40,171.30,4.80,0.40,975.20,0.10,9.90,788.70,176.50 +MADHYA MAHARASHTRA,1997,3.30,0.00,2.40,15.30,6.50,180.20,239.90,295.50,91.70,57.70,68.80,39.60,1000.90,3.30,24.30,807.40,166.00 +MADHYA MAHARASHTRA,1998,0.20,0.00,0.60,2.50,18.40,147.10,264.10,226.40,257.20,162.50,22.10,0.00,1101.10,0.20,21.40,894.80,184.70 +MADHYA MAHARASHTRA,1999,0.00,6.70,0.00,0.10,39.20,225.30,262.50,85.40,169.00,177.60,0.00,0.00,965.70,6.70,39.30,742.10,177.70 +MADHYA MAHARASHTRA,2000,0.40,1.10,0.20,1.70,18.50,173.00,198.70,159.60,87.00,56.50,2.70,2.10,701.60,1.50,20.50,618.20,61.30 +MADHYA MAHARASHTRA,2001,4.40,0.00,0.30,4.70,8.40,157.90,179.30,160.90,137.30,125.50,5.70,0.50,785.10,4.40,13.50,635.40,131.80 +MADHYA MAHARASHTRA,2002,1.70,3.10,1.00,13.00,14.40,251.90,95.60,221.50,95.80,36.30,5.90,0.00,740.30,4.90,28.30,664.70,42.30 +MADHYA MAHARASHTRA,2003,0.80,2.20,1.50,5.70,15.10,210.80,208.70,178.40,116.20,29.50,3.50,0.10,772.60,3.00,22.30,714.20,33.10 +MADHYA MAHARASHTRA,2004,0.10,0.10,0.00,4.70,49.00,215.90,174.20,354.10,181.20,42.10,8.00,0.10,1029.50,0.20,53.70,925.50,50.20 +MADHYA MAHARASHTRA,2005,3.60,0.40,1.60,11.10,7.80,240.50,361.20,256.10,276.40,62.70,0.00,0.00,1221.30,4.00,20.50,1134.20,62.70 +MADHYA MAHARASHTRA,2006,0.00,0.00,7.10,0.20,42.30,205.30,416.40,421.70,217.00,60.10,25.50,0.00,1395.70,0.00,49.70,1260.40,85.60 +MADHYA MAHARASHTRA,2007,1.30,0.40,0.00,2.10,5.50,266.90,293.50,274.20,189.20,3.40,3.90,0.00,1040.40,1.70,7.60,1023.70,7.30 +MADHYA MAHARASHTRA,2008,0.00,0.00,18.10,0.60,1.10,107.90,157.90,257.60,312.40,56.60,3.70,0.90,916.90,0.00,19.90,835.90,61.10 +MADHYA MAHARASHTRA,2009,0.00,1.70,0.80,0.40,7.70,68.90,329.80,148.20,162.60,96.20,121.30,4.30,941.70,1.70,8.90,709.40,221.80 +MADHYA MAHARASHTRA,2010,2.90,0.10,0.90,2.30,5.40,185.60,280.90,233.20,165.60,77.10,73.40,0.20,1027.50,3.00,8.60,865.30,150.60 +MADHYA MAHARASHTRA,2011,0.00,0.30,0.30,5.00,2.90,133.30,261.40,238.10,148.40,62.80,0.00,0.00,852.60,0.30,8.20,781.30,62.80 +MADHYA MAHARASHTRA,2012,0.00,0.00,0.00,3.00,1.40,67.90,203.00,187.80,129.50,95.20,2.20,0.00,689.80,0.00,4.40,588.10,97.30 +MADHYA MAHARASHTRA,2013,0.10,5.30,0.80,5.70,6.00,212.40,311.80,147.00,210.30,57.80,4.00,1.30,962.40,5.30,12.40,881.50,63.10 +MADHYA MAHARASHTRA,2014,3.10,6.20,24.40,7.50,29.80,44.00,277.90,240.30,120.40,38.50,32.80,13.10,838.00,9.30,61.70,682.60,84.40 +MADHYA MAHARASHTRA,2015,1.40,0.80,41.20,9.60,24.40,177.00,111.70,67.20,146.60,48.30,16.20,0.10,644.50,2.20,75.30,502.50,64.50 +MATATHWADA,1901,15.80,3.30,32.10,48.50,26.50,193.10,184.10,249.80,74.00,81.60,0.00,0.00,908.70,19.10,107.10,700.90,81.60 +MATATHWADA,1902,1.30,0.00,0.40,7.20,0.80,52.40,120.90,85.20,273.30,61.30,84.40,56.90,744.10,1.30,8.40,531.80,202.70 +MATATHWADA,1903,2.60,0.80,0.00,1.70,58.30,104.40,264.20,281.90,173.30,139.90,0.30,5.30,1032.60,3.40,60.00,823.80,145.40 +MATATHWADA,1904,0.00,0.90,12.10,0.30,7.20,79.20,118.40,57.30,339.00,76.20,0.00,0.00,690.50,0.90,19.50,593.90,76.20 +MATATHWADA,1905,1.30,2.00,0.00,6.60,4.80,84.60,94.80,137.60,157.80,15.40,0.90,0.00,505.90,3.30,11.40,474.80,16.30 +MATATHWADA,1906,19.80,0.00,0.10,0.00,0.20,220.60,254.90,156.90,82.10,19.80,3.90,12.40,770.70,19.80,0.30,714.50,36.10 +MATATHWADA,1907,1.00,6.60,1.10,61.30,0.00,90.40,198.90,155.20,34.70,5.00,0.00,3.70,557.90,7.60,62.40,479.20,8.70 +MATATHWADA,1908,0.00,0.80,13.00,2.90,1.60,100.70,124.40,176.80,261.90,0.40,0.00,0.00,682.50,0.80,17.50,663.80,0.40 +MATATHWADA,1909,5.50,1.60,8.40,4.20,22.20,217.20,194.30,173.80,223.50,21.40,0.40,20.30,892.70,7.20,34.70,808.80,42.00 +MATATHWADA,1910,0.00,0.00,0.90,0.00,3.10,202.10,166.70,188.50,467.90,59.70,45.30,0.00,1134.40,0.00,4.00,1025.30,105.00 +MATATHWADA,1911,6.40,0.00,0.00,0.00,3.00,85.50,231.90,175.00,68.60,0.20,41.80,0.00,612.40,6.40,3.00,561.00,42.00 +MATATHWADA,1912,0.00,13.70,0.00,6.50,9.50,62.90,177.30,145.90,34.60,22.80,15.20,0.00,488.40,13.70,16.00,420.80,37.90 +MATATHWADA,1913,0.00,3.40,0.00,15.10,38.60,173.00,245.90,80.10,63.70,21.00,0.00,15.90,656.50,3.40,53.60,562.60,36.90 +MATATHWADA,1914,0.00,10.40,5.20,0.90,16.30,297.00,177.20,151.70,258.30,23.90,20.90,27.30,989.10,10.40,22.30,884.20,72.10 +MATATHWADA,1915,28.00,2.60,55.90,18.90,11.50,207.80,146.80,96.10,299.10,99.70,10.10,25.10,1001.60,30.60,86.30,749.80,134.90 +MATATHWADA,1916,0.00,5.00,3.00,1.70,43.60,149.80,374.70,139.70,305.10,115.00,40.30,0.00,1177.90,5.00,48.30,969.30,155.30 +MATATHWADA,1917,1.70,63.50,10.80,7.00,17.10,176.80,144.60,259.30,348.70,101.20,37.50,0.00,1168.30,65.20,35.00,929.40,138.80 +MATATHWADA,1918,0.70,0.00,0.20,0.60,121.40,93.50,65.90,78.60,89.90,4.70,9.80,20.70,486.10,0.70,122.20,327.90,35.30 +MATATHWADA,1919,11.90,0.90,0.30,5.10,11.20,149.70,119.90,85.30,228.00,28.00,21.40,1.10,662.80,12.80,16.60,583.00,50.40 +MATATHWADA,1920,27.00,0.00,0.30,3.10,2.10,60.40,50.50,86.10,127.70,3.80,0.00,0.00,361.20,27.00,5.60,324.80,3.80 +MATATHWADA,1921,2.10,0.00,0.00,2.40,0.00,151.00,174.80,70.20,113.40,41.90,6.60,0.00,562.40,2.10,2.40,509.40,48.50 +MATATHWADA,1922,54.40,1.90,0.00,2.80,19.30,220.30,119.50,39.40,206.40,47.80,122.70,1.40,836.10,56.40,22.20,585.60,171.90 +MATATHWADA,1923,4.00,0.50,55.90,9.90,0.60,20.50,300.40,72.00,300.10,0.20,0.00,0.80,765.00,4.50,66.40,693.00,1.00 +MATATHWADA,1924,3.20,0.00,7.70,8.10,0.20,49.20,130.40,180.70,200.20,59.80,9.80,13.40,662.70,3.20,16.00,560.50,83.00 +MATATHWADA,1925,0.00,0.00,0.00,0.00,30.10,130.30,84.30,173.60,73.40,38.10,75.10,0.00,604.90,0.00,30.10,461.60,113.20 +MATATHWADA,1926,70.40,0.00,0.00,1.50,17.60,85.00,126.30,254.10,147.60,0.00,11.20,1.80,715.50,70.40,19.10,613.00,13.00 +MATATHWADA,1927,0.00,3.20,10.20,7.50,0.00,173.00,143.50,67.00,175.70,37.20,126.90,0.40,744.60,3.20,17.70,559.20,164.50 +MATATHWADA,1928,0.00,28.30,9.50,2.00,0.00,160.50,141.70,135.00,288.10,58.80,0.00,1.70,825.80,28.30,11.60,725.40,60.50 +MATATHWADA,1929,0.00,31.60,0.90,21.60,1.70,165.80,104.70,48.20,179.00,51.70,0.00,4.20,609.40,31.60,24.10,497.70,55.90 +MATATHWADA,1930,0.00,1.00,1.70,13.00,4.10,132.20,49.60,75.70,281.00,64.60,17.10,0.30,640.30,1.00,18.80,538.50,82.00 +MATATHWADA,1931,0.00,0.00,3.80,4.40,7.70,134.50,295.10,142.80,242.10,175.10,70.10,13.10,1088.60,0.00,15.90,814.50,258.20 +MATATHWADA,1932,0.00,2.50,7.70,7.70,20.10,111.50,276.60,161.30,161.60,54.60,34.30,6.30,844.10,2.50,35.50,710.90,95.20 +MATATHWADA,1933,9.10,7.60,10.10,13.50,66.70,206.60,214.70,180.40,340.80,30.70,17.50,25.20,1122.90,16.70,90.30,942.50,73.30 +MATATHWADA,1934,6.00,0.00,0.00,11.90,1.30,95.80,248.60,256.80,159.90,16.80,79.50,0.00,876.60,6.00,13.20,761.20,96.30 +MATATHWADA,1935,7.20,0.50,0.00,14.00,0.40,191.10,197.40,196.60,223.50,84.10,5.80,1.40,922.10,7.70,14.40,808.70,91.30 +MATATHWADA,1936,0.00,26.60,7.80,10.70,33.30,137.50,92.20,119.30,145.10,9.10,139.90,6.20,727.80,26.60,51.80,494.10,155.20 +MATATHWADA,1937,0.00,13.20,11.30,43.80,1.10,75.80,277.30,35.80,152.80,106.40,0.30,20.50,738.20,13.20,56.20,541.70,127.20 +MATATHWADA,1938,0.00,8.80,17.70,15.60,27.30,253.30,260.10,146.50,256.10,86.80,0.20,0.30,1072.70,8.80,60.60,916.00,87.30 +MATATHWADA,1939,0.20,0.00,3.70,9.10,0.20,98.20,163.60,188.60,73.80,25.30,16.50,1.00,580.20,0.20,13.00,524.20,42.90 +MATATHWADA,1940,0.00,0.40,0.00,11.20,13.40,178.80,176.90,239.50,139.00,63.10,31.50,1.80,855.60,0.40,24.60,734.20,96.40 +MATATHWADA,1941,9.40,9.30,1.10,0.50,0.00,50.20,114.90,150.40,190.60,14.50,0.00,0.00,541.00,18.70,1.60,506.10,14.50 +MATATHWADA,1942,0.00,24.30,0.00,6.60,3.90,221.00,227.20,311.40,124.90,11.10,0.00,72.60,1003.00,24.30,10.50,884.50,83.70 +MATATHWADA,1943,7.10,0.10,1.50,0.20,47.60,187.40,105.80,62.30,282.90,156.50,1.00,0.00,852.40,7.20,49.30,638.40,157.50 +MATATHWADA,1944,0.40,12.20,32.60,0.00,5.20,85.10,230.70,116.00,167.00,94.50,15.20,0.00,759.00,12.60,37.80,598.90,109.70 +MATATHWADA,1945,1.80,0.00,0.00,5.00,0.30,129.60,140.20,154.40,161.90,27.70,1.30,0.00,622.50,1.80,5.40,586.20,29.00 +MATATHWADA,1946,0.00,9.70,1.90,21.30,16.30,165.60,212.40,114.50,180.10,6.80,98.20,21.90,848.70,9.70,39.40,672.60,127.00 +MATATHWADA,1947,28.00,22.00,7.70,11.50,2.00,65.70,164.50,276.00,253.30,13.60,2.10,8.60,854.80,49.90,21.20,759.40,24.20 +MATATHWADA,1948,7.90,2.20,4.10,3.30,1.90,179.40,218.70,110.10,221.60,21.10,176.10,0.00,946.40,10.10,9.30,729.80,197.20 +MATATHWADA,1949,2.90,0.50,0.10,0.70,35.20,188.90,189.50,89.80,369.10,32.30,5.20,0.00,914.20,3.40,36.00,837.30,37.60 +MATATHWADA,1950,0.00,11.90,4.10,0.40,7.10,67.60,141.10,113.90,271.00,38.80,0.00,1.60,657.40,11.90,11.50,593.60,40.40 +MATATHWADA,1951,0.40,0.00,6.20,10.60,11.20,159.50,271.00,101.30,89.30,78.40,3.50,0.00,731.40,0.40,28.00,621.10,81.90 +MATATHWADA,1952,0.20,18.80,0.00,3.30,21.70,95.40,144.60,87.20,136.10,36.40,0.00,2.30,546.10,19.10,25.10,463.20,38.70 +MATATHWADA,1953,0.30,0.00,0.30,15.20,0.40,200.40,217.90,160.60,208.00,88.10,0.00,0.00,891.20,0.30,15.90,786.90,88.10 +MATATHWADA,1954,0.40,0.00,15.50,5.60,5.20,181.00,276.00,138.80,255.60,11.90,0.00,9.70,899.60,0.40,26.30,851.40,21.60 +MATATHWADA,1955,6.50,0.00,2.40,3.40,12.20,229.80,213.20,364.70,208.60,109.30,1.20,0.00,1151.30,6.50,18.00,1016.20,110.50 +MATATHWADA,1956,1.20,1.90,0.10,4.10,78.40,154.10,310.00,134.60,202.50,70.70,79.70,0.00,1037.30,3.10,82.60,801.20,150.40 +MATATHWADA,1957,1.50,2.10,13.90,14.50,30.00,126.90,255.10,294.60,104.70,53.70,3.60,0.00,900.70,3.60,58.50,781.30,57.30 +MATATHWADA,1958,0.10,0.00,4.40,25.20,12.70,92.20,264.40,456.10,79.80,41.20,48.30,0.00,1024.60,0.10,42.30,892.60,89.50 +MATATHWADA,1959,1.50,0.00,0.10,9.50,13.20,173.60,188.30,200.00,246.30,99.80,17.00,1.00,950.30,1.50,22.80,808.30,117.70 +MATATHWADA,1960,3.60,0.00,18.10,1.00,49.20,163.60,136.60,66.80,206.80,78.50,14.00,0.10,738.30,3.60,68.30,573.80,92.60 +MATATHWADA,1961,0.90,0.10,5.60,6.70,35.70,170.80,253.70,143.40,97.00,238.10,5.20,1.80,959.00,1.00,48.00,664.90,245.00 +MATATHWADA,1962,0.60,2.80,2.70,37.80,43.40,67.30,164.70,192.20,304.70,41.40,33.50,54.60,945.70,3.40,84.00,728.90,129.40 +MATATHWADA,1963,0.00,6.20,15.50,7.00,13.50,228.40,172.20,380.40,82.80,92.40,2.70,0.00,1001.20,6.20,36.10,863.80,95.10 +MATATHWADA,1964,0.00,0.20,5.10,1.50,1.30,120.30,246.50,150.70,219.90,20.10,15.00,0.00,780.60,0.20,7.90,737.50,35.10 +MATATHWADA,1965,5.40,1.50,0.00,9.50,0.80,129.30,218.70,180.00,69.40,5.90,0.40,10.40,631.40,7.00,10.30,597.40,16.70 +MATATHWADA,1966,18.90,0.00,10.40,10.50,45.80,63.10,228.60,85.90,191.60,13.00,65.90,13.50,747.10,18.90,66.70,569.20,92.30 +MATATHWADA,1967,0.00,0.00,4.00,1.00,5.90,146.00,224.00,104.10,136.00,26.40,0.00,112.40,759.80,0.00,10.80,610.10,138.90 +MATATHWADA,1968,5.80,23.80,32.20,11.30,0.70,94.20,219.00,63.60,210.60,24.50,26.30,0.30,712.40,29.60,44.10,587.50,51.10 +MATATHWADA,1969,0.00,0.00,0.20,0.10,2.70,120.80,222.60,148.30,277.10,14.70,38.10,0.00,824.60,0.00,3.00,768.80,52.90 +MATATHWADA,1970,8.40,0.00,2.80,7.50,30.20,215.10,103.90,344.90,178.10,19.90,0.00,0.00,910.90,8.40,40.60,842.10,19.90 +MATATHWADA,1971,0.20,0.10,1.30,0.10,38.80,83.20,24.30,220.00,131.50,108.40,0.00,0.00,607.90,0.30,40.20,458.90,108.40 +MATATHWADA,1972,0.00,0.00,0.00,0.10,3.00,115.10,41.90,85.30,65.30,4.20,28.40,3.80,347.10,0.00,3.20,307.60,36.30 +MATATHWADA,1973,0.00,0.70,0.00,3.80,0.60,112.30,203.10,334.90,115.60,99.30,1.00,0.00,871.30,0.70,4.50,765.80,100.30 +MATATHWADA,1974,0.00,0.40,0.40,2.90,36.00,98.40,100.70,123.20,154.40,134.10,0.00,0.00,650.60,0.40,39.30,476.80,134.10 +MATATHWADA,1975,2.10,8.30,7.30,0.00,11.30,117.20,249.00,231.70,309.90,113.90,0.10,0.00,1050.90,10.50,18.60,907.80,114.00 +MATATHWADA,1976,0.00,0.20,3.20,7.40,2.90,92.10,213.00,195.60,63.00,3.80,39.40,2.40,623.00,0.20,13.50,563.70,45.60 +MATATHWADA,1977,0.00,1.50,6.00,4.60,5.40,126.00,155.40,149.30,116.80,66.40,129.90,6.50,767.70,1.50,15.90,547.40,202.80 +MATATHWADA,1978,5.70,18.80,9.60,12.00,19.10,212.40,215.00,105.30,80.60,70.50,34.60,1.20,784.80,24.50,40.70,613.30,106.30 +MATATHWADA,1979,3.40,11.80,5.60,1.40,18.10,125.50,163.10,132.90,236.50,17.70,90.60,0.80,807.60,15.30,25.20,658.10,109.10 +MATATHWADA,1980,0.10,0.00,4.70,4.60,2.30,223.00,114.40,325.10,113.60,1.10,3.60,20.30,812.90,0.10,11.60,776.10,25.10 +MATATHWADA,1981,27.30,0.70,11.00,1.60,12.70,100.50,122.30,127.30,285.10,68.70,11.20,18.30,786.60,28.00,25.20,635.10,98.20 +MATATHWADA,1982,10.00,0.60,5.10,7.80,15.90,99.60,170.10,84.80,172.00,43.60,27.00,0.00,636.50,10.60,28.80,526.50,70.60 +MATATHWADA,1983,0.00,0.00,0.30,0.30,6.00,96.80,231.90,315.40,422.30,106.80,1.00,6.90,1187.60,0.00,6.60,1066.30,114.60 +MATATHWADA,1984,3.10,9.50,0.40,0.80,0.00,75.70,168.50,59.80,120.10,106.20,5.40,3.30,552.70,12.60,1.20,424.10,114.90 +MATATHWADA,1985,7.10,0.00,6.20,10.50,7.60,160.80,148.90,63.90,82.30,86.00,0.70,1.50,575.40,7.10,24.30,455.80,88.20 +MATATHWADA,1986,9.60,9.60,1.30,2.70,7.30,132.30,140.20,127.10,104.00,6.60,10.10,12.10,562.90,19.20,11.40,503.60,28.80 +MATATHWADA,1987,7.90,3.60,0.80,2.00,20.90,155.10,132.00,220.20,46.10,145.70,41.10,10.80,786.20,11.50,23.70,553.40,197.60 +MATATHWADA,1988,0.00,0.00,0.20,7.20,4.20,169.70,301.60,245.40,411.90,18.50,7.70,3.50,1170.00,0.00,11.70,1128.60,29.70 +MATATHWADA,1989,0.00,0.00,42.30,2.80,6.40,237.90,336.20,245.70,170.00,17.60,0.50,9.00,1068.30,0.00,51.50,989.80,27.10 +MATATHWADA,1990,2.90,0.00,0.00,0.00,142.10,221.00,131.00,365.90,104.20,223.10,5.00,2.90,1198.10,2.90,142.10,822.20,231.00 +MATATHWADA,1991,0.30,0.40,0.40,9.80,9.40,250.10,222.40,49.70,38.50,9.10,10.90,0.00,601.00,0.70,19.50,560.70,20.00 +MATATHWADA,1992,0.00,0.00,0.00,3.50,6.70,217.90,79.40,203.00,140.40,52.20,23.50,0.00,726.60,0.00,10.20,640.60,75.70 +MATATHWADA,1993,0.00,1.00,5.60,1.70,9.10,87.50,216.30,166.20,121.80,136.30,5.80,55.10,806.30,1.00,16.40,591.80,197.20 +MATATHWADA,1994,3.20,0.10,0.00,14.90,14.30,110.60,117.10,162.80,63.40,64.30,32.90,0.00,583.80,3.40,29.30,454.00,97.20 +MATATHWADA,1995,46.90,0.20,23.60,11.40,17.60,135.50,186.00,96.00,137.90,153.20,1.20,0.00,809.50,47.10,52.60,555.40,154.40 +MATATHWADA,1996,0.10,0.00,0.30,10.60,1.60,55.80,186.60,246.40,229.80,118.90,4.40,0.40,855.00,0.10,12.50,718.60,123.80 +MATATHWADA,1997,7.70,1.10,8.30,14.30,8.00,75.80,131.00,121.10,163.40,106.80,98.60,54.30,790.50,8.80,30.60,491.30,259.80 +MATATHWADA,1998,0.10,0.30,3.40,1.70,8.70,189.80,255.10,249.90,235.80,150.30,31.60,0.00,1126.70,0.50,13.80,930.50,181.90 +MATATHWADA,1999,0.00,6.00,0.10,0.00,17.90,141.50,133.30,133.40,215.40,119.90,0.00,0.00,767.60,6.00,18.00,623.60,119.90 +MATATHWADA,2000,0.40,3.80,0.50,0.40,16.30,188.30,157.30,239.50,44.80,30.80,0.70,1.70,684.40,4.20,17.20,629.90,33.20 +MATATHWADA,2001,4.80,0.50,0.50,9.90,0.70,148.70,56.70,255.80,83.50,170.50,0.80,0.00,732.40,5.30,11.20,544.60,171.30 +MATATHWADA,2002,5.50,4.10,0.70,6.10,8.50,241.80,58.20,223.60,122.40,46.40,4.80,0.00,722.10,9.60,15.30,646.00,51.30 +MATATHWADA,2003,2.10,1.30,2.30,4.90,28.50,117.60,255.90,183.90,95.70,22.10,4.90,0.80,720.10,3.40,35.70,653.10,27.80 +MATATHWADA,2004,1.20,0.40,5.50,1.90,30.40,100.00,201.70,75.00,177.20,58.10,27.20,0.00,678.70,1.70,37.80,553.90,85.30 +MATATHWADA,2005,13.20,0.70,11.60,1.60,2.10,59.70,413.50,124.10,213.50,100.50,0.00,0.00,940.50,13.80,15.30,810.90,100.50 +MATATHWADA,2006,0.00,0.00,30.70,1.60,26.70,134.70,116.20,301.30,209.40,47.70,4.60,0.00,872.90,0.00,59.10,761.50,52.30 +MATATHWADA,2007,0.00,0.00,0.10,0.70,10.00,185.40,123.10,146.20,240.70,0.90,7.50,0.00,714.60,0.00,10.80,695.30,8.50 +MATATHWADA,2008,0.10,0.10,14.60,3.70,1.80,66.70,106.50,150.80,267.80,33.80,0.30,0.10,646.30,0.10,20.20,591.70,34.20 +MATATHWADA,2009,0.00,0.00,0.60,0.80,7.00,63.10,139.20,167.60,159.90,59.00,63.30,8.40,668.90,0.00,8.40,529.80,130.70 +MATATHWADA,2010,4.30,5.80,3.90,0.70,4.60,119.70,329.50,291.40,157.30,57.70,36.80,0.00,1011.60,10.00,9.20,897.80,94.50 +MATATHWADA,2011,0.00,3.80,0.70,3.50,3.10,79.20,230.10,228.50,90.00,24.80,0.00,0.00,663.50,3.80,7.30,627.70,24.80 +MATATHWADA,2012,0.00,0.00,0.00,0.60,2.30,72.20,161.10,101.40,120.00,68.80,0.30,0.00,526.70,0.00,2.90,454.70,69.10 +MATATHWADA,2013,1.50,9.40,2.60,7.90,6.40,160.90,293.40,136.90,154.10,94.30,7.40,13.10,888.00,10.90,16.90,745.30,114.80 +MATATHWADA,2014,1.40,13.40,79.00,11.90,7.00,30.40,105.00,178.90,84.50,14.20,19.90,3.30,548.90,14.80,97.90,398.80,37.40 +MATATHWADA,2015,10.10,1.60,32.00,39.60,12.30,118.30,27.40,112.20,154.30,19.50,4.80,0.00,532.20,11.70,83.80,412.40,24.30 +VIDARBHA,1901,36.80,39.90,30.90,26.10,7.30,129.70,295.30,368.80,123.40,35.20,0.00,0.00,1093.30,76.60,64.30,917.20,35.20 +VIDARBHA,1902,1.60,0.10,0.00,6.50,4.10,38.00,270.70,204.70,150.90,29.60,16.10,26.70,748.90,1.70,10.60,664.30,72.40 +VIDARBHA,1903,5.20,4.00,0.10,2.50,37.80,121.20,475.50,325.50,154.80,100.80,2.00,0.00,1229.40,9.30,40.30,1077.00,102.80 +VIDARBHA,1904,4.30,2.40,12.90,0.20,14.80,148.90,158.30,151.80,196.90,61.70,0.00,0.90,753.20,6.70,27.90,655.90,62.70 +VIDARBHA,1905,7.30,12.70,12.40,16.20,14.00,81.00,254.50,216.30,321.30,6.00,0.20,0.00,941.80,20.00,42.60,873.10,6.20 +VIDARBHA,1906,12.90,3.30,11.90,0.20,6.10,328.10,350.40,325.80,113.30,6.90,14.30,18.10,1191.20,16.20,18.20,1117.50,39.20 +VIDARBHA,1907,3.60,52.90,3.70,45.30,1.60,181.40,309.70,332.60,59.70,0.20,15.70,4.30,1010.80,56.50,50.50,883.50,20.20 +VIDARBHA,1908,4.10,15.50,13.50,5.70,1.50,232.00,355.20,398.40,205.90,7.80,0.00,3.90,1243.40,19.60,20.70,1191.40,11.80 +VIDARBHA,1909,1.30,10.00,4.80,31.50,17.90,157.10,405.00,176.00,160.30,7.30,0.00,90.60,1061.60,11.30,54.10,898.30,97.90 +VIDARBHA,1910,0.00,0.00,0.00,0.10,10.00,289.10,297.40,278.70,300.30,57.70,60.80,0.00,1294.00,0.00,10.00,1165.50,118.50 +VIDARBHA,1911,18.20,0.00,2.20,0.00,2.60,218.00,205.90,292.30,176.10,27.50,39.90,0.00,982.80,18.20,4.90,892.30,67.40 +VIDARBHA,1912,0.60,49.30,0.20,6.10,7.20,54.20,364.50,391.90,117.00,6.90,15.60,0.50,1014.00,49.90,13.50,927.50,23.10 +VIDARBHA,1913,0.00,24.90,4.00,1.80,17.20,199.80,378.30,244.30,137.20,17.40,0.30,27.40,1052.60,24.90,23.00,959.60,45.10 +VIDARBHA,1914,0.00,13.40,12.80,39.10,15.90,239.50,341.20,245.60,266.60,6.10,5.70,13.10,1199.00,13.40,67.80,1092.90,24.90 +VIDARBHA,1915,33.30,9.10,65.90,18.90,13.10,190.20,311.00,229.60,195.20,111.00,7.40,15.00,1199.60,42.30,97.90,925.90,133.40 +VIDARBHA,1916,0.00,14.40,0.80,2.20,21.70,257.00,345.30,306.20,253.10,124.10,37.40,0.00,1362.30,14.40,24.70,1161.60,161.50 +VIDARBHA,1917,0.90,78.50,20.60,11.50,48.90,234.90,350.10,200.30,328.50,120.90,1.70,0.00,1396.90,79.40,81.00,1113.80,122.70 +VIDARBHA,1918,2.50,2.90,3.10,0.20,83.10,278.30,168.00,174.50,55.50,3.40,16.80,13.20,801.40,5.40,86.40,676.20,33.40 +VIDARBHA,1919,55.80,37.00,15.90,6.30,19.90,325.60,280.30,249.80,103.60,98.00,19.30,1.10,1212.60,92.80,42.20,959.30,118.40 +VIDARBHA,1920,26.70,0.30,5.20,6.20,4.80,101.80,237.80,111.70,83.30,0.50,0.00,0.00,578.50,27.00,16.30,534.60,0.50 +VIDARBHA,1921,20.30,0.10,0.00,2.60,0.00,283.90,293.00,292.00,182.30,11.30,0.20,0.00,1085.60,20.30,2.60,1051.20,11.40 +VIDARBHA,1922,33.80,2.30,0.00,3.80,5.10,206.10,361.70,116.50,295.30,4.70,80.30,0.30,1109.80,36.10,8.80,979.60,85.30 +VIDARBHA,1923,1.00,6.70,30.60,3.40,2.30,21.40,402.90,201.10,260.10,11.00,0.10,0.70,941.30,7.70,36.30,885.50,11.80 +VIDARBHA,1924,21.30,0.50,4.40,6.20,3.20,43.80,308.30,220.60,217.30,126.90,33.60,8.10,994.20,21.80,13.80,790.00,168.60 +VIDARBHA,1925,0.00,0.00,7.30,5.40,28.00,130.30,293.90,307.20,77.40,21.80,61.50,8.40,941.10,0.00,40.70,808.70,91.70 +VIDARBHA,1926,59.50,5.70,23.70,15.10,34.40,31.80,330.60,420.00,109.90,38.70,1.30,0.60,1071.10,65.10,73.20,892.20,40.50 +VIDARBHA,1927,0.70,10.00,12.20,2.00,2.20,280.20,414.70,220.10,97.70,51.50,70.40,5.70,1167.40,10.70,16.40,1012.70,127.70 +VIDARBHA,1928,0.20,43.10,5.90,0.20,2.20,177.80,296.20,185.20,180.10,108.50,0.10,17.80,1017.50,43.30,8.30,839.50,126.40 +VIDARBHA,1929,3.80,52.60,0.70,11.80,0.70,170.90,263.50,157.40,193.10,28.20,0.00,29.80,912.50,56.40,13.20,784.90,58.00 +VIDARBHA,1930,0.00,5.30,1.20,27.40,4.40,181.30,252.90,194.40,233.20,44.80,36.30,1.90,983.10,5.30,33.00,861.80,83.00 +VIDARBHA,1931,4.00,4.60,11.60,5.60,3.10,103.30,380.60,390.70,232.90,225.10,40.20,2.40,1404.20,8.60,20.30,1107.60,267.70 +VIDARBHA,1932,0.00,27.40,12.90,3.40,10.30,154.20,526.60,176.70,183.80,25.60,9.70,0.00,1130.50,27.40,26.50,1041.30,35.30 +VIDARBHA,1933,4.80,38.30,9.10,20.50,64.60,244.60,353.70,365.40,301.70,75.10,8.40,16.00,1502.30,43.10,94.30,1265.50,99.50 +VIDARBHA,1934,2.20,0.00,0.30,8.50,0.30,169.10,335.10,390.90,254.40,10.80,46.60,0.10,1218.30,2.20,9.10,1149.60,57.50 +VIDARBHA,1935,14.50,4.60,0.70,26.00,1.00,151.80,528.10,164.80,250.40,13.40,0.40,2.30,1158.00,19.00,27.70,1095.10,16.20 +VIDARBHA,1936,17.60,60.30,21.60,4.80,30.50,377.50,285.30,308.30,188.80,61.90,90.90,3.50,1451.20,78.00,57.00,1160.00,156.30 +VIDARBHA,1937,0.00,33.10,42.40,112.70,1.50,135.60,476.20,177.20,226.00,105.70,0.40,8.40,1319.10,33.10,156.60,1015.00,114.40 +VIDARBHA,1938,4.00,12.40,9.70,6.50,26.20,354.00,425.60,314.10,181.60,126.80,0.00,0.00,1460.90,16.40,42.40,1275.30,126.80 +VIDARBHA,1939,1.30,1.90,34.20,12.20,0.10,116.10,224.20,385.40,66.50,33.50,6.00,0.40,881.90,3.30,46.50,792.30,39.90 +VIDARBHA,1940,0.00,9.30,1.30,12.80,11.50,262.70,591.00,298.60,53.60,79.00,24.30,13.40,1357.50,9.30,25.50,1205.90,116.70 +VIDARBHA,1941,9.60,15.20,13.50,3.10,4.80,142.30,338.80,182.40,112.80,6.50,0.00,0.00,828.90,24.70,21.40,776.30,6.50 +VIDARBHA,1942,2.40,84.90,0.00,12.90,1.90,179.40,508.30,366.50,159.20,4.90,0.00,21.20,1341.70,87.30,14.90,1213.40,26.10 +VIDARBHA,1943,55.00,0.10,0.40,7.20,28.30,141.90,275.10,149.20,277.50,83.40,0.10,0.00,1018.20,55.00,35.90,843.70,83.50 +VIDARBHA,1944,4.50,59.40,64.80,1.60,2.70,96.60,470.40,370.60,213.20,67.40,16.50,0.00,1367.80,63.80,69.20,1150.80,83.90 +VIDARBHA,1945,13.80,0.40,0.00,24.60,3.30,147.00,404.70,299.60,274.20,30.30,0.60,1.10,1199.40,14.10,27.90,1125.50,31.90 +VIDARBHA,1946,0.00,14.20,0.70,15.50,9.70,237.00,376.90,292.40,107.40,8.60,97.60,13.00,1173.00,14.20,26.00,1013.60,119.20 +VIDARBHA,1947,35.00,26.70,23.70,7.80,5.30,112.10,406.00,345.80,167.80,25.90,0.30,11.80,1168.30,61.70,36.80,1031.80,38.00 +VIDARBHA,1948,48.90,9.40,7.00,3.90,4.50,125.10,374.10,267.80,201.10,14.40,126.50,0.00,1182.80,58.40,15.40,968.10,140.90 +VIDARBHA,1949,1.20,1.50,1.00,5.60,28.80,222.70,412.90,266.20,323.50,134.80,0.00,0.10,1398.30,2.80,35.40,1225.20,134.90 +VIDARBHA,1950,0.10,27.30,14.90,0.70,5.60,84.60,375.00,143.70,116.30,13.30,0.30,11.90,793.50,27.40,21.20,719.50,25.50 +VIDARBHA,1951,4.60,0.60,41.90,14.60,11.10,136.80,348.80,318.60,123.10,81.50,0.60,0.00,1082.30,5.20,67.60,927.40,82.10 +VIDARBHA,1952,0.00,10.60,4.20,10.80,2.50,98.00,235.10,266.50,146.00,33.60,0.00,0.50,807.70,10.60,17.50,745.50,34.10 +VIDARBHA,1953,3.90,1.10,0.00,21.40,0.20,138.20,299.40,449.90,173.00,50.70,0.00,0.00,1137.80,5.00,21.60,1060.50,50.70 +VIDARBHA,1954,0.30,0.60,11.40,4.00,1.10,132.40,407.90,248.80,288.30,4.60,0.90,0.10,1100.40,0.80,16.50,1077.50,5.60 +VIDARBHA,1955,15.50,0.30,2.30,6.80,5.00,274.70,278.40,371.80,244.60,169.10,0.20,0.00,1368.70,15.80,14.20,1169.50,169.30 +VIDARBHA,1956,1.30,1.90,0.80,0.50,52.80,248.70,370.50,163.40,198.00,40.10,37.30,9.30,1124.60,3.20,54.10,980.60,86.70 +VIDARBHA,1957,8.60,2.50,44.40,31.60,15.50,148.50,303.80,354.20,133.40,27.50,1.00,0.00,1070.90,11.00,91.50,939.80,28.50 +VIDARBHA,1958,5.70,2.00,20.40,10.50,10.40,102.70,341.50,354.00,220.30,68.00,36.50,0.10,1172.20,7.80,41.30,1018.50,104.60 +VIDARBHA,1959,13.60,1.20,0.40,11.80,6.20,178.00,467.90,377.30,469.90,79.40,0.50,0.10,1606.30,14.80,18.40,1493.10,80.00 +VIDARBHA,1960,38.80,0.00,41.00,6.70,8.20,195.20,378.50,199.90,114.80,78.50,1.10,2.40,1065.00,38.80,55.90,888.40,81.90 +VIDARBHA,1961,1.10,5.70,4.50,5.30,21.40,152.70,372.60,401.60,326.20,143.30,2.90,3.40,1440.80,6.70,31.20,1253.10,149.70 +VIDARBHA,1962,5.60,4.60,18.40,33.10,21.70,67.10,364.30,267.30,267.20,8.30,30.50,64.50,1152.60,10.20,73.10,966.00,103.30 +VIDARBHA,1963,0.30,10.50,12.90,14.80,19.50,204.00,282.10,397.90,123.90,80.10,1.70,0.00,1147.80,10.90,47.20,1008.00,81.80 +VIDARBHA,1964,0.00,2.00,3.00,1.30,0.60,166.00,259.50,357.90,176.80,40.80,2.30,0.60,1010.70,2.00,4.80,960.20,43.70 +VIDARBHA,1965,18.70,4.90,4.90,15.50,1.60,113.60,262.00,181.00,139.60,1.30,0.00,0.50,743.60,23.60,21.90,696.20,1.90 +VIDARBHA,1966,16.10,1.10,10.50,7.90,30.70,84.80,387.50,206.50,191.40,4.60,34.90,26.80,1002.90,17.20,49.10,870.10,66.40 +VIDARBHA,1967,0.50,0.00,50.00,7.40,1.60,184.60,406.80,244.80,101.60,8.00,1.10,121.80,1128.40,0.50,59.00,937.90,130.90 +VIDARBHA,1968,14.60,23.90,36.60,15.40,0.70,104.80,291.40,210.50,193.00,23.00,4.70,4.30,922.90,38.50,52.70,799.70,32.00 +VIDARBHA,1969,1.50,0.00,0.60,4.00,9.60,98.60,371.00,200.00,281.50,5.40,19.40,1.30,992.90,1.50,14.30,951.10,26.10 +VIDARBHA,1970,15.90,1.00,18.30,4.20,17.50,304.10,211.00,435.60,223.30,9.60,0.00,0.00,1240.60,17.00,40.00,1174.10,9.60 +VIDARBHA,1971,3.70,12.80,21.20,12.40,26.70,193.60,124.30,259.20,119.50,108.90,0.00,0.00,882.40,16.50,60.30,696.60,108.90 +VIDARBHA,1972,0.00,1.10,0.00,3.80,3.40,139.80,197.70,280.80,60.70,20.90,28.50,4.20,740.80,1.10,7.10,679.00,53.50 +VIDARBHA,1973,1.70,5.00,0.30,2.30,1.50,75.10,428.50,346.40,136.40,163.40,1.40,0.50,1162.40,6.70,4.00,986.40,165.30 +VIDARBHA,1974,0.00,4.80,1.20,0.50,12.60,93.20,211.00,281.40,68.10,162.60,5.40,0.00,840.80,4.80,14.30,653.70,168.00 +VIDARBHA,1975,3.50,22.40,7.00,1.10,6.40,264.30,321.30,316.00,288.90,92.80,0.30,0.00,1324.10,26.00,14.50,1190.60,93.00 +VIDARBHA,1976,2.10,0.10,4.70,11.50,4.60,90.80,386.00,260.70,174.70,0.90,38.50,0.20,974.60,2.20,20.70,912.10,39.60 +VIDARBHA,1977,0.00,2.10,3.70,8.90,15.00,169.70,283.90,340.80,131.70,37.80,71.20,3.20,1068.00,2.10,27.60,926.10,112.20 +VIDARBHA,1978,13.30,24.40,18.60,10.10,1.90,228.00,399.30,430.00,46.20,16.40,20.70,40.50,1249.40,37.70,30.50,1103.40,77.70 +VIDARBHA,1979,30.40,59.70,1.70,0.50,12.90,245.60,218.20,323.20,143.30,6.30,34.90,10.60,1087.20,90.10,15.00,930.20,51.80 +VIDARBHA,1980,15.30,3.20,1.00,2.90,0.50,253.60,246.30,361.80,131.40,2.00,0.40,24.10,1042.60,18.60,4.30,993.10,26.60 +VIDARBHA,1981,20.20,0.90,25.40,3.60,12.60,173.10,302.50,352.60,294.50,17.60,1.80,13.80,1218.60,21.20,41.60,1122.70,33.20 +VIDARBHA,1982,45.70,10.60,6.00,5.20,15.30,100.60,256.40,206.80,144.20,49.20,16.10,0.00,856.10,56.30,26.50,708.00,65.30 +VIDARBHA,1983,1.60,7.40,1.90,1.50,6.70,156.40,327.90,376.70,289.80,58.40,0.00,12.20,1240.40,8.90,10.10,1150.70,70.60 +VIDARBHA,1984,26.90,18.60,0.40,3.20,0.40,105.60,258.60,271.00,48.70,76.60,0.00,0.60,810.60,45.50,3.90,683.90,77.20 +VIDARBHA,1985,22.50,1.10,1.00,7.30,9.70,196.80,271.70,181.90,61.90,120.40,0.00,2.60,876.90,23.70,18.00,712.30,123.00 +VIDARBHA,1986,11.70,40.50,6.40,4.20,6.50,232.80,353.40,382.20,61.20,12.70,17.20,28.30,1157.00,52.20,17.10,1029.60,58.20 +VIDARBHA,1987,24.30,6.10,7.50,0.70,9.80,117.00,204.70,283.70,37.70,72.10,55.40,3.60,822.60,30.40,18.10,643.00,131.10 +VIDARBHA,1988,0.70,7.90,3.80,12.50,4.20,186.80,485.00,286.60,230.10,86.40,4.30,0.30,1308.70,8.60,20.60,1188.50,91.10 +VIDARBHA,1989,0.00,0.00,23.60,0.10,2.00,236.50,240.60,330.10,118.00,15.20,1.60,30.10,997.70,0.00,25.60,925.10,46.90 +VIDARBHA,1990,3.50,6.80,8.60,3.90,71.30,303.20,326.30,507.30,121.50,143.70,1.60,7.10,1505.00,10.40,83.90,1258.40,152.40 +VIDARBHA,1991,6.30,1.60,4.60,4.70,3.00,168.90,348.00,255.40,23.00,9.60,12.10,1.50,838.70,8.00,12.20,795.30,23.20 +VIDARBHA,1992,0.20,0.50,0.40,2.90,5.70,167.90,241.30,565.50,116.10,35.90,12.40,0.00,1148.60,0.60,9.00,1090.80,48.20 +VIDARBHA,1993,0.50,3.60,17.90,2.80,5.00,145.80,365.60,222.00,171.30,77.70,0.50,10.40,1023.00,4.10,25.70,904.70,88.50 +VIDARBHA,1994,10.00,9.80,0.10,9.60,2.20,228.60,508.20,343.30,225.40,83.30,6.20,0.40,1427.10,19.80,11.90,1305.50,90.00 +VIDARBHA,1995,49.80,5.50,45.40,8.80,8.00,156.10,335.80,165.90,201.30,100.50,0.10,0.30,1077.50,55.40,62.10,859.10,100.90 +VIDARBHA,1996,2.20,3.70,3.60,9.30,0.70,64.40,266.00,261.10,149.80,92.20,1.90,0.00,855.00,5.90,13.60,741.40,94.10 +VIDARBHA,1997,16.30,0.00,2.50,18.40,8.40,108.00,248.40,265.80,145.70,77.40,69.90,78.50,1039.30,16.30,29.30,767.90,225.70 +VIDARBHA,1998,12.80,14.70,16.20,8.30,10.60,127.50,274.00,234.20,247.40,53.90,62.20,0.00,1061.70,27.40,35.10,883.10,116.10 +VIDARBHA,1999,0.20,20.90,0.20,0.00,33.30,228.80,234.00,294.10,248.00,105.50,0.00,0.00,1165.10,21.10,33.50,1004.90,105.50 +VIDARBHA,2000,0.10,16.40,0.10,0.10,28.80,235.90,472.10,286.20,54.00,11.00,0.00,0.50,1105.20,16.40,29.00,1048.20,11.50 +VIDARBHA,2001,8.90,0.10,15.20,18.30,7.90,338.60,202.00,359.80,37.40,129.20,4.70,0.00,1122.10,9.00,41.40,937.80,134.00 +VIDARBHA,2002,2.40,4.00,1.10,2.90,8.20,301.10,88.10,352.50,128.60,35.20,1.90,0.10,925.80,6.30,12.10,870.30,37.10 +VIDARBHA,2003,0.00,4.40,3.60,2.70,3.00,140.20,401.00,280.90,138.00,42.60,0.80,1.30,1018.60,4.40,9.30,960.10,44.70 +VIDARBHA,2004,10.30,5.50,0.60,3.50,12.20,137.90,217.70,223.10,86.30,27.70,6.90,0.20,731.90,15.80,16.30,665.00,34.80 +VIDARBHA,2005,74.90,7.00,7.20,1.90,2.60,144.40,393.20,249.20,246.80,87.20,0.00,0.20,1214.60,81.80,11.70,1033.70,87.40 +VIDARBHA,2006,0.00,0.00,50.60,16.20,20.90,115.00,360.80,421.40,175.80,43.70,11.10,0.00,1215.60,0.00,87.70,1073.00,54.80 +VIDARBHA,2007,0.10,1.30,1.40,3.20,1.20,256.70,349.10,282.40,241.80,27.30,2.50,0.00,1167.00,1.40,5.80,1130.00,29.80 +VIDARBHA,2008,0.20,1.90,19.20,2.80,2.90,137.90,261.50,254.00,160.80,22.40,2.90,0.10,866.60,2.10,24.90,814.20,25.40 +VIDARBHA,2009,0.10,0.00,0.90,2.40,5.90,78.10,310.80,175.40,90.30,41.90,63.80,1.20,770.80,0.10,9.20,654.60,106.90 +VIDARBHA,2010,14.00,1.90,7.50,0.30,1.90,144.80,454.50,384.00,238.00,51.00,37.00,3.20,1338.10,15.90,9.60,1221.20,91.30 +VIDARBHA,2011,0.00,1.20,0.10,7.70,0.60,137.90,247.10,302.80,191.00,4.70,0.00,0.00,893.20,1.20,8.40,878.80,4.70 +VIDARBHA,2012,3.10,0.10,0.00,0.60,0.20,125.50,370.50,316.20,249.40,34.90,7.30,0.00,1107.70,3.20,0.80,1061.50,42.20 +VIDARBHA,2013,6.60,13.00,3.80,2.80,0.50,366.70,535.50,326.10,131.70,133.50,0.00,0.00,1520.00,19.60,7.00,1360.00,133.50 +VIDARBHA,2014,1.20,18.30,49.60,2.60,4.00,63.30,337.60,191.70,224.90,17.30,6.20,2.30,919.10,19.50,56.30,817.50,25.80 +VIDARBHA,2015,26.30,4.70,66.30,28.10,12.80,254.60,137.20,288.90,167.50,7.00,0.00,0.20,993.80,31.10,107.20,848.20,7.30 +CHHATTISGARH,1901,48.90,116.50,27.80,5.50,18.40,101.60,381.00,476.70,182.80,27.30,0.40,0.00,1387.00,165.40,51.70,1142.20,27.70 +CHHATTISGARH,1902,0.60,6.50,0.40,13.90,10.30,37.20,403.80,236.60,198.10,4.70,8.10,3.70,923.90,7.10,24.60,875.70,16.50 +CHHATTISGARH,1903,6.20,13.90,0.40,6.80,51.10,110.70,365.90,396.00,212.00,168.00,0.10,0.00,1331.20,20.10,58.30,1084.70,168.10 +CHHATTISGARH,1904,0.00,8.60,32.30,0.20,77.50,369.50,303.60,483.60,86.80,129.30,1.00,0.00,1492.40,8.60,110.00,1243.50,130.40 +CHHATTISGARH,1905,50.30,22.60,19.00,24.60,31.80,40.40,443.70,270.80,338.80,8.90,0.00,0.00,1251.10,72.90,75.50,1093.80,8.90 +CHHATTISGARH,1906,25.00,91.00,52.50,0.00,4.10,210.10,445.20,258.30,242.30,41.20,10.20,14.70,1394.60,115.90,56.70,1155.80,66.10 +CHHATTISGARH,1907,4.00,40.20,41.70,39.40,4.50,286.50,233.60,494.40,141.80,0.10,7.30,15.30,1308.80,44.30,85.60,1156.20,22.70 +CHHATTISGARH,1908,8.40,67.10,6.30,1.50,6.50,182.40,465.90,590.00,146.70,12.90,0.00,1.10,1488.70,75.40,14.30,1385.00,14.00 +CHHATTISGARH,1909,11.30,5.80,3.10,112.80,6.10,266.10,473.90,210.80,142.80,6.70,0.00,44.70,1284.10,17.10,122.00,1093.60,51.40 +CHHATTISGARH,1910,9.00,0.60,3.70,21.50,13.30,246.00,296.60,441.40,265.20,92.60,17.40,0.00,1407.20,9.50,38.60,1249.20,110.00 +CHHATTISGARH,1911,2.20,0.00,21.70,0.80,9.00,366.70,215.70,474.60,244.60,131.60,37.40,0.00,1504.10,2.20,31.50,1301.50,169.00 +CHHATTISGARH,1912,3.10,73.90,1.00,22.60,11.30,62.30,422.50,411.90,194.00,13.00,11.30,0.00,1227.00,77.00,34.90,1090.80,24.30 +CHHATTISGARH,1913,4.30,85.40,31.80,4.10,35.80,246.00,374.40,285.60,122.20,24.90,6.20,14.00,1234.60,89.70,71.70,1028.20,45.10 +CHHATTISGARH,1914,0.00,7.90,21.00,38.60,51.50,186.10,493.80,373.00,234.10,5.00,0.20,6.80,1418.10,7.90,111.10,1287.00,12.00 +CHHATTISGARH,1915,25.00,42.40,19.70,16.60,21.20,131.30,364.60,435.90,251.00,121.00,27.20,0.00,1455.90,67.40,57.60,1182.70,148.20 +CHHATTISGARH,1916,0.00,26.50,2.10,6.90,20.20,325.50,289.40,374.60,199.20,178.40,20.30,0.00,1443.00,26.50,29.10,1188.70,198.60 +CHHATTISGARH,1917,3.60,63.70,26.60,10.80,44.00,296.90,374.00,475.20,287.80,144.10,0.30,0.70,1727.70,67.30,81.40,1433.90,145.00 +CHHATTISGARH,1918,14.10,4.50,1.90,10.70,48.30,431.20,238.00,490.90,122.50,1.70,4.70,8.80,1377.20,18.60,60.90,1282.60,15.20 +CHHATTISGARH,1919,98.30,65.20,30.10,13.50,33.00,396.50,392.90,511.20,152.40,150.60,13.90,1.40,1859.00,163.50,76.60,1453.10,165.80 +CHHATTISGARH,1920,1.70,2.60,21.90,25.60,23.40,97.00,542.50,391.50,92.00,5.20,0.00,0.00,1203.40,4.30,70.90,1123.00,5.20 +CHHATTISGARH,1921,39.60,1.60,0.00,6.20,0.00,335.40,311.40,401.80,210.90,12.30,0.00,0.00,1319.40,41.20,6.20,1259.60,12.30 +CHHATTISGARH,1922,21.10,1.20,0.50,12.70,9.50,180.20,416.70,305.20,297.60,23.50,38.90,1.70,1308.80,22.30,22.70,1199.70,64.00 +CHHATTISGARH,1923,3.90,27.10,15.20,9.70,5.30,103.80,374.60,582.30,194.90,61.90,8.00,0.50,1387.20,31.00,30.30,1255.60,70.40 +CHHATTISGARH,1924,32.30,11.10,5.90,9.00,18.00,83.50,310.30,329.50,330.60,79.50,124.50,0.10,1334.20,43.40,32.90,1053.90,204.10 +CHHATTISGARH,1925,0.20,0.50,0.30,10.60,88.60,368.80,560.40,476.60,166.80,45.10,19.10,0.00,1737.10,0.70,99.50,1572.60,64.30 +CHHATTISGARH,1926,33.20,10.70,99.70,63.30,45.30,55.30,374.40,555.50,330.50,63.40,0.20,3.30,1634.90,43.90,208.30,1315.80,66.90 +CHHATTISGARH,1927,11.70,57.90,24.10,2.30,15.90,193.30,468.30,488.80,171.90,75.20,27.80,0.00,1537.10,69.60,42.20,1322.30,103.10 +CHHATTISGARH,1928,6.80,11.30,8.80,13.60,16.70,210.10,384.40,272.70,192.50,97.80,0.00,4.40,1219.20,18.10,39.20,1059.70,102.20 +CHHATTISGARH,1929,23.10,28.90,1.20,14.40,5.60,216.20,597.90,461.10,179.20,94.30,0.00,41.90,1663.80,51.90,21.20,1454.50,136.20 +CHHATTISGARH,1930,0.00,4.00,13.50,43.30,7.90,190.90,517.40,285.00,185.30,37.30,93.90,5.10,1383.50,4.00,64.70,1178.60,136.20 +CHHATTISGARH,1931,8.40,64.40,14.50,10.60,14.60,104.60,359.10,510.80,169.30,156.30,54.10,0.20,1467.00,72.70,39.80,1143.90,210.70 +CHHATTISGARH,1932,0.00,22.90,3.70,9.50,18.80,109.60,525.20,300.90,272.60,56.40,37.60,0.20,1357.60,22.90,32.10,1208.30,94.30 +CHHATTISGARH,1933,31.60,75.90,14.90,21.90,97.30,310.70,388.90,368.30,286.50,41.40,7.90,5.50,1650.60,107.50,134.10,1354.40,54.70 +CHHATTISGARH,1934,1.80,0.00,1.50,11.50,0.00,263.10,412.00,483.40,305.30,37.00,12.30,1.10,1529.20,1.80,13.00,1463.90,50.50 +CHHATTISGARH,1935,12.20,17.90,5.10,33.40,4.10,132.20,562.10,247.20,247.60,3.80,0.00,3.60,1269.20,30.10,42.70,1189.10,7.30 +CHHATTISGARH,1936,31.90,44.70,14.60,4.30,46.60,413.10,463.80,434.50,258.00,90.40,18.20,6.10,1826.20,76.60,65.50,1569.40,114.70 +CHHATTISGARH,1937,0.00,66.20,21.50,76.30,19.20,222.60,501.00,391.90,237.00,79.80,1.00,0.20,1616.80,66.20,117.00,1352.60,81.00 +CHHATTISGARH,1938,18.40,25.10,5.40,8.20,48.80,269.20,386.80,343.50,266.70,126.60,7.00,0.10,1505.80,43.50,62.30,1266.30,133.70 +CHHATTISGARH,1939,6.50,22.80,53.20,19.90,1.10,188.60,427.50,478.60,198.30,79.30,4.60,0.00,1480.30,29.30,74.20,1293.00,83.90 +CHHATTISGARH,1940,0.20,23.00,31.10,26.40,41.50,218.60,542.90,395.60,72.80,67.20,4.90,24.30,1448.40,23.20,98.90,1229.80,96.40 +CHHATTISGARH,1941,20.80,13.80,18.40,3.30,27.10,240.80,218.60,238.70,146.00,70.90,6.50,0.20,1005.10,34.60,48.80,844.10,77.60 +CHHATTISGARH,1942,13.10,48.20,7.50,18.70,17.70,164.10,540.70,470.70,289.60,23.90,1.60,2.30,1598.30,61.30,44.00,1465.20,27.80 +CHHATTISGARH,1943,99.50,5.10,1.00,19.50,32.10,214.20,459.70,386.50,373.60,52.80,1.00,0.00,1645.10,104.60,52.60,1434.10,53.80 +CHHATTISGARH,1944,24.40,78.30,102.90,25.00,11.10,101.30,611.70,439.80,247.70,142.80,7.50,0.10,1792.70,102.70,139.00,1400.50,150.40 +CHHATTISGARH,1945,30.10,7.60,0.00,58.60,7.00,200.70,428.50,397.20,376.60,71.90,6.40,0.90,1585.60,37.80,65.60,1403.00,79.30 +CHHATTISGARH,1946,0.00,11.00,2.30,35.30,25.30,307.90,419.90,522.50,181.60,63.90,29.00,0.40,1599.00,11.00,62.80,1431.90,93.30 +CHHATTISGARH,1947,31.00,29.90,12.00,6.70,9.70,140.10,510.60,476.40,283.20,80.00,4.50,15.60,1599.60,60.90,28.40,1410.20,100.10 +CHHATTISGARH,1948,31.00,8.00,14.20,21.50,11.60,216.00,390.10,423.70,246.90,42.30,86.40,0.00,1491.70,39.00,47.40,1276.70,128.70 +CHHATTISGARH,1949,1.20,7.60,4.00,9.90,61.50,181.70,381.00,412.30,280.30,159.80,0.00,0.20,1499.60,8.80,75.40,1255.40,160.00 +CHHATTISGARH,1950,0.40,40.10,50.90,1.30,10.00,172.40,457.20,374.70,148.90,16.70,19.60,0.00,1292.20,40.50,62.20,1153.20,36.30 +CHHATTISGARH,1951,4.50,2.80,102.30,59.80,34.50,145.10,338.40,459.40,166.50,96.80,1.50,0.00,1411.60,7.30,196.60,1109.40,98.20 +CHHATTISGARH,1952,1.20,20.00,18.80,18.20,23.40,120.80,439.40,385.80,304.00,62.80,0.00,2.00,1396.40,21.20,60.40,1250.00,64.80 +CHHATTISGARH,1953,24.30,5.10,0.10,22.70,5.80,140.80,421.30,483.60,209.10,55.00,2.40,0.00,1370.20,29.40,28.60,1254.80,57.40 +CHHATTISGARH,1954,2.70,2.20,4.40,11.70,6.50,114.90,314.00,358.10,361.40,12.50,0.00,5.40,1193.70,4.90,22.50,1148.40,17.80 +CHHATTISGARH,1955,15.10,1.20,3.20,13.50,23.30,242.10,283.10,406.00,276.60,174.20,2.40,0.00,1440.70,16.30,39.90,1207.80,176.60 +CHHATTISGARH,1956,2.20,13.90,7.10,3.00,68.40,278.00,468.50,404.30,227.30,69.60,10.70,4.00,1557.00,16.10,78.50,1378.10,84.20 +CHHATTISGARH,1957,14.80,10.40,48.70,17.00,16.20,114.80,449.70,416.70,105.80,28.30,0.00,0.00,1222.40,25.10,82.00,1087.00,28.30 +CHHATTISGARH,1958,9.50,38.80,21.60,17.10,19.20,101.20,509.40,376.00,265.80,133.00,29.30,0.00,1520.90,48.30,57.90,1252.50,162.30 +CHHATTISGARH,1959,32.00,3.30,0.20,3.60,15.50,180.40,408.90,473.10,357.90,69.00,0.10,0.30,1544.20,35.20,19.30,1420.30,69.40 +CHHATTISGARH,1960,18.00,0.70,44.40,10.20,11.20,168.60,412.10,441.50,145.40,111.90,0.40,0.00,1364.30,18.60,65.80,1167.60,112.30 +CHHATTISGARH,1961,2.50,44.10,5.00,10.90,16.10,377.40,533.20,467.60,401.20,102.80,5.80,7.30,1974.00,46.60,32.00,1779.50,115.90 +CHHATTISGARH,1962,3.80,15.80,10.40,23.80,28.00,130.50,371.60,276.10,210.00,26.30,2.00,26.40,1124.70,19.60,62.30,988.10,54.70 +CHHATTISGARH,1963,0.40,5.40,8.90,44.80,28.20,160.80,349.40,387.70,258.80,91.20,1.20,0.30,1337.20,5.80,82.00,1156.70,92.70 +CHHATTISGARH,1964,1.00,21.90,3.90,6.50,4.50,269.20,371.60,515.30,201.80,109.10,4.10,0.00,1509.10,23.00,14.90,1358.00,113.30 +CHHATTISGARH,1965,5.80,4.50,22.30,14.40,8.40,111.10,310.00,208.30,251.80,4.90,0.00,0.00,941.60,10.20,45.10,881.20,4.90 +CHHATTISGARH,1966,20.90,0.00,2.20,16.30,19.00,267.80,294.00,253.40,154.60,25.10,12.80,20.90,1087.10,20.90,37.60,969.80,58.80 +CHHATTISGARH,1967,1.70,0.00,96.80,15.50,12.20,184.30,397.90,508.30,188.50,9.20,0.40,57.60,1472.50,1.70,124.50,1279.00,67.20 +CHHATTISGARH,1968,25.60,26.10,16.30,19.50,4.50,176.20,354.90,269.90,210.70,59.70,0.70,3.90,1168.00,51.70,40.20,1011.70,64.40 +CHHATTISGARH,1969,6.00,1.60,0.60,18.70,46.20,121.80,442.40,291.40,211.40,18.50,6.00,7.90,1172.60,7.60,65.60,1067.00,32.50 +CHHATTISGARH,1970,12.10,11.90,44.90,18.90,23.20,237.90,453.20,443.10,236.40,19.90,0.00,0.00,1501.50,24.00,87.00,1370.60,19.90 +CHHATTISGARH,1971,20.30,24.80,11.60,48.80,68.60,384.10,354.60,398.80,127.90,89.60,4.70,0.00,1533.80,45.10,129.00,1265.40,94.30 +CHHATTISGARH,1972,0.10,19.20,1.20,15.20,6.20,123.90,319.40,392.00,232.40,49.20,36.30,3.90,1198.90,19.30,22.60,1067.70,89.30 +CHHATTISGARH,1973,3.80,10.00,2.60,3.10,6.90,97.90,429.30,401.90,286.50,223.30,2.00,0.00,1467.30,13.80,12.70,1215.50,225.30 +CHHATTISGARH,1974,0.00,6.60,2.50,1.50,9.20,115.60,253.40,353.30,100.40,97.30,11.30,0.00,951.00,6.60,13.10,822.60,108.60 +CHHATTISGARH,1975,9.70,7.40,11.30,3.70,8.70,202.50,403.30,421.30,265.70,140.80,0.90,0.00,1475.50,17.20,23.80,1292.70,141.70 +CHHATTISGARH,1976,0.40,4.10,1.10,15.90,12.60,100.00,569.00,492.10,174.50,2.80,6.70,0.20,1379.30,4.50,29.60,1335.60,9.70 +CHHATTISGARH,1977,4.10,4.90,2.20,19.00,33.70,242.40,509.30,386.30,196.50,19.90,40.90,6.10,1465.50,9.00,54.90,1334.60,67.00 +CHHATTISGARH,1978,4.10,13.70,18.90,12.80,3.70,257.00,377.70,470.80,176.00,11.50,11.90,12.20,1370.40,17.90,35.40,1281.50,35.60 +CHHATTISGARH,1979,20.70,24.70,0.60,4.40,4.40,176.30,209.80,267.20,155.50,26.10,11.30,3.60,904.60,45.40,9.40,808.80,41.00 +CHHATTISGARH,1980,5.30,2.30,7.90,7.20,15.50,273.00,426.60,362.20,369.40,21.40,0.00,4.60,1495.40,7.70,30.60,1431.20,26.00 +CHHATTISGARH,1981,20.70,1.60,20.70,4.00,15.60,127.50,356.20,409.10,237.20,20.70,0.90,2.20,1216.20,22.30,40.30,1129.90,23.70 +CHHATTISGARH,1982,27.20,18.90,22.50,11.50,25.00,133.50,251.80,501.10,119.10,75.20,10.90,0.60,1197.40,46.20,59.00,1005.60,86.70 +CHHATTISGARH,1983,0.30,24.90,1.50,20.40,28.40,155.70,324.20,417.60,330.90,58.20,0.60,9.40,1371.90,25.10,50.30,1228.30,68.10 +CHHATTISGARH,1984,35.30,12.40,0.10,24.90,15.50,291.60,322.00,400.20,99.80,52.70,0.20,0.00,1254.70,47.70,40.50,1113.60,52.90 +CHHATTISGARH,1985,33.20,9.40,0.40,8.70,11.90,137.20,398.90,346.00,214.60,77.20,0.00,0.00,1237.50,42.60,21.00,1096.80,77.20 +CHHATTISGARH,1986,23.30,45.70,10.00,11.50,8.70,361.90,367.90,321.00,98.70,61.90,33.90,24.10,1368.60,69.00,30.20,1149.50,119.90 +CHHATTISGARH,1987,9.20,9.30,7.90,2.40,22.10,81.00,409.90,264.80,214.00,82.50,37.50,2.20,1142.80,18.50,32.40,969.70,122.20 +CHHATTISGARH,1988,0.70,25.10,6.20,22.70,8.80,219.70,375.00,351.10,167.80,28.70,0.40,0.10,1206.30,25.80,37.70,1113.60,29.20 +CHHATTISGARH,1989,0.10,0.00,10.50,1.00,8.90,226.80,372.10,353.70,173.90,10.40,5.20,24.60,1187.20,0.10,20.40,1126.50,40.20 +CHHATTISGARH,1990,0.50,18.50,9.20,7.40,122.30,293.60,393.90,375.90,268.20,143.60,9.40,1.40,1643.80,19.00,138.90,1331.50,154.40 +CHHATTISGARH,1991,10.60,1.60,9.20,3.70,4.70,143.80,446.20,411.20,135.10,37.90,9.30,7.60,1220.80,12.20,17.50,1136.20,54.90 +CHHATTISGARH,1992,0.10,0.30,0.50,1.90,5.40,137.10,401.30,419.10,180.00,7.90,3.00,0.00,1156.60,0.40,7.80,1137.50,10.90 +CHHATTISGARH,1993,0.00,5.30,7.10,4.70,10.00,167.20,351.00,299.50,298.60,60.10,1.90,0.00,1205.30,5.30,21.70,1116.30,61.90 +CHHATTISGARH,1994,3.50,8.40,0.00,5.20,9.10,413.40,575.70,447.70,212.00,76.90,2.70,0.00,1754.50,11.80,14.30,1648.80,79.60 +CHHATTISGARH,1995,43.50,2.60,24.00,5.20,24.90,119.50,478.30,356.00,137.70,69.60,11.20,8.20,1280.70,46.10,54.10,1091.40,89.10 +CHHATTISGARH,1996,11.10,5.60,3.60,4.80,2.20,195.20,352.40,429.40,156.80,25.00,0.80,0.20,1187.00,16.70,10.60,1133.80,26.00 +CHHATTISGARH,1997,6.30,0.10,2.20,45.70,7.20,153.80,384.60,414.70,167.50,30.20,51.40,53.50,1317.20,6.40,55.10,1120.60,135.10 +CHHATTISGARH,1998,64.90,11.20,27.30,11.90,16.40,156.20,356.00,259.60,288.30,93.10,47.80,0.00,1332.50,76.00,55.60,1060.10,140.90 +CHHATTISGARH,1999,0.00,3.10,0.10,0.00,31.50,222.50,310.00,408.70,253.70,91.20,1.30,0.60,1322.60,3.10,31.60,1194.90,93.00 +CHHATTISGARH,2000,2.60,0.00,0.60,1.50,9.30,180.70,322.40,215.60,169.10,4.30,0.20,0.10,906.30,2.60,11.40,887.80,4.60 +CHHATTISGARH,2001,0.80,0.30,14.60,17.60,16.60,339.40,630.60,380.30,108.40,86.90,4.60,0.00,1600.10,1.10,48.70,1458.80,91.60 +CHHATTISGARH,2002,41.50,4.90,12.20,3.30,32.10,196.30,138.40,352.40,122.30,57.80,13.30,15.90,990.20,46.40,47.50,809.30,86.90 +CHHATTISGARH,2003,3.70,17.70,12.10,2.60,0.70,128.70,446.60,519.70,384.10,157.60,5.80,14.90,1694.30,21.40,15.50,1479.10,178.20 +CHHATTISGARH,2004,37.80,16.70,3.10,21.20,6.80,213.10,323.10,351.70,126.50,43.90,0.70,0.10,1144.50,54.50,31.10,1014.30,44.60 +CHHATTISGARH,2005,57.60,15.60,6.10,6.50,16.40,197.00,393.80,267.70,240.50,83.50,1.60,1.00,1287.20,73.20,29.00,1099.00,86.10 +CHHATTISGARH,2006,2.70,0.00,26.20,17.20,23.50,92.20,495.10,447.20,184.60,13.30,15.10,0.70,1317.70,2.70,66.80,1219.00,29.10 +CHHATTISGARH,2007,0.00,15.70,6.20,11.40,10.40,259.40,309.90,338.80,259.10,67.80,2.00,0.50,1281.20,15.70,28.00,1167.20,70.30 +CHHATTISGARH,2008,6.70,9.70,22.20,11.20,9.50,236.40,280.50,305.10,215.40,10.70,1.20,0.00,1108.50,16.40,42.90,1037.40,11.80 +CHHATTISGARH,2009,1.20,0.00,2.30,1.90,11.20,45.30,455.00,247.10,104.70,43.60,42.50,1.90,956.60,1.20,15.40,852.00,88.00 +CHHATTISGARH,2010,7.90,4.90,1.00,5.90,12.60,102.60,426.80,340.30,302.50,54.30,20.20,27.60,1306.60,12.80,19.40,1172.20,102.10 +CHHATTISGARH,2011,0.30,11.50,2.60,35.00,16.80,183.50,272.60,379.80,382.20,15.50,0.00,2.80,1302.70,11.80,54.40,1218.20,18.30 +CHHATTISGARH,2012,36.60,4.80,1.10,14.90,9.40,147.30,430.60,442.20,245.30,19.80,20.40,5.00,1377.40,41.50,25.40,1265.40,45.10 +CHHATTISGARH,2013,2.80,19.70,4.90,45.80,5.70,263.60,418.80,336.60,140.90,180.90,0.30,0.00,1420.00,22.50,56.40,1159.90,181.20 +CHHATTISGARH,2014,2.30,29.00,21.40,17.30,25.00,104.90,416.70,327.70,252.70,77.90,2.60,1.10,1278.70,31.30,63.70,1102.10,81.60 +CHHATTISGARH,2015,15.80,1.20,21.20,37.00,13.00,257.60,248.60,286.60,216.90,17.70,0.60,1.50,1117.60,17.00,71.20,1009.70,19.70 +COASTAL ANDHRA PRADESH,1901,18.80,80.90,7.20,28.70,68.70,77.70,113.00,133.70,125.30,173.40,164.80,1.50,993.80,99.70,104.60,449.70,339.80 +COASTAL ANDHRA PRADESH,1902,2.00,0.00,2.80,23.90,37.60,72.60,144.50,236.10,204.50,262.00,50.40,27.10,1063.60,2.00,64.40,657.70,339.50 +COASTAL ANDHRA PRADESH,1903,0.80,13.30,0.20,6.20,73.40,154.00,248.60,258.00,216.50,159.10,173.90,12.10,1316.20,14.20,79.80,877.10,345.10 +COASTAL ANDHRA PRADESH,1904,1.30,0.00,5.40,3.00,136.30,107.80,120.20,117.70,116.80,240.90,0.00,10.70,860.20,1.30,144.70,462.60,251.60 +COASTAL ANDHRA PRADESH,1905,1.10,16.70,68.00,37.00,68.80,84.40,64.60,210.80,170.20,66.00,7.40,0.00,795.20,17.80,173.80,530.10,73.40 +COASTAL ANDHRA PRADESH,1906,3.90,23.50,9.90,2.30,11.00,252.60,155.80,241.10,126.90,92.10,21.50,80.80,1021.50,27.40,23.20,776.40,194.50 +COASTAL ANDHRA PRADESH,1907,0.60,3.00,38.90,80.90,18.90,224.50,119.70,118.20,94.70,37.00,52.40,29.10,817.90,3.60,138.70,557.20,118.40 +COASTAL ANDHRA PRADESH,1908,54.10,1.30,1.70,7.20,40.90,57.20,120.90,162.00,320.90,73.90,2.10,0.00,842.30,55.50,49.80,661.10,75.90 +COASTAL ANDHRA PRADESH,1909,1.30,1.30,0.20,112.20,34.00,109.70,154.20,193.10,169.80,13.40,3.10,75.20,867.60,2.60,146.50,626.80,91.70 +COASTAL ANDHRA PRADESH,1910,0.90,2.40,0.20,31.90,22.60,179.60,222.20,204.50,216.80,286.40,87.20,0.00,1254.60,3.30,54.70,823.00,373.60 +COASTAL ANDHRA PRADESH,1911,0.00,0.00,10.30,14.40,31.20,150.50,158.10,76.20,160.40,119.70,77.60,21.00,819.50,0.00,56.00,545.10,218.40 +COASTAL ANDHRA PRADESH,1912,0.00,9.60,4.80,15.20,33.60,55.90,217.90,230.10,188.70,86.10,61.70,0.00,903.60,9.60,53.60,692.50,147.90 +COASTAL ANDHRA PRADESH,1913,0.00,12.90,0.50,3.30,68.20,129.00,166.90,124.30,119.50,206.70,7.20,2.40,841.00,12.90,72.10,539.70,216.30 +COASTAL ANDHRA PRADESH,1914,0.00,10.90,5.80,73.00,77.70,171.70,157.40,178.50,292.40,22.80,17.80,5.10,1013.20,10.90,156.60,800.00,45.70 +COASTAL ANDHRA PRADESH,1915,21.10,17.90,53.30,44.80,63.50,177.30,134.80,226.50,170.50,228.80,208.80,0.00,1347.40,39.00,161.70,709.10,437.70 +COASTAL ANDHRA PRADESH,1916,0.20,5.10,0.50,16.30,43.90,157.90,282.10,197.10,166.20,355.90,126.00,0.10,1351.20,5.30,60.70,803.30,481.90 +COASTAL ANDHRA PRADESH,1917,1.10,25.10,14.90,16.40,105.50,201.40,142.40,215.80,219.60,216.00,126.50,5.00,1289.60,26.30,136.70,779.20,347.40 +COASTAL ANDHRA PRADESH,1918,25.10,2.50,9.50,13.00,79.60,109.40,107.40,130.90,149.60,30.80,111.70,8.50,778.00,27.60,102.00,497.40,151.00 +COASTAL ANDHRA PRADESH,1919,41.30,22.90,10.40,23.60,70.00,111.20,194.80,118.60,161.80,194.50,183.60,8.70,1141.40,64.20,104.00,586.40,386.80 +COASTAL ANDHRA PRADESH,1920,9.60,23.80,4.70,25.10,78.40,83.00,71.60,124.90,113.60,176.50,12.20,0.00,723.50,33.30,108.20,393.20,188.70 +COASTAL ANDHRA PRADESH,1921,52.30,0.10,0.10,35.30,11.20,97.60,204.60,168.00,228.70,192.60,24.70,0.00,1015.00,52.40,46.50,698.90,217.20 +COASTAL ANDHRA PRADESH,1922,10.90,0.00,0.00,5.30,35.80,103.30,145.60,132.60,117.50,128.00,174.00,0.20,853.30,10.90,41.10,499.00,302.30 +COASTAL ANDHRA PRADESH,1923,0.20,58.30,13.50,14.90,39.10,44.30,128.80,53.40,260.60,267.50,245.60,0.10,1126.40,58.50,67.50,487.10,513.20 +COASTAL ANDHRA PRADESH,1924,3.70,6.20,0.60,8.80,66.10,66.20,111.60,197.60,349.80,131.00,240.30,0.00,1182.00,9.90,75.60,725.10,371.40 +COASTAL ANDHRA PRADESH,1925,2.90,0.10,5.60,40.20,196.40,151.40,197.80,223.90,103.40,262.60,46.10,8.10,1238.50,3.00,242.20,676.50,316.80 +COASTAL ANDHRA PRADESH,1926,13.70,7.70,78.70,57.10,36.40,72.40,191.40,173.30,162.80,76.70,0.50,0.00,870.70,21.40,172.20,599.90,77.20 +COASTAL ANDHRA PRADESH,1927,14.10,8.40,18.50,6.30,40.00,196.40,172.40,197.20,157.00,66.10,176.50,0.00,1053.00,22.60,64.80,723.10,242.60 +COASTAL ANDHRA PRADESH,1928,0.00,2.80,1.40,55.10,31.00,88.70,189.00,136.40,208.20,385.90,2.20,0.70,1101.30,2.80,87.40,622.20,388.80 +COASTAL ANDHRA PRADESH,1929,2.70,37.40,1.50,19.70,41.00,190.00,78.30,138.40,146.30,173.10,5.30,25.40,859.10,40.20,62.20,553.00,203.80 +COASTAL ANDHRA PRADESH,1930,0.50,32.40,6.60,23.20,117.30,189.60,112.40,133.00,136.70,284.10,181.90,5.10,1222.70,32.90,147.10,571.60,471.10 +COASTAL ANDHRA PRADESH,1931,0.50,0.40,5.20,8.80,46.90,142.20,177.70,120.50,231.70,388.80,164.00,0.30,1287.10,0.80,60.90,672.20,553.10 +COASTAL ANDHRA PRADESH,1932,0.00,53.20,0.10,20.80,47.20,79.60,203.30,122.30,147.80,117.20,180.00,0.10,971.50,53.20,68.00,553.00,297.20 +COASTAL ANDHRA PRADESH,1933,4.10,0.00,6.80,23.30,88.00,106.00,187.10,135.60,193.00,251.30,67.30,24.80,1087.30,4.20,118.00,621.70,343.40 +COASTAL ANDHRA PRADESH,1934,0.00,0.20,0.60,19.90,21.70,100.50,202.20,207.50,131.50,116.20,80.60,3.20,884.20,0.20,42.30,641.70,200.10 +COASTAL ANDHRA PRADESH,1935,1.20,0.10,4.20,24.70,10.50,94.60,158.90,122.60,191.80,141.00,1.60,0.00,751.10,1.30,39.40,567.80,142.60 +COASTAL ANDHRA PRADESH,1936,8.70,127.10,5.80,22.40,145.20,162.70,211.90,188.30,123.90,233.40,91.20,8.10,1328.70,135.70,173.40,686.80,332.70 +COASTAL ANDHRA PRADESH,1937,0.00,71.80,15.20,86.30,30.30,59.30,172.50,153.70,108.70,185.20,8.90,0.20,892.20,71.80,131.90,494.20,194.30 +COASTAL ANDHRA PRADESH,1938,0.10,31.90,7.60,3.50,82.60,158.90,161.30,176.10,294.20,115.20,174.40,0.40,1206.20,32.00,93.70,790.50,290.00 +COASTAL ANDHRA PRADESH,1939,3.00,0.00,29.70,19.70,11.30,80.20,138.70,121.90,150.10,416.70,95.80,3.20,1070.30,3.00,60.70,490.90,515.80 +COASTAL ANDHRA PRADESH,1940,0.20,5.30,65.60,15.00,202.10,120.30,157.40,186.60,122.10,106.30,75.80,12.40,1069.00,5.40,282.60,586.40,194.50 +COASTAL ANDHRA PRADESH,1941,2.60,13.80,4.10,8.20,58.50,192.70,83.00,97.40,184.10,266.40,107.80,7.80,1026.50,16.40,70.80,557.30,382.00 +COASTAL ANDHRA PRADESH,1942,2.90,5.60,2.10,37.20,30.50,84.70,130.90,196.10,142.10,159.70,85.60,2.40,879.80,8.50,69.90,553.70,247.60 +COASTAL ANDHRA PRADESH,1943,20.20,5.30,1.60,72.50,46.00,142.10,129.50,116.60,195.40,208.20,40.20,0.20,977.90,25.50,120.20,583.70,248.50 +COASTAL ANDHRA PRADESH,1944,4.90,19.40,96.60,24.80,42.50,132.20,179.80,157.60,159.40,304.70,33.90,0.00,1155.90,24.30,163.90,629.10,338.60 +COASTAL ANDHRA PRADESH,1945,1.00,0.00,0.00,48.00,39.90,46.60,193.30,185.80,201.20,242.00,19.10,14.70,991.50,1.00,87.90,626.80,275.80 +COASTAL ANDHRA PRADESH,1946,0.00,3.80,5.40,66.00,60.70,127.60,179.40,157.70,113.30,94.40,160.00,2.00,970.20,3.80,132.10,577.90,256.40 +COASTAL ANDHRA PRADESH,1947,10.30,3.00,0.80,15.40,18.30,86.50,217.40,216.10,209.80,154.70,58.30,135.50,1126.20,13.40,34.50,729.80,348.50 +COASTAL ANDHRA PRADESH,1948,1.40,26.80,7.40,24.80,44.60,92.70,193.50,113.80,232.70,103.70,181.60,1.50,1024.60,28.20,76.90,632.70,286.80 +COASTAL ANDHRA PRADESH,1949,7.70,0.60,2.50,32.20,71.20,97.30,231.20,179.20,254.80,319.40,21.30,0.00,1217.30,8.30,105.80,762.40,340.70 +COASTAL ANDHRA PRADESH,1950,0.00,17.20,31.00,7.00,52.80,97.80,221.80,132.30,192.50,130.10,103.20,0.30,986.00,17.20,90.70,644.40,233.60 +COASTAL ANDHRA PRADESH,1951,1.20,0.00,27.90,46.10,75.40,133.70,285.20,186.50,174.10,89.70,74.20,2.20,1096.10,1.20,149.40,779.40,166.10 +COASTAL ANDHRA PRADESH,1952,0.00,17.40,12.20,28.80,94.20,87.40,130.10,128.80,130.20,251.80,0.00,35.70,916.70,17.40,135.20,476.50,287.50 +COASTAL ANDHRA PRADESH,1953,13.20,0.60,0.00,21.50,43.40,136.70,149.60,190.60,183.70,234.80,15.60,0.30,990.00,13.80,64.90,660.60,250.70 +COASTAL ANDHRA PRADESH,1954,0.30,0.00,9.00,8.00,37.50,129.70,218.50,205.70,266.50,263.00,0.00,15.30,1153.50,0.30,54.50,820.40,278.40 +COASTAL ANDHRA PRADESH,1955,5.10,0.30,18.60,14.20,250.10,118.80,128.90,263.60,177.00,325.90,76.20,0.30,1378.90,5.40,282.90,688.20,402.40 +COASTAL ANDHRA PRADESH,1956,4.20,3.20,0.50,28.60,89.10,210.10,305.20,163.70,209.30,331.10,60.90,2.70,1408.50,7.50,118.10,888.30,394.70 +COASTAL ANDHRA PRADESH,1957,0.70,1.80,21.20,14.30,28.30,152.60,149.50,298.10,198.80,125.50,26.90,0.00,1017.60,2.50,63.70,799.00,152.40 +COASTAL ANDHRA PRADESH,1958,7.40,1.80,10.70,17.50,40.90,108.50,281.40,245.60,215.90,527.20,148.40,0.10,1605.30,9.20,69.10,851.30,675.70 +COASTAL ANDHRA PRADESH,1959,5.80,10.70,0.00,14.70,11.50,178.80,272.30,230.90,161.10,227.30,2.60,5.00,1120.70,16.40,26.30,843.10,234.90 +COASTAL ANDHRA PRADESH,1960,1.40,0.20,25.10,1.30,18.30,167.80,196.40,92.50,287.30,108.80,24.30,20.30,943.60,1.60,44.70,743.90,153.40 +COASTAL ANDHRA PRADESH,1961,9.60,28.40,2.30,9.00,44.40,138.60,199.80,172.90,181.20,282.30,48.70,2.10,1119.20,37.90,55.70,692.50,333.20 +COASTAL ANDHRA PRADESH,1962,3.70,8.70,0.90,34.60,69.60,121.10,231.30,179.10,288.10,357.60,35.80,15.00,1345.50,12.30,105.10,819.60,408.50 +COASTAL ANDHRA PRADESH,1963,0.00,0.00,7.00,50.20,23.50,126.60,137.40,176.10,131.30,371.70,0.10,0.00,1023.90,0.00,80.70,571.40,371.80 +COASTAL ANDHRA PRADESH,1964,0.70,11.20,1.10,6.00,33.50,116.90,170.10,226.40,353.60,76.20,64.60,0.70,1061.00,11.90,40.60,867.00,141.50 +COASTAL ANDHRA PRADESH,1965,1.40,1.20,7.10,35.40,36.70,52.00,166.30,157.50,208.10,61.30,25.00,2.30,754.20,2.60,79.20,583.90,88.60 +COASTAL ANDHRA PRADESH,1966,40.10,1.20,5.00,8.60,22.80,107.10,243.30,163.90,128.70,66.50,146.60,20.90,954.70,41.30,36.30,643.10,234.00 +COASTAL ANDHRA PRADESH,1967,13.10,0.10,71.80,18.60,19.70,124.30,245.60,124.60,141.50,27.90,4.60,51.40,843.10,13.10,110.10,635.90,84.00 +COASTAL ANDHRA PRADESH,1968,11.30,11.80,13.60,42.90,28.00,70.80,170.20,45.50,164.80,197.20,78.10,4.80,838.90,23.10,84.40,451.30,280.00 +COASTAL ANDHRA PRADESH,1969,0.20,0.40,2.70,5.60,262.60,125.10,192.40,99.80,122.70,208.00,201.70,58.50,1279.70,0.70,270.80,540.00,468.20 +COASTAL ANDHRA PRADESH,1970,0.90,9.70,22.30,18.70,95.00,174.00,182.50,243.50,133.30,183.30,0.80,0.00,1064.20,10.60,136.00,733.40,184.10 +COASTAL ANDHRA PRADESH,1971,1.00,26.40,12.70,104.10,88.30,86.40,99.80,205.30,222.00,186.20,1.00,0.00,1033.20,27.40,205.10,613.50,187.20 +COASTAL ANDHRA PRADESH,1972,0.00,32.50,0.00,32.10,20.70,125.10,121.30,80.80,191.60,324.20,86.80,13.30,1028.50,32.50,52.80,518.80,424.40 +COASTAL ANDHRA PRADESH,1973,0.00,0.40,12.00,1.10,45.20,73.30,158.60,178.40,132.50,233.70,23.50,0.30,859.10,0.40,58.30,542.90,257.50 +COASTAL ANDHRA PRADESH,1974,0.10,1.50,11.20,12.90,34.90,120.40,126.30,132.80,194.30,274.20,36.30,0.00,944.90,1.60,59.10,573.80,310.50 +COASTAL ANDHRA PRADESH,1975,0.20,10.50,0.30,2.60,33.50,200.70,154.20,210.90,230.80,300.80,47.60,0.30,1192.40,10.70,36.40,796.50,348.70 +COASTAL ANDHRA PRADESH,1976,0.00,1.10,2.70,22.70,36.90,78.40,199.00,228.80,92.20,81.30,345.90,1.10,1090.30,1.10,62.30,598.50,428.40 +COASTAL ANDHRA PRADESH,1977,1.50,0.00,1.20,62.50,102.40,112.50,149.70,176.80,112.30,121.00,289.90,3.00,1132.80,1.50,166.10,551.20,413.90 +COASTAL ANDHRA PRADESH,1978,9.10,18.00,12.20,29.40,19.00,166.70,193.10,258.50,194.20,77.80,54.20,6.00,1038.30,27.10,60.60,812.50,138.10 +COASTAL ANDHRA PRADESH,1979,0.60,30.20,0.10,15.20,125.10,108.70,97.30,95.50,233.20,52.20,160.60,15.50,934.10,30.70,140.40,534.60,228.30 +COASTAL ANDHRA PRADESH,1980,0.50,2.40,5.60,16.10,31.50,217.50,169.30,176.70,128.00,205.00,48.40,13.80,1014.80,2.90,53.20,691.50,267.20 +COASTAL ANDHRA PRADESH,1981,16.00,0.10,31.40,15.20,62.30,99.70,181.30,149.50,264.00,89.70,18.00,2.10,929.30,16.00,108.90,694.50,109.80 +COASTAL ANDHRA PRADESH,1982,1.60,0.50,7.50,37.50,47.60,94.40,151.20,148.30,135.70,210.60,53.50,0.10,888.50,2.10,92.70,529.50,264.20 +COASTAL ANDHRA PRADESH,1983,0.10,17.30,4.60,8.80,56.20,147.00,188.10,264.10,259.20,232.70,7.60,10.20,1196.00,17.40,69.60,858.50,250.60 +COASTAL ANDHRA PRADESH,1984,5.70,9.80,1.80,26.50,21.20,89.10,219.00,123.10,154.80,111.80,20.90,1.60,785.20,15.50,49.50,585.90,134.30 +COASTAL ANDHRA PRADESH,1985,42.70,0.40,1.70,7.00,17.90,105.10,198.60,179.30,88.60,248.20,32.60,45.50,967.60,43.10,26.60,571.60,326.30 +COASTAL ANDHRA PRADESH,1986,32.60,25.90,2.20,26.60,44.10,101.00,106.00,336.20,95.30,124.40,111.90,3.70,1009.70,58.40,72.90,638.40,239.90 +COASTAL ANDHRA PRADESH,1987,20.90,0.20,24.00,16.90,52.90,75.60,99.70,163.40,103.40,265.00,243.60,14.20,1079.90,21.10,93.90,442.20,522.80 +COASTAL ANDHRA PRADESH,1988,0.00,16.70,2.30,38.40,69.60,68.20,313.40,269.80,277.50,78.60,5.80,24.60,1164.80,16.70,110.30,928.90,109.00 +COASTAL ANDHRA PRADESH,1989,0.10,0.10,37.40,7.30,31.90,128.30,329.60,235.50,189.60,55.50,13.20,1.60,1030.00,0.20,76.60,883.00,70.30 +COASTAL ANDHRA PRADESH,1990,10.30,81.10,84.50,24.20,507.70,107.40,102.50,223.20,158.50,248.70,58.90,4.30,1611.10,91.40,616.40,591.50,311.90 +COASTAL ANDHRA PRADESH,1991,19.60,3.30,6.60,17.90,24.50,215.50,145.30,134.40,265.70,148.70,132.40,8.30,1122.10,22.80,49.00,760.90,289.30 +COASTAL ANDHRA PRADESH,1992,13.10,4.30,0.00,9.10,45.50,75.60,208.40,207.20,145.80,147.50,144.40,0.00,1001.00,17.40,54.60,637.10,291.80 +COASTAL ANDHRA PRADESH,1993,2.20,9.80,16.60,26.60,71.70,73.20,166.20,99.30,172.90,196.20,17.50,17.50,869.70,12.00,114.90,511.70,231.20 +COASTAL ANDHRA PRADESH,1994,7.20,17.40,3.10,30.60,49.20,62.50,218.30,156.50,137.00,257.60,213.40,2.10,1155.10,24.60,83.00,574.40,473.10 +COASTAL ANDHRA PRADESH,1995,27.50,2.50,12.00,19.80,257.80,80.00,225.30,212.70,128.60,329.60,50.10,6.10,1352.00,30.10,289.60,646.60,385.80 +COASTAL ANDHRA PRADESH,1996,3.40,5.80,4.40,23.70,23.80,236.80,206.90,225.20,160.50,240.00,68.90,11.40,1210.90,9.30,51.90,829.40,320.30 +COASTAL ANDHRA PRADESH,1997,15.10,5.60,19.70,62.60,25.20,63.10,156.00,128.10,315.50,83.60,51.70,45.70,972.10,20.70,107.60,662.70,181.00 +COASTAL ANDHRA PRADESH,1998,12.60,35.70,24.70,38.90,33.60,136.20,214.10,252.20,255.50,178.60,128.60,0.00,1310.80,48.30,97.20,858.00,307.20 +COASTAL ANDHRA PRADESH,1999,0.10,2.70,0.20,11.00,74.30,126.40,154.20,136.60,137.50,153.90,28.30,0.00,825.10,2.80,85.40,554.70,182.20 +COASTAL ANDHRA PRADESH,2000,0.10,42.40,0.70,19.10,68.40,200.50,154.10,311.50,102.90,69.60,10.60,12.40,992.30,42.50,88.30,768.90,92.60 +COASTAL ANDHRA PRADESH,2001,4.60,3.80,20.00,54.10,50.80,117.20,123.00,170.70,187.20,196.00,78.00,4.10,1009.30,8.40,124.80,598.10,278.00 +COASTAL ANDHRA PRADESH,2002,28.00,0.00,7.30,34.80,35.00,115.20,74.70,173.50,71.70,148.70,14.30,0.00,703.20,28.00,77.10,435.00,163.00 +COASTAL ANDHRA PRADESH,2003,6.20,19.40,40.70,19.40,12.20,104.00,241.70,158.30,130.20,252.30,11.50,101.10,1096.80,25.60,72.30,634.10,364.90 +COASTAL ANDHRA PRADESH,2004,24.00,11.40,11.60,40.10,57.60,152.80,192.10,125.00,101.70,147.90,9.40,0.20,873.60,35.30,109.30,571.50,157.50 +COASTAL ANDHRA PRADESH,2005,13.60,8.00,17.40,32.20,48.40,88.10,151.50,105.90,398.10,298.00,56.20,4.20,1221.60,21.60,98.00,743.60,358.40 +COASTAL ANDHRA PRADESH,2006,0.00,0.00,30.70,58.00,67.60,132.00,126.80,279.70,224.10,185.40,55.30,0.00,1159.60,0.00,156.30,762.60,240.70 +COASTAL ANDHRA PRADESH,2007,0.00,5.10,0.10,8.50,13.00,300.10,141.00,164.40,287.10,167.70,11.90,0.50,1099.20,5.10,21.60,892.50,180.00 +COASTAL ANDHRA PRADESH,2008,3.20,61.60,93.80,18.50,34.90,119.80,208.50,276.20,166.80,51.60,71.40,1.20,1107.50,64.80,147.10,771.40,124.20 +COASTAL ANDHRA PRADESH,2009,0.00,0.00,5.70,6.40,53.00,72.60,140.90,163.50,151.90,92.60,102.60,1.30,790.50,0.00,65.10,528.80,196.50 +COASTAL ANDHRA PRADESH,2010,21.80,2.30,4.40,14.80,162.00,156.10,318.90,248.60,230.50,204.00,210.90,138.20,1712.40,24.10,181.20,954.00,553.10 +COASTAL ANDHRA PRADESH,2011,0.00,17.90,0.90,62.30,67.90,86.80,196.00,215.80,129.70,74.60,4.90,5.00,861.90,17.90,131.20,628.40,84.40 +COASTAL ANDHRA PRADESH,2012,37.60,0.00,2.70,24.00,39.30,95.40,221.90,221.20,246.50,140.00,289.70,0.00,1318.40,37.60,66.10,785.00,429.70 +COASTAL ANDHRA PRADESH,2013,2.00,29.60,0.20,48.00,28.20,127.50,162.40,123.10,132.00,411.50,53.10,2.80,1120.50,31.70,76.40,545.00,467.40 +COASTAL ANDHRA PRADESH,2014,0.40,1.20,9.10,6.00,112.90,45.70,151.80,177.80,144.50,195.60,23.70,6.40,874.90,1.50,128.00,519.70,225.70 +COASTAL ANDHRA PRADESH,2015,2.00,0.60,5.50,32.30,34.10,283.80,116.00,192.00,201.80,59.70,81.20,2.00,1010.90,2.50,71.90,793.60,142.80 +TELANGANA,1901,6.90,41.80,7.80,45.20,22.00,123.60,237.80,177.20,77.70,75.50,12.20,0.00,827.70,48.70,75.00,616.40,87.70 +TELANGANA,1902,0.00,0.00,0.20,10.70,7.30,52.40,146.30,142.80,190.50,41.70,31.20,7.30,630.40,0.00,18.20,532.00,80.20 +TELANGANA,1903,12.90,4.60,0.00,9.90,40.70,99.20,505.20,246.70,191.90,155.80,15.50,1.10,1283.40,17.50,50.50,1042.90,172.40 +TELANGANA,1904,0.00,0.00,10.80,0.80,14.70,104.20,139.50,50.00,162.30,44.40,0.00,0.00,526.70,0.00,26.30,456.00,44.40 +TELANGANA,1905,0.00,4.30,12.80,27.60,32.20,129.50,82.40,237.30,179.10,19.60,0.00,0.00,724.90,4.30,72.60,628.40,19.60 +TELANGANA,1906,22.50,1.20,13.40,2.40,0.70,211.10,210.80,226.70,96.30,20.50,14.90,34.80,855.20,23.70,16.50,744.80,70.20 +TELANGANA,1907,1.00,3.30,10.20,61.90,0.20,217.50,160.50,263.30,116.80,0.30,3.60,5.00,843.70,4.30,72.30,758.10,8.90 +TELANGANA,1908,35.60,2.60,5.20,0.30,6.50,107.40,254.90,168.30,401.20,0.10,0.00,0.70,982.80,38.30,12.00,931.80,0.80 +TELANGANA,1909,0.50,5.90,0.50,26.40,2.20,133.80,288.30,168.60,138.50,4.60,0.00,0.20,769.50,6.30,29.10,729.20,4.80 +TELANGANA,1910,0.00,0.00,0.00,4.20,25.00,220.90,198.20,150.30,230.50,101.40,45.30,0.00,975.90,0.00,29.20,799.90,146.80 +TELANGANA,1911,0.00,0.00,7.90,0.70,7.80,133.90,122.10,176.30,174.40,23.00,6.00,9.90,662.00,0.00,16.40,606.70,39.00 +TELANGANA,1912,0.00,37.50,0.00,20.40,6.60,28.50,263.30,196.80,149.50,7.80,33.40,0.00,743.80,37.50,26.90,638.10,41.30 +TELANGANA,1913,0.00,13.40,0.00,8.00,34.60,83.50,337.20,108.80,101.70,35.20,0.00,9.70,732.20,13.40,42.60,631.30,44.90 +TELANGANA,1914,0.00,0.00,1.20,34.10,41.50,233.10,271.30,195.10,278.60,16.20,10.30,2.00,1083.50,0.00,76.80,978.10,28.50 +TELANGANA,1915,15.40,8.60,77.80,18.80,26.70,165.60,140.40,236.20,186.80,122.00,23.60,0.10,1022.00,24.00,123.30,729.00,145.70 +TELANGANA,1916,0.00,4.10,0.00,15.90,16.10,233.20,216.40,137.00,291.80,153.10,95.10,0.00,1162.60,4.10,32.00,878.40,248.10 +TELANGANA,1917,0.00,65.50,33.00,34.10,52.70,184.10,267.50,180.10,275.60,106.70,6.60,0.00,1206.00,65.50,119.90,907.30,113.40 +TELANGANA,1918,20.20,0.00,32.60,8.30,55.50,97.80,106.10,89.60,96.90,6.40,7.50,33.90,554.70,20.20,96.40,390.30,47.80 +TELANGANA,1919,5.50,39.20,31.30,35.00,23.60,158.80,139.40,115.30,129.90,130.60,78.50,7.40,894.60,44.80,89.90,543.40,216.60 +TELANGANA,1920,7.40,0.00,1.70,24.40,31.40,62.80,138.80,66.50,78.90,24.90,0.00,0.00,437.00,7.40,57.60,347.10,24.90 +TELANGANA,1921,7.10,0.00,0.10,5.40,5.50,200.90,296.70,161.10,240.70,68.00,17.90,0.00,1003.30,7.10,11.00,899.40,85.90 +TELANGANA,1922,55.30,0.00,0.00,6.60,50.10,69.20,184.30,158.30,170.20,23.00,50.70,0.00,767.50,55.30,56.70,581.90,73.70 +TELANGANA,1923,3.00,5.30,23.30,10.70,18.00,43.50,222.80,80.30,334.40,44.00,1.00,0.00,786.20,8.30,52.00,680.90,45.00 +TELANGANA,1924,37.00,0.00,0.00,9.20,34.60,62.80,124.70,220.20,288.20,51.60,116.10,0.00,944.50,37.00,43.80,695.90,167.70 +TELANGANA,1925,0.00,0.00,0.00,49.80,97.80,168.10,266.20,239.20,148.10,187.50,8.10,3.10,1167.90,0.00,147.60,821.60,198.70 +TELANGANA,1926,46.10,2.00,24.00,48.80,24.00,74.70,227.30,205.10,70.50,41.00,0.00,0.00,763.50,48.10,96.80,577.60,41.00 +TELANGANA,1927,9.60,11.00,4.60,2.00,14.30,248.30,266.00,158.50,142.40,59.90,89.00,0.00,1005.50,20.70,20.80,815.10,148.90 +TELANGANA,1928,0.00,15.80,47.30,4.50,27.90,143.90,248.60,191.60,215.20,104.10,0.00,7.40,1006.40,15.80,79.70,799.40,111.50 +TELANGANA,1929,5.30,64.80,0.00,21.70,2.80,146.00,115.00,142.20,232.50,35.90,0.00,24.50,790.50,70.00,24.40,635.60,60.30 +TELANGANA,1930,0.00,14.70,5.40,13.50,1.70,184.90,131.10,144.70,215.60,60.00,64.30,0.00,835.80,14.70,20.60,676.20,124.30 +TELANGANA,1931,0.30,5.10,4.00,13.30,25.90,187.30,368.60,155.90,288.10,107.40,25.50,1.60,1183.10,5.40,43.30,1000.00,134.50 +TELANGANA,1932,0.00,40.30,1.30,17.60,25.80,119.70,300.40,179.00,172.90,32.00,60.90,0.00,949.90,40.30,44.60,772.00,92.90 +TELANGANA,1933,12.90,17.40,15.70,25.00,63.40,332.00,243.40,226.70,262.20,128.90,24.00,44.50,1396.30,30.30,104.20,1064.30,197.40 +TELANGANA,1934,0.10,0.00,0.10,18.30,1.20,111.70,296.90,280.20,162.30,15.20,42.00,0.00,927.90,0.10,19.60,851.10,57.10 +TELANGANA,1935,16.20,3.40,1.40,42.20,2.70,115.10,309.70,162.90,198.30,43.50,2.60,0.50,898.50,19.60,46.30,786.00,46.60 +TELANGANA,1936,2.50,79.10,15.30,8.40,73.70,200.00,268.90,220.90,128.40,96.40,48.20,15.10,1157.00,81.70,97.40,818.20,159.70 +TELANGANA,1937,0.00,33.20,28.60,105.60,3.00,77.80,285.80,102.40,153.60,72.10,0.90,3.00,866.10,33.20,137.30,619.60,76.00 +TELANGANA,1938,0.00,41.30,14.20,16.60,27.80,226.30,331.60,256.50,201.90,59.20,0.00,0.00,1175.30,41.30,58.60,1016.20,59.20 +TELANGANA,1939,0.00,0.00,22.00,16.70,3.00,73.50,173.20,202.50,107.10,130.30,11.80,0.00,740.00,0.00,41.70,556.30,142.10 +TELANGANA,1940,0.00,0.50,11.40,33.60,91.40,128.50,345.80,281.50,94.70,64.90,22.20,8.10,1082.60,0.50,136.40,850.60,95.10 +TELANGANA,1941,16.60,3.30,4.80,4.80,17.50,121.40,87.90,149.90,137.50,49.60,0.70,0.40,594.40,19.90,27.20,496.70,50.70 +TELANGANA,1942,0.00,23.00,0.20,31.70,30.90,160.00,250.10,277.30,107.40,20.90,3.90,1.60,906.90,23.00,62.70,794.70,26.40 +TELANGANA,1943,15.20,0.60,1.70,34.40,26.90,180.40,179.30,133.40,262.20,62.70,2.60,0.00,899.30,15.80,62.90,755.30,65.20 +TELANGANA,1944,0.00,13.70,82.30,5.40,15.70,114.50,224.10,142.40,207.70,131.90,22.70,0.00,960.50,13.70,103.40,688.70,154.70 +TELANGANA,1945,4.30,0.00,0.00,39.00,11.20,144.50,332.10,238.40,159.10,94.10,4.80,0.00,1027.40,4.30,50.30,874.00,98.90 +TELANGANA,1946,0.00,15.90,5.20,21.70,14.50,152.10,287.20,149.50,85.00,30.70,57.50,3.60,822.80,15.90,41.30,673.90,91.80 +TELANGANA,1947,13.40,18.00,3.30,1.80,10.80,59.90,273.30,315.50,248.30,35.30,16.20,9.70,1005.50,31.40,15.90,897.00,61.10 +TELANGANA,1948,3.70,4.60,5.10,20.00,15.00,71.40,239.30,165.40,242.50,25.00,123.00,0.00,915.00,8.30,40.10,718.60,148.00 +TELANGANA,1949,0.50,0.00,2.40,13.80,67.90,152.00,335.50,173.60,198.10,94.60,0.20,0.00,1038.60,0.60,84.10,859.20,94.80 +TELANGANA,1950,0.00,34.70,14.20,0.20,11.60,78.40,222.70,118.50,254.10,21.80,4.70,0.50,761.30,34.70,25.90,673.70,26.90 +TELANGANA,1951,0.00,0.00,56.10,20.10,31.10,116.80,356.00,151.70,103.90,64.40,0.70,0.00,900.80,0.00,107.30,728.30,65.10 +TELANGANA,1952,0.50,16.40,0.80,12.40,32.50,80.10,205.10,148.90,137.70,88.30,0.20,6.90,729.70,16.90,45.60,571.90,95.30 +TELANGANA,1953,5.10,0.00,3.00,26.80,0.70,224.00,200.90,364.50,269.50,175.80,1.70,0.00,1272.10,5.10,30.50,1058.90,177.50 +TELANGANA,1954,0.00,0.00,13.20,4.30,14.40,105.30,300.40,192.50,252.90,44.20,0.00,1.20,928.40,0.00,31.90,851.20,45.40 +TELANGANA,1955,1.00,0.00,2.90,9.80,27.80,230.30,259.90,300.10,249.70,116.20,5.50,0.00,1203.20,1.00,40.50,1040.00,121.70 +TELANGANA,1956,0.70,1.50,1.90,5.90,52.90,220.10,393.80,133.30,156.90,94.50,59.10,0.00,1120.50,2.20,60.60,904.10,153.50 +TELANGANA,1957,0.00,7.70,23.70,33.40,18.60,157.90,206.90,358.50,100.90,75.60,0.00,0.00,983.20,7.70,75.80,824.10,75.60 +TELANGANA,1958,2.10,4.90,10.00,24.70,14.10,72.90,407.50,351.70,135.20,69.80,20.90,0.00,1113.90,7.10,48.80,967.30,90.80 +TELANGANA,1959,1.00,0.40,0.00,4.00,16.30,163.70,403.20,348.30,212.80,68.60,4.20,1.70,1224.10,1.40,20.30,1128.00,74.50 +TELANGANA,1960,0.70,0.00,32.90,4.10,21.90,223.90,203.60,82.10,197.50,59.40,12.00,1.40,839.50,0.70,58.80,707.10,72.80 +TELANGANA,1961,0.80,6.10,2.70,11.80,46.10,142.20,368.30,209.20,144.50,188.30,26.40,0.20,1146.50,6.90,60.60,864.10,215.00 +TELANGANA,1962,0.20,25.10,2.10,47.00,20.30,84.50,270.50,264.10,289.60,62.50,38.60,34.20,1138.70,25.30,69.40,908.70,135.40 +TELANGANA,1963,0.00,0.30,4.00,35.50,9.00,179.50,214.70,372.70,103.30,91.20,0.00,0.00,1010.10,0.30,48.50,870.10,91.20 +TELANGANA,1964,0.00,0.20,5.50,2.10,0.70,109.10,186.30,232.30,302.40,41.70,7.20,0.00,887.50,0.20,8.30,830.10,48.90 +TELANGANA,1965,2.70,0.80,4.40,6.80,2.70,124.30,318.60,152.20,166.20,0.10,0.00,0.00,778.90,3.50,13.90,761.30,0.10 +TELANGANA,1966,19.80,0.00,2.60,7.90,2.70,67.20,294.00,216.30,254.40,39.50,34.90,31.70,970.90,19.80,13.20,831.90,106.10 +TELANGANA,1967,0.30,0.00,62.70,8.50,1.10,166.70,320.80,183.70,139.40,5.60,0.20,53.10,942.10,0.30,72.30,810.60,58.80 +TELANGANA,1968,16.50,15.00,35.10,16.00,7.40,87.60,188.60,52.30,231.40,82.70,15.80,0.10,748.70,31.50,58.50,560.00,98.70 +TELANGANA,1969,2.20,0.00,1.40,9.60,53.30,103.20,265.50,186.40,278.80,56.10,64.40,26.20,1047.10,2.20,64.30,833.90,146.70 +TELANGANA,1970,6.90,0.70,4.50,22.50,45.80,205.50,135.60,345.80,176.10,26.80,0.00,0.00,970.30,7.60,72.80,863.00,26.80 +TELANGANA,1971,7.30,7.50,6.30,6.90,37.80,139.90,114.10,144.30,97.20,167.90,0.00,0.00,729.10,14.80,51.00,495.40,167.90 +TELANGANA,1972,0.00,14.60,0.10,12.70,12.20,162.80,183.90,93.90,71.30,64.80,49.70,4.80,670.70,14.60,24.90,511.90,119.40 +TELANGANA,1973,0.00,0.00,1.70,5.50,6.40,110.50,239.40,367.00,83.50,223.00,5.30,0.10,1042.50,0.00,13.70,800.40,228.40 +TELANGANA,1974,0.00,0.00,1.80,7.00,32.90,111.10,113.10,171.90,124.80,261.60,6.00,0.00,830.40,0.00,41.70,521.00,267.60 +TELANGANA,1975,12.90,10.50,7.70,3.00,21.80,138.80,269.40,194.00,347.00,204.90,5.70,0.00,1215.80,23.40,32.60,949.20,210.60 +TELANGANA,1976,0.20,0.00,1.00,25.60,10.70,85.70,471.70,277.30,123.40,5.60,34.50,0.00,1035.60,0.20,37.30,958.00,40.10 +TELANGANA,1977,0.00,0.00,2.40,8.00,42.30,97.40,253.10,240.00,70.90,51.00,36.70,6.70,808.60,0.00,52.60,661.50,94.50 +TELANGANA,1978,30.70,19.10,5.90,20.60,23.00,261.60,376.50,376.70,116.00,50.10,31.60,0.00,1311.70,49.80,49.50,1130.80,81.70 +TELANGANA,1979,9.80,22.80,1.20,12.60,48.70,145.90,156.40,131.80,200.00,15.70,39.50,7.30,791.70,32.70,62.50,634.00,62.50 +TELANGANA,1980,0.00,0.00,5.30,15.50,8.30,219.60,210.10,294.50,145.60,5.00,2.40,16.20,922.60,0.00,29.10,869.90,23.60 +TELANGANA,1981,10.30,0.00,26.20,11.70,40.10,187.20,227.50,310.20,285.20,42.50,0.80,2.10,1143.50,10.30,77.90,1010.00,45.30 +TELANGANA,1982,5.70,0.00,4.20,22.20,37.10,123.80,265.60,184.10,174.40,100.80,15.30,0.00,933.20,5.80,63.60,747.80,116.10 +TELANGANA,1983,0.00,4.20,1.70,3.90,38.40,158.80,301.50,416.80,378.20,185.40,1.00,7.50,1497.50,4.20,43.90,1255.40,194.00 +TELANGANA,1984,7.30,8.10,4.70,11.40,3.50,104.90,277.80,119.80,111.80,91.10,2.20,0.00,742.80,15.50,19.70,614.40,93.30 +TELANGANA,1985,5.70,0.00,4.70,15.50,13.60,181.40,223.80,160.80,70.00,108.00,0.00,2.30,785.90,5.70,33.90,636.10,110.30 +TELANGANA,1986,29.40,60.30,1.90,21.50,9.10,115.50,234.90,406.80,65.60,24.60,20.40,17.30,1007.30,89.70,32.50,822.80,62.30 +TELANGANA,1987,15.30,1.00,18.40,9.50,30.50,133.10,275.00,221.60,60.10,94.70,116.00,1.80,976.90,16.20,58.30,689.80,212.50 +TELANGANA,1988,0.00,6.50,1.10,26.60,3.40,135.80,656.20,341.70,313.40,50.50,2.40,7.20,1544.90,6.50,31.10,1447.20,60.10 +TELANGANA,1989,0.00,0.00,39.20,1.90,4.90,238.50,406.00,277.70,165.40,17.40,1.40,8.60,1161.00,0.00,45.90,1087.60,27.40 +TELANGANA,1990,4.20,4.10,35.20,1.00,159.80,245.10,180.20,471.10,132.10,180.20,12.40,0.10,1425.70,8.30,196.10,1028.60,192.70 +TELANGANA,1991,21.70,4.10,8.90,21.60,34.40,194.50,268.80,122.00,100.80,29.40,36.80,6.00,849.10,25.80,65.00,686.20,72.20 +TELANGANA,1992,4.80,0.00,2.50,10.70,20.60,180.50,180.50,271.80,99.00,47.00,46.10,0.00,863.50,4.80,33.90,731.80,93.10 +TELANGANA,1993,4.90,2.00,12.90,13.10,29.40,83.90,291.80,146.40,187.00,100.90,0.10,13.20,885.60,7.00,55.30,709.00,114.20 +TELANGANA,1994,8.60,12.50,0.00,21.50,20.40,115.30,308.20,256.30,53.90,143.00,36.20,0.00,975.70,21.10,41.80,733.60,179.20 +TELANGANA,1995,98.70,0.50,22.00,16.00,35.60,135.40,282.10,209.20,141.10,332.70,12.60,0.00,1286.00,99.30,73.60,767.90,345.30 +TELANGANA,1996,0.00,7.90,4.70,31.10,13.60,115.90,264.10,295.90,160.20,72.40,13.20,7.80,986.80,7.90,49.40,836.10,93.40 +TELANGANA,1997,22.60,0.90,20.20,43.40,21.30,85.50,156.70,154.50,169.10,87.90,46.90,46.90,856.00,23.50,84.90,565.90,181.70 +TELANGANA,1998,5.20,22.20,15.20,15.50,27.90,149.40,264.00,290.50,209.30,79.40,14.50,0.00,1093.00,27.30,58.50,913.20,93.90 +TELANGANA,1999,0.00,9.30,4.60,1.70,74.80,141.60,205.20,190.90,177.60,55.70,2.20,0.00,863.80,9.30,81.20,715.40,58.00 +TELANGANA,2000,0.60,16.80,1.00,16.30,48.80,253.20,220.90,420.50,70.70,20.20,6.40,2.50,1078.00,17.50,66.10,965.30,29.10 +TELANGANA,2001,8.50,0.00,21.50,37.30,7.50,183.90,123.80,266.80,119.90,135.60,17.40,0.00,922.30,8.50,66.40,694.30,153.10 +TELANGANA,2002,18.80,10.10,7.60,7.70,32.00,143.20,91.70,321.70,52.40,76.20,3.90,0.00,765.30,28.90,47.30,609.00,80.10 +TELANGANA,2003,0.00,10.70,21.90,14.00,7.90,112.60,312.20,266.50,103.20,101.70,7.30,5.30,963.20,10.70,43.80,794.50,114.20 +TELANGANA,2004,34.40,17.90,9.30,25.90,34.60,64.60,216.70,117.70,110.10,30.60,5.30,0.00,667.00,52.20,69.80,509.10,35.90 +TELANGANA,2005,43.40,14.10,14.60,23.80,19.70,115.10,400.30,126.90,246.30,136.10,3.90,18.80,1163.10,57.50,58.20,888.50,158.80 +TELANGANA,2006,0.00,0.00,42.70,38.60,46.10,104.80,169.50,308.20,280.20,28.10,34.70,0.00,1053.00,0.00,127.50,862.70,62.80 +TELANGANA,2007,0.00,0.00,0.10,0.10,9.20,176.60,134.60,206.60,262.30,40.80,13.00,0.00,843.30,0.00,9.40,780.20,53.80 +TELANGANA,2008,0.20,18.60,108.60,15.70,4.90,132.90,183.40,391.80,146.70,24.20,7.50,0.80,1035.30,18.80,129.30,854.80,32.50 +TELANGANA,2009,0.00,0.00,2.10,4.50,13.10,85.80,118.40,192.30,149.70,69.50,29.60,1.20,666.30,0.00,19.80,546.20,100.30 +TELANGANA,2010,10.30,5.30,1.50,5.60,24.90,127.00,395.50,308.10,249.80,98.70,40.50,9.30,1276.40,15.50,32.00,1080.40,148.50 +TELANGANA,2011,0.00,11.90,2.60,25.60,9.30,83.90,268.20,225.90,107.60,13.90,4.20,0.00,753.10,11.90,37.40,685.60,18.10 +TELANGANA,2012,6.70,0.00,0.20,14.00,8.40,124.40,300.30,229.90,202.40,83.60,38.70,0.00,1008.60,6.70,22.60,857.00,122.30 +TELANGANA,2013,2.40,29.00,0.20,24.40,8.50,213.40,453.80,230.60,161.40,205.90,16.40,2.70,1348.70,31.40,33.00,1059.20,225.00 +TELANGANA,2014,0.20,2.90,58.30,10.30,73.30,62.30,146.00,205.20,146.80,29.60,10.80,0.70,746.40,3.10,141.90,560.20,41.00 +TELANGANA,2015,17.50,0.00,43.00,65.70,23.30,266.90,104.40,160.50,158.30,15.60,0.30,1.70,857.30,17.50,132.00,690.10,17.60 +RAYALSEEMA,1901,7.00,50.20,0.00,12.10,38.90,53.00,73.40,60.30,109.00,81.60,137.20,91.30,714.00,57.20,51.00,295.60,310.10 +RAYALSEEMA,1902,10.00,0.20,1.70,11.00,36.80,73.60,41.30,148.30,181.70,188.50,88.90,36.40,818.40,10.10,49.60,444.90,313.80 +RAYALSEEMA,1903,30.00,0.10,0.00,3.60,80.50,67.50,127.50,140.60,219.70,95.30,289.40,84.00,1138.20,30.10,84.10,555.30,468.70 +RAYALSEEMA,1904,14.80,0.00,1.70,7.10,58.80,39.80,75.10,19.40,84.70,111.50,4.40,16.10,433.40,14.80,67.60,219.00,132.00 +RAYALSEEMA,1905,6.50,6.80,17.00,18.30,44.20,66.10,50.90,219.30,36.50,180.20,55.40,2.00,703.40,13.30,79.60,372.90,237.60 +RAYALSEEMA,1906,115.30,7.20,6.80,2.10,9.60,84.10,127.90,154.40,130.40,107.70,35.00,132.20,912.60,122.40,18.50,496.80,274.90 +RAYALSEEMA,1907,1.10,0.00,6.50,82.50,8.60,50.50,100.50,34.30,97.70,60.00,140.70,58.00,640.40,1.10,97.70,283.00,258.70 +RAYALSEEMA,1908,5.70,4.30,4.70,5.50,41.20,36.20,65.00,45.50,222.60,151.80,27.90,6.80,617.10,10.00,51.40,369.30,186.40 +RAYALSEEMA,1909,89.20,0.00,0.00,42.20,105.40,34.80,61.50,290.10,205.00,29.40,12.80,0.30,870.60,89.20,147.60,591.40,42.40 +RAYALSEEMA,1910,0.60,2.10,0.70,13.10,33.30,46.50,197.90,188.20,165.30,205.10,148.40,0.00,1001.10,2.70,47.00,597.90,353.50 +RAYALSEEMA,1911,0.00,0.00,0.80,20.90,65.00,54.00,73.60,47.50,107.60,102.10,83.20,35.90,590.60,0.00,86.70,282.60,221.20 +RAYALSEEMA,1912,1.10,4.10,0.60,5.60,24.30,35.40,67.30,93.30,132.00,157.80,223.80,0.20,745.50,5.30,30.50,328.00,381.80 +RAYALSEEMA,1913,0.00,0.40,0.90,10.80,52.80,37.00,93.30,36.90,122.10,184.20,12.30,65.60,616.30,0.40,64.40,289.30,262.20 +RAYALSEEMA,1914,2.40,1.30,1.20,23.50,53.20,65.30,72.50,130.00,171.90,83.40,61.30,12.40,678.30,3.60,77.90,439.60,157.10 +RAYALSEEMA,1915,44.90,4.80,80.20,11.90,47.40,55.30,155.30,59.70,167.90,64.60,225.10,5.90,923.10,49.70,139.50,438.20,295.60 +RAYALSEEMA,1916,0.00,1.30,0.00,7.90,32.90,48.10,210.10,160.20,182.90,252.50,140.90,10.40,1047.00,1.30,40.80,601.20,403.70 +RAYALSEEMA,1917,4.50,35.60,7.20,5.40,63.00,86.50,63.00,171.50,185.60,183.80,105.10,21.90,933.10,40.10,75.60,506.60,310.80 +RAYALSEEMA,1918,60.60,2.70,10.50,10.40,69.20,37.60,30.80,74.10,111.40,4.40,211.60,22.80,645.80,63.20,90.00,253.80,238.70 +RAYALSEEMA,1919,24.80,0.00,22.40,14.60,51.50,72.30,151.80,33.00,237.80,79.00,180.60,22.70,890.50,24.80,88.40,494.90,282.30 +RAYALSEEMA,1920,79.50,1.20,0.40,11.50,27.50,42.00,24.40,86.30,155.60,134.90,111.50,0.00,674.80,80.70,39.40,308.30,246.40 +RAYALSEEMA,1921,43.20,0.00,0.00,40.70,9.10,58.60,180.30,93.30,84.40,185.80,43.00,5.20,743.60,43.20,49.80,416.60,234.00 +RAYALSEEMA,1922,36.90,0.00,0.00,12.00,52.00,48.40,64.80,85.00,34.80,120.00,306.30,10.00,770.30,36.90,64.00,233.10,436.30 +RAYALSEEMA,1923,23.00,8.50,18.00,17.60,23.70,40.60,58.60,24.80,167.40,96.70,19.60,17.30,515.80,31.60,59.30,291.50,133.60 +RAYALSEEMA,1924,9.80,0.00,1.20,12.70,37.00,44.70,83.90,86.20,202.90,47.50,158.10,0.30,684.30,9.80,50.90,417.70,205.90 +RAYALSEEMA,1925,0.00,0.00,5.90,18.30,125.90,33.90,106.30,135.70,85.20,137.30,108.00,109.00,865.50,0.00,150.10,361.10,354.30 +RAYALSEEMA,1926,57.30,0.00,15.00,38.10,27.80,83.00,87.90,92.30,147.90,80.60,43.60,9.00,682.60,57.40,80.90,411.20,133.20 +RAYALSEEMA,1927,2.90,1.90,0.00,1.20,29.80,67.80,98.70,76.10,191.60,60.20,150.80,1.00,682.00,4.80,31.00,434.20,212.10 +RAYALSEEMA,1928,1.30,38.70,10.90,23.20,22.80,71.90,85.00,87.50,100.10,202.40,37.00,30.40,711.30,40.00,56.90,344.60,269.80 +RAYALSEEMA,1929,11.00,10.30,0.20,35.40,31.10,66.60,36.60,45.70,165.70,146.50,109.40,38.20,696.60,21.30,66.70,314.60,294.10 +RAYALSEEMA,1930,15.60,33.90,8.30,7.60,169.60,98.10,45.60,33.10,137.30,245.80,156.60,44.00,995.50,49.50,185.50,314.10,446.40 +RAYALSEEMA,1931,0.20,0.00,2.10,8.90,53.90,92.00,101.20,32.10,137.00,135.70,92.40,63.60,719.20,0.20,64.90,362.30,291.80 +RAYALSEEMA,1932,0.00,17.20,0.00,12.10,50.80,59.70,72.40,128.60,77.60,92.60,108.60,16.20,635.80,17.20,62.90,338.30,217.40 +RAYALSEEMA,1933,0.00,1.70,9.40,14.80,47.70,23.50,74.80,181.70,56.30,124.60,42.00,101.70,678.20,1.70,71.90,336.20,268.40 +RAYALSEEMA,1934,21.50,0.00,0.00,23.20,29.30,84.70,115.00,49.90,57.80,151.50,72.90,5.60,611.50,21.50,52.40,307.50,230.10 +RAYALSEEMA,1935,8.50,0.60,1.80,22.90,17.50,79.70,92.60,226.10,113.90,171.40,35.80,11.50,782.30,9.00,42.20,512.30,218.70 +RAYALSEEMA,1936,0.20,31.90,8.30,12.70,52.70,87.70,75.70,49.70,149.10,66.80,150.40,10.40,695.60,32.10,73.70,362.20,227.60 +RAYALSEEMA,1937,0.50,9.00,6.20,93.50,25.90,55.70,105.00,63.70,110.40,161.20,123.00,21.30,775.40,9.50,125.60,334.80,305.50 +RAYALSEEMA,1938,0.00,6.70,5.40,1.90,54.10,75.60,72.40,199.40,224.80,24.50,2.70,7.00,674.40,6.70,61.30,572.20,34.20 +RAYALSEEMA,1939,17.40,0.00,18.30,72.90,10.20,59.30,50.00,85.40,142.50,163.00,177.00,2.20,798.20,17.40,101.40,337.20,342.20 +RAYALSEEMA,1940,0.30,0.10,8.80,29.40,122.10,91.00,65.70,105.30,128.10,171.70,168.30,13.80,904.60,0.40,160.30,390.10,353.80 +RAYALSEEMA,1941,5.60,7.30,0.00,7.50,38.30,34.30,25.70,57.50,173.80,108.80,98.30,96.20,653.50,12.90,45.80,291.40,303.30 +RAYALSEEMA,1942,0.40,0.30,0.00,15.10,28.20,86.50,28.80,123.20,86.30,53.10,63.20,51.80,536.90,0.70,43.30,324.80,168.00 +RAYALSEEMA,1943,22.00,1.80,0.40,26.60,239.80,33.40,88.10,78.10,134.30,309.20,95.70,7.30,1036.50,23.70,266.80,333.90,412.10 +RAYALSEEMA,1944,0.20,10.40,86.90,9.90,21.20,87.50,144.20,69.00,151.50,180.00,141.10,15.70,917.40,10.60,118.00,452.00,336.80 +RAYALSEEMA,1945,0.00,0.00,0.00,22.50,36.70,35.10,160.80,107.60,105.20,60.00,75.60,0.50,604.10,0.00,59.20,408.80,136.10 +RAYALSEEMA,1946,1.70,4.10,7.90,11.80,41.80,42.60,60.00,88.40,151.10,87.40,258.20,198.70,953.70,5.80,61.40,342.20,544.30 +RAYALSEEMA,1947,23.20,1.40,0.80,10.30,20.30,65.60,124.00,136.20,126.20,87.40,17.20,11.80,624.30,24.60,31.40,452.00,116.30 +RAYALSEEMA,1948,4.20,1.10,4.10,32.50,36.90,33.20,82.90,105.80,77.70,108.80,113.40,8.10,608.90,5.30,73.60,299.70,230.30 +RAYALSEEMA,1949,0.00,0.00,0.10,9.10,68.90,115.60,137.80,163.10,180.90,98.00,53.10,0.00,826.50,0.00,78.00,597.30,151.20 +RAYALSEEMA,1950,0.20,5.90,3.40,0.70,38.30,31.40,66.80,85.20,136.40,101.50,40.90,0.20,510.90,6.10,42.40,319.80,142.60 +RAYALSEEMA,1951,0.00,0.10,16.10,45.90,78.40,54.80,106.70,56.90,65.60,72.10,41.70,0.10,538.40,0.10,140.40,284.00,113.90 +RAYALSEEMA,1952,0.00,4.30,1.20,12.20,183.50,55.80,59.60,81.90,52.60,108.70,7.40,134.20,701.20,4.30,196.90,249.80,250.20 +RAYALSEEMA,1953,1.20,0.50,0.00,39.20,19.80,63.70,125.20,58.70,141.90,309.40,35.70,0.30,795.70,1.70,59.00,389.50,345.40 +RAYALSEEMA,1954,13.40,0.00,11.90,8.80,35.40,50.60,208.40,79.30,73.00,222.40,0.00,82.00,785.40,13.40,56.10,411.40,304.50 +RAYALSEEMA,1955,15.20,1.00,4.80,13.80,135.60,42.50,107.30,183.20,118.80,98.90,62.30,33.00,816.40,16.20,154.30,451.70,194.10 +RAYALSEEMA,1956,3.60,0.10,0.00,56.20,59.40,90.60,144.00,72.30,168.60,220.30,79.70,36.00,931.00,3.70,115.60,475.60,336.00 +RAYALSEEMA,1957,1.00,0.40,11.00,11.40,41.20,119.20,77.00,89.20,73.20,79.10,69.10,0.00,571.70,1.40,63.70,358.50,148.20 +RAYALSEEMA,1958,2.60,6.20,4.40,30.80,44.10,31.10,65.60,219.20,93.50,202.70,88.20,19.80,808.40,8.80,79.30,409.50,310.70 +RAYALSEEMA,1959,0.20,5.20,0.00,19.00,39.40,102.70,89.10,92.80,132.90,77.50,61.60,15.30,635.80,5.40,58.40,417.50,154.40 +RAYALSEEMA,1960,0.50,0.00,5.00,6.60,41.50,55.50,89.90,27.10,224.00,59.80,227.10,7.20,744.00,0.50,53.10,396.50,294.00 +RAYALSEEMA,1961,2.40,7.90,0.50,3.00,41.40,96.20,112.50,124.70,54.30,141.50,62.80,4.20,651.50,10.40,44.90,387.70,208.50 +RAYALSEEMA,1962,1.90,4.00,5.40,44.80,77.50,54.20,40.40,117.10,140.70,231.40,34.40,64.40,816.30,5.90,127.70,352.50,330.30 +RAYALSEEMA,1963,7.10,0.30,10.10,38.10,26.40,77.60,82.60,148.20,95.90,159.70,33.00,30.00,709.10,7.40,74.60,404.40,222.70 +RAYALSEEMA,1964,0.00,0.00,0.00,2.00,12.00,56.60,213.40,89.40,225.20,51.00,128.40,13.60,791.60,0.00,13.90,584.50,193.10 +RAYALSEEMA,1965,0.60,0.60,5.50,40.20,15.60,47.20,78.60,168.80,109.40,13.20,62.20,54.30,595.90,1.20,61.20,403.90,129.70 +RAYALSEEMA,1966,6.10,0.20,0.00,9.70,45.20,94.50,96.70,129.10,143.90,94.20,247.90,36.60,904.10,6.30,54.90,464.20,378.70 +RAYALSEEMA,1967,16.80,0.00,34.70,7.30,51.50,62.70,127.30,48.90,140.90,100.30,43.20,104.20,737.60,16.80,93.40,379.90,247.60 +RAYALSEEMA,1968,0.10,2.60,10.80,38.10,21.20,45.20,77.90,13.60,150.40,113.70,83.60,66.80,623.90,2.60,70.10,287.00,264.20 +RAYALSEEMA,1969,0.00,0.00,0.90,5.00,55.30,61.20,118.10,126.60,49.30,258.10,109.00,58.80,842.40,0.00,61.20,355.30,425.90 +RAYALSEEMA,1970,0.10,14.20,2.90,12.30,76.70,57.70,107.50,201.30,131.20,107.90,64.10,0.50,776.40,14.30,91.90,497.60,172.60 +RAYALSEEMA,1971,3.60,4.80,20.00,27.70,52.10,35.30,60.50,98.50,90.70,163.40,40.80,23.80,621.10,8.30,99.80,285.00,227.90 +RAYALSEEMA,1972,3.20,0.70,0.00,13.80,89.20,110.80,30.80,27.40,131.50,218.10,108.30,92.30,826.00,3.90,103.00,300.40,418.70 +RAYALSEEMA,1973,0.00,0.00,0.10,1.50,30.20,51.10,80.40,150.20,141.90,164.10,34.20,35.70,689.50,0.00,31.80,423.60,234.00 +RAYALSEEMA,1974,0.00,0.00,0.00,7.80,61.70,67.30,94.50,68.50,204.90,194.10,29.50,0.00,728.50,0.00,69.60,435.30,223.60 +RAYALSEEMA,1975,0.80,0.10,4.90,3.80,46.80,46.00,176.90,133.70,156.70,345.50,121.00,5.30,1041.60,0.90,55.50,513.40,471.80 +RAYALSEEMA,1976,0.90,0.00,0.00,11.70,14.60,70.40,134.70,189.30,50.10,137.90,203.80,3.60,817.00,0.90,26.30,444.50,345.30 +RAYALSEEMA,1977,0.40,0.40,2.20,22.50,70.40,98.60,87.40,140.20,51.30,217.00,175.10,1.00,866.60,0.80,95.20,377.40,393.20 +RAYALSEEMA,1978,1.60,7.40,0.50,30.60,33.00,61.70,130.00,93.30,196.20,80.00,143.40,91.40,869.30,9.10,64.10,481.30,314.80 +RAYALSEEMA,1979,3.20,19.40,0.00,7.00,96.60,49.70,72.20,79.70,155.30,61.50,256.60,12.30,813.40,22.60,103.60,356.80,330.40 +RAYALSEEMA,1980,0.00,0.00,1.50,6.60,29.50,58.30,79.50,110.50,62.90,38.60,158.70,27.50,573.70,0.00,37.70,311.10,224.80 +RAYALSEEMA,1981,7.90,0.00,20.50,10.40,39.30,61.40,100.70,115.20,210.00,141.70,37.60,40.60,785.20,7.90,70.30,487.10,219.90 +RAYALSEEMA,1982,0.90,0.00,0.60,11.30,37.30,76.70,72.70,32.20,105.50,127.80,130.40,0.00,595.60,0.90,49.20,287.20,258.20 +RAYALSEEMA,1983,0.00,1.00,3.90,4.70,54.60,54.80,110.00,193.00,272.50,125.10,35.90,87.50,943.00,1.00,63.20,630.30,248.60 +RAYALSEEMA,1984,6.50,81.00,28.40,12.40,10.10,27.80,162.10,19.10,130.90,79.30,127.60,47.80,733.00,87.50,51.00,340.00,254.70 +RAYALSEEMA,1985,17.70,0.00,4.20,11.90,13.70,52.10,134.30,77.80,72.30,121.10,140.20,40.60,685.80,17.70,29.80,336.40,301.90 +RAYALSEEMA,1986,68.80,14.50,0.00,9.20,17.00,58.70,55.90,54.70,106.90,103.10,81.80,10.30,580.90,83.30,26.20,276.30,195.20 +RAYALSEEMA,1987,5.10,0.00,11.90,7.90,28.70,56.90,28.80,154.50,88.00,178.40,120.30,88.90,769.50,5.10,48.50,328.30,387.60 +RAYALSEEMA,1988,0.60,0.40,4.00,43.00,52.90,24.80,178.00,217.60,186.10,42.80,61.30,30.70,842.30,1.10,99.90,606.50,134.80 +RAYALSEEMA,1989,0.00,0.00,25.40,2.20,24.00,50.40,245.20,26.60,146.80,51.20,75.70,46.10,693.70,0.00,51.50,469.10,173.00 +RAYALSEEMA,1990,2.10,5.50,16.90,8.10,138.80,48.90,62.30,100.10,184.70,186.00,166.40,10.90,930.70,7.60,163.80,396.00,363.30 +RAYALSEEMA,1991,11.50,0.00,6.20,26.30,32.40,187.60,79.80,101.60,99.90,191.00,219.60,11.70,967.50,11.50,64.90,468.90,422.30 +RAYALSEEMA,1992,7.70,0.00,0.00,17.10,41.50,39.30,90.50,89.90,73.50,89.30,142.70,4.60,596.00,7.70,58.60,293.20,236.60 +RAYALSEEMA,1993,0.00,6.70,17.00,11.30,49.30,41.90,109.50,123.70,128.00,172.70,132.30,94.50,887.10,6.70,77.60,403.20,399.60 +RAYALSEEMA,1994,5.30,13.20,2.10,25.10,43.80,34.40,91.50,107.80,38.00,207.40,101.10,20.80,690.50,18.60,71.00,271.60,329.30 +RAYALSEEMA,1995,28.10,4.80,12.80,10.40,136.40,69.40,156.10,182.10,94.00,130.90,45.00,4.30,874.30,32.90,159.60,501.60,180.10 +RAYALSEEMA,1996,0.00,0.90,2.40,36.60,32.90,270.70,72.20,183.80,210.10,279.20,44.30,144.60,1277.70,0.90,71.90,736.80,468.10 +RAYALSEEMA,1997,16.50,1.40,16.90,33.60,36.20,73.70,40.80,80.70,207.40,103.80,145.30,78.80,835.00,17.90,86.60,402.50,327.90 +RAYALSEEMA,1998,0.20,3.10,4.30,32.70,29.00,52.80,126.50,164.70,202.00,146.60,141.30,44.70,948.10,3.30,66.00,546.10,332.60 +RAYALSEEMA,1999,0.80,5.10,0.50,11.10,68.80,57.60,50.60,97.40,63.30,100.20,69.80,12.00,537.20,5.80,80.40,268.80,182.10 +RAYALSEEMA,2000,0.00,34.30,0.20,22.10,73.80,92.70,94.70,241.50,102.90,134.70,37.70,36.70,871.30,34.30,96.10,531.80,209.10 +RAYALSEEMA,2001,7.70,0.00,6.50,68.20,24.50,24.00,70.10,95.80,195.50,352.50,41.70,38.10,924.50,7.70,99.20,385.40,432.30 +RAYALSEEMA,2002,25.60,3.20,7.70,17.50,55.00,90.80,42.90,69.80,78.20,167.50,44.20,12.90,615.20,28.80,80.20,281.60,224.60 +RAYALSEEMA,2003,0.00,1.30,26.10,15.00,4.10,57.40,183.40,116.40,124.90,175.50,11.70,9.60,725.50,1.30,45.20,482.20,196.80 +RAYALSEEMA,2004,10.20,4.30,12.90,35.10,149.70,39.80,122.90,23.10,153.70,124.40,65.60,0.00,741.70,14.50,197.70,339.50,190.10 +RAYALSEEMA,2005,1.30,13.60,14.70,38.50,48.40,51.20,133.20,106.60,127.60,304.80,144.80,81.70,1066.40,14.90,101.60,418.60,531.20 +RAYALSEEMA,2006,0.20,0.00,32.80,9.70,62.70,85.80,43.20,72.00,144.70,88.40,78.60,20.00,638.10,0.20,105.20,345.70,187.00 +RAYALSEEMA,2007,0.00,0.50,0.10,6.00,15.10,208.20,83.80,186.90,186.00,176.90,35.30,81.80,980.60,0.50,21.20,665.00,294.00 +RAYALSEEMA,2008,6.40,18.70,62.90,4.10,42.10,31.70,81.40,104.90,121.70,126.00,192.10,5.90,798.00,25.10,109.10,339.80,323.90 +RAYALSEEMA,2009,0.50,0.00,5.30,8.40,47.40,68.90,33.20,128.50,155.80,69.30,135.60,35.40,688.20,0.50,61.10,386.40,240.30 +RAYALSEEMA,2010,4.70,0.80,0.60,13.00,65.40,108.30,187.60,155.00,122.90,83.40,175.10,46.70,963.50,5.50,79.00,573.80,305.20 +RAYALSEEMA,2011,0.80,12.10,0.00,34.60,33.00,44.50,128.90,163.60,71.20,107.50,106.90,35.10,738.00,12.80,67.60,408.20,249.40 +RAYALSEEMA,2012,2.70,0.00,2.50,32.70,38.80,47.00,139.70,120.00,69.50,113.70,86.60,61.90,715.00,2.70,74.00,376.20,262.10 +RAYALSEEMA,2013,1.30,30.60,11.50,26.80,38.90,73.80,95.70,110.30,163.20,169.30,38.60,2.60,762.60,31.90,77.30,443.00,210.50 +RAYALSEEMA,2014,0.20,0.70,12.50,5.10,46.70,66.30,68.70,115.10,81.40,104.60,37.80,12.80,551.80,0.90,64.20,331.50,155.20 +RAYALSEEMA,2015,1.90,0.00,13.40,73.40,39.70,73.00,43.10,123.60,136.30,106.70,383.80,52.20,1047.10,1.90,126.40,376.00,542.80 +TAMIL NADU,1901,24.50,39.10,21.70,36.00,74.00,41.80,49.30,67.90,191.10,122.30,212.30,80.40,960.30,63.60,131.60,350.10,415.00 +TAMIL NADU,1902,67.20,9.80,25.10,21.90,84.70,39.30,55.10,113.80,98.60,282.20,174.90,165.80,1138.20,77.00,131.70,306.70,622.90 +TAMIL NADU,1903,19.30,7.80,1.70,18.20,128.50,58.50,72.60,115.00,210.40,128.10,200.50,203.20,1163.90,27.10,148.40,456.50,531.90 +TAMIL NADU,1904,35.20,0.10,0.70,19.50,121.90,34.90,89.00,40.40,85.70,163.20,23.60,49.10,663.10,35.30,142.10,249.90,235.80 +TAMIL NADU,1905,6.50,7.50,17.20,64.80,83.70,49.80,39.00,101.80,73.50,250.40,123.70,3.20,821.10,14.00,165.70,264.10,377.20 +TAMIL NADU,1906,52.40,12.90,17.00,8.50,39.60,43.60,76.00,195.20,65.30,162.80,189.10,127.70,990.20,65.40,65.10,380.00,479.60 +TAMIL NADU,1907,8.40,1.20,25.00,78.90,56.60,46.10,70.40,58.20,117.20,160.40,200.00,63.20,885.60,9.60,160.50,291.90,423.60 +TAMIL NADU,1908,16.80,36.90,25.00,24.50,70.30,34.20,37.50,48.40,154.20,261.00,36.10,20.10,765.00,53.70,119.80,274.30,317.20 +TAMIL NADU,1909,116.50,11.20,7.70,68.60,117.40,30.80,36.10,206.60,106.10,158.00,74.70,20.80,954.60,127.70,193.80,379.70,253.60 +TAMIL NADU,1910,9.20,21.20,2.40,26.80,64.70,51.50,148.10,142.00,52.40,278.00,146.70,0.60,943.70,30.40,93.80,394.20,425.30 +TAMIL NADU,1911,2.80,1.10,6.00,30.80,72.10,70.70,50.30,28.90,120.50,125.60,176.20,130.10,814.90,3.90,108.90,270.30,431.90 +TAMIL NADU,1912,5.90,2.80,2.90,18.50,64.20,46.70,34.80,74.20,126.70,244.20,259.30,23.90,904.10,8.70,85.60,282.40,527.50 +TAMIL NADU,1913,2.90,3.20,6.60,21.00,64.60,29.70,58.70,62.30,124.80,203.40,184.10,117.70,878.80,6.10,92.20,275.40,505.10 +TAMIL NADU,1914,5.70,1.90,5.60,34.60,57.10,37.90,37.60,98.40,132.20,281.20,129.10,132.00,953.30,7.60,97.30,306.10,542.30 +TAMIL NADU,1915,35.10,18.10,43.60,37.00,52.40,66.40,117.70,82.90,133.00,99.90,241.00,61.50,988.50,53.20,133.00,399.90,402.30 +TAMIL NADU,1916,0.10,3.20,3.10,19.20,61.10,34.50,168.60,125.50,94.70,208.60,145.70,33.20,897.40,3.30,83.30,423.40,387.50 +TAMIL NADU,1917,14.30,39.10,32.30,11.90,77.50,72.40,45.10,155.70,163.50,123.10,167.50,45.90,948.30,53.40,121.70,436.70,336.50 +TAMIL NADU,1918,80.90,5.40,25.90,9.90,81.80,36.20,40.80,58.60,47.00,81.80,315.10,88.40,871.70,86.30,117.60,182.50,485.30 +TAMIL NADU,1919,22.90,0.80,16.20,25.00,88.50,49.90,87.80,51.60,162.70,152.40,264.40,106.40,1028.60,23.70,129.70,352.00,523.20 +TAMIL NADU,1920,135.90,3.10,3.70,67.30,59.60,47.30,37.30,74.80,156.30,159.40,404.90,4.70,1154.20,139.00,130.50,315.70,569.00 +TAMIL NADU,1921,141.20,0.00,1.70,72.30,39.50,55.70,92.50,129.60,78.30,236.40,76.00,56.10,979.40,141.30,113.50,356.10,368.60 +TAMIL NADU,1922,41.90,18.10,2.50,34.90,100.10,48.80,45.40,87.10,75.30,262.80,291.80,71.60,1080.50,60.10,137.50,256.70,626.20 +TAMIL NADU,1923,136.00,2.50,50.10,26.60,30.80,33.70,40.50,39.80,99.80,220.30,44.30,109.70,834.10,138.50,107.50,213.80,374.30 +TAMIL NADU,1924,29.70,0.70,31.30,30.20,75.40,54.90,113.90,87.10,170.80,107.10,163.50,30.60,895.10,30.40,136.90,426.70,301.20 +TAMIL NADU,1925,17.60,4.60,57.20,30.10,85.00,50.60,38.70,91.70,77.30,148.90,229.00,182.80,1013.30,22.10,172.20,258.30,560.80 +TAMIL NADU,1926,88.00,2.20,30.40,41.40,53.70,38.70,73.80,70.50,120.20,151.50,119.20,26.10,815.60,90.20,125.50,303.20,296.70 +TAMIL NADU,1927,18.00,21.60,17.20,50.70,73.70,83.10,65.90,77.80,131.00,87.20,171.30,32.50,829.90,39.60,141.60,357.80,291.00 +TAMIL NADU,1928,21.00,54.90,24.00,56.90,51.00,41.10,75.50,95.20,59.70,219.00,173.80,98.80,970.80,75.90,131.90,271.50,491.60 +TAMIL NADU,1929,20.40,29.20,9.40,107.30,50.70,63.20,48.90,70.70,135.10,161.20,192.00,89.60,977.70,49.60,167.40,317.90,442.80 +TAMIL NADU,1930,53.60,60.30,21.40,34.40,165.70,68.90,38.90,66.70,94.20,436.10,186.50,48.70,1275.40,113.90,221.40,268.70,671.40 +TAMIL NADU,1931,22.70,0.00,3.30,55.60,54.20,40.80,77.30,81.70,104.70,120.30,183.40,295.80,1039.80,22.70,113.00,304.40,599.50 +TAMIL NADU,1932,0.70,31.90,7.30,62.90,109.60,43.00,56.50,163.50,61.60,247.40,246.90,78.50,1109.80,32.60,179.80,324.60,572.80 +TAMIL NADU,1933,2.70,5.00,41.20,52.50,105.30,36.90,60.70,169.90,104.50,201.80,124.50,105.90,1010.90,7.70,199.10,372.00,432.20 +TAMIL NADU,1934,99.80,0.10,11.60,34.60,49.60,73.50,57.50,56.40,38.10,303.40,99.20,15.90,839.70,99.90,95.90,225.50,418.40 +TAMIL NADU,1935,37.50,2.50,9.30,63.90,23.70,60.00,38.60,153.40,78.60,192.40,147.60,86.30,893.90,40.00,96.90,330.60,426.30 +TAMIL NADU,1936,1.90,51.10,55.30,35.70,74.40,56.30,85.50,59.40,122.00,103.70,234.50,64.70,944.50,53.00,165.30,323.20,402.90 +TAMIL NADU,1937,10.70,16.70,26.70,96.10,59.90,42.30,51.10,118.10,105.70,189.80,280.10,22.80,1020.10,27.40,182.70,317.20,492.80 +TAMIL NADU,1938,1.20,52.10,34.80,44.50,54.30,53.00,101.40,146.30,116.80,87.50,39.30,51.80,783.20,53.30,133.70,417.50,178.60 +TAMIL NADU,1939,31.10,5.00,26.00,132.10,60.00,60.40,35.10,91.30,96.20,243.80,266.20,8.60,1055.80,36.10,218.10,283.00,518.60 +TAMIL NADU,1940,0.90,0.70,12.60,82.80,131.50,85.20,59.00,69.40,121.20,152.00,367.80,95.40,1178.50,1.60,226.90,334.80,615.20 +TAMIL NADU,1941,31.70,4.40,1.40,58.60,70.90,47.10,69.60,84.70,166.40,148.10,216.40,107.50,1006.90,36.10,130.90,367.80,472.10 +TAMIL NADU,1942,0.50,0.60,6.00,78.60,61.30,53.10,54.90,110.10,120.80,146.50,68.00,146.90,847.30,1.10,145.80,338.90,361.40 +TAMIL NADU,1943,112.00,18.50,10.80,72.10,204.40,43.20,75.30,78.80,101.10,310.60,117.40,43.20,1187.30,130.50,287.30,298.40,471.10 +TAMIL NADU,1944,18.40,34.60,83.50,32.70,46.10,81.80,73.80,104.70,143.50,188.80,288.80,130.90,1227.60,53.00,162.30,403.90,608.50 +TAMIL NADU,1945,4.60,5.50,5.00,74.70,38.20,22.00,75.10,110.10,58.60,168.40,206.80,15.00,784.00,10.10,117.90,265.70,390.30 +TAMIL NADU,1946,19.80,1.00,46.40,45.70,76.40,56.80,59.30,87.70,140.80,175.50,311.20,273.50,1294.10,20.80,168.40,344.70,760.20 +TAMIL NADU,1947,59.50,14.80,54.40,92.80,40.90,54.10,125.50,113.40,127.60,205.90,30.50,20.00,939.50,74.30,188.20,420.70,256.40 +TAMIL NADU,1948,51.70,9.90,10.60,35.30,72.50,67.50,79.80,102.30,68.80,145.40,226.20,36.60,906.70,61.60,118.40,318.40,408.30 +TAMIL NADU,1949,8.60,3.00,0.60,62.30,98.20,75.60,113.60,148.20,82.30,159.40,86.40,2.30,840.70,11.60,161.20,419.70,248.10 +TAMIL NADU,1950,2.40,68.00,16.80,11.80,54.50,31.20,56.10,125.30,85.50,160.60,100.70,34.60,747.50,70.40,83.10,298.10,296.00 +TAMIL NADU,1951,11.70,0.80,26.70,115.20,83.00,30.80,83.60,94.70,113.40,98.30,187.20,9.60,855.10,12.60,224.90,322.50,295.10 +TAMIL NADU,1952,13.70,47.70,8.90,29.50,58.70,32.90,74.30,73.70,38.20,123.80,47.20,167.60,716.40,61.40,97.10,219.20,338.70 +TAMIL NADU,1953,13.00,15.80,4.80,97.80,45.80,67.60,111.70,86.20,131.10,278.20,97.10,18.90,968.00,28.80,148.50,396.50,394.20 +TAMIL NADU,1954,77.50,2.70,58.20,54.20,77.90,35.50,118.50,147.20,34.00,271.00,32.60,107.00,1016.30,80.20,190.30,335.10,410.60 +TAMIL NADU,1955,35.70,1.30,10.30,85.30,149.40,47.80,73.40,88.10,128.20,165.20,130.60,145.30,1060.60,37.00,245.00,337.40,441.10 +TAMIL NADU,1956,22.90,0.50,1.00,34.30,35.10,98.00,46.00,99.20,126.40,255.80,225.50,45.10,989.70,23.40,70.40,369.60,526.30 +TAMIL NADU,1957,1.20,10.30,15.10,14.80,81.10,65.40,64.00,60.80,73.50,203.30,200.40,77.10,866.90,11.50,111.00,263.60,480.80 +TAMIL NADU,1958,12.10,6.00,27.20,49.40,114.70,33.00,47.30,147.70,80.00,155.20,154.40,25.50,852.50,18.10,191.30,308.00,335.20 +TAMIL NADU,1959,3.70,34.80,0.10,51.40,68.20,83.50,60.60,62.10,99.10,187.00,190.40,53.40,894.30,38.50,119.70,305.30,430.80 +TAMIL NADU,1960,5.50,9.90,21.00,60.00,60.90,35.90,146.80,55.60,108.40,134.50,354.10,21.20,1013.90,15.40,141.90,346.70,509.90 +TAMIL NADU,1961,76.00,12.70,2.20,23.90,71.90,73.80,99.40,110.40,122.20,154.70,107.50,56.10,910.70,88.60,98.00,405.70,318.30 +TAMIL NADU,1962,10.00,23.60,13.60,48.40,114.10,44.00,56.70,130.50,114.80,275.70,63.10,47.10,941.60,33.60,176.20,345.90,385.90 +TAMIL NADU,1963,76.20,4.80,39.10,56.50,45.10,49.90,93.10,88.70,115.00,173.40,195.00,135.90,1072.80,81.00,140.70,346.80,504.30 +TAMIL NADU,1964,1.60,1.20,15.50,11.40,56.80,31.30,174.70,100.80,92.30,187.70,166.40,70.90,910.60,2.70,83.80,399.10,424.90 +TAMIL NADU,1965,1.80,7.20,10.10,63.80,40.90,33.50,55.40,169.80,92.70,123.90,120.30,202.30,921.80,9.00,114.80,351.40,446.60 +TAMIL NADU,1966,16.00,1.60,11.90,33.40,51.80,51.60,76.40,143.40,166.10,290.60,224.30,99.80,1166.90,17.60,97.10,437.50,614.70 +TAMIL NADU,1967,28.90,1.00,40.40,19.30,47.60,69.10,69.40,81.20,76.20,182.30,127.10,156.70,899.10,29.90,107.20,295.90,466.10 +TAMIL NADU,1968,4.60,5.60,36.50,85.90,46.90,47.90,53.70,65.00,137.70,111.80,121.10,72.70,789.40,10.20,169.30,304.30,305.60 +TAMIL NADU,1969,1.50,7.20,3.50,32.10,57.00,30.40,60.90,139.70,36.80,275.10,190.50,127.10,961.80,8.70,92.60,267.80,592.70 +TAMIL NADU,1970,15.90,18.00,9.20,61.80,85.40,51.60,88.90,98.50,102.40,195.10,199.90,15.30,942.10,34.00,156.50,341.30,410.30 +TAMIL NADU,1971,19.30,11.10,37.80,40.60,75.70,46.90,87.20,127.80,109.00,221.30,71.30,199.60,1047.60,30.40,154.20,370.90,492.20 +TAMIL NADU,1972,4.00,1.20,1.00,14.00,151.10,55.10,49.20,42.70,175.30,273.10,126.00,200.60,1093.40,5.20,166.20,322.30,599.80 +TAMIL NADU,1973,0.30,0.20,5.30,20.70,57.00,63.50,92.30,87.60,130.40,195.20,79.10,127.10,858.50,0.50,82.90,373.70,401.40 +TAMIL NADU,1974,0.60,8.90,6.70,30.40,59.50,40.60,79.80,63.50,178.00,114.80,47.80,22.20,652.80,9.40,96.60,361.90,184.80 +TAMIL NADU,1975,6.00,4.30,34.80,20.80,80.80,46.80,129.10,121.30,147.80,165.30,130.30,36.40,923.60,10.30,136.30,445.00,332.00 +TAMIL NADU,1976,1.20,0.20,8.40,50.10,33.80,48.60,64.00,129.90,83.70,137.60,244.90,56.60,858.90,1.40,92.30,326.10,439.10 +TAMIL NADU,1977,1.40,24.80,10.40,45.50,104.10,50.60,55.40,128.30,118.60,347.50,346.80,12.60,1246.00,26.20,160.00,353.00,706.90 +TAMIL NADU,1978,1.40,11.20,10.90,35.90,55.20,29.40,78.20,55.40,137.20,151.40,234.60,198.10,998.80,12.60,102.00,300.20,584.10 +TAMIL NADU,1979,0.70,43.50,12.50,15.30,35.10,60.20,75.20,80.20,183.10,132.60,416.70,48.20,1103.40,44.20,62.90,398.70,597.50 +TAMIL NADU,1980,0.10,0.00,15.40,45.90,69.20,37.70,64.90,64.20,76.30,122.30,166.20,47.00,709.10,0.10,130.40,243.00,335.50 +TAMIL NADU,1981,8.90,1.30,21.70,23.70,87.20,57.00,117.00,91.80,200.50,258.00,106.40,72.50,1045.90,10.10,132.60,466.30,436.80 +TAMIL NADU,1982,0.20,0.10,8.60,25.20,58.80,49.80,52.50,44.50,93.40,114.00,200.80,30.90,678.60,0.30,92.50,240.10,345.70 +TAMIL NADU,1983,0.20,0.20,1.90,5.50,86.90,72.90,77.90,132.00,154.60,138.70,94.50,242.60,1007.70,0.40,94.20,437.30,475.70 +TAMIL NADU,1984,34.50,131.30,101.70,45.40,21.60,43.60,149.50,38.00,151.30,134.80,113.50,58.50,1023.80,165.90,168.70,382.40,306.80 +TAMIL NADU,1985,89.70,5.20,11.90,43.90,33.40,108.80,81.20,129.70,161.60,107.30,233.30,57.40,1063.50,94.90,89.30,481.20,398.10 +TAMIL NADU,1986,65.50,39.00,16.10,20.90,62.70,63.40,66.90,115.20,142.30,170.50,133.40,57.10,953.00,104.40,99.70,387.70,361.00 +TAMIL NADU,1987,8.00,1.20,28.70,20.00,50.50,70.50,26.10,82.80,127.00,236.70,136.90,175.00,963.50,9.20,99.20,306.40,548.60 +TAMIL NADU,1988,0.20,3.80,27.40,94.60,59.10,41.10,102.60,149.80,136.10,71.80,117.60,33.10,837.20,4.00,181.10,429.70,222.40 +TAMIL NADU,1989,2.70,0.00,27.90,40.80,53.60,57.40,154.90,39.70,137.30,148.60,154.00,39.80,856.50,2.70,122.20,389.20,342.40 +TAMIL NADU,1990,84.80,10.20,36.20,24.30,94.90,28.90,40.00,80.10,119.60,194.10,144.00,46.10,903.20,95.00,155.30,268.70,384.20 +TAMIL NADU,1991,24.20,4.60,9.70,37.40,29.50,128.10,54.70,71.70,114.00,225.10,234.40,21.40,954.80,28.90,76.60,368.50,480.90 +TAMIL NADU,1992,3.10,0.20,0.00,22.50,58.30,66.40,77.90,59.90,157.30,123.90,297.20,52.10,918.70,3.30,80.80,361.40,473.20 +TAMIL NADU,1993,0.10,7.00,9.90,11.20,46.60,68.20,60.30,88.80,96.70,214.50,315.90,163.10,1082.30,7.10,67.70,314.00,693.50 +TAMIL NADU,1994,7.00,27.60,5.50,48.30,66.60,38.60,75.30,66.10,84.20,230.60,229.10,27.00,905.90,34.60,120.50,264.20,486.60 +TAMIL NADU,1995,23.80,3.30,16.70,39.50,139.00,64.60,86.70,121.10,94.00,143.10,107.90,3.70,843.40,27.10,195.20,366.40,254.70 +TAMIL NADU,1996,7.60,3.60,5.00,91.50,34.00,125.30,55.40,112.40,141.20,149.70,106.00,237.60,1069.40,11.30,130.50,434.30,493.30 +TAMIL NADU,1997,7.70,0.20,2.30,42.00,49.20,50.40,63.50,56.40,116.00,169.50,258.10,135.20,950.50,7.90,93.50,286.30,562.80 +TAMIL NADU,1998,6.90,5.70,4.10,23.60,55.80,43.00,101.90,152.90,121.80,124.70,242.00,197.40,1079.70,12.50,83.60,419.60,564.00 +TAMIL NADU,1999,8.30,24.10,3.90,56.90,74.50,46.40,55.30,74.80,73.10,268.90,182.80,53.60,922.60,32.30,135.30,249.60,505.30 +TAMIL NADU,2000,30.30,74.50,9.40,41.60,54.70,52.20,45.80,136.10,169.80,120.30,148.60,88.90,972.00,104.70,105.60,403.90,357.80 +TAMIL NADU,2001,21.80,10.90,13.00,93.80,45.00,39.90,37.20,18.70,53.80,69.50,52.30,27.60,483.40,32.70,151.80,149.50,149.30 +TAMIL NADU,2002,2.90,22.10,3.90,9.20,32.60,23.70,11.80,26.50,32.20,93.70,47.20,12.20,318.00,25.00,45.70,94.20,153.10 +TAMIL NADU,2003,0.30,4.10,18.00,17.10,19.80,22.50,38.70,49.30,26.10,86.00,59.50,7.10,348.50,4.40,54.80,136.60,152.60 +TAMIL NADU,2004,2.80,0.70,3.00,16.20,101.10,21.20,98.60,85.10,208.30,271.10,204.50,25.00,1037.60,3.50,120.30,413.20,500.60 +TAMIL NADU,2005,4.10,11.10,24.40,128.00,80.60,35.70,87.90,93.30,117.90,280.50,353.40,148.50,1365.30,15.20,233.00,334.80,782.30 +TAMIL NADU,2006,15.30,0.20,52.40,32.60,65.20,57.20,33.60,73.40,116.30,240.40,215.10,26.10,927.90,15.50,150.20,280.60,481.60 +TAMIL NADU,2007,7.20,7.50,1.80,58.00,44.90,73.10,101.00,136.50,89.10,248.90,79.20,219.90,1067.20,14.70,104.70,399.70,548.00 +TAMIL NADU,2008,11.70,29.10,164.70,31.50,53.70,51.10,73.10,126.50,70.70,242.70,298.50,50.10,1203.40,40.80,250.00,321.50,591.20 +TAMIL NADU,2009,7.90,0.00,41.00,41.40,74.80,27.00,42.10,96.90,114.40,62.10,314.70,106.20,928.50,7.90,157.20,280.40,482.90 +TAMIL NADU,2010,11.80,0.20,1.90,22.90,91.90,70.00,81.40,102.90,111.10,148.10,328.60,124.50,1095.20,11.90,116.70,365.40,601.20 +TAMIL NADU,2011,4.30,11.20,8.00,91.50,33.40,56.00,45.50,128.90,76.00,200.40,230.50,41.00,926.50,15.50,132.80,306.40,471.80 +TAMIL NADU,2012,3.00,0.10,2.50,35.50,41.90,30.10,46.50,98.00,84.90,235.20,44.50,14.00,636.10,3.10,79.90,259.50,293.60 +TAMIL NADU,2013,3.90,30.90,30.00,20.30,42.00,54.60,42.70,110.70,113.50,127.90,112.30,53.20,741.90,34.80,92.20,321.50,293.40 +TAMIL NADU,2014,7.40,6.10,8.10,8.30,139.10,47.80,50.60,117.70,98.90,252.20,110.80,66.00,913.00,13.40,155.50,315.10,428.90 +TAMIL NADU,2015,8.30,2.30,21.70,108.80,112.40,62.40,43.50,81.60,98.40,132.60,379.80,152.80,1204.60,10.60,242.80,285.90,665.30 +COASTAL KARNATAKA,1901,1.80,0.60,10.70,52.40,81.60,960.90,991.20,606.40,108.00,120.50,104.90,17.80,3056.90,2.40,144.70,2666.60,243.30 +COASTAL KARNATAKA,1902,3.20,0.30,4.90,10.20,54.60,698.40,1401.60,454.20,708.40,180.40,50.80,132.20,3699.20,3.50,69.70,3262.60,363.50 +COASTAL KARNATAKA,1903,0.70,0.00,0.00,4.10,202.80,536.50,1405.50,593.80,304.40,185.00,79.30,5.30,3317.40,0.70,206.90,2840.10,269.60 +COASTAL KARNATAKA,1904,2.40,0.00,4.80,23.70,93.20,1108.20,1070.00,465.60,245.30,127.20,0.70,0.00,3141.10,2.40,121.70,2889.10,127.90 +COASTAL KARNATAKA,1905,0.00,0.20,0.00,6.40,83.10,767.30,777.30,586.90,172.90,222.20,36.10,0.00,2652.30,0.20,89.40,2304.30,258.40 +COASTAL KARNATAKA,1906,23.00,0.00,0.00,0.50,29.80,593.60,1173.40,535.00,273.30,128.50,22.10,56.80,2836.00,23.00,30.30,2575.20,207.50 +COASTAL KARNATAKA,1907,7.00,0.00,2.70,91.30,19.00,845.90,1166.30,1026.10,223.60,87.70,55.80,9.80,3535.20,7.00,113.00,3261.90,153.20 +COASTAL KARNATAKA,1908,0.00,3.10,0.90,46.10,38.00,708.60,1904.90,766.60,128.00,56.80,2.50,0.00,3655.50,3.10,85.00,3508.10,59.30 +COASTAL KARNATAKA,1909,4.00,1.00,3.70,6.30,200.10,943.10,1285.60,315.60,293.80,68.80,47.80,3.20,3172.90,5.00,210.10,2838.10,119.80 +COASTAL KARNATAKA,1910,0.00,0.00,5.00,6.20,40.20,1042.20,589.50,651.20,441.70,177.80,67.00,0.00,3020.80,0.00,51.40,2724.70,244.80 +COASTAL KARNATAKA,1911,0.00,0.00,0.00,3.20,71.00,749.50,830.10,538.30,110.30,160.80,41.60,17.50,2522.30,0.00,74.20,2228.20,219.90 +COASTAL KARNATAKA,1912,1.10,0.00,0.00,30.50,64.00,787.60,1261.50,789.20,160.80,220.90,80.10,0.40,3395.90,1.10,94.40,2999.10,301.40 +COASTAL KARNATAKA,1913,0.00,0.40,0.50,10.60,74.20,786.50,1048.00,410.70,161.00,339.10,1.20,4.00,2836.30,0.40,85.30,2406.30,344.30 +COASTAL KARNATAKA,1914,0.00,0.00,0.00,7.20,36.90,743.20,1583.70,933.80,302.80,125.90,102.70,36.60,3872.70,0.00,44.10,3563.40,265.20 +COASTAL KARNATAKA,1915,0.10,2.30,2.00,48.80,75.20,785.00,773.20,388.90,304.00,168.30,96.90,4.20,2648.70,2.30,126.00,2250.90,269.40 +COASTAL KARNATAKA,1916,0.00,0.00,0.30,25.20,88.70,1051.40,633.50,617.00,587.80,208.70,255.20,0.00,3467.90,0.00,114.30,2889.70,463.90 +COASTAL KARNATAKA,1917,0.00,29.80,7.10,10.20,52.60,1075.70,766.10,597.60,500.50,319.60,64.80,0.00,3424.10,29.80,70.00,2939.90,384.40 +COASTAL KARNATAKA,1918,3.40,0.30,3.90,11.40,699.50,564.40,360.60,485.40,134.30,64.70,168.80,14.20,2510.90,3.70,714.90,1544.70,247.70 +COASTAL KARNATAKA,1919,0.00,0.00,0.00,2.40,74.40,669.90,960.90,632.70,208.30,236.20,124.00,9.30,2918.10,0.00,76.80,2471.80,369.60 +COASTAL KARNATAKA,1920,2.10,0.00,0.10,72.70,29.20,813.30,1107.50,464.70,133.50,129.80,36.30,0.00,2789.20,2.10,102.00,2519.00,166.10 +COASTAL KARNATAKA,1921,13.00,0.00,3.50,62.40,18.60,699.40,871.90,841.60,327.10,128.60,41.30,0.00,3007.40,13.00,84.50,2740.00,170.00 +COASTAL KARNATAKA,1922,6.50,3.10,0.00,44.80,123.40,763.10,1333.20,564.90,314.40,89.80,89.40,0.00,3332.60,9.70,168.20,2975.60,179.10 +COASTAL KARNATAKA,1923,0.80,0.20,32.20,9.80,52.80,604.80,1627.20,1013.20,283.30,44.40,6.60,5.80,3681.10,1.00,94.70,3528.50,56.90 +COASTAL KARNATAKA,1924,0.00,0.00,14.80,46.00,47.20,889.60,1515.40,602.70,282.70,94.40,30.80,5.20,3528.90,0.00,108.00,3290.50,130.40 +COASTAL KARNATAKA,1925,0.00,0.00,17.10,20.80,176.60,1176.40,1117.20,733.70,81.50,213.20,27.70,17.20,3581.30,0.00,214.60,3108.70,258.10 +COASTAL KARNATAKA,1926,12.30,2.00,0.10,7.30,15.30,686.30,976.40,850.30,258.70,143.60,4.00,0.10,2956.40,14.30,22.60,2771.70,147.70 +COASTAL KARNATAKA,1927,0.00,0.00,0.60,21.50,80.10,683.40,1313.20,535.80,319.90,110.50,151.30,0.00,3216.40,0.00,102.20,2852.30,261.90 +COASTAL KARNATAKA,1928,0.10,29.30,21.70,36.30,17.10,844.60,1108.80,836.60,107.40,316.40,12.00,9.30,3339.60,29.40,75.00,2897.40,337.70 +COASTAL KARNATAKA,1929,1.90,0.20,2.50,105.60,114.70,1361.60,901.30,566.90,265.20,281.90,61.40,0.20,3663.60,2.20,222.80,3095.00,343.50 +COASTAL KARNATAKA,1930,1.20,0.20,0.00,19.30,171.50,910.90,706.80,420.80,401.20,254.10,14.20,12.60,2913.00,1.40,190.80,2439.70,281.00 +COASTAL KARNATAKA,1931,0.00,0.00,2.40,33.40,85.10,673.40,1244.00,1201.90,255.60,183.50,106.70,56.50,3842.40,0.00,120.90,3374.80,346.70 +COASTAL KARNATAKA,1932,0.00,0.00,0.00,25.40,255.40,661.50,1072.40,457.20,469.90,348.70,125.60,7.30,3423.40,0.00,280.80,2661.00,481.60 +COASTAL KARNATAKA,1933,0.00,0.10,5.40,60.60,360.30,1031.90,1326.60,481.30,502.50,292.80,42.30,35.60,4139.50,0.10,426.30,3342.40,370.70 +COASTAL KARNATAKA,1934,7.40,0.60,1.00,16.00,24.40,1095.60,827.50,678.20,184.20,143.20,32.70,1.00,3011.80,8.00,41.50,2785.30,176.90 +COASTAL KARNATAKA,1935,2.00,0.00,0.70,11.30,25.20,674.00,1168.10,425.50,312.50,245.00,11.90,9.90,2886.00,2.00,37.10,2580.20,266.80 +COASTAL KARNATAKA,1936,0.00,0.90,23.30,14.70,138.70,1075.60,981.60,562.30,195.60,219.40,108.60,4.10,3324.70,0.90,176.60,2815.10,332.10 +COASTAL KARNATAKA,1937,0.00,0.00,5.70,110.10,30.30,740.80,1531.70,365.70,274.10,240.80,11.80,3.20,3314.20,0.00,146.10,2912.30,255.80 +COASTAL KARNATAKA,1938,0.00,0.00,15.50,43.30,138.20,1025.30,950.20,429.90,374.00,134.30,39.90,0.30,3150.90,0.00,197.00,2779.40,174.50 +COASTAL KARNATAKA,1939,0.00,0.00,5.40,35.90,8.40,725.70,903.90,631.40,127.30,232.60,73.40,0.20,2744.20,0.00,49.70,2388.20,306.20 +COASTAL KARNATAKA,1940,0.10,0.00,0.20,26.90,131.00,713.80,1155.70,1247.40,100.40,222.50,120.50,5.50,3723.90,0.10,158.00,3217.30,348.50 +COASTAL KARNATAKA,1941,4.10,1.20,5.50,18.10,60.50,869.70,589.80,561.60,224.90,122.80,21.60,35.30,2515.10,5.30,84.10,2246.00,179.70 +COASTAL KARNATAKA,1942,0.00,1.70,0.30,77.20,72.50,1104.80,1338.30,540.30,189.50,129.90,25.90,22.40,3502.60,1.70,149.90,3172.80,178.10 +COASTAL KARNATAKA,1943,22.40,1.70,1.30,7.10,455.20,941.80,994.40,314.50,461.50,280.20,97.00,0.00,3577.20,24.10,463.60,2712.20,377.20 +COASTAL KARNATAKA,1944,0.00,0.70,18.20,3.30,106.50,777.80,1204.00,451.20,61.60,267.60,81.90,11.80,2984.50,0.70,128.00,2494.50,361.30 +COASTAL KARNATAKA,1945,2.60,0.00,0.00,19.70,24.50,824.70,1296.10,493.20,294.70,63.20,60.70,0.00,3079.30,2.60,44.10,2908.70,123.80 +COASTAL KARNATAKA,1946,0.00,1.50,3.90,41.70,80.80,1227.00,1001.20,1086.60,231.50,148.90,180.60,37.70,4041.40,1.50,126.40,3546.30,367.20 +COASTAL KARNATAKA,1947,1.70,9.20,13.90,45.20,18.70,630.60,1247.90,899.50,389.50,48.70,7.10,26.30,3338.00,10.90,77.70,3167.30,82.00 +COASTAL KARNATAKA,1948,16.50,0.00,8.40,55.60,66.10,848.80,1102.90,973.20,301.30,90.60,163.00,0.20,3626.60,16.50,130.10,3226.20,253.70 +COASTAL KARNATAKA,1949,3.30,0.00,1.20,12.00,293.10,691.60,1157.10,585.40,438.00,148.80,32.00,0.00,3362.40,3.30,306.30,2872.10,180.80 +COASTAL KARNATAKA,1950,0.00,1.00,0.20,3.90,89.30,801.60,1506.70,456.10,716.50,136.60,54.10,0.10,3766.10,1.00,93.40,3481.00,190.80 +COASTAL KARNATAKA,1951,0.00,0.00,0.90,55.40,70.70,940.20,1083.40,441.10,268.90,187.10,76.20,0.40,3124.30,0.00,127.00,2733.60,263.60 +COASTAL KARNATAKA,1952,0.00,0.50,0.00,35.40,84.80,912.10,816.60,631.40,54.70,335.50,0.00,25.60,2896.60,0.50,120.20,2414.80,361.10 +COASTAL KARNATAKA,1953,0.30,0.00,0.00,48.20,8.60,666.20,1630.10,633.60,160.00,313.40,2.90,0.00,3463.30,0.30,56.80,3089.90,316.30 +COASTAL KARNATAKA,1954,0.50,0.00,21.60,61.10,89.80,1034.40,1357.40,688.70,421.80,133.60,0.60,12.10,3821.50,0.50,172.50,3502.20,146.20 +COASTAL KARNATAKA,1955,0.30,0.00,4.70,29.90,360.30,962.70,639.30,702.20,458.20,361.10,31.00,2.80,3552.50,0.30,394.90,2762.40,394.90 +COASTAL KARNATAKA,1956,0.00,0.80,1.00,78.40,412.70,1001.00,1155.80,520.00,267.60,288.50,129.90,0.70,3856.60,0.80,492.10,2944.50,419.10 +COASTAL KARNATAKA,1957,0.00,0.00,1.50,8.50,168.00,755.80,1101.10,703.90,98.00,189.00,148.90,0.10,3174.80,0.00,178.10,2658.70,338.00 +COASTAL KARNATAKA,1958,0.50,0.10,1.70,46.60,184.80,1031.40,1253.70,705.80,296.90,114.10,49.10,2.80,3687.40,0.60,233.10,3287.90,165.90 +COASTAL KARNATAKA,1959,0.00,0.00,0.00,30.40,204.40,994.40,1727.00,704.10,521.60,75.30,52.00,21.70,4330.80,0.00,234.80,3947.10,148.90 +COASTAL KARNATAKA,1960,0.00,0.00,8.50,40.70,393.70,790.60,1053.20,510.50,450.50,169.00,87.60,0.00,3504.20,0.00,442.90,2804.70,256.60 +COASTAL KARNATAKA,1961,0.00,0.00,0.90,47.70,635.00,1013.00,1884.90,936.30,702.80,309.60,21.00,2.70,5553.90,0.00,683.60,4536.90,333.40 +COASTAL KARNATAKA,1962,0.20,3.40,0.10,31.60,359.40,405.40,1307.90,1080.90,413.50,313.40,18.50,83.30,4017.70,3.60,391.10,3207.70,415.30 +COASTAL KARNATAKA,1963,1.10,0.70,28.60,38.50,86.00,682.30,887.60,1013.80,181.00,233.70,8.20,10.00,3171.30,1.80,153.00,2764.70,251.80 +COASTAL KARNATAKA,1964,0.00,0.00,2.60,5.80,23.40,631.70,864.00,978.10,363.90,200.20,53.10,17.60,3140.50,0.00,31.80,2837.80,271.00 +COASTAL KARNATAKA,1965,2.50,0.00,0.00,9.70,39.70,797.80,1002.50,577.20,196.80,25.10,20.10,159.80,2831.10,2.50,49.40,2574.20,205.00 +COASTAL KARNATAKA,1966,3.70,0.00,0.80,11.80,196.00,577.90,1122.40,278.30,299.60,191.90,231.50,62.80,2976.60,3.70,208.60,2278.20,486.20 +COASTAL KARNATAKA,1967,2.00,0.00,0.10,18.50,86.70,658.70,1368.50,673.40,237.10,124.80,7.40,4.50,3181.80,2.00,105.30,2937.80,136.80 +COASTAL KARNATAKA,1968,2.00,0.00,6.30,43.70,19.20,826.60,1550.50,456.30,304.90,221.40,30.10,0.10,3461.00,2.00,69.10,3138.30,251.50 +COASTAL KARNATAKA,1969,0.00,0.00,1.20,44.80,49.90,704.80,1253.90,488.20,542.70,163.40,82.60,11.40,3342.90,0.00,95.80,2989.60,257.50 +COASTAL KARNATAKA,1970,0.00,0.00,2.00,30.90,260.40,843.70,1259.20,1130.50,328.70,157.80,28.70,0.00,4042.00,0.00,293.30,3562.20,186.50 +COASTAL KARNATAKA,1971,0.00,0.10,0.40,23.50,268.30,1113.20,1017.00,532.60,215.60,55.20,7.00,2.50,3235.20,0.10,292.20,2878.40,64.60 +COASTAL KARNATAKA,1972,0.00,0.50,0.20,17.00,153.40,716.90,1068.80,522.90,131.20,201.60,38.70,5.80,2856.90,0.50,170.50,2439.80,246.10 +COASTAL KARNATAKA,1973,0.00,0.00,0.00,15.30,83.00,765.50,982.10,915.90,178.50,140.70,39.60,5.40,3126.00,0.00,98.30,2842.00,185.70 +COASTAL KARNATAKA,1974,0.00,0.00,5.50,25.80,168.10,474.70,1465.90,741.70,361.80,182.40,7.60,0.00,3433.50,0.00,199.40,3044.10,190.00 +COASTAL KARNATAKA,1975,0.30,0.00,7.00,8.00,103.00,1327.80,1095.50,958.60,537.10,199.50,63.10,0.10,4300.00,0.30,118.00,3919.10,262.60 +COASTAL KARNATAKA,1976,0.00,0.00,8.10,20.30,35.80,492.70,1187.10,644.40,346.40,50.30,138.30,10.60,2933.90,0.00,64.20,2670.60,199.10 +COASTAL KARNATAKA,1977,0.00,1.90,3.30,24.70,116.10,855.70,1290.30,441.10,266.50,198.50,180.80,0.00,3379.00,1.90,144.20,2853.60,379.30 +COASTAL KARNATAKA,1978,0.30,0.50,0.00,11.80,251.60,1212.60,1222.50,745.40,206.70,121.50,76.30,13.80,3862.90,0.80,263.40,3387.20,211.50 +COASTAL KARNATAKA,1979,0.80,0.20,0.20,11.70,12.20,735.30,962.70,619.40,238.60,127.30,111.80,3.30,2823.40,1.00,24.00,2556.00,242.40 +COASTAL KARNATAKA,1980,0.00,0.00,0.80,78.60,57.10,1193.30,1057.70,1004.70,199.50,95.00,71.30,4.10,3762.00,0.00,136.50,3455.20,170.30 +COASTAL KARNATAKA,1981,0.70,0.00,1.90,17.00,58.10,1013.70,1049.30,1187.40,340.70,119.90,56.70,3.20,3848.60,0.70,76.90,3591.00,179.90 +COASTAL KARNATAKA,1982,0.00,0.30,0.30,3.20,87.50,808.60,1258.70,1579.10,151.80,138.30,62.60,0.30,4090.90,0.30,91.10,3798.20,201.20 +COASTAL KARNATAKA,1983,0.00,0.00,0.00,0.00,24.40,712.60,1160.40,1231.80,596.50,140.90,50.30,25.20,3942.20,0.00,24.40,3701.50,216.40 +COASTAL KARNATAKA,1984,4.30,6.00,34.20,46.70,24.00,1110.20,1084.10,613.60,196.80,227.90,11.20,0.10,3359.00,10.30,104.90,3004.60,239.20 +COASTAL KARNATAKA,1985,5.30,0.00,1.60,12.90,76.90,977.90,668.50,844.30,130.60,258.60,27.50,11.70,3015.70,5.30,91.40,2621.30,297.80 +COASTAL KARNATAKA,1986,0.30,0.10,4.80,6.20,20.90,976.50,723.30,808.90,176.30,102.20,112.50,2.50,2934.50,0.40,32.00,2685.00,217.10 +COASTAL KARNATAKA,1987,0.00,0.00,0.20,1.70,63.50,728.30,704.50,715.60,180.60,232.20,74.90,14.70,2716.20,0.00,65.40,2329.00,321.80 +COASTAL KARNATAKA,1988,0.00,0.20,0.00,32.00,28.40,689.30,1295.80,832.60,451.90,122.70,2.40,11.30,3466.60,0.20,60.50,3269.50,136.40 +COASTAL KARNATAKA,1989,0.00,0.00,8.40,22.40,53.60,982.50,914.40,829.30,234.70,138.10,31.90,0.30,3215.60,0.00,84.40,2960.90,170.30 +COASTAL KARNATAKA,1990,1.70,0.00,0.10,5.20,343.20,997.00,1110.80,1087.00,265.40,215.00,93.60,1.50,4120.40,1.70,348.40,3460.20,310.10 +COASTAL KARNATAKA,1991,0.10,0.00,0.30,47.70,95.90,939.90,1501.70,896.50,79.50,111.80,45.60,0.70,3719.70,0.10,143.90,3417.50,158.10 +COASTAL KARNATAKA,1992,0.00,0.00,0.00,17.20,77.00,873.20,1087.50,1097.50,354.30,133.60,241.80,0.00,3882.20,0.00,94.20,3412.60,375.40 +COASTAL KARNATAKA,1993,0.00,0.10,6.70,21.70,68.30,591.20,1397.30,742.00,214.30,347.40,40.80,51.50,3481.30,0.10,96.70,2944.80,439.80 +COASTAL KARNATAKA,1994,3.50,0.00,6.30,72.90,44.10,1221.10,1748.20,907.00,268.10,336.00,28.60,0.50,4636.30,3.50,123.20,4144.40,365.20 +COASTAL KARNATAKA,1995,3.70,0.00,0.70,21.10,137.80,535.80,1375.70,685.10,348.50,192.00,57.40,0.00,3357.80,3.70,159.60,2945.00,249.50 +COASTAL KARNATAKA,1996,0.30,0.00,0.40,20.30,26.20,787.00,1122.60,617.90,289.30,259.50,27.50,37.80,3188.90,0.30,46.90,2816.80,324.90 +COASTAL KARNATAKA,1997,0.70,0.00,14.90,21.50,23.10,818.60,1494.10,1146.00,117.10,148.50,109.80,59.20,3953.60,0.70,59.50,3575.80,317.50 +COASTAL KARNATAKA,1998,0.00,0.00,1.40,6.60,72.00,966.40,1092.00,633.90,572.80,271.00,80.60,11.30,3707.90,0.00,80.00,3265.10,362.90 +COASTAL KARNATAKA,1999,0.00,0.40,0.40,7.10,335.50,854.10,1525.90,518.40,186.50,338.20,12.80,0.50,3779.90,0.40,343.00,3084.90,351.50 +COASTAL KARNATAKA,2000,14.90,0.50,0.90,25.80,216.40,966.80,915.60,741.70,279.20,174.70,12.50,2.40,3351.30,15.50,243.00,2903.30,189.60 +COASTAL KARNATAKA,2001,0.60,0.40,0.40,71.40,156.90,930.00,926.90,654.40,151.80,169.70,48.60,0.60,3111.60,1.00,228.70,2663.10,218.90 +COASTAL KARNATAKA,2002,0.60,11.20,0.50,30.90,164.00,764.50,545.70,731.30,163.50,360.00,20.70,0.30,2793.10,11.80,195.30,2205.00,381.00 +COASTAL KARNATAKA,2003,0.10,3.60,8.40,37.30,10.20,973.80,970.60,637.50,236.00,183.70,10.70,0.00,3071.90,3.80,55.90,2817.90,194.40 +COASTAL KARNATAKA,2004,0.00,0.00,6.30,24.70,329.20,805.80,718.10,874.50,154.40,104.70,52.10,0.00,3070.00,0.10,360.30,2552.80,156.80 +COASTAL KARNATAKA,2005,0.50,0.20,0.00,72.50,45.00,821.60,1177.30,692.00,456.20,178.70,24.60,2.30,3470.90,0.60,117.50,3147.20,205.60 +COASTAL KARNATAKA,2006,1.00,0.00,4.70,5.90,355.70,800.10,1100.80,855.60,404.10,212.00,97.40,0.00,3837.30,1.00,366.30,3160.60,309.40 +COASTAL KARNATAKA,2007,0.00,0.00,0.60,40.20,61.10,952.00,1004.40,980.40,630.50,152.80,37.50,0.80,3860.20,0.00,101.90,3567.20,191.10 +COASTAL KARNATAKA,2008,0.00,14.80,161.40,33.40,64.30,850.70,687.80,886.30,383.30,91.60,19.30,13.50,3206.40,14.80,259.00,2808.10,124.40 +COASTAL KARNATAKA,2009,0.40,0.00,35.20,24.50,100.70,450.30,1778.90,486.10,530.70,287.40,132.40,35.40,3862.00,0.40,160.40,3246.00,455.20 +COASTAL KARNATAKA,2010,14.40,0.40,3.50,62.20,80.20,682.70,1200.20,637.50,468.40,294.70,231.50,11.00,3686.80,14.80,145.90,2988.90,537.20 +COASTAL KARNATAKA,2011,4.80,3.80,8.70,66.10,49.30,1018.40,1080.50,861.30,545.20,178.80,81.50,10.20,3908.60,8.60,124.10,3505.40,270.50 +COASTAL KARNATAKA,2012,NA,11.40,5.10,77.00,22.90,650.90,754.60,1027.60,382.00,115.10,68.00,3.60,NA,NA,104.90,2815.10,186.70 +COASTAL KARNATAKA,2013,2.40,19.60,19.00,28.50,100.40,1153.00,1515.30,680.20,379.10,265.10,56.90,10.00,4229.40,21.90,147.90,3727.60,332.00 +COASTAL KARNATAKA,2014,0.00,0.30,1.90,40.50,181.90,507.00,1155.40,1121.00,379.30,226.40,40.00,30.80,3684.40,0.30,224.30,3162.60,297.20 +COASTAL KARNATAKA,2015,1.40,1.00,32.30,72.20,150.30,735.30,930.90,575.20,260.30,208.50,124.20,14.30,3106.00,2.40,254.80,2501.80,347.10 +NORTH INTERIOR KARNATAKA,1901,3.50,18.80,7.10,67.20,65.50,120.50,151.90,115.10,128.80,80.00,13.60,0.90,773.00,22.30,139.80,516.40,94.50 +NORTH INTERIOR KARNATAKA,1902,0.00,0.00,0.30,22.50,34.40,111.30,83.20,78.10,146.70,118.80,35.70,85.10,716.10,0.00,57.10,419.30,239.60 +NORTH INTERIOR KARNATAKA,1903,3.50,0.00,0.10,6.90,53.40,102.80,209.40,146.40,189.30,166.40,34.30,16.00,928.50,3.50,60.30,647.90,216.80 +NORTH INTERIOR KARNATAKA,1904,0.20,0.30,8.50,11.00,46.30,120.60,91.60,48.50,165.10,86.50,0.00,0.00,578.60,0.50,65.80,425.80,86.50 +NORTH INTERIOR KARNATAKA,1905,0.00,6.00,2.60,16.00,51.20,99.60,60.10,139.20,42.20,85.00,4.40,0.00,506.20,6.00,69.80,341.10,89.40 +NORTH INTERIOR KARNATAKA,1906,21.30,0.00,0.20,2.60,30.00,142.00,120.30,182.10,116.00,86.20,24.30,58.90,783.80,21.30,32.70,560.40,169.40 +NORTH INTERIOR KARNATAKA,1907,1.10,0.00,12.10,96.90,5.60,90.60,155.10,185.20,165.80,10.30,17.90,6.10,746.70,1.10,114.60,596.70,34.30 +NORTH INTERIOR KARNATAKA,1908,1.30,0.30,2.40,16.00,20.70,62.60,154.90,86.10,232.70,16.90,1.10,0.10,595.10,1.60,39.10,536.40,18.00 +NORTH INTERIOR KARNATAKA,1909,2.40,0.10,10.10,11.80,55.30,110.30,140.40,175.60,106.20,50.00,12.00,1.60,675.80,2.50,77.10,532.50,63.60 +NORTH INTERIOR KARNATAKA,1910,0.00,0.00,4.50,2.50,28.20,78.20,127.90,195.50,186.30,104.10,32.30,0.00,759.40,0.00,35.20,587.90,136.40 +NORTH INTERIOR KARNATAKA,1911,0.00,0.00,5.10,3.10,43.20,87.60,151.50,71.60,67.40,61.40,8.80,10.30,510.00,0.00,51.40,378.10,80.60 +NORTH INTERIOR KARNATAKA,1912,0.00,12.50,0.00,42.60,38.20,43.70,226.20,158.00,104.40,104.90,28.30,0.00,758.70,12.50,80.80,532.30,133.10 +NORTH INTERIOR KARNATAKA,1913,0.00,0.90,0.00,16.30,76.70,104.00,150.90,45.00,89.30,85.40,2.50,1.30,572.30,0.90,93.00,389.20,89.20 +NORTH INTERIOR KARNATAKA,1914,0.00,0.00,0.60,19.50,34.20,74.40,220.90,237.10,152.10,24.90,43.00,18.20,824.80,0.00,54.20,684.50,86.10 +NORTH INTERIOR KARNATAKA,1915,26.50,2.40,25.60,32.40,40.30,107.20,150.10,57.80,173.60,89.30,42.60,5.50,753.30,28.90,98.30,488.80,137.40 +NORTH INTERIOR KARNATAKA,1916,0.00,1.20,0.20,22.70,60.10,97.40,234.00,82.40,190.80,197.30,201.80,0.00,1087.90,1.20,83.00,604.60,399.10 +NORTH INTERIOR KARNATAKA,1917,0.00,21.10,22.70,11.70,20.20,117.00,77.80,164.20,192.60,137.20,59.40,0.00,823.80,21.10,54.60,551.60,196.60 +NORTH INTERIOR KARNATAKA,1918,5.90,0.20,2.30,22.50,117.30,43.30,37.00,61.20,150.80,19.60,62.50,5.50,528.00,6.10,142.00,292.30,87.60 +NORTH INTERIOR KARNATAKA,1919,10.60,0.30,0.10,13.20,64.70,124.20,72.70,41.00,228.50,84.30,85.00,2.50,727.10,10.80,78.10,466.30,171.90 +NORTH INTERIOR KARNATAKA,1920,2.60,0.00,0.00,25.10,32.30,75.30,82.60,56.50,139.50,54.30,2.20,0.00,470.30,2.60,57.40,353.90,56.40 +NORTH INTERIOR KARNATAKA,1921,0.20,0.00,1.20,33.60,5.40,63.50,158.20,41.70,49.40,125.30,104.50,0.00,582.80,0.20,40.20,312.70,229.70 +NORTH INTERIOR KARNATAKA,1922,24.50,1.50,0.20,30.20,40.40,70.70,108.10,40.40,35.90,64.90,92.10,0.00,509.00,26.00,70.80,255.10,157.00 +NORTH INTERIOR KARNATAKA,1923,0.20,13.20,32.90,21.40,28.20,38.20,229.40,64.40,163.10,9.40,0.00,2.30,602.80,13.40,82.50,495.10,11.80 +NORTH INTERIOR KARNATAKA,1924,5.10,0.00,6.00,42.00,22.00,68.30,120.40,117.90,155.10,37.90,13.40,3.10,591.20,5.10,70.00,461.70,54.40 +NORTH INTERIOR KARNATAKA,1925,0.00,0.00,7.30,34.30,79.00,74.10,113.70,77.50,108.70,118.70,16.60,12.90,642.60,0.00,120.60,373.90,148.10 +NORTH INTERIOR KARNATAKA,1926,24.80,1.00,2.10,4.50,37.10,65.50,123.00,138.40,161.70,22.10,0.80,0.00,581.00,25.80,43.80,488.60,22.90 +NORTH INTERIOR KARNATAKA,1927,0.00,1.40,4.40,9.30,34.40,123.90,161.00,54.30,184.70,24.70,82.70,0.00,680.80,1.40,48.20,523.90,107.30 +NORTH INTERIOR KARNATAKA,1928,0.50,28.40,13.20,18.20,20.50,153.60,130.20,73.40,210.70,102.60,0.30,17.00,768.50,28.90,51.90,567.80,119.90 +NORTH INTERIOR KARNATAKA,1929,2.00,24.90,2.70,49.00,37.80,105.60,67.40,33.00,167.20,91.30,16.00,1.20,598.00,26.90,89.50,373.20,108.50 +NORTH INTERIOR KARNATAKA,1930,0.00,0.30,3.10,9.50,56.20,94.10,61.00,61.10,189.40,130.80,22.80,4.30,632.70,0.30,68.90,405.60,157.90 +NORTH INTERIOR KARNATAKA,1931,0.00,0.10,4.50,30.60,33.10,114.10,134.90,70.10,195.10,51.70,65.60,19.40,719.20,0.10,68.20,514.20,136.70 +NORTH INTERIOR KARNATAKA,1932,0.00,1.90,0.60,24.80,46.50,49.90,165.30,160.40,113.90,146.80,98.50,0.10,808.80,1.90,71.90,489.50,245.40 +NORTH INTERIOR KARNATAKA,1933,0.10,2.80,13.60,50.10,84.10,113.20,131.60,158.90,149.40,160.70,52.30,30.40,947.30,3.00,147.80,553.20,243.40 +NORTH INTERIOR KARNATAKA,1934,1.20,0.00,0.30,29.50,9.90,70.80,212.30,98.90,67.50,58.90,41.80,0.00,591.20,1.20,39.70,449.50,100.70 +NORTH INTERIOR KARNATAKA,1935,13.90,0.40,0.10,30.10,13.10,120.80,106.80,204.30,80.50,131.70,11.50,1.70,714.90,14.30,43.30,512.40,144.90 +NORTH INTERIOR KARNATAKA,1936,0.00,18.40,5.90,13.30,50.40,101.50,62.70,59.50,136.40,50.80,62.70,3.00,564.70,18.40,69.60,360.10,116.60 +NORTH INTERIOR KARNATAKA,1937,0.00,14.00,12.80,63.40,16.40,54.40,124.80,36.60,109.60,113.50,0.00,6.90,552.40,14.00,92.50,325.40,120.50 +NORTH INTERIOR KARNATAKA,1938,0.00,4.90,43.40,15.60,45.60,119.00,142.10,190.40,200.90,44.20,8.00,1.00,815.10,4.90,104.60,652.40,53.20 +NORTH INTERIOR KARNATAKA,1939,0.00,0.00,5.50,11.10,12.90,87.90,113.20,157.80,115.80,122.10,27.60,0.00,653.90,0.00,29.50,474.70,149.70 +NORTH INTERIOR KARNATAKA,1940,2.00,0.00,0.10,31.00,64.50,122.70,118.30,138.00,111.90,115.20,18.60,14.40,736.80,2.00,95.60,491.00,148.20 +NORTH INTERIOR KARNATAKA,1941,10.70,3.90,7.20,11.20,24.90,64.70,106.30,80.30,164.60,52.50,0.30,9.10,535.70,14.60,43.30,415.80,61.90 +NORTH INTERIOR KARNATAKA,1942,0.00,3.20,0.40,30.20,35.70,138.50,111.70,143.70,57.40,33.80,4.20,26.70,585.70,3.20,66.30,451.40,64.70 +NORTH INTERIOR KARNATAKA,1943,6.70,0.80,3.10,31.60,117.80,115.60,128.80,71.80,200.90,174.10,28.00,0.00,879.20,7.50,152.40,517.20,202.00 +NORTH INTERIOR KARNATAKA,1944,0.00,3.20,30.30,12.30,44.80,92.60,174.60,28.00,140.50,158.80,37.10,0.00,722.10,3.20,87.40,435.70,195.80 +NORTH INTERIOR KARNATAKA,1945,0.30,0.00,0.00,11.20,21.30,69.70,191.90,95.70,92.80,57.60,3.50,0.00,544.00,0.30,32.50,450.10,61.10 +NORTH INTERIOR KARNATAKA,1946,0.00,7.60,3.80,44.20,56.80,106.70,135.00,127.90,146.20,75.50,102.00,3.30,808.90,7.60,104.80,515.70,180.70 +NORTH INTERIOR KARNATAKA,1947,8.60,6.70,11.10,13.90,29.00,102.90,175.50,217.00,161.30,38.40,13.40,8.60,786.30,15.20,54.00,656.70,60.30 +NORTH INTERIOR KARNATAKA,1948,0.90,0.00,7.90,40.10,38.20,72.60,110.30,147.30,155.90,79.00,126.30,0.10,778.30,0.90,86.10,486.00,205.30 +NORTH INTERIOR KARNATAKA,1949,0.00,1.50,6.40,15.20,72.90,82.50,114.10,100.50,265.40,94.10,10.70,0.00,763.30,1.50,94.50,562.60,104.80 +NORTH INTERIOR KARNATAKA,1950,0.00,6.80,4.00,8.20,51.90,94.90,122.60,120.80,180.40,109.80,7.00,0.00,706.50,6.80,64.00,518.80,116.90 +NORTH INTERIOR KARNATAKA,1951,0.00,0.00,4.50,17.30,63.80,117.60,179.00,64.80,149.00,101.20,10.40,0.80,708.40,0.00,85.60,510.40,112.40 +NORTH INTERIOR KARNATAKA,1952,0.00,8.00,0.10,32.10,98.30,52.90,132.00,64.70,85.20,141.60,0.00,13.70,628.50,8.00,130.40,334.80,155.30 +NORTH INTERIOR KARNATAKA,1953,0.00,0.00,0.10,38.90,5.80,127.80,192.40,91.60,186.20,248.30,0.00,0.00,891.20,0.00,44.80,598.00,248.40 +NORTH INTERIOR KARNATAKA,1954,0.00,0.00,16.90,19.70,44.90,80.10,216.40,152.70,78.20,62.80,0.20,11.40,683.30,0.00,81.50,527.40,74.30 +NORTH INTERIOR KARNATAKA,1955,0.10,0.00,10.00,30.70,92.40,128.70,140.70,223.30,197.20,132.00,12.00,0.00,967.10,0.10,133.10,690.00,143.90 +NORTH INTERIOR KARNATAKA,1956,0.00,2.80,1.10,30.20,64.00,96.80,314.10,117.90,144.90,164.60,100.10,2.40,1039.00,2.80,95.30,673.70,267.10 +NORTH INTERIOR KARNATAKA,1957,0.00,0.90,5.50,25.50,70.00,115.40,146.60,188.80,87.80,174.30,23.10,0.00,837.80,0.90,101.00,538.60,197.30 +NORTH INTERIOR KARNATAKA,1958,2.00,0.20,7.30,46.00,100.30,55.20,174.80,179.70,71.20,83.70,31.00,0.50,752.00,2.20,153.60,480.90,115.30 +NORTH INTERIOR KARNATAKA,1959,0.10,0.00,0.60,26.20,43.80,163.20,155.10,90.60,148.80,52.30,17.20,0.60,698.50,0.10,70.60,557.70,70.10 +NORTH INTERIOR KARNATAKA,1960,0.00,0.00,14.90,17.20,79.60,86.80,96.40,29.40,313.90,32.90,20.40,0.10,691.60,0.00,111.60,526.50,53.40 +NORTH INTERIOR KARNATAKA,1961,0.10,0.60,6.40,32.10,102.10,99.90,245.40,78.40,33.10,144.90,5.60,0.00,748.60,0.60,140.60,456.90,150.60 +NORTH INTERIOR KARNATAKA,1962,0.00,5.00,2.90,58.80,52.50,82.10,140.10,144.70,165.70,99.30,25.40,62.40,839.10,5.00,114.30,532.60,187.20 +NORTH INTERIOR KARNATAKA,1963,0.00,10.90,33.90,34.40,78.90,113.10,73.90,195.50,63.00,178.60,1.00,0.00,783.10,11.00,147.20,445.40,179.60 +NORTH INTERIOR KARNATAKA,1964,0.00,0.80,4.30,16.90,14.60,97.60,211.70,129.20,289.10,110.80,22.40,2.40,899.80,0.80,35.80,727.60,135.60 +NORTH INTERIOR KARNATAKA,1965,1.30,0.00,0.50,14.00,17.20,110.40,185.90,120.00,150.10,3.80,2.80,26.80,632.90,1.30,31.70,566.40,33.50 +NORTH INTERIOR KARNATAKA,1966,13.40,0.30,5.50,10.60,82.90,68.90,145.50,80.70,160.60,54.80,92.00,8.40,723.60,13.70,98.90,455.80,155.20 +NORTH INTERIOR KARNATAKA,1967,1.20,0.00,11.80,34.60,32.50,74.10,187.10,72.50,141.90,80.00,1.70,8.40,645.70,1.20,78.80,475.60,90.10 +NORTH INTERIOR KARNATAKA,1968,1.90,15.80,2.70,41.20,32.20,92.40,162.30,47.60,202.50,98.50,29.90,0.30,727.30,17.70,76.10,504.80,128.70 +NORTH INTERIOR KARNATAKA,1969,0.00,0.00,4.10,14.90,40.60,89.40,151.10,159.20,121.50,113.70,33.50,1.30,729.10,0.00,59.50,521.20,148.40 +NORTH INTERIOR KARNATAKA,1970,0.40,0.20,1.00,31.50,76.50,80.70,131.50,199.90,173.20,95.70,0.00,0.00,790.80,0.60,109.10,585.30,95.70 +NORTH INTERIOR KARNATAKA,1971,0.90,0.00,0.30,23.90,69.30,102.20,53.70,121.00,109.00,131.20,0.60,0.00,612.10,0.90,93.50,385.90,131.80 +NORTH INTERIOR KARNATAKA,1972,0.00,2.40,1.30,19.50,45.90,79.40,100.80,40.70,126.30,47.20,34.40,1.40,499.40,2.40,66.80,347.30,83.00 +NORTH INTERIOR KARNATAKA,1973,0.00,0.00,0.20,10.10,29.70,136.20,101.30,154.00,100.60,212.50,5.60,0.50,750.80,0.00,40.00,492.10,218.70 +NORTH INTERIOR KARNATAKA,1974,0.00,0.00,5.00,23.90,83.90,93.30,98.90,92.20,242.50,176.90,0.50,0.00,817.30,0.00,112.80,527.00,177.50 +NORTH INTERIOR KARNATAKA,1975,8.20,1.10,5.60,7.20,59.60,104.20,238.60,109.60,214.80,323.10,21.60,0.10,1093.70,9.30,72.50,667.20,344.80 +NORTH INTERIOR KARNATAKA,1976,0.00,0.00,5.50,35.10,11.10,82.50,131.60,147.90,74.10,15.60,57.90,0.10,561.30,0.00,51.70,436.10,73.60 +NORTH INTERIOR KARNATAKA,1977,0.00,1.20,10.70,34.80,75.00,170.30,144.40,135.90,70.50,134.20,72.30,0.60,849.90,1.20,120.40,521.20,207.10 +NORTH INTERIOR KARNATAKA,1978,0.50,13.20,0.80,35.10,76.90,102.00,165.90,160.30,204.80,85.90,55.10,4.30,904.90,13.70,112.90,633.00,145.20 +NORTH INTERIOR KARNATAKA,1979,2.00,13.10,2.40,7.30,60.70,141.70,125.40,168.80,291.40,54.50,95.80,0.10,963.20,15.00,70.50,727.30,150.40 +NORTH INTERIOR KARNATAKA,1980,0.10,0.00,1.60,51.50,20.10,149.10,126.00,171.60,125.90,19.80,22.60,3.40,691.70,0.10,73.20,572.50,45.90 +NORTH INTERIOR KARNATAKA,1981,6.20,0.00,10.30,12.10,39.60,160.80,127.50,151.90,284.30,68.30,16.10,0.10,877.30,6.20,62.00,724.60,84.50 +NORTH INTERIOR KARNATAKA,1982,0.10,0.00,0.80,13.80,59.80,87.20,163.40,83.20,145.50,83.80,43.80,0.00,681.40,0.10,74.40,479.30,127.60 +NORTH INTERIOR KARNATAKA,1983,0.00,0.00,0.00,0.20,24.50,167.40,135.10,169.00,198.10,66.50,8.30,8.70,777.90,0.00,24.80,669.70,83.50 +NORTH INTERIOR KARNATAKA,1984,0.40,3.90,6.20,14.30,8.00,64.10,217.40,62.10,127.10,113.50,1.10,0.10,618.10,4.30,28.50,470.70,114.60 +NORTH INTERIOR KARNATAKA,1985,2.90,0.00,6.80,20.80,34.10,86.60,109.70,67.70,75.80,94.70,1.40,0.60,501.20,2.90,61.80,339.80,96.80 +NORTH INTERIOR KARNATAKA,1986,11.00,7.40,1.40,23.20,38.10,124.90,76.10,129.00,114.10,29.50,60.40,5.30,620.40,18.40,62.80,444.10,95.20 +NORTH INTERIOR KARNATAKA,1987,0.40,0.90,0.50,2.00,44.90,124.00,83.10,166.60,109.30,119.70,68.90,26.80,747.40,1.40,47.50,483.10,215.50 +NORTH INTERIOR KARNATAKA,1988,1.30,1.60,1.50,38.30,34.50,77.20,170.60,219.50,214.20,16.10,2.00,18.80,795.40,2.90,74.30,681.40,36.90 +NORTH INTERIOR KARNATAKA,1989,0.00,0.00,21.60,10.70,28.50,102.00,199.60,64.10,203.30,23.30,8.90,14.10,676.20,0.00,60.80,569.00,46.30 +NORTH INTERIOR KARNATAKA,1990,4.80,0.00,0.10,7.80,127.30,129.70,96.20,170.00,64.20,95.60,23.30,0.00,719.00,4.80,135.10,460.10,119.00 +NORTH INTERIOR KARNATAKA,1991,0.20,0.00,1.30,47.30,59.80,235.70,155.60,94.00,67.60,49.60,8.90,0.00,720.00,0.20,108.40,552.90,58.50 +NORTH INTERIOR KARNATAKA,1992,0.00,0.00,0.00,12.70,48.10,108.00,100.00,121.00,85.10,68.00,125.40,0.00,668.30,0.00,60.90,414.10,193.30 +NORTH INTERIOR KARNATAKA,1993,0.00,0.10,6.50,11.40,37.60,69.30,134.90,128.10,94.80,201.90,10.80,36.40,731.80,0.10,55.50,427.10,249.10 +NORTH INTERIOR KARNATAKA,1994,4.20,0.30,0.20,35.30,16.80,101.80,146.00,95.90,38.10,200.30,4.20,0.00,643.00,4.50,52.30,381.70,204.50 +NORTH INTERIOR KARNATAKA,1995,28.30,0.10,5.40,11.80,33.10,75.50,140.90,95.90,104.30,148.90,18.20,0.00,662.30,28.40,50.30,416.50,167.10 +NORTH INTERIOR KARNATAKA,1996,0.00,0.00,0.50,20.50,25.10,138.50,98.20,165.20,199.50,154.20,7.50,2.60,811.80,0.00,46.10,601.40,164.30 +NORTH INTERIOR KARNATAKA,1997,4.30,0.00,14.80,22.60,17.50,213.00,272.80,290.10,76.90,85.30,64.60,33.80,1095.60,4.30,54.90,852.70,183.70 +NORTH INTERIOR KARNATAKA,1998,0.00,0.00,0.40,6.10,32.70,107.80,140.40,155.40,223.10,172.70,13.90,0.10,852.50,0.00,39.20,626.70,186.60 +NORTH INTERIOR KARNATAKA,1999,0.00,3.40,0.60,3.90,89.00,93.20,130.50,89.50,97.50,152.90,0.30,0.00,660.80,3.40,93.50,410.70,153.20 +NORTH INTERIOR KARNATAKA,2000,0.40,2.60,0.10,8.40,49.00,107.50,127.10,164.60,134.40,115.10,2.80,0.50,712.40,3.00,57.40,533.60,118.30 +NORTH INTERIOR KARNATAKA,2001,2.10,0.00,0.10,22.10,13.30,60.90,62.10,108.80,187.10,137.50,2.50,1.40,598.00,2.10,35.50,418.90,141.40 +NORTH INTERIOR KARNATAKA,2002,3.80,7.90,0.30,14.70,40.60,108.20,54.70,118.20,52.20,126.40,3.40,0.00,530.50,11.70,55.60,333.40,129.90 +NORTH INTERIOR KARNATAKA,2003,0.30,1.50,15.20,24.90,3.50,66.90,94.40,104.00,64.30,92.10,4.20,2.20,473.50,1.80,43.60,329.70,98.40 +NORTH INTERIOR KARNATAKA,2004,2.60,2.70,1.60,29.90,93.80,106.10,111.70,92.80,134.60,61.60,4.30,0.20,641.90,5.30,125.30,445.20,66.10 +NORTH INTERIOR KARNATAKA,2005,5.80,0.80,5.50,52.50,34.50,98.70,219.40,123.30,159.70,102.30,5.00,0.10,807.50,6.60,92.60,601.00,107.40 +NORTH INTERIOR KARNATAKA,2006,0.00,0.00,16.80,12.10,79.00,130.20,113.90,89.10,136.80,43.60,29.00,0.00,650.60,0.00,107.90,470.00,72.60 +NORTH INTERIOR KARNATAKA,2007,11.70,6.80,7.70,27.00,38.90,215.50,117.20,143.40,205.40,40.50,13.50,9.20,836.90,18.50,73.70,681.50,63.20 +NORTH INTERIOR KARNATAKA,2008,0.40,9.20,109.20,22.80,29.20,71.60,80.60,147.70,152.50,54.10,29.80,5.30,712.40,9.60,161.30,452.30,89.20 +NORTH INTERIOR KARNATAKA,2009,0.30,0.00,9.90,17.40,63.10,112.00,134.90,135.40,215.60,168.60,42.30,13.90,913.50,0.30,90.40,597.90,224.90 +NORTH INTERIOR KARNATAKA,2010,9.60,2.50,0.50,15.50,39.50,110.10,193.50,207.50,119.20,82.10,71.90,1.20,853.20,12.10,55.60,630.40,155.20 +NORTH INTERIOR KARNATAKA,2011,0.50,7.20,7.20,41.20,46.80,101.30,150.80,152.00,69.00,73.40,5.70,0.00,655.20,7.70,95.20,473.10,79.20 +NORTH INTERIOR KARNATAKA,2012,28.50,6.20,0.40,35.40,19.50,60.00,114.50,105.50,79.20,85.20,46.50,2.90,583.80,34.70,55.30,359.30,134.50 +NORTH INTERIOR KARNATAKA,2013,1.20,6.10,3.00,25.40,47.40,99.40,160.70,73.90,201.00,101.00,4.20,0.10,723.20,7.30,75.70,534.90,105.20 +NORTH INTERIOR KARNATAKA,2014,0.00,6.10,29.20,26.40,93.00,50.40,136.80,205.20,90.20,80.30,25.00,14.10,756.80,6.10,148.70,482.50,119.50 +NORTH INTERIOR KARNATAKA,2015,2.40,0.00,27.50,50.80,45.30,89.60,38.50,78.40,150.80,61.20,5.70,1.70,551.90,2.40,123.60,357.20,68.60 +SOUTH INTERIOR KARNATAKA,1901,4.90,31.80,3.00,32.70,109.60,106.00,210.00,109.20,140.80,170.10,72.50,12.30,1003.00,36.80,145.40,566.00,254.90 +SOUTH INTERIOR KARNATAKA,1902,1.90,0.50,6.70,42.60,97.70,91.70,210.00,82.10,138.40,219.10,44.60,84.90,1020.10,2.40,147.00,522.30,348.50 +SOUTH INTERIOR KARNATAKA,1903,0.30,0.00,1.10,11.60,125.10,129.70,284.40,155.70,197.10,154.20,186.60,24.10,1269.90,0.30,137.70,766.90,364.90 +SOUTH INTERIOR KARNATAKA,1904,1.00,0.50,5.20,43.50,144.70,167.90,197.10,73.20,89.60,120.40,2.50,0.30,845.80,1.50,193.30,527.80,123.20 +SOUTH INTERIOR KARNATAKA,1905,1.70,7.90,14.20,23.60,118.60,95.90,148.40,140.60,43.10,142.80,22.40,0.30,759.40,9.50,156.50,427.90,165.50 +SOUTH INTERIOR KARNATAKA,1906,14.10,1.50,2.20,4.80,46.10,116.40,211.30,256.30,109.50,173.40,16.50,52.60,1004.50,15.60,53.10,693.50,242.40 +SOUTH INTERIOR KARNATAKA,1907,4.50,0.00,11.70,84.70,46.50,137.40,231.50,219.40,146.50,52.60,49.50,14.10,998.50,4.50,142.90,734.90,116.30 +SOUTH INTERIOR KARNATAKA,1908,8.30,2.40,9.30,44.40,92.50,92.20,263.60,118.10,88.00,69.60,1.20,0.50,790.20,10.70,146.20,561.90,71.30 +SOUTH INTERIOR KARNATAKA,1909,19.80,1.20,6.70,42.10,166.60,138.90,245.50,190.50,109.00,121.50,35.80,9.70,1087.40,21.00,215.40,684.00,167.10 +SOUTH INTERIOR KARNATAKA,1910,0.00,1.10,7.50,27.00,89.80,124.90,254.10,232.60,123.50,219.60,77.00,0.00,1157.30,1.10,124.40,735.10,296.70 +SOUTH INTERIOR KARNATAKA,1911,0.80,0.10,5.20,28.80,123.20,174.80,225.70,84.00,63.30,156.70,35.80,7.90,906.30,0.90,157.20,547.80,200.50 +SOUTH INTERIOR KARNATAKA,1912,0.80,4.60,2.70,41.70,70.10,133.00,291.90,181.30,176.10,190.00,57.60,0.10,1150.20,5.40,114.60,782.40,247.70 +SOUTH INTERIOR KARNATAKA,1913,0.00,0.10,1.00,22.30,93.40,124.50,257.50,88.40,151.00,133.60,1.40,3.10,876.40,0.10,116.80,621.40,138.10 +SOUTH INTERIOR KARNATAKA,1914,0.00,0.60,1.70,16.00,62.60,69.60,309.70,153.30,107.90,115.30,64.00,26.00,926.70,0.60,80.30,640.40,205.30 +SOUTH INTERIOR KARNATAKA,1915,9.70,2.60,31.60,43.90,66.50,222.90,184.20,75.70,185.00,106.70,93.40,9.50,1031.90,12.40,142.00,667.80,209.60 +SOUTH INTERIOR KARNATAKA,1916,0.00,0.10,0.20,23.90,146.30,184.00,188.50,204.70,145.50,178.40,151.60,7.40,1230.70,0.10,170.40,722.80,337.40 +SOUTH INTERIOR KARNATAKA,1917,0.30,37.20,15.90,18.40,51.80,163.80,104.40,171.20,275.60,160.00,94.70,1.00,1094.30,37.50,86.10,715.00,255.70 +SOUTH INTERIOR KARNATAKA,1918,11.10,0.70,13.90,41.00,110.10,69.20,47.50,102.70,98.70,47.00,182.60,8.90,733.30,11.70,165.00,318.10,238.50 +SOUTH INTERIOR KARNATAKA,1919,4.80,0.00,7.70,27.10,99.80,152.70,166.90,108.40,225.00,81.90,132.30,4.70,1011.40,4.80,134.60,653.00,218.90 +SOUTH INTERIOR KARNATAKA,1920,8.40,0.40,1.70,42.80,58.60,125.10,241.20,92.10,128.10,101.90,28.40,0.10,828.90,8.80,103.20,586.60,130.30 +SOUTH INTERIOR KARNATAKA,1921,15.40,0.00,2.90,84.60,47.20,114.90,217.80,169.50,77.50,167.60,88.70,0.00,986.10,15.40,134.70,579.70,256.30 +SOUTH INTERIOR KARNATAKA,1922,16.10,1.20,0.30,33.10,109.90,99.50,186.30,114.30,53.40,151.80,129.00,2.20,897.10,17.20,143.30,453.50,283.10 +SOUTH INTERIOR KARNATAKA,1923,3.70,3.90,27.20,31.80,73.80,84.30,408.10,207.70,100.30,40.00,6.70,2.90,990.50,7.60,132.80,800.40,49.60 +SOUTH INTERIOR KARNATAKA,1924,0.90,0.10,5.80,38.70,96.00,125.70,460.90,146.70,135.10,58.40,47.10,11.70,1127.00,1.00,140.50,868.30,117.20 +SOUTH INTERIOR KARNATAKA,1925,0.00,0.10,8.40,63.00,116.50,143.20,221.30,132.60,115.30,65.80,69.40,46.80,982.20,0.10,187.90,612.40,181.90 +SOUTH INTERIOR KARNATAKA,1926,23.00,0.40,7.10,37.50,64.10,89.60,234.30,174.20,168.30,89.70,7.60,1.20,897.00,23.40,108.70,666.40,98.50 +SOUTH INTERIOR KARNATAKA,1927,0.10,2.50,5.20,11.20,82.50,114.30,249.10,118.50,186.80,19.40,74.20,0.00,863.70,2.50,98.90,668.70,93.50 +SOUTH INTERIOR KARNATAKA,1928,0.60,44.30,24.00,43.40,66.10,112.10,189.10,161.70,37.80,229.70,28.90,12.70,950.50,44.90,133.50,500.80,271.30 +SOUTH INTERIOR KARNATAKA,1929,4.70,13.70,1.90,127.70,101.30,149.70,178.60,88.80,186.00,100.90,76.50,5.20,1034.90,18.40,230.90,603.10,182.50 +SOUTH INTERIOR KARNATAKA,1930,5.20,6.60,10.80,27.00,156.80,126.90,117.20,85.50,150.50,253.90,40.90,12.10,993.30,11.80,194.50,480.10,306.90 +SOUTH INTERIOR KARNATAKA,1931,0.00,0.00,3.00,45.70,81.70,116.80,188.20,246.00,144.60,42.70,117.50,26.30,1012.60,0.00,130.40,695.70,186.50 +SOUTH INTERIOR KARNATAKA,1932,0.00,10.40,0.50,35.80,155.80,72.40,262.90,264.30,117.10,227.00,122.40,1.60,1270.10,10.40,192.00,716.60,351.00 +SOUTH INTERIOR KARNATAKA,1933,0.00,2.90,10.50,43.80,176.00,139.90,216.80,241.60,195.10,236.60,19.20,46.60,1329.20,2.90,230.30,793.40,302.50 +SOUTH INTERIOR KARNATAKA,1934,5.90,0.40,1.10,40.90,52.60,149.40,158.70,137.50,27.70,173.50,38.30,0.30,786.30,6.30,94.60,473.30,212.10 +SOUTH INTERIOR KARNATAKA,1935,6.20,1.20,5.20,48.60,52.60,121.90,211.00,197.10,105.20,191.60,6.80,7.30,954.50,7.40,106.30,635.20,205.60 +SOUTH INTERIOR KARNATAKA,1936,0.00,6.20,34.70,15.70,102.10,185.20,156.20,111.60,176.10,89.50,76.50,4.50,958.40,6.30,152.50,629.20,170.50 +SOUTH INTERIOR KARNATAKA,1937,0.10,9.80,14.60,90.80,81.60,99.60,232.70,78.00,121.70,147.00,25.50,9.70,911.20,9.90,187.00,532.00,182.20 +SOUTH INTERIOR KARNATAKA,1938,0.00,3.90,17.40,40.70,45.80,144.40,153.80,237.60,178.70,30.60,15.90,2.60,871.40,3.90,103.90,714.60,49.10 +SOUTH INTERIOR KARNATAKA,1939,3.50,0.00,13.10,70.50,49.60,92.10,184.70,198.10,114.70,226.60,71.60,0.00,1024.60,3.50,133.20,589.60,298.10 +SOUTH INTERIOR KARNATAKA,1940,0.00,0.10,0.70,60.10,138.30,177.60,203.40,188.70,80.70,174.90,139.70,15.80,1180.00,0.20,199.10,650.40,330.40 +SOUTH INTERIOR KARNATAKA,1941,1.20,2.30,2.30,43.80,73.80,154.90,186.50,154.90,129.80,108.40,19.50,60.20,937.60,3.40,119.90,626.20,188.10 +SOUTH INTERIOR KARNATAKA,1942,0.10,2.00,0.50,45.00,91.00,164.10,247.50,145.90,77.30,109.00,26.70,23.70,932.90,2.10,136.40,634.80,159.50 +SOUTH INTERIOR KARNATAKA,1943,24.40,0.90,3.70,48.30,189.90,88.50,243.10,67.50,137.00,283.00,50.80,0.00,1137.10,25.30,241.90,536.00,333.90 +SOUTH INTERIOR KARNATAKA,1944,0.20,24.30,37.00,21.70,98.50,100.00,275.10,82.00,127.20,178.50,74.40,6.70,1025.70,24.50,157.30,584.30,259.60 +SOUTH INTERIOR KARNATAKA,1945,0.40,1.20,0.30,54.90,93.30,79.90,260.90,109.90,72.60,85.20,33.70,0.10,792.30,1.60,148.40,523.30,119.00 +SOUTH INTERIOR KARNATAKA,1946,0.10,2.40,14.80,62.50,86.90,146.80,201.50,255.90,168.10,112.90,150.30,42.90,1245.00,2.50,164.20,772.20,306.10 +SOUTH INTERIOR KARNATAKA,1947,8.10,5.90,10.00,22.40,53.20,83.50,238.90,236.20,139.70,127.60,15.20,17.60,958.30,14.00,85.60,698.30,160.50 +SOUTH INTERIOR KARNATAKA,1948,4.00,0.10,3.20,70.70,153.90,135.60,188.60,255.60,61.10,117.70,81.50,2.10,1074.10,4.00,227.80,641.00,201.30 +SOUTH INTERIOR KARNATAKA,1949,0.10,0.10,3.80,32.10,103.60,82.40,179.50,165.20,107.80,188.30,13.60,0.00,876.40,0.20,139.40,534.90,201.90 +SOUTH INTERIOR KARNATAKA,1950,0.10,13.30,0.80,6.50,61.30,91.20,268.80,148.70,154.50,133.70,77.10,0.40,956.50,13.40,68.70,663.30,211.20 +SOUTH INTERIOR KARNATAKA,1951,0.20,0.00,13.00,60.90,135.20,111.70,205.70,89.40,177.90,98.00,33.30,0.00,925.30,0.20,209.10,584.70,131.30 +SOUTH INTERIOR KARNATAKA,1952,0.30,10.70,0.60,40.00,76.80,106.80,176.20,156.20,66.70,188.60,0.70,48.20,871.80,11.00,117.50,505.80,237.50 +SOUTH INTERIOR KARNATAKA,1953,0.50,2.20,0.70,71.00,34.40,163.70,368.50,191.50,113.00,307.40,2.60,0.50,1255.90,2.60,106.10,836.80,310.40 +SOUTH INTERIOR KARNATAKA,1954,1.80,0.50,8.90,38.50,127.20,139.30,298.50,175.60,56.90,164.80,0.50,18.60,1031.10,2.30,174.50,670.30,183.90 +SOUTH INTERIOR KARNATAKA,1955,0.90,0.10,10.40,48.70,168.20,135.90,88.90,151.60,201.20,175.10,18.10,2.90,1002.00,1.00,227.40,577.50,196.10 +SOUTH INTERIOR KARNATAKA,1956,0.40,1.40,2.50,68.50,62.50,209.60,251.30,137.10,120.10,265.00,124.00,1.20,1243.70,1.80,133.50,718.10,390.30 +SOUTH INTERIOR KARNATAKA,1957,0.00,0.50,9.40,18.60,169.00,174.90,242.60,147.20,47.00,177.60,77.90,0.10,1064.70,0.50,196.90,611.60,255.60 +SOUTH INTERIOR KARNATAKA,1958,3.30,1.30,13.10,60.60,134.50,163.20,340.20,201.70,123.10,108.70,59.60,0.60,1210.00,4.60,208.20,828.20,168.90 +SOUTH INTERIOR KARNATAKA,1959,0.20,2.50,0.30,25.20,89.80,255.80,425.60,172.20,218.20,55.40,29.30,6.30,1280.90,2.70,115.30,1071.80,91.10 +SOUTH INTERIOR KARNATAKA,1960,0.30,0.00,15.30,42.40,92.60,119.80,254.30,124.40,162.70,112.80,65.30,0.20,989.90,0.30,150.20,661.20,178.20 +SOUTH INTERIOR KARNATAKA,1961,2.10,3.40,2.60,62.50,161.60,196.20,492.70,213.50,93.80,165.40,14.30,1.40,1409.50,5.50,226.70,996.20,181.10 +SOUTH INTERIOR KARNATAKA,1962,1.40,6.90,5.50,81.30,118.50,66.10,310.40,268.50,149.10,203.70,29.60,65.90,1307.20,8.30,205.40,794.20,299.30 +SOUTH INTERIOR KARNATAKA,1963,1.20,2.80,13.00,51.60,78.10,108.50,197.50,232.50,92.60,193.80,9.00,12.30,992.80,3.90,142.70,631.10,215.10 +SOUTH INTERIOR KARNATAKA,1964,0.00,0.10,0.70,23.60,51.00,122.20,280.00,305.40,182.70,121.50,78.40,3.80,1169.40,0.10,75.20,890.30,203.70 +SOUTH INTERIOR KARNATAKA,1965,1.00,0.20,4.60,24.60,42.00,129.80,245.20,141.10,81.40,17.70,25.80,21.70,735.20,1.20,71.30,597.50,65.10 +SOUTH INTERIOR KARNATAKA,1966,4.20,0.90,2.50,24.70,90.90,82.30,256.10,91.00,188.50,132.80,123.20,13.80,1010.90,5.20,118.10,617.80,269.80 +SOUTH INTERIOR KARNATAKA,1967,5.70,0.00,4.70,25.70,77.80,136.30,350.40,157.30,57.80,96.20,12.30,16.00,940.30,5.70,108.30,701.80,124.60 +SOUTH INTERIOR KARNATAKA,1968,0.00,8.00,8.50,47.50,71.80,120.60,284.10,124.70,209.70,99.30,23.40,3.40,1001.00,8.00,127.80,739.20,126.00 +SOUTH INTERIOR KARNATAKA,1969,0.00,0.00,2.30,37.80,101.90,100.80,289.50,216.30,104.00,174.80,51.40,27.70,1106.50,0.00,142.00,710.60,253.90 +SOUTH INTERIOR KARNATAKA,1970,1.40,5.40,4.30,49.50,129.60,99.50,210.10,206.40,129.00,217.60,20.90,0.20,1073.80,6.70,183.40,645.00,238.70 +SOUTH INTERIOR KARNATAKA,1971,2.00,5.30,2.70,37.90,100.50,204.50,174.90,180.70,161.70,122.30,17.40,10.30,1020.20,7.30,141.10,721.70,150.00 +SOUTH INTERIOR KARNATAKA,1972,0.00,1.10,0.10,26.90,190.50,153.60,214.60,97.60,176.20,135.70,26.30,41.50,1064.00,1.10,217.50,642.00,203.50 +SOUTH INTERIOR KARNATAKA,1973,0.00,0.00,0.20,21.80,102.40,214.90,232.70,220.80,118.00,140.50,26.50,8.70,1086.60,0.00,124.40,786.50,175.70 +SOUTH INTERIOR KARNATAKA,1974,0.10,0.00,4.30,34.50,113.20,71.00,281.80,166.70,235.00,138.20,6.60,0.00,1051.50,0.10,152.00,754.50,144.90 +SOUTH INTERIOR KARNATAKA,1975,4.10,3.20,15.50,21.00,93.00,224.80,260.60,252.80,224.00,157.70,76.30,1.30,1334.30,7.30,129.40,962.20,235.30 +SOUTH INTERIOR KARNATAKA,1976,0.00,0.10,2.60,66.90,25.90,64.00,203.70,148.30,87.20,54.40,106.50,1.70,761.20,0.10,95.30,503.10,162.60 +SOUTH INTERIOR KARNATAKA,1977,0.00,1.30,13.80,51.20,136.80,168.50,227.70,134.50,166.50,224.60,82.80,0.10,1207.80,1.30,201.80,697.10,307.40 +SOUTH INTERIOR KARNATAKA,1978,0.50,7.00,2.60,40.10,104.50,188.10,281.80,231.20,156.80,107.10,81.00,30.80,1231.60,7.50,147.30,857.90,219.00 +SOUTH INTERIOR KARNATAKA,1979,0.30,29.20,4.10,31.30,49.00,192.80,189.30,207.90,219.60,81.90,113.90,1.40,1120.80,29.50,84.40,809.60,197.20 +SOUTH INTERIOR KARNATAKA,1980,0.00,0.00,7.20,79.10,99.00,228.00,287.70,179.60,161.80,99.60,81.10,1.90,1225.00,0.00,185.20,857.10,182.70 +SOUTH INTERIOR KARNATAKA,1981,1.80,0.10,19.60,25.50,94.90,136.30,189.40,299.80,254.60,123.20,32.80,6.50,1184.60,1.90,140.00,880.20,162.50 +SOUTH INTERIOR KARNATAKA,1982,0.10,0.00,2.00,18.30,99.20,151.10,217.00,240.80,126.90,97.10,50.80,0.20,1003.50,0.10,119.50,735.80,148.10 +SOUTH INTERIOR KARNATAKA,1983,0.00,0.00,0.90,5.10,77.00,215.30,206.60,262.50,185.90,97.80,21.10,38.90,1111.20,0.00,83.00,870.30,157.80 +SOUTH INTERIOR KARNATAKA,1984,2.10,7.90,75.40,39.00,44.70,196.20,256.80,122.30,167.10,142.30,5.70,4.40,1063.90,10.00,159.10,742.40,152.40 +SOUTH INTERIOR KARNATAKA,1985,4.10,0.10,13.80,42.10,52.80,193.30,138.70,172.30,139.70,67.40,29.30,5.80,859.30,4.20,108.60,644.00,102.50 +SOUTH INTERIOR KARNATAKA,1986,13.90,9.20,3.90,26.20,51.70,210.00,149.90,208.20,175.30,79.40,94.10,8.40,1030.20,23.10,81.80,743.40,181.80 +SOUTH INTERIOR KARNATAKA,1987,0.30,0.00,4.50,9.20,64.20,135.70,114.90,151.70,139.90,205.40,76.90,31.90,934.70,0.30,77.90,542.30,314.20 +SOUTH INTERIOR KARNATAKA,1988,0.20,2.90,11.90,71.40,84.90,68.00,276.00,251.30,199.20,30.60,5.90,19.90,1022.20,3.10,168.20,794.60,56.40 +SOUTH INTERIOR KARNATAKA,1989,0.00,0.10,12.50,24.00,53.30,145.00,286.30,135.00,149.40,86.90,15.70,5.20,913.50,0.10,89.80,715.70,107.90 +SOUTH INTERIOR KARNATAKA,1990,4.00,0.10,5.00,15.20,115.10,130.10,148.50,193.80,59.00,128.50,47.00,2.20,848.50,4.20,135.30,531.30,177.70 +SOUTH INTERIOR KARNATAKA,1991,1.00,0.10,2.60,64.20,108.60,248.90,261.90,165.50,115.80,192.50,60.00,0.10,1221.20,1.10,175.30,792.20,252.60 +SOUTH INTERIOR KARNATAKA,1992,0.20,0.30,0.00,28.60,78.90,269.40,202.10,215.90,145.50,113.50,146.50,0.20,1201.00,0.40,107.50,832.90,260.20 +SOUTH INTERIOR KARNATAKA,1993,0.00,0.50,6.20,22.90,66.40,149.00,204.70,189.90,105.30,234.50,25.00,33.70,1038.10,0.50,95.50,648.90,293.20 +SOUTH INTERIOR KARNATAKA,1994,11.70,2.40,3.90,54.60,70.90,184.90,336.40,132.60,96.40,238.60,24.80,0.50,1157.80,14.10,129.40,750.40,263.90 +SOUTH INTERIOR KARNATAKA,1995,4.20,0.20,3.50,32.10,70.90,79.60,248.40,179.80,135.60,98.80,30.10,0.00,883.20,4.40,106.50,643.40,128.90 +SOUTH INTERIOR KARNATAKA,1996,1.10,0.20,1.50,49.80,52.80,204.40,187.30,187.40,188.30,132.90,10.90,27.50,1044.00,1.30,104.00,767.50,171.20 +SOUTH INTERIOR KARNATAKA,1997,4.90,0.10,26.20,26.00,45.30,178.90,251.70,246.80,108.40,134.40,123.80,33.60,1180.00,4.90,97.50,785.80,291.80 +SOUTH INTERIOR KARNATAKA,1998,0.00,0.00,3.50,31.60,47.00,155.60,278.40,205.50,175.80,148.90,55.00,11.70,1113.30,0.10,82.20,815.40,215.70 +SOUTH INTERIOR KARNATAKA,1999,0.10,4.60,1.50,42.20,131.20,129.50,289.60,138.80,108.00,271.90,28.80,3.50,1149.60,4.70,174.90,665.90,304.20 +SOUTH INTERIOR KARNATAKA,2000,1.40,15.50,0.30,46.30,59.30,167.50,200.50,300.60,183.50,206.20,14.10,12.10,1207.20,16.90,105.90,852.10,232.30 +SOUTH INTERIOR KARNATAKA,2001,0.50,1.10,1.70,90.60,30.40,127.20,168.20,152.00,189.90,122.70,40.00,2.10,926.30,1.60,122.70,637.20,164.80 +SOUTH INTERIOR KARNATAKA,2002,2.00,11.40,2.30,20.60,77.20,131.90,92.60,155.10,74.90,168.40,18.80,0.60,755.80,13.40,100.00,454.50,187.80 +SOUTH INTERIOR KARNATAKA,2003,0.10,4.20,20.10,36.40,9.60,118.20,162.50,152.20,51.90,192.40,11.50,3.60,762.80,4.30,66.10,484.90,207.40 +SOUTH INTERIOR KARNATAKA,2004,9.10,12.80,16.40,62.20,180.20,196.60,191.70,211.10,117.50,101.50,24.00,10.40,1133.40,21.90,258.70,716.80,136.00 +SOUTH INTERIOR KARNATAKA,2005,7.20,3.90,3.20,76.00,74.70,138.70,333.50,233.20,145.50,241.80,56.30,5.30,1319.30,11.10,153.80,851.00,303.50 +SOUTH INTERIOR KARNATAKA,2006,0.20,0.10,35.40,24.70,127.10,183.70,226.70,172.90,112.00,61.70,84.90,1.10,1030.50,0.30,187.20,695.30,147.70 +SOUTH INTERIOR KARNATAKA,2007,0.10,0.30,0.90,39.80,76.70,216.70,267.20,245.50,198.50,152.50,18.20,14.60,1231.00,0.40,117.50,927.90,185.30 +SOUTH INTERIOR KARNATAKA,2008,0.80,20.70,108.90,24.90,66.30,149.80,203.40,269.80,141.40,117.10,32.30,5.20,1140.60,21.50,200.10,764.40,154.60 +SOUTH INTERIOR KARNATAKA,2009,0.10,0.10,27.30,25.40,101.30,101.60,324.70,153.20,247.90,98.20,55.70,22.90,1158.40,0.20,153.90,827.50,176.80 +SOUTH INTERIOR KARNATAKA,2010,7.90,1.70,5.60,71.10,94.90,129.10,235.10,228.10,150.70,129.60,183.50,2.50,1239.70,9.50,171.60,743.10,315.50 +SOUTH INTERIOR KARNATAKA,2011,2.10,12.40,12.40,80.20,83.50,177.10,202.40,199.50,111.20,144.80,56.70,5.00,1087.40,14.50,176.10,690.20,206.50 +SOUTH INTERIOR KARNATAKA,2012,4.60,5.50,8.10,99.00,45.60,81.80,144.70,236.50,100.60,62.80,82.60,6.20,877.80,10.10,152.60,563.50,151.60 +SOUTH INTERIOR KARNATAKA,2013,0.50,10.10,11.70,34.60,95.60,176.20,307.40,151.70,191.80,103.70,24.90,2.40,1110.70,10.60,142.00,827.10,131.00 +SOUTH INTERIOR KARNATAKA,2014,0.40,2.40,17.70,46.70,130.50,106.80,271.60,254.60,161.60,152.90,20.20,18.70,1184.20,2.80,195.00,794.50,191.80 +SOUTH INTERIOR KARNATAKA,2015,1.70,0.20,24.40,80.50,125.30,218.70,112.00,136.60,164.50,106.10,138.10,4.40,1112.50,1.90,230.20,631.80,248.60 +KERALA,1901,28.70,44.70,51.60,160.00,174.70,824.60,743.00,357.50,197.70,266.90,350.80,48.40,3248.60,73.40,386.20,2122.80,666.10 +KERALA,1902,6.70,2.60,57.30,83.90,134.50,390.90,1205.00,315.80,491.60,358.40,158.30,121.50,3326.60,9.30,275.70,2403.40,638.20 +KERALA,1903,3.20,18.60,3.10,83.60,249.70,558.60,1022.50,420.20,341.80,354.10,157.00,59.00,3271.20,21.70,336.30,2343.00,570.10 +KERALA,1904,23.70,3.00,32.20,71.50,235.70,1098.20,725.50,351.80,222.70,328.10,33.90,3.30,3129.70,26.70,339.40,2398.20,365.30 +KERALA,1905,1.20,22.30,9.40,105.90,263.30,850.20,520.50,293.60,217.20,383.50,74.40,0.20,2741.60,23.40,378.50,1881.50,458.10 +KERALA,1906,26.70,7.40,9.90,59.40,160.80,414.90,954.20,442.80,131.20,251.70,163.10,86.00,2708.00,34.10,230.00,1943.10,500.80 +KERALA,1907,18.80,4.80,55.70,170.80,101.40,770.90,760.40,981.50,225.00,309.70,219.10,52.80,3671.10,23.70,328.00,2737.80,581.70 +KERALA,1908,8.00,20.80,38.20,102.90,142.60,592.60,902.20,352.90,175.90,253.30,47.90,11.00,2648.30,28.80,283.70,2023.60,312.20 +KERALA,1909,54.10,11.80,61.30,93.80,473.20,704.70,782.30,258.00,195.40,212.10,171.10,32.30,3050.20,65.90,628.30,1940.40,415.50 +KERALA,1910,2.70,25.70,23.30,124.50,148.80,680.00,484.10,473.80,248.60,356.60,280.40,0.10,2848.60,28.40,296.70,1886.50,637.00 +KERALA,1911,3.00,4.30,18.20,51.00,180.60,990.00,705.30,178.60,60.20,302.30,145.70,87.60,2726.70,7.30,249.70,1934.00,535.70 +KERALA,1912,1.90,15.00,11.20,122.70,217.30,948.20,833.60,534.40,136.80,469.50,138.70,22.00,3451.30,16.90,351.10,2453.10,630.20 +KERALA,1913,3.10,5.20,20.70,75.70,198.80,541.70,763.20,247.20,176.90,422.50,109.90,45.80,2610.80,8.30,295.20,1729.00,578.30 +KERALA,1914,0.70,6.80,18.10,32.70,164.20,565.30,857.70,402.20,241.00,374.40,100.90,135.20,2899.10,7.60,215.00,2066.10,610.50 +KERALA,1915,16.90,23.50,42.70,106.00,154.50,696.10,775.60,298.80,396.60,196.60,302.50,14.90,3024.50,40.40,303.10,2167.00,514.00 +KERALA,1916,0.00,7.80,22.00,82.40,199.00,920.20,513.90,396.90,339.30,320.70,134.30,8.90,2945.30,7.80,303.40,2170.20,463.90 +KERALA,1917,2.90,47.60,79.40,38.10,122.90,703.70,342.70,335.10,470.30,264.10,256.40,41.60,2704.80,50.50,240.40,1851.70,562.10 +KERALA,1918,42.90,5.00,32.80,51.30,683.00,464.30,167.50,376.00,96.40,233.20,295.40,54.10,2501.90,47.90,767.00,1104.30,582.60 +KERALA,1919,43.00,6.10,33.90,65.90,247.00,636.80,648.00,484.20,255.90,249.20,280.10,53.00,3003.30,49.20,346.80,2025.00,582.30 +KERALA,1920,35.20,5.50,24.10,172.00,87.70,964.30,940.80,235.00,178.00,350.10,302.30,8.20,3303.10,40.60,283.70,2318.20,660.60 +KERALA,1921,43.00,4.70,15.00,171.30,104.10,489.10,639.80,641.90,156.70,302.40,136.20,15.80,2719.90,47.80,290.30,1927.50,454.30 +KERALA,1922,30.50,21.40,16.30,89.60,293.60,663.10,1025.10,320.60,222.40,266.30,293.70,25.10,3267.60,51.90,399.40,2231.20,585.10 +KERALA,1923,24.70,0.70,78.90,43.50,80.00,722.50,1008.70,943.00,254.30,203.10,83.90,41.60,3484.70,25.30,202.30,2928.40,328.60 +KERALA,1924,19.30,2.90,66.60,111.00,185.40,1011.70,1526.50,624.00,289.10,176.50,162.90,50.40,4226.40,22.20,363.00,3451.30,389.90 +KERALA,1925,4.10,16.50,76.90,93.40,258.20,688.80,593.50,554.10,158.80,295.40,223.70,98.80,3062.10,20.50,428.50,1995.20,617.90 +KERALA,1926,28.60,5.80,23.10,55.80,222.60,563.90,885.20,536.00,322.70,216.70,88.80,16.20,2965.40,34.40,301.50,2307.80,321.70 +KERALA,1927,18.80,35.30,49.60,86.50,265.40,720.20,888.20,315.00,335.60,135.80,137.60,6.80,2994.70,54.10,401.40,2258.90,280.20 +KERALA,1928,12.70,65.90,51.30,121.10,81.90,590.70,420.60,553.20,75.90,321.50,155.20,52.70,2502.80,78.60,254.30,1640.40,529.40 +KERALA,1929,12.80,29.80,58.90,210.70,148.00,946.60,844.00,293.90,268.90,350.40,158.20,39.40,3361.60,42.60,417.60,2353.50,548.00 +KERALA,1930,10.80,10.80,39.00,102.70,404.90,633.10,401.70,273.40,411.50,433.90,207.00,89.20,3018.00,21.60,546.50,1719.70,730.20 +KERALA,1931,3.30,0.30,19.20,126.90,131.70,541.70,653.90,1199.20,163.20,149.30,164.30,106.50,3259.60,3.60,277.80,2558.00,420.10 +KERALA,1932,0.10,19.30,28.60,113.00,646.50,341.00,716.40,423.20,317.30,543.20,223.20,31.30,3403.00,19.40,788.10,1797.80,797.70 +KERALA,1933,1.00,9.30,36.90,139.50,738.80,859.30,773.40,479.50,469.70,397.00,126.10,42.30,4072.90,10.30,915.20,2581.90,565.50 +KERALA,1934,74.50,1.70,47.70,92.40,106.70,852.90,415.00,337.20,48.40,335.90,93.40,4.90,2410.70,76.20,246.80,1653.50,434.20 +KERALA,1935,23.90,8.30,18.10,120.70,56.60,431.30,687.30,280.90,283.30,403.80,153.00,30.90,2498.20,32.30,195.40,1682.90,587.60 +KERALA,1936,1.20,16.50,116.00,34.00,466.50,620.80,672.10,367.90,286.70,231.70,211.10,18.60,3043.30,17.70,616.60,1947.50,461.50 +KERALA,1937,6.50,21.20,58.70,175.50,137.10,485.60,970.50,281.20,139.80,401.90,121.00,19.10,2818.20,27.70,371.30,1877.10,542.00 +KERALA,1938,0.30,79.00,53.30,164.50,179.60,681.60,648.60,287.90,223.20,223.70,69.50,22.90,2634.10,79.40,397.30,1841.30,316.10 +KERALA,1939,13.60,3.60,24.90,172.80,105.10,625.80,749.60,459.90,134.10,339.80,298.10,10.20,2937.50,17.20,302.80,1969.40,648.10 +KERALA,1940,0.60,1.50,3.80,126.50,217.40,606.40,877.30,610.80,68.20,257.70,287.50,60.10,3117.80,2.10,347.60,2162.70,605.30 +KERALA,1941,15.90,4.60,12.70,101.90,417.50,797.60,517.90,458.50,257.90,221.60,220.50,84.60,3111.10,20.50,532.00,2031.80,526.70 +KERALA,1942,2.40,4.70,23.20,180.30,191.90,813.60,828.80,329.30,99.80,374.40,84.70,117.90,3050.90,7.00,395.40,2071.40,577.00 +KERALA,1943,83.50,14.60,38.40,107.50,478.40,794.50,831.60,183.30,257.60,427.20,223.40,24.30,3464.20,98.10,624.30,2067.00,674.90 +KERALA,1944,6.40,26.60,61.60,61.60,212.70,498.90,614.10,230.70,155.00,289.00,244.10,89.20,2490.00,33.00,336.00,1498.70,622.30 +KERALA,1945,4.40,9.90,12.70,104.10,53.40,549.80,704.00,351.80,110.90,253.80,259.50,18.00,2432.40,14.30,170.20,1716.50,531.40 +KERALA,1946,1.80,5.40,108.40,139.80,83.00,919.00,671.70,695.60,199.40,266.10,273.00,202.30,3565.50,7.30,331.20,2485.70,741.30 +KERALA,1947,22.20,27.30,98.00,142.20,85.70,556.10,669.30,739.60,394.50,183.70,32.40,47.00,2998.10,49.50,325.90,2359.50,263.20 +KERALA,1948,43.00,8.30,48.20,125.00,212.30,910.20,619.00,487.90,166.60,183.90,215.60,19.20,3039.20,51.30,385.50,2183.70,418.70 +KERALA,1949,0.60,1.80,4.50,98.10,440.00,536.30,758.70,445.20,354.50,229.10,71.90,1.80,2942.60,2.40,542.60,2094.70,302.80 +KERALA,1950,0.10,53.70,31.10,68.50,242.00,638.30,905.70,387.30,411.60,250.40,149.20,8.80,3146.60,53.80,341.50,2342.90,408.40 +KERALA,1951,6.60,6.50,41.60,175.90,148.50,774.10,544.60,190.60,313.80,250.60,229.60,23.20,2705.50,13.10,366.00,1823.00,503.50 +KERALA,1952,5.20,48.20,20.80,112.20,214.60,576.70,430.00,413.60,57.40,339.60,49.60,66.90,2334.80,53.40,347.60,1477.70,456.10 +KERALA,1953,13.10,22.60,18.50,132.40,55.40,340.50,1027.60,356.40,100.50,410.50,62.20,5.10,2544.90,35.70,206.30,1825.10,477.80 +KERALA,1954,23.50,2.80,90.60,136.90,179.50,798.30,640.50,467.00,201.60,303.10,31.60,62.50,2938.00,26.30,407.00,2107.40,397.20 +KERALA,1955,4.20,6.30,28.20,125.90,544.20,782.40,392.80,236.00,438.50,378.20,178.10,19.80,3134.70,10.50,698.30,1849.70,576.10 +KERALA,1956,7.90,11.70,15.10,151.60,351.30,755.40,466.80,319.50,178.40,353.30,178.20,9.10,2798.40,19.60,518.00,1720.10,540.60 +KERALA,1957,1.20,16.00,25.70,70.20,381.20,872.00,835.30,358.80,41.30,280.10,192.50,28.90,3103.30,17.20,477.20,2107.40,501.50 +KERALA,1958,4.40,19.30,57.30,135.10,353.50,713.30,622.70,526.60,86.10,191.00,206.10,7.70,2923.10,23.70,545.90,1948.70,404.80 +KERALA,1959,3.00,21.40,6.30,150.70,347.20,872.80,1155.70,397.30,405.50,200.40,151.90,34.00,3746.00,24.30,504.20,2831.20,386.30 +KERALA,1960,9.40,8.40,44.40,206.60,540.00,480.30,750.90,336.80,371.20,255.90,358.00,23.70,3385.50,17.80,791.00,1939.20,637.50 +KERALA,1961,13.70,31.30,11.40,94.10,500.50,1005.20,1146.50,678.30,399.30,274.20,85.90,17.50,4257.80,45.00,606.00,3229.30,377.60 +KERALA,1962,28.40,54.70,39.60,95.10,472.40,244.90,951.10,510.70,394.90,475.60,31.50,76.90,3375.80,83.10,607.10,2101.60,584.00 +KERALA,1963,30.20,24.80,69.80,96.30,157.10,393.30,720.20,511.00,223.90,282.60,93.40,48.40,2651.10,55.00,323.20,1848.50,424.40 +KERALA,1964,1.10,7.80,67.20,83.30,94.80,379.40,754.20,548.00,398.20,325.70,191.70,17.80,2869.10,8.80,245.20,2079.80,535.20 +KERALA,1965,9.10,0.90,28.30,109.80,214.50,597.70,465.10,296.10,150.10,183.70,131.70,155.50,2342.40,10.00,352.60,1508.90,470.90 +KERALA,1966,3.00,6.90,67.70,167.40,95.20,496.20,601.90,202.10,293.20,392.30,245.40,50.50,2621.70,9.90,330.30,1593.30,688.20 +KERALA,1967,14.30,0.10,24.60,70.10,244.90,541.70,741.40,508.40,145.80,172.70,74.00,31.10,2569.10,14.40,339.60,1937.30,277.80 +KERALA,1968,7.30,30.50,89.20,133.30,90.00,696.40,1308.90,380.70,325.40,178.90,119.40,32.70,3392.70,37.80,312.50,2711.40,331.00 +KERALA,1969,2.70,6.40,19.40,117.20,227.40,550.50,818.80,284.80,216.40,235.60,119.40,66.30,2665.00,9.10,364.00,1870.60,421.30 +KERALA,1970,12.90,17.60,25.80,132.70,289.10,535.30,558.10,554.80,212.50,278.30,80.50,5.70,2703.50,30.50,447.70,1860.70,364.60 +KERALA,1971,31.60,18.50,20.00,113.00,317.50,889.60,648.60,385.20,331.20,220.90,38.30,62.30,3076.80,50.10,450.60,2254.60,321.50 +KERALA,1972,2.60,7.50,2.50,87.50,436.00,401.80,714.40,294.90,185.70,351.50,140.50,114.30,2739.40,10.20,526.00,1596.80,606.40 +KERALA,1973,0.00,0.30,12.30,131.50,119.90,617.00,583.50,487.50,61.30,260.80,84.50,53.80,2412.50,0.30,263.80,1749.20,399.20 +KERALA,1974,1.60,5.40,16.00,128.00,221.50,266.90,1004.20,533.60,383.60,142.10,61.00,3.60,2767.40,7.00,365.60,2188.20,206.60 +KERALA,1975,5.20,21.40,63.40,123.80,162.20,864.40,531.30,675.90,457.70,368.90,204.30,19.90,3498.40,26.60,349.30,2529.30,593.10 +KERALA,1976,0.10,1.50,21.00,134.50,75.80,196.80,641.50,342.60,116.20,221.30,286.70,30.80,2068.80,1.60,231.30,1297.10,538.80 +KERALA,1977,1.10,15.70,28.30,102.30,306.40,599.60,753.30,234.20,201.30,437.00,361.70,6.70,3047.60,16.80,436.90,1788.50,805.40 +KERALA,1978,3.30,14.70,31.40,73.90,396.80,758.10,686.70,516.80,119.40,171.00,365.60,39.00,3176.70,18.00,502.10,2081.10,575.60 +KERALA,1979,2.40,30.00,11.70,42.00,127.70,582.90,662.20,383.70,211.70,163.80,261.70,23.30,2503.00,32.40,181.30,1840.50,448.80 +KERALA,1980,0.00,0.90,20.80,114.80,105.30,745.90,754.00,438.10,139.50,282.30,162.30,39.50,2803.40,0.90,240.90,2077.50,484.10 +KERALA,1981,7.00,6.80,28.50,75.90,166.30,912.40,489.80,495.60,376.60,265.00,138.60,43.30,3005.90,13.80,270.80,2274.40,446.90 +KERALA,1982,0.70,0.10,21.90,60.40,148.20,612.20,511.50,495.00,70.60,164.40,127.50,10.80,2223.30,0.80,230.60,1689.20,302.70 +KERALA,1983,0.20,1.50,0.90,13.10,76.00,322.80,583.20,579.90,421.10,136.20,116.50,69.10,2320.30,1.70,89.90,1906.90,321.80 +KERALA,1984,36.80,60.00,95.30,162.10,84.60,842.60,653.60,284.40,171.10,286.00,67.70,18.00,2762.10,96.80,342.00,1951.60,371.70 +KERALA,1985,61.20,6.10,29.30,66.60,254.20,828.70,388.90,315.30,117.60,204.00,74.90,44.00,2390.50,67.30,350.00,1650.40,322.80 +KERALA,1986,5.60,18.70,11.20,63.10,126.70,597.90,324.80,340.30,235.40,165.50,194.70,9.50,2093.20,24.30,200.90,1498.40,369.60 +KERALA,1987,0.60,0.80,4.30,57.20,108.30,572.60,221.00,396.60,157.00,272.10,216.00,131.10,2137.60,1.40,169.70,1347.20,619.20 +KERALA,1988,0.80,17.50,38.10,177.60,157.20,511.30,502.80,379.80,451.70,68.50,67.00,31.10,2403.50,18.30,372.90,1845.70,166.60 +KERALA,1989,10.30,0.00,30.10,141.50,169.40,657.50,450.70,285.50,271.10,308.00,92.90,5.60,2422.70,10.30,341.10,1664.70,406.50 +KERALA,1990,14.90,4.80,18.00,41.80,488.50,528.60,635.40,370.80,103.30,323.20,158.80,5.20,2693.10,19.70,548.30,1638.00,487.20 +KERALA,1991,10.90,4.40,33.20,97.00,113.40,1096.10,905.50,465.50,48.50,307.80,99.90,2.30,3184.50,15.30,243.60,2515.60,410.00 +KERALA,1992,2.40,0.90,0.10,43.00,218.40,819.30,767.80,508.00,297.50,290.70,287.60,3.70,3239.50,3.40,261.60,2392.50,582.10 +KERALA,1993,0.00,17.80,20.10,66.50,159.00,657.10,776.10,301.90,88.00,431.20,153.80,46.20,2717.70,17.80,245.60,1823.10,631.30 +KERALA,1994,24.30,27.10,18.10,154.50,141.30,845.00,955.50,479.90,212.60,428.40,117.60,6.50,3410.80,51.40,313.90,2493.00,552.50 +KERALA,1995,10.30,6.50,37.30,134.90,355.60,493.40,702.50,457.30,280.00,198.30,182.60,0.10,2858.80,16.80,527.80,1933.20,380.90 +KERALA,1996,2.80,9.10,14.40,124.30,74.30,572.40,696.00,327.40,342.70,294.10,89.90,62.50,2610.00,11.80,213.00,1938.50,446.60 +KERALA,1997,2.10,1.50,36.10,60.60,133.60,544.20,970.50,536.00,292.20,288.90,298.40,88.40,3252.40,3.70,230.20,2342.90,675.70 +KERALA,1998,6.00,2.10,8.10,61.10,151.60,732.50,641.40,371.80,517.60,444.80,135.00,79.40,3151.50,8.00,220.80,2263.40,659.30 +KERALA,1999,1.80,23.80,21.40,111.60,453.20,607.30,700.40,266.30,88.00,567.90,68.10,4.90,2914.60,25.50,586.20,1661.90,640.90 +KERALA,2000,11.70,57.80,21.50,96.30,124.50,633.80,343.20,566.50,195.80,214.20,78.10,69.10,2412.60,69.50,242.30,1739.40,361.50 +KERALA,2001,16.50,28.30,7.00,238.00,238.60,715.30,598.50,361.30,216.80,319.60,181.00,10.10,2931.10,44.70,483.70,1892.00,510.70 +KERALA,2002,4.70,8.70,35.70,117.30,330.80,503.10,318.70,438.20,99.00,511.70,137.50,2.10,2507.40,13.30,483.70,1359.00,651.30 +KERALA,2003,0.70,50.90,82.10,134.40,91.00,566.70,532.00,350.30,93.60,407.00,76.40,9.70,2394.90,51.60,307.50,1542.60,493.10 +KERALA,2004,2.40,8.10,37.90,113.20,610.90,673.40,385.40,417.90,192.80,320.60,120.70,2.70,2886.10,10.50,762.00,1669.50,444.00 +KERALA,2005,19.80,7.00,25.30,205.90,134.80,619.20,832.70,291.00,414.70,240.10,184.30,56.40,3031.10,26.80,366.00,2157.60,480.70 +KERALA,2006,8.10,0.50,90.70,65.30,521.20,482.40,804.00,432.60,474.80,376.40,162.80,1.80,3420.60,8.60,677.20,2193.80,541.00 +KERALA,2007,0.50,5.60,7.30,138.50,192.70,705.90,966.30,489.60,526.70,357.20,87.40,11.90,3489.60,6.10,338.40,2688.50,456.50 +KERALA,2008,0.80,30.30,217.20,108.40,81.20,469.90,505.10,349.00,347.00,343.40,55.40,17.00,2524.50,31.10,406.70,1670.90,415.70 +KERALA,2009,3.30,1.50,62.60,69.00,191.60,438.20,924.90,269.30,326.50,205.20,274.40,44.20,2810.60,4.80,323.10,1958.90,523.80 +KERALA,2010,18.60,1.00,31.40,138.90,190.60,667.50,629.00,356.00,275.60,441.40,335.10,46.80,3131.80,19.60,360.90,1928.00,823.30 +KERALA,2011,20.50,45.70,24.10,165.20,124.20,788.50,536.80,492.70,391.20,227.20,169.70,49.50,3035.10,66.20,313.50,2209.10,446.30 +KERALA,2012,7.40,11.00,21.00,171.10,95.30,430.30,362.60,501.60,241.10,187.50,112.90,9.40,2151.10,18.30,287.40,1535.60,309.80 +KERALA,2013,3.90,40.10,49.90,49.30,119.30,1042.70,830.20,369.70,318.60,259.90,154.90,17.00,3255.40,43.90,218.50,2561.20,431.80 +KERALA,2014,4.60,10.30,17.90,95.70,251.00,454.40,677.80,733.90,298.80,355.50,99.50,47.20,3046.40,14.90,364.50,2164.80,502.10 +KERALA,2015,3.10,5.80,50.10,214.10,201.80,563.60,406.00,252.20,292.90,308.10,223.60,79.40,2600.60,8.90,465.90,1514.70,611.10 +LAKSHADWEEP,1901,22.60,86.40,114.80,263.80,37.30,459.00,0.00,0.00,46.70,183.70,229.90,15.00,1459.20,109.00,415.90,505.70,428.60 +LAKSHADWEEP,1902,99.30,9.60,32.60,40.40,179.10,374.20,413.30,170.00,214.30,384.20,192.80,49.00,2158.80,108.90,252.10,1171.80,626.00 +LAKSHADWEEP,1903,63.50,95.00,0.00,29.50,144.10,212.40,261.80,202.00,292.10,79.10,NA,NA,NA,158.50,173.60,968.30,NA +LAKSHADWEEP,1904,0.00,0.00,13.50,13.20,143.30,261.30,256.00,38.90,219.90,153.60,8.30,68.90,1176.90,0.00,170.00,776.10,230.80 +LAKSHADWEEP,1905,62.40,0.00,0.00,0.00,166.70,400.70,68.70,377.50,107.50,232.10,159.30,0.00,1574.90,62.40,166.70,954.40,391.40 +LAKSHADWEEP,1906,17.80,0.00,24.40,33.80,213.00,465.00,348.60,260.50,25.90,252.30,106.50,63.80,1811.60,17.80,271.20,1100.00,422.60 +LAKSHADWEEP,1907,60.60,49.30,0.00,123.50,77.00,241.10,199.50,165.60,25.80,176.30,292.70,47.40,1458.80,109.90,200.50,632.00,516.40 +LAKSHADWEEP,1908,18.00,9.20,5.60,162.00,150.90,471.70,184.90,73.90,437.00,251.20,98.00,96.70,1959.10,27.20,318.50,1167.50,445.90 +LAKSHADWEEP,1909,70.40,0.00,34.20,92.40,48.40,204.00,122.40,368.80,105.10,340.50,45.00,32.30,1463.50,70.40,175.00,800.30,417.80 +LAKSHADWEEP,1910,2.30,0.00,32.80,34.30,201.10,340.40,155.20,292.40,301.80,317.10,171.80,0.00,1849.20,2.30,268.20,1089.80,488.90 +LAKSHADWEEP,1911,22.40,0.00,0.00,0.00,104.20,425.30,245.50,60.30,67.90,316.10,276.00,170.00,1687.70,22.40,104.20,799.00,762.10 +LAKSHADWEEP,1912,11.40,54.60,8.10,118.60,165.10,417.80,171.70,152.20,68.90,267.80,126.20,92.50,1654.90,66.00,291.80,810.60,486.50 +LAKSHADWEEP,1913,77.00,1.80,50.30,53.40,244.00,251.80,215.50,235.50,38.60,154.30,111.40,84.90,1518.50,78.80,347.70,741.40,350.60 +LAKSHADWEEP,1914,10.40,0.00,53.30,10.20,120.70,377.10,347.50,220.40,26.50,437.00,172.00,258.90,2034.00,10.40,184.20,971.50,867.90 +LAKSHADWEEP,1915,0.00,0.00,22.90,50.50,143.30,183.40,461.60,76.00,222.10,151.60,155.80,78.30,1545.50,0.00,216.70,943.10,385.70 +LAKSHADWEEP,1916,0.30,13.20,32.00,28.70,130.50,327.60,445.90,31.80,275.40,85.20,17.50,10.40,1398.50,13.50,191.20,1080.70,113.10 +LAKSHADWEEP,1917,NA,68.60,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +LAKSHADWEEP,1919,74.40,1.30,39.40,25.60,249.80,352.10,367.40,175.60,196.90,181.00,150.20,112.80,1926.50,75.70,314.80,1092.00,444.00 +LAKSHADWEEP,1920,82.60,NA,35.60,49.40,203.10,530.00,134.20,116.90,247.60,258.80,359.60,33.10,NA,NA,288.10,1028.70,651.50 +LAKSHADWEEP,1921,37.60,0.00,16.80,82.40,156.30,326.20,163.70,235.50,NA,170.30,110.30,93.00,NA,37.60,255.50,NA,373.60 +LAKSHADWEEP,1922,17.80,56.70,0.00,214.10,112.80,232.90,258.00,190.40,425.20,152.70,210.00,57.90,1928.50,74.50,326.90,1106.50,420.60 +LAKSHADWEEP,1923,43.70,1.60,25.00,0.00,13.50,372.80,314.60,198.90,189.30,149.70,65.20,197.90,1572.20,45.30,38.50,1075.60,412.80 +LAKSHADWEEP,1924,23.80,1.00,4.70,57.60,224.90,567.30,339.20,396.40,236.80,96.50,15.20,8.60,1972.00,24.80,287.20,1539.70,120.30 +LAKSHADWEEP,1925,2.30,7.50,15.50,32.60,244.20,327.50,192.30,295.30,63.50,109.30,144.90,242.00,1676.90,9.80,292.30,878.60,496.20 +LAKSHADWEEP,1926,262.80,16.00,33.60,60.20,335.80,392.00,303.90,118.20,97.20,83.40,119.30,13.80,1836.20,278.80,429.60,911.30,216.50 +LAKSHADWEEP,1927,108.20,14.70,40.70,40.40,229.00,181.20,NA,42.00,256.00,NA,NA,NA,NA,122.90,310.10,NA,NA +LAKSHADWEEP,1928,42.50,66.60,NA,1.40,212.30,206.90,268.80,174.90,53.80,124.10,116.30,139.30,NA,109.10,NA,704.40,379.70 +LAKSHADWEEP,1929,6.10,66.60,49.50,91.00,248.00,259.30,452.70,34.20,186.30,100.20,NA,28.80,NA,72.70,388.50,932.50,NA +LAKSHADWEEP,1930,14.00,24.60,14.20,0.00,110.60,277.50,115.50,186.40,193.00,170.60,79.60,72.40,1258.40,38.60,124.80,772.40,322.60 +LAKSHADWEEP,1931,NA,0.00,0.00,28.50,194.60,262.00,290.40,347.90,167.10,102.00,118.30,96.10,NA,NA,223.10,1067.40,316.40 +LAKSHADWEEP,1932,0.00,0.20,4.80,0.40,372.60,239.40,435.00,286.70,63.50,256.30,178.10,56.70,1893.70,0.20,377.80,1024.60,491.10 +LAKSHADWEEP,1933,6.10,34.50,16.50,44.50,660.80,200.30,366.00,334.80,390.00,157.90,85.10,17.60,2314.10,40.60,721.80,1291.10,260.60 +LAKSHADWEEP,1934,122.30,5.70,5.10,30.80,37.40,305.10,197.10,71.40,76.30,161.50,74.90,0.30,1087.90,128.00,73.30,649.90,236.70 +LAKSHADWEEP,1935,9.20,7.70,0.00,41.10,15.80,351.80,309.10,277.50,136.40,142.80,145.40,92.40,1529.20,16.90,56.90,1074.80,380.60 +LAKSHADWEEP,1936,0.50,1.00,41.10,18.80,354.80,464.20,177.10,161.10,219.10,70.10,177.10,59.20,1744.10,1.50,414.70,1021.50,306.40 +LAKSHADWEEP,1937,8.30,2.50,1.50,15.80,79.70,371.80,391.00,80.00,101.30,167.90,191.00,32.80,1443.60,10.80,97.00,944.10,391.70 +LAKSHADWEEP,1938,6.80,6.30,8.00,74.00,113.80,145.40,230.30,385.80,132.80,113.30,210.80,120.30,1547.60,13.10,195.80,894.30,444.40 +LAKSHADWEEP,1939,9.00,0.50,0.00,2.50,20.30,412.70,220.10,248.00,47.00,114.60,126.80,5.80,1207.30,9.50,22.80,927.80,247.20 +LAKSHADWEEP,1940,14.80,0.40,0.00,19.20,61.40,292.50,267.20,242.00,36.40,237.70,194.30,40.80,1406.70,15.20,80.60,838.10,472.80 +LAKSHADWEEP,1941,44.40,16.50,2.70,1.00,227.60,213.30,142.00,182.40,138.50,78.10,72.90,44.00,1163.40,60.90,231.30,676.20,195.00 +LAKSHADWEEP,1942,40.00,3.80,15.10,69.10,154.10,539.70,346.60,207.30,90.10,120.50,39.20,160.70,1786.20,43.80,238.30,1183.70,320.40 +LAKSHADWEEP,1943,112.60,57.40,0.00,NA,146.00,422.30,346.00,203.10,154.80,309.30,142.80,55.50,NA,170.00,NA,1126.20,507.60 +LAKSHADWEEP,1944,25.40,67.90,5.80,16.60,174.50,261.40,247.30,99.10,272.60,175.90,234.90,86.70,1668.10,93.30,196.90,880.40,497.50 +LAKSHADWEEP,1945,16.80,1.30,0.00,0.90,54.20,362.00,341.00,148.80,42.80,132.80,155.10,65.60,1321.30,18.10,55.10,894.60,353.50 +LAKSHADWEEP,1946,15.70,1.50,9.50,32.00,NA,NA,NA,NA,NA,NA,NA,NA,NA,17.20,NA,NA,NA +LAKSHADWEEP,1947,20.10,9.10,24.30,140.20,87.90,364.80,303.60,504.60,168.80,74.20,28.40,29.90,1755.90,29.20,252.40,1341.80,132.50 +LAKSHADWEEP,1948,70.00,5.70,0.20,17.20,121.00,278.50,159.00,124.80,39.50,356.70,118.50,34.20,1325.30,75.70,138.40,601.80,509.40 +LAKSHADWEEP,1949,2.20,1.00,0.00,2.40,372.50,380.50,476.70,242.50,188.50,80.10,NA,8.80,NA,3.20,374.90,1288.20,NA +LAKSHADWEEP,1950,8.50,38.70,25.10,69.90,158.60,203.10,405.00,266.50,135.30,52.70,31.00,99.70,1494.10,47.20,253.60,1009.90,183.40 +LAKSHADWEEP,1951,24.30,28.90,35.30,129.90,108.40,445.10,524.20,43.70,156.00,68.60,103.60,47.30,1715.30,53.20,273.60,1169.00,219.50 +LAKSHADWEEP,1952,21.30,11.20,0.80,11.60,152.40,343.50,157.90,79.60,38.30,273.00,12.20,22.70,1124.50,32.50,164.80,619.30,307.90 +LAKSHADWEEP,1953,10.40,40.80,9.30,35.00,15.30,205.80,537.00,69.40,125.50,452.40,95.60,9.70,1606.20,51.20,59.60,937.70,557.70 +LAKSHADWEEP,1954,74.10,0.00,14.60,39.80,122.30,375.20,259.50,232.90,123.50,256.20,34.10,23.30,1555.50,74.10,176.70,991.10,313.60 +LAKSHADWEEP,1955,11.40,39.10,0.00,105.40,235.20,345.50,215.40,63.20,302.50,155.90,61.20,13.50,1548.30,50.50,340.60,926.60,230.60 +LAKSHADWEEP,1956,13.60,27.70,1.30,40.80,269.50,356.10,109.80,91.60,148.00,175.60,48.50,4.90,1287.40,41.30,311.60,705.50,229.00 +LAKSHADWEEP,1957,0.90,11.40,34.60,23.70,195.60,309.90,129.10,149.60,47.50,215.20,198.50,31.20,1347.20,12.30,253.90,636.10,444.90 +LAKSHADWEEP,1958,0.20,1.60,0.00,8.00,116.00,269.40,84.50,238.20,54.00,133.40,51.10,36.20,992.60,1.80,124.00,646.10,220.70 +LAKSHADWEEP,1959,15.00,0.00,8.00,51.60,320.50,337.70,205.80,151.20,183.20,183.80,97.80,29.00,1583.60,15.00,380.10,877.90,310.60 +LAKSHADWEEP,1960,29.60,40.00,3.30,85.40,497.10,176.80,257.30,168.40,221.30,169.70,235.90,17.00,1901.80,69.60,585.80,823.80,422.60 +LAKSHADWEEP,1961,60.30,47.40,0.00,31.30,421.10,593.20,297.30,228.20,215.80,148.10,98.80,93.80,2235.30,107.70,452.40,1334.50,340.70 +LAKSHADWEEP,1962,11.10,0.00,0.00,81.50,331.20,149.30,204.50,286.70,201.80,210.90,33.50,76.10,1586.60,11.10,412.70,842.30,320.50 +LAKSHADWEEP,1963,126.70,112.90,6.50,72.60,204.60,233.00,367.00,249.90,121.80,113.50,211.50,82.10,1902.10,239.60,283.70,971.70,407.10 +LAKSHADWEEP,1964,2.50,3.50,5.20,40.40,64.20,376.10,407.00,174.60,342.50,120.90,90.80,24.00,1651.70,6.00,109.80,1300.20,235.70 +LAKSHADWEEP,1965,0.20,7.30,8.30,35.00,162.50,200.60,164.20,267.70,92.40,69.20,77.90,320.60,1405.90,7.50,205.80,724.90,467.70 +LAKSHADWEEP,1966,21.30,0.20,6.20,4.40,34.90,376.70,421.90,158.90,225.40,266.10,158.00,67.50,1741.50,21.50,45.50,1182.90,491.60 +LAKSHADWEEP,1967,7.80,2.70,0.00,0.00,148.30,301.20,380.10,196.90,100.40,92.30,24.50,33.10,1287.30,10.50,148.30,978.60,149.90 +LAKSHADWEEP,1968,8.70,1.80,30.60,45.40,16.60,393.80,439.80,84.10,202.80,46.50,31.40,42.90,1344.40,10.50,92.60,1120.50,120.80 +LAKSHADWEEP,1969,30.00,4.10,0.00,63.30,237.90,125.60,149.00,225.30,95.90,162.30,157.50,165.20,1416.10,34.10,301.20,595.80,485.00 +LAKSHADWEEP,1970,18.70,6.30,13.80,32.30,164.90,322.10,484.40,284.60,228.90,126.90,81.20,18.90,1783.00,25.00,211.00,1320.00,227.00 +LAKSHADWEEP,1971,3.80,12.30,5.40,25.00,271.60,333.90,308.10,349.60,281.80,113.80,63.00,133.10,1901.40,16.10,302.00,1273.40,309.90 +LAKSHADWEEP,1972,0.00,1.10,0.00,11.40,81.30,349.20,197.30,172.50,152.00,219.20,94.20,9.40,1287.60,1.10,92.70,871.00,322.80 +LAKSHADWEEP,1973,0.30,5.80,0.00,40.70,96.30,260.50,299.90,437.90,57.30,150.90,108.10,99.70,1557.40,6.10,137.00,1055.60,358.70 +LAKSHADWEEP,1974,0.00,16.80,0.80,35.40,171.90,277.60,491.60,165.70,258.30,65.90,20.10,7.20,1511.30,16.80,208.10,1193.20,93.20 +LAKSHADWEEP,1975,8.60,0.70,18.40,92.90,282.20,250.00,278.00,348.40,299.50,111.60,155.20,45.00,1890.50,9.30,393.50,1175.90,311.80 +LAKSHADWEEP,1976,10.30,0.00,1.10,72.90,85.30,260.70,329.20,344.10,36.60,189.20,161.60,11.10,1502.10,10.30,159.30,970.60,361.90 +LAKSHADWEEP,1977,1.40,38.20,16.50,27.60,256.80,460.70,337.40,125.30,90.70,248.40,243.80,1.40,1848.20,39.60,300.90,1014.10,493.60 +LAKSHADWEEP,1978,0.20,6.50,0.60,44.10,309.50,568.30,224.70,303.50,105.10,92.10,294.20,18.60,1967.40,6.70,354.20,1201.60,404.90 +LAKSHADWEEP,1979,14.90,1.30,10.00,15.40,23.10,367.10,451.30,127.30,221.10,173.60,378.10,42.20,1825.40,16.20,48.50,1166.80,593.90 +LAKSHADWEEP,1980,7.50,10.50,13.10,19.70,123.50,233.60,185.00,217.60,67.00,122.10,98.50,113.60,1211.70,18.00,156.30,703.20,334.20 +LAKSHADWEEP,1981,1.80,20.40,0.60,22.30,208.60,421.50,168.90,213.30,281.40,167.40,76.60,34.60,1617.40,22.20,231.50,1085.10,278.60 +LAKSHADWEEP,1982,1.60,0.40,0.60,0.40,106.80,321.60,254.50,326.10,121.30,70.70,178.60,9.40,1392.00,2.00,107.80,1023.50,258.70 +LAKSHADWEEP,1983,1.40,0.00,0.00,0.20,113.50,215.00,277.00,375.00,219.80,77.60,71.20,52.50,1403.20,1.40,113.70,1086.80,201.30 +LAKSHADWEEP,1984,71.10,114.90,96.70,65.10,46.70,318.90,271.50,124.90,83.10,218.30,155.40,25.00,1591.60,186.00,208.50,798.40,398.70 +LAKSHADWEEP,1985,6.40,0.00,27.40,11.10,182.90,326.10,152.10,203.00,206.40,42.00,62.30,83.70,1303.40,6.40,221.40,887.60,188.00 +LAKSHADWEEP,1986,12.40,3.00,25.30,6.50,102.10,399.20,193.30,218.30,179.90,128.60,147.80,49.50,1465.90,15.40,133.90,990.70,325.90 +LAKSHADWEEP,1987,1.90,1.50,0.00,16.50,72.90,389.30,29.40,284.70,183.40,133.00,47.70,128.30,1288.60,3.40,89.40,886.80,309.00 +LAKSHADWEEP,1988,0.80,7.00,0.90,54.00,142.80,352.50,293.60,240.90,240.90,28.90,82.70,5.80,1450.80,7.80,197.70,1127.90,117.40 +LAKSHADWEEP,1989,20.60,0.00,4.40,93.00,106.70,473.50,387.50,167.30,216.30,172.40,69.20,3.50,1714.40,20.60,204.10,1244.60,245.10 +LAKSHADWEEP,1990,38.90,0.30,21.40,0.00,191.10,181.60,334.00,123.50,98.90,160.40,155.40,5.00,1310.50,39.20,212.50,738.00,320.80 +LAKSHADWEEP,1991,12.30,0.00,18.70,12.30,68.00,604.30,241.10,253.80,45.70,222.70,75.50,28.60,1583.00,12.30,99.00,1144.90,326.80 +LAKSHADWEEP,1992,4.00,0.10,0.00,3.30,128.10,346.60,363.00,373.30,95.10,120.40,69.30,31.70,1534.90,4.10,131.40,1178.00,221.40 +LAKSHADWEEP,1993,1.20,0.50,0.20,0.20,56.50,276.10,346.70,154.40,161.00,131.60,280.50,40.80,1449.70,1.70,56.90,938.20,452.90 +LAKSHADWEEP,1994,12.40,66.60,34.80,88.80,78.90,361.10,240.20,219.70,76.20,213.50,153.70,1.20,1547.10,79.00,202.50,897.20,368.40 +LAKSHADWEEP,1995,131.30,18.50,0.30,315.40,179.60,286.00,486.70,384.80,71.80,81.00,72.20,3.30,2030.90,149.80,495.30,1229.30,156.50 +LAKSHADWEEP,1996,44.70,1.10,1.60,17.40,50.00,427.10,335.30,197.30,230.40,109.00,60.50,131.60,1606.00,45.80,69.00,1190.10,301.10 +LAKSHADWEEP,1997,2.20,0.10,4.90,33.80,62.30,307.00,459.60,216.80,144.00,213.50,200.80,119.70,1764.70,2.30,101.00,1127.40,534.00 +LAKSHADWEEP,1998,52.00,0.00,1.80,40.30,68.20,382.00,388.80,196.70,274.70,184.80,144.10,253.50,1986.90,52.00,110.30,1242.20,582.40 +LAKSHADWEEP,1999,47.80,2.50,18.30,20.60,416.70,279.60,459.40,133.80,73.40,305.00,51.20,49.00,1857.30,50.30,455.60,946.20,405.20 +LAKSHADWEEP,2000,83.30,18.90,3.40,47.90,204.60,225.40,95.50,319.90,164.50,141.40,56.30,11.00,1372.10,102.20,255.90,805.30,208.70 +LAKSHADWEEP,2001,4.40,20.40,0.00,104.60,187.30,283.90,198.90,144.30,213.50,105.20,101.50,16.60,1380.60,24.80,291.90,840.60,223.30 +LAKSHADWEEP,2002,10.80,16.80,7.20,23.40,189.80,261.80,81.30,143.90,50.00,178.20,52.90,17.40,1033.50,27.60,220.40,537.00,248.50 +LAKSHADWEEP,2003,11.80,18.20,28.50,18.10,109.60,364.50,400.60,92.10,84.30,191.60,206.10,7.50,1532.90,30.00,156.20,941.50,405.20 +LAKSHADWEEP,2004,7.20,1.50,1.90,7.70,330.20,251.20,280.80,169.50,200.00,193.40,107.60,2.20,1553.20,8.70,339.80,901.50,303.20 +LAKSHADWEEP,2005,17.60,11.10,0.00,37.00,92.80,248.50,378.90,102.40,278.00,164.20,218.30,26.60,1575.40,28.70,129.80,1007.80,409.10 +LAKSHADWEEP,2006,20.10,0.00,33.00,0.30,327.90,286.90,172.30,150.70,318.50,119.10,158.90,10.90,1598.60,20.10,361.20,928.40,288.90 +LAKSHADWEEP,2007,2.50,4.20,0.20,22.20,166.20,573.40,427.40,294.70,457.50,256.10,47.60,109.60,2361.60,6.70,188.60,1753.00,413.30 +LAKSHADWEEP,2008,5.50,19.80,120.70,15.80,180.40,254.60,363.90,206.60,108.90,252.90,67.60,130.10,1726.80,25.30,316.90,934.00,450.60 +LAKSHADWEEP,2009,4.70,1.50,0.10,18.10,162.10,401.20,266.40,185.00,145.10,87.40,166.20,132.30,1570.10,6.20,180.30,997.70,385.90 +LAKSHADWEEP,2010,18.80,0.00,1.20,35.60,79.00,318.90,336.70,335.10,161.50,155.40,201.50,81.50,1725.20,18.80,115.80,1152.20,438.40 +LAKSHADWEEP,2011,5.10,2.80,3.10,85.90,107.20,153.60,350.20,254.00,255.20,117.40,184.30,14.90,1533.70,7.90,196.20,1013.00,316.60 +LAKSHADWEEP,2012,19.20,0.10,1.60,76.80,21.20,327.00,231.50,381.20,179.80,145.90,12.40,8.80,1405.50,19.30,99.60,1119.50,167.10 +LAKSHADWEEP,2013,26.20,34.40,37.50,5.30,88.30,426.20,296.40,154.40,180.00,72.80,78.10,26.70,1426.30,60.60,131.10,1057.00,177.60 +LAKSHADWEEP,2014,53.20,16.10,4.40,14.90,57.40,244.10,116.10,466.10,132.20,169.20,59.00,62.30,1395.00,69.30,76.70,958.50,290.50 +LAKSHADWEEP,2015,2.20,0.50,3.70,87.10,133.10,296.60,257.50,146.40,160.40,165.40,231.00,159.00,1642.90,2.70,223.90,860.90,555.40 diff --git a/docs/assets/words.txt b/docs/assets/words.txt new file mode 100644 index 0000000..5593505 --- /dev/null +++ b/docs/assets/words.txt @@ -0,0 +1,99171 @@ +A +A's +AA's +AB's +ABM's +AC's +ACTH's +AI's +AIDS's +AM's +AOL +AOL's +ASCII's +ASL's +ATM's +ATP's +AWOL's +AZ's +AZT's +Aachen +Aaliyah +Aaliyah's +Aaron +Abbas +Abbasid +Abbott +Abbott's +Abby +Abby's +Abdul +Abdul's +Abe +Abe's +Abel +Abel's +Abelard +Abelson +Abelson's +Aberdeen +Aberdeen's +Abernathy +Abernathy's +Abidjan +Abidjan's +Abigail +Abilene +Abner +Abner's +Abraham +Abraham's +Abram +Abram's +Abrams +Absalom +Abuja +Abyssinia +Abyssinia's +Abyssinian +Abyssinian's +Ac +Ac's +Acadia +Acadia's +Acapulco +Acapulco's +Accenture +Accenture's +Accra +Accra's +Acevedo +Acevedo's +Achaean +Achaean's +Achebe +Achebe's +Achernar +Acheson +Acheson's +Achilles +Achilles's +Aconcagua +Aconcagua's +Acosta +Acosta's +Acropolis +Acrux +Acrux's +Actaeon +Acton +Acts +Acuff +Acuff's +Ada +Ada's +Adam +Adam's +Adams +Adan +Adan's +Adana +Adar +Adar's +Addams +Adderley +Adderley's +Addie +Addie's +Addison +Adela +Adela's +Adelaide +Adelaide's +Adele +Adele's +Adeline +Adeline's +Aden +Aden's +Adenauer +Adhara +Adhara's +Adidas +Adidas's +Adirondack +Adirondack's +Adirondacks +Adirondacks's +Adkins +Adkins's +Adler +Adolf +Adolf's +Adolfo +Adolfo's +Adolph +Adolph's +Adonis +Adonis's +Adonises +Adrian +Adriana +Adriana's +Adriatic +Adriatic's +Adrienne +Adrienne's +Advent +Advent's +Adventist +Adventist's +Advents +Advil +Advil's +Aegean +Aegean's +Aelfric +Aelfric's +Aeneas +Aeneas's +Aeneid +Aeneid's +Aeolus +Aeolus's +Aeroflot +Aeroflot's +Aeschylus +Aeschylus's +Aesculapius +Aesculapius's +Aesop +Aesop's +Afghan +Afghan's +Afghanistan +Afghanistan's +Afghans +Africa +Africa's +African +African's +Africans +Afrikaans +Afrikaans's +Afrikaner +Afrikaner's +Afrikaners +Afro +Afro's +Afrocentrism +Afros +Ag +Ag's +Agamemnon +Agamemnon's +Agassi +Agassi's +Agassiz +Agassiz's +Agatha +Agatha's +Aggie +Aglaia +Agnes +Agnew +Agnew's +Agni +Agni's +Agra +Agricola +Agrippa +Agrippa's +Agrippina +Agrippina's +Aguilar +Aguilar's +Aguinaldo +Aguinaldo's +Aguirre +Aguirre's +Agustin +Agustin's +Ahab +Ahab's +Ahmad +Ahmad's +Ahmadabad +Ahmadinejad +Ahmadinejad's +Ahmed +Ahmed's +Ahriman +Ahriman's +Aida +Aida's +Aiken +Aileen +Aileen's +Aimee +Aimee's +Ainu +Airedale +Airedale's +Airedales +Aisha +Ajax +Ajax's +Akbar +Akhmatova +Akhmatova's +Akihito +Akita +Akiva +Akiva's +Akkad +Akron +Akron's +Al +Al's +Ala +Alabama +Alabama's +Alabaman +Alabaman's +Alabamans +Alabamian +Alabamian's +Alabamians +Aladdin +Aladdin's +Alamo +Alamo's +Alamogordo +Alamogordo's +Alan +Alan's +Alana +Alana's +Alar +Alar's +Alaric +Alaska +Alaska's +Alaskan +Alaskan's +Alaskans +Alba +Albania +Albania's +Albanian +Albanian's +Albanians +Albany +Albany's +Albee +Alberio +Alberio's +Albert +Alberta +Alberta's +Alberto +Alberto's +Albigensian +Albion +Albireo +Albireo's +Albuquerque +Albuquerque's +Alcatraz +Alcestis +Alcibiades +Alcindor +Alcindor's +Alcmena +Alcmena's +Alcoa +Alcoa's +Alcott +Alcuin +Alcyone +Aldan +Aldebaran +Aldebaran's +Alden +Alderamin +Alderamin's +Aldo +Aldo's +Aldrin +Aldrin's +Alec +Alec's +Aleichem +Aleichem's +Alejandra +Alejandra's +Alejandro +Alejandro's +Alembert +Alembert's +Aleppo +Aleppo's +Aleut +Aleut's +Aleutian +Aleutian's +Alex +Alex's +Alexander +Alexander's +Alexandra +Alexandria +Alexandria's +Alexei +Alexei's +Alexis +Alfonso +Alfonso's +Alfonzo +Alfonzo's +Alford +Alford's +Alfred +Alfreda +Alfreda's +Alfredo +Algenib +Algenib's +Alger +Algeria +Algeria's +Algerian +Algerian's +Algerians +Algieba +Algieba's +Algiers +Algiers's +Algol +Algol's +Algonquian +Algonquian's +Algonquians +Algonquin +Algonquin's +Alhambra +Alhena +Alhena's +Ali +Alice +Alice's +Alicia +Alicia's +Alighieri +Alighieri's +Aline +Aline's +Alioth +Alioth's +Alisa +Alisa's +Alisha +Alisha's +Alison +Alison's +Alissa +Alissa's +Alistair +Alistair's +Alkaid +Alkaid's +Allah +Allah's +Allahabad +Allan +Allan's +Alleghenies +Alleghenies's +Allegheny +Allegra +Allegra's +Allen +Allende +Allende's +Allentown +Allie +Allie's +Allison +Allison's +Allstate +Allstate's +Allyson +Allyson's +Alma +Alma's +Almach +Almach's +Almaty +Almaty's +Almighty +Almighty's +Almohad +Almohad's +Almoravid +Almoravid's +Alnilam +Alnilam's +Alnitak +Alnitak's +Alonzo +Alonzo's +Alpert +Alpert's +Alphard +Alphard's +Alphecca +Alphecca's +Alpheratz +Alpheratz's +Alphonse +Alphonse's +Alphonso +Alphonso's +Alpine +Alpo +Alpo's +Alps +Alps's +Alsace +Alsace's +Alsatian +Alsatian's +Alsop +Alsop's +Alston +Alston's +Alta +Altai +Altai's +Altaic +Altaic's +Altair +Altamira +Althea +Althea's +Altiplano +Altiplano's +Altman +Altman's +Altoids +Altoids's +Alton +Alton's +Aludra +Aludra's +Alva +Alvarado +Alvarado's +Alvarez +Alvarez's +Alvaro +Alvaro's +Alvin +Alvin's +Alyce +Alyce's +Alyson +Alyson's +Alyssa +Alyssa's +Alzheimer +Alzheimer's +Am +Am's +Amadeus +Amadeus's +Amado +Amado's +Amalia +Amalia's +Amanda +Amanda's +Amarillo +Amaru +Amaru's +Amaterasu +Amaterasu's +Amati +Amazon +Amazon's +Amazons +Amber +Amber's +Amelia +Amelia's +Amenhotep +Amenhotep's +Amerasian +America +America's +American +American's +Americana +Americana's +Americanism +Americanism's +Americanisms +Americanization +Americanization's +Americanizations +Americanize +Americanized +Americanizes +Americanizing +Americans +Americas +Amerind +Amerind's +Amerindian +Amerindian's +Amerindians +Amerinds +Ameslan +Ameslan's +Amharic +Amharic's +Amherst +Amie +Amie's +Amiga +Amiga's +Amish +Amish's +Amman +Amman's +Amoco +Amoco's +Amos +Amparo +Amparo's +Ampere +Ampere's +Amritsar +Amsterdam +Amsterdam's +Amtrak +Amundsen +Amur +Amur's +Amway +Amway's +Amy +Amy's +Ana +Ana's +Anabaptist +Anabaptist's +Anabel +Anabel's +Anacin +Anacin's +Anacreon +Anaheim +Analects +Analects's +Ananias +Ananias's +Anasazi +Anastasia +Anatole +Anatole's +Anatolia +Anatolia's +Anatolian +Anatolian's +Anaxagoras +Anchorage +Anchorage's +Andalusia +Andalusia's +Andalusian +Andaman +Andean +Andersen +Andersen's +Anderson +Andes +Andes's +Andorra +Andorra's +Andre +Andre's +Andrea +Andrea's +Andrei +Andrei's +Andres +Andretti +Andretti's +Andrew +Andrew's +Andrews +Andrianampoinimerina +Andrianampoinimerina's +Android +Android's +Andromache +Andromeda +Andromeda's +Andropov +Andy +Andy's +Angara +Angel +Angel's +Angela +Angela's +Angelia +Angelia's +Angelica +Angelico +Angelina +Angelina's +Angeline +Angeline's +Angelique +Angelique's +Angelita +Angelita's +Angelo +Angelo's +Angelou +Angevin +Angevin's +Angie +Angie's +Angkor +Anglia +Anglican +Anglican's +Anglicanism +Anglicanism's +Anglicanisms +Anglicans +Anglicize +Anglo +Anglophile +Angola +Angola's +Angolan +Angolan's +Angolans +Angora +Angora's +Angoras +Anguilla +Anguilla's +Angus +Angus's +Aniakchak +Aniakchak's +Anibal +Anibal's +Anita +Anita's +Ankara +Ankara's +Ann +Ann's +Anna +Annabel +Annabel's +Annabelle +Annabelle's +Annam +Annam's +Annapolis +Annapolis's +Annapurna +Annapurna's +Anne +Annette +Annette's +Annie +Annie's +Annmarie +Annmarie's +Anouilh +Anselm +Anselmo +Anselmo's +Anshan +Anshan's +Antaeus +Antananarivo +Antananarivo's +Antarctic +Antarctic's +Antarctica +Antarctica's +Antares +Antares's +Anthony +Antichrist +Antichrist's +Antichrists +Antietam +Antigone +Antigone's +Antigua +Antigua's +Antilles +Antilles's +Antioch +Antipas +Antipas's +Antofagasta +Antofagasta's +Antoine +Antoine's +Antoinette +Anton +Anton's +Antone +Antone's +Antonia +Antonia's +Antoninus +Antonio +Antonio's +Antonius +Antony +Antony's +Antwan +Antwan's +Antwerp +Antwerp's +Anubis +Anubis's +Anzac +Apache +Apache's +Apaches +Apalachicola +Apalachicola's +Apennines +Aphrodite +Aphrodite's +Apia +Apocrypha +Apocrypha's +Apollinaire +Apollo +Apollo's +Apollonian +Apollos +Appalachia +Appalachia's +Appalachian +Appalachians +Appaloosa +Appaloosa's +Apple +Apple's +Appleseed +Appleton +Appomattox +Apr +Apr's +April +April's +Aprils +Apuleius +Aquafresh +Aquafresh's +Aquarius +Aquarius's +Aquariuses +Aquila +Aquinas +Aquinas's +Aquino +Aquino's +Aquitaine +Aquitaine's +Ar +Ar's +Ara +Ara's +Arab +Arab's +Arabia +Arabia's +Arabian +Arabian's +Arabians +Arabic +Arabic's +Arabs +Araby +Araceli +Araceli's +Arafat +Arafat's +Araguaya +Araguaya's +Aral +Aral's +Aramaic +Aramaic's +Aramco +Aramco's +Arapaho +Arapaho's +Ararat +Ararat's +Araucanian +Arawak +Arawak's +Arawakan +Arawakan's +Arbitron +Arbitron's +Arcadia +Arcadia's +Arcadian +Arcadian's +Archean +Archibald +Archibald's +Archie +Archie's +Archimedes +Arctic +Arctic's +Arcturus +Arcturus's +Arden +Arequipa +Ares +Argentina +Argentina's +Argentine +Argentinian +Argentinian's +Argentinians +Argo +Argonaut +Argonaut's +Argonne +Argonne's +Argos +Argus +Argus's +Ariadne +Ariadne's +Arianism +Arianism's +Ariel +Aries +Aries's +Arieses +Ariosto +Aristarchus +Aristarchus's +Aristides +Aristophanes +Aristophanes's +Aristotelian +Aristotelian's +Aristotle +Aristotle's +Arius +Arius's +Ariz +Arizona +Arizona's +Arizonan +Arizonan's +Arizonans +Arizonian +Arizonian's +Arizonians +Arjuna +Ark +Arkansan +Arkansan's +Arkansas +Arkansas's +Arkhangelsk +Arkwright +Arlene +Arlene's +Arline +Arline's +Arlington +Armageddon +Armageddon's +Armageddons +Armagnac +Armagnac's +Armand +Armand's +Armando +Armando's +Armani +Armani's +Armenia +Armenia's +Armenian +Armenian's +Armenians +Arminius +Arminius's +Armonk +Armonk's +Armour +Armour's +Armstrong +Armstrong's +Arneb +Arneb's +Arnhem +Arno +Arno's +Arnold +Arnulfo +Arnulfo's +Aron +Aron's +Arrhenius +Arron +Arron's +Art +Art's +Artaxerxes +Artaxerxes's +Artemis +Artemis's +Arthur +Arthur's +Arthurian +Artie +Artie's +Arturo +Arturo's +Aruba +Aruba's +Aryan +Aryan's +Aryans +As +Asama +Asama's +Ascella +Ascella's +Asgard +Ashanti +Ashcroft +Ashe +Ashikaga +Ashikaga's +Ashkenazim +Ashkhabad +Ashkhabad's +Ashlee +Ashlee's +Ashley +Ashley's +Ashmolean +Ashmolean's +Ashurbanipal +Asia +Asia's +Asian +Asian's +Asians +Asiatic +Asiatic's +Asiatics +Asimov +Asmara +Asoka +Aspell +Aspell's +Aspen +Aspen's +Aspidiske +Aspidiske's +Asquith +Assad +Assad's +Assam +Assam's +Assamese +Assamese's +Assisi +Assyria +Assyria's +Assyrian +Assyrian's +Assyrians +Astaire +Astana +Astana's +Astarte +Astarte's +Aston +Astor +Astoria +Astrakhan +AstroTurf +Asturias +Asunción +Asunción's +Aswan +Aswan's +At +At's +Atacama +Atacama's +Atahualpa +Atalanta +Atari +Atari's +Atatürk +Atatürk's +Athabasca +Athabasca's +Athabascan +Athabascan's +Athena +Athena's +Athenian +Athenian's +Athenians +Athens +Athens's +Atkins +Atkins's +Atkinson +Atlanta +Atlanta's +Atlantes +Atlantic +Atlantic's +Atlantis +Atlantis's +Atlas +Atlas's +Atlases +Atman +Atreus +Atria +Atria's +Atropos +Atropos's +Ats +Attic +Attic's +Attica +Attica's +Attila +Attila's +Attlee +Attucks +Atwood +Atwood's +Au +Au's +Aubrey +Auckland +Auden +Auden's +Audi +Audi's +Audion +Audion's +Audra +Audra's +Audrey +Audrey's +Audubon +Aug +Aug's +Augean +Augsburg +August +August's +Augusta +Augusta's +Augustan +Augustine +Augustine's +Augusts +Augustus +Augustus's +Aurangzeb +Aurelia +Aurelia's +Aurelio +Aurelio's +Aurelius +Aureomycin +Aureomycin's +Auriga +Auriga's +Aurora +Aurora's +Auschwitz +Aussie +Aussie's +Aussies +Austen +Austerlitz +Austerlitz's +Austin +Austin's +Austins +Australasia +Australasia's +Australia +Australia's +Australian +Australian's +Australians +Australoid +Australopithecus +Australopithecus's +Austria +Austria's +Austrian +Austrian's +Austrians +Austronesian +Austronesian's +Autumn +Autumn's +Av +Av's +Ava +Ava's +Avalon +Ave +Aventine +Avernus +Averroes +Avery +Avery's +Avesta +Avesta's +Avicenna +Avignon +Avila +Avila's +Avior +Avior's +Avis +Avogadro +Avon +Axum +Ayala +Ayala's +Ayers +Aymara +Ayrshire +Ayrshire's +Ayurveda +Ayyubid +Ayyubid's +Azana +Azana's +Azania +Azania's +Azazel +Azerbaijan +Azerbaijan's +Azerbaijani +Azerbaijani's +Azores +Azores's +Azov +Aztec +Aztec's +Aztecan +Aztecan's +Aztecs +Aztlan +Aztlan's +B +B's +BA's +BASIC's +BB's +BC's +BLT's +BM's +BMW +BMW's +BS's +Ba +Ba's +Baal +Baal's +Baath +Baath's +Baathist +Babar +Babar's +Babbage +Babbitt +Babel +Babel's +Babels +Babur +Babylon +Babylon's +Babylonian +Babylonian's +Babylons +Bacall +Bacall's +Bacardi +Bacchanalia +Bacchanalia's +Bacchus +Bacchus's +Bach +Bach's +Backus +Backus's +Bacon +Bacon's +Bactria +Baden +Badlands +Badlands's +Baedeker +Baedeker's +Baez +Baffin +Baffin's +Baggies +Baghdad +Baghdad's +Baguio +Baha'i +Baha'ullah +Bahama +Bahama's +Bahamas +Bahamas's +Bahamian +Bahamian's +Bahamians +Bahia +Bahrain +Bahrain's +Baikal +Bailey +Bailey's +Baird +Bakelite +Bakelite's +Baker +Bakersfield +Baku +Baku's +Bakunin +Balanchine +Balaton +Balboa +Balder +Balder's +Baldwin +Baldwin's +Balearic +Balearic's +Balfour +Bali +Bali's +Balinese +Balinese's +Balkan +Balkans +Balkhash +Ball +Ballard +Ballard's +Balthazar +Baltic +Baltic's +Baltimore +Baltimore's +Baluchistan +Balzac +Balzac's +Bamako +Bamako's +Bambi +Bambi's +Banach +Banach's +Bancroft +Bancroft's +Bandung +Bandung's +Bangalore +Bangkok +Bangkok's +Bangladesh +Bangladesh's +Bangladeshi +Bangladeshi's +Bangladeshis +Bangor +Bangui +Bangui's +Banjarmasin +Banjarmasin's +Banjul +Banks +Banneker +Banneker's +Bannister +Banting +Bantu +Bantu's +Bantus +Baotou +Baotou's +Baptist +Baptist's +Baptiste +Baptiste's +Baptists +Barabbas +Barack +Barack's +Barbadian +Barbadian's +Barbadians +Barbados +Barbados's +Barbara +Barbara's +Barbarella +Barbarella's +Barbarossa +Barbarossa's +Barbary +Barbary's +Barber +Barbie +Barbour +Barbour's +Barbra +Barbra's +Barbuda +Barbuda's +Barcelona +Barcelona's +Barclay +Barclay's +Bardeen +Bardeen's +Barents +Barents's +Barker +Barker's +Barkley +Barkley's +Barlow +Barlow's +Barnabas +Barnaby +Barnaby's +Barnard +Barnaul +Barnes +Barnett +Barnett's +Barney +Barney's +Barnum +Baroda +Barquisimeto +Barr +Barr's +Barranquilla +Barrera +Barrera's +Barrett +Barrett's +Barrie +Barrie's +Barron +Barron's +Barry +Barrymore +Bart +Barth +Bartholdi +Bartholdi's +Bartholomew +Bartlett +Barton +Bartók +Baruch +Baryshnikov +Basel +Basel's +Basho +Basho's +Basie +Basil +Basque +Basque's +Basques +Basra +Bass +Bass's +Basseterre +Basseterre's +Bastille +Bastille's +Bataan +Bataan's +Bates +Bathsheba +Batista +Batman +Batman's +Battle +Battle's +Batu +Batu's +Baudelaire +Baudelaire's +Baudouin +Baudouin's +Bauer +Bauhaus +Bauhaus's +Baum +Bavaria +Bavaria's +Bavarian +Baxter +Baxter's +Bayer +Bayer's +Bayes +Bayesian +Bayeux +Bayeux's +Baylor +Baylor's +Bayonne +Bayonne's +Bayreuth +Baywatch +Baywatch's +Be +Be's +Beach +Beach's +Beadle +Bean +Bean's +Beard +Beard's +Beardmore +Beardmore's +Beardsley +Bearnaise +Bearnaise's +Beasley +Beasley's +Beatlemania +Beatlemania's +Beatles +Beatles's +Beatrice +Beatrice's +Beatrix +Beatrix's +Beatriz +Beatriz's +Beau +Beau's +Beaufort +Beaujolais +Beaujolais's +Beaumarchais +Beaumont +Beauregard +Beauregard's +Beauvoir +Bechtel +Bechtel's +Beck +Beck's +Becker +Becker's +Becket +Becket's +Beckett +Beckett's +Becky +Becky's +Becquerel +Bede +Bedouin +Bedouin's +Bedouins +Beebe +Beebe's +Beecher +Beefaroni +Beefaroni's +Beelzebub +Beelzebub's +Beerbohm +Beethoven +Beethoven's +Beeton +Beeton's +Begin +Behan +Behring +Beiderbecke +Beijing +Beijing's +Beirut +Beirut's +Bekesy +Bekesy's +Bela +Bela's +Belarus +Belarus's +Belau +Belau's +Belem +Belem's +Belfast +Belfast's +Belgian +Belgian's +Belgians +Belgium +Belgium's +Belgrade +Belgrade's +Belinda +Belinda's +Belize +Belize's +Bell +Bell's +Bella +Bella's +Bellamy +Bellamy's +Bellatrix +Bellatrix's +Belleek +Bellini +Bellow +Belmont +Belmont's +Belmopan +Belshazzar +Belshazzar's +Beltane +Belushi +Belushi's +Ben +Ben's +Benacerraf +Benacerraf's +Benares +Benchley +Benchley's +Bender +Bender's +Bendix +Bendix's +Benedict +Benedict's +Benedictine +Benedictine's +Benelux +Benelux's +Benet +Benetton +Benetton's +Bengal +Bengal's +Bengali +Bengali's +Benghazi +Benghazi's +Benin +Benin's +Benita +Benita's +Benito +Benito's +Benjamin +Bennett +Bennie +Bennie's +Benny +Benny's +Benson +Benson's +Bentham +Bentley +Benton +Benz +Benzedrine +Benzedrine's +Beowulf +Berber +Berber's +Berbers +Berenice +Berenice's +Beretta +Beretta's +Berg +Bergen +Bergen's +Berger +Berger's +Bergerac +Bergman +Bergson +Beria +Bering +Berkeley +Berkeley's +Berkshire +Berkshire's +Berkshires +Berle +Berle's +Berlin +Berlin's +Berliner +Berliner's +Berlins +Berlioz +Berlitz +Berlitz's +Bermuda +Bermuda's +Bermudas +Bern +Bern's +Bernadette +Bernadine +Bernadine's +Bernanke +Bernanke's +Bernard +Bernardo +Bernardo's +Bernays +Bernays's +Bernbach +Bernbach's +Berne +Berne's +Bernhardt +Bernice +Bernice's +Bernie +Bernie's +Bernini +Bernoulli +Bernstein +Berra +Berra's +Berry +Bert +Bert's +Berta +Berta's +Bertelsmann +Bertelsmann's +Bertha +Bertha's +Bertie +Bertie's +Bertillon +Bertillon's +Bertram +Bertram's +Bertrand +Bertrand's +Beryl +Beryl's +Berzelius +Bess +Bessel +Bessemer +Bessemer's +Bessie +Best +Best's +Betelgeuse +Betelgeuse's +Beth +Beth's +Bethany +Bethe +Bethesda +Bethlehem +Bethune +Betsy +Betsy's +Bette +Bette's +Bettie +Bettie's +Betty +Betty's +Bettye +Bettye's +Beulah +Beverley +Beverley's +Beverly +Beverly's +Beyer +Bhopal +Bhutan +Bhutan's +Bhutto +Bhutto's +Bi +Bi's +Bialystok +Bianca +Bianca's +Bib +Bible +Bible's +Bibles +Biblical +Bic +Bic's +Biddle +Biden +Biden's +Bierce +Bigfoot +Bigfoot's +Biggles +Biggles's +Biko +Biko's +Bilbao +Bilbo +Bilbo's +Bill +Bill's +Billie +Billie's +Billings +Billings's +Billy +Billy's +Bimini +Bimini's +Bioko +Bioko's +Bird +Birdseye +Birdseye's +Birkenstock +Birmingham +Birmingham's +Biro +Biro's +Biscay +Biscayne +Biscayne's +Bishkek +Bishop +Bishop's +Bismarck +Bismarck's +Bismark +Bismark's +Bisquick +Bisquick's +Bissau +Bissau's +Bizet +Bjerknes +Bjerknes's +Bjork +Bjork's +Bk +Bk's +Black +Black's +Blackbeard +Blackbeard's +Blackburn +Blackburn's +Blackfoot +Blackfoot's +Blacks +Blackshirt +Blackshirt's +Blackstone +Blackwell +Blaine +Blaine's +Blair +Blair's +Blake +Blanca +Blanca's +Blanchard +Blanchard's +Blanche +Blanche's +Blankenship +Blankenship's +Blantyre +Blantyre's +Blatz +Blatz's +Blavatsky +Blenheim +Blenheim's +Blevins +Blevins's +Bligh +Bligh's +Bloch +Blockbuster +Blockbuster's +Bloemfontein +Bloemfontein's +Blondel +Blondel's +Blondie +Blondie's +Bloom +Bloom's +Bloomer +Bloomfield +Bloomingdale +Bloomingdale's +Bloomsbury +Blu +Blucher +Blucher's +Bluebeard +Bluebeard's +Bluetooth +Bluetooth's +Blvd +Blythe +Blythe's +Boas +Boas's +Bob +Bob's +Bobbi +Bobbi's +Bobbie +Bobbie's +Bobbitt +Bobbitt's +Bobby +Bobby's +Boccaccio +Bodhidharma +Bodhidharma's +Bodhisattva +Bodhisattva's +Boeing +Boeing's +Boeotia +Boeotia's +Boeotian +Boer +Boer's +Boers +Boethius +Bogart +Bogart's +Bogotá +Bogotá's +Bohemia +Bohemian +Bohemian's +Bohemians +Bohr +Boise +Boise's +Bojangles +Bojangles's +Boleyn +Boleyn's +Bolivar +Bolivar's +Bolivia +Bolivia's +Bolivian +Bolivian's +Bolivians +Bollywood +Bollywood's +Bologna +Bologna's +Bolshevik +Bolshevik's +Bolsheviks +Bolshevism +Bolshevist +Bolshoi +Bolshoi's +Bolton +Boltzmann +Bombay +Bombay's +Bonaparte +Bonaventure +Bond +Bond's +Bonhoeffer +Bonhoeffer's +Boniface +Bonita +Bonita's +Bonn +Bonn's +Bonner +Bonner's +Bonneville +Bonneville's +Bonnie +Bonnie's +Bono +Bono's +Booker +Booker's +Boole +Boole's +Boolean +Boone +Boone's +Booth +Bordeaux +Bordeaux's +Borden +Borden's +Bordon +Bordon's +Boreas +Boreas's +Borg +Borg's +Borges +Borgia +Borglum +Boris +Bork +Bork's +Borlaug +Borlaug's +Born +Borneo +Borneo's +Borobudur +Borobudur's +Borodin +Boru +Boru's +Bosch +Bose +Bosnia +Bosnia's +Bosporus +Bosporus's +Boston +Boston's +Bostonian +Bostons +Boswell +Botswana +Botswana's +Botticelli +Boulder +Boulez +Boulez's +Bourbaki +Bourbaki's +Bourbon +Bourbon's +Bournemouth +Bovary +Bovary's +Bowditch +Bowditch's +Bowell +Bowell's +Bowen +Bowen's +Bowers +Bowery +Bowery's +Bowie +Bowman +Bowman's +Boyd +Boyer +Boyer's +Boyle +Boötes +Boötes's +Br +Br's +Brad +Brad's +Bradbury +Braddock +Braddock's +Bradford +Bradley +Bradly +Bradly's +Bradshaw +Bradshaw's +Bradstreet +Bradstreet's +Brady +Bragg +Bragg's +Brahe +Brahma +Brahma's +Brahmagupta +Brahmagupta's +Brahman +Brahman's +Brahmanism +Brahmanism's +Brahmanisms +Brahmans +Brahmaputra +Brahmaputra's +Brahmas +Brahmin +Brahmin's +Brahmins +Brahms +Brahms's +Braille +Braille's +Brailles +Brain +Brain's +Brampton +Brampton's +Bran +Bran's +Branch +Branch's +Brandeis +Branden +Branden's +Brandenburg +Brandi +Brandi's +Brandie +Brandie's +Brando +Brandon +Brandon's +Brandt +Brandy +Brandy's +Brant +Brant's +Braque +Brasilia +Brasilia's +Bratislava +Brattain +Brattain's +Bray +Bray's +Brazil +Brazil's +Brazilian +Brazilian's +Brazilians +Brazos +Brazos's +Brazzaville +Brazzaville's +Breakspear +Breakspear's +Brecht +Breckenridge +Breckenridge's +Bremen +Brenda +Brenda's +Brendan +Brendan's +Brennan +Brennan's +Brenner +Brenner's +Brent +Brent's +Brenton +Brenton's +Brest +Bret +Bret's +Breton +Breton's +Brett +Brett's +Brewer +Brewer's +Brewster +Brezhnev +Brian +Brian's +Briana +Briana's +Brianna +Brianna's +Brice +Brice's +Bridalveil +Bridalveil's +Bridgeport +Bridgeport's +Bridger +Bridger's +Bridges +Bridget +Bridget's +Bridgetown +Bridgett +Bridgett's +Bridgette +Bridgette's +Bridgman +Brie +Brie's +Brigadoon +Briggs +Brigham +Brigham's +Bright +Brighton +Brighton's +Brigid +Brigid's +Brigitte +Brigitte's +Brillo +Brinkley +Brinkley's +Brisbane +Brisbane's +Bristol +Bristol's +Brit +Brit's +Britain +Britain's +Britannia +Britannic +Britannica +Britannica's +British +British's +Britisher +Britney +Britney's +Briton +Briton's +Britons +Brits +Britt +Britt's +Brittany +Brittany's +Britten +Brittney +Brittney's +Brno +Broadway +Broadway's +Broadways +Brobdingnag +Brobdingnag's +Brobdingnagian +Brock +Brock's +Brokaw +Brokaw's +Bronson +Bronson's +Bronte +Bronx +Bronx's +Brooke +Brooklyn +Brooklyn's +Brooks +Brown +Browne +Brownian +Brownian's +Brownie +Brownies +Browning +Brownshirt +Brownsville +Brubeck +Bruce +Bruce's +Bruckner +Brueghel +Brummel +Brummel's +Brunei +Brunei's +Brunelleschi +Brunhilde +Brunhilde's +Bruno +Brunswick +Brunswick's +Brussels +Brussels's +Brut +Brut's +Brutus +Brutus's +Bryan +Bryant +Bryce +Bryce's +Brynner +Brynner's +Bryon +Bryon's +Brzezinski +Brzezinski's +Btu +Btu's +Buber +Buchanan +Buchanan's +Bucharest +Bucharest's +Buchenwald +Buchwald +Buchwald's +Buck +Buckingham +Buckley +Buckley's +Buckner +Buckner's +Bud +Bud's +Budapest +Budapest's +Buddha +Buddha's +Buddhas +Buddhism +Buddhism's +Buddhisms +Buddhist +Buddhist's +Buddhists +Buddy +Buddy's +Budweiser +Budweiser's +Buffalo +Buffalo's +Buffy +Buffy's +Buford +Buford's +Bugatti +Bugatti's +Bugzilla +Bugzilla's +Buick +Buick's +Bujumbura +Bujumbura's +Bukhara +Bukharin +Bulawayo +Bulfinch +Bulganin +Bulgar +Bulgari +Bulgari's +Bulgaria +Bulgaria's +Bulgarian +Bulgarian's +Bulgarians +Bullock +Bullock's +Bullwinkle +Bullwinkle's +Bultmann +Bultmann's +Bumppo +Bumppo's +Bunche +Bundesbank +Bundesbank's +Bundestag +Bunin +Bunker +Bunker's +Bunsen +Bunyan +Bunyan's +Burbank +Burberry +Burberry's +Burch +Burch's +Burger +Burger's +Burgess +Burgoyne +Burgoyne's +Burgundian +Burgundies +Burgundy +Burgundy's +Burke +Burks +Burl +Burl's +Burma +Burma's +Burmese +Burmese's +Burnett +Burns +Burnside +Burr +Burris +Burris's +Burroughs +Bursa +Burt +Burt's +Burton +Burton's +Burundi +Burundi's +Busch +Busch's +Bush +Bush's +Bushido +Bushnell +Bushnell's +Butler +Butterfingers +Butterfingers's +Buxtehude +Buñuel +Buñuel's +Byblos +Byblos's +Byelorussia +Byelorussia's +Byers +Byers's +Byrd +Byron +Byronic +Byzantine +Byzantine's +Byzantines +Byzantium +Byzantium's +C +C's +CD's +CEO's +CFC's +CIA's +CO's +COBOL's +CPA's +CPI's +CPR's +CPU's +CRT's +CST's +CT's +Ca +Ca's +Cabernet +Cabernet's +Cabinet +Cabot +Cabral +Cabrera +Cabrera's +Cabrini +Cadillac +Cadiz +Cadiz's +Caedmon +Caedmon's +Caerphilly +Caesar +Caesar's +Caesarean +Caesars +Cage +Cagney +Cagney's +Cahokia +Cahokia's +Caiaphas +Cain +Cain's +Cains +Cairo +Cairo's +Caitlin +Caitlin's +Cajun +Cajun's +Cajuns +Cal +Calais +Calcutta +Calcutta's +Calder +Calderon +Calderon's +Caldwell +Caleb +Caleb's +Caledonia +Calgary +Calgary's +Calhoun +Cali +Caliban +California +California's +Californian +Californian's +Californians +Caligula +Callaghan +Callahan +Callahan's +Callao +Callas +Callie +Callie's +Calliope +Calliope's +Callisto +Callisto's +Caloocan +Caloocan's +Calvary +Calvary's +Calvert +Calvin +Calvin's +Calvinism +Calvinism's +Calvinisms +Calvinist +Calvinist's +Calvinistic +Calvinists +Camacho +Camacho's +Cambodia +Cambodia's +Cambodian +Cambodian's +Cambodians +Cambrian +Cambrian's +Cambridge +Cambridge's +Camel +Camel's +Camelopardalis +Camelot +Camelot's +Camembert +Camembert's +Camemberts +Cameron +Cameron's +Cameroon +Cameroon's +Cameroons +Camilla +Camilla's +Camille +Camille's +Camoens +Camoens's +Campanella +Campanella's +Campbell +Campinas +Campos +Camry +Camry's +Camus +Canaan +Canaan's +Canada +Canada's +Canadian +Canadian's +Canadians +Canaletto +Canaries +Canaries's +Canaveral +Canberra +Canberra's +Cancer +Cancer's +Cancers +Cancun +Cancun's +Candace +Candace's +Candice +Candice's +Candide +Candide's +Candy +Candy's +Cannes +Cannes's +Cannon +Cannon's +Canon +Canon's +Canopus +Cantabrigian +Cantabrigian's +Canterbury +Canton +Canton's +Cantonese +Cantonese's +Cantor +Cantor's +Cantrell +Cantrell's +Cantu +Cantu's +Canute +Capablanca +Capek +Capek's +Capella +Capella's +Capet +Capetian +Capetown +Capetown's +Caph +Caph's +Capistrano +Capistrano's +Capitol +Capitol's +Capitoline +Capitols +Capone +Capote +Capra +Capra's +Capri +Capri's +Capricorn +Capricorn's +Capricorns +Capt +Capuchin +Capulet +Capulet's +Cara +Cara's +Caracalla +Caracas +Caracas's +Caravaggio +Carboloy +Carboloy's +Carboniferous +Carboniferous's +Carborundum +Cardenas +Cardenas's +Cardiff +Cardiff's +Cardin +Cardin's +Cardozo +Cardozo's +Carey +Carib +Carib's +Caribbean +Caribbean's +Caribbeans +Carina +Carissa +Carissa's +Carl +Carl's +Carla +Carla's +Carlene +Carlene's +Carlin +Carlin's +Carlo +Carlo's +Carlos +Carlsbad +Carlson +Carlson's +Carlton +Carly +Carly's +Carlyle +Carmela +Carmela's +Carmella +Carmella's +Carmelo +Carmelo's +Carmen +Carmen's +Carmichael +Carmichael's +Carmine +Carmine's +Carnap +Carnation +Carnation's +Carnegie +Carnegie's +Carney +Carney's +Carnot +Carol +Carol's +Carole +Carole's +Carolina +Caroline +Carolingian +Carolinian +Carolinian's +Carolyn +Carolyn's +Carpathian +Carpathian's +Carpathians +Carpenter +Carr +Carr's +Carranza +Carranza's +Carrie +Carrie's +Carrier +Carrier's +Carrillo +Carrillo's +Carroll +Carroll's +Carson +Carter +Carter's +Cartesian +Carthage +Carthage's +Carthaginian +Carthaginian's +Cartier +Cartwright +Caruso +Carver +Cary +Casablanca +Casablanca's +Casals +Casandra +Casandra's +Casanova +Casanova's +Casanovas +Cascades +Cascades's +Case +Case's +Casey +Casey's +Cash +Casio +Casio's +Caspar +Caspian +Cassandra +Cassandra's +Cassatt +Cassie +Cassie's +Cassiopeia +Cassiopeia's +Cassius +Cassius's +Castaneda +Castaneda's +Castillo +Castillo's +Castlereagh +Castor +Castor's +Castries +Castries's +Castro +Catalan +Catalan's +Catalina +Catalina's +Catalonia +Catalonia's +Catawba +Catawba's +Caterpillar +Caterpillar's +Cathay +Cathay's +Cather +Catherine +Catherine's +Cathleen +Cathleen's +Catholic +Catholic's +Catholicism +Catholicism's +Catholicisms +Catholics +Cathryn +Cathryn's +Cathy +Cathy's +Catiline +Cato +Catskill +Catskill's +Catskills +Catskills's +Catt +Catullus +Caucasian +Caucasian's +Caucasians +Caucasoid +Caucasus +Caucasus's +Cauchy +Cavendish +Cavour +Caxton +Cayenne +Cayman +Cayman's +Cayuga +Cayuga's +Cd +Cd's +Ceausescu +Ceausescu's +Cebu +Cebu's +Cebuano +Cebuano's +Cecelia +Cecelia's +Cecil +Cecile +Cecile's +Cecilia +Cecily +Cecily's +Cedric +Cedric's +Celebes +Celebes's +Celeste +Celeste's +Celia +Celia's +Celina +Celina's +Cellini +Celsius +Celt +Celt's +Celtic +Celtic's +Celtics +Celts +Cenozoic +Cenozoic's +Centaurus +Centaurus's +Centigrade +Cepheid +Cepheus +Cepheus's +Cerberus +Cerberus's +Cerenkov +Ceres +Ceres's +Cerf +Cerf's +Cervantes +Cervantes's +Cesar +Cesar's +Cesarean +Cessna +Cessna's +Cetus +Ceylon +Ceylon's +Cezanne +Cf +Cf's +Ch'in +Chablis +Chablis's +Chad +Chad's +Chadwick +Chagall +Chaitanya +Chaitanya's +Chaitin +Chaitin's +Chaldean +Challenger +Challenger's +Chamberlain +Chambers +Champlain +Champollion +Chan +Chan's +Chance +Chance's +Chancellorsville +Chancellorsville's +Chandigarh +Chandler +Chandon +Chandon's +Chandra +Chandra's +Chandragupta +Chandrasekhar +Chandrasekhar's +Chanel +Chaney +Chaney's +Chang +Chang's +Changchun +Changsha +Chantilly +Chanukah +Chanukah's +Chanukahs +Chaplin +Chapman +Chappaquiddick +Chappaquiddick's +Chapultepec +Chapultepec's +Charbray +Charbray's +Chardonnay +Chardonnay's +Charity +Charity's +Charlemagne +Charlemagne's +Charlene +Charlene's +Charles +Charles's +Charleston +Charleston's +Charlestons +Charley +Charlie +Charlotte +Charlotte's +Charlottetown +Charlottetown's +Charmaine +Charmaine's +Charmin +Charmin's +Charolais +Charolais's +Charon +Charon's +Chartism +Chartism's +Chartres +Charybdis +Charybdis's +Chase +Chasity +Chasity's +Chateaubriand +Chateaubriand's +Chattahoochee +Chattahoochee's +Chattanooga +Chattanooga's +Chatterley +Chatterley's +Chatterton +Chaucer +Chaucer's +Chauncey +Chauncey's +Chautauqua +Chavez +Chavez's +Chayefsky +Chayefsky's +Che +Che's +Chechen +Chechnya +Chechnya's +Cheddar +Cheer +Cheer's +Cheerios +Cheerios's +Cheetos +Cheetos's +Cheever +Chekhov +Chekhov's +Chelsea +Chelyabinsk +Chelyabinsk's +Chen +Chen's +Cheney +Cheney's +Chengdu +Chennai +Chennai's +Cheops +Cheri +Cheri's +Cherie +Cherie's +Chernenko +Chernenko's +Chernobyl +Chernobyl's +Chernomyrdin +Chernomyrdin's +Cherokee +Cherokee's +Cherokees +Cherry +Cherry's +Cheryl +Cheryl's +Chesapeake +Cheshire +Chester +Chester's +Chesterfield +Chesterton +Chevalier +Cheviot +Cheviot's +Chevrolet +Chevrolet's +Chevron +Chevron's +Chevy +Chevy's +Cheyenne +Cheyenne's +Cheyennes +Chi +Chi's +Chianti +Chianti's +Chiantis +Chiba +Chibcha +Chicago +Chicago's +Chicagoan +Chicana +Chicano +Chickasaw +Chickasaw's +Chiclets +Chiclets's +Chihuahua +Chihuahua's +Chihuahuas +Chile +Chile's +Chilean +Chilean's +Chileans +Chimborazo +Chimborazo's +Chimera +Chimera's +Chimu +Chimu's +China +China's +Chinatown +Chinese +Chinese's +Chinook +Chinook's +Chinooks +Chipewyan +Chipewyan's +Chippendale +Chippendale's +Chippewa +Chippewa's +Chiquita +Chiquita's +Chirico +Chisholm +Chisholm's +Chisinau +Chisinau's +Chittagong +Chivas +Chivas's +Chloe +Choctaw +Choctaw's +Chomsky +Chongqing +Chopin +Chopin's +Chopra +Chopra's +Chou +Chretien +Chretien's +Chris +Chris's +Christ +Christ's +Christa +Christa's +Christchurch +Christendom +Christendom's +Christendoms +Christensen +Christensen's +Christi +Christi's +Christian +Christian's +Christianities +Christianity +Christianity's +Christians +Christie +Christina +Christine +Christine's +Christmas +Christmas's +Christmases +Christoper +Christoper's +Christopher +Christopher's +Christs +Christy +Chrysler +Chrysler's +Chrysostom +Chrystal +Chrystal's +Chuck +Chuck's +Chukchi +Chumash +Chung +Chung's +Chungking +Chungking's +Church +Churchill +Churchill's +Churriguera +Churriguera's +Chuvash +Chuvash's +Ci +Cicero +Cicero's +Cid +Cimabue +Cimabue's +Cincinnati +Cinderella +Cinderella's +Cinderellas +Cindy +Cindy's +CinemaScope +CinemaScope's +Cinerama +Cipro +Cipro's +Circe +Circe's +Cisco +Cisco's +Citibank +Citibank's +Citigroup +Citigroup's +Citroen +Citroen's +Cl +Cl's +Claiborne +Claiborne's +Clair +Clair's +Claire +Claire's +Clairol +Clairol's +Clancy +Clancy's +Clapeyron +Clapeyron's +Clapton +Clapton's +Clara +Clara's +Clare +Clarence +Clarence's +Clarendon +Clarice +Clarice's +Clarissa +Clarissa's +Clark +Clarke +Clarke's +Claude +Claude's +Claudette +Claudette's +Claudia +Claudia's +Claudine +Claudine's +Claudio +Claudio's +Claudius +Claudius's +Claus +Claus's +Clausewitz +Clausius +Clay +Clayton +Clayton's +Clearasil +Clearasil's +Clem +Clem's +Clemenceau +Clemens +Clement +Clement's +Clementine +Clementine's +Clements +Clemons +Clemson +Clemson's +Cleo +Cleo's +Cleopatra +Cleopatra's +Cleveland +Cleveland's +Cliburn +Cliburn's +Cliff +Cliff's +Clifford +Clifton +Clifton's +Cline +Cline's +Clint +Clint's +Clinton +Clinton's +Clio +Clio's +Clive +Clorets +Clorets's +Clorox +Clorox's +Clotho +Clotho's +Clouseau +Clouseau's +Clovis +Clovis's +Clyde +Clydesdale +Clydesdale's +Clytemnestra +Cm +Cm's +Co +Co's +Cobain +Cobain's +Cobb +Cochabamba +Cochin +Cochise +Cochran +Cochran's +Cockney +Cockney's +Cocteau +Cody +Coffey +Coffey's +Cognac +Cognac's +Cohan +Cohen +Coimbatore +Cointreau +Coke +Coke's +Cokes +Col +Colbert +Colbert's +Colby +Cole +Coleen +Coleen's +Coleman +Coleman's +Coleridge +Coleridge's +Colette +Colfax +Colfax's +Colgate +Colgate's +Colin +Colin's +Colleen +Colleen's +Collier +Collier's +Collin +Collin's +Collins +Colo +Cologne +Cologne's +Colombia +Colombia's +Colombian +Colombian's +Colombians +Colombo +Colombo's +Colon +Colon's +Colorado +Colorado's +Colosseum +Colt +Colt's +Coltrane +Columbia +Columbia's +Columbine +Columbus +Columbus's +Com +Comanche +Comanche's +Comanches +Combs +Combs's +Comintern +Commons +Commonwealth +Communion +Communion's +Communions +Communism +Communist +Communist's +Communists +Como +Comoros +Comoros's +Compaq +Compaq's +Compton +CompuServe +CompuServe's +Comte +Conakry +Conakry's +Conan +Conan's +Concepción +Concetta +Concetta's +Concord +Concord's +Concorde +Concords +Condillac +Condorcet +Conestoga +Conestoga's +Confederacy +Confederacy's +Confederate +Confederate's +Confederates +Confucian +Confucian's +Confucianism +Confucianism's +Confucianisms +Confucians +Confucius +Confucius's +Cong +Congo +Congo's +Congolese +Congolese's +Congregationalist +Congregationalist's +Congregationalists +Congress +Congress's +Congresses +Congreve +Conley +Conley's +Conn +Connecticut +Connecticut's +Connemara +Conner +Conner's +Connery +Connery's +Connie +Connie's +Connolly +Connolly's +Connors +Conrad +Conrail +Conrail's +Constable +Constance +Constantine +Constantinople +Constantinople's +Constitution +Consuelo +Consuelo's +Continent +Continent's +Continental +Contreras +Contreras's +Conway +Cook +Cooke +Cooke's +Cooley +Cooley's +Coolidge +Coolidge's +Cooper +Cooperstown +Cooperstown's +Coors +Coors's +Copacabana +Copacabana's +Copeland +Copeland's +Copenhagen +Copenhagen's +Copernican +Copernicus +Copernicus's +Copland +Copley +Copperfield +Copperfield's +Coppertone +Coppertone's +Coppola +Coppola's +Coptic +Coptic's +Cora +Cora's +Cordelia +Cordelia's +Cordilleras +Cordoba +Cordoba's +Corey +Corey's +Corfu +Corina +Corina's +Corine +Corine's +Corinne +Corinne's +Corinth +Corinth's +Corinthian +Corinthian's +Corinthians +Coriolanus +Coriolis +Coriolis's +Corleone +Corleone's +Cormack +Cormack's +Corneille +Cornelia +Cornelia's +Cornelius +Cornelius's +Cornell +Cornell's +Corning +Corning's +Cornish +Cornish's +Cornwall +Cornwall's +Cornwallis +Coronado +Corot +Correggio +Corrine +Corrine's +Corsica +Corsica's +Corsican +Cortes +Cortes's +Corteses +Cortez +Cortez's +Cortland +Cortland's +Corvallis +Corvallis's +Corvette +Corvette's +Corvus +Corvus's +Cory +Cory's +Cosby +Cosby's +Cossack +Costco +Costco's +Costello +Costello's +Costner +Costner's +Cote +Cote's +Cotonou +Cotopaxi +Cotopaxi's +Cotswold +Cotswold's +Cotton +Cotton's +Coulomb +Coulter +Coulter's +Couperin +Courbet +Courtney +Courtney's +Cousteau +Coventries +Coventry +Coventry's +Coward +Cowley +Cowper +Cox +Coy +Coy's +Cozumel +Cozumel's +Cr +Cr's +Crabbe +Craft +Craft's +Craig +Cranach +Crane +Cranmer +Crater +Crater's +Crawford +Crawford's +Cray +Cray's +Crayola +Crayola's +Creation +Creation's +Creator +Creator's +Crecy +Crecy's +Cree +Cree's +Creek +Creek's +Creighton +Creighton's +Creole +Creole's +Creoles +Creon +Crest +Crest's +Cretaceous +Cretaceous's +Cretan +Cretan's +Crete +Crete's +Crichton +Crick +Crimea +Crimea's +Crimean +Criollo +Crisco +Crisco's +Cristina +Cristina's +Croat +Croat's +Croatia +Croatia's +Croatian +Croatian's +Croatians +Croats +Croce +Crockett +Croesus +Cromwell +Cromwell's +Cromwellian +Cronin +Cronin's +Cronkite +Cronkite's +Cronus +Cronus's +Crookes +Crosby +Cross +Crowley +Crowley's +Cruikshank +Cruise +Cruise's +Crusades +Crusoe +Crusoe's +Crux +Crux's +Cruz +Cruz's +Cryptozoic +Cryptozoic's +Crystal +Crystal's +Cs +Csonka +Csonka's +Ctesiphon +Cthulhu +Cthulhu's +Cu +Cu's +Cuba +Cuba's +Cuban +Cuban's +Cubans +Cuchulain +Cuchulain's +Cuisinart +Culbertson +Cullen +Cullen's +Cumberland +Cumberland's +Cummings +Cunard +Cunard's +Cunningham +Cunningham's +Cupid +Cupid's +Curacao +Curacao's +Curie +Curitiba +Currier +Currier's +Curry +Curt +Curt's +Curtis +Curtis's +Custer +Cuvier +Cuvier's +Cuzco +Cybele +Cybele's +Cyclades +Cyclades's +Cyclops +Cyclops's +Cygnus +Cygnus's +Cymbeline +Cymbeline's +Cynthia +Cynthia's +Cyprian +Cyprian's +Cypriot +Cypriot's +Cypriots +Cyprus +Cyprus's +Cyrano +Cyrano's +Cyril +Cyrillic +Cyrillic's +Cyrus +Czech +Czech's +Czechoslovakia +Czechoslovakia's +Czechoslovakian +Czechoslovakian's +Czechoslovakians +Czechs +Czerny +D +D's +DA's +DAT's +DC's +DD's +DDS's +DNA's +DOS's +DP's +Dacca +Dacca's +Dachau +Dachau's +Dacron +Dacron's +Dacrons +Dada +Dada's +Dadaism +Dadaism's +Daedalus +Daedalus's +Daguerre +Dagwood +Dahomey +Dahomey's +Daimler +Daimler's +Daisy +Dakar +Dakar's +Dakota +Dakota's +Dakotan +Dakotas +Dale +Daley +Daley's +Dali +Dalian +Dalian's +Dallas +Dallas's +Dalmatian +Dalmatian's +Dalmatians +Dalton +Dalton's +Damascus +Damascus's +Damian +Damian's +Damien +Damion +Damion's +Damocles +Damon +Damon's +Dan +Dana +Dana's +Dane +Dane's +Danelaw +Danes +Dangerfield +Dangerfield's +Danial +Danial's +Daniel +Daniel's +Danielle +Danielle's +Daniels +Danish +Danish's +Dannie +Dannie's +Danny +Danny's +Danone +Danone's +Dante +Dante's +Danton +Danube +Danube's +Danubian +Daphne +Daphne's +Darby +Darby's +Darcy +Darcy's +Dardanelles +Dardanelles's +Dare +Daren +Daren's +Darfur +Darin +Darin's +Dario +Dario's +Darius +Darjeeling +Darla +Darla's +Darlene +Darlene's +Darling +Darling's +Darnell +Darnell's +Darrel +Darrel's +Darrell +Darrell's +Darren +Darren's +Darrin +Darrin's +Darrow +Darryl +Darryl's +Darth +Darth's +Dartmoor +Dartmouth +Darvon +Darvon's +Darwin +Darwin's +Darwinian +Darwinism +Darwinism's +Daryl +Daryl's +Daugherty +Daugherty's +Daumier +Davao +Dave +Dave's +Davenport +David +David's +Davids +Davidson +Davidson's +Davies +Davis +Davy +Dawes +Dawn +Dawn's +Dawson +Day +Dayton +DeGeneres +DeGeneres's +Deadhead +Deadhead's +Dean +Deana +Deana's +Deandre +Deandre's +Deann +Deann's +Deanna +Deanna's +Deanne +Deanne's +Debbie +Debbie's +Debby +Debby's +Debian +Debian's +Debora +Debora's +Deborah +Debouillet +Debouillet's +Debra +Debra's +Debs +Debussy +Dec +Dec's +Decalogue +Decalogue's +Decatur +Decca +Decca's +Deccan +December +December's +Decembers +Decker +Dedekind +Dedekind's +Dee +Deena +Deena's +Deere +Deere's +Defoe +Degas +Deidre +Deidre's +Deimos +Deirdre +Deity +Dejesus +Dejesus's +Del +Delacroix +Delacruz +Delacruz's +Delaney +Delaney's +Delano +Delano's +Delaware +Delaware's +Delawarean +Delawarean's +Delawareans +Delawares +Delbert +Delbert's +Deleon +Deleon's +Delgado +Delhi +Delhi's +Delia +Delia's +Delibes +Delicious +Delicious's +Delilah +Delilah's +Delius +Dell +Dell's +Della +Della's +Delmar +Delmar's +Delmarva +Delmarva's +Delmer +Delmer's +Delmonico +Delores +Delores's +Deloris +Deloris's +Delphi +Delphi's +Delphic +Delphinus +Delphinus's +Delta +Dem +Demavend +Demavend's +Demerol +Demerol's +Demeter +Demeter's +Demetrius +Demetrius's +Deming +Deming's +Democrat +Democrat's +Democratic +Democrats +Democritus +Demosthenes +Demosthenes's +Dempsey +Dena +Dena's +Deneb +Denebola +Denebola's +Deng +Deng's +Denis +Denise +Denise's +Denmark +Denmark's +Dennis +Denny +Denny's +Denver +Denver's +Deon +Deon's +Depp +Depp's +Derby +Derek +Derek's +Derick +Derick's +Derrick +Derrick's +Derrida +Derrida's +Descartes +Descartes's +Desdemona +Desdemona's +Desiree +Desiree's +Desmond +Desmond's +Detroit +Detroit's +Deuteronomy +Deuteronomy's +Devanagari +Devanagari's +Devi +Devi's +Devin +Devin's +Devon +Devon's +Devonian +Devonian's +Dewar +Dewar's +Dewayne +Dewayne's +Dewey +Dewey's +Dewitt +Dewitt's +Dexedrine +Dexedrine's +Dexter +Dhaka +Dhaka's +Dhaulagiri +Dhaulagiri's +Di +DiCaprio +DiCaprio's +DiMaggio +Diaghilev +Dial +Dial's +Diana +Diana's +Diane +Diane's +Diann +Diann's +Dianna +Dianna's +Dianne +Dianne's +Diaspora +Diaspora's +Diaz +Dick +Dickens +Dickerson +Dickerson's +Dickinson +Dickson +Dickson's +Dictaphone +Dictaphone's +Diderot +Dido +Dido's +Didrikson +Didrikson's +Diefenbaker +Diego +Diego's +Diem +Diem's +Diesel +Diesel's +Dietrich +Dijkstra +Dijkstra's +Dijon +Dilbert +Dilbert's +Dillard +Dillard's +Dillinger +Dillinger's +Dillon +Dillon's +Dina +Dina's +Dinah +Dino +Dino's +Diocletian +Diogenes +Dion +Dion's +Dionne +Dionne's +Dionysian +Dionysus +Dionysus's +Diophantine +Diophantine's +Dior +Dipper +Dipper's +Dirac +Dirichlet +Dirk +Dirk's +Dis +Dis's +Disney +Disneyland +Disraeli +Diwali +Diwali's +Dix +Dixie +Dixie's +Dixiecrat +Dixieland +Dixieland's +Dixielands +Dixon +Dixon's +Djakarta +Djakarta's +Djibouti +Djibouti's +Dmitri +Dmitri's +Dnepropetrovsk +Dnieper +Dniester +Dobbin +Dobbin's +Doberman +Doberman's +Dobro +Doctor +Doctorow +Doctorow's +Dodge +Dodge's +Dodgson +Dodgson's +Dodoma +Dodoma's +Dodson +Dodson's +Doe +Doha +Doha's +Dolby +Dole +Dole's +Dollie +Dollie's +Dolly +Dolly's +Dolores +Dolores's +Domesday +Domesday's +Domingo +Domingo's +Dominguez +Dominguez's +Dominic +Dominica +Dominica's +Dominican +Dominican's +Dominicans +Dominick +Dominick's +Dominique +Dominique's +Domitian +Don +Don's +Dona +Donahue +Donahue's +Donald +Donald's +Donaldson +Donaldson's +Donatello +Donetsk +Donetsk's +Donizetti +Donizetti's +Donn +Donn's +Donna +Donne +Donne's +Donnell +Donnell's +Donner +Donner's +Donnie +Donnie's +Donny +Donny's +Donovan +Donovan's +Dooley +Dooley's +Doolittle +Doonesbury +Doonesbury's +Doppler +Dora +Dora's +Dorcas +Doreen +Doreen's +Dorian +Dorian's +Doric +Doric's +Doris +Doris's +Doritos +Doritos's +Dorothea +Dorothea's +Dorothy +Dorothy's +Dorset +Dorsey +Dorsey's +Dorthy +Dorthy's +Dortmund +Dostoevsky +Dostoevsky's +Dot +Dot's +Dotson +Dotson's +Douala +Douala's +Douay +Douay's +Doubleday +Doubleday's +Doug +Doug's +Douglas +Douglass +Douro +Dover +Dover's +Dow +Downs +Downy +Downy's +Doyle +Dr +Draco +Draco's +Draconian +Dracula +Dracula's +Drake +Dramamine +Dramamine's +Drambuie +Drano +Drano's +Dravidian +Dravidian's +Dreiser +Dresden +Dresden's +Drew +Drew's +Dreyfus +Dreyfus's +Dristan +Dristan's +Drudge +Drudge's +Druid +Dryden +Dschubba +Dschubba's +DuPont +Duane +Duane's +Dubai +Dubcek +Dubcek's +Dubhe +Dubhe's +Dublin +Dublin's +Dubrovnik +Dubrovnik's +Duchamp +Dudley +Duffy +Duffy's +Duisburg +Duke +Duke's +Dulles +Duluth +Dumas +Dumbledore +Dumbledore's +Dumbo +Dumbo's +Dumpster +Dunant +Dunbar +Duncan +Dunedin +Dunkirk +Dunkirk's +Dunlap +Dunlap's +Dunn +Dunn's +Dunne +Dunne's +Duracell +Duracell's +Duran +Duran's +Durant +Durante +Durante's +Durban +Durex +Durex's +Durham +Durham's +Durhams +Durkheim +Duroc +Durocher +Durocher's +Duse +Duse's +Dushanbe +Dushanbe's +Dustbuster +Dustbuster's +Dustin +Dustin's +Dusty +Dusty's +Dutch +Dutch's +Dutchman +Dutchman's +Dutchmen +Duvalier +Dvina +Dvorák +Dwayne +Dwayne's +Dwight +Dwight's +Dyer +Dyer's +Dylan +Dylan's +Dyson +Dyson's +Dzerzhinsky +Dzerzhinsky's +Dzungaria +Dürer +Düsseldorf +Düsseldorf's +E +E's +ECG's +ECMAScript +ECMAScript's +EEC's +EEG's +EKG's +EPA's +ESP's +EST's +Eakins +Earhart +Earl +Earl's +Earle +Earle's +Earlene +Earlene's +Earline +Earline's +Earnest +Earnest's +Earnestine +Earnestine's +Earnhardt +Earnhardt's +Earp +Earp's +Earth +Earth's +East +East's +Easter +Easter's +Eastern +Easterner +Easters +Eastman +Easts +Eastwood +Eastwood's +Eaton +Eaton's +Eben +Eben's +Ebeneezer +Ebeneezer's +Ebert +Ebola +Ebonics +Ebonics's +Ebony +Ebony's +Ebro +Ebro's +Ecclesiastes +Eco +Eco's +Ecuador +Ecuador's +Ecuadoran +Ecuadoran's +Ecuadorans +Ecuadorian +Ecuadorian's +Ecuadorians +Ed +Ed's +Edam +Edam's +Edams +Edda +Eddie +Eddie's +Eddington +Eddington's +Eddy +Eddy's +Eden +Eden's +Edens +Edgar +Edgardo +Edgardo's +Edinburgh +Edinburgh's +Edison +Edison's +Edith +Edith's +Edmond +Edmond's +Edmonton +Edmonton's +Edmund +Edmund's +Edna +Edna's +Edsel +Eduardo +Eduardo's +Edward +Edward's +Edwardian +Edwardian's +Edwardo +Edwardo's +Edwards +Edwin +Edwina +Edwina's +Eeyore +Eeyore's +Effie +Effie's +Efrain +Efrain's +Efren +Efren's +Eggo +Eggo's +Egypt +Egypt's +Egyptian +Egyptian's +Egyptians +Egyptology +Egyptology's +Ehrenberg +Ehrenberg's +Ehrlich +Eichmann +Eiffel +Eileen +Eileen's +Einstein +Einstein's +Einsteins +Eire +Eire's +Eisenhower +Eisenhower's +Eisenstein +Eisner +Eisner's +Elaine +Elam +Elanor +Elanor's +Elastoplast +Elastoplast's +Elba +Elbe +Elbe's +Elbert +Elbrus +Eldon +Eldon's +Eleanor +Eleanor's +Eleazar +Eleazar's +Electra +Electra's +Elena +Elena's +Elgar +Eli +Elias +Elijah +Elijah's +Elinor +Elinor's +Eliot +Elisa +Elisa's +Elisabeth +Elise +Elise's +Eliseo +Eliseo's +Elisha +Eliza +Eliza's +Elizabeth +Elizabeth's +Elizabethan +Elizabethan's +Elizabethans +Ella +Ella's +Ellen +Ellen's +Ellesmere +Ellesmere's +Ellie +Ellie's +Ellington +Elliot +Elliot's +Elliott +Elliott's +Ellis +Ellison +Ellison's +Elma +Elma's +Elmer +Elmer's +Elmo +Elmo's +Elnath +Elnath's +Elnora +Elnora's +Elohim +Eloise +Eloise's +Eloy +Eloy's +Elroy +Elroy's +Elsa +Elsa's +Elsie +Elsie's +Elsinore +Eltanin +Eltanin's +Elton +Elton's +Elul +Elul's +Elva +Elva's +Elvia +Elvia's +Elvin +Elvin's +Elvira +Elvira's +Elvis +Elvis's +Elway +Elway's +Elwood +Elwood's +Elysian +Elysium +Elysium's +Elysiums +Elysée +Elysée's +Emacs +Emacs's +Emanuel +Emanuel's +Emerson +Emery +Emery's +Emil +Emil's +Emile +Emile's +Emilia +Emilia's +Emilio +Emilio's +Emily +Emily's +Eminem +Eminem's +Emma +Emma's +Emmanuel +Emmett +Emmett's +Emmy +Emory +Emory's +Encarta +Encarta's +Endymion +Eng +Engels +Engels's +England +England's +English +English's +Englisher +Englishes +Englishman +Englishman's +Englishmen +Englishwoman +Englishwoman's +Englishwomen +Enid +Enif +Enif's +Eniwetok +Eniwetok's +Enkidu +Enkidu's +Enoch +Enos +Enrico +Enrico's +Enrique +Enrique's +Enron +Enron's +Enterprise +Enterprise's +Eocene +Eocene's +Epcot +Epcot's +Ephesian +Ephesus +Ephraim +Epictetus +Epicurean +Epicurus +Epicurus's +Epimethius +Epimethius's +Epiphanies +Epiphany +Epiphany's +Episcopal +Episcopalian +Episcopalian's +Episcopalians +Epsom +Epson +Epson's +Epstein +Equuleus +Er +Er's +Erasmus +Erasmus's +Erato +Erato's +Eratosthenes +Eratosthenes's +Erebus +Erebus's +Erector +Erewhon +Erewhon's +Erhard +Eric +Eric's +Erica +Erica's +Erich +Erich's +Erick +Erick's +Ericka +Ericka's +Erickson +Erickson's +Ericson +Ericsson +Eridanus +Erie +Erik +Erik's +Erika +Erika's +Erin +Eris +Eris's +Eritrea +Eritrea's +Erlenmeyer +Erlenmeyer's +Erma +Erma's +Erna +Erna's +Ernest +Ernest's +Ernestine +Ernestine's +Ernesto +Ernesto's +Ernie +Ernie's +Ernst +Eros +Eros's +Eroses +Errol +Errol's +Erse +Erse's +ErvIn +ErvIn's +Erwin +Erwin's +Es +Esau +Esau's +Escher +Escher's +Escherichia +Escherichia's +Eskimo +Eskimo's +Eskimos +Esmeralda +Esmeralda's +Esperanto +Esperanto's +Esperanza +Esperanza's +Espinoza +Espinoza's +Esq +Esq's +Essen +Essen's +Essene +Essequibo +Essex +Essie +Essie's +Establishment +Esteban +Esteban's +Estela +Estela's +Estella +Estella's +Estelle +Estelle's +Ester +Ester's +Esterházy +Esterházy's +Estes +Esther +Esther's +Estonia +Estonia's +Estonian +Estonian's +Estonians +Estrada +Estrada's +Ethan +Ethan's +Ethel +Ethel's +Ethelred +Ethelred's +Ethernet +Ethiopia +Ethiopia's +Ethiopian +Ethiopian's +Ethiopians +Etna +Etna's +Eton +Etruria +Etruscan +Etta +Etta's +Eu +Eu's +Eucharist +Eucharist's +Eucharistic +Eucharists +Euclid +Euclid's +Euclidean +Eugene +Eugenia +Eugenia's +Eugenie +Eugenie's +Eugenio +Eugenio's +Eula +Eula's +Euler +Eumenides +Eumenides's +Eunice +Eunice's +Euphrates +Euphrates's +Eurasia +Eurasia's +Eurasian +Eurasian's +Eurasians +Euripides +Eurodollar +Eurodollar's +Eurodollars +Europa +Europa's +Europe +Europe's +European +European's +Europeans +Eurydice +Eurydice's +Eustachian +Eustachian's +Euterpe +Euterpe's +Eva +Eva's +Evan +Evan's +Evangelina +Evangelina's +Evangeline +Evangeline's +Evans +Evansville +Eve +Eve's +Evelyn +Evenki +Evenki's +EverReady +EverReady's +Everest +Everest's +Everett +Everett's +Everette +Everette's +Everglades +Everglades's +Evert +Evert's +Evian +Evian's +Evita +Evita's +Ewing +Ewing's +Excalibur +Excalibur's +Excedrin +Excedrin's +Excellencies +Excellency +Excellency's +Exercycle +Exocet +Exocet's +Exodus +Exodus's +Exxon +Exxon's +Eyck +Eyck's +Eyre +Eysenck +Eysenck's +Ezekiel +Ezra +F +F's +FBI's +FDIC's +FDR +FDR's +FHA's +FICA's +FM's +FNMA +FNMA's +FORTRAN's +Fabergé +Fabian +Fabian's +Facebook +Facebook's +Faeroe +Faeroe's +Fafnir +Fagin +Fagin's +Fahd +Fahd's +Fahrenheit +Fairbanks +Faisal +Faisal's +Faisalabad +Faith +Falasha +Falkland +Falkland's +Falklands +Fallopian +Fallopian's +Falstaff +Falstaff's +Falwell +Falwell's +Fannie +Fannie's +Fanny +Fanny's +Faraday +Faraday's +Fargo +Fargo's +Farley +Farley's +Farmer +Farragut +Farrakhan +Farrakhan's +Farrell +Farrell's +Farrow +Farrow's +Farsi +Farsi's +Fassbinder +Fassbinder's +Fatah +Fatah's +Fates +Father +Father's +Fathers +Fatima +Fatimid +Faulkner +Faulkner's +Faulknerian +Fauntleroy +Fauntleroy's +Faust +Faust's +Faustian +Faustino +Faustino's +Faustus +Faustus's +Fawkes +Fay +Fay's +Faye +Faye's +Fe +Fe's +Feb +Feb's +Februaries +February +February's +Fed +Fed's +FedEx +Federalist +Federalist's +Federico +Federico's +Feds +Felecia +Felecia's +Felice +Felice's +Felicia +Felicia's +Felicity +Felicity's +Felipe +Felipe's +Felix +Felix's +Fellini +Fenian +Ferber +Ferber's +Ferdinand +Fergus +Ferguson +Ferguson's +Ferlinghetti +Ferlinghetti's +Fermat +Fermat's +Fermi +Fern +Fern's +Fernandez +Fernandez's +Fernando +Fernando's +Ferrari +Ferrari's +Ferraro +Ferraro's +Ferrell +Ferrell's +Ferris +Feynman +Feynman's +Fez +Fiat +Fiat's +Fiberglas +Fibonacci +Fibonacci's +Fichte +Fidel +Fidel's +Fido +Fido's +Fielding +Fields +Figaro +Figaro's +Figueroa +Figueroa's +Fiji +Fiji's +Fijian +Fijian's +Fijians +Filipino +Filipino's +Filipinos +Fillmore +Fillmore's +Filofax +Finch +Finch's +Finland +Finland's +Finley +Finley's +Finn +Finn's +Finnbogadottir +Finnbogadottir's +Finnegan +Finnegan's +Finnish +Finnish's +Finns +Fiona +Fiona's +Firefox +Firefox's +Firestone +Firestone's +Fischer +Fisher +Fisk +Fisk's +Fitch +Fitch's +Fitzgerald +Fitzpatrick +Fitzpatrick's +Fitzroy +Fitzroy's +Fizeau +Fizeau's +Fla +Flanagan +Flanagan's +Flanders +Flanders's +Flatt +Flatt's +Flaubert +Fleischer +Fleischer's +Fleming +Flemish +Flemish's +Fletcher +Flint +Flintstones +Flo +Flo's +Flora +Florence +Florence's +Florentine +Flores +Florida +Florida's +Floridan +Florine +Florine's +Florsheim +Florsheim's +Flory +Flory's +Flossie +Flossie's +Flowers +Floyd +Flynn +Flynn's +Fm +Fm's +Foch +Fokker +Foley +Folgers +Folsom +Fomalhaut +Fonda +Foosball +Foosball's +Forbes +Ford +Ford's +Foreman +Foreman's +Forest +Forest's +Forester +Formica +Formica's +Formicas +Formosa +Formosa's +Formosan +Formosan's +Forrest +Forster +Fortaleza +Fosse +Fosse's +Foster +Fotomat +Fotomat's +Foucault +Fourier +Fourneyron +Fourneyron's +Fowler +Fox +Fox's +Fr +Fr's +Fragonard +Fran +Fran's +France +France's +Frances +Francesca +Francine +Francine's +Francis +Francisca +Francisca's +Franciscan +Franciscan's +Francisco +Francisco's +Franck +Franco +Francois +Francois's +Francoise +Francoise's +Franglais +Frank +Frank's +Frankel +Frankel's +Frankenstein +Frankfort +Frankfort's +Frankfurt +Frankfurt's +Frankfurter +Frankie +Frankie's +Franklin +Franks +Franny +Franny's +Franz +Franz's +Fraser +Frazier +Frazier's +Fred +Fred's +Freda +Freda's +Freddie +Freddie's +Freddy +Freddy's +Frederic +Frederic's +Frederick +Fredericton +Fredericton's +Fredric +Fredric's +Fredrick +Fredrick's +Freeman +Freeman's +Freemason +Freemason's +Freemasonries +Freemasonry +Freemasonry's +Freemasons +Freetown +Freetown's +Freida +Freida's +Fremont +French +French's +Frenches +Frenchman +Frenchman's +Frenchmen +Frenchwoman +Frenchwoman's +Frenchwomen +Freon +Fresnel +Fresnel's +Fresno +Fresno's +Freud +Freud's +Freudian +Frey +Frey's +Freya +Freya's +Fri +Fri's +Friday +Friday's +Fridays +Frieda +Frieda's +Friedan +Friedman +Frigga +Frigga's +Frigidaire +Frisbee +Frisco +Frisian +Frisian's +Frito +Frito's +Fritz +Fritz's +Frobisher +Froissart +Fromm +Fronde +Frontenac +Frontenac's +Frost +Frost's +Frostbelt +Fry +Frye +Frye's +Fuchs +Fuchs's +Fuentes +Fugger +Fuji +Fuji's +Fujitsu +Fujitsu's +Fujiwara +Fujiwara's +Fukuoka +Fukuoka's +Fulani +Fulani's +Fulbright +Fuller +Fulton +Fulton's +Funafuti +Fundy +Furtwängler +Furtwängler's +Fushun +Fuzhou +Fuzhou's +Fuzzbuster +G +G's +GE +GE's +GHQ's +GMT's +GNP's +GOP's +GP's +GTE +GTE's +Ga +Ga's +Gable +Gabon +Gabon's +Gaborone +Gaborone's +Gabriel +Gabriela +Gabriela's +Gabrielle +Gabrielle's +Gacrux +Gacrux's +Gadsden +Gadsden's +Gaea +Gaea's +Gael +Gael's +Gaelic +Gaelic's +Gagarin +Gage +Gail +Gail's +Gaiman +Gaiman's +Gaines +Gaines's +Gainsborough +Gainsborough's +Galahad +Galahad's +Galahads +Galapagos +Galapagos's +Galatea +Galatia +Galatians +Galbraith +Gale +Gale's +Galen +Galibi +Galilean +Galilean's +Galilee +Galileo +Galileo's +Gall +Gall's +Gallagher +Gallagher's +Gallegos +Gallegos's +Gallic +Gallo +Gallo's +Galloway +Galloway's +Gallup +Galois +Galois's +Galsworthy +Galvani +Galveston +Galveston's +Gamay +Gambia +Gambia's +Gamble +Gamble's +Gamow +Gamow's +Gandhi +Gandhi's +Gandhian +Ganesha +Ganesha's +Ganges +Ganges's +Gangtok +Gangtok's +Gantry +Gantry's +Ganymede +Ganymede's +Gap +Gap's +Garbo +Garcia +Garcia's +Gardner +Gardner's +Gareth +Gareth's +Garfield +Garfield's +Garfunkel +Garfunkel's +Gargantua +Garibaldi +Garibaldi's +Garland +Garner +Garrett +Garrett's +Garrick +Garrison +Garry +Garry's +Garth +Garth's +Garvey +Gary +Garza +Garza's +Gascony +Gascony's +Gasser +Gates +Gatling +Gatling's +Gatorade +Gatorade's +Gatsby +Gatsby's +Gatun +Gatun's +Gauguin +Gauguin's +Gaul +Gaul's +Gauls +Gauss +Gauss's +Gaussian +Gautama +Gautama's +Gautier +Gavin +Gavin's +Gawain +Gawain's +Gay +Gayle +Gayle's +Gaza +Gaziantep +Gd +Gd's +Gdansk +Gdansk's +Ge +Ge's +Geffen +Geffen's +Gehenna +Gehenna's +Gehrig +Geiger +Geiger's +Gelbvieh +Gelbvieh's +Geller +Geller's +Gemini +Gemini's +Geminis +Gen +Gena +Gena's +Genaro +Genaro's +Gene +Gene's +Genesis +Genesis's +Genet +Genet's +Geneva +Geneva's +Genevieve +Genevieve's +Genghis +Genghis's +Genoa +Genoa's +Genoas +Gentoo +Gentry +Gentry's +Geo +Geo's +Geoffrey +Geoffrey's +George +George's +Georges +Georgetown +Georgetown's +Georgette +Georgia +Georgia's +Georgian +Georgian's +Georgians +Georgina +Georgina's +Ger +Gerald +Gerald's +Geraldine +Geraldine's +Gerard +Gerard's +Gerardo +Gerardo's +Gerber +Gerber's +Gere +Gere's +Geritol +Geritol's +German +German's +Germanic +Germanic's +Germans +Germany +Germany's +Geronimo +Gerry +Gerry's +Gershwin +Gertrude +Gertrude's +Gestapo +Gestapo's +Gestapos +Gethsemane +Getty +Gettysburg +Gettysburg's +Gewürztraminer +Ghana +Ghana's +Ghanaian +Ghanian +Ghanian's +Ghanians +Ghats +Ghazvanid +Ghazvanid's +Ghent +Ghibelline +Giacometti +Giannini +Giannini's +Giauque +Giauque's +Gibbon +Gibbs +Gibraltar +Gibraltar's +Gibraltars +Gibson +Gide +Gideon +Gielgud +Gienah +Gienah's +Gil +Gil's +Gila +Gila's +Gilbert +Gilbert's +Gilberto +Gilberto's +Gilchrist +Gilchrist's +Gilda +Gilda's +Gilead +Giles +Gilgamesh +Gill +Gillespie +Gillette +Gillette's +Gilliam +Gilliam's +Gillian +Gillian's +Gilligan +Gilligan's +Gilmore +Gilmore's +Gina +Gina's +Ginger +Ginger's +Gingrich +Gingrich's +Ginny +Ginny's +Gino +Gino's +Ginsberg +Ginsburg +Ginsburg's +Ginsu +Ginsu's +Giorgione +Giotto +Giovanni +Giovanni's +Gipsies +Gipsy +Gipsy's +Giraudoux +Giselle +Giselle's +Gish +Giuliani +Giuliani's +Giuseppe +Giuseppe's +Giza +Giza's +Gladstone +Gladstone's +Gladstones +Gladys +Glaser +Glasgow +Glasgow's +Glass +Glass's +Glastonbury +Glastonbury's +Glaswegian +Glaswegian's +Glaxo +Glaxo's +Gleason +Gleason's +Glen +Glen's +Glenda +Glenda's +Glendale +Glenlivet +Glenlivet's +Glenn +Glenn's +Glenna +Glenna's +Gloria +Gloucester +Glover +Glover's +Gnostic +Gnosticism +Gnosticism's +Goa +Gobi +Gobi's +God +God's +Goddard +Godiva +Godiva's +Godot +Godot's +Godthaab +Godunov +Godzilla +Godzilla's +Goebbels +Goering +Goethals +Goethals's +Goethe +Goethe's +Goff +Goff's +Gog +Gogol +Goiania +Goiania's +Golan +Golan's +Golconda +Golda +Golda's +Goldberg +Goldberg's +Golden +Golden's +Goldie +Goldie's +Goldilocks +Goldilocks's +Golding +Goldman +Goldman's +Goldsmith +Goldwater +Goldwater's +Goldwyn +Golgi +Golgotha +Golgotha's +Goliath +Gomez +Gomez's +Gomorrah +Gomorrah's +Gompers +Gomulka +Gondwanaland +Gondwanaland's +Gonzales +Gonzalez +Gonzalez's +Gonzalo +Gonzalo's +Good +Good's +Goodall +Goodall's +Goodman +Goodrich +Goodrich's +Goodwill +Goodwill's +Goodwin +Goodwin's +Goodyear +Google +Google's +Goolagong +Goolagong's +Gopher +Gorbachev +Gordian +Gordian's +Gordimer +Gordon +Gore +Goren +Goren's +Gorey +Gorey's +Gorgas +Gorgonzola +Gorky +Gorky's +Gospel +Gospel's +Gospels +Goth +Goth's +Gotham +Gothic +Gothic's +Gothics +Goths +Gouda +Gouda's +Goudas +Gould +Gounod +Goya +Grable +Grable's +Gracchus +Grace +Graceland +Graceland's +Gracie +Gracie's +Graciela +Graciela's +Grady +Grady's +Graffias +Graffias's +Grafton +Grafton's +Graham +Grahame +Grail +Grammy +Grampians +Granada +Granada's +Grant +Grant's +Grass +Graves +Gray +Grecian +Greece +Greece's +Greek +Greek's +Greeks +Greeley +Green +Green's +Greene +Greenland +Greenland's +Greenpeace +Greenpeace's +Greensboro +Greensboro's +Greensleeves +Greensleeves's +Greenspan +Greenspan's +Greenwich +Greenwich's +Greer +Greer's +Greg +Greg's +Gregg +Gregg's +Gregorian +Gregorio +Gregorio's +Gregory +Gregory's +Grenada +Grenada's +Grenadines +Grendel +Grenoble +Gresham +Greta +Greta's +Gretchen +Gretchen's +Gretel +Gretel's +Gretzky +Gretzky's +Grey +Grieg +Griffin +Griffin's +Griffith +Grimes +Grimm +Grimm's +Grinch +Grinch's +Gris +Gromyko +Gropius +Gropius's +Gross +Grosz +Grotius +Grover +Grover's +Grumman +Grumman's +Grundy +Grus +Grus's +Gruyeres +Gruyère +Gruyère's +Grünewald +Grünewald's +Guadalajara +Guadalajara's +Guadalcanal +Guadalcanal's +Guadalquivir +Guadalupe +Guadalupe's +Guadeloupe +Guadeloupe's +Guallatiri +Guallatiri's +Guam +Guam's +Guangzhou +Guangzhou's +Guantanamo +Guantanamo's +Guarani +Guarani's +Guarnieri +Guarnieri's +Guatemala +Guatemala's +Guatemalan +Guatemalan's +Guatemalans +Guayaquil +Guayaquil's +Gucci +Gucci's +Guelph +Guernsey +Guernsey's +Guernseys +Guerra +Guerra's +Guerrero +Guevara +Guggenheim +Guiana +Guiana's +Guillermo +Guillermo's +Guinea +Guinea's +Guinean +Guinean's +Guineans +Guinevere +Guinevere's +Guinness +Guinness's +Guiyang +Guizot +Gujarat +Gujarat's +Gujarati +Gujarati's +Gujranwala +Gullah +Gulliver +Gulliver's +Gumbel +Gumbel's +Gunther +Guofeng +Guofeng's +Gupta +Gupta's +Gurkha +Gurkha's +Gus +Gus's +Gustav +Gustav's +Gustavo +Gustavo's +Gustavus +Gustavus's +Gutenberg +Guthrie +Gutierrez +Gutierrez's +Guy +Guy's +Guyana +Guyana's +Guyanese +Guyanese's +Guzman +Guzman's +Gwalior +Gwen +Gwen's +Gwendoline +Gwendoline's +Gwendolyn +Gwendolyn's +Gwyn +Gwyn's +Gypsies +Gypsy +Gypsy's +Gödel +Gödel's +Göteborg +Göteborg's +H +H's +HF's +HIV's +HMO's +HP's +HQ's +HSBC +HSBC's +HTML's +HUD's +Haas +Haas's +Habakkuk +Haber +Haber's +Hadar +Hadar's +Hades +Hades's +Hadrian +Hafiz +Hafiz's +Hagar +Haggai +Hagiographa +Hagiographa's +Hague +Hahn +Haifa +Haifa's +Haiphong +Haiti +Haiti's +Haitian +Haitian's +Haitians +Hakka +Hakka's +Hakluyt +Hal +Hal's +Haldane +Hale +Haleakala +Haley +Haley's +Halifax +Halifax's +Hall +Halley +Halliburton +Halliburton's +Hallie +Hallie's +Hallmark +Hallmark's +Hallowe'en +Halloween +Halloween's +Halloweens +Hallstatt +Halon +Halon's +Hals +Halsey +Ham +Ham's +Haman +Haman's +Hamburg +Hamburg's +Hamburgs +Hamhung +Hamilcar +Hamilcar's +Hamill +Hamill's +Hamilton +Hamilton's +Hamiltonian +Hamitic +Hamitic's +Hamlet +Hamlin +Hamlin's +Hammarskjold +Hammerstein +Hammett +Hammett's +Hammond +Hammurabi +Hampshire +Hampshire's +Hampton +Hamsun +Han +Hancock +Handel +Handel's +Handy +Haney +Haney's +Hangul +Hangul's +Hangzhou +Hangzhou's +Hank +Hank's +Hanna +Hanna's +Hannah +Hannibal +Hannibal's +Hanoi +Hanoi's +Hanover +Hanover's +Hanoverian +Hanoverian's +Hans +Hansel +Hansel's +Hansen +Hansen's +Hanson +Hanson's +Hanukkah +Hanukkah's +Hanukkahs +Hapsburg +Hapsburg's +Harare +Harare's +Harbin +Hardin +Hardin's +Harding +Harding's +Hardy +Hargreaves +Harlan +Harlan's +Harlem +Harlem's +Harlequin +Harley +Harlow +Harmon +Harmon's +Harold +Harold's +Harper +Harper's +Harrell +Harrell's +Harriet +Harriet's +Harriett +Harriett's +Harrington +Harrington's +Harris +Harrisburg +Harrisburg's +Harrison +Harrison's +Harrods +Harry +Harry's +Hart +Harte +Hartford +Hartford's +Hartline +Hartline's +Hartman +Hartman's +Harvard +Harvard's +Harvey +Hasbro +Hasbro's +Hasidim +Hastings +Hastings's +Hatfield +Hathaway +Hatsheput +Hatsheput's +Hatteras +Hattie +Hattie's +Hauptmann +Hausa +Hausa's +Hausdorff +Hausdorff's +Havana +Havana's +Havanas +Havarti +Havel +Havoline +Havoline's +Hawaii +Hawaii's +Hawaiian +Hawaiian's +Hawaiians +Hawking +Hawkins +Hawthorne +Hay +Hay's +Hayden +Hayden's +Haydn +Haydn's +Hayes +Hayes's +Haynes +Hays +Haywood +Haywood's +Hayworth +Hayworth's +Hazel +Hazel's +Hazlitt +He +He's +Head +Head's +Hearst +Heath +Heather +Heather's +Heaviside +Hebe +Hebert +Hebert's +Hebraic +Hebrew +Hebrew's +Hebrews +Hebrides +Hebrides's +Hecate +Hector +Hector's +Hecuba +Heep +Heep's +Hefner +Hefner's +Hegel +Hegel's +Hegelian +Hegira +Heidegger +Heidelberg +Heidi +Heidi's +Heifetz +Heimlich +Heimlich's +Heine +Heineken +Heineken's +Heinlein +Heinlein's +Heinrich +Heinrich's +Heinz +Heisenberg +Heisman +Heisman's +Helen +Helen's +Helena +Helena's +Helene +Helene's +Helga +Helga's +Helicon +Heliopolis +Helios +Helios's +Hell +Hell's +Hellenic +Hellenic's +Hellenism +Hellenism's +Hellenisms +Hellenistic +Hellenization +Hellenize +Heller +Hellespont +Hellespont's +Hellman +Hells +Helmholtz +Helmholtz's +Helsinki +Helsinki's +Helvetius +Helvetius's +Hemingway +Hemingway's +Hench +Hench's +Henderson +Henderson's +Hendricks +Hendrix +Henley +Hennessy +Hennessy's +Henri +Henri's +Henrietta +Henrietta's +Henry +Henry's +Hensley +Hensley's +Henson +Henson's +Hepburn +Hephaestus +Hephaestus's +Hepplewhite +Hera +Hera's +Heraclitus +Herbart +Herbert +Herculaneum +Herculaneum's +Hercules +Hercules's +Herder +Hereford +Hereford's +Herero +Heriberto +Heriberto's +Herman +Herman's +Hermaphroditus +Hermes +Hermes's +Herminia +Herminia's +Hermitage +Hermite +Hermite's +Hermosillo +Hermosillo's +Hernandez +Hernandez's +Herod +Herod's +Herodotus +Herodotus's +Herrera +Herrera's +Herrick +Herring +Herring's +Herschel +Hersey +Hersey's +Hershel +Hershel's +Hershey +Hershey's +Hertz +Hertz's +Hertzsprung +Hertzsprung's +Herzegovina +Herzl +Heshvan +Heshvan's +Hesiod +Hesperus +Hess +Hesse +Hessian +Hester +Hester's +Heston +Heston's +Hettie +Hettie's +Hewitt +Hewitt's +Hewlett +Hewlett's +Heyerdahl +Heywood +Hezbollah +Hezbollah's +Hezekiah +Hf +Hf's +Hg +Hg's +Hialeah +Hiawatha +Hiawatha's +Hibernia +Hibernia's +Hickman +Hickman's +Hickok +Hicks +Hicks's +Hieronymus +Higgins +Higgins's +Highlander +Highlander's +Highlanders +Highness +Highness's +Hilario +Hilario's +Hilary +Hilary's +Hilbert +Hilda +Hilda's +Hildebrand +Hilfiger +Hilfiger's +Hill +Hillary +Hillel +Hilton +Himalaya +Himalaya's +Himalayas +Himmler +Hinayana +Hinayana's +Hindemith +Hindenburg +Hindi +Hindu +Hindu's +Hinduism +Hinduism's +Hinduisms +Hindus +Hindustan +Hindustan's +Hindustani +Hindustani's +Hines +Hinton +Hinton's +Hipparchus +Hippocrates +Hippocrates's +Hippocratic +Hiram +Hirobumi +Hirobumi's +Hirohito +Hiroshima +Hiroshima's +Hispanic +Hispanic's +Hispanics +Hispaniola +Hispaniola's +Hiss +Hiss's +Hitachi +Hitachi's +Hitchcock +Hitler +Hitler's +Hitlers +Hittite +Hittite's +Hmong +Ho +Ho's +Hobart +Hobart's +Hobbes +Hobbs +Hockney +Hockney's +Hodge +Hodge's +Hodges +Hodgkin +Hoff +Hoff's +Hoffa +Hoffa's +Hoffman +Hoffman's +Hofstadter +Hofstadter's +Hogan +Hogan's +Hogarth +Hogwarts +Hogwarts's +Hohenlohe +Hohenstaufen +Hohenzollern +Hohenzollern's +Hohhot +Hohhot's +Hohokam +Hokkaido +Hokkaido's +Hokusai +Holbein +Holcomb +Holcomb's +Holden +Holden's +Holder +Holder's +Holiday +Holland +Holland's +Hollands +Hollerith +Hollerith's +Holley +Holley's +Hollie +Hollie's +Hollis +Holloway +Holloway's +Holly +Hollywood +Hollywood's +Holman +Holman's +Holmes +Holmes's +Holocaust +Holocene +Holocene's +Holst +Holstein +Holstein's +Holsteins +Holt +Homer +Homer's +Homeric +Hon +Honda +Honda's +Honduran +Honduran's +Hondurans +Honduras +Honduras's +Honecker +Honecker's +Honeywell +Honeywell's +Honiara +Honolulu +Honolulu's +Honshu +Honshu's +Hood +Hooke +Hooker +Hooper +Hooper's +Hoosier +Hoosier's +Hooters +Hooters's +Hoover +Hoover's +Hoovers +Hope +Hopewell +Hopewell's +Hopi +Hopi's +Hopkins +Hopper +Horace +Horacio +Horacio's +Horatio +Horatio's +Hormel +Hormel's +Hormuz +Horn +Hornblower +Hornblower's +Horne +Horne's +Horowitz +Horthy +Horton +Horton's +Horus +Horus's +Hosea +Hosea's +Hotpoint +Hotpoint's +Hottentot +Hottentot's +Houdini +House +Housman +Houston +Houston's +Houyhnhnm +Houyhnhnm's +Hovhaness +Hovhaness's +Howard +Howe +Howell +Howell's +Howells +Hoyle +Hrothgar +Hrothgar's +Huang +Hubbard +Hubble +Hubble's +Huber +Huber's +Hubert +Hubert's +Huck +Huck's +Hudson +Hudson's +Huerta +Huerta's +Huey +Huey's +Huff +Huff's +Huffman +Huffman's +Huggins +Hugh +Hugh's +Hughes +Hugo +Hugo's +Huguenot +Huguenot's +Huguenots +Hui +Huitzilopotchli +Huitzilopotchli's +Hull +Hull's +Humberto +Humberto's +Humboldt +Hume +Hummer +Hummer's +Humphrey +Humvee +Hun +Hun's +Hung +Hungarian +Hungarian's +Hungarians +Hungary +Hungary's +Huns +Hunspell +Hunspell's +Hunt +Hunter +Hunter's +Huntington +Huntington's +Huntley +Huntley's +Huntsville +Hurley +Hurley's +Huron +Hurst +Hurst's +Hus +Hussein +Husserl +Hussite +Huston +Hutchinson +Hutton +Hutton's +Hutu +Huxley +Huxley's +Huygens +Hyades +Hyades's +Hyde +Hyderabad +Hydra +Hydra's +Hymen +Hymen's +Hyperion +Hyperion's +Hyundai +Hyundai's +Hz +Hz's +Héloise +Héloise's +I +I'd +I'll +I'm +I's +I've +IBM +IBM's +ICBM's +ID's +IMF's +ING +ING's +IOU's +IQ's +IRA's +IRS's +IV's +Iaccoca +Iaccoca's +Iago +Iago's +Ian +Ian's +Iapetus +Iapetus's +Ibadan +Iberia +Iberia's +Iberian +Ibiza +Iblis +Iblis's +Ibo +Ibsen +Ibsen's +Icahn +Icahn's +Icarus +Icarus's +Iceland +Iceland's +Icelander +Icelander's +Icelanders +Icelandic +Icelandic's +Ida +Idaho +Idaho's +Idahoan +Idahoan's +Idahoans +Idahoes +Idahos +Ieyasu +Ignacio +Ignacio's +Ignatius +Igor +Igor's +Iguassu +Iguassu's +Ijssel +Ijsselmeer +Ijsselmeer's +Ike +Ike's +Ikea +Ikea's +Ikhnaton +Ila +Ilene +Ilene's +Iliad +Iliad's +Ill +Illinois +Illinois's +Illuminati +Ilyushin +Ilyushin's +Imelda +Imelda's +Imhotep +Imhotep's +Imodium +Imodium's +Imogene +Imogene's +Imus +Imus's +In +In's +Ina +Ina's +Inc +Inca +Inca's +Incas +Inchon +Inchon's +Ind +Independence +Independence's +India +India's +Indian +Indian's +Indiana +Indiana's +Indianan +Indianan's +Indianans +Indianapolis +Indianapolis's +Indians +Indies +Indira +Indira's +Indochina +Indochina's +Indochinese +Indonesia +Indonesia's +Indonesian +Indonesian's +Indonesians +Indore +Indra +Indra's +Indus +Indus's +Indy +Indy's +Ines +Inez +Inez's +Inge +Inglewood +Ingram +Ingram's +Ingres +Ingrid +Ingrid's +Innocent +Innocent's +Inonu +Inonu's +Inquisition +Instamatic +Instamatic's +Intel +Intel's +Intelsat +Internationale +Internationale's +Internet +Interpol +Inuit +Inuit's +Inuits +Inuktitut +Inuktitut's +Invar +Invar's +Io +Io's +Ionesco +Ionian +Ionian's +Ionic +Ionic's +Ionics +Iowa +Iowa's +Iowan +Iowan's +Iowans +Iowas +Iphigenia +Iqaluit +Iqaluit's +Iqbal +Iquitos +Ir +Ir's +Ira +Ira's +Iran +Iran's +Iranian +Iranian's +Iranians +Iraq +Iraq's +Iraqi +Iraqi's +Iraqis +Ireland +Ireland's +Irene +Iris +Irish +Irish's +Irisher +Irishman +Irishman's +Irishmen +Irishwoman +Irishwoman's +Irishwomen +Irkutsk +Irma +Irma's +Iroquoian +Iroquoian's +Iroquois +Iroquois's +Irrawaddy +Irtish +Irtish's +Irvin +Irvin's +Irving +Irwin +Irwin's +Isaac +Isaac's +Isabel +Isabel's +Isabella +Isabelle +Isabelle's +Isaiah +Iscariot +Isfahan +Isherwood +Ishim +Ishim's +Ishmael +Ishtar +Ishtar's +Isiah +Isiah's +Isidro +Isidro's +Isis +Isis's +Islam +Islam's +Islamabad +Islamabad's +Islamic +Islamism +Islamism's +Islamist +Islams +Ismael +Ismael's +Ismail +Ismail's +Isolde +Ispell +Ispell's +Israel +Israel's +Israeli +Israeli's +Israelis +Israelite +Israels +Issac +Issac's +Issachar +Istanbul +Istanbul's +Isuzu +Isuzu's +It +Itaipu +Itaipu's +Italian +Italian's +Italians +Italy +Italy's +Itasca +Itasca's +Ithaca +Ithacan +Ito +Iva +Iva's +Ivan +Ivanhoe +Ivanhoe's +Ives +Ivory +Ivory's +Ivy +Iyar +Iyar's +Izaak +Izaak's +Izanagi +Izanagi's +Izanami +Izanami's +Izhevsk +Izmir +Izod +Izod's +Izvestia +Izvestia's +J +J's +JFK +JFK's +Jack +Jackie +Jackie's +Jacklyn +Jacklyn's +Jackson +Jackson's +Jacksonian +Jacksonville +Jacksonville's +Jacky +Jacky's +Jaclyn +Jaclyn's +Jacob +Jacob's +Jacobean +Jacobean's +Jacobi +Jacobin +Jacobin's +Jacobite +Jacobite's +Jacobs +Jacobson +Jacobson's +Jacquard +Jacqueline +Jacqueline's +Jacquelyn +Jacquelyn's +Jacques +Jacuzzi +Jagger +Jagger's +Jagiellon +Jagiellon's +Jaguar +Jaguar's +Jahangir +Jahangir's +Jaime +Jaime's +Jain +Jainism +Jainism's +Jaipur +Jakarta +Jakarta's +Jake +Jake's +Jamaal +Jamaal's +Jamaica +Jamaica's +Jamaican +Jamaican's +Jamaicans +Jamal +Jamal's +Jamar +Jamar's +Jame +Jame's +Jamel +Jamel's +James +James's +Jamestown +Jami +Jami's +Jamie +Jamie's +Jan +Jan's +Jana +Jana's +Janacek +Janacek's +Jane +Janell +Janell's +Janelle +Janelle's +Janet +Janette +Janette's +Janice +Janice's +Janie +Janie's +Janine +Janine's +Janis +Janis's +Janissary +Janissary's +Janjaweed +Janjaweed's +Janna +Janna's +Jannie +Jannie's +Jansen +Jansen's +Jansenist +Jansenist's +Januaries +January +January's +Janus +Janus's +Japan +Japan's +Japanese +Japanese's +Japaneses +Japura +Japura's +Jared +Jared's +Jarlsberg +Jarred +Jarred's +Jarrett +Jarrett's +Jarrod +Jarrod's +Jarvis +Jarvis's +Jasmine +Jasmine's +Jason +Jason's +Jasper +Jasper's +Jataka +Java +Java's +JavaScript +JavaScript's +Javanese +Javanese's +Javas +Javier +Javier's +Jaxartes +Jay +Jayapura +Jayapura's +Jayawardene +Jayawardene's +Jaycee +Jaycees +Jayne +Jayne's +Jayson +Jayson's +Jean +Jean's +Jeanette +Jeanette's +Jeanie +Jeanie's +Jeanine +Jeanine's +Jeanne +Jeanne's +Jeannette +Jeannette's +Jeannie +Jeannie's +Jeannine +Jeannine's +Jed +Jed's +Jedi +Jedi's +Jeep +Jeeves +Jeeves's +Jeff +Jeff's +Jefferey +Jefferey's +Jefferson +Jefferson's +Jeffersonian +Jeffery +Jeffery's +Jeffrey +Jeffry +Jeffry's +Jehoshaphat +Jehovah +Jehovah's +Jekyll +Jekyll's +Jenifer +Jenifer's +Jenkins +Jenna +Jenna's +Jenner +Jennie +Jennie's +Jennifer +Jennifer's +Jennings +Jennings's +Jenny +Jenny's +Jensen +Jensen's +Jephthah +Jerald +Jerald's +Jeremiah +Jeremiah's +Jeremiahs +Jeremy +Jeremy's +Jeri +Jeri's +Jericho +Jericho's +Jermaine +Jermaine's +Jeroboam +Jerold +Jerold's +Jerome +Jerri +Jerri's +Jerrod +Jerrod's +Jerrold +Jerrold's +Jerry +Jerry's +Jersey +Jersey's +Jerseys +Jerusalem +Jerusalem's +Jess +Jess's +Jesse +Jessica +Jessica's +Jessie +Jessie's +Jesuit +Jesuit's +Jesuits +Jesus +Jetway +Jew +Jew's +Jewel +Jewel's +Jewell +Jewell's +Jewish +Jewishness +Jewry +Jews +Jezebel +Jezebel's +Jezebels +Jidda +Jilin +Jill +Jillian +Jillian's +Jim +Jim's +Jimenez +Jimenez's +Jimmie +Jimmie's +Jimmy +Jimmy's +Jinan +Jinnah +Jinny +Jinny's +Jivaro +Jo +Jo's +Joan +Joann +Joann's +Joanna +Joanna's +Joanne +Joanne's +Joaquin +Joaquin's +Job +Job's +Jobs +Jocasta +Jocelyn +Jocelyn's +Jock +Jockey +Jodi +Jodi's +Jodie +Jodie's +Jody +Jody's +Joe +Joel +Joesph +Joesph's +Joey +Joey's +Jogjakarta +Jogjakarta's +Johann +Johann's +Johanna +Johanna's +Johannes +Johannesburg +Johannesburg's +John +John's +Johnathan +Johnathan's +Johnathon +Johnathon's +Johnie +Johnie's +Johnnie +Johnny +Johnny's +Johns +Johnson +Johnson's +Johnston +Johnston's +Jolene +Jolene's +Joliet +Jolson +Jon +Jon's +Jonah +Jonah's +Jonahs +Jonas +Jonathan +Jonathan's +Jonathon +Jonathon's +Jones +Joni +Joni's +Jonson +Joplin +Jordan +Jordan's +Jordanian +Jordanian's +Jordanians +Jorge +Jorge's +Jose +Jose's +Josef +Josef's +Josefa +Josefa's +Josefina +Josefina's +Joseph +Joseph's +Josephine +Josephs +Josephson +Josephson's +Josephus +Josh +Joshua +Joshua's +Josiah +Josie +Josie's +Josue +Josue's +Joule +Jove +Jove's +Jovian +Joy +Joy's +Joyce +Joycean +Joyner +Joyner's +Jr +Jr's +Juan +Juan's +Juana +Juana's +Juanita +Juanita's +Juarez +Juarez's +Jubal +Judah +Judaic +Judaism +Judaism's +Judaisms +Judas +Judas's +Judases +Judd +Judd's +Jude +Judea +Judith +Judith's +Judson +Judson's +Judy +Juggernaut +Juggernaut's +Jul +Jules +Julia +Julia's +Julian +Juliana +Julianne +Julianne's +Julie +Julie's +Julies +Juliet +Juliette +Juliette's +Julio +Julio's +Julius +Julius's +Julliard +Julliard's +July +July's +Jun +June +June's +Juneau +Juneau's +Junes +Jung +Jung's +Jungfrau +Jungian +Junior +Junior's +Juniors +Juno +Juno's +Jupiter +Jupiter's +Jurassic +Jurassic's +Jurua +Jurua's +Justice +Justice's +Justin +Justin's +Justine +Justine's +Justinian +Justinian's +Jutland +Jutland's +Juvenal +K +K's +KFC +KFC's +KKK's +Kaaba +Kabul +Kabul's +Kafka +Kafka's +Kafkaesque +Kagoshima +Kahlua +Kahlua's +Kaifeng +Kaiser +Kaiser's +Kaitlin +Kaitlin's +Kalahari +Kalahari's +Kalamazoo +Kalashnikov +Kalb +Kalb's +Kalevala +Kalgoorlie +Kali +Kali's +Kalmyk +Kama +Kama's +Kamchatka +Kamehameha +Kamehameha's +Kampala +Kampala's +Kampuchea +Kampuchea's +Kanchenjunga +Kanchenjunga's +Kandahar +Kandinsky +Kane +Kane's +Kannada +Kannada's +Kano +Kanpur +Kans +Kansan +Kansan's +Kansans +Kansas +Kant +Kant's +Kantian +Kaohsiung +Kaposi +Kaposi's +Kara +Kara's +Karachi +Karachi's +Karaganda +Karakorum +Karamazov +Karamazov's +Kareem +Kareem's +Karen +Karen's +Karenina +Karenina's +Kari +Kari's +Karin +Karin's +Karina +Karina's +Karl +Karl's +Karla +Karla's +Karloff +Karloff's +Karo +Karo's +Karol +Karol's +Karroo +Karroo's +Karyn +Karyn's +Kasai +Kasai's +Kasey +Kasey's +Kashmir +Kashmir's +Kasparov +Kasparov's +Kate +Kate's +Katelyn +Katelyn's +Katharine +Katharine's +Katherine +Katherine's +Katheryn +Katheryn's +Kathiawar +Kathie +Kathie's +Kathleen +Kathleen's +Kathrine +Kathrine's +Kathryn +Kathryn's +Kathy +Kathy's +Katie +Katie's +Katina +Katina's +Katmai +Katmandu +Katmandu's +Katowice +Katrina +Katrina's +Katy +Katy's +Kauai +Kauai's +Kaufman +Kaufman's +Kaunas +Kaunas's +Kaunda +Kaunda's +Kawabata +Kawabata's +Kawasaki +Kay +Kaye +Kaye's +Kayla +Kayla's +Kazakh +Kazakh's +Kazakhstan +Kazakhstan's +Kazan +Kazan's +Kazantzakis +Keaton +Keaton's +Keats +Keck +Keck's +Keenan +Keenan's +Keewatin +Keillor +Keillor's +Keisha +Keisha's +Keith +Keith's +Keller +Kelley +Kelley's +Kelli +Kelli's +Kellie +Kellie's +Kellogg +Kelly +Kelsey +Kelsey's +Kelvin +Kemerovo +Kemp +Kemp's +Kempis +Ken +Kendall +Kendall's +Kendra +Kendra's +Kendrick +Kendrick's +Kenmore +Kenmore's +Kennan +Kennan's +Kennedy +Kennedy's +Kenneth +Kenneth's +Kennith +Kennith's +Kenny +Kenny's +Kent +Kent's +Kenton +Kenton's +Kentuckian +Kentuckian's +Kentuckians +Kentucky +Kentucky's +Kenya +Kenya's +Kenyan +Kenyan's +Kenyans +Kenyatta +Kenyon +Kenyon's +Keogh +Keogh's +Keokuk +Keokuk's +Kepler +Kepler's +Kerensky +Kerensky's +Keri +Keri's +Kermit +Kermit's +Kern +Kerouac +Kerr +Kerri +Kerri's +Kerry +Kettering +Keven +Keven's +Kevin +Kevin's +Kevlar +Kevorkian +Kevorkian's +Kewpie +Key +Keynes +Keynes's +Keynesian +Khabarovsk +Khachaturian +Khalid +Khalid's +Khan +Khan's +Kharkov +Kharkov's +Khartoum +Khartoum's +Khayyam +Khayyam's +Khazar +Khazar's +Khmer +Khmer's +Khoikhoi +Khoikhoi's +Khoisan +Khoisan's +Khomeini +Khomeini's +Khorana +Khorana's +Khrushchev +Khufu +Khulna +Khulna's +Khwarizmi +Khwarizmi's +Khyber +Khyber's +Kickapoo +Kidd +Kidd's +Kiel +Kierkegaard +Kieth +Kieth's +Kiev +Kiev's +Kigali +Kigali's +Kikuyu +Kilauea +Kilimanjaro +Kilimanjaro's +Kilroy +Kilroy's +Kim +Kim's +Kimberley +Kimberly +Kimberly's +King +King's +Kingston +Kingston's +Kingstown +Kingstown's +Kinko's +Kinney +Kinney's +Kinsey +Kinshasa +Kinshasa's +Kiowa +Kiowa's +Kip +Kip's +Kipling +Kipling's +Kirby +Kirby's +Kirchhoff +Kirchner +Kirchner's +Kirghistan +Kirghistan's +Kirghiz +Kirghiz's +Kiribati +Kiribati's +Kirinyaga +Kirinyaga's +Kirk +Kirkland +Kirkland's +Kirkpatrick +Kirkpatrick's +Kirov +Kirsten +Kirsten's +Kisangani +Kishinev +Kishinev's +Kislev +Kislev's +Kissinger +Kit +Kit's +Kitakyushu +Kitakyushu's +Kitchener +Kitty +Kitty's +Kiwanis +Klan +Klan's +Klansman +Klansman's +Klaus +Klaus's +Klee +Kleenex +Kleenex's +Kleenexes +Klein +Klein's +Klimt +Kline +Klingon +Klingon's +Klondike +Klondike's +Klondikes +Kmart +Kmart's +Knapp +Knapp's +Knesset +Knesset's +Kngwarreye +Kngwarreye's +Knickerbocker +Knievel +Knievel's +Knight +Knopf +Knopf's +Knossos +Knowles +Knox +Knoxville +Knudsen +Knudsen's +Knuth +Knuth's +Kobe +Koch +Kochab +Kochab's +Kodachrome +Kodachrome's +Kodak +Kodaly +Kodaly's +Kodiak +Kodiak's +Koestler +Kohinoor +Kohl +Koizumi +Koizumi's +Kojak +Kojak's +Kolyma +Kommunizma +Kommunizma's +Kong +Kong's +Kongo +Kongo's +Konrad +Konrad's +Koontz +Koontz's +Koppel +Koppel's +Koran +Koran's +Korans +Korea +Korea's +Korean +Korean's +Koreans +Kornberg +Kornberg's +Kory +Kory's +Korzybski +Kosciusko +Kossuth +Kosygin +Koufax +Koufax's +Kowloon +Kr +Kr's +Kraft +Kraft's +Krakatoa +Krakatoa's +Krakow +Krakow's +Kramer +Kramer's +Krasnodar +Krasnoyarsk +Krebs +Kremlin +Kremlinologist +Kresge +Kresge's +Kringle +Kringle's +Kris +Kris's +Krishna +Krishna's +Krishnamurti +Krishnamurti's +Krista +Krista's +Kristen +Kristen's +Kristi +Kristi's +Kristie +Kristie's +Kristin +Kristin's +Kristina +Kristina's +Kristine +Kristine's +Kristopher +Kristopher's +Kristy +Kristy's +Kroc +Kroc's +Kroger +Kroger's +Kronecker +Kronecker's +Kropotkin +Kruger +Krugerrand +Krupp +Krystal +Krystal's +Kshatriya +Kshatriya's +Kublai +Kublai's +Kubrick +Kuhn +Kuhn's +Kuibyshev +Kulthumm +Kulthumm's +Kunming +Kuomintang +Kurd +Kurdish +Kurdish's +Kurdistan +Kurile +Kurosawa +Kurt +Kurt's +Kurtis +Kurtis's +Kusch +Kusch's +Kutuzov +Kuwait +Kuwait's +Kuwaiti +Kuwaiti's +Kuwaitis +Kuznets +Kuznets's +Kuznetsk +Kuznetsk's +Kwakiutl +Kwakiutl's +Kwan +Kwan's +Kwangju +Kwanzaa +Kwanzaa's +Kwanzaas +Kyle +Kyle's +Kyoto +Kyoto's +Kyrgyzstan +Kyushu +Kyushu's +Köln +Köln's +L +L'Amour +L'Oreal +L'Ouverture +L's +LBJ +LBJ's +LCD's +LED's +LPN's +LSD's +La +La's +Laban +Labrador +Labrador's +Labradors +Lacey +Lacey's +Lachesis +Lachesis's +Lacy +Lacy's +Ladoga +Ladonna +Ladonna's +Lafayette +Lafitte +Lafitte's +Lagos +Lagos's +Lagrange +Lagrangian +Lahore +Laius +Lajos +Lajos's +Lakeisha +Lakeisha's +Lakewood +Lakisha +Lakisha's +Lakota +Lakshmi +Lakshmi's +Lamar +Lamar's +Lamarck +Lamarck's +Lamaze +Lamb +Lambert +Lamborghini +Lamborghini's +Lambrusco +Lamont +Lamont's +Lana +Lana's +Lanai +Lanai's +Lancashire +Lancaster +Lancaster's +Lance +Lance's +Lancelot +Lancelot's +Land +Landon +Landon's +Landry +Landry's +Landsat +Landsteiner +Landsteiner's +Lane +Lane's +Lang +Langerhans +Langerhans's +Langland +Langley +Langmuir +Lanny +Lanny's +Lansing +Lansing's +Lanzhou +Lanzhou's +Lao +Lao's +Laocoon +Laocoon's +Laos +Laotian +Laotian's +Laotians +Laplace +Lapland +Lapland's +Lapp +Lapp's +Lapps +Lara +Lara's +Laramie +Laramie's +Lardner +Lardner's +Laredo +Larousse +Larry +Larry's +Lars +Larsen +Larsen's +Larson +Larson's +Lascaux +Lascaux's +Lassa +Lassa's +Lassen +Lassen's +Lassie +Lassie's +Latasha +Latasha's +Lateran +Lateran's +Latin +Latin's +Latina +Latiner +Latino +Latino's +Latinos +Latins +Latisha +Latisha's +Latonya +Latonya's +Latoya +Latoya's +Latrobe +Latrobe's +Latvia +Latvia's +Latvian +Latvian's +Latvians +Laud +Lauder +Laue +Laundromat +Laura +Laura's +Laurasia +Laurasia's +Laurel +Laurel's +Lauren +Lauren's +Laurence +Laurence's +Laurent +Laurent's +Lauri +Lauri's +Laurie +Laurie's +Laval +Lavern +Lavern's +Laverne +Laverne's +Lavoisier +Lavonne +Lavonne's +Lawanda +Lawanda's +Lawrence +Lawson +Layamon +Layla +Layla's +Lazaro +Lazaro's +Lazarus +Lazarus's +Le +Le's +Lea +Lea's +Leach +Leach's +Leadbelly +Leah +Leakey +Leakey's +Lean +Lean's +Leander +Leann +Leann's +Leanna +Leanna's +Leanne +Leanne's +Lear +Lear's +Learjet +Learjet's +Leary +Leary's +Leavenworth +Lebanese +Lebanese's +Lebanon +Lebanon's +Lebesgue +Lebesgue's +Leblanc +Leblanc's +Leda +Lederberg +Lederberg's +Lee +Lee's +Leeds +Leeds's +Leeuwenhoek +Leeward +Leeward's +Left +Legendre +Leger +Leger's +Leghorn +Lego +Lego's +Legree +Legree's +Lehman +Lehman's +Leibniz +Leibniz's +Leicester +Leicester's +Leiden +Leiden's +Leif +Leif's +Leigh +Leila +Leila's +Leipzig +Leipzig's +Lela +Lela's +Leland +Leland's +Lelia +Lelia's +Lemaitre +Lemaitre's +Lemuel +Lemuel's +Lemuria +Lemuria's +Len +Len's +Lena +Lena's +Lenard +Lenard's +Lenin +Lenin's +Leningrad +Leningrad's +Leninism +Leninism's +Leninist +Lennon +Lennon's +Lenny +Lenny's +Leno +Leno's +Lenoir +Lenoir's +Lenora +Lenora's +Lenore +Lenore's +Lent +Lent's +Lenten +Lents +Leo +Leo's +Leola +Leola's +Leon +Leona +Leona's +Leonard +Leonard's +Leonardo +Leonardo's +Leoncavallo +Leonel +Leonel's +Leonid +Leonidas +Leonidas's +Leonor +Leonor's +Leopold +Leopold's +Leopoldo +Leopoldo's +Leos +Lepidus +Lepke +Lepke's +Lepus +Lepus's +Lerner +Leroy +Leroy's +Les +Lesa +Lesa's +Lesley +Lesley's +Leslie +Leslie's +Lesotho +Lesotho's +Lesseps +Lessie +Lessie's +Lester +Lester's +Lestrade +Lestrade's +Leta +Leta's +Letha +Letha's +Lethe +Lethe's +Leticia +Leticia's +Letitia +Letitia's +Letterman +Letterman's +Levant +Levant's +Levesque +Levesque's +Levi +Levi's +Leviathan +Levine +Levine's +Leviticus +Leviticus's +Levitt +Levitt's +Levy +Levy's +Lew +Lew's +Lewinsky +Lewinsky's +Lewis +Lexington +Lexington's +Lexus +Lexus's +Lhasa +Lhasa's +Lhotse +Lhotse's +Li +Li's +Libby +Liberace +Liberace's +Liberia +Liberia's +Liberian +Liberian's +Liberians +Libra +Libra's +Libras +Libreville +Libreville's +Librium +Librium's +Libya +Libya's +Libyan +Libyan's +Libyans +Lichtenstein +Lidia +Lidia's +Lie +Lieberman +Lieberman's +Liebfraumilch +Liechtenstein +Liechtenstein's +Liege +Liege's +Lila +Lila's +Lilia +Lilia's +Lilian +Lilian's +Liliana +Liliana's +Lilith +Lilith's +Liliuokalani +Lille +Lillian +Lillian's +Lillie +Lillie's +Lilliput +Lilliput's +Lilliputian +Lilliputian's +Lilliputians +Lilly +Lilly's +Lilongwe +Lilongwe's +Lily +Lily's +Lima +Lima's +Limbaugh +Limbaugh's +Limburger +Limoges +Limousin +Limousin's +Limpopo +Limpopo's +Lin +Lin's +Lina +Lina's +Lincoln +Lincoln's +Lincolns +Lind +Linda +Linda's +Lindbergh +Lindsay +Lindsey +Lindy +Linnaeus +Linnaeus's +Linotype +Linton +Linton's +Linus +Linus's +Linux +Linwood +Linwood's +Lionel +Lionel's +Lipizzaner +Lippi +Lippmann +Lipscomb +Lipscomb's +Lipton +Lipton's +Lisa +Lisa's +Lisbon +Lisbon's +Lissajous +Lissajous's +Lister +Lister's +Listerine +Listerine's +Liston +Liston's +Liszt +Lithuania +Lithuania's +Lithuanian +Lithuanian's +Lithuanians +Little +Little's +Litton +Litton's +Liverpool +Liverpool's +Liverpudlian +Liverpudlian's +Livia +Livia's +Livingston +Livingstone +Livonia +Livonia's +Livy +Liz +Liz's +Liza +Liza's +Lizzie +Lizzie's +Lizzy +Lizzy's +Ljubljana +Ljubljana's +Llewellyn +Lloyd +Ln +Loafer +Loafer's +Loafers +Lobachevsky +Lochinvar +Locke +Locke's +Lockean +Lockheed +Lockheed's +Lockwood +Lockwood's +Lodge +Lodz +Lodz's +Loewe +Loewi +Loews +Loews's +Logan +Logan's +Lohengrin +Loire +Loire's +Lois +Lois's +Loki +Loki's +Lola +Lola's +Lolita +Lollard +Lollobrigida +Lollobrigida's +Lombard +Lombard's +Lombardi +Lombardi's +Lombardy +Lombardy's +Lome +Lome's +Lon +Lon's +London +London's +Londoner +Londoner's +Long +Longfellow +Longfellow's +Longstreet +Longstreet's +Lonnie +Lonnie's +Lopez +Lopez's +Lora +Lora's +Loraine +Loraine's +Lord +Lord's +Lords +Lorelei +Lorelei's +Loren +Lorena +Lorena's +Lorene +Lorene's +Lorentz +Lorenz +Lorenzo +Lorenzo's +Loretta +Loretta's +Lori +Lori's +Lorie +Lorie's +Lorna +Lorna's +Lorraine +Lorraine's +Lorre +Lorre's +Lorrie +Lorrie's +Lot +Lot's +Lothario +Lothario's +Lott +Lott's +Lottie +Lottie's +Lou +Lou's +Louella +Louella's +Louie +Louie's +Louis +Louisa +Louisa's +Louise +Louise's +Louisiana +Louisiana's +Louisianan +Louisianan's +Louisianans +Louisianian +Louisianian's +Louisianians +Louisville +Louisville's +Lourdes +Louvre +Louvre's +Love +Love's +Lovecraft +Lovecraft's +Lovelace +Lowe +Lowe's +Lowell +Lowenbrau +Lowenbrau's +Lowery +Lowery's +Loyang +Loyang's +Loyd +Loyd's +Loyola +Lr +Lt +Ltd +Lu +Lu's +Luanda +Luanda's +Luann +Luann's +Lubavitcher +Lubbock +Lubumbashi +Lucas +Luce +Luce's +Lucia +Lucia's +Lucian +Luciano +Luciano's +Lucien +Lucien's +Lucifer +Lucifer's +Lucile +Lucile's +Lucille +Lucille's +Lucinda +Lucinda's +Lucio +Lucio's +Lucite +Lucite's +Lucius +Lucius's +Lucknow +Lucknow's +Lucretia +Lucretius +Lucy +Lucy's +Luddite +Luddite's +Ludhiana +Ludwig +Ludwig's +Luella +Luella's +Lufthansa +Lufthansa's +Luftwaffe +Luger +Luger's +Lugosi +Lugosi's +Luigi +Luigi's +Luis +Luis's +Luisa +Luisa's +Luke +Luke's +Lula +Lula's +Lully +Lulu +Lulu's +Lumière +Lumière's +Luna +Luna's +Lupe +Lupe's +Lupercalia +Lupus +Lupus's +Luria +Luria's +Lusaka +Lusaka's +Lusitania +Lusitania's +Luther +Luther's +Lutheran +Lutheran's +Lutheranism +Lutheranism's +Lutherans +Luvs +Luvs's +Luxembourg +Luxembourg's +Luxembourger +Luxembourger's +Luxembourgers +Luz +Luz's +Luzon +Luzon's +Lvov +LyX +LyX's +Lycra +Lycurgus +Lydia +Lyell +Lyle +Lyle's +Lyly +Lyman +Lyman's +Lyme +Lyme's +Lynch +Lynda +Lynda's +Lyndon +Lyndon's +Lynette +Lynette's +Lynn +Lynne +Lynne's +Lynnette +Lynnette's +Lyon +Lyon's +Lyons +Lyra +Lyra's +Lysenko +Lysistrata +Lysistrata's +Lysol +Lysol's +M +M's +MA's +MB's +MBA's +MCI +MCI's +MD's +MGM +MGM's +MHz +MI's +MIT +MIT's +MP's +MRI's +MS's +MSG's +MST's +MT's +MVP's +Maalox +Maalox's +Mabel +Mabel's +Mable +Mable's +Mac +MacArthur +MacBride +MacBride's +MacDonald +MacLeish +MacLeish's +Macao +Macao's +Macaulay +Macbeth +Maccabeus +Maccabeus's +Mace +Macedon +Macedon's +Macedonia +Macedonia's +Macedonian +Macedonian's +Macedonians +Mach +Machiavelli +Machiavelli's +Machiavellian +Macias +Macias's +Macintosh +Macintosh's +Mack +Mack's +Mackenzie +Mackenzie's +Mackinac +Mackinac's +Mackinaw +Macmillan +Macon +Macumba +Macumba's +Macy +Macy's +Madagascan +Madagascan's +Madagascans +Madagascar +Madagascar's +Madden +Madden's +Maddox +Maddox's +Madeira +Madeira's +Madeiras +Madeleine +Madeleine's +Madeline +Madeline's +Madelyn +Madelyn's +Madge +Madge's +Madison +Madison's +Madonna +Madonna's +Madonnas +Madras +Madras's +Madrid +Madrid's +Madurai +Madurai's +Mae +Mae's +Maeterlinck +Maeterlinck's +Mafia +Mafia's +Mafias +Mafioso +Magdalena +Magdalene +Magdalene's +Magellan +Magellan's +Magellanic +Maggie +Maggie's +Maghreb +Maghreb's +Magi +Maginot +Maginot's +Magnitogorsk +Magog +Magoo +Magoo's +Magritte +Magsaysay +Magsaysay's +Magyar +Magyar's +Magyars +Mahabharata +Mahabharata's +Maharashtra +Maharashtra's +Mahavira +Mahavira's +Mahayana +Mahayana's +Mahayanist +Mahayanist's +Mahdi +Mahfouz +Mahfouz's +Mahican +Mahican's +Mahicans +Mahler +Mai +Mai's +Maidenform +Maidenform's +Maigret +Maigret's +Mailer +Maillol +Maiman +Maiman's +Maimonides +Maine +Maine's +Maisie +Maisie's +Maitreya +Maitreya's +Maj +Major +Majorca +Majorca's +Majuro +Makarios +Makarios's +Malabar +Malabar's +Malabo +Malabo's +Malacca +Malachi +Malagasy +Malamud +Malaprop +Malaprop's +Malawi +Malawi's +Malay +Malay's +Malayalam +Malayalam's +Malayan +Malayan's +Malays +Malaysia +Malaysia's +Malaysian +Malaysian's +Malaysians +Malcolm +Maldive +Maldive's +Maldives +Maldives's +Maldivian +Maldivian's +Maldivians +Maldonado +Maldonado's +Male +Male's +Mali +Malian +Malian's +Malians +Malibu +Malibu's +Malinda +Malinda's +Malinowski +Mallarmé +Mallomars +Mallomars's +Mallory +Mallory's +Malone +Malone's +Malory +Malory's +Malplaquet +Malplaquet's +Malraux +Malta +Malta's +Maltese +Maltese's +Malthus +Malthus's +Malthusian +Malthusian's +Mameluke +Mamet +Mamie +Mamie's +Mammon +Mammon's +Mamore +Mamore's +Man +Man's +Managua +Managua's +Manama +Manama's +Manasseh +Manaus +Manchester +Manchester's +Manchu +Manchu's +Manchuria +Manchuria's +Manchurian +Mancini +Mancini's +Mandalay +Mandalay's +Mandarin +Mandarin's +Mandela +Mandelbrot +Mandingo +Mandrell +Mandrell's +Mandy +Mandy's +Manet +Manfred +Manfred's +Manhattan +Manhattan's +Manhattans +Mani +Manichean +Manila +Manila's +Manilas +Manilla +Manilla's +Manitoba +Manitoba's +Manitoulin +Manitoulin's +Manley +Manley's +Mann +Mannheim +Mannheim's +Manning +Mansfield +Manson +Manson's +Mantegna +Mantle +Mantle's +Manuel +Manuel's +Manuela +Manuela's +Manx +Manx's +Mao +Mao's +Maoism +Maoism's +Maoisms +Maoist +Maoist's +Maoists +Maori +Maori's +Maoris +Mapplethorpe +Mapplethorpe's +Maputo +Maputo's +Mar +Mar's +Mara +Mara's +Maracaibo +Marat +Maratha +Maratha's +Marathi +Marathi's +Marathon +Marathon's +Marc +Marceau +Marcel +Marcel's +Marcelino +Marcelino's +Marcella +Marcella's +Marcelo +Marcelo's +March +March's +Marches +Marci +Marci's +Marcia +Marcia's +Marciano +Marcie +Marcie's +Marco +Marco's +Marconi +Marcos +Marcus +Marcus's +Marcy +Marcy's +Marduk +Marduk's +Margaret +Margarita +Margarito +Margarito's +Marge +Marge's +Margery +Margery's +Margie +Margie's +Margo +Margo's +Margret +Margret's +Margrethe +Margrethe's +Marguerite +Marguerite's +Mari +Mari's +Maria +Maria's +Marian +Mariana +Mariana's +Marianas +Marianne +Mariano +Mariano's +Maribel +Maribel's +Maricela +Maricela's +Marie +Marie's +Marietta +Marietta's +Marilyn +Marilyn's +Marin +Marina +Marina's +Marine +Marine's +Marines +Mario +Mario's +Marion +Marion's +Maris +Marisa +Marisa's +Marisol +Marisol's +Marissa +Marissa's +Maritain +Maritza +Maritza's +Marius +Marjorie +Marjorie's +Marjory +Marjory's +Mark +Mark's +Markab +Markab's +Markham +Markov +Marks +Marla +Marla's +Marlboro +Marlboro's +Marlborough +Marlene +Marlene's +Marley +Marley's +Marlin +Marlon +Marlon's +Marlowe +Marmara +Marmara's +Marne +Maronite +Marple +Marple's +Marquesas +Marquesas's +Marquette +Marquez +Marquez's +Marquis +Marquita +Marquita's +Marrakesh +Marrakesh's +Marriott +Marriott's +Mars +Mars's +Marsala +Marsala's +Marseillaise +Marseillaise's +Marseilles +Marsh +Marsh's +Marsha +Marsha's +Marshall +Marshall's +Marta +Marta's +Martel +Martha +Martial +Martian +Martian's +Martians +Martin +Martina +Martina's +Martinez +Martinez's +Martinique +Martinique's +Marty +Marty's +Marva +Marva's +Marvell +Marvell's +Marvin +Marx +Marx's +Marxism +Marxism's +Marxisms +Marxist +Marxist's +Marxists +Mary +Mary's +Maryann +Maryann's +Maryanne +Maryanne's +Maryellen +Maryellen's +Maryland +Maryland's +Marylander +Marylou +Marylou's +Masada +Masada's +Masai +Masai's +Masaryk +Mascagni +Masefield +Maserati +Maserati's +Maseru +Maseru's +Mashhad +Mashhad's +Mason +Mason's +Masonic +Masonite +Masonite's +Masons +Mass +Mass's +Massachusetts +Massasoit +Massenet +Masses +Massey +MasterCard +MasterCard's +Masters +Mather +Mathew +Mathew's +Mathews +Mathewson +Mathewson's +Mathias +Mathis +Matilda +Matisse +Matt +Mattel +Mattel's +Matterhorn +Matterhorn's +Matthew +Matthew's +Matthews +Matthias +Mattie +Mattie's +Maud +Maud's +Maude +Maude's +Maugham +Maui +Maui's +Maupassant +Maura +Maura's +Maureen +Maureen's +Mauriac +Maurice +Mauricio +Mauricio's +Maurine +Maurine's +Mauritania +Mauritania's +Mauritius +Mauritius's +Mauro +Mauro's +Maurois +Mauryan +Mauryan's +Mauser +Mavis +Mavis's +Max +Max's +Maximilian +Maxine +Maxine's +Maxwell +May +May's +Maya +Maya's +Mayan +Mayan's +Mayans +Mayas +Mayer +Mayfair +Mayflower +Mayflower's +Maynard +Maynard's +Mayo +Mayra +Mayra's +Mays +Maytag +Maytag's +Mazama +Mazama's +Mazarin +Mazatlan +Mazatlan's +Mazda +Mazola +Mazola's +Mazzini +Mazzini's +Mb +Mbabane +Mbabane's +Mbini +Mbini's +McAdam +McAdam's +McBride +McBride's +McCain +McCain's +McCall +McCall's +McCarthy +McCarthyism +McCarthyism's +McCartney +McCartney's +McCarty +McCarty's +McClain +McClain's +McClellan +McClure +McClure's +McConnell +McConnell's +McCormick +McCoy +McCray +McCray's +McCullough +McCullough's +McDaniel +McDaniel's +McDonald +McDonald's +McDonnell +McDonnell's +McDowell +McDowell's +McEnroe +McEnroe's +McFadden +McFadden's +McFarland +McFarland's +McGee +McGee's +McGovern +McGovern's +McGowan +McGowan's +McGuffey +McGuffey's +McGuire +McGuire's +McIntosh +McIntosh's +McIntyre +McIntyre's +McKay +McKay's +McKee +McKee's +McKenzie +McKenzie's +McKinley +McKinley's +McKinney +McKinney's +McKnight +McKnight's +McLaughlin +McLaughlin's +McLean +McLean's +McLeod +McLeod's +McLuhan +McLuhan's +McMahon +McMahon's +McMillan +McMillan's +McNamara +McNamara's +McNaughton +McNaughton's +McNeil +McNeil's +McPherson +McPherson's +McQueen +McQueen's +McVeigh +McVeigh's +Md +Md's +Mead +Meade +Meadows +Meagan +Meagan's +Meany +Meany's +Mecca +Mecca's +Meccas +Medan +Medea +Medea's +Medellin +Media +Medicaid +Medicaid's +Medicaids +Medicare +Medicare's +Medicares +Medici +Medina +Mediterranean +Mediterranean's +Mediterraneans +Medusa +Medusa's +Meg +Meg's +Megan +Megan's +Meghan +Meghan's +Meier +Meier's +Meighen +Meighen's +Meiji +Meiji's +Meir +Mejia +Mejia's +Mekong +Mekong's +Mel +Mel's +Melanesia +Melanesia's +Melanesian +Melanie +Melanie's +Melba +Melbourne +Melbourne's +Melchior +Melchizedek +Melendez +Melendez's +Melinda +Melinda's +Melisa +Melisa's +Melisande +Melisande's +Melissa +Melissa's +Mellon +Melody +Melody's +Melpomene +Melpomene's +Melton +Melton's +Melva +Melva's +Melville +Melville's +Melvin +Melvin's +Memling +Memphis +Memphis's +Menander +Mencius +Mencken +Mendel +Mendel's +Mendeleev +Mendeleev's +Mendelian +Mendelssohn +Mendez +Mendez's +Mendocino +Mendocino's +Mendoza +Menelaus +Menelaus's +Menelik +Menelik's +Menes +Menkalinan +Menkalinan's +Menkar +Menkar's +Menkent +Menkent's +Mennen +Mennen's +Mennonite +Mennonite's +Mennonites +Menominee +Menominee's +Menotti +Mensa +Mentholatum +Mentholatum's +Menuhin +Menuhin's +Menzies +Mephistopheles +Merak +Merak's +Mercado +Mercado's +Mercator +Mercedes +Mercer +Mercer's +Mercia +Merck +Merck's +Mercuries +Mercurochrome +Mercurochrome's +Mercury +Mercury's +Meredith +Merino +Merle +Merle's +Merlin +Merlin's +Merlot +Merovingian +Merriam +Merriam's +Merrick +Merrick's +Merrill +Merrill's +Merrimack +Merrimack's +Merritt +Merritt's +Merthiolate +Merthiolate's +Merton +Mervin +Mervin's +Mesa +Mesabi +Mesabi's +Mesmer +Mesmer's +Mesolithic +Mesopotamia +Mesopotamia's +Mesozoic +Mesozoic's +Messerschmidt +Messerschmidt's +Messiaen +Messiah +Messiah's +Messiahs +Messianic +Metallica +Metallica's +Metamucil +Metamucil's +Methodism +Methodism's +Methodisms +Methodist +Methodist's +Methodists +Methuselah +Metternich +Meuse +Meuse's +Mexicali +Mexican +Mexican's +Mexicans +Mexico +Mexico's +Meyer +Meyer's +Meyerbeer +Meyers +Mfume +Mfume's +Mg +Mg's +MiG +Mia +Mia's +Miami +Miami's +Miamis +Miaplacidus +Miaplacidus's +Micah +Micawber +Mich +Michael +Micheal +Micheal's +Michel +Michel's +Michelangelo +Michelangelo's +Michele +Michele's +Michelin +Michelin's +Michelle +Michelle's +Michelob +Michelob's +Michelson +Michigan +Michigan's +Michigander +Michigander's +Michiganders +Mick +Mick's +Mickey +Mickey's +Mickie +Mickie's +Micky +Micky's +Micmac +Micmac's +Micronesia +Micronesia's +Micronesian +Microsoft +Microsoft's +Midas +Midas's +Middleton +Midland +Midway +Midway's +Midwest +Midwest's +Midwestern +Miguel +Miguel's +Mike +Mike's +Mikhail +Mikhail's +Mikoyan +Mikoyan's +Milagros +Milagros's +Milan +Milan's +Mildred +Mildred's +Miles +Milford +Milford's +Milken +Milken's +Mill +Millard +Millard's +Millay +Miller +Millet +Millicent +Millicent's +Millie +Millie's +Millikan +Mills +Milne +Milo +Milo's +Milosevic +Milosevic's +Milquetoast +Milquetoast's +Miltiades +Milton +Miltonic +Miltown +Miltown's +Milwaukee +Milwaukee's +Mimi +Mimi's +Mimosa +Mimosa's +Min +Min's +Minamoto +Minamoto's +Mindanao +Mindoro +Mindoro's +Mindy +Mindy's +Minerva +Minerva's +Ming +Mingus +Mingus's +Minn +Minneapolis +Minneapolis's +Minnelli +Minnelli's +Minnesota +Minnesota's +Minnesotan +Minnesotan's +Minnesotans +Minnie +Minnie's +Minoan +Minoan's +Minoans +Minolta +Minolta's +Minos +Minos's +Minot +Minot's +Minotaur +Minotaur's +Minsk +Minsk's +Minsky +Minsky's +Mintaka +Mintaka's +Minuit +Miocene +Miocene's +Mir +Mir's +Mira +Mira's +Mirabeau +Mirach +Mirach's +Miranda +Mirfak +Mirfak's +Miriam +Miriam's +Miro +Mirzam +Mirzam's +Miskito +Miss +Mississauga +Mississippi +Mississippi's +Mississippian +Mississippian's +Mississippians +Missouri +Missouri's +Missourian +Missourian's +Missourians +Missy +Missy's +Mistassini +Mister +Misty +Misty's +Mitch +Mitch's +Mitchel +Mitchel's +Mitchell +Mitford +Mitford's +Mithra +Mithra's +Mithridates +Mithridates's +Mitsubishi +Mitsubishi's +Mitterrand +Mitterrand's +Mitty +Mitty's +Mitzi +Mitzi's +Mixtec +Mizar +Mn +Mn's +Mnemosyne +Mnemosyne's +Mo +Mo's +Mobil +Mobil's +Mobile +Mobile's +Mobutu +Mobutu's +Modesto +Modigliani +Moe +Moe's +Moet +Moet's +Mogadishu +Mohacs +Mohacs's +Mohamed +Mohamed's +Mohammad +Mohammad's +Mohammed +Mohammed's +Mohammedan +Mohammedan's +Mohammedanism +Mohammedanism's +Mohammedanisms +Mohammedans +Mohawk +Mohawk's +Mohawks +Mohican +Mohican's +Mohicans +Moho +Moho's +Mohorovicic +Mohorovicic's +Moira +Moises +Moiseyev +Moiseyev's +Mojave +Mojave's +Moldavia +Moldavia's +Moldova +Moldova's +Moliere +Moliere's +Molina +Moll +Moll's +Mollie +Mollie's +Molly +Molly's +Molnar +Molnar's +Moloch +Moloch's +Molokai +Molokai's +Molotov +Molotov's +Moluccas +Mombasa +Mombasa's +Mon +Mon's +Mona +Mona's +Monaco +Monaco's +Mondale +Mondale's +Monday +Monday's +Mondays +Mondrian +Monera +Monera's +Monet +Mongol +Mongol's +Mongolia +Mongolia's +Mongolian +Mongolian's +Mongolians +Mongoloid +Mongols +Monica +Monica's +Monique +Monique's +Monk +Monk's +Monmouth +Monongahela +Monroe +Monroe's +Monrovia +Monrovia's +Mons +Monsanto +Monsanto's +Mont +Montague +Montaigne +Montana +Montana's +Montanan +Montanan's +Montanans +Montcalm +Monte +Monte's +Montenegrin +Montenegro +Montenegro's +Monterrey +Montesquieu +Montessori +Monteverdi +Montevideo +Montevideo's +Montezuma +Montezuma's +Montgolfier +Montgomery +Montgomery's +Monticello +Montoya +Montoya's +Montpelier +Montpelier's +Montrachet +Montreal +Montreal's +Montserrat +Montserrat's +Monty +Monty's +Moody +Moog +Moon +Moon's +Mooney +Mooney's +Moor +Moor's +Moore +Moorish +Moorish's +Moors +Morales +Morales's +Moran +Moran's +Moravia +Moravian +Mordred +More +Moreno +Moreno's +Morgan +Morgan's +Moriarty +Moriarty's +Morin +Morin's +Morison +Morison's +Morita +Morita's +Morley +Mormon +Mormon's +Mormonism +Mormonism's +Mormonisms +Mormons +Moro +Moroccan +Moroccan's +Moroccans +Morocco +Morocco's +Moroni +Morpheus +Morpheus's +Morphy +Morphy's +Morris +Morrison +Morrow +Morrow's +Morse +Morse's +Mort +Mort's +Mortimer +Morton +Morton's +Mosaic +Mosaic's +Moscow +Moscow's +Moseley +Moselle +Moselle's +Moses +Moses's +Moslem +Moslem's +Moslems +Mosley +Mosley's +Moss +Moss's +Mosul +Motorola +Motorola's +Motown +Motown's +Motrin +Motrin's +Mott +Mount +Mountbatten +Mountie +Mountie's +Mounties +Moussorgsky +Mouthe +Mouthe's +Mouton +Mouton's +Mowgli +Mowgli's +Mozambican +Mozambican's +Mozambicans +Mozambique +Mozambique's +Mozart +Mozart's +Mozilla +Mozilla's +Mr +Mr's +Mrs +Ms +Mt +Muawiya +Muawiya's +Mubarak +Mubarak's +Mueller +Mueller's +Muenster +Muenster's +Mugabe +Mugabe's +Muhammad +Muhammad's +Muhammadan +Muhammadan's +Muhammadanism +Muhammadanism's +Muhammadanisms +Muhammadans +Muir +Mujib +Mujib's +Mulder +Mulder's +Mullen +Mullen's +Muller +Muller's +Mulligan +Mulligan's +Mullikan +Mullikan's +Mullins +Mulroney +Mulroney's +Multan +Mumbai +Mumbai's +Mumford +Munch +Munich +Munich's +Munoz +Munoz's +Munro +Muppet +Muppet's +Murasaki +Murasaki's +Murat +Murchison +Murchison's +Murdoch +Muriel +Muriel's +Murillo +Murine +Murine's +Murmansk +Murphy +Murray +Murray's +Murrow +Murrow's +Murrumbidgee +Muscat +Muscat's +Muscovite +Muscovite's +Muscovy +Muscovy's +Muse +Muse's +Musharraf +Musharraf's +Musial +Musial's +Muskogee +Muskogee's +Muslim +Muslim's +Muslims +Mussolini +Mussolini's +Mussorgsky +Mutsuhito +Mutsuhito's +Muzak +MySpace +MySpace's +Myanmar +Myanmar's +Mycenae +Mycenae's +Mycenaean +Myers +Mylar +Mylar's +Mylars +Myles +Myles's +Myra +Myra's +Myrdal +Myrdal's +Myrna +Myrna's +Myron +Myrtle +Myrtle's +Mysore +Myst +Myst's +Münchhausen +Münchhausen's +N +N's +NASA's +NASCAR +NASCAR's +NASDAQ's +NATO's +NE's +NORAD +NORAD's +NW's +Na +Na's +Nabisco +Nabisco's +Nabokov +Nader +Nadia +Nadia's +Nadine +Nadine's +Nagasaki +Nagasaki's +Nagoya +Nagpur +Nagy +Nahuatl +Nahuatl's +Nahum +Naipaul +Naipaul's +Nair +Nair's +Nairobi +Nairobi's +Naismith +Naismith's +Nam +Nam's +Namath +Namath's +Namibia +Namibia's +Namibian +Namibian's +Namibians +Nan +Nan's +Nanak +Nanchang +Nancy +Nanette +Nanette's +Nanjing +Nanjing's +Nanking +Nanking's +Nankings +Nannie +Nannie's +Nanook +Nanook's +Nansen +Nantes +Nantes's +Nantucket +Nantucket's +Naomi +Naomi's +Naphtali +Naphtali's +Napier +Napier's +Naples +Naples's +Napoleon +Napoleon's +Napoleonic +Napster +Napster's +Narcissus +Narcissus's +Narmada +Narmada's +Narnia +Narnia's +Narragansett +Nash +Nashua +Nashville +Nashville's +Nassau +Nassau's +Nasser +Nasser's +Nat +Nat's +Natalia +Natalia's +Natalie +Natalie's +Natasha +Natasha's +Natchez +Nate +Nate's +Nathan +Nathaniel +Nathaniel's +Nathans +Nation +Nationwide +Nationwide's +Naugahyde +Nauru +Nauru's +Nautilus +Navaho +Navaho's +Navahoes +Navahos +Navajo +Navajo's +Navajoes +Navajos +Navarre +Navarro +Navarro's +Navratilova +Navratilova's +Nazarene +Nazareth +Nazca +Nazi +Nazi's +Naziism +Naziism's +Naziisms +Nazis +Nazism +Nazism's +Nazisms +Nb +Nb's +Nd +Nd's +Ndjamena +Ndjamena's +Ne +Ne's +Neal +Neal's +Neanderthal +Neanderthal's +Neanderthals +Neapolitan +Nebraska +Nebraska's +Nebraskan +Nebraskan's +Nebraskans +Nebuchadnezzar +Ned +Ned's +Nefertiti +Negev +Negev's +Negro +Negro's +Negroes +Negroid +Negroid's +Negroids +Negros +Nehemiah +Nehru +Nehru's +Neil +Neil's +Nelda +Nelda's +Nell +Nell's +Nellie +Nellie's +Nelly +Nelly's +Nelsen +Nelsen's +Nelson +Nembutal +Nembutal's +Nemesis +Nemesis's +Neogene +Neolithic +Nepal +Nepal's +Nepalese +Nepalese's +Nepali +Nepali's +Neptune +Neptune's +Nereid +Nereid's +Nerf +Nero +Neruda +Nescafe +Nescafe's +Nesselrode +Nestle +Nestle's +Nestor +Nestor's +Nestorius +Netflix +Netflix's +Netherlander +Netherlander's +Netherlanders +Netherlands +Netscape +Netscape's +Nettie +Nettie's +Netzahualcoyotl +Netzahualcoyotl's +Nev +Neva +Nevada +Nevada's +Nevadan +Nevadan's +Nevadans +Nevis +Nevis's +Nevsky +Nevsky's +Newark +Newark's +Newcastle +Newcastle's +Newfoundland +Newfoundland's +Newfoundlands +Newman +Newport +Newport's +Newsweek +Newsweek's +Newton +Newton's +Newtonian +Newtonian's +Nexis +Ngaliema +Ngaliema's +Nguyen +Nguyen's +Ni +Niagara +Niagara's +Niamey +Niamey's +Nibelung +Nicaea +Nicaragua +Nicaragua's +Nicaraguan +Nicaraguan's +Nicaraguans +Niccolo +Niccolo's +Nice +Nice's +Nicene +Nichiren +Nichiren's +Nicholas +Nichole +Nichole's +Nichols +Nicholson +Nick +Nick's +Nickelodeon +Nickelodeon's +Nicklaus +Nickolas +Nicobar +Nicobar's +Nicodemus +Nicola +Nicola's +Nicolas +Nicole +Nicole's +Nicosia +Nicosia's +Niebuhr +Niebuhr's +Nielsen +Nietzsche +Nieves +Nieves's +Nigel +Nigel's +Niger +Niger's +Nigeria +Nigeria's +Nigerian +Nigerian's +Nigerians +Nightingale +Nightingale's +Nijinsky +Nike +Nike's +Nikita +Nikita's +Nikkei +Nikki +Nikki's +Nikolai +Nikolai's +Nikolayev +Nikon +Nikon's +Nile +Nile's +Nimitz +Nimrod +Nina +Nina's +Nineveh +Nineveh's +Nintendo +Niobe +Nippon +Nippon's +Nirenberg +Nirenberg's +Nirvana +Nisan +Nisan's +Nisei +Nissan +Nissan's +Nita +Nita's +Nivea +Nivea's +Nixon +Nixon's +Nkrumah +NoDoz +NoDoz's +Noah +Noah's +Nobel +Nobelist +Nobelist's +Nobelists +Noble +Noble's +Noe +Noe's +Noel +Noel's +Noelle +Noelle's +Noels +Noemi +Noemi's +Noh +Nokia +Nokia's +Nola +Nola's +Nolan +Nolan's +Nome +Nona +Nona's +Nootka +Nootka's +Nora +Nora's +Norbert +Norbert's +Norberto +Norberto's +Nordic +Nordic's +Nordics +Noreen +Noreen's +Norfolk +Norfolk's +Noriega +Noriega's +Norma +Norman +Norman's +Normand +Normand's +Normandy +Normandy's +Normans +Norplant +Norris +Norse +Norse's +Norseman +Norseman's +Norsemen +North +North's +Northampton +Northeast +Northeast's +Northeasts +Northerner +Northerner's +Northrop +Northrop's +Northrup +Northrup's +Norths +Northwest +Northwest's +Northwests +Norton +Norton's +Norway +Norway's +Norwegian +Norwegian's +Norwegians +Norwich +Nosferatu +Nosferatu's +Nostradamus +Nottingham +Nouakchott +Nouakchott's +Noumea +Noumea's +Nov +Nov's +Nova +Novartis +Novartis's +November +November's +Novembers +Novgorod +Novocain +Novocain's +Novocaine +Novokuznetsk +Novosibirsk +Novosibirsk's +Noxzema +Noxzema's +Noyce +Noyce's +Noyes +Noyes's +Np +Np's +Nubia +Nubian +Nukualofa +Numbers +Numbers's +Nunavut +Nunavut's +Nunez +Nunez's +Nunki +Nunki's +Nuremberg +Nureyev +NutraSweet +NutraSweet's +NyQuil +NyQuil's +Nyasa +Nyasa's +Nyerere +Nyerere's +O +O'Brien +O'Casey +O'Connell +O'Connor +O'Donnell +O'Hara +O'Higgins +O'Keeffe +O'Neil +O'Neill +O'Rourke +O'Toole +O's +OAS's +OD's +OHSA +OHSA's +OK +OK's +OKs +OPEC's +OSHA's +Oahu +Oahu's +Oakland +Oakland's +Oakley +Oates +Oaxaca +Oaxaca's +Ob +Ob's +Obadiah +Obama +Obama's +Oberlin +Oberlin's +Oberon +Occam +Occident +Occidental +Occidental's +Occidentals +Oceania +Oceania's +Oceanus +Oceanus's +Ochoa +Ochoa's +Oct +Oct's +Octavia +Octavio +Octavio's +October +October's +Octobers +Odell +Odell's +Oder +Oder's +Odessa +Odessa's +Odets +Odin +Odin's +Odis +Odis's +Odom +Odom's +Odysseus +Odysseus's +Odyssey +Odyssey's +Oedipal +Oedipus +Oedipus's +Oersted +Oersted's +Ofelia +Ofelia's +Offenbach +OfficeMax +OfficeMax's +Ogbomosho +Ogden +Ogden's +Ogilvy +Ogilvy's +Oglethorpe +Ohio +Ohio's +Ohioan +Ohioan's +Ohioans +Oise +Oise's +Ojibwa +Ojibwa's +Ojibwas +Okeechobee +Okefenokee +Okhotsk +Okinawa +Okinawa's +Okla +Oklahoma +Oklahoma's +Oklahoman +Oktoberfest +Ola +Ola's +Olaf +Olaf's +Olajuwon +Olajuwon's +Olav +Olav's +Oldenburg +Oldfield +Oldfield's +Oldsmobile +Oldsmobile's +Olduvai +Olduvai's +Olen +Olen's +Olenek +Olenek's +Olga +Olga's +Oligocene +Oligocene's +Olin +Olin's +Olive +Olive's +Oliver +Olivetti +Olivetti's +Olivia +Olivia's +Olivier +Ollie +Ollie's +Olmec +Olmsted +Olmsted's +Olsen +Olsen's +Olson +Olson's +Olympia +Olympia's +Olympiad +Olympiad's +Olympiads +Olympian +Olympian's +Olympians +Olympias +Olympic +Olympics +Olympus +Olympus's +Omaha +Omaha's +Omahas +Oman +Oman's +Omar +Omar's +Omayyad +Omdurman +Omdurman's +Omsk +Omsk's +Onassis +Oneal +Oneal's +Onega +Onegin +Onegin's +Oneida +Oneida's +Onion +Onion's +Ono +Ono's +Onondaga +Onondaga's +Onsager +Onsager's +Ontario +Ontario's +Oort +Oort's +Opal +Opal's +Opel +Opel's +Ophelia +Ophelia's +Ophiuchus +Oppenheimer +Oppenheimer's +Oprah +Oprah's +Ora +Ora's +Oracle +Oracle's +Oran +Oran's +Orange +Oranjestad +Oranjestad's +Orbison +Orbison's +Ordovician +Ordovician's +Oregon +Oregon's +Oregonian +Oregonian's +Oregonians +Oreo +Orestes +Orient +Oriental +Oriental's +Orientals +Orin +Orin's +Orinoco +Orinoco's +Orion +Orion's +Oriya +Oriya's +Orizaba +Orizaba's +Orkney +Orkney's +Orlando +Orlando's +Orleans +Orleans's +Orlon +Orlon's +Orlons +Orly +Orly's +Orpheus +Orpheus's +Orphic +Orr +Orr's +Ortega +Ortega's +Ortiz +Ortiz's +Orval +Orval's +Orville +Orville's +Orwell +Orwellian +Os +Osage +Osage's +Osaka +Osaka's +Osbert +Osbert's +Osborn +Osborn's +Osborne +Oscar +Oscar's +Oscars +Osceola +Osgood +Osgood's +Oshawa +Oshkosh +Oshkosh's +Osiris +Osiris's +Oslo +Oslo's +Osman +Osman's +Ostrogoth +Ostrogoth's +Ostwald +Osvaldo +Osvaldo's +Oswald +Othello +Othello's +Otis +Otis's +Ottawa +Ottawa's +Ottawas +Otto +Ottoman +Ouagadougou +Ouija +Ouija's +Ovid +Owen +Owens +Oxford +Oxford's +Oxfords +Oxnard +Oxonian +Oxonian's +Oxus +Oxycontin +Oxycontin's +Oz +Ozark +Ozark's +Ozarks +Ozarks's +Ozymandias +Ozymandias's +Ozzie +Ozzie's +P +P's +PA's +PAC's +PBS's +PC's +PM's +PMS's +POW's +PS's +PST's +PVC's +Pa +Pa's +Paar +Paar's +Pablo +Pablo's +Pablum +Pablum's +Pabst +Pabst's +Pace +Pace's +Pacheco +Pacheco's +Pacific +Pacific's +Pacino +Pacino's +Packard +Packard's +Paderewski +Padilla +Padilla's +Paganini +Page +Paglia +Paglia's +Pahlavi +Paige +Paige's +Paine +Pakistan +Pakistan's +Pakistani +Pakistani's +Pakistanis +Palau +Palembang +Paleocene +Paleocene's +Paleogene +Paleolithic +Paleozoic +Paleozoic's +Palermo +Palermo's +Palestine +Palestine's +Palestinian +Palestinian's +Palestinians +Palestrina +Paley +Palikir +Palikir's +Palisades +Palisades's +Palladio +Palmer +Palmerston +Palmolive +Palmolive's +Palmyra +Palmyra's +Palomar +Palomar's +Pam +Pam's +Pamela +Pamela's +Pamirs +Pampers +Pan +Pan's +Panama +Panama's +Panamanian +Panamanian's +Panamanians +Panamas +Panasonic +Panasonic's +Pandora +Pandora's +Pangaea +Pangaea's +Pankhurst +Panmunjom +Panmunjom's +Pansy +Pansy's +Pantagruel +Pantaloon +Pantaloon's +Pantheon +Panza +Panza's +Paracelsus +Paraclete +Paradise +Paraguay +Paraguay's +Paraguayan +Paraguayan's +Paraguayans +Paramaribo +Paramaribo's +Paramount +Paramount's +Paraná +Paraná's +Parcheesi +Parcheesi's +Pareto +Paris +Paris's +Parisian +Parisian's +Parisians +Park +Parker +Parkinson +Parkinson's +Parkman +Parks +Parliament +Parmesan +Parmesan's +Parmesans +Parnassus +Parnassus's +Parnell +Parr +Parrish +Parsi +Parsi's +Parsifal +Parsifal's +Parsons +Parthenon +Parthenon's +Parthia +Parthia's +Pasadena +Pasadena's +Pascal +Pascal's +Pasquale +Pasquale's +Passion +Passion's +Passions +Passover +Passover's +Passovers +Pasternak +Pasteur +Pasteur's +Pat +Patagonia +Patagonia's +Patagonian +Pate +Pate's +Patel +Patel's +Paterson +Patna +Patrica +Patrica's +Patrice +Patrice's +Patricia +Patricia's +Patrick +Patrick's +Patsy +Patsy's +Patterson +Patterson's +Patti +Patton +Patty +Patty's +Paul +Paul's +Paula +Paula's +Paulette +Paulette's +Pauli +Pauline +Pauling +Pavarotti +Pavlov +Pavlov's +Pavlova +Pavlovian +Pawnee +Pawnee's +PayPal +PayPal's +Payne +Payne's +Paypal +Paypal's +Pb +Pb's +Pd +Pd's +Peabody +Peabody's +Peace +Peace's +Peale +Pearl +Pearl's +Pearlie +Pearlie's +Pearson +Pearson's +Peary +Pechora +Peck +Peck's +Peckinpah +Peckinpah's +Pecos +Pecos's +Pedro +Pedro's +Peel +Peel's +Peg +Peg's +Pegasus +Pegasus's +Pegasuses +Peggy +Peggy's +Pei +Peiping +Peiping's +Pekinese +Pekinese's +Pekineses +Peking +Peking's +Pekingese +Pekingese's +Pekingeses +Pekings +Pele +Pele's +Pelee +Pelee's +Peloponnese +Peloponnese's +Pembroke +Pembroke's +Pena +Pena's +Penderecki +Penderecki's +Penelope +Penelope's +Penn +Penney +Penney's +Pennington +Pennington's +Pennsylvania +Pennsylvania's +Pennsylvanian +Pennsylvanian's +Pennsylvanians +Penny +Penny's +Pennzoil +Pennzoil's +Pensacola +Pensacola's +Pentagon +Pentagon's +Pentateuch +Pentateuch's +Pentax +Pentax's +Pentecost +Pentecost's +Pentecostal +Pentecostal's +Pentecostals +Pentecosts +Pentium +Pentium's +Peoria +Pepin +Pepin's +Pepsi +Pepsi's +Pepys +Pequot +Percheron +Percival +Percy +Perelman +Perelman's +Perez +Perez's +Periclean +Pericles +Perkins +Perl +Perl's +Perm +Perm's +Permalloy +Permalloy's +Permian +Permian's +Pernod +Pernod's +Peron +Perot +Perot's +Perrier +Perry +Perseid +Persephone +Persephone's +Persepolis +Persepolis's +Perseus +Perseus's +Pershing +Persia +Persia's +Persian +Persian's +Persians +Perth +Perth's +Peru +Peru's +Peruvian +Peruvian's +Peruvians +Peshawar +Pete +Pete's +Peter +Peter's +Peters +Petersen +Petersen's +Peterson +Peterson's +Petra +Petrarch +Petrarch's +Petty +Petty's +Peugeot +Peugeot's +Pfizer +Pfizer's +PhD +PhD's +Phaedra +Phaethon +Phaethon's +Phanerozoic +Pharaoh +Pharaoh's +Pharaohs +Pharisee +Pharisee's +Pharisees +Phekda +Phekda's +Phelps +Phelps's +Phidias +Phil +Philadelphia +Philadelphia's +Philby +Philby's +Philip +Philippe +Philippe's +Philippians +Philippine +Philippine's +Philippines +Philips +Philistine +Phillip +Phillipa +Phillipa's +Phillips +Philly +Philly's +Phipps +Phipps's +Phobos +Phoebe +Phoebe's +Phoenicia +Phoenicia's +Phoenix +Phoenix's +Photostat +Photostat's +Photostats +Photostatted +Photostatting +Phrygia +Phrygia's +Phyllis +Phyllis's +Piaf +Piaf's +Piaget +Piaget's +Pianola +Pianola's +Picasso +Picasso's +Piccadilly +Pickering +Pickering's +Pickett +Pickford +Pickford's +Pickwick +Pickwick's +Pict +Piedmont +Piedmont's +Pierce +Pierce's +Pierre +Pierre's +Pierrot +Pierrot's +Pigmies +Pigmy +Pigmy's +Pike +Pike's +Pilate +Pilates +Pilcomayo +Pilgrim +Pillsbury +Pillsbury's +Pinatubo +Pinatubo's +Pincus +Pincus's +Pindar +Pindar's +Pinkerton +Pinocchio +Pinocchio's +Pinochet +Pinochet's +Pinter +Pippin +Pippin's +Piraeus +Pirandello +Pisa +Pisces +Pisces's +Pisistratus +Pissaro +Pissaro's +Pitcairn +Pitcairn's +Pitt +Pittman +Pittman's +Pitts +Pittsburgh +Pittsburgh's +Pius +Pius's +Pizarro +Pkwy +Pl +Planck +Plantagenet +Plantagenet's +Plasticine +Plasticine's +Plataea +Plataea's +Plath +Plato +Plato's +Platonic +Platonism +Platonism's +Platonist +Platonist's +Platte +Platte's +Plautus +Plautus's +PlayStation +PlayStation's +Playboy +Playboy's +Playtex +Playtex's +Pleiades +Pleiades's +Pleistocene +Pleistocene's +Plexiglas +Plexiglas's +Plexiglases +Pliny +Pliocene +Pliocene's +Plutarch +Plutarch's +Pluto +Pluto's +Plymouth +Plymouth's +Pm +Pm's +Po +Po's +Pocahontas +Pocahontas's +Pocono +Pocono's +Poconos +Podgorica +Podhoretz +Podhoretz's +Podunk +Poe +Pogo +Pogo's +Poincaré +Poincaré's +Poiret +Poiret's +Poirot +Poirot's +Poisson +Poisson's +Poitier +Poitier's +Pokémon +Pokémon's +Poland +Poland's +Polanski +Polanski's +Polaris +Polaris's +Polaroid +Polaroid's +Polaroids +Pole +Pole's +Poles +Polish +Polish's +Politburo +Polk +Polk's +Pollard +Pollard's +Pollock +Pollux +Pollux's +Polly +Polly's +Pollyanna +Polo +Polo's +Poltava +Poltava's +Polyhymnia +Polyhymnia's +Polynesia +Polynesia's +Polynesian +Polynesian's +Polynesians +Polyphemus +Pomerania +Pomeranian +Pomeranian's +Pomona +Pompadour +Pompeii +Pompeii's +Pompey +Pompey's +Ponce +Pontchartrain +Pontiac +Pontiac's +Pontianak +Pooh +Pooh's +Poole +Poole's +Poona +Pope +Popeye +Popeye's +Popocatepetl +Popper +Popper's +Poppins +Poppins's +Popsicle +Porfirio +Porfirio's +Porrima +Porrima's +Porsche +Porsche's +Porter +Portia +Portia's +Portland +Portland's +Portsmouth +Portugal +Portugal's +Portuguese +Portuguese's +Poseidon +Poseidon's +Post +Post's +Potemkin +Potomac +Potomac's +Potsdam +Pottawatomie +Pottawatomie's +Potter +Potts +Potts's +Pound +Poussin +Powell +Powell's +PowerPoint +PowerPoint's +Powers +Powhatan +Powhatan's +Poznan +Poznan's +Prada +Prada's +Prado +Prado's +Praetorian +Prague +Prague's +Praia +Praia's +Prakrit +Pratchett +Pratchett's +Pratt +Pratt's +Pravda +Pravda's +Praxiteles +Preakness +Preakness's +Precambrian +Precambrian's +Preminger +Preminger's +Premyslid +Premyslid's +Prensa +Prensa's +Prentice +Prentice's +Pres +Presbyterian +Presbyterian's +Presbyterianism +Presbyterianism's +Presbyterians +Prescott +Prescott's +President +President's +Presidents +Presley +Preston +Pretoria +Pretoria's +Priam +Priam's +Pribilof +Pribilof's +Price +Priestley +Prince +Prince's +Princeton +Princeton's +Principe +Principe's +Priscilla +Priscilla's +Prius +Prius's +Procrustean +Procrustes +Procrustes's +Procter +Procter's +Procyon +Procyon's +Prof +Prohibition +Prokofiev +Promethean +Prometheus +Prometheus's +Proserpine +Proserpine's +Protagoras +Proterozoic +Proterozoic's +Protestant +Protestant's +Protestantism +Protestantism's +Protestantisms +Protestants +Proteus +Proteus's +Proudhon +Proust +Proust's +Provencals +Provence +Provence's +Provençal +Provençal's +Proverbs +Providence +Providence's +Providences +Provo +Prozac +Prozac's +Prudence +Prudence's +Prudential +Prudential's +Pruitt +Pruitt's +Prussia +Prussia's +Prussian +Prussian's +Prut +Pryor +Pryor's +Psalms +Psalter +Psalter's +Psalters +Psyche +Psyche's +Pt +Pt's +Ptah +Ptah's +Ptolemaic +Ptolemies +Ptolemy +Ptolemy's +Pu +Pu's +Puccini +Puck +Puckett +Puckett's +Puebla +Pueblo +Puget +Puget's +Pugh +Pugh's +Pulaski +Pulitzer +Pullman +Pullman's +Pullmans +Punch +Punic +Punic's +Punjab +Punjab's +Punjabi +Punjabi's +Purana +Purcell +Purdue +Purdue's +Purim +Purim's +Purims +Purina +Purina's +Puritan +Puritanism +Puritanism's +Puritanisms +Purus +Purus's +Pusan +Pusan's +Pusey +Pushkin +Pushtu +Pushtu's +Putin +Putin's +Putnam +Puzo +Puzo's +Pygmalion +Pygmalion's +Pygmies +Pygmy +Pygmy's +Pyle +Pyle's +Pym +Pynchon +Pynchon's +Pyongyang +Pyongyang's +Pyotr +Pyotr's +Pyrenees +Pyrenees's +Pyrex +Pyrex's +Pyrexes +Pyrrhic +Pythagoras +Pythagoras's +Pythagorean +Pythias +Python +Python's +Pétain +Pétain's +Pôrto +Pôrto's +Q +Qaddafi +Qaddafi's +Qantas +Qantas's +Qatar +Qatar's +Qingdao +Qiqihar +Qiqihar's +Qom +Qom's +Quaalude +Quaalude's +Quaker +Quaker's +Quakers +Quaoar +Quaoar's +Quasimodo +Quaternary +Quaternary's +Quayle +Quayle's +Quebec +Quebec's +Quechua +Quechua's +Queen +Queens +Queens's +Queensland +Queensland's +Quentin +Quentin's +Quetzalcoatl +Quetzalcoatl's +Quezon +Quezon's +Quincy +Quincy's +Quinn +Quintilian +Quintilian's +Quinton +Quinton's +Quirinal +Quisling +Quisling's +Quito +Quito's +Quixote +Quixotism +Quixotism's +Qumran +Quonset +Québecois +R +R's +RAF's +RAM's +RCA +RCA's +REM's +RN's +RNA's +ROM's +ROTC's +RV's +Ra +Ra's +Rabat +Rabat's +Rabelais +Rabelais's +Rabelaisian +Rabin +Rabin's +Rachael +Rachael's +Rachel +Rachel's +Rachelle +Rachelle's +Rachmaninoff +Racine +Racine's +Radcliffe +Radcliffe's +Rae +Rae's +Rafael +Rafael's +Raffles +Raffles's +Ragnarök +Ragnarök's +Rainier +Raleigh +Raleigh's +Ralph +Ralph's +Rama +Rama's +Ramada +Ramada's +Ramadan +Ramadan's +Ramadans +Ramakrishna +Ramanujan +Ramanujan's +Ramayana +Rambo +Rambo's +Ramirez +Ramirez's +Ramiro +Ramiro's +Ramon +Ramon's +Ramona +Ramona's +Ramos +Ramsay +Ramses +Ramsey +Ramsey's +Rand +Randal +Randal's +Randall +Randall's +Randell +Randell's +Randi +Randi's +Randolph +Randolph's +Randy +Randy's +Rangoon +Rangoon's +Rankin +Rankine +Rankine's +Raoul +Raoul's +Raphael +Rapunzel +Rapunzel's +Raquel +Raquel's +Rasalgethi +Rasalgethi's +Rasalhague +Rasalhague's +Rasmussen +Rasmussen's +Rasputin +Rastaban +Rastaban's +Rastafarian +Rastafarian's +Rather +Rather's +Ratliff +Ratliff's +Raul +Raul's +Ravel +Rawalpindi +Ray +RayBan +RayBan's +Rayburn +Rayburn's +Rayleigh +Raymond +Raymond's +Raymundo +Raymundo's +Rb +Rb's +Rd +Re +Re's +Reagan +Reagan's +Reaganomics +Reaganomics's +Realtor +Reasoner +Reasoner's +Reba +Reba's +Rebecca +Rebekah +Recife +Recife's +Red +Red's +Redford +Redford's +Redgrave +Redgrave's +Redmond +Reebok +Reebok's +Reed +Reed's +Reese +Reese's +Reeves +Refugio +Refugio's +Reggie +Reggie's +Regina +Regina's +Reginae +Reginald +Reginald's +Regor +Regor's +Regulus +Regulus's +Rehnquist +Reich +Reich's +Reichstag +Reid +Reilly +Reilly's +Reinaldo +Reinaldo's +Reinhardt +Reinhold +Reinhold's +Remarque +Rembrandt +Rembrandt's +Remington +Remus +Remus's +Rena +Rena's +Renaissance +Renaissance's +Renaissances +Renault +Renault's +Rene +Rene's +Renee +Renee's +Reno +Reno's +Renoir +Rep +Representative +Republican +Republican's +Republicans +Resurrection +Reuben +Reunion +Reuters +Reuther +Reuther's +Rev +Reva +Reva's +Revelations +Revere +Reverend +Reverend's +Revlon +Revlon's +Rex +Reyes +Reykjavik +Reykjavik's +Reyna +Reyna's +Reynaldo +Reynaldo's +Reynolds +Rh +Rh's +Rhea +Rhee +Rheingau +Rheingau's +Rhenish +Rhiannon +Rhiannon's +Rhine +Rhine's +Rhineland +Rhineland's +Rhoda +Rhoda's +Rhode +Rhodes +Rhodesia +Rhodesia's +Rhonda +Rhonda's +Rhone +Rhone's +Ribbentrop +Ricardo +Rice +Rich +Rich's +Richard +Richards +Richardson +Richelieu +Richelieu's +Richie +Richie's +Richmond +Richmond's +Richter +Richthofen +Rick +Rick's +Rickenbacker +Rickenbacker's +Rickey +Rickey's +Rickie +Rickie's +Rickover +Ricky +Ricky's +Rico +Rico's +Riddle +Riddle's +Ride +Riefenstahl +Riefenstahl's +Riel +Riel's +Riemann +Riemann's +Riesling +Riesling's +Riga +Riga's +Rigel +Rigel's +Riggs +Riggs's +Rigoberto +Rigoberto's +Rigoletto +Rigoletto's +Riley +Rilke +Rimbaud +Ringling +Ringling's +Ringo +Ringo's +Rio +Rio's +Rios +Ripley +Risorgimento +Rita +Rita's +Ritalin +Ritalin's +Ritz +Ritz's +Rivas +Rivera +Rivers +Riverside +Riviera +Riviera's +Rivieras +Riyadh +Riyadh's +Rizal +Rn +Rn's +Roach +Roach's +Rob +Rob's +Robbie +Robbie's +Robbin +Robbin's +Robbins +Robby +Robby's +Roberson +Roberson's +Robert +Robert's +Roberta +Roberta's +Roberto +Roberto's +Roberts +Robertson +Robertson's +Robeson +Robespierre +Robin +Robin's +Robinson +Robitussin +Robitussin's +Robles +Robles's +Robson +Robt +Robt's +Robyn +Robyn's +Rocco +Rocco's +Rocha +Rocha's +Rochambeau +Rochambeau's +Roche +Roche's +Rochelle +Rochelle's +Rochester +Rochester's +Rock +Rockefeller +Rockford +Rockies +Rockies's +Rockne +Rockne's +Rockwell +Rocky +Rocky's +Rod +Rod's +Roddenberry +Roddenberry's +Roderick +Roderick's +Rodger +Rodger's +Rodgers +Rodin +Rodney +Rodolfo +Rodolfo's +Rodrick +Rodrick's +Rodrigo +Rodrigo's +Rodriguez +Rodriguez's +Rodriquez +Rodriquez's +Roeg +Roeg's +Roentgen +Rogelio +Rogelio's +Roger +Rogers +Roget +Roget's +Rojas +Rojas's +Roku +Roku's +Rolaids +Rolaids's +Roland +Rolando +Rolando's +Rolex +Rolex's +Rolland +Rollerblade +Rollins +Rolodex +Rolvaag +Rolvaag's +Roman +Roman's +Romanesque +Romanesque's +Romania +Romania's +Romanian +Romanian's +Romanians +Romanies +Romano +Romanov +Romanov's +Romans +Romansh +Romanticism +Romany +Romany's +Rome +Rome's +Romeo +Romero +Romero's +Romes +Rommel +Rommel's +Romney +Romulus +Romulus's +Ron +Ron's +Ronald +Ronald's +Ronda +Ronda's +Ronnie +Ronnie's +Ronny +Ronny's +Ronstadt +Ronstadt's +Rooney +Rooney's +Roosevelt +Roosevelt's +Root +Root's +Roquefort +Roquefort's +Roqueforts +Rorschach +Rory +Rory's +Rosa +Rosa's +Rosales +Rosales's +Rosalie +Rosalie's +Rosalind +Rosalind's +Rosalinda +Rosalinda's +Rosalyn +Rosalyn's +Rosanna +Rosanna's +Rosanne +Rosanne's +Rosario +Roscoe +Roscoe's +Rose +Rose's +Roseann +Roseann's +Roseau +Roseau's +Rosecrans +Rosecrans's +Rosella +Rosella's +Rosemarie +Rosemarie's +Rosemary +Rosemary's +Rosenberg +Rosenberg's +Rosendo +Rosendo's +Rosenzweig +Rosenzweig's +Rosetta +Rosicrucian +Rosie +Rosie's +Roslyn +Roslyn's +Ross +Ross's +Rossetti +Rossetti's +Rossini +Rossini's +Rostand +Rostov +Rostov's +Rostropovich +Rostropovich's +Roswell +Roswell's +Rotarian +Rotarian's +Roth +Roth's +Rothko +Rothschild +Rotterdam +Rotterdam's +Rottweiler +Rottweiler's +Rouault +Roumania +Roumania's +Rourke +Rourke's +Rousseau +Rousseau's +Rove +Rove's +Rover +Rowe +Rowena +Rowena's +Rowland +Rowland's +Rowling +Rowling's +Roxanne +Roxanne's +Roxie +Roxie's +Roxy +Roxy's +Roy +Roy's +Royal +Royce +Rozelle +Rozelle's +Rte +Ru +Ru's +Rubaiyat +Rubaiyat's +Rubbermaid +Rubbermaid's +Ruben +Ruben's +Rubens +Rubicon +Rubicon's +Rubik +Rubik's +Rubin +Rubin's +Rubinstein +Ruby +Ruby's +Ruchbah +Ruchbah's +Rudolf +Rudolph +Rudolph's +Rudy +Rudy's +Rudyard +Rudyard's +Rufus +Rufus's +Ruhr +Ruhr's +Ruiz +Ruiz's +Rukeyser +Rukeyser's +Rumania +Rumania's +Rumpelstiltskin +Rumpelstiltskin's +Rumsfeld +Rumsfeld's +Runnymede +Runyon +Rupert +Rupert's +Rush +Rush's +Rushdie +Rushdie's +Rushmore +Rushmore's +Ruskin +Russ +Russel +Russel's +Russell +Russell's +Russia +Russia's +Russian +Russian's +Russians +Russo +Russo's +Rustbelt +Rustbelt's +Rusty +Rusty's +Rutan +Rutan's +Rutgers +Ruth +Ruth's +Rutherford +Ruthie +Ruthie's +Rutledge +Rutledge's +Rwanda +Rwanda's +Rwandan +Rwandan's +Rwandans +Rwandas +Rx +Ryan +Ryan's +Rydberg +Rydberg's +Ryder +Ryukyu +Ryukyu's +S +S's +SALT's +SAM's +SAP +SAP's +SARS +SARS's +SC's +SE's +SIDS's +SOP's +SOS's +SW's +Saab +Saab's +Saar +Saarinen +Saatchi +Saatchi's +Sabbath +Sabbath's +Sabbaths +Sabik +Sabik's +Sabin +Sabina +Sabina's +Sabine +Sabine's +Sabre +Sabre's +Sabrina +Sabrina's +Sacajawea +Sacco +Sacco's +Sachs +Sachs's +Sacramento +Sacramento's +Sadat +Saddam +Saddam's +Sadducee +Sade +Sade's +Sadie +Sadie's +Sadr +Sadr's +Safavid +Safeway +Safeway's +Sagan +Sagan's +Saginaw +Saginaw's +Sagittarius +Sagittarius's +Sagittariuses +Sahara +Sahara's +Sahel +Saigon +Saigon's +Saiph +Saiph's +Sakai +Sakha +Sakha's +Sakhalin +Sakhalin's +Sakharov +Saki +Saki's +Saks +Sal +Saladin +Salado +Salamis +Salas +Salas's +Salazar +Salazar's +Salem +Salem's +Salerno +Salerno's +Salinas +Salinger +Salisbury +Salisbury's +Salish +Salish's +Salk +Sallie +Sallie's +Sallust +Sally +Sally's +Salome +Salome's +Salton +Salton's +Salvador +Salvador's +Salvadoran +Salvadoran's +Salvadorans +Salvadorian +Salvadorian's +Salvadorians +Salvatore +Salvatore's +Salween +Salween's +Salyut +Salyut's +Sam +Samantha +Samantha's +Samar +Samar's +Samara +Samaritan +Samaritan's +Samaritans +Samarkand +Samarkand's +Sammie +Sammie's +Sammy +Sammy's +Samoa +Samoa's +Samoan +Samoan's +Samoset +Samoset's +Samoyed +Samoyed's +Sampson +Sampson's +Samson +Samsonite +Samsonite's +Samsung +Samsung's +Samuel +Samuelson +Samuelson's +San +Sana +Sana's +Sanchez +Sanchez's +Sancho +Sancho's +Sand +Sandburg +Sanders +Sandinista +Sandoval +Sandoval's +Sandra +Sandra's +Sandy +Sandy's +Sanford +Sanford's +Sanforized +Sang +Sang's +Sanger +Sanhedrin +Sanka +Sanka's +Sankara +Sankara's +Sanskrit +Sanskrit's +Santa +Santana +Santana's +Santayana +Santeria +Santiago +Santiago's +Santos +Sappho +Sappho's +Sapporo +Sapporo's +Sara +Sara's +Saracen +Saracen's +Saracens +Saragossa +Saragossa's +Sarah +Sarajevo +Sarajevo's +Saran +Saran's +Sarasota +Sarasota's +Saratov +Saratov's +Sarawak +Sarawak's +Sardinia +Sardinia's +Sargasso +Sargasso's +Sargent +Sargon +Sargon's +Sarnoff +Sarnoff's +Saroyan +Saroyan's +Sarto +Sartre +Sasha +Sasha's +Saskatchewan +Saskatchewan's +Saskatoon +Saskatoon's +Sasquatch +Sasquatch's +Sassanian +Sassoon +Sat +Sat's +Satan +Satan's +Satanism +Satanism's +Satanist +Satanist's +Saturday +Saturday's +Saturdays +Saturn +Saturn's +Saturnalia +Saturnalia's +Saudi +Saudi's +Saudis +Saul +Saul's +Saunders +Saundra +Saundra's +Saussure +Sauterne +Sauterne's +Savage +Savannah +Savannah's +Savior +Savior's +Savonarola +Savoy +Savoyard +Savoyard's +Sawyer +Sawyer's +Saxon +Saxon's +Saxons +Saxony +Saxony's +Sayers +Sb +Sb's +Sc +Sc's +Scandinavia +Scandinavia's +Scandinavian +Scandinavian's +Scandinavians +Scaramouch +Scarborough +Scarlatti +Scheat +Scheat's +Schedar +Schedar's +Scheherazade +Scheherazade's +Schelling +Schenectady +Schenectady's +Schiaparelli +Schiaparelli's +Schick +Schick's +Schiller +Schindler +Schindler's +Schlesinger +Schlesinger's +Schliemann +Schlitz +Schlitz's +Schmidt +Schnabel +Schnauzer +Schnauzer's +Schneider +Schneider's +Schoenberg +Schoenberg's +Schopenhauer +Schrieffer +Schrieffer's +Schroeder +Schroeder's +Schrödinger +Schrödinger's +Schubert +Schultz +Schultz's +Schulz +Schulz's +Schumann +Schumpeter +Schumpeter's +Schuyler +Schuyler's +Schuylkill +Schuylkill's +Schwartz +Schwartz's +Schwarzenegger +Schwarzenegger's +Schwarzkopf +Schwarzkopf's +Schweitzer +Schweppes +Schweppes's +Schwinger +Schwinger's +Schwinn +Schwinn's +Scientology +Scientology's +Scipio +Scipio's +Scopes +Scopes's +Scorpio +Scorpio's +Scorpios +Scorpius +Scorpius's +Scorsese +Scorsese's +Scot +Scot's +Scotch +Scotch's +Scotches +Scotchman +Scotchman's +Scotchmen +Scotland +Scotland's +Scots +Scotsman +Scotsman's +Scotsmen +Scotswoman +Scotswoman's +Scotswomen +Scott +Scottie +Scottie's +Scottish +Scottish's +Scottsdale +Scotty +Scrabble +Scrabble's +Scranton +Scriabin +Scribner +Scribner's +Scripture +Scripture's +Scriptures +Scrooge +Scruggs +Scruggs's +Scud +Sculley +Sculley's +Scylla +Scylla's +Scythia +Scythian +Se +Se's +Seaborg +Seagram +Seagram's +Sean +Sean's +Sears +Sears's +Seattle +Seattle's +Sebastian +Sebastian's +Sec +Seconal +Seconal's +Secretariat +Secretariat's +Secretary +Seder +Seder's +Seders +Sedna +Sedna's +Seebeck +Seebeck's +Sega +Sega's +Segovia +Segovia's +Segre +Segre's +Segundo +Segundo's +Seiko +Seiko's +Seine +Seine's +Seinfeld +Seinfeld's +Sejong +Sejong's +Selassie +Selassie's +Selectric +Selectric's +Selena +Selena's +Seleucid +Seleucus +Seleucus's +Selim +Selim's +Seljuk +Selkirk +Selkirk's +Sellers +Sellers's +Selma +Selma's +Selznick +Selznick's +Semarang +Seminole +Seminole's +Seminoles +Semiramis +Semite +Semite's +Semites +Semitic +Semitic's +Semitics +Semtex +Sen +Senate +Senate's +Senates +Senator +Sendai +Seneca +Seneca's +Senecas +Senegal +Senegal's +Senegalese +Senegalese's +Senghor +Senior +Sennacherib +Sennett +Sennett's +Sensurround +Sensurround's +Seoul +Seoul's +Sephardi +Sepoy +Sepoy's +Sept +Sept's +September +September's +Septembers +Septuagint +Septuagint's +Septuagints +Sequoya +Serb +Serb's +Serbia +Serbia's +Serbian +Serbian's +Serbians +Serbs +Serena +Serena's +Serengeti +Serengeti's +Sergei +Sergei's +Sergio +Sergio's +Serpens +Serra +Serra's +Serrano +Serrano's +Set +Set's +Seth +Seth's +Seton +Seurat +Seuss +Sevastopol +Sevastopol's +Severn +Severus +Seville +Seville's +Seward +Sextans +Sexton +Sexton's +Seychelles +Seychelles's +Seyfert +Seymour +Seymour's +Sgt +Shackleton +Shaffer +Shaffer's +Shaka +Shaka's +Shakespeare +Shakespeare's +Shakespearean +Shana +Shana's +Shane +Shane's +Shanghai +Shanghai's +Shankara +Shankara's +Shanna +Shanna's +Shannon +Shantung +Shapiro +Shapiro's +Shari +Shari'a +Sharif +Sharif's +Sharlene +Sharlene's +Sharon +Sharp +Sharp's +Sharpe +Sharpe's +Sharron +Sharron's +Shasta +Shasta's +Shaula +Shaula's +Shaun +Shaun's +Shauna +Shauna's +Shavian +Shavian's +Shavuot +Shavuot's +Shaw +Shaw's +Shawn +Shawn's +Shawna +Shawna's +Shawnee +Shawnee's +Shcharansky +Shcharansky's +Shea +Shea's +Sheba +Shebeli +Shebeli's +Sheena +Sheena's +Sheetrock +Sheetrock's +Sheffield +Sheffield's +Sheila +Sheila's +Shelby +Shelby's +Sheldon +Sheldon's +Shelia +Shelia's +Shell +Shell's +Shelley +Shelly +Shelly's +Shelton +Shelton's +Shenandoah +Shenyang +Shenyang's +Sheol +Shepard +Shepard's +Shepherd +Shepherd's +Sheppard +Sheppard's +Sheratan +Sheratan's +Sheraton +Sheraton's +Sheree +Sheree's +Sheri +Sheri's +Sheridan +Sherlock +Sherman +Sherpa +Sherri +Sherri's +Sherrie +Sherrie's +Sherry +Sherry's +Sherwood +Sheryl +Sheryl's +Shetland +Shetland's +Shetlands +Shevardnadze +Shevardnadze's +Shevat +Shevat's +Shi'ite +Shields +Shields's +Shijiazhuang +Shikoku +Shikoku's +Shillong +Shiloh +Shiloh's +Shinto +Shinto's +Shintoism +Shintoism's +Shintoisms +Shintos +Shiraz +Shiraz's +Shirley +Shirley's +Shiva +Shiva's +Shockley +Shockley's +Short +Short's +Shorthorn +Shoshone +Shoshone's +Shostakovitch +Shostakovitch's +Shrek +Shrek's +Shreveport +Shriner +Shropshire +Shula +Shula's +Shylock +Shylockian +Shylockian's +Si +Siam +Siam's +Siamese +Siamese's +Sian +Sian's +Sibelius +Siberia +Siberia's +Siberian +Siberian's +Sibyl +Sicilian +Sicilian's +Sicilians +Sicily +Sicily's +Sid +Sid's +Siddhartha +Siddhartha's +Sidney +Siegfried +Siemens +Sierpinski +Sierpinski's +Sigismund +Sigmund +Sigurd +Sihanouk +Sihanouk's +Sikh +Sikh's +Sikhism +Sikhs +Sikkim +Sikkimese +Sikorsky +Silas +Silas's +Silurian +Silurian's +Silva +Silva's +Silvia +Silvia's +Simenon +Simenon's +Simmental +Simmons +Simmons's +Simon +Simone +Simone's +Simpson +Simpson's +Simpsons +Sims +Sinai +Sinai's +Sinatra +Sinclair +Sindbad +Sindbad's +Sindhi +Sindhi's +Singapore +Singapore's +Singer +Singh +Singh's +Singleton +Singleton's +Sinhalese +Sinhalese's +Sinkiang +Sinkiang's +Sioux +Sioux's +Sirius +Sirius's +Sister +Sister's +Sisters +Sistine +Sisyphean +Sisyphus +Sisyphus's +Siva +Siva's +Sivan +Sivan's +Sjaelland +Sjaelland's +Skinner +Skinner's +Skippy +Skippy's +Skopje +Skye +Skylab +Skylab's +Skype +Skype's +Slackware +Slackware's +Slashdot +Slashdot's +Slater +Slater's +Slav +Slav's +Slavic +Slavic's +Slavonic +Slavonic's +Slavs +Slinky +Slinky's +Sloan +Sloane +Sloane's +Slocum +Slocum's +Slovak +Slovak's +Slovakia +Slovakian +Slovaks +Slovenia +Slovenia's +Slovenian +Slovenian's +Slovenians +Slurpee +Slurpee's +Sm +Sm's +Small +Small's +Smetana +Smirnoff +Smirnoff's +Smith +Smithson +Smithsonian +Smithsonian's +Smokey +Smokey's +Smolensk +Smollett +Smuts +Sn +Sn's +Snake +Snake's +Snapple +Snapple's +Snead +Snead's +Snell +Snell's +Snickers +Snickers's +Snider +Snider's +Snoopy +Snoopy's +Snow +Snowbelt +Snyder +Snyder's +Soave +Soave's +Socorro +Socorro's +Socrates +Socrates's +Socratic +Soddy +Sodom +Sodom's +Sofia +Sofia's +Soho +Sol +Sol's +Solis +Solis's +Solomon +Solon +Solzhenitsyn +Somali +Somali's +Somalia +Somalia's +Somalian +Somalian's +Somalians +Somalis +Somme +Somme's +Somoza +Somoza's +Son +Son's +Sondheim +Sondra +Sondra's +Songhai +Songhai's +Songhua +Songhua's +Sonia +Sonia's +Sonja +Sonja's +Sonny +Sonny's +Sontag +Sontag's +Sony +Sony's +Sonya +Sonya's +Sophia +Sophie +Sophie's +Sophoclean +Sophocles +Sopwith +Sopwith's +Sorbonne +Sorbonne's +Sosa +Sosa's +Soto +Soto's +Souphanouvong +Souphanouvong's +Sousa +Sousa's +South +South's +Southampton +Southeast +Southeast's +Southeasts +Southerner +Southerner's +Southerners +Southey +Souths +Southwest +Southwest's +Southwests +Soviet +Soweto +Soweto's +Soyinka +Soyinka's +Soyuz +Spaatz +Spaatz's +Spackle +Spahn +Spahn's +Spain +Spain's +Spam +Spam's +Spaniard +Spaniard's +Spaniards +Spanish +Spanish's +Sparks +Sparta +Sparta's +Spartacus +Spartan +Spartan's +Spartans +Spears +Speer +Speer's +Spence +Spencer +Spencerian +Spengler +Spengler's +Spenglerian +Spenser +Spenser's +Spenserian +Sperry +Sperry's +Sphinx +Sphinx's +Spica +Spica's +Spielberg +Spielberg's +Spillane +Spillane's +Spinoza +Spinx +Spinx's +Spiro +Spiro's +Spirograph +Spirograph's +Spitsbergen +Spitsbergen's +Spitz +Spitz's +Spock +Spokane +Springfield +Springfield's +Springsteen +Springsteen's +Sprint +Sprint's +Sprite +Sprite's +Sputnik +Sq +Squanto +Squibb +Squibb's +Sr +Sr's +Srinagar +Srivijaya +Srivijaya's +St +Stacey +Stacey's +Staci +Staci's +Stacie +Stacie's +Stacy +Stacy's +Stael +Stael's +Stafford +StairMaster +Stalin +Stalin's +Stalingrad +Stalingrad's +Stalinist +Stallone +Stallone's +Stamford +Stan +Stan's +Standish +Stanford +Stanford's +Stanislavsky +Stanley +Stanton +Staples +Staples's +Starbucks +Stark +Starkey +Starkey's +Starr +Starr's +Staten +Staten's +Staubach +Staubach's +Steadicam +Steele +Stefan +Stefan's +Stefanie +Stefanie's +Stein +Steinbeck +Steinem +Steinem's +Steiner +Steinmetz +Steinmetz's +Steinway +Steinway's +Stella +Stendhal +Stengel +Stengel's +Stephan +Stephan's +Stephanie +Stephanie's +Stephen +Stephens +Stephenson +Sterling +Sterling's +Stern +Sterne +Sterne's +Sterno +Stetson +Stetson's +Steuben +Steuben's +Steve +Steve's +Steven +Steven's +Stevens +Stevenson +Stevie +Stevie's +Stewart +Stewart's +Stieglitz +Stieglitz's +Stilton +Stilton's +Stimson +Stimson's +Stine +Stine's +Stirling +Stockhausen +Stockhausen's +Stockholm +Stockholm's +Stockton +Stoic +Stoic's +Stoicism +Stoicism's +Stokes +Stokes's +Stolichnaya +Stolichnaya's +Stolypin +Stolypin's +Stone +Stonehenge +Stoppard +Stoppard's +Stout +Stowe +Strabo +Strabo's +Stradivarius +Strasbourg +Strauss +Stravinsky +Stravinsky's +Streisand +Streisand's +Strickland +Strickland's +Strindberg +Stromboli +Strong +Strong's +Stu +Stu's +Stuart +Stuart's +Stuarts +Studebaker +Studebaker's +Stuttgart +Stuttgart's +Stuyvesant +Stygian +Styrofoam +Styrofoam's +Styrofoams +Styron +Styron's +Styx +Styx's +Suarez +Suarez's +Subaru +Subaru's +Sucre +Sucrets +Sucrets's +Sudan +Sudan's +Sudanese +Sudanese's +Sudetenland +Sudetenland's +Sudoku +Sudoku's +Sudra +Sudra's +Sue +Suetonius +Suez +Suffolk +Sufi +Sufism +Suharto +Suharto's +Sui +Sui's +Sukarno +Sukkot +Sukkoth +Sukkoth's +Sukkoths +Sulawesi +Sulawesi's +Suleiman +Suleiman's +Sulla +Sulla's +Sullivan +Sullivan's +Sumatra +Sumatra's +Sumeria +Sumeria's +Sumerian +Sumerian's +Summer +Summer's +Summers +Sumner +Sumner's +Sumter +Sun +Sun's +Sunbeam +Sunbeam's +Sunbelt +Sunbelt's +Sundanese +Sundanese's +Sundas +Sunday +Sunday's +Sundays +Sung +Sunkist +Sunkist's +Sunni +Sunni's +Sunnyvale +Superbowl +Superbowl's +Superfund +Superfund's +Superglue +Superglue's +Superior +Superman +Superman's +Surabaya +Surat +Surinam +Surinam's +Suriname +Suriname's +Surya +Surya's +Susan +Susan's +Susana +Susana's +Susanna +Susanne +Susanne's +Susie +Susie's +Susquehanna +Susquehanna's +Sussex +Sutherland +Sutherland's +Sutton +Sutton's +Suva +Suva's +Suwanee +Suwanee's +Suzanne +Suzanne's +Suzette +Suzette's +Suzhou +Suzhou's +Suzuki +Suzuki's +Suzy +Suzy's +Svalbard +Svalbard's +Sven +Sven's +Svengali +Swahili +Swahili's +Swahilis +Swammerdam +Swammerdam's +Swanee +Swansea +Swansea's +Swanson +Swanson's +Swazi +Swazi's +Swaziland +Swaziland's +Swede +Swede's +Sweden +Sweden's +Swedenborg +Swedenborg's +Swedes +Swedish +Swedish's +Sweeney +Sweeney's +Sweet +Swift +Swift's +Swinburne +Swinburne's +Swiss +Swiss's +Swissair +Swissair's +Swisses +Switzerland +Switzerland's +Sybil +Sybil's +Sydney +Sydney's +Sykes +Sykes's +Sylvester +Sylvester's +Sylvia +Sylvia's +Sylvie +Sylvie's +Synge +Syracuse +Syracuse's +Syria +Syria's +Syriac +Syrian +Syrian's +Syrians +Szechuan +Szechuan's +Szilard +Szilard's +Szymborska +Szymborska's +Sèvres +T +T'ang +T's +TB's +TKO's +TLC's +TNT's +TV's +TWA +TWA's +Ta +Ta's +Tabasco +Tabasco's +Tabatha +Tabatha's +Tabitha +Tabitha's +Tabriz +Tabriz's +Tacitus +Tacoma +Tacoma's +Tad +Tad's +Tadzhik +Tadzhik's +Tadzhikistan +Tadzhikistan's +Taegu +Taegu's +Taejon +Taft +Taft's +Tagalog +Tagalog's +Tagore +Tagus +Tagus's +Tahiti +Tahiti's +Tahitian +Tahitian's +Tahitians +Tahoe +Taichung +Taichung's +Taine +Taine's +Taipei +Taipei's +Taiping +Taiwan +Taiwan's +Taiwanese +Taiwanese's +Taiyuan +Tajikistan +Tajikistan's +Taklamakan +Taklamakan's +Talbot +Taliban +Taliban's +Taliesin +Tallahassee +Tallahassee's +Tallchief +Tallchief's +Talley +Talley's +Talleyrand +Talleyrand's +Tallinn +Tallinn's +Talmud +Talmud's +Talmudic +Talmuds +Tamara +Tamara's +Tameka +Tameka's +Tamera +Tamera's +Tamerlane +Tamerlane's +Tami +Tami's +Tamika +Tamika's +Tamil +Tamil's +Tammany +Tammany's +Tammi +Tammi's +Tammie +Tammie's +Tammuz +Tammuz's +Tammy +Tammy's +Tampa +Tampa's +Tampax +Tampax's +Tamra +Tamra's +Tamworth +Tancred +Taney +Tanganyika +Tanganyika's +Tangiers +Tangshan +Tania +Tania's +Tanisha +Tanisha's +Tanner +Tanner's +Tannhäuser +Tannhäuser's +Tantalus +Tantalus's +Tanya +Tanya's +Tanzania +Tanzania's +Tanzanian +Tanzanian's +Tanzanians +Tao +Tao's +Taoism +Taoism's +Taoisms +Taoist +Taoist's +Taoists +Tara +Tara's +Tarantino +Tarantino's +Tarawa +Tarawa's +Tarazed +Tarazed's +Tarbell +Tarbell's +Target +Target's +Tarim +Tarkenton +Tarkenton's +Tarkington +Tartar +Tartar's +Tartars +Tartary +Tartuffe +Tarzan +Tarzan's +Tasha +Tasha's +Tashkent +Tashkent's +Tasman +Tasmania +Tasmania's +Tasmanian +Tass +Tatar +Tatar's +Tatars +Tate +Tatum +Taurus +Taurus's +Tauruses +Tawney +Taylor +Taylor's +Tb +Tb's +Tbilisi +Tbilisi's +Tc +Tc's +Tchaikovsky +Teasdale +Teasdale's +Technicolor +Tecumseh +Tecumseh's +Ted +Ted's +Teddy +Teddy's +Teflon +Teflon's +Teflons +Tegucigalpa +Tegucigalpa's +Teheran +Teheran's +Tehran +TelePrompter +Telemachus +Telemann +Teletype +Tell +Tell's +Teller +Telugu +Telugu's +Tempe +Templar +Templar's +Tennessee +Tennessee's +Tennyson +Tenochtitlan +Tenochtitlan's +Teotihuacan +Teotihuacan's +Terence +Teresa +Teresa's +Tereshkova +Teri +Teri's +Terkel +Terkel's +Terpsichore +Terpsichore's +Terr +Terr's +Terra +Terra's +Terran +Terran's +Terrance +Terrance's +Terrell +Terrell's +Terrence +Terrence's +Terri +Terri's +Terrie +Terrie's +Terry +Tertiary +Tertiary's +Tesla +Tess +Tessa +Tessa's +Tessie +Tessie's +Tet +Tet's +Tethys +Tethys's +Tetons +Teutonic +Tevet +Tevet's +Tex +Texaco +Texaco's +Texan +Texan's +Texans +Texas +Texas's +Th +Th's +Thackeray +Thad +Thad's +Thaddeus +Thai +Thai's +Thailand +Thailand's +Thais +Thales +Thalia +Thalia's +Thames +Thames's +Thanh +Thanh's +Thanksgiving +Thanksgiving's +Thanksgivings +Thant +Thar +Thar's +Tharp +Tharp's +Thatcher +Thea +Thea's +Thebes +Thebes's +Theiler +Theiler's +Thelma +Thelma's +Themistocles +Theocritus +Theodora +Theodore +Theodore's +Theodoric +Theodoric's +Theodosius +Theodosius's +Theosophy +Theravada +Theresa +Therese +Therese's +Thermopylae +Thermopylae's +Thermos +Theron +Theron's +Theseus +Theseus's +Thespian +Thespis +Thespis's +Thessalonian +Thessaloníki +Thessaloníki's +Thessaly +Thessaly's +Thieu +Thieu's +Thimbu +Thomas +Thomas's +Thomism +Thomism's +Thomistic +Thompson +Thomson +Thor +Thor's +Thorazine +Thorazine's +Thoreau +Thoreau's +Thornton +Thornton's +Thoroughbred +Thorpe +Thoth +Thoth's +Thrace +Thrace's +Thracian +Thracian's +Thucydides +Thucydides's +Thule +Thule's +Thunderbird +Thunderbird's +Thur +Thurber +Thurman +Thurman's +Thurmond +Thurmond's +Thurs +Thursday +Thursday's +Thursdays +Thutmose +Thutmose's +Ti +Ti's +Tia +Tia's +Tianjin +Tianjin's +Tiber +Tiber's +Tiberius +Tibet +Tibet's +Tibetan +Tibetan's +Tibetans +Ticketmaster +Ticketmaster's +Ticonderoga +Tide +Tide's +Tienanmen +Tienanmen's +Tientsin +Tientsin's +Tiffany +Tigris +Tigris's +Tijuana +Tijuana's +Tillich +Tillman +Tillman's +Tilsit +Tim +Tim's +Timbuktu +Timbuktu's +Timex +Timex's +Timmy +Timmy's +Timon +Timon's +Timor +Timothy +Timur +Timur's +Timurid +Timurid's +Tina +Tina's +Ting +Ting's +Tinkerbell +Tinkerbell's +Tinkertoy +Tinseltown +Tinseltown's +Tintoretto +Tippecanoe +Tippecanoe's +Tipperary +Tirana +Tirana's +Tiresias +Tiresias's +Tisha +Tisha's +Tishri +Tishri's +Titan +Titan's +Titania +Titanic +Titian +Titian's +Titicaca +Tito +Tito's +Titus +Tl +Tl's +Tlaloc +Tlaloc's +Tlingit +Tlingit's +Tm +Tm's +Tobago +Tobago's +Toby +Tocantins +Tocqueville +Tod +Tod's +Todd +Togo +Togo's +Tojo +Tokay +Tokay's +Tokugawa +Tokyo +Tokyo's +Toledo +Toledo's +Toledos +Tolkien +Tolstoy +Tolstoy's +Toltec +Tolyatti +Tolyatti's +Tom +Tom's +Tomas +Tombaugh +Tombaugh's +Tomlin +Tomlin's +Tommie +Tommie's +Tommy +Tompkins +Tompkins's +Tomsk +Tonga +Tonga's +Tongan +Tongan's +Tongans +Toni +Toni's +Tonia +Tonia's +Tonto +Tonto's +Tony +Tonya +Tonya's +Topeka +Topeka's +Topsy +Topsy's +Torah +Torah's +Torahs +Tories +Toronto +Toronto's +Torquemada +Torrance +Torrens +Torres +Torricelli +Torricelli's +Tortola +Tortuga +Torvalds +Torvalds's +Tory +Tory's +Tosca +Tosca's +Toscanini +Toshiba +Toshiba's +Toto +Toto's +Toulouse +Townes +Townsend +Townsend's +Toynbee +Toynbee's +Toyoda +Toyoda's +Toyota +Toyota's +Tracey +Tracey's +Traci +Traci's +Tracie +Tracie's +Tracy +Tracy's +Trafalgar +Trafalgar's +Trailways +Trailways's +Trajan +Tran +Tran's +Transcaucasia +Transvaal +Transvaal's +Transylvania +Trappist +Trappist's +Travis +Travis's +Travolta +Travolta's +Treblinka +Trekkie +Trekkie's +Trent +Trent's +Trenton +Trenton's +Trevelyan +Trevino +Trevino's +Trevor +Trevor's +Trey +Trey's +Triangulum +Triangulum's +Triassic +Triassic's +Tricia +Tricia's +Trident +Trident's +Trieste +Trimurti +Trimurti's +Trina +Trina's +Trinidad +Trinidad's +Trinities +Trinity +Trinity's +Tripitaka +Tripoli +Tripoli's +Trippe +Trippe's +Trisha +Trisha's +Tristan +Tristan's +Triton +Triton's +Trobriand +Trobriand's +Trojan +Trojan's +Trojans +Trollope +Trondheim +Trondheim's +Tropicana +Tropicana's +Trotsky +Troy +Troy's +Troyes +Truckee +Truckee's +Trudeau +Trudy +Trudy's +Truffaut +Truffaut's +Trujillo +Truman +Truman's +Trumbull +Trumbull's +Trump +Trump's +Truth +Tsimshian +Tsimshian's +Tsingtao +Tsiolkovsky +Tsiolkovsky's +Tsitsihar +Tsitsihar's +Tsongkhapa +Tsongkhapa's +Tswana +Tswana's +Tuamotu +Tuamotu's +Tuareg +Tuareg's +Tubman +Tucker +Tucker's +Tucson +Tucson's +Tucuman +Tucuman's +Tudor +Tudor's +Tues +Tues's +Tuesday +Tuesday's +Tuesdays +Tulane +Tulane's +Tull +Tull's +Tulsa +Tulsa's +Tulsidas +Tulsidas's +Tums +Tums's +Tungus +Tungus's +Tunguska +Tunguska's +Tunis +Tunis's +Tunisia +Tunisia's +Tunisian +Tunisian's +Tunisians +Tunney +Tunney's +Tupi +Tupi's +Tupperware +Tupungato +Tupungato's +Turgenev +Turin +Turin's +Turing +Turing's +Turk +Turk's +Turkestan +Turkestan's +Turkey +Turkey's +Turkish +Turkish's +Turkmenistan +Turkmenistan's +Turks +Turner +Turpin +Tuscaloosa +Tuscaloosa's +Tuscan +Tuscan's +Tuscany +Tuscany's +Tuscarora +Tuscarora's +Tuscon +Tuscon's +Tuskegee +Tuskegee's +Tussaud +Tussaud's +Tut +Tut's +Tutankhamen +Tutsi +Tutu +Tutu's +Tuvalu +Tuvalu's +Twain +Tweed +Tweedledee +Tweedledee's +Tweedledum +Tweedledum's +Twila +Twila's +Twinkies +Twitter +Twitter's +Twizzlers +Twizzlers's +Ty +Ty's +Tycho +Tylenol +Tylenol's +Tyler +Tyler's +Tyndale +Tyndall +Tyre +Tyree +Tyree's +Tyrone +Tyson +Tyson's +U +U's +UBS +UBS's +UCLA +UCLA's +UFO's +UHF's +UK's +UN's +UNESCO's +UNICEF's +UNIX's +US's +USA's +USSR's +UT's +UV's +Ubangi +Ubuntu +Ubuntu's +Ucayali +Uccello +Uccello's +Udall +Ufa +Ufa's +Uganda +Uganda's +Ugandan +Ugandan's +Ugandans +Uighur +Uighur's +Ujungpandang +Ujungpandang's +Ukraine +Ukraine's +Ukrainian +Ukrainian's +Ukrainians +Ulster +Ulster's +Ultrasuede +Ultrasuede's +Ulyanovsk +Ulysses +Ulysses's +Umbriel +Umbriel's +Underwood +Underwood's +Ungava +Unicode +Unicode's +Unilever +Unilever's +Union +Union's +Unions +Uniroyal +Uniroyal's +Unitarian +Unitarian's +Unitarianism +Unitarianism's +Unitarianisms +Unitarians +Unitas +Unitas's +Unukalhai +Unukalhai's +Upanishads +Updike +Upjohn +Upjohn's +Upton +Upton's +Ur +Ural +Urals +Urania +Urania's +Uranus +Uranus's +Urban +Urban's +Urdu +Urdu's +Urey +Uriah +Uriel +Uris +Urquhart +Ursa +Ursa's +Ursula +Ursuline +Uruguay +Uruguay's +Uruguayan +Uruguayan's +Uruguayans +Urumqi +Usenet +Usenet's +Ustinov +Utah +Utah's +Ute +Ute's +Utopia +Utopia's +Utopian +Utopian's +Utopians +Utopias +Utrecht +Utrecht's +Utrillo +Utrillo's +Uzbek +Uzbek's +Uzbekistan +Uzbekistan's +Uzi +Uzi's +V +V's +VAT's +VCR's +VD's +VHF's +VI's +VIP's +VLF's +Va +Vader +Vader's +Vaduz +Vaduz's +Val +Val's +Valarie +Valarie's +Valdez +Valdez's +Valencia +Valencia's +Valenti +Valenti's +Valentin +Valentin's +Valentine +Valentine's +Valentino +Valenzuela +Valenzuela's +Valeria +Valeria's +Valerian +Valerian's +Valerie +Valerie's +Valhalla +Valhalla's +Valium +Valium's +Valiums +Valkyrie +Valkyrie's +Valkyries +Valletta +Valletta's +Valois +Valparaiso +Valparaiso's +Valvoline +Valvoline's +Valéry +Van +Vance +Vancouver +Vancouver's +Vandal +Vandal's +Vanderbilt +Vandyke +Vanessa +Vanessa's +Vang +Vang's +Vanuatu +Vanuatu's +Vanzetti +Vanzetti's +Varanasi +Varese +Vargas +Vaseline +Vaseline's +Vaselines +Vasquez +Vasquez's +Vassar +Vassar's +Vatican +Vatican's +Vauban +Vaughan +Vaughn +Vaughn's +Vazquez +Vazquez's +Veblen +Veblen's +Veda +Veda's +Vedanta +Vedas +Vega +Vega's +Vegas +Vegemite +Vegemite's +Vela +Velcro +Velcro's +Velcros +Velez +Velez's +Velma +Velma's +Velveeta +Velveeta's +Velásquez +Velásquez's +Velázquez +Venetian +Venetian's +Venetians +Venezuela +Venezuela's +Venezuelan +Venezuelan's +Venezuelans +Venice +Venice's +Venn +Venn's +Ventolin +Ventolin's +Venus +Venus's +Venuses +Venusian +Vera +Vera's +Veracruz +Veracruz's +Verde +Verdi +Verdun +Verdun's +Vergil +Vergil's +Verizon +Verizon's +Verlaine +Verlaine's +Vermeer +Vermont +Vermont's +Vermonter +Vermonter's +Vern +Vern's +Verna +Verna's +Verne +Vernon +Vernon's +Verona +Verona's +Veronese +Veronica +Versailles +Versailles's +Vesalius +Vesalius's +Vespasian +Vespucci +Vespucci's +Vesta +Vesta's +Vesuvius +Vesuvius's +Viacom +Viacom's +Viagra +Vic +Vicente +Vicente's +Vichy +Vicki +Vicki's +Vickie +Vickie's +Vicksburg +Vicksburg's +Vicky +Victor +Victor's +Victoria +Victoria's +Victorian +Victorian's +Victorians +Victrola +Victrola's +Vidal +Vidal's +Vienna +Vienna's +Viennese +Vientiane +Vientiane's +Vietcong +Vietminh +Vietnam +Vietnam's +Vietnamese +Vietnamese's +Vijayanagar +Vijayanagar's +Vijayawada +Vijayawada's +Viking +Viking's +Vikings +Vila +Vila's +Villa +Villarreal +Villarreal's +Villon +Vilma +Vilma's +Vilnius +Vilnius's +Vilyui +Vilyui's +Vince +Vince's +Vincent +Vincent's +Vindemiatrix +Vindemiatrix's +Vinson +Vinson's +Viola +Viola's +Violet +Violet's +Virgie +Virgie's +Virgil +Virgil's +Virginia +Virginia's +Virginian +Virginian's +Virginians +Virgo +Virgo's +Virgos +Visa +Visa's +Visakhapatnam +Visayans +Vishnu +Vishnu's +Visigoth +Visigoth's +Vistula +Vistula's +Vitim +Vitim's +Vito +Vito's +Vitus +Vitus's +Vivaldi +Vivekananda +Vivekananda's +Vivian +Vivienne +Vivienne's +Vlad +Vlad's +Vladimir +Vladivostok +Vladivostok's +Vlaminck +Vlasic +Vlasic's +Vogue +Vogue's +Volcker +Volcker's +Voldemort +Voldemort's +Volga +Volga's +Volgograd +Volgograd's +Volkswagen +Volkswagen's +Volstead +Volstead's +Volta +Voltaire +Voltaire's +Volvo +Volvo's +Vonda +Vonda's +Vonnegut +Vonnegut's +Voronezh +Vorster +Vorster's +Voyager +Voyager's +Vuitton +Vuitton's +Vulcan +Vulcan's +Vulgate +Vulgate's +Vulgates +W +W's +WASP's +WATS's +WHO's +WWW's +Wabash +Wabash's +Wac +Waco +Wade +Wagner +Wagner's +Wagnerian +Wahhabi +Waikiki +Waite +Waite's +Wake +Wake's +Waksman +Wald +Wald's +Waldemar +Waldemar's +Walden +Walden's +Waldensian +Waldheim +Waldo +Waldo's +Waldorf +Waldorf's +Wales +Wales's +Walesa +Walgreen +Walgreen's +Walker +Walker's +Walkman +Wall +Wall's +Wallace +Wallenstein +Waller +Wallis +Walloon +Walls +Walmart +Walmart's +Walpole +Walpole's +Walpurgisnacht +Walsh +Walsh's +Walt +Walt's +Walter +Walters +Walton +Walton's +Wanamaker +Wanamaker's +Wanda +Wanda's +Wang +Wang's +Wankel +Wankel's +Ward +Ware +Ware's +Warhol +Waring +Waring's +Warner +Warner's +Warren +Warsaw +Warsaw's +Warwick +Wasatch +Wasatch's +Wash +Washington +Washington's +Washingtonian +Washingtonian's +Washingtonians +Wasp +Wassermann +Waterbury +Waterford +Watergate +Waterloo +Waterloo's +Waterloos +Waters +Waters's +Watkins +Watson +Watt +Watteau +Watts +Watusi +Waugh +Wayne +Weaver +Weaver's +Webb +Weber +Webern +Webern's +Webster +Webster's +Websters +Wed +Wed's +Weddell +Weddell's +Wedgwood +Wednesday +Wednesday's +Wednesdays +Weeks +Weeks's +Wehrmacht +Wei +Wei's +Weierstrass +Weierstrass's +Weill +Weill's +Weinberg +Weinberg's +Weiss +Weiss's +Weissmuller +Weissmuller's +Weizmann +Welch +Weldon +Weldon's +Welland +Welland's +Weller +Weller's +Welles +Wellington +Wellington's +Wellingtons +Wells +Welsh +Welsh's +Welshman +Welshman's +Welshmen +Wendell +Wendell's +Wendi +Wendi's +Wendy +Wendy's +Wesak +Wesak's +Wesley +Wesley's +Wesleyan +Wesleyan's +Wessex +Wesson +Wesson's +West +West's +Western +Western's +Westerner +Westerns +Westinghouse +Westminster +Weston +Weston's +Westphalia +Wests +Weyden +Weyden's +Wezen +Wezen's +Wharton +Wheaties +Wheaties's +Wheatstone +Wheatstone's +Wheeler +Wheeler's +Wheeling +Wheeling's +Whig +Whig's +Whigs +Whipple +Whipple's +Whirlpool +Whirlpool's +Whistler +Whitaker +White +White's +Whitefield +Whitefield's +Whitehall +Whitehead +Whitehorse +Whitehorse's +Whiteley +Whiteley's +Whites +Whitfield +Whitfield's +Whitley +Whitley's +Whitman +Whitney +Whitney's +Whitsunday +Whitsunday's +Whitsundays +Whittier +Wicca +Wichita +Wichita's +Wiemar +Wiemar's +Wiesel +Wiesel's +Wiesenthal +Wiesenthal's +Wiggins +Wigner +Wigner's +Wii +Wii's +Wikipedia +Wikipedia's +Wilberforce +Wilbert +Wilbert's +Wilbur +Wilbur's +Wilburn +Wilburn's +Wilcox +Wilcox's +Wilda +Wilda's +Wilde +Wilder +Wiles +Wiley +Wiley's +Wilford +Wilford's +Wilfred +Wilfred's +Wilfredo +Wilfredo's +Wilhelm +Wilhelm's +Wilhelmina +Wilhelmina's +Wilkerson +Wilkerson's +Wilkes +Wilkins +Wilkinson +Wilkinson's +Will +Will's +Willa +Willa's +Willamette +Willamette's +Willard +Willemstad +William +Williams +Williamson +Willie +Willie's +Willis +Willy +Willy's +Wilma +Wilma's +Wilmer +Wilmer's +Wilmington +Wilmington's +Wilson +Wilson's +Wilsonian +Wilton +Wilton's +Wimbledon +Wimbledon's +Wimsey +Wimsey's +Winchell +Winchell's +Winchester +Windbreaker +Windex +Windex's +Windhoek +Windows +Windsor +Windsor's +Windsors +Windward +Windward's +Winesap +Winesap's +Winfred +Winfred's +Winfrey +Winfrey's +Winifred +Winifred's +Winkle +Winkle's +Winnebago +Winnebago's +Winnie +Winnipeg +Winnipeg's +Winston +Winston's +Winters +Winthrop +Winthrop's +Wis +Wisconsin +Wisconsin's +Wisconsinite +Wisconsinite's +Wisconsinites +Wise +Wise's +Witt +Witt's +Wittgenstein +Wittgenstein's +Witwatersrand +Wm +Wm's +Wobegon +Wobegon's +Wodehouse +Wodehouse's +Wolf +Wolfe +Wolff +Wolfgang +Wolfgang's +Wollongong +Wollstonecraft +Wollstonecraft's +Wolsey +Wonder +Wonderbra +Wonderbra's +Wong +Wong's +Wood +Woodard +Woodard's +Woodhull +Woodhull's +Woodrow +Woodrow's +Woods +Woodstock +Woodstock's +Woodward +Woodward's +Woolf +Woolite +Woolite's +Woolongong +Woolongong's +Woolworth +Wooster +Wooster's +Wooten +Wooten's +Worcester +Worcester's +Worcesters +Worcestershire +Wordsworth +Wordsworth's +Workman +Workman's +Worms +Wotan +Wotan's +Wovoka +Wovoka's +Wozniak +Wozniak's +Wozzeck +Wozzeck's +Wrangell +Wrangell's +Wren +Wright +Wrigley +Wrigley's +Wroclaw +Wroclaw's +Wu +Wu's +Wuhan +Wurlitzer +Wurlitzer's +Wyatt +Wycherley +Wycherley's +Wycliffe +Wycliffe's +Wyeth +Wylie +Wylie's +Wynn +Wynn's +Wyo +Wyoming +Wyoming's +Wyomingite +Wyomingite's +Wyomingites +X +X's +XEmacs +XEmacs's +XL's +Xanadu +Xanthippe +Xavier +Xe +Xe's +Xenakis +Xenakis's +Xenia +Xenia's +Xenophon +Xerox +Xerox's +Xeroxes +Xerxes +Xhosa +Xhosa's +Xi'an +Xiaoping +Xiaoping's +Ximenes +Xingu +Xingu's +Xiongnu +Xiongnu's +Xmas +Xmas's +Xmases +Xochipilli +Xochipilli's +Xuzhou +Xuzhou's +Y +Y's +Yacc +Yacc's +Yahoo +Yahoo's +Yahtzee +Yahtzee's +Yahweh +Yahweh's +Yakima +Yakut +Yakut's +Yakutsk +Yale +Yale's +Yalow +Yalow's +Yalta +Yalta's +Yalu +Yalu's +Yamagata +Yamagata's +Yamaha +Yamaha's +Yamoussoukro +Yang +Yangon +Yangon's +Yangtze +Yangtze's +Yank +Yank's +Yankee +Yankee's +Yankees +Yanks +Yaobang +Yaobang's +Yaounde +Yaounde's +Yaqui +Yaroslavl +Yataro +Yataro's +Yates +Yb +Yb's +Yeager +Yeager's +Yeats +Yeats's +Yekaterinburg +Yellowknife +Yellowstone +Yellowstone's +Yeltsin +Yemen +Yemen's +Yemeni +Yemeni's +Yemenis +Yenisei +Yenisei's +Yerevan +Yerkes +Yerkes's +Yesenia +Yesenia's +Yevtushenko +Yevtushenko's +Yggdrasil +Yiddish +Yiddish's +Ymir +Ymir's +Yoda +Yoda's +Yoknapatawpha +Yoknapatawpha's +Yoko +Yoko's +Yokohama +Yolanda +Yolanda's +Yong +Yong's +Yonkers +York +York's +Yorkie +Yorkshire +Yorkshire's +Yorktown +Yorktown's +Yoruba +Yoruba's +Yosemite +Yosemite's +Yossarian +Yossarian's +YouTube +YouTube's +Young +Youngstown +Ypres +Ypres's +Ypsilanti +Yuan +Yuan's +Yucatan +Yucatan's +Yugo +Yugoslav +Yugoslav's +Yugoslavia +Yugoslavia's +Yugoslavian +Yugoslavian's +Yugoslavians +Yukon +Yukon's +Yule +Yule's +Yules +Yuletide +Yuletide's +Yuletides +Yunnan +Yunnan's +Yuri +Yuri's +Yves +Yves's +Yvette +Yvette's +Yvonne +Yvonne's +Z +Z's +Zachariah +Zachariah's +Zachary +Zachary's +Zachery +Zachery's +Zagreb +Zagreb's +Zaire +Zaire's +Zairian +Zambezi +Zambezi's +Zambia +Zambia's +Zambian +Zambian's +Zambians +Zamboni +Zamenhof +Zamenhof's +Zamora +Zane +Zane's +Zanuck +Zanuck's +Zanzibar +Zanzibar's +Zapata +Zaporozhye +Zapotec +Zappa +Zappa's +Zara +Zara's +Zebedee +Zechariah +Zedekiah +Zedekiah's +Zedong +Zedong's +Zeffirelli +Zeffirelli's +Zeke +Zeke's +Zelig +Zelma +Zelma's +Zen +Zen's +Zenger +Zenger's +Zeno +Zeno's +Zens +Zephaniah +Zephyrus +Zeppelin +Zest +Zest's +Zeus +Zeus's +Zhengzhou +Zhivago +Zhivago's +Zhukov +Zibo +Zibo's +Ziegfeld +Ziegler +Ziegler's +Ziggy +Ziggy's +Zimbabwe +Zimbabwe's +Zimbabwean +Zimbabwean's +Zimbabweans +Zimmerman +Zimmerman's +Zinfandel +Zinfandel's +Zion +Zion's +Zionism +Zionism's +Zionisms +Zionist +Zionist's +Zionists +Zions +Ziploc +Zn +Zn's +Zoe +Zoe's +Zola +Zola's +Zollverein +Zoloft +Zomba +Zomba's +Zorn +Zoroaster +Zoroaster's +Zoroastrian +Zoroastrian's +Zoroastrianism +Zoroastrianism's +Zoroastrianisms +Zorro +Zorro's +Zosma +Zosma's +Zr +Zr's +Zsigmondy +Zubenelgenubi +Zubenelgenubi's +Zubeneschamali +Zubeneschamali's +Zukor +Zukor's +Zulu +Zulu's +Zulus +Zuni +Zwingli +Zwingli's +Zworykin +Zyrtec +Zyrtec's +Zyuganov +Zyuganov's +Zürich +Zürich's +a +aardvark +aardvark's +aardvarks +abaci +aback +abacus +abacus's +abacuses +abaft +abalone +abalone's +abalones +abandon +abandoned +abandoning +abandonment +abandonment's +abandons +abase +abased +abasement +abasement's +abases +abash +abashed +abashes +abashing +abasing +abate +abated +abatement +abatement's +abates +abating +abattoir +abattoir's +abattoirs +abbess +abbess's +abbesses +abbey +abbey's +abbeys +abbot +abbot's +abbots +abbreviate +abbreviated +abbreviates +abbreviating +abbreviation +abbreviation's +abbreviations +abbé +abbé's +abbés +abdicate +abdicated +abdicates +abdicating +abdication +abdication's +abdications +abdomen +abdomen's +abdomens +abdominal +abduct +abducted +abducting +abduction +abduction's +abductions +abductor +abductor's +abductors +abducts +abeam +abed +aberrant +aberration +aberration's +aberrations +abet +abets +abetted +abetter +abetter's +abetters +abetting +abettor +abettor's +abettors +abeyance +abeyance's +abhor +abhorred +abhorrence +abhorrence's +abhorrent +abhorring +abhors +abide +abided +abides +abiding +abilities +ability +ability's +abject +abjectly +abjuration +abjuration's +abjurations +abjure +abjured +abjures +abjuring +ablative +ablative's +ablatives +ablaze +able +abler +ablest +abloom +ablution +ablution's +ablutions +ably +abnegate +abnegated +abnegates +abnegating +abnegation +abnegation's +abnormal +abnormalities +abnormality +abnormality's +abnormally +aboard +abode +abode's +abodes +abolish +abolished +abolishes +abolishing +abolition +abolition's +abolitionist +abolitionist's +abolitionists +abominable +abominably +abominate +abominated +abominates +abominating +abomination +abomination's +abominations +aboriginal +aboriginal's +aboriginals +aborigine +aborigine's +aborigines +abort +aborted +aborting +abortion +abortion's +abortionist +abortionist's +abortionists +abortions +abortive +aborts +abound +abounded +abounding +abounds +about +above +above's +aboveboard +abracadabra +abracadabra's +abrade +abraded +abrades +abrading +abrasion +abrasion's +abrasions +abrasive +abrasive's +abrasively +abrasiveness +abrasiveness's +abrasives +abreast +abridge +abridged +abridgement +abridgement's +abridgements +abridges +abridging +abridgment +abridgment's +abridgments +abroad +abrogate +abrogated +abrogates +abrogating +abrogation +abrogation's +abrogations +abrupt +abrupter +abruptest +abruptly +abruptness +abruptness's +abscess +abscess's +abscessed +abscesses +abscessing +abscissa +abscissa's +abscissae +abscissas +abscond +absconded +absconding +absconds +absence +absence's +absences +absent +absented +absentee +absentee's +absenteeism +absenteeism's +absentees +absenting +absently +absents +absinth +absinth's +absinthe +absinthe's +absolute +absolute's +absolutely +absolutes +absolutest +absolution +absolution's +absolutism +absolutism's +absolve +absolved +absolves +absolving +absorb +absorbed +absorbency +absorbency's +absorbent +absorbent's +absorbents +absorbing +absorbs +absorption +absorption's +abstain +abstained +abstainer +abstainer's +abstainers +abstaining +abstains +abstemious +abstention +abstention's +abstentions +abstinence +abstinence's +abstinent +abstract +abstract's +abstracted +abstractedly +abstracting +abstraction +abstraction's +abstractions +abstractly +abstractness +abstractness's +abstractnesses +abstracts +abstruse +abstrusely +abstruseness +abstruseness's +absurd +absurder +absurdest +absurdities +absurdity +absurdity's +absurdly +abundance +abundance's +abundances +abundant +abundantly +abuse +abuse's +abused +abuser +abuser's +abusers +abuses +abusing +abusive +abusively +abusiveness +abusiveness's +abut +abutment +abutment's +abutments +abuts +abutted +abutting +abuzz +abysmal +abysmally +abyss +abyss's +abysses +acacia +acacia's +acacias +academia +academia's +academic +academic's +academical +academically +academician +academician's +academicians +academics +academies +academy +academy's +acanthi +acanthus +acanthus's +acanthuses +accede +acceded +accedes +acceding +accelerate +accelerated +accelerates +accelerating +acceleration +acceleration's +accelerations +accelerator +accelerator's +accelerators +accent +accent's +accented +accenting +accents +accentuate +accentuated +accentuates +accentuating +accentuation +accentuation's +accept +acceptability +acceptability's +acceptable +acceptably +acceptance +acceptance's +acceptances +accepted +accepting +accepts +access +access's +accessed +accesses +accessibility +accessibility's +accessible +accessibly +accessing +accession +accession's +accessioned +accessioning +accessions +accessories +accessory +accessory's +accident +accident's +accidental +accidental's +accidentally +accidentals +accidents +acclaim +acclaim's +acclaimed +acclaiming +acclaims +acclamation +acclamation's +acclimate +acclimated +acclimates +acclimating +acclimation +acclimation's +acclimatization +acclimatization's +acclimatize +acclimatized +acclimatizes +acclimatizing +accolade +accolade's +accolades +accommodate +accommodated +accommodates +accommodating +accommodation +accommodation's +accommodations +accompanied +accompanies +accompaniment +accompaniment's +accompaniments +accompanist +accompanist's +accompanists +accompany +accompanying +accomplice +accomplice's +accomplices +accomplish +accomplished +accomplishes +accomplishing +accomplishment +accomplishment's +accomplishments +accord +accord's +accordance +accordance's +accorded +according +accordingly +accordion +accordion's +accordions +accords +accost +accost's +accosted +accosting +accosts +account +account's +accountability +accountability's +accountable +accountancy +accountancy's +accountant +accountant's +accountants +accounted +accounting +accounting's +accounts +accouterments +accouterments's +accoutrements +accredit +accreditation +accreditation's +accredited +accrediting +accredits +accretion +accretion's +accretions +accrual +accrual's +accruals +accrue +accrued +accrues +accruing +acculturation +acculturation's +accumulate +accumulated +accumulates +accumulating +accumulation +accumulation's +accumulations +accumulative +accumulator +accuracy +accuracy's +accurate +accurately +accurateness +accurateness's +accursed +accurst +accusation +accusation's +accusations +accusative +accusative's +accusatives +accusatory +accuse +accused +accuser +accuser's +accusers +accuses +accusing +accusingly +accustom +accustomed +accustoming +accustoms +ace +ace's +aced +acerbic +acerbity +acerbity's +aces +acetaminophen +acetaminophen's +acetate +acetate's +acetates +acetic +acetone +acetone's +acetylene +acetylene's +ache +ache's +ached +aches +achier +achiest +achievable +achieve +achieved +achievement +achievement's +achievements +achiever +achiever's +achievers +achieves +achieving +aching +achoo +achoo's +achromatic +achy +acid +acid's +acidic +acidified +acidifies +acidify +acidifying +acidity +acidity's +acidly +acids +acidulous +acing +acknowledge +acknowledged +acknowledgement +acknowledgement's +acknowledgements +acknowledges +acknowledging +acknowledgment +acknowledgment's +acknowledgments +acme +acme's +acmes +acne +acne's +acolyte +acolyte's +acolytes +aconite +aconite's +aconites +acorn +acorn's +acorns +acoustic +acoustical +acoustically +acoustics +acoustics's +acquaint +acquaintance +acquaintance's +acquaintances +acquainted +acquainting +acquaints +acquiesce +acquiesced +acquiescence +acquiescence's +acquiescent +acquiesces +acquiescing +acquirable +acquire +acquired +acquirement +acquirement's +acquires +acquiring +acquisition +acquisition's +acquisitions +acquisitive +acquisitiveness +acquisitiveness's +acquit +acquits +acquittal +acquittal's +acquittals +acquitted +acquitting +acre +acre's +acreage +acreage's +acreages +acres +acrid +acrider +acridest +acrimonious +acrimony +acrimony's +acrobat +acrobat's +acrobatic +acrobatics +acrobatics's +acrobats +acronym +acronym's +acronyms +across +acrostic +acrostic's +acrostics +acrylic +acrylic's +acrylics +act +act's +acted +acting +acting's +actinium +actinium's +action +action's +actionable +actions +activate +activated +activates +activating +activation +activation's +active +active's +actively +actives +activism +activism's +activist +activist's +activists +activities +activity +activity's +actor +actor's +actors +actress +actress's +actresses +acts +actual +actualities +actuality +actuality's +actualization +actualization's +actualize +actualized +actualizes +actualizing +actually +actuarial +actuaries +actuary +actuary's +actuate +actuated +actuates +actuating +actuator +actuator's +actuators +acuity +acuity's +acumen +acumen's +acupuncture +acupuncture's +acupuncturist +acupuncturist's +acupuncturists +acute +acute's +acutely +acuteness +acuteness's +acuter +acutes +acutest +ad +ad's +adage +adage's +adages +adagio +adagio's +adagios +adamant +adamant's +adamantly +adapt +adaptability +adaptability's +adaptable +adaptation +adaptation's +adaptations +adapted +adapter +adapter's +adapters +adapting +adaptive +adaptor +adaptor's +adaptors +adapts +add +added +addend +addend's +addenda +addends +addendum +addendum's +addendums +adder +adder's +adders +addict +addict's +addicted +addicting +addiction +addiction's +addictions +addictive +addicts +adding +addition +addition's +additional +additionally +additions +additive +additive's +additives +addle +addled +addles +addling +address +address's +addressable +addressed +addressee +addressee's +addressees +addresses +addressing +adds +adduce +adduced +adduces +adducing +adenoid +adenoid's +adenoidal +adenoids +adept +adept's +adeptly +adeptness +adeptness's +adepts +adequacy +adequacy's +adequate +adequately +adhere +adhered +adherence +adherence's +adherent +adherent's +adherents +adheres +adhering +adhesion +adhesion's +adhesive +adhesive's +adhesives +adiabatic +adieu +adieu's +adieus +adieux +adipose +adiós +adjacent +adjacently +adjectival +adjectivally +adjective +adjective's +adjectives +adjoin +adjoined +adjoining +adjoins +adjourn +adjourned +adjourning +adjournment +adjournment's +adjournments +adjourns +adjudge +adjudged +adjudges +adjudging +adjudicate +adjudicated +adjudicates +adjudicating +adjudication +adjudication's +adjudicator +adjudicator's +adjudicators +adjunct +adjunct's +adjuncts +adjuration +adjuration's +adjurations +adjure +adjured +adjures +adjuring +adjust +adjustable +adjusted +adjuster +adjuster's +adjusters +adjusting +adjustment +adjustment's +adjustments +adjustor +adjustor's +adjustors +adjusts +adjutant +adjutant's +adjutants +adman +adman's +admen +administer +administered +administering +administers +administrate +administrated +administrates +administrating +administration +administration's +administrations +administrative +administratively +administrator +administrator's +administrators +admirable +admirably +admiral +admiral's +admirals +admiralty +admiralty's +admiration +admiration's +admire +admired +admirer +admirer's +admirers +admires +admiring +admiringly +admissibility +admissibility's +admissible +admission +admission's +admissions +admit +admits +admittance +admittance's +admitted +admittedly +admitting +admixture +admixture's +admixtures +admonish +admonished +admonishes +admonishing +admonishment +admonishment's +admonishments +admonition +admonition's +admonitions +admonitory +ado +ado's +adobe +adobe's +adobes +adolescence +adolescence's +adolescences +adolescent +adolescent's +adolescents +adopt +adopted +adopting +adoption +adoption's +adoptions +adoptive +adopts +adorable +adorably +adoration +adoration's +adore +adored +adores +adoring +adoringly +adorn +adorned +adorning +adornment +adornment's +adornments +adorns +adrenal +adrenal's +adrenaline +adrenaline's +adrenals +adrift +adroit +adroitly +adroitness +adroitness's +ads +adulate +adulated +adulates +adulating +adulation +adulation's +adult +adult's +adulterant +adulterant's +adulterants +adulterate +adulterated +adulterates +adulterating +adulteration +adulteration's +adulterer +adulterer's +adulterers +adulteress +adulteress's +adulteresses +adulteries +adulterous +adultery +adultery's +adulthood +adulthood's +adults +adumbrate +adumbrated +adumbrates +adumbrating +adumbration +adumbration's +advance +advance's +advanced +advancement +advancement's +advancements +advances +advancing +advantage +advantage's +advantaged +advantageous +advantageously +advantages +advantaging +advent +advent's +adventitious +advents +adventure +adventure's +adventured +adventurer +adventurer's +adventurers +adventures +adventuresome +adventuress +adventuress's +adventuresses +adventuring +adventurous +adventurously +adverb +adverb's +adverbial +adverbial's +adverbials +adverbs +adversarial +adversaries +adversary +adversary's +adverse +adversely +adverser +adversest +adversities +adversity +adversity's +advert +advert's +adverted +adverting +advertise +advertised +advertisement +advertisement's +advertisements +advertiser +advertiser's +advertisers +advertises +advertising +advertising's +adverts +advice +advice's +advisability +advisability's +advisable +advise +advised +advisedly +advisement +advisement's +adviser +adviser's +advisers +advises +advising +advisor +advisor's +advisories +advisors +advisory +advisory's +advocacy +advocacy's +advocate +advocate's +advocated +advocates +advocating +adz +adz's +adze +adze's +adzes +aegis +aegis's +aeon +aeon's +aeons +aerate +aerated +aerates +aerating +aeration +aeration's +aerator +aerator's +aerators +aerial +aerial's +aerialist +aerialist's +aerialists +aerials +aerie +aerie's +aeries +aerobatics +aerobatics's +aerobic +aerobics +aerobics's +aerodynamic +aerodynamically +aerodynamics +aerodynamics's +aeronautical +aeronautics +aeronautics's +aerosol +aerosol's +aerosols +aerospace +aerospace's +aery +aery's +aesthete +aesthete's +aesthetes +aesthetic +aesthetically +aesthetics +aesthetics's +afar +affability +affability's +affable +affably +affair +affair's +affairs +affect +affect's +affectation +affectation's +affectations +affected +affecting +affection +affection's +affectionate +affectionately +affections +affects +affidavit +affidavit's +affidavits +affiliate +affiliate's +affiliated +affiliates +affiliating +affiliation +affiliation's +affiliations +affinities +affinity +affinity's +affirm +affirmation +affirmation's +affirmations +affirmative +affirmative's +affirmatively +affirmatives +affirmed +affirming +affirms +affix +affix's +affixed +affixes +affixing +afflict +afflicted +afflicting +affliction +affliction's +afflictions +afflicts +affluence +affluence's +affluent +affluently +afford +affordable +afforded +affording +affords +afforest +afforestation +afforestation's +afforested +afforesting +afforests +affray +affray's +affrays +affront +affront's +affronted +affronting +affronts +afghan +afghan's +afghans +aficionado +aficionado's +aficionados +afield +afire +aflame +afloat +aflutter +afoot +aforementioned +aforesaid +aforethought +afoul +afraid +afresh +aft +after +afterbirth +afterbirth's +afterbirths +afterburner +afterburner's +afterburners +aftercare +aftercare's +aftereffect +aftereffect's +aftereffects +afterglow +afterglow's +afterglows +afterlife +afterlife's +afterlives +aftermath +aftermath's +aftermaths +afternoon +afternoon's +afternoons +aftershave +aftershave's +aftershaves +aftershock +aftershock's +aftershocks +aftertaste +aftertaste's +aftertastes +afterthought +afterthought's +afterthoughts +afterward +afterwards +afterword +afterword's +afterwords +again +against +agape +agape's +agar +agar's +agate +agate's +agates +agave +agave's +age +age's +aged +ageing +ageing's +ageings +ageism +ageism's +ageless +agencies +agency +agency's +agenda +agenda's +agendas +agent +agent's +agents +ages +agglomerate +agglomerate's +agglomerated +agglomerates +agglomerating +agglomeration +agglomeration's +agglomerations +agglutinate +agglutinated +agglutinates +agglutinating +agglutination +agglutination's +agglutinations +aggrandize +aggrandized +aggrandizement +aggrandizement's +aggrandizes +aggrandizing +aggravate +aggravated +aggravates +aggravating +aggravation +aggravation's +aggravations +aggregate +aggregate's +aggregated +aggregates +aggregating +aggregation +aggregation's +aggregations +aggression +aggression's +aggressive +aggressively +aggressiveness +aggressiveness's +aggressor +aggressor's +aggressors +aggrieve +aggrieved +aggrieves +aggrieving +aghast +agile +agilely +agiler +agilest +agility +agility's +aging +aging's +agings +agism +agitate +agitated +agitates +agitating +agitation +agitation's +agitations +agitator +agitator's +agitators +agleam +aglitter +aglow +agnostic +agnostic's +agnosticism +agnosticism's +agnostics +ago +agog +agonies +agonize +agonized +agonizes +agonizing +agonizingly +agony +agony's +agrarian +agrarian's +agrarians +agree +agreeable +agreeably +agreed +agreeing +agreement +agreement's +agreements +agrees +agribusiness +agribusiness's +agribusinesses +agricultural +agriculturalist +agriculturalist's +agriculturalists +agriculture +agriculture's +agronomist +agronomist's +agronomists +agronomy +agronomy's +aground +ague +ague's +ah +aha +ahead +ahem +ahoy +aid +aid's +aide +aide's +aided +aides +aiding +aids +ail +ailed +aileron +aileron's +ailerons +ailing +ailment +ailment's +ailments +ails +aim +aim's +aimed +aiming +aimless +aimlessly +aimlessness +aimlessness's +aims +ain't +air +air's +airborne +airbrush +airbrush's +airbrushed +airbrushes +airbrushing +aircraft +aircraft's +airdrop +airdrop's +airdropped +airdropping +airdrops +aired +airfare +airfare's +airfares +airfield +airfield's +airfields +airfoil +airfoil's +airfoils +airhead +airhead's +airheads +airier +airiest +airily +airiness +airiness's +airing +airing's +airings +airless +airlift +airlift's +airlifted +airlifting +airlifts +airline +airline's +airliner +airliner's +airliners +airlines +airmail +airmail's +airmailed +airmailing +airmails +airman +airman's +airmen +airplane +airplane's +airplanes +airport +airport's +airports +airs +airship +airship's +airships +airsick +airsickness +airsickness's +airspace +airspace's +airstrip +airstrip's +airstrips +airtight +airwaves +airwaves's +airway +airway's +airways +airworthier +airworthiest +airworthy +airy +aisle +aisle's +aisles +ajar +akimbo +akin +alabaster +alabaster's +alacrity +alacrity's +alarm +alarm's +alarmed +alarming +alarmingly +alarmist +alarmist's +alarmists +alarms +alas +alb +alb's +albacore +albacore's +albacores +albatross +albatross's +albatrosses +albeit +albino +albino's +albinos +albs +album +album's +albumen +albumen's +albumin +albumin's +albums +alchemist +alchemist's +alchemists +alchemy +alchemy's +alcohol +alcohol's +alcoholic +alcoholic's +alcoholics +alcoholism +alcoholism's +alcohols +alcove +alcove's +alcoves +alder +alder's +alderman +alderman's +aldermen +alders +alderwoman +alderwoman's +alderwomen +ale +ale's +alert +alert's +alerted +alerting +alertly +alertness +alertness's +alerts +ales +alfalfa +alfalfa's +alfresco +alga +alga's +algae +algebra +algebra's +algebraic +algebraically +algebras +algorithm +algorithm's +algorithmic +algorithms +alias +alias's +aliased +aliases +aliasing +alibi +alibi's +alibied +alibiing +alibis +alien +alien's +alienable +alienate +alienated +alienates +alienating +alienation +alienation's +aliened +aliening +aliens +alight +alighted +alighting +alights +align +aligned +aligning +alignment +alignment's +alignments +aligns +alike +alimentary +alimony +alimony's +aline +alined +alinement +alinement's +alinements +alines +alining +alit +alive +alkali +alkali's +alkalies +alkaline +alkalinity +alkalinity's +alkalis +alkaloid +alkaloid's +alkaloids +all +all's +allay +allayed +allaying +allays +allegation +allegation's +allegations +allege +alleged +allegedly +alleges +allegiance +allegiance's +allegiances +alleging +allegorical +allegorically +allegories +allegory +allegory's +allegro +allegro's +allegros +alleluia +alleluia's +alleluias +allergen +allergen's +allergenic +allergens +allergic +allergies +allergist +allergist's +allergists +allergy +allergy's +alleviate +alleviated +alleviates +alleviating +alleviation +alleviation's +alley +alley's +alleys +alleyway +alleyway's +alleyways +alliance +alliance's +alliances +allied +allies +alligator +alligator's +alligators +alliteration +alliteration's +alliterations +alliterative +allocate +allocated +allocates +allocating +allocation +allocation's +allocations +allot +allotment +allotment's +allotments +allots +allotted +allotting +allover +allow +allowable +allowance +allowance's +allowances +allowed +allowing +allows +alloy +alloy's +alloyed +alloying +alloys +allspice +allspice's +allude +alluded +alludes +alluding +allure +allure's +allured +allures +alluring +allusion +allusion's +allusions +allusive +allusively +alluvia +alluvial +alluvial's +alluvium +alluvium's +alluviums +ally +ally's +allying +almanac +almanac's +almanacs +almighty +almond +almond's +almonds +almost +alms +alms's +aloe +aloe's +aloes +aloft +aloha +aloha's +alohas +alone +along +alongside +aloof +aloofness +aloofness's +aloud +alpaca +alpaca's +alpacas +alpha +alpha's +alphabet +alphabet's +alphabetic +alphabetical +alphabetically +alphabetize +alphabetized +alphabetizes +alphabetizing +alphabets +alphanumeric +alphas +alpine +already +alright +also +altar +altar's +altars +alter +alterable +alteration +alteration's +alterations +altercation +altercation's +altercations +altered +altering +alternate +alternate's +alternated +alternately +alternates +alternating +alternation +alternation's +alternations +alternative +alternative's +alternatively +alternatives +alternator +alternator's +alternators +alters +altho +although +altimeter +altimeter's +altimeters +altitude +altitude's +altitudes +alto +alto's +altogether +altos +altruism +altruism's +altruist +altruist's +altruistic +altruistically +altruists +alum +alum's +aluminum +aluminum's +alumna +alumna's +alumnae +alumni +alumnus +alumnus's +alums +always +am +amalgam +amalgam's +amalgamate +amalgamated +amalgamates +amalgamating +amalgamation +amalgamation's +amalgamations +amalgams +amanuenses +amanuensis +amanuensis's +amaranth +amaranth's +amaranths +amaryllis +amaryllis's +amaryllises +amass +amassed +amasses +amassing +amateur +amateur's +amateurish +amateurism +amateurism's +amateurs +amatory +amaze +amaze's +amazed +amazement +amazement's +amazes +amazing +amazingly +amazon +amazon's +amazons +ambassador +ambassador's +ambassadorial +ambassadors +ambassadorship +ambassadorship's +ambassadorships +amber +amber's +ambergris +ambergris's +ambiance +ambiance's +ambiances +ambidextrous +ambidextrously +ambience +ambience's +ambiences +ambient +ambiguities +ambiguity +ambiguity's +ambiguous +ambiguously +ambition +ambition's +ambitions +ambitious +ambitiously +ambitiousness +ambitiousness's +ambivalence +ambivalence's +ambivalent +ambivalently +amble +amble's +ambled +ambles +ambling +ambrosia +ambrosia's +ambulance +ambulance's +ambulances +ambulatories +ambulatory +ambulatory's +ambush +ambush's +ambushed +ambushes +ambushing +ameba +ameba's +amebae +amebas +amebic +ameer +ameer's +ameers +ameliorate +ameliorated +ameliorates +ameliorating +amelioration +amelioration's +amen +amenable +amend +amendable +amended +amending +amendment +amendment's +amendments +amends +amenities +amenity +amenity's +amethyst +amethyst's +amethysts +amiability +amiability's +amiable +amiably +amicability +amicability's +amicable +amicably +amid +amidships +amidst +amigo +amigo's +amigos +amir +amir's +amirs +amiss +amity +amity's +ammeter +ammeter's +ammeters +ammo +ammo's +ammonia +ammonia's +ammunition +ammunition's +amnesia +amnesia's +amnesiac +amnesiac's +amnesiacs +amnestied +amnesties +amnesty +amnesty's +amnestying +amniocenteses +amniocentesis +amniocentesis's +amoeba +amoeba's +amoebae +amoebas +amoebic +amok +among +amongst +amoral +amorality +amorality's +amorally +amorous +amorously +amorousness +amorousness's +amorphous +amorphously +amorphousness +amorphousness's +amortization +amortization's +amortizations +amortize +amortized +amortizes +amortizing +amount +amount's +amounted +amounting +amounts +amour +amour's +amours +amp +amp's +amperage +amperage's +ampere +ampere's +amperes +ampersand +ampersand's +ampersands +amphetamine +amphetamine's +amphetamines +amphibian +amphibian's +amphibians +amphibious +amphitheater +amphitheater's +amphitheaters +amphitheatre +amphitheatre's +amphitheatres +ample +ampler +amplest +amplification +amplification's +amplifications +amplified +amplifier +amplifier's +amplifiers +amplifies +amplify +amplifying +amplitude +amplitude's +amplitudes +amply +ampoule +ampoule's +ampoules +amps +ampul +ampul's +ampule +ampule's +ampules +ampuls +amputate +amputated +amputates +amputating +amputation +amputation's +amputations +amputee +amputee's +amputees +amuck +amulet +amulet's +amulets +amuse +amused +amusement +amusement's +amusements +amuses +amusing +amusingly +an +anachronism +anachronism's +anachronisms +anachronistic +anaconda +anaconda's +anacondas +anaemia +anaemia's +anaemic +anaerobic +anaesthesia +anaesthesia's +anaesthetic +anaesthetic's +anaesthetics +anaesthetist +anaesthetist's +anaesthetists +anaesthetize +anaesthetized +anaesthetizes +anaesthetizing +anagram +anagram's +anagrams +anal +analgesia +analgesia's +analgesic +analgesic's +analgesics +analog +analog's +analogies +analogous +analogously +analogs +analogue +analogue's +analogues +analogy +analogy's +analyses +analysis +analysis's +analyst +analyst's +analysts +analytic +analytical +analyticalally +analytically +analyze +analyzed +analyzer +analyzer's +analyzers +analyzes +analyzing +anapest +anapest's +anapests +anarchic +anarchically +anarchism +anarchism's +anarchist +anarchist's +anarchistic +anarchists +anarchy +anarchy's +anathema +anathema's +anathemas +anatomic +anatomical +anatomically +anatomies +anatomist +anatomist's +anatomists +anatomy +anatomy's +ancestor +ancestor's +ancestors +ancestral +ancestress +ancestress's +ancestresses +ancestries +ancestry +ancestry's +anchor +anchor's +anchorage +anchorage's +anchorages +anchored +anchoring +anchorite +anchorite's +anchorites +anchorman +anchorman's +anchormen +anchorpeople +anchorperson +anchorperson's +anchorpersons +anchors +anchorwoman +anchorwoman's +anchorwomen +anchovies +anchovy +anchovy's +ancient +ancient's +ancienter +ancientest +ancients +ancillaries +ancillary +ancillary's +and +andante +andante's +andantes +andiron +andiron's +andirons +androgen +androgen's +androgynous +android +android's +androids +anecdota +anecdotal +anecdote +anecdote's +anecdotes +anemia +anemia's +anemic +anemometer +anemometer's +anemometers +anemone +anemone's +anemones +anesthesia +anesthesia's +anesthesiologist +anesthesiologist's +anesthesiologists +anesthesiology +anesthesiology's +anesthetic +anesthetic's +anesthetics +anesthetist +anesthetist's +anesthetists +anesthetize +anesthetized +anesthetizes +anesthetizing +aneurism +aneurism's +aneurisms +aneurysm +aneurysm's +aneurysms +anew +angel +angel's +angelic +angelically +angels +anger +anger's +angered +angering +angers +angina +angina's +angioplasties +angioplasty +angioplasty's +angiosperm +angiosperm's +angiosperms +angle +angle's +angled +angler +angler's +anglers +angles +angleworm +angleworm's +angleworms +angling +angling's +angora +angora's +angoras +angrier +angriest +angrily +angry +angst +angst's +angstrom +angstrom's +angstroms +anguish +anguish's +anguished +anguishes +anguishing +angular +angularities +angularity +angularity's +ani +animal +animal's +animals +animate +animated +animatedly +animates +animating +animation +animation's +animations +animator +animator's +animators +animism +animism's +animist +animist's +animistic +animists +animosities +animosity +animosity's +animus +animus's +anion +anion's +anions +anise +anise's +aniseed +aniseed's +ankh +ankh's +ankhs +ankle +ankle's +ankles +anklet +anklet's +anklets +annals +annals's +anneal +annealed +annealing +anneals +annex +annex's +annexation +annexation's +annexations +annexed +annexes +annexing +annihilate +annihilated +annihilates +annihilating +annihilation +annihilation's +annihilator +annihilator's +annihilators +anniversaries +anniversary +anniversary's +annotate +annotated +annotates +annotating +annotation +annotation's +annotations +announce +announced +announcement +announcement's +announcements +announcer +announcer's +announcers +announces +announcing +annoy +annoyance +annoyance's +annoyances +annoyed +annoying +annoyingly +annoys +annual +annual's +annually +annuals +annuities +annuity +annuity's +annul +annular +annulled +annulling +annulment +annulment's +annulments +annuls +anode +anode's +anodes +anodyne +anodyne's +anodynes +anoint +anointed +anointing +anointment +anointment's +anoints +anomalies +anomalous +anomaly +anomaly's +anon +anons +anonymity +anonymity's +anonymous +anonymously +anopheles +anopheles's +anorak +anorak's +anoraks +anorexia +anorexia's +anorexic +anorexic's +anorexics +another +answer +answer's +answerable +answered +answering +answers +ant +ant's +antacid +antacid's +antacids +antagonism +antagonism's +antagonisms +antagonist +antagonist's +antagonistic +antagonistically +antagonists +antagonize +antagonized +antagonizes +antagonizing +antarctic +ante +ante's +anteater +anteater's +anteaters +antebellum +antecedent +antecedent's +antecedents +antechamber +antechamber's +antechambers +anted +antedate +antedated +antedates +antedating +antediluvian +anteed +anteing +antelope +antelope's +antelopes +antenna +antenna's +antennae +antennas +anterior +anteroom +anteroom's +anterooms +antes +anthem +anthem's +anthems +anther +anther's +anthers +anthill +anthill's +anthills +anthologies +anthologist +anthologist's +anthologists +anthologize +anthologized +anthologizes +anthologizing +anthology +anthology's +anthracite +anthracite's +anthrax +anthrax's +anthropocentric +anthropoid +anthropoid's +anthropoids +anthropological +anthropologist +anthropologist's +anthropologists +anthropology +anthropology's +anthropomorphic +anthropomorphism +anthropomorphism's +anti +anti's +antiabortion +antiaircraft +antibiotic +antibiotic's +antibiotics +antibodies +antibody +antibody's +antic +antic's +anticipate +anticipated +anticipates +anticipating +anticipation +anticipation's +anticipations +anticipatory +anticked +anticking +anticlimactic +anticlimax +anticlimax's +anticlimaxes +anticlockwise +antics +anticyclone +anticyclone's +anticyclones +antidepressant +antidepressant's +antidepressants +antidote +antidote's +antidotes +antifreeze +antifreeze's +antigen +antigen's +antigens +antihero +antihero's +antiheroes +antihistamine +antihistamine's +antihistamines +antiknock +antiknock's +antimatter +antimatter's +antimony +antimony's +antiparticle +antiparticle's +antiparticles +antipasti +antipasto +antipasto's +antipastos +antipathetic +antipathies +antipathy +antipathy's +antipersonnel +antiperspirant +antiperspirant's +antiperspirants +antiphonal +antiphonal's +antiphonals +antipodes +antipodes's +antiquarian +antiquarian's +antiquarians +antiquaries +antiquary +antiquary's +antiquate +antiquated +antiquates +antiquating +antique +antique's +antiqued +antiques +antiquing +antiquities +antiquity +antiquity's +antis +antiseptic +antiseptic's +antiseptically +antiseptics +antislavery +antisocial +antitheses +antithesis +antithesis's +antithetical +antithetically +antitoxin +antitoxin's +antitoxins +antitrust +antiviral +antiviral's +antivirals +antiwar +antler +antler's +antlered +antlers +antonym +antonym's +antonyms +ants +anus +anus's +anuses +anvil +anvil's +anvils +anxieties +anxiety +anxiety's +anxious +anxiously +any +anybodies +anybody +anybody's +anyhow +anymore +anyone +anyone's +anyplace +anything +anything's +anythings +anytime +anyway +anywhere +aorta +aorta's +aortae +aortas +apace +apart +apartheid +apartheid's +apartment +apartment's +apartments +apathetic +apathetically +apathy +apathy's +ape +ape's +aped +aperitif +aperitif's +aperitifs +aperture +aperture's +apertures +apes +apex +apex's +apexes +aphasia +aphasia's +aphasic +aphasic's +aphasics +aphelia +aphelion +aphelion's +aphelions +aphid +aphid's +aphids +aphorism +aphorism's +aphorisms +aphoristic +aphrodisiac +aphrodisiac's +aphrodisiacs +apiaries +apiary +apiary's +apices +apiece +aping +aplenty +aplomb +aplomb's +apocalypse +apocalypse's +apocalypses +apocalyptic +apocryphal +apogee +apogee's +apogees +apolitical +apologetic +apologetically +apologia +apologia's +apologias +apologies +apologist +apologist's +apologists +apologize +apologized +apologizes +apologizing +apology +apology's +apoplectic +apoplexies +apoplexy +apoplexy's +apostasies +apostasy +apostasy's +apostate +apostate's +apostates +apostle +apostle's +apostles +apostolic +apostrophe +apostrophe's +apostrophes +apothecaries +apothecary +apothecary's +apotheoses +apotheosis +apotheosis's +appal +appall +appalled +appalling +appallingly +appalls +appals +apparatus +apparatus's +apparatuses +apparel +apparel's +appareled +appareling +apparelled +apparelling +apparels +apparent +apparently +apparition +apparition's +apparitions +appeal +appeal's +appealed +appealing +appeals +appear +appearance +appearance's +appearances +appeared +appearing +appears +appease +appeased +appeasement +appeasement's +appeasements +appeaser +appeaser's +appeasers +appeases +appeasing +appellant +appellant's +appellants +appellate +appellation +appellation's +appellations +append +appendage +appendage's +appendages +appendectomies +appendectomy +appendectomy's +appended +appendices +appendicitis +appendicitis's +appending +appendix +appendix's +appendixes +appends +appertain +appertained +appertaining +appertains +appetite +appetite's +appetites +appetizer +appetizer's +appetizers +appetizing +appetizingly +applaud +applauded +applauding +applauds +applause +applause's +apple +apple's +applejack +applejack's +apples +applesauce +applesauce's +appliance +appliance's +appliances +applicability +applicability's +applicable +applicant +applicant's +applicants +application +application's +applications +applicator +applicator's +applicators +applied +applies +appliqué +appliqué's +appliquéd +appliquéing +appliqués +apply +applying +appoint +appointed +appointee +appointee's +appointees +appointing +appointment +appointment's +appointments +appoints +apportion +apportioned +apportioning +apportionment +apportionment's +apportions +apposite +appositely +appositeness +appositeness's +apposition +apposition's +appositive +appositive's +appositives +appraisal +appraisal's +appraisals +appraise +appraised +appraiser +appraiser's +appraisers +appraises +appraising +appreciable +appreciably +appreciate +appreciated +appreciates +appreciating +appreciation +appreciation's +appreciations +appreciative +appreciatively +apprehend +apprehended +apprehending +apprehends +apprehension +apprehension's +apprehensions +apprehensive +apprehensively +apprehensiveness +apprehensiveness's +apprentice +apprentice's +apprenticed +apprentices +apprenticeship +apprenticeship's +apprenticeships +apprenticing +apprise +apprised +apprises +apprising +approach +approach's +approachable +approached +approaches +approaching +approbation +approbation's +approbations +appropriate +appropriated +appropriately +appropriateness +appropriateness's +appropriates +appropriating +appropriation +appropriation's +appropriations +approval +approval's +approvals +approve +approved +approves +approving +approvingly +approximate +approximated +approximately +approximates +approximating +approximation +approximation's +approximations +appurtenance +appurtenance's +appurtenances +apricot +apricot's +apricots +apron +apron's +aprons +apropos +apse +apse's +apses +apt +apter +aptest +aptitude +aptitude's +aptitudes +aptly +aptness +aptness's +aqua +aqua's +aquaculture +aquaculture's +aquae +aquamarine +aquamarine's +aquamarines +aquanaut +aquanaut's +aquanauts +aquaplane +aquaplane's +aquaplaned +aquaplanes +aquaplaning +aquaria +aquarium +aquarium's +aquariums +aquas +aquatic +aquatic's +aquatics +aquavit +aquavit's +aqueduct +aqueduct's +aqueducts +aqueous +aquiculture +aquiculture's +aquifer +aquifer's +aquifers +aquiline +arabesque +arabesque's +arabesques +arable +arachnid +arachnid's +arachnids +arbiter +arbiter's +arbiters +arbitrarily +arbitrariness +arbitrariness's +arbitrary +arbitrate +arbitrated +arbitrates +arbitrating +arbitration +arbitration's +arbitrator +arbitrator's +arbitrators +arbor +arbor's +arboreal +arboreta +arboretum +arboretum's +arboretums +arbors +arborvitae +arborvitae's +arborvitaes +arbutus +arbutus's +arbutuses +arc +arc's +arcade +arcade's +arcades +arcane +arced +arch +arch's +archaeological +archaeologist +archaeologist's +archaeologists +archaeology +archaeology's +archaic +archaically +archaism +archaism's +archaisms +archangel +archangel's +archangels +archbishop +archbishop's +archbishopric +archbishopric's +archbishoprics +archbishops +archdeacon +archdeacon's +archdeacons +archdiocese +archdiocese's +archdioceses +archduke +archduke's +archdukes +arched +archenemies +archenemy +archenemy's +archeological +archeologist +archeologist's +archeologists +archeology +archeology's +archer +archer's +archers +archery +archery's +arches +archest +archetypal +archetype +archetype's +archetypes +arching +archipelago +archipelago's +archipelagoes +archipelagos +architect +architect's +architects +architectural +architecturally +architecture +architecture's +architectures +archive +archive's +archived +archives +archiving +archivist +archivist's +archivists +archly +archness +archness's +archway +archway's +archways +arcing +arcked +arcking +arcs +arctic +arctic's +arctics +ardent +ardently +ardor +ardor's +ardors +arduous +arduously +arduousness +arduousness's +are +are's +area +area's +areas +aren't +arena +arena's +arenas +ares +argon +argon's +argosies +argosy +argosy's +argot +argot's +argots +arguable +arguably +argue +argued +argues +arguing +argument +argument's +argumentation +argumentation's +argumentative +arguments +argyle +argyle's +argyles +aria +aria's +arias +arid +aridity +aridity's +aright +arise +arisen +arises +arising +aristocracies +aristocracy +aristocracy's +aristocrat +aristocrat's +aristocratic +aristocratically +aristocrats +arithmetic +arithmetic's +arithmetical +arithmetically +ark +ark's +arks +arm +arm's +armada +armada's +armadas +armadillo +armadillo's +armadillos +armament +armament's +armaments +armature +armature's +armatures +armband +armband's +armbands +armchair +armchair's +armchairs +armed +armful +armful's +armfuls +armhole +armhole's +armholes +armies +arming +armistice +armistice's +armistices +armlet +armlet's +armlets +armor +armor's +armored +armorer +armorer's +armorers +armories +armoring +armors +armory +armory's +armpit +armpit's +armpits +armrest +armrest's +armrests +arms +armsful +army +army's +aroma +aroma's +aromas +aromatherapy +aromatherapy's +aromatic +aromatic's +aromatics +arose +around +arousal +arousal's +arouse +aroused +arouses +arousing +arpeggio +arpeggio's +arpeggios +arraign +arraigned +arraigning +arraignment +arraignment's +arraignments +arraigns +arrange +arranged +arrangement +arrangement's +arrangements +arranger +arranger's +arrangers +arranges +arranging +arrant +array +array's +arrayed +arraying +arrays +arrears +arrears's +arrest +arrest's +arrested +arresting +arrests +arrival +arrival's +arrivals +arrive +arrived +arrives +arriving +arrogance +arrogance's +arrogant +arrogantly +arrogate +arrogated +arrogates +arrogating +arrow +arrow's +arrowhead +arrowhead's +arrowheads +arrowroot +arrowroot's +arrows +arroyo +arroyo's +arroyos +arsenal +arsenal's +arsenals +arsenic +arsenic's +arson +arson's +arsonist +arsonist's +arsonists +art +art's +artefact +artefact's +artefacts +arterial +arteries +arteriosclerosis +arteriosclerosis's +artery +artery's +artful +artfully +artfulness +artfulness's +arthritic +arthritic's +arthritics +arthritis +arthritis's +arthropod +arthropod's +arthropods +artichoke +artichoke's +artichokes +article +article's +articles +articulate +articulated +articulately +articulateness +articulateness's +articulates +articulating +articulation +articulation's +articulations +artier +artiest +artifact +artifact's +artifacts +artifice +artifice's +artificer +artificer's +artificers +artifices +artificial +artificiality +artificiality's +artificially +artillery +artillery's +artisan +artisan's +artisans +artist +artist's +artiste +artiste's +artistes +artistic +artistically +artistry +artistry's +artists +artless +artlessly +artlessness +artlessness's +arts +artsier +artsiest +artsy +artwork +artwork's +artworks +arty +as +asbestos +asbestos's +ascend +ascendancy +ascendancy's +ascendant +ascendant's +ascendants +ascended +ascendency +ascendency's +ascendent +ascendent's +ascendents +ascending +ascends +ascension +ascension's +ascensions +ascent +ascent's +ascents +ascertain +ascertainable +ascertained +ascertaining +ascertains +ascetic +ascetic's +asceticism +asceticism's +ascetics +ascot +ascot's +ascots +ascribable +ascribe +ascribed +ascribes +ascribing +ascription +ascription's +aseptic +asexual +asexually +ash +ash's +ashamed +ashamedly +ashcan +ashcan's +ashcans +ashed +ashen +ashes +ashier +ashiest +ashing +ashore +ashram +ashram's +ashrams +ashtray +ashtray's +ashtrays +ashy +aside +aside's +asides +asinine +ask +askance +asked +askew +asking +asks +aslant +asleep +asocial +asp +asp's +asparagus +asparagus's +aspartame +aspartame's +aspect +aspect's +aspects +aspen +aspen's +aspens +asperities +asperity +asperity's +aspersion +aspersion's +aspersions +asphalt +asphalt's +asphalted +asphalting +asphalts +asphyxia +asphyxia's +asphyxiate +asphyxiated +asphyxiates +asphyxiating +asphyxiation +asphyxiation's +asphyxiations +aspic +aspic's +aspics +aspirant +aspirant's +aspirants +aspirate +aspirate's +aspirated +aspirates +aspirating +aspiration +aspiration's +aspirations +aspire +aspired +aspires +aspirin +aspirin's +aspiring +aspirins +asps +ass +ass's +assail +assailable +assailant +assailant's +assailants +assailed +assailing +assails +assassin +assassin's +assassinate +assassinated +assassinates +assassinating +assassination +assassination's +assassinations +assassins +assault +assault's +assaulted +assaulter +assaulting +assaults +assay +assay's +assayed +assaying +assays +assemblage +assemblage's +assemblages +assemble +assembled +assembler +assembler's +assemblers +assembles +assemblies +assembling +assembly +assembly's +assemblyman +assemblyman's +assemblymen +assemblywoman +assemblywoman's +assemblywomen +assent +assent's +assented +assenting +assents +assert +asserted +asserting +assertion +assertion's +assertions +assertive +assertively +assertiveness +assertiveness's +asserts +asses +assess +assessed +assesses +assessing +assessment +assessment's +assessments +assessor +assessor's +assessors +asset +asset's +assets +asseverate +asseverated +asseverates +asseverating +asshole +asshole's +assholes +assiduous +assiduously +assiduousness +assiduousness's +assign +assign's +assignable +assignation +assignation's +assignations +assigned +assigning +assignment +assignment's +assignments +assigns +assimilate +assimilated +assimilates +assimilating +assimilation +assimilation's +assist +assist's +assistance +assistance's +assistant +assistant's +assistants +assisted +assisting +assists +assize +assize's +assizes +associate +associate's +associated +associates +associating +association +association's +associations +associative +assonance +assonance's +assort +assorted +assorting +assortment +assortment's +assortments +assorts +assuage +assuaged +assuages +assuaging +assume +assumed +assumes +assuming +assumption +assumption's +assumptions +assurance +assurance's +assurances +assure +assured +assured's +assuredly +assureds +assures +assuring +aster +aster's +asterisk +asterisk's +asterisked +asterisking +asterisks +astern +asteroid +asteroid's +asteroids +asters +asthma +asthma's +asthmatic +asthmatic's +asthmatics +astigmatic +astigmatism +astigmatism's +astigmatisms +astir +astonish +astonished +astonishes +astonishing +astonishingly +astonishment +astonishment's +astound +astounded +astounding +astoundingly +astounds +astrakhan +astrakhan's +astral +astray +astride +astringency +astringency's +astringent +astringent's +astringents +astrologer +astrologer's +astrologers +astrological +astrology +astrology's +astronaut +astronaut's +astronautics +astronautics's +astronauts +astronomer +astronomer's +astronomers +astronomic +astronomical +astronomically +astronomy +astronomy's +astrophysicist +astrophysicist's +astrophysicists +astrophysics +astrophysics's +astute +astutely +astuteness +astuteness's +astuter +astutest +asunder +asylum +asylum's +asylums +asymmetric +asymmetrical +asymmetrically +asymmetry +asymmetry's +asymptotic +asymptotically +asynchronous +asynchronously +at +atavism +atavism's +atavistic +ate +atelier +atelier's +ateliers +atheism +atheism's +atheist +atheist's +atheistic +atheists +atherosclerosis +atherosclerosis's +athlete +athlete's +athletes +athletic +athletically +athletics +athletics's +atlas +atlas's +atlases +atmosphere +atmosphere's +atmospheres +atmospheric +atmospherically +atoll +atoll's +atolls +atom +atom's +atomic +atomizer +atomizer's +atomizers +atoms +atonal +atonality +atonality's +atone +atoned +atonement +atonement's +atones +atoning +atop +atria +atrium +atrium's +atriums +atrocious +atrociously +atrociousness +atrociousness's +atrocities +atrocity +atrocity's +atrophied +atrophies +atrophy +atrophy's +atrophying +attach +attached +attaching +attachment +attachment's +attachments +attaché +attaché's +attachés +attack +attack's +attacked +attacker +attacker's +attackers +attacking +attacks +attain +attainable +attained +attaining +attainment +attainment's +attainments +attains +attar +attar's +attempt +attempt's +attempted +attempting +attempts +attend +attendance +attendance's +attendances +attendant +attendant's +attendants +attended +attender +attending +attends +attention +attention's +attentions +attentive +attentively +attentiveness +attentiveness's +attenuate +attenuated +attenuates +attenuating +attenuation +attenuation's +attest +attestation +attestation's +attestations +attested +attesting +attests +attic +attic's +attics +attire +attire's +attired +attires +attiring +attitude +attitude's +attitudes +attitudinize +attitudinized +attitudinizes +attitudinizing +attorney +attorney's +attorneys +attract +attracted +attracting +attraction +attraction's +attractions +attractive +attractively +attractiveness +attractiveness's +attracts +attributable +attribute +attribute's +attributed +attributes +attributing +attribution +attribution's +attributions +attributive +attributive's +attributively +attributives +attrition +attrition's +attune +attuned +attunes +attuning +atwitter +atypical +atypically +auburn +auburn's +auction +auction's +auctioned +auctioneer +auctioneer's +auctioneers +auctioning +auctions +audacious +audaciously +audaciousness +audaciousness's +audacity +audacity's +audibility +audibility's +audible +audible's +audibles +audibly +audience +audience's +audiences +audio +audio's +audiophile +audiophile's +audiophiles +audios +audiovisual +audit +audit's +audited +auditing +audition +audition's +auditioned +auditioning +auditions +auditor +auditor's +auditoria +auditorium +auditorium's +auditoriums +auditors +auditory +audits +auger +auger's +augers +aught +aught's +aughts +augment +augmentation +augmentation's +augmentations +augmented +augmenting +augments +augur +augur's +augured +auguries +auguring +augurs +augury +augury's +august +auguster +augustest +auk +auk's +auks +aunt +aunt's +aunts +aura +aura's +aurae +aural +aurally +auras +aureola +aureola's +aureolas +aureole +aureole's +aureoles +auricle +auricle's +auricles +auspice +auspice's +auspices +auspicious +auspiciously +auspiciousness +auspiciousness's +austere +austerely +austerer +austerest +austerities +austerity +austerity's +authentic +authentically +authenticate +authenticated +authenticates +authenticating +authentication +authentication's +authentications +authenticity +authenticity's +author +author's +authored +authoring +authoritarian +authoritarian's +authoritarianism +authoritarianism's +authoritarians +authoritative +authoritatively +authoritativeness +authoritativeness's +authorities +authority +authority's +authorization +authorization's +authorizations +authorize +authorized +authorizes +authorizing +authors +authorship +authorship's +autism +autism's +autistic +auto +auto's +autobiographical +autobiographies +autobiography +autobiography's +autocracies +autocracy +autocracy's +autocrat +autocrat's +autocratic +autocratically +autocrats +autograph +autograph's +autographed +autographing +autographs +autoimmune +automata +automate +automated +automates +automatic +automatic's +automatically +automatics +automating +automation +automation's +automaton +automaton's +automatons +automobile +automobile's +automobiled +automobiles +automobiling +automotive +autonomous +autonomously +autonomy +autonomy's +autopilot +autopilot's +autopilots +autopsied +autopsies +autopsy +autopsy's +autopsying +autos +autoworker +autoworker's +autoworkers +autumn +autumn's +autumnal +autumns +auxiliaries +auxiliary +auxiliary's +avail +avail's +availability +availability's +available +availed +availing +avails +avalanche +avalanche's +avalanches +avarice +avarice's +avaricious +avariciously +avast +avatar +avatar's +avatars +avenge +avenged +avenger +avenger's +avengers +avenges +avenging +avenue +avenue's +avenues +aver +average +average's +averaged +averages +averaging +averred +averring +avers +averse +aversion +aversion's +aversions +avert +averted +averting +averts +avian +aviaries +aviary +aviary's +aviation +aviation's +aviator +aviator's +aviators +aviatrices +aviatrix +aviatrix's +aviatrixes +avid +avidity +avidity's +avidly +avionics +avionics's +avocado +avocado's +avocadoes +avocados +avocation +avocation's +avocations +avoid +avoidable +avoidably +avoidance +avoidance's +avoided +avoiding +avoids +avoirdupois +avoirdupois's +avow +avowal +avowal's +avowals +avowed +avowedly +avowing +avows +avuncular +await +awaited +awaiting +awaits +awake +awaked +awaken +awakened +awakening +awakening's +awakenings +awakens +awakes +awaking +award +award's +awarded +awarding +awards +aware +awareness +awareness's +awash +away +awe +awe's +awed +aweigh +awes +awesome +awesomely +awestricken +awestruck +awful +awfuller +awfullest +awfully +awfulness +awfulness's +awhile +awing +awkward +awkwarder +awkwardest +awkwardly +awkwardness +awkwardness's +awl +awl's +awls +awning +awning's +awnings +awoke +awoken +awol +awry +ax +ax's +axe +axe's +axed +axes +axial +axing +axiom +axiom's +axiomatic +axiomatically +axioms +axis +axis's +axle +axle's +axles +axon +axon's +axons +ay +ay's +ayatollah +ayatollah's +ayatollahs +aye +aye's +ayes +azalea +azalea's +azaleas +azimuth +azimuth's +azimuths +azure +azure's +azures +b +baa +baa's +baaed +baaing +baas +babble +babble's +babbled +babbler +babbler's +babblers +babbles +babbling +babe +babe's +babel +babel's +babels +babes +babied +babier +babies +babiest +baboon +baboon's +baboons +babushka +babushka's +babushkas +baby +baby's +babyhood +babyhood's +babying +babyish +babysat +babysit +babysits +babysitter +babysitter's +babysitters +babysitting +baccalaureate +baccalaureate's +baccalaureates +bacchanal +bacchanal's +bacchanalian +bacchanalian's +bacchanalians +bacchanals +bachelor +bachelor's +bachelors +bacilli +bacillus +bacillus's +back +back's +backache +backache's +backaches +backbit +backbite +backbiter +backbiter's +backbiters +backbites +backbiting +backbitten +backboard +backboard's +backboards +backbone +backbone's +backbones +backbreaking +backdate +backdated +backdates +backdating +backdrop +backdrop's +backdrops +backed +backer +backer's +backers +backfield +backfield's +backfields +backfire +backfire's +backfired +backfires +backfiring +backgammon +backgammon's +background +background's +backgrounds +backhand +backhand's +backhanded +backhanding +backhands +backhoe +backhoe's +backhoes +backing +backing's +backings +backlash +backlash's +backlashes +backless +backlog +backlog's +backlogged +backlogging +backlogs +backpack +backpack's +backpacked +backpacker +backpacker's +backpackers +backpacking +backpacks +backpedal +backpedaled +backpedaling +backpedalled +backpedalling +backpedals +backrest +backrest's +backrests +backs +backside +backside's +backsides +backslapper +backslapper's +backslappers +backslash +backslid +backslidden +backslide +backslider +backslider's +backsliders +backslides +backsliding +backspace +backspace's +backspaced +backspaces +backspacing +backspin +backspin's +backstabbing +backstage +backstage's +backstairs +backstop +backstop's +backstopped +backstopping +backstops +backstretch +backstretch's +backstretches +backstroke +backstroke's +backstroked +backstrokes +backstroking +backtrack +backtracked +backtracking +backtracks +backup +backup's +backups +backward +backwardness +backwardness's +backwards +backwash +backwash's +backwater +backwater's +backwaters +backwoods +backwoods's +backyard +backyard's +backyards +bacon +bacon's +bacteria +bacteria's +bacterial +bacterias +bacteriological +bacteriologist +bacteriologist's +bacteriologists +bacteriology +bacteriology's +bacterium +bacterium's +bad +bad's +badder +baddest +bade +badge +badge's +badger +badger's +badgered +badgering +badgers +badges +badinage +badinage's +badlands +badlands's +badly +badminton +badminton's +badmouth +badmouthed +badmouthing +badmouths +badness +badness's +baffle +baffle's +baffled +bafflement +bafflement's +baffles +baffling +bag +bag's +bagatelle +bagatelle's +bagatelles +bagel +bagel's +bagels +baggage +baggage's +bagged +baggier +baggiest +bagginess +bagginess's +bagging +baggy +bagpipe +bagpipe's +bagpipes +bags +bah +bail +bail's +bailed +bailiff +bailiffs +bailing +bailiwick +bailiwick's +bailiwicks +bailout +bailout's +bailouts +bails +bait +bait's +baited +baiting +baits +baize +baize's +bake +bake's +baked +baker +baker's +bakeries +bakers +bakery +bakery's +bakes +baking +balalaika +balalaika's +balalaikas +balance +balance's +balanced +balances +balancing +balconies +balcony +balcony's +bald +balded +balder +balderdash +balderdash's +baldest +balding +baldly +baldness +baldness's +balds +bale +bale's +baled +baleen +baleen's +baleful +balefully +bales +baling +balk +balk's +balked +balkier +balkiest +balking +balks +balky +ball +ball's +ballad +ballad's +balladeer +balladeer's +balladeers +ballads +ballast +ballast's +ballasted +ballasting +ballasts +balled +ballerina +ballerina's +ballerinas +ballet +ballet's +ballets +balling +ballistic +ballistics +ballistics's +balloon +balloon's +ballooned +ballooning +balloonist +balloonist's +balloonists +balloons +ballot +ballot's +balloted +balloting +ballots +ballpark +ballpark's +ballparks +ballplayer +ballplayer's +ballplayers +ballpoint +ballpoint's +ballpoints +ballroom +ballroom's +ballrooms +balls +ballsier +ballsiest +ballsy +ballyhoo +ballyhoo's +ballyhooed +ballyhooing +ballyhoos +balm +balm's +balmier +balmiest +balminess +balminess's +balms +balmy +baloney +baloney's +balsa +balsa's +balsam +balsam's +balsams +balsas +baluster +baluster's +balusters +balustrade +balustrade's +balustrades +bamboo +bamboo's +bamboos +bamboozle +bamboozled +bamboozles +bamboozling +ban +ban's +banal +banalities +banality +banality's +banana +banana's +bananas +band +band's +bandage +bandage's +bandaged +bandages +bandaging +bandana +bandana's +bandanas +bandanna +bandanna's +bandannas +banded +bandied +bandier +bandies +bandiest +banding +bandit +bandit's +banditry +banditry's +bandits +banditti +bandoleer +bandoleer's +bandoleers +bandolier +bandolier's +bandoliers +bands +bandstand +bandstand's +bandstands +bandwagon +bandwagon's +bandwagons +bandwidth +bandy +bandying +bane +bane's +baneful +banes +bang +bang's +banged +banging +bangle +bangle's +bangles +bangs +bani +banish +banished +banishes +banishing +banishment +banishment's +banister +banister's +banisters +banjo +banjo's +banjoes +banjoist +banjoist's +banjoists +banjos +bank +bank's +bankbook +bankbook's +bankbooks +banked +banker +banker's +bankers +banking +banking's +banknote +banknote's +banknotes +bankroll +bankroll's +bankrolled +bankrolling +bankrolls +bankrupt +bankrupt's +bankruptcies +bankruptcy +bankruptcy's +bankrupted +bankrupting +bankrupts +banks +banned +banner +banner's +banners +banning +bannister +bannister's +bannisters +banns +banns's +banquet +banquet's +banqueted +banqueting +banquets +bans +banshee +banshee's +banshees +bantam +bantam's +bantams +bantamweight +bantamweight's +bantamweights +banter +banter's +bantered +bantering +banters +banyan +banyan's +banyans +baobab +baobab's +baobabs +baptism +baptism's +baptismal +baptisms +baptist +baptisteries +baptistery +baptistery's +baptistries +baptistry +baptistry's +baptists +baptize +baptized +baptizes +baptizing +bar +bar's +barb +barb's +barbarian +barbarian's +barbarians +barbaric +barbarism +barbarism's +barbarisms +barbarities +barbarity +barbarity's +barbarous +barbarously +barbecue +barbecue's +barbecued +barbecues +barbecuing +barbed +barbell +barbell's +barbells +barbeque +barbeque's +barbequed +barbeques +barbequing +barber +barber's +barbered +barbering +barberries +barberry +barberry's +barbers +barbershop +barbershop's +barbershops +barbing +barbiturate +barbiturate's +barbiturates +barbs +bard +bard's +bards +bare +bareback +bared +barefaced +barefoot +barefooted +barehanded +bareheaded +barely +bareness +bareness's +barer +bares +barest +barf +barf's +barfed +barfing +barfs +bargain +bargain's +bargained +bargainer +bargaining +bargains +barge +barge's +barged +barges +barging +baring +baritone +baritone's +baritones +barium +barium's +bark +bark's +barked +barker +barker's +barkers +barking +barks +barley +barley's +barmaid +barmaid's +barmaids +barman +barn +barn's +barnacle +barnacle's +barnacles +barns +barnstorm +barnstormed +barnstorming +barnstorms +barnyard +barnyard's +barnyards +barometer +barometer's +barometers +barometric +baron +baron's +baroness +baroness's +baronesses +baronet +baronet's +baronets +baronial +barons +baroque +baroque's +barrack +barrack's +barracks +barracuda +barracuda's +barracudas +barrage +barrage's +barraged +barrages +barraging +barred +barrel +barrel's +barreled +barreling +barrelled +barrelling +barrels +barren +barren's +barrener +barrenest +barrenness +barrenness's +barrens +barrette +barrette's +barrettes +barricade +barricade's +barricaded +barricades +barricading +barrier +barrier's +barriers +barring +barrings +barrio +barrio's +barrios +barrister +barrister's +barristers +barroom +barroom's +barrooms +barrow +barrow's +barrows +bars +bartender +bartender's +bartenders +barter +barter's +bartered +bartering +barters +basal +basalt +basalt's +base +base's +baseball +baseball's +baseballs +baseboard +baseboard's +baseboards +based +baseless +baseline +baseline's +baselines +basely +baseman +baseman's +basemen +basement +basement's +basements +baseness +baseness's +baser +bases +basest +bash +bash's +bashed +bashes +bashful +bashfully +bashfulness +bashfulness's +bashing +bashing's +basic +basic's +basically +basics +basil +basil's +basilica +basilica's +basilicas +basin +basin's +basing +basins +basis +basis's +bask +basked +basket +basket's +basketball +basketball's +basketballs +baskets +basking +basks +bass +bass's +basses +bassi +bassinet +bassinet's +bassinets +bassist +bassist's +bassists +basso +basso's +bassoon +bassoon's +bassoonist +bassoonist's +bassoonists +bassoons +bassos +bast +bast's +bastard +bastard's +bastardize +bastardized +bastardizes +bastardizing +bastards +baste +basted +bastes +basting +bastion +bastion's +bastions +bat +bat's +batch +batch's +batched +batches +batching +bate +bated +bates +bath +bath's +bathe +bathe's +bathed +bather +bather's +bathers +bathes +bathhouse +bathhouse's +bathhouses +bathing +bathmat +bathmat's +bathmats +bathos +bathos's +bathrobe +bathrobe's +bathrobes +bathroom +bathroom's +bathrooms +baths +bathtub +bathtub's +bathtubs +batik +batik's +batiks +bating +baton +baton's +batons +bats +batsman +batsman's +batsmen +battalion +battalion's +battalions +batted +batten +batten's +battened +battening +battens +batter +batter's +battered +batteries +battering +batters +battery +battery's +battier +battiest +batting +batting's +battle +battle's +battled +battlefield +battlefield's +battlefields +battleground +battleground's +battlegrounds +battlement +battlement's +battlements +battles +battleship +battleship's +battleships +battling +batty +bauble +bauble's +baubles +baud +baud's +bauds +bauxite +bauxite's +bawdier +bawdiest +bawdily +bawdiness +bawdiness's +bawdy +bawl +bawl's +bawled +bawling +bawls +bay +bay's +bayberries +bayberry +bayberry's +bayed +baying +bayonet +bayonet's +bayoneted +bayoneting +bayonets +bayonetted +bayonetting +bayou +bayou's +bayous +bays +bazaar +bazaar's +bazaars +bazillion +bazillions +bazooka +bazooka's +bazookas +be +beach +beach's +beachcomber +beachcomber's +beachcombers +beached +beaches +beachhead +beachhead's +beachheads +beaching +beacon +beacon's +beacons +bead +bead's +beaded +beadier +beadiest +beading +beads +beady +beagle +beagle's +beagles +beak +beak's +beaked +beaker +beaker's +beakers +beaks +beam +beam's +beamed +beaming +beams +bean +bean's +beanbag +beanbag's +beanbags +beaned +beaning +beans +bear +bear's +bearable +beard +beard's +bearded +bearding +beards +bearer +bearer's +bearers +bearing +bearing's +bearings +bearish +bears +bearskin +bearskin's +bearskins +beast +beast's +beastlier +beastliest +beastliness +beastliness's +beastly +beastly's +beasts +beat +beat's +beaten +beater +beater's +beaters +beatific +beatification +beatification's +beatifications +beatified +beatifies +beatify +beatifying +beating +beating's +beatings +beatitude +beatitude's +beatitudes +beatnik +beatnik's +beatniks +beats +beau +beau's +beaus +beauteous +beauteously +beautician +beautician's +beauticians +beauties +beautification +beautification's +beautified +beautifier +beautifier's +beautifiers +beautifies +beautiful +beautifully +beautify +beautifying +beauty +beauty's +beaux +beaver +beaver's +beavered +beavering +beavers +bebop +bebop's +bebops +becalm +becalmed +becalming +becalms +became +because +beck +beck's +beckon +beckoned +beckoning +beckons +becks +become +becomes +becoming +becomingly +bed +bed's +bedazzle +bedazzled +bedazzles +bedazzling +bedbug +bedbug's +bedbugs +bedclothes +bedclothes's +bedded +bedder +bedding +bedding's +bedeck +bedecked +bedecking +bedecks +bedevil +bedeviled +bedeviling +bedevilled +bedevilling +bedevilment +bedevilment's +bedevils +bedfellow +bedfellow's +bedfellows +bedlam +bedlam's +bedlams +bedpan +bedpan's +bedpans +bedraggle +bedraggled +bedraggles +bedraggling +bedridden +bedrock +bedrock's +bedrocks +bedroll +bedroll's +bedrolls +bedroom +bedroom's +bedrooms +beds +bedside +bedside's +bedsides +bedsore +bedsore's +bedsores +bedspread +bedspread's +bedspreads +bedstead +bedstead's +bedsteads +bedtime +bedtime's +bedtimes +bee +bee's +beech +beech's +beeches +beechnut +beechnut's +beechnuts +beef +beef's +beefburger +beefed +beefier +beefiest +beefing +beefs +beefsteak +beefsteak's +beefsteaks +beefy +beehive +beehive's +beehives +beekeeper +beekeeper's +beekeepers +beekeeping +beekeeping's +beeline +beeline's +beelines +been +beep +beep's +beeped +beeper +beeper's +beepers +beeping +beeps +beer +beer's +beers +bees +beeswax +beeswax's +beet +beet's +beetle +beetle's +beetled +beetles +beetling +beets +beeves +befall +befallen +befalling +befalls +befell +befit +befits +befitted +befitting +befog +befogged +befogging +befogs +before +beforehand +befoul +befouled +befouling +befouls +befriend +befriended +befriending +befriends +befuddle +befuddled +befuddles +befuddling +beg +began +begat +beget +begets +begetting +beggar +beggar's +beggared +beggaring +beggarly +beggars +begged +begging +begin +beginner +beginner's +beginners +beginning +beginning's +beginnings +begins +begone +begonia +begonia's +begonias +begot +begotten +begrudge +begrudged +begrudges +begrudging +begrudgingly +begs +beguile +beguiled +beguiles +beguiling +beguilingly +begun +behalf +behalf's +behalves +behave +behaved +behaves +behaving +behavior +behavior's +behavioral +behead +beheaded +beheading +beheads +beheld +behemoth +behemoth's +behemoths +behest +behest's +behests +behind +behind's +behinds +behold +beholden +beholder +beholder's +beholders +beholding +beholds +behoove +behooved +behooves +behooving +beige +beige's +being +being's +beings +belabor +belabored +belaboring +belabors +belated +belatedly +belay +belayed +belaying +belays +belch +belch's +belched +belches +belching +beleaguer +beleaguered +beleaguering +beleaguers +belfries +belfry +belfry's +belie +belied +belief +belief's +beliefs +belies +believable +believe +believed +believer +believer's +believers +believes +believing +belittle +belittled +belittles +belittling +bell +bell's +belladonna +belladonna's +bellboy +bellboy's +bellboys +belle +belle's +belled +belles +bellhop +bellhop's +bellhops +bellicose +bellicosity +bellicosity's +bellied +bellies +belligerence +belligerence's +belligerency +belligerency's +belligerent +belligerent's +belligerently +belligerents +belling +bellow +bellow's +bellowed +bellowing +bellows +bells +bellwether +bellwether's +bellwethers +belly +belly's +bellyache +bellyache's +bellyached +bellyaches +bellyaching +bellybutton +bellybutton's +bellybuttons +bellyful +bellyful's +bellyfuls +bellying +belong +belonged +belonging +belonging's +belongings +belongs +beloved +beloved's +beloveds +below +belt +belt's +belted +belting +belts +beltway +beltway's +beltways +belying +bemoan +bemoaned +bemoaning +bemoans +bemuse +bemused +bemuses +bemusing +bench +bench's +benched +benches +benching +benchmark +benchmark's +benchmarks +bend +bend's +bender +bending +bends +beneath +benediction +benediction's +benedictions +benefaction +benefaction's +benefactions +benefactor +benefactor's +benefactors +benefactress +benefactress's +benefactresses +benefice +benefice's +beneficence +beneficence's +beneficent +beneficently +benefices +beneficial +beneficially +beneficiaries +beneficiary +beneficiary's +benefit +benefit's +benefited +benefiting +benefits +benefitted +benefitting +benevolence +benevolence's +benevolences +benevolent +benevolently +benighted +benign +benignly +bent +bent's +bents +benumb +benumbed +benumbing +benumbs +benzene +benzene's +bequeath +bequeathed +bequeathing +bequeaths +bequest +bequest's +bequests +berate +berated +berates +berating +bereave +bereaved +bereavement +bereavement's +bereavements +bereaves +bereaving +bereft +beret +beret's +berets +berg +berg's +bergs +beriberi +beriberi's +berm +berm's +berms +berried +berries +berry +berry's +berrying +berserk +berth +berth's +berthed +berthing +berths +beryl +beryl's +beryllium +beryllium's +beryls +beseech +beseeched +beseeches +beseeching +beset +besets +besetting +beside +besides +besiege +besieged +besieger +besieger's +besiegers +besieges +besieging +besmirch +besmirched +besmirches +besmirching +besom +besom's +besoms +besot +besots +besotted +besotting +besought +bespeak +bespeaking +bespeaks +bespoke +bespoken +best +best's +bested +bestial +bestiality +bestiality's +bestiaries +bestiary +bestiary's +besting +bestir +bestirred +bestirring +bestirs +bestow +bestowal +bestowal's +bestowals +bestowed +bestowing +bestows +bestrid +bestridden +bestride +bestrides +bestriding +bestrode +bests +bestseller +bestseller's +bestsellers +bet +bet's +beta +beta's +betake +betaken +betakes +betaking +betas +betcha +bethink +bethinking +bethinks +bethought +betide +betided +betides +betiding +betoken +betokened +betokening +betokens +betook +betray +betrayal +betrayal's +betrayals +betrayed +betrayer +betrayer's +betrayers +betraying +betrays +betroth +betrothal +betrothal's +betrothals +betrothed +betrothed's +betrothing +betroths +bets +betted +better +better's +bettered +bettering +betterment +betterment's +betters +betting +bettor +bettor's +bettors +between +betwixt +bevel +bevel's +beveled +beveling +bevelled +bevelling +bevels +beverage +beverage's +beverages +bevies +bevy +bevy's +bewail +bewailed +bewailing +bewails +beware +bewared +bewares +bewaring +bewilder +bewildered +bewildering +bewilderment +bewilderment's +bewilders +bewitch +bewitched +bewitches +bewitching +beyond +biannual +biannually +bias +bias's +biased +biases +biasing +biassed +biassing +biathlon +biathlon's +biathlons +bib +bib's +bible +bible's +bibles +biblical +bibliographer +bibliographer's +bibliographers +bibliographic +bibliographical +bibliographies +bibliography +bibliography's +bibliophile +bibliophile's +bibliophiles +bibs +bibulous +bicameral +bicentennial +bicentennial's +bicentennials +bicep +bicep's +biceps +biceps's +bicepses +bicker +bicker's +bickered +bickering +bickers +bicuspid +bicuspid's +bicuspids +bicycle +bicycle's +bicycled +bicycles +bicycling +bicyclist +bicyclist's +bicyclists +bid +bid's +bidden +bidder +bidder's +bidders +biddies +bidding +bidding's +biddy +biddy's +bide +bided +bides +bidet +bidet's +bidets +biding +bidirectional +bids +biennial +biennial's +biennially +biennials +bier +bier's +biers +bifocal +bifocals +bifocals's +bifurcate +bifurcated +bifurcates +bifurcating +bifurcation +bifurcation's +bifurcations +big +bigamist +bigamist's +bigamists +bigamous +bigamy +bigamy's +bigger +biggest +biggie +biggie's +biggies +bighearted +bighorn +bighorn's +bighorns +bight +bight's +bights +bigmouth +bigmouth's +bigmouths +bigness +bigness's +bigot +bigot's +bigoted +bigotries +bigotry +bigotry's +bigots +bigwig +bigwig's +bigwigs +bike +bike's +biked +biker +biker's +bikers +bikes +biking +bikini +bikini's +bikinis +bilateral +bilaterally +bile +bile's +bilge +bilge's +bilges +bilingual +bilingual's +bilinguals +bilious +bilk +bilked +bilking +bilks +bill +bill's +billboard +billboard's +billboards +billed +billet +billet's +billeted +billeting +billets +billfold +billfold's +billfolds +billiards +billiards's +billies +billing +billing's +billings +billion +billion's +billionaire +billionaire's +billionaires +billions +billionth +billionth's +billionths +billow +billow's +billowed +billowier +billowiest +billowing +billows +billowy +bills +billy +billy's +bimbo +bimbo's +bimboes +bimbos +bimonthlies +bimonthly +bimonthly's +bin +bin's +binaries +binary +binary's +bind +bind's +binder +binder's +binderies +binders +bindery +bindery's +binding +binding's +bindings +binds +binge +binge's +binged +bingeing +binges +binging +bingo +bingo's +binnacle +binnacle's +binnacles +binned +binning +binocular +binocular's +binoculars +binomial +binomial's +binomials +bins +biochemical +biochemical's +biochemicals +biochemist +biochemist's +biochemistry +biochemistry's +biochemists +biodegradable +biodiversity +biodiversity's +biofeedback +biofeedback's +biographer +biographer's +biographers +biographical +biographies +biography +biography's +biological +biologically +biologist +biologist's +biologists +biology +biology's +bionic +biophysicist +biophysicist's +biophysicists +biophysics +biophysics's +biopsied +biopsies +biopsy +biopsy's +biopsying +biorhythm +biorhythm's +biorhythms +biosphere +biosphere's +biospheres +biotechnology +biotechnology's +bipartisan +bipartite +biped +biped's +bipedal +bipeds +biplane +biplane's +biplanes +bipolar +biracial +birch +birch's +birched +birches +birching +bird +bird's +birdbath +birdbath's +birdbaths +birdbrained +birdcage +birdcages +birded +birdhouse +birdhouse's +birdhouses +birdie +birdie's +birdied +birdieing +birdies +birding +birds +birdseed +birdseed's +birdwatcher +birdwatcher's +birdwatchers +biretta +biretta's +birettas +birth +birth's +birthday +birthday's +birthdays +birthed +birthing +birthmark +birthmark's +birthmarks +birthplace +birthplace's +birthplaces +birthrate +birthrate's +birthrates +birthright +birthright's +birthrights +births +birthstone +birthstone's +birthstones +biscuit +biscuit's +biscuits +bisect +bisected +bisecting +bisection +bisection's +bisections +bisector +bisector's +bisectors +bisects +bisexual +bisexual's +bisexuality +bisexuality's +bisexuals +bishop +bishop's +bishopric +bishopric's +bishoprics +bishops +bismuth +bismuth's +bison +bison's +bisons +bisque +bisque's +bistro +bistro's +bistros +bit +bit's +bitch +bitch's +bitched +bitches +bitchier +bitchiest +bitching +bitchy +bite +bite's +bites +biting +bitingly +bitmap +bits +bitten +bitter +bitter's +bitterer +bitterest +bitterly +bittern +bittern's +bitterness +bitterness's +bitterns +bitters +bitters's +bittersweet +bittersweet's +bittersweets +bitumen +bitumen's +bituminous +bivalve +bivalve's +bivalves +bivouac +bivouac's +bivouacked +bivouacking +bivouacs +biweeklies +biweekly +biweekly's +bizarre +bizarrely +blab +blab's +blabbed +blabbermouth +blabbermouth's +blabbermouths +blabbing +blabs +black +black's +blackball +blackball's +blackballed +blackballing +blackballs +blackberries +blackberry +blackberry's +blackberrying +blackbird +blackbird's +blackbirds +blackboard +blackboard's +blackboards +blackcurrant +blacked +blacken +blackened +blackening +blackens +blacker +blackest +blackguard +blackguard's +blackguards +blackhead +blackhead's +blackheads +blacking +blackish +blackjack +blackjack's +blackjacked +blackjacking +blackjacks +blacklist +blacklist's +blacklisted +blacklisting +blacklists +blackmail +blackmail's +blackmailed +blackmailer +blackmailer's +blackmailers +blackmailing +blackmails +blackness +blackness's +blackout +blackout's +blackouts +blacks +blacksmith +blacksmith's +blacksmiths +blackthorn +blackthorn's +blackthorns +blacktop +blacktop's +blacktopped +blacktopping +blacktops +bladder +bladder's +bladders +blade +blade's +blades +blah +blah's +blame +blame's +blamed +blameless +blamelessly +blamer +blames +blameworthy +blaming +blanch +blanched +blanches +blanching +blancmange +bland +blander +blandest +blandishment +blandishment's +blandishments +blandly +blandness +blandness's +blank +blank's +blanked +blanker +blankest +blanket +blanket's +blanketed +blanketing +blankets +blanking +blankly +blankness +blankness's +blanks +blare +blare's +blared +blares +blaring +blarney +blarney's +blarneyed +blarneying +blarneys +blaspheme +blasphemed +blasphemer +blasphemer's +blasphemers +blasphemes +blasphemies +blaspheming +blasphemous +blasphemously +blasphemy +blasphemy's +blast +blast's +blasted +blaster +blaster's +blasters +blasting +blastoff +blastoff's +blastoffs +blasts +blasé +blatant +blatantly +blaze +blaze's +blazed +blazer +blazer's +blazers +blazes +blazing +blazon +blazon's +blazoned +blazoning +blazons +bleach +bleach's +bleached +bleacher +bleacher's +bleachers +bleaches +bleaching +bleak +bleaker +bleakest +bleakly +bleakness +bleakness's +blearier +bleariest +blearily +bleary +bleat +bleat's +bleated +bleating +bleats +bled +bleed +bleeder +bleeder's +bleeders +bleeding +bleeding's +bleeds +bleep +bleep's +bleeped +bleeping +bleeps +blemish +blemish's +blemished +blemishes +blemishing +blench +blenched +blenches +blenching +blend +blend's +blended +blender +blender's +blenders +blending +blends +blent +bless +blessed +blessedly +blessedness +blessedness's +blesses +blessing +blessing's +blessings +blest +blew +blight +blight's +blighted +blighting +blights +blimp +blimp's +blimps +blind +blind's +blinded +blinder +blinder's +blinders +blindest +blindfold +blindfold's +blindfolded +blindfolding +blindfolds +blinding +blindingly +blindly +blindness +blindness's +blinds +blindside +blindsided +blindsides +blindsiding +blink +blink's +blinked +blinker +blinker's +blinkered +blinkering +blinkers +blinking +blinks +blintz +blintz's +blintze +blintze's +blintzes +blip +blip's +blips +bliss +bliss's +blissful +blissfully +blissfulness +blissfulness's +blister +blister's +blistered +blistering +blisters +blithe +blithely +blither +blithest +blitz +blitz's +blitzed +blitzes +blitzing +blizzard +blizzard's +blizzards +bloat +bloated +bloating +bloats +blob +blob's +blobbed +blobbing +blobs +bloc +bloc's +block +block's +blockade +blockade's +blockaded +blockades +blockading +blockage +blockage's +blockages +blockbuster +blockbuster's +blockbusters +blocked +blockhead +blockhead's +blockheads +blockhouse +blockhouse's +blockhouses +blocking +blocks +blocs +blog +blog's +blogged +blogger +blogger's +bloggers +blogging +blogs +blond +blond's +blonde +blonde's +blonder +blondes +blondest +blondness +blondness's +blonds +blood +blood's +bloodbath +bloodbath's +bloodbaths +bloodcurdling +blooded +bloodhound +bloodhound's +bloodhounds +bloodied +bloodier +bloodies +bloodiest +blooding +bloodless +bloodlessly +bloodmobile +bloodmobile's +bloodmobiles +bloods +bloodshed +bloodshed's +bloodshot +bloodstain +bloodstain's +bloodstained +bloodstains +bloodstream +bloodstream's +bloodstreams +bloodsucker +bloodsucker's +bloodsuckers +bloodthirstier +bloodthirstiest +bloodthirstiness +bloodthirstiness's +bloodthirsty +bloody +bloodying +bloom +bloom's +bloomed +bloomer +bloomer's +bloomers +blooming +blooms +blooper +blooper's +bloopers +blossom +blossom's +blossomed +blossoming +blossoms +blot +blot's +blotch +blotch's +blotched +blotches +blotchier +blotchiest +blotching +blotchy +blots +blotted +blotter +blotter's +blotters +blotting +blouse +blouse's +bloused +blouses +blousing +blow +blow's +blower +blower's +blowers +blowgun +blowgun's +blowguns +blowing +blown +blowout +blowout's +blowouts +blows +blowsier +blowsiest +blowsy +blowtorch +blowtorch's +blowtorches +blowup +blowup's +blowups +blowzier +blowziest +blowzy +blubber +blubber's +blubbered +blubbering +blubbers +bludgeon +bludgeon's +bludgeoned +bludgeoning +bludgeons +blue +blue's +bluebell +bluebell's +bluebells +blueberries +blueberry +blueberry's +bluebird +bluebird's +bluebirds +bluebottle +bluebottle's +bluebottles +blued +bluefish +bluefish's +bluefishes +bluegrass +bluegrass's +blueing +blueing's +bluejacket +bluejacket's +bluejackets +bluejay +bluejay's +bluejays +bluenose +bluenose's +bluenoses +blueprint +blueprint's +blueprinted +blueprinting +blueprints +bluer +blues +bluest +bluff +bluff's +bluffed +bluffer +bluffer's +bluffers +bluffest +bluffing +bluffs +bluing +bluing's +bluish +blunder +blunder's +blunderbuss +blunderbuss's +blunderbusses +blundered +blunderer +blunderer's +blunderers +blundering +blunders +blunt +blunted +blunter +bluntest +blunting +bluntly +bluntness +bluntness's +blunts +blur +blur's +blurb +blurb's +blurbs +blurred +blurrier +blurriest +blurring +blurry +blurs +blurt +blurted +blurting +blurts +blush +blush's +blushed +blusher +blusher's +blushers +blushes +blushing +bluster +bluster's +blustered +blustering +blusters +blustery +bo's'n +bo's'n's +bo's'ns +bo'sun +bo'sun's +bo'suns +boa +boa's +boar +boar's +board +board's +boarded +boarder +boarder's +boarders +boarding +boardinghouse +boardinghouse's +boardinghouses +boardroom +boardroom's +boardrooms +boards +boardwalk +boardwalk's +boardwalks +boars +boas +boast +boast's +boasted +boaster +boaster's +boasters +boastful +boastfully +boastfulness +boastfulness's +boasting +boasts +boat +boat's +boated +boater +boater's +boaters +boating +boatman +boatman's +boatmen +boats +boatswain +boatswain's +boatswains +bob +bob's +bobbed +bobbies +bobbin +bobbin's +bobbing +bobbins +bobble +bobble's +bobbled +bobbles +bobbling +bobby +bobby's +bobcat +bobcat's +bobcats +bobolink +bobolink's +bobolinks +bobs +bobsled +bobsled's +bobsledded +bobsledding +bobsleds +bobtail +bobtail's +bobtails +bobwhite +bobwhite's +bobwhites +bode +boded +bodega +bodega's +bodegas +bodes +bodice +bodice's +bodices +bodies +bodily +boding +bodkin +bodkin's +bodkins +body +body's +bodybuilding +bodybuilding's +bodyguard +bodyguard's +bodyguards +bodywork +bodywork's +bog +bog's +bogey +bogey's +bogeyed +bogeying +bogeyman +bogeyman's +bogeymen +bogeys +bogged +boggier +boggiest +bogging +boggle +boggled +boggles +boggling +boggy +bogie +bogie's +bogied +bogies +bogs +bogus +bogy +bogy's +bohemian +bohemian's +bohemians +boil +boil's +boiled +boiler +boiler's +boilerplate +boilerplate's +boilers +boiling +boilings +boils +boisterous +boisterously +boisterousness +boisterousness's +bola +bola's +bolas +bold +bolder +boldest +boldface +boldface's +boldly +boldness +boldness's +bole +bole's +bolero +bolero's +boleros +boles +boll +boll's +bolls +bologna +bologna's +boloney +boloney's +bolster +bolster's +bolstered +bolstering +bolsters +bolt +bolt's +bolted +bolting +bolts +bomb +bomb's +bombard +bombarded +bombardier +bombardier's +bombardiers +bombarding +bombardment +bombardment's +bombardments +bombards +bombast +bombast's +bombastic +bombed +bomber +bomber's +bombers +bombing +bombings +bombs +bombshell +bombshell's +bombshells +bonanza +bonanza's +bonanzas +bonbon +bonbon's +bonbons +bond +bond's +bondage +bondage's +bonded +bonding +bonding's +bonds +bondsman +bondsman's +bondsmen +bone +bone's +boned +bonehead +bonehead's +boneheads +boneless +boner +boner's +boners +bones +boney +boneyer +boneyest +bonfire +bonfire's +bonfires +bong +bong's +bonged +bonging +bongo +bongo's +bongoes +bongos +bongs +bonier +boniest +boning +bonito +bonito's +bonitoes +bonitos +bonkers +bonnet +bonnet's +bonnets +bonnie +bonnier +bonniest +bonny +bonsai +bonsai's +bonus +bonus's +bonuses +bony +boo +boo's +boob +boob's +boobed +boobies +boobing +boobs +booby +booby's +boodle +boodle's +boodles +booed +boogie +boogie's +boogied +boogieing +boogies +booing +book +book's +bookcase +bookcase's +bookcases +booked +bookend +bookend's +bookends +bookie +bookie's +bookies +booking +booking's +bookings +bookish +bookkeeper +bookkeeper's +bookkeepers +bookkeeping +bookkeeping's +booklet +booklet's +booklets +bookmaker +bookmaker's +bookmakers +bookmaking +bookmaking's +bookmark +bookmark's +bookmarked +bookmarking +bookmarks +bookmobile +bookmobile's +bookmobiles +books +bookseller +bookseller's +booksellers +bookshelf +bookshelf's +bookshelves +bookshop +bookshop's +bookshops +bookstore +bookstore's +bookstores +bookworm +bookworm's +bookworms +boom +boom's +boomed +boomerang +boomerang's +boomeranged +boomeranging +boomerangs +booming +booms +boon +boon's +boondocks +boondocks's +boondoggle +boondoggle's +boondoggled +boondoggles +boondoggling +boons +boor +boor's +boorish +boorishly +boors +boos +boost +boost's +boosted +booster +booster's +boosters +boosting +boosts +boot +boot's +bootblack +bootblack's +bootblacks +booted +bootee +bootee's +bootees +booth +booth's +booths +bootie +bootie's +booties +booting +bootleg +bootleg's +bootlegged +bootlegger +bootlegger's +bootleggers +bootlegging +bootlegs +bootless +boots +bootstrap +bootstrap's +bootstraps +booty +booty's +booze +booze's +boozed +boozer +boozer's +boozers +boozes +boozier +booziest +boozing +boozy +bop +bop's +bopped +bopping +bops +borax +borax's +bordello +bordello's +bordellos +border +border's +bordered +bordering +borderland +borderland's +borderlands +borderline +borderline's +borderlines +borders +bore +bore's +bored +boredom +boredom's +borer +borer's +borers +bores +boring +boringly +born +borne +boron +boron's +borough +borough's +boroughs +borrow +borrowed +borrower +borrower's +borrowers +borrowing +borrows +borsch +borsch's +borscht +borscht's +bos'n +bos'n's +bos'ns +bosh +bosh's +bosom +bosom's +bosoms +boss +boss's +bossed +bosses +bossier +bossiest +bossily +bossiness +bossiness's +bossing +bossy +bosun +bosun's +bosuns +botanical +botanist +botanist's +botanists +botany +botany's +botch +botch's +botched +botches +botching +both +bother +bother's +bothered +bothering +bothers +bothersome +bottle +bottle's +bottled +bottleneck +bottleneck's +bottlenecks +bottles +bottling +bottom +bottom's +bottomed +bottoming +bottomless +bottoms +botulism +botulism's +boudoir +boudoir's +boudoirs +bouffant +bouffant's +bouffants +bough +bough's +boughs +bought +bouillabaisse +bouillabaisse's +bouillabaisses +bouillon +bouillon's +bouillons +boulder +boulder's +boulders +boulevard +boulevard's +boulevards +bounce +bounce's +bounced +bouncer +bouncer's +bouncers +bounces +bouncier +bounciest +bouncing +bouncy +bound +bound's +boundaries +boundary +boundary's +bounded +bounden +bounder +bounder's +bounders +bounding +boundless +bounds +bounteous +bounties +bountiful +bountifully +bounty +bounty's +bouquet +bouquet's +bouquets +bourbon +bourbon's +bourgeois +bourgeois's +bourgeoisie +bourgeoisie's +bout +bout's +boutique +boutique's +boutiques +boutonnière +boutonnière's +boutonnières +bouts +bovine +bovine's +bovines +bow +bow's +bowdlerize +bowdlerized +bowdlerizes +bowdlerizing +bowed +bowel +bowel's +bowels +bower +bower's +bowers +bowing +bowl +bowl's +bowlder +bowlder's +bowlders +bowled +bowlegged +bowler +bowler's +bowlers +bowling +bowling's +bowls +bowman +bowman's +bowmen +bows +bowsprit +bowsprit's +bowsprits +bowstring +bowstring's +bowstrings +box +box's +boxcar +boxcar's +boxcars +boxed +boxer +boxer's +boxers +boxes +boxing +boxing's +boxwood +boxwood's +boy +boy's +boycott +boycott's +boycotted +boycotting +boycotts +boyfriend +boyfriend's +boyfriends +boyhood +boyhood's +boyhoods +boyish +boyishly +boyishness +boyishness's +boys +boysenberries +boysenberry +boysenberry's +bozo +bozo's +bozos +bra +bra's +brace +brace's +braced +bracelet +bracelet's +bracelets +braces +bracing +bracken +bracken's +bracket +bracket's +bracketed +bracketing +brackets +brackish +bract +bract's +bracts +brad +brad's +brads +brag +brag's +braggart +braggart's +braggarts +bragged +bragger +bragger's +braggers +bragging +brags +braid +braid's +braided +braiding +braids +braille +braille's +brain +brain's +brainchild +brainchild's +brainchildren +brained +brainier +brainiest +braining +brainless +brains +brainstorm +brainstorm's +brainstormed +brainstorming +brainstorming's +brainstorms +brainteaser +brainteaser's +brainteasers +brainwash +brainwashed +brainwashes +brainwashing +brainwashing's +brainy +braise +braised +braises +braising +brake +brake's +braked +brakeman +brakeman's +brakemen +brakes +braking +bramble +bramble's +brambles +bran +bran's +branch +branch's +branched +branches +branching +brand +brand's +branded +brandied +brandies +branding +brandish +brandished +brandishes +brandishing +brands +brandy +brandy's +brandying +bras +brash +brasher +brashest +brashly +brashness +brashness's +brass +brass's +brasses +brassier +brassiere +brassiere's +brassieres +brassiest +brassy +brat +brat's +brats +brattier +brattiest +bratty +bravado +bravado's +brave +brave's +braved +bravely +braver +bravery +bravery's +braves +bravest +braving +bravo +bravo's +bravos +bravura +bravura's +bravuras +brawl +brawl's +brawled +brawler +brawler's +brawlers +brawling +brawls +brawn +brawn's +brawnier +brawniest +brawniness +brawniness's +brawny +bray +bray's +brayed +braying +brays +brazen +brazened +brazening +brazenly +brazenness +brazenness's +brazens +brazier +brazier's +braziers +breach +breach's +breached +breaches +breaching +bread +bread's +breadbasket +breadbasket's +breadbaskets +breaded +breadfruit +breadfruit's +breadfruits +breading +breads +breadth +breadth's +breadths +breadwinner +breadwinner's +breadwinners +break +break's +breakable +breakable's +breakables +breakage +breakage's +breakages +breakdown +breakdown's +breakdowns +breaker +breaker's +breakers +breakfast +breakfast's +breakfasted +breakfasting +breakfasts +breaking +breakneck +breakpoints +breaks +breakthrough +breakthrough's +breakthroughs +breakup +breakup's +breakups +breakwater +breakwater's +breakwaters +breast +breast's +breastbone +breastbone's +breastbones +breasted +breasting +breastplate +breastplate's +breastplates +breasts +breaststroke +breaststroke's +breaststrokes +breastwork +breastwork's +breastworks +breath +breath's +breathable +breathe +breathed +breather +breather's +breathers +breathes +breathier +breathiest +breathing +breathing's +breathless +breathlessly +breathlessness +breathlessness's +breaths +breathtaking +breathtakingly +breathy +bred +breech +breech's +breeches +breed +breed's +breeder +breeder's +breeders +breeding +breeding's +breeds +breeze +breeze's +breezed +breezes +breezier +breeziest +breezily +breeziness +breeziness's +breezing +breezy +brethren +breviaries +breviary +breviary's +brevity +brevity's +brew +brew's +brewed +brewer +brewer's +breweries +brewers +brewery +brewery's +brewing +brews +briar +briar's +briars +bribe +bribe's +bribed +bribery +bribery's +bribes +bribing +brick +brick's +brickbat +brickbat's +brickbats +bricked +bricking +bricklayer +bricklayer's +bricklayers +bricklaying +bricklaying's +bricks +bridal +bridal's +bridals +bride +bride's +bridegroom +bridegroom's +bridegrooms +brides +bridesmaid +bridesmaid's +bridesmaids +bridge +bridge's +bridged +bridgehead +bridgehead's +bridgeheads +bridges +bridgework +bridgework's +bridging +bridle +bridle's +bridled +bridles +bridling +brief +brief's +briefcase +briefcase's +briefcases +briefed +briefer +briefest +briefing +briefing's +briefings +briefly +briefness +briefness's +briefs +brier +brier's +briers +brig +brig's +brigade +brigade's +brigades +brigand +brigand's +brigandage +brigandage's +brigands +brigantine +brigantine's +brigantines +bright +brighten +brightened +brightening +brightens +brighter +brightest +brightly +brightness +brightness's +brigs +brilliance +brilliance's +brilliancy +brilliancy's +brilliant +brilliant's +brilliantly +brilliants +brim +brim's +brimful +brimfull +brimmed +brimming +brims +brimstone +brimstone's +brindled +brine +brine's +bring +bringing +brings +brinier +briniest +brink +brink's +brinkmanship +brinkmanship's +brinks +brinksmanship +brinksmanship's +briny +briquet +briquet's +briquets +briquette +briquette's +briquettes +brisk +brisked +brisker +briskest +brisket +brisket's +briskets +brisking +briskly +briskness +briskness's +brisks +bristle +bristle's +bristled +bristles +bristlier +bristliest +bristling +bristly +britches +britches's +brittle +brittle's +brittleness +brittleness's +brittler +brittlest +broach +broach's +broached +broaches +broaching +broad +broad's +broadcast +broadcast's +broadcasted +broadcaster +broadcaster's +broadcasters +broadcasting +broadcasts +broadcloth +broadcloth's +broaden +broadened +broadening +broadens +broader +broadest +broadloom +broadloom's +broadly +broadness +broadness's +broads +broadside +broadside's +broadsided +broadsides +broadsiding +broadsword +broadsword's +broadswords +brocade +brocade's +brocaded +brocades +brocading +broccoli +broccoli's +brochure +brochure's +brochures +brogan +brogan's +brogans +brogue +brogue's +brogues +broil +broil's +broiled +broiler +broiler's +broilers +broiling +broils +broke +broken +brokenhearted +broker +broker's +brokerage +brokerage's +brokerages +brokered +brokering +brokers +bromide +bromide's +bromides +bromine +bromine's +bronchi +bronchial +bronchitis +bronchitis's +broncho +broncho's +bronchos +bronchus +bronchus's +bronco +bronco's +broncos +brontosaur +brontosaur's +brontosauri +brontosaurs +brontosaurus +brontosaurus's +brontosauruses +bronze +bronze's +bronzed +bronzes +bronzing +brooch +brooch's +brooches +brood +brood's +brooded +brooder +brooder's +brooders +brooding +broods +brook +brook's +brooked +brooking +brooks +broom +broom's +brooms +broomstick +broomstick's +broomsticks +broth +broth's +brothel +brothel's +brothels +brother +brother's +brotherhood +brotherhood's +brotherhoods +brotherliness +brotherliness's +brotherly +brothers +broths +brought +brouhaha +brouhaha's +brouhahas +brow +brow's +browbeat +browbeaten +browbeating +browbeats +brown +brown's +browned +browner +brownest +brownie +brownie's +brownies +browning +brownish +brownout +brownout's +brownouts +browns +brownstone +brownstone's +brownstones +brows +browse +browse's +browsed +browser +browser's +browsers +browses +browsing +brr +bruin +bruin's +bruins +bruise +bruise's +bruised +bruiser +bruiser's +bruisers +bruises +bruising +brunch +brunch's +brunched +brunches +brunching +brunet +brunet's +brunets +brunette +brunette's +brunettes +brunt +brunt's +brush +brush's +brushed +brushes +brushing +brushwood +brushwood's +brusk +brusker +bruskest +bruskly +bruskness +bruskness's +brusque +brusquely +brusqueness +brusqueness's +brusquer +brusquest +brutal +brutalities +brutality +brutality's +brutalize +brutalized +brutalizes +brutalizing +brutally +brute +brute's +brutes +brutish +brutishly +bubble +bubble's +bubbled +bubbles +bubblier +bubbliest +bubbling +bubbly +bubbly's +buccaneer +buccaneer's +buccaneered +buccaneering +buccaneers +buck +buck's +buckboard +buckboard's +buckboards +bucked +bucket +bucket's +bucketed +bucketful +bucketful's +bucketfuls +bucketing +buckets +buckeye +buckeye's +buckeyes +bucking +buckle +buckle's +buckled +buckler +buckler's +bucklers +buckles +buckling +buckram +buckram's +bucks +bucksaw +bucksaw's +bucksaws +buckshot +buckshot's +buckskin +buckskin's +buckskins +buckteeth +bucktooth +bucktooth's +bucktoothed +buckwheat +buckwheat's +bucolic +bucolic's +bucolics +bud +bud's +budded +buddies +budding +buddings +buddy +buddy's +budge +budged +budgerigar +budgerigar's +budgerigars +budges +budget +budget's +budgetary +budgeted +budgeting +budgets +budgie +budgie's +budgies +budging +buds +buff +buff's +buffalo +buffalo's +buffaloed +buffaloes +buffaloing +buffalos +buffed +buffer +buffer's +buffered +buffering +buffers +buffet +buffet's +buffeted +buffeting +buffets +buffing +buffoon +buffoon's +buffoonery +buffoonery's +buffoons +buffs +bug +bug's +bugaboo +bugaboo's +bugaboos +bugbear +bugbear's +bugbears +bugged +bugger +bugger's +buggers +buggier +buggies +buggiest +bugging +buggy +buggy's +bugle +bugle's +bugled +bugler +bugler's +buglers +bugles +bugling +bugs +build +build's +builder +builder's +builders +building +building's +buildings +builds +buildup +buildup's +buildups +built +bulb +bulb's +bulbous +bulbs +bulge +bulge's +bulged +bulges +bulgier +bulgiest +bulging +bulgy +bulimia +bulimia's +bulimic +bulimic's +bulimics +bulk +bulk's +bulked +bulkhead +bulkhead's +bulkheads +bulkier +bulkiest +bulkiness +bulkiness's +bulking +bulks +bulky +bull +bull's +bulldog +bulldog's +bulldogged +bulldogging +bulldogs +bulldoze +bulldozed +bulldozer +bulldozer's +bulldozers +bulldozes +bulldozing +bulled +bullet +bullet's +bulletin +bulletin's +bulletined +bulletining +bulletins +bulletproof +bulletproofed +bulletproofing +bulletproofs +bullets +bullfight +bullfight's +bullfighter +bullfighter's +bullfighters +bullfighting +bullfighting's +bullfights +bullfinch +bullfinch's +bullfinches +bullfrog +bullfrog's +bullfrogs +bullheaded +bullhorn +bullhorn's +bullhorns +bullied +bullies +bulling +bullion +bullion's +bullish +bullock +bullock's +bullocks +bullpen +bullpen's +bullpens +bullring +bullring's +bullrings +bulls +bullshit +bullshit's +bullshits +bullshitted +bullshitting +bully +bully's +bullying +bulrush +bulrush's +bulrushes +bulwark +bulwark's +bulwarks +bum +bum's +bumble +bumblebee +bumblebee's +bumblebees +bumbled +bumbler +bumbler's +bumblers +bumbles +bumbling +bummed +bummer +bummer's +bummers +bummest +bumming +bump +bump's +bumped +bumper +bumper's +bumpers +bumpier +bumpiest +bumping +bumpkin +bumpkin's +bumpkins +bumps +bumptious +bumpy +bums +bun +bun's +bunch +bunch's +bunched +bunches +bunching +buncombe +buncombe's +bundle +bundle's +bundled +bundles +bundling +bung +bung's +bungalow +bungalow's +bungalows +bunged +bunghole +bunghole's +bungholes +bunging +bungle +bungle's +bungled +bungler +bungler's +bunglers +bungles +bungling +bungs +bunion +bunion's +bunions +bunk +bunk's +bunked +bunker +bunker's +bunkers +bunkhouse +bunkhouse's +bunkhouses +bunking +bunks +bunkum +bunkum's +bunnies +bunny +bunny's +buns +bunt +bunt's +bunted +bunting +bunting's +buntings +bunts +buoy +buoy's +buoyancy +buoyancy's +buoyant +buoyantly +buoyed +buoying +buoys +bur +bur's +burble +burbled +burbles +burbling +burden +burden's +burdened +burdening +burdens +burdensome +burdock +burdock's +bureau +bureau's +bureaucracies +bureaucracy +bureaucracy's +bureaucrat +bureaucrat's +bureaucratic +bureaucratically +bureaucrats +bureaus +bureaux +burg +burg's +burgeon +burgeoned +burgeoning +burgeons +burger +burger's +burgers +burgher +burgher's +burghers +burglar +burglar's +burglaries +burglarize +burglarized +burglarizes +burglarizing +burglars +burglary +burglary's +burgle +burgled +burgles +burgling +burgs +burial +burial's +burials +buried +buries +burlap +burlap's +burlesque +burlesque's +burlesqued +burlesques +burlesquing +burlier +burliest +burliness +burliness's +burly +burn +burn's +burned +burner +burner's +burners +burning +burnish +burnish's +burnished +burnishes +burnishing +burnoose +burnoose's +burnooses +burnous +burnous's +burnouses +burnout +burnout's +burnouts +burns +burnt +burp +burp's +burped +burping +burps +burr +burr's +burred +burring +burrito +burrito's +burritos +burro +burro's +burros +burrow +burrow's +burrowed +burrowing +burrows +burrs +burs +bursar +bursar's +bursars +bursitis +bursitis's +burst +burst's +bursted +bursting +bursts +bury +burying +bus +bus's +busbies +busboy +busboy's +busboys +busby +busby's +bused +buses +bush +bush's +bushed +bushel +bushel's +busheled +busheling +bushelled +bushelling +bushels +bushes +bushier +bushiest +bushiness +bushiness's +bushing +bushing's +bushings +bushman +bushman's +bushmen +bushwhack +bushwhacked +bushwhacker +bushwhacker's +bushwhackers +bushwhacking +bushwhacks +bushy +busied +busier +busies +busiest +busily +business +business's +businesses +businesslike +businessman +businessman's +businessmen +businesswoman +businesswoman's +businesswomen +busing +busing's +buss +buss's +bussed +busses +bussing +bussing's +bust +bust's +busted +buster +buster's +busters +busting +bustle +bustle's +bustled +bustles +bustling +busts +busy +busybodies +busybody +busybody's +busying +busyness +busyness's +busywork +busywork's +but +butane +butane's +butch +butch's +butcher +butcher's +butchered +butcheries +butchering +butchers +butchery +butchery's +butches +butler +butler's +butlers +buts +butt +butt's +butte +butte's +butted +butter +butter's +buttercup +buttercup's +buttercups +buttered +butterfat +butterfat's +butterfingers +butterfingers's +butterflied +butterflies +butterfly +butterfly's +butterflying +butterier +butteries +butteriest +buttering +buttermilk +buttermilk's +butternut +butternut's +butternuts +butters +butterscotch +butterscotch's +buttery +buttery's +buttes +butting +buttock +buttock's +buttocks +button +button's +buttoned +buttonhole +buttonhole's +buttonholed +buttonholes +buttonholing +buttoning +buttons +buttress +buttress's +buttressed +buttresses +buttressing +butts +buxom +buy +buy's +buyer +buyer's +buyers +buying +buyout +buyout's +buyouts +buys +buzz +buzz's +buzzard +buzzard's +buzzards +buzzed +buzzer +buzzer's +buzzers +buzzes +buzzing +buzzword +buzzword's +buzzwords +by +by's +bye +bye's +byelaw +byelaw's +byelaws +byes +bygone +bygone's +bygones +bylaw +bylaw's +bylaws +byline +byline's +bylines +bypass +bypass's +bypassed +bypasses +bypassing +bypast +byplay +byplay's +byproduct +byproduct's +byproducts +bystander +bystander's +bystanders +byte +byte's +bytes +byway +byway's +byways +byword +byword's +bywords +c +cab +cab's +cabal +cabal's +cabals +cabana +cabana's +cabanas +cabaret +cabaret's +cabarets +cabbage +cabbage's +cabbages +cabbed +cabbie +cabbie's +cabbies +cabbing +cabby +cabby's +cabin +cabin's +cabinet +cabinet's +cabinetmaker +cabinetmaker's +cabinetmakers +cabinets +cabins +cable +cable's +cablecast +cablecast's +cablecasted +cablecasting +cablecasts +cabled +cablegram +cablegram's +cablegrams +cables +cabling +caboodle +caboodle's +caboose +caboose's +cabooses +cabs +cacao +cacao's +cacaos +cache +cache's +cached +caches +cachet +cachet's +cachets +caching +cackle +cackle's +cackled +cackles +cackling +cacophonies +cacophonous +cacophony +cacophony's +cacti +cactus +cactus's +cactuses +cad +cad's +cadaver +cadaver's +cadaverous +cadavers +caddie +caddie's +caddied +caddies +caddish +caddy +caddy's +caddying +cadence +cadence's +cadences +cadenza +cadenza's +cadenzas +cadet +cadet's +cadets +cadge +cadged +cadger +cadger's +cadgers +cadges +cadging +cadmium +cadmium's +cadre +cadre's +cadres +cads +caducei +caduceus +caduceus's +caesarean +caesarean's +caesareans +caesarian +caesarian's +caesarians +caesura +caesura's +caesurae +caesuras +cafeteria +cafeteria's +cafeterias +caffeinated +caffeine +caffeine's +caftan +caftan's +caftans +café +café's +cafés +cage +cage's +caged +cages +cagey +cageyness +cageyness's +cagier +cagiest +cagily +caginess +caginess's +caging +cagy +cahoot +cahoot's +cahoots +cairn +cairn's +cairns +caisson +caisson's +caissons +cajole +cajoled +cajolery +cajolery's +cajoles +cajoling +cake +cake's +caked +cakes +caking +calabash +calabash's +calabashes +calamine +calamine's +calamities +calamitous +calamity +calamity's +calcified +calcifies +calcify +calcifying +calcine +calcined +calcines +calcining +calcite +calcite's +calcium +calcium's +calculable +calculate +calculated +calculates +calculating +calculation +calculation's +calculations +calculator +calculator's +calculators +calculi +calculus +calculus's +calculuses +caldron +caldron's +caldrons +calendar +calendar's +calendared +calendaring +calendars +calf +calf's +calfs +calfskin +calfskin's +caliber +caliber's +calibers +calibrate +calibrated +calibrates +calibrating +calibration +calibration's +calibrations +calibrator +calibrator's +calibrators +calico +calico's +calicoes +calicos +calif +calif's +califs +caliper +caliper's +calipered +calipering +calipers +caliph +caliph's +caliphate +caliphate's +caliphates +caliphs +calisthenic +calisthenics +calisthenics's +calk +calk's +calked +calking +calking's +calkings +calks +call +call's +callable +called +caller +caller's +callers +calligrapher +calligrapher's +calligraphers +calligraphy +calligraphy's +calling +calling's +callings +calliope +calliope's +calliopes +calliper +calliper's +callipered +callipering +callipers +callisthenics +callous +calloused +callouses +callousing +callously +callousness +callousness's +callow +callower +callowest +calls +callus +callus's +callused +calluses +callusing +calm +calm's +calmed +calmer +calmest +calming +calmly +calmness +calmness's +calms +caloric +calorie +calorie's +calories +calorific +calumniate +calumniated +calumniates +calumniating +calumnies +calumny +calumny's +calve +calved +calves +calving +calyces +calypso +calypso's +calypsos +calyx +calyx's +calyxes +cam +cam's +camaraderie +camaraderie's +camber +camber's +cambered +cambering +cambers +cambia +cambium +cambium's +cambiums +cambric +cambric's +camcorder +camcorder's +camcorders +came +camel +camel's +camellia +camellia's +camellias +camels +cameo +cameo's +cameos +camera +camera's +cameraman +cameraman's +cameramen +cameras +camerawoman +camerawoman's +camerawomen +camisole +camisole's +camisoles +camomile +camomile's +camomiles +camouflage +camouflage's +camouflaged +camouflages +camouflaging +camp +camp's +campaign +campaign's +campaigned +campaigner +campaigner's +campaigners +campaigning +campaigns +campanile +campanile's +campaniles +campanili +camped +camper +camper's +campers +campfire +campfire's +campfires +campground +campground's +campgrounds +camphor +camphor's +campier +campiest +camping +camping's +camps +campsite +campsite's +campsites +campus +campus's +campuses +campy +cams +camshaft +camshaft's +camshafts +can +can's +can't +canal +canal's +canals +canapé +canapé's +canapés +canard +canard's +canards +canaries +canary +canary's +canasta +canasta's +cancan +cancan's +cancans +cancel +cancelation +canceled +canceling +cancellation +cancellation's +cancellations +cancelled +cancelling +cancels +cancer +cancer's +cancerous +cancers +candelabra +candelabra's +candelabras +candelabrum +candelabrum's +candelabrums +candid +candidacies +candidacy +candidacy's +candidate +candidate's +candidates +candidly +candidness +candidness's +candied +candies +candle +candle's +candled +candlelight +candlelight's +candles +candlestick +candlestick's +candlesticks +candling +candor +candor's +candy +candy's +candying +cane +cane's +caned +canes +canine +canine's +canines +caning +canister +canister's +canisters +canker +canker's +cankered +cankering +cankerous +cankers +cannabis +cannabis's +cannabises +canned +canneries +cannery +cannery's +cannibal +cannibal's +cannibalism +cannibalism's +cannibalistic +cannibalize +cannibalized +cannibalizes +cannibalizing +cannibals +cannier +canniest +cannily +canniness +canniness's +canning +cannon +cannon's +cannonade +cannonade's +cannonaded +cannonades +cannonading +cannonball +cannonball's +cannonballs +cannoned +cannoning +cannons +cannot +canny +canoe +canoe's +canoed +canoeing +canoeist +canoeist's +canoeists +canoes +canon +canon's +canonical +canonization +canonization's +canonizations +canonize +canonized +canonizes +canonizing +canons +canopied +canopies +canopy +canopy's +canopying +cans +cant +cant's +cantaloup +cantaloup's +cantaloupe +cantaloupe's +cantaloupes +cantaloups +cantankerous +cantankerously +cantankerousness +cantankerousness's +cantata +cantata's +cantatas +canted +canteen +canteen's +canteens +canter +canter's +cantered +cantering +canters +canticle +canticle's +canticles +cantilever +cantilever's +cantilevered +cantilevering +cantilevers +canting +canto +canto's +canton +canton's +cantons +cantor +cantor's +cantors +cantos +cants +canvas +canvas's +canvasback +canvasback's +canvasbacks +canvased +canvases +canvasing +canvass +canvass's +canvassed +canvasser +canvasser's +canvassers +canvasses +canvassing +canyon +canyon's +canyons +cap +cap's +capabilities +capability +capability's +capable +capably +capacious +capaciously +capaciousness +capaciousness's +capacitance +capacities +capacitor +capacitor's +capacitors +capacity +capacity's +caparison +caparison's +caparisoned +caparisoning +caparisons +cape +cape's +caped +caper +caper's +capered +capering +capers +capes +capillaries +capillary +capillary's +capital +capital's +capitalism +capitalism's +capitalist +capitalist's +capitalistic +capitalists +capitalization +capitalization's +capitalize +capitalized +capitalizes +capitalizing +capitals +capitol +capitol's +capitols +capitulate +capitulated +capitulates +capitulating +capitulation +capitulation's +capitulations +caplet +caplet's +caplets +capon +capon's +capons +capped +capping +cappuccino +cappuccino's +cappuccinos +caprice +caprice's +caprices +capricious +capriciously +capriciousness +capriciousness's +caps +capsize +capsized +capsizes +capsizing +capstan +capstan's +capstans +capsule +capsule's +capsuled +capsules +capsuling +captain +captain's +captaincies +captaincy +captaincy's +captained +captaining +captains +caption +caption's +captioned +captioning +captions +captious +captivate +captivated +captivates +captivating +captivation +captivation's +captive +captive's +captives +captivities +captivity +captivity's +captor +captor's +captors +capture +capture's +captured +captures +capturing +car +car's +caracul +caracul's +carafe +carafe's +carafes +caramel +caramel's +caramels +carapace +carapace's +carapaces +carat +carat's +carats +caravan +caravan's +caravans +caraway +caraway's +caraways +carbide +carbide's +carbides +carbine +carbine's +carbines +carbohydrate +carbohydrate's +carbohydrates +carbon +carbon's +carbonate +carbonate's +carbonated +carbonates +carbonating +carbonation +carbonation's +carbons +carboy +carboy's +carboys +carbuncle +carbuncle's +carbuncles +carburetor +carburetor's +carburetors +carcass +carcass's +carcasses +carcinogen +carcinogen's +carcinogenic +carcinogenic's +carcinogenics +carcinogens +carcinoma +carcinoma's +carcinomas +carcinomata +card +card's +cardboard +cardboard's +carded +cardiac +cardigan +cardigan's +cardigans +cardinal +cardinal's +cardinals +carding +cardiogram +cardiogram's +cardiograms +cardiologist +cardiologist's +cardiologists +cardiology +cardiology's +cardiopulmonary +cardiovascular +cards +cardsharp +cardsharp's +cardsharps +care +care's +cared +careen +careened +careening +careens +career +career's +careered +careering +careers +carefree +careful +carefuller +carefullest +carefully +carefulness +carefulness's +caregiver +caregiver's +caregivers +careless +carelessly +carelessness +carelessness's +cares +caress +caress's +caressed +caresses +caressing +caret +caret's +caretaker +caretaker's +caretakers +carets +careworn +carfare +carfare's +cargo +cargo's +cargoes +cargos +caribou +caribou's +caribous +caricature +caricature's +caricatured +caricatures +caricaturing +caricaturist +caricaturist's +caricaturists +caries +caries's +carillon +carillon's +carillons +caring +caring's +carjack +carjacked +carjacker +carjacker's +carjackers +carjacking +carjacking's +carjackings +carjacks +carmine +carmine's +carmines +carnage +carnage's +carnal +carnally +carnation +carnation's +carnations +carnelian +carnelian's +carnelians +carnival +carnival's +carnivals +carnivore +carnivore's +carnivores +carnivorous +carol +carol's +caroled +caroler +caroler's +carolers +caroling +carolled +caroller +caroller's +carollers +carolling +carols +carom +carom's +caromed +caroming +caroms +carotid +carotid's +carotids +carousal +carousal's +carousals +carouse +carouse's +caroused +carousel +carousel's +carousels +carouser +carouser's +carousers +carouses +carousing +carp +carp's +carpal +carpal's +carpals +carped +carpel +carpel's +carpels +carpenter +carpenter's +carpentered +carpentering +carpenters +carpentry +carpentry's +carpet +carpet's +carpetbag +carpetbag's +carpetbagged +carpetbagger +carpetbagger's +carpetbaggers +carpetbagging +carpetbags +carpeted +carpeting +carpeting's +carpets +carpi +carping +carport +carport's +carports +carps +carpus +carpus's +carrel +carrel's +carrels +carriage +carriage's +carriages +carriageway +carried +carrier +carrier's +carriers +carries +carrion +carrion's +carrot +carrot's +carrots +carrousel +carrousel's +carrousels +carry +carry's +carryall +carryall's +carryalls +carrying +carryout +cars +carsick +carsickness +carsickness's +cart +cart's +carted +cartel +cartel's +cartels +cartilage +cartilage's +cartilages +cartilaginous +carting +cartographer +cartographer's +cartographers +cartography +cartography's +carton +carton's +cartons +cartoon +cartoon's +cartooned +cartooning +cartoonist +cartoonist's +cartoonists +cartoons +cartridge +cartridge's +cartridges +carts +cartwheel +cartwheel's +cartwheeled +cartwheeling +cartwheels +carve +carved +carver +carver's +carvers +carves +carving +carving's +carvings +caryatid +caryatid's +caryatides +caryatids +cascade +cascade's +cascaded +cascades +cascading +case +case's +cased +casein +casein's +caseload +caseload's +caseloads +casement +casement's +casements +cases +casework +casework's +caseworker +caseworker's +caseworkers +cash +cash's +cashed +cashes +cashew +cashew's +cashews +cashier +cashier's +cashiered +cashiering +cashiers +cashing +cashmere +cashmere's +casing +casing's +casings +casino +casino's +casinos +cask +cask's +casket +casket's +caskets +casks +cassava +cassava's +cassavas +casserole +casserole's +casseroled +casseroles +casseroling +cassette +cassette's +cassettes +cassia +cassia's +cassias +cassino +cassino's +cassinos +cassock +cassock's +cassocks +cast +cast's +castanet +castanet's +castanets +castaway +castaway's +castaways +caste +caste's +caster +caster's +casters +castes +castigate +castigated +castigates +castigating +castigation +castigation's +castigator +castigator's +castigators +casting +casting's +castings +castle +castle's +castled +castles +castling +castoff +castoff's +castoffs +castor +castor's +castors +castrate +castrated +castrates +castrating +castration +castration's +castrations +casts +casual +casual's +casually +casualness +casualness's +casuals +casualties +casualty +casualty's +casuist +casuist's +casuistry +casuistry's +casuists +cat +cat's +cataclysm +cataclysm's +cataclysmic +cataclysms +catacomb +catacomb's +catacombs +catafalque +catafalque's +catafalques +catalepsy +catalepsy's +cataleptic +cataleptic's +cataleptics +catalog +catalog's +cataloged +cataloger +cataloger's +catalogers +cataloging +catalogs +catalogue +catalogue's +catalogued +cataloguer +cataloguer's +cataloguers +catalogues +cataloguing +catalpa +catalpa's +catalpas +catalysis +catalysis's +catalyst +catalyst's +catalysts +catalytic +catalytic's +catalyze +catalyzed +catalyzes +catalyzing +catamaran +catamaran's +catamarans +catapult +catapult's +catapulted +catapulting +catapults +cataract +cataract's +cataracts +catarrh +catarrh's +catastrophe +catastrophe's +catastrophes +catastrophic +catastrophically +catatonic +catatonic's +catatonics +catbird +catbird's +catbirds +catboat +catboat's +catboats +catcall +catcall's +catcalled +catcalling +catcalls +catch +catch's +catchall +catchall's +catchalls +catcher +catcher's +catchers +catches +catchier +catchiest +catching +catchings +catchment +catchphrase +catchup +catchup's +catchword +catchword's +catchwords +catchy +catechise +catechised +catechises +catechising +catechism +catechism's +catechisms +catechize +catechized +catechizes +catechizing +categorical +categorically +categories +categorization +categorization's +categorizations +categorize +categorized +categorizes +categorizing +category +category's +cater +catered +caterer +caterer's +caterers +catering +caterings +caterpillar +caterpillar's +caterpillars +caters +caterwaul +caterwaul's +caterwauled +caterwauling +caterwauls +catfish +catfish's +catfishes +catgut +catgut's +catharses +catharsis +catharsis's +cathartic +cathartic's +cathartics +cathedral +cathedral's +cathedrals +catheter +catheter's +catheters +cathode +cathode's +cathodes +catholic +catholicity +catholicity's +cation +cation's +cations +catkin +catkin's +catkins +catnap +catnap's +catnapped +catnapping +catnaps +catnip +catnip's +cats +catsup +catsup's +cattail +cattail's +cattails +cattier +cattiest +cattily +cattiness +cattiness's +cattle +cattle's +cattleman +cattleman's +cattlemen +catty +catwalk +catwalk's +catwalks +caucus +caucus's +caucused +caucuses +caucusing +caucussed +caucussing +caudal +caught +cauldron +cauldron's +cauldrons +cauliflower +cauliflower's +cauliflowers +caulk +caulk's +caulked +caulking +caulking's +caulkings +caulks +causal +causalities +causality +causality's +causally +causation +causation's +causative +cause +cause's +caused +causeless +causes +causeway +causeway's +causeways +causing +caustic +caustic's +caustically +caustics +cauterize +cauterized +cauterizes +cauterizing +caution +caution's +cautionary +cautioned +cautioning +cautions +cautious +cautiously +cautiousness +cautiousness's +cavalcade +cavalcade's +cavalcades +cavalier +cavalier's +cavaliers +cavalries +cavalry +cavalry's +cavalryman +cavalryman's +cavalrymen +cave +cave's +caveat +caveat's +caveats +caved +caveman +caveman's +cavemen +cavern +cavern's +cavernous +caverns +caves +caviar +caviar's +caviare +caviare's +cavil +cavil's +caviled +caviling +cavilled +cavilling +cavils +caving +cavities +cavity +cavity's +cavort +cavorted +cavorting +cavorts +caw +caw's +cawed +cawing +caws +cayenne +cayenne's +cease +cease's +ceased +ceasefire +ceaseless +ceaselessly +ceases +ceasing +cedar +cedar's +cedars +cede +ceded +cedes +cedilla +cedilla's +cedillas +ceding +ceiling +ceiling's +ceilings +celebrant +celebrant's +celebrants +celebrate +celebrated +celebrates +celebrating +celebration +celebration's +celebrations +celebratory +celebrities +celebrity +celebrity's +celerity +celerity's +celery +celery's +celesta +celesta's +celestas +celestial +celibacy +celibacy's +celibate +celibate's +celibates +cell +cell's +cellar +cellar's +cellars +celli +cellist +cellist's +cellists +cello +cello's +cellophane +cellophane's +cellos +cells +cellular +cellular's +cellulars +cellulite +cellulite's +celluloid +celluloid's +cellulose +cellulose's +cement +cement's +cemented +cementing +cements +cemeteries +cemetery +cemetery's +cenotaph +cenotaph's +cenotaphs +censer +censer's +censers +censor +censor's +censored +censoring +censorious +censoriously +censors +censorship +censorship's +censure +censure's +censured +censures +censuring +census +census's +censused +censuses +censusing +cent +cent's +centaur +centaur's +centaurs +centenarian +centenarian's +centenarians +centenaries +centenary +centenary's +centennial +centennial's +centennials +center +center's +centered +centerfold +centerfold's +centerfolds +centering +centerpiece +centerpiece's +centerpieces +centers +centigrade +centigram +centigram's +centigramme +centigramme's +centigrammes +centigrams +centiliter +centiliter's +centiliters +centime +centime's +centimes +centimeter +centimeter's +centimeters +centipede +centipede's +centipedes +central +central's +centralization +centralization's +centralize +centralized +centralizes +centralizing +centrally +centrals +centrifugal +centrifuge +centrifuge's +centrifuged +centrifuges +centrifuging +centripetal +centrist +centrist's +centrists +cents +centuries +centurion +centurion's +centurions +century +century's +cephalic +ceramic +ceramic's +ceramics +ceramics's +cereal +cereal's +cereals +cerebella +cerebellum +cerebellum's +cerebellums +cerebra +cerebral +cerebrum +cerebrum's +cerebrums +ceremonial +ceremonial's +ceremonially +ceremonials +ceremonies +ceremonious +ceremoniously +ceremony +ceremony's +cerise +cerise's +certain +certainly +certainties +certainty +certainty's +certifiable +certificate +certificate's +certificated +certificates +certificating +certification +certification's +certifications +certified +certifies +certify +certifying +certitude +certitude's +cerulean +cerulean's +cervical +cervices +cervix +cervix's +cervixes +cesarean +cesarean's +cesareans +cesarian +cesarian's +cesarians +cesium +cesium's +cessation +cessation's +cessations +cession +cession's +cessions +cesspool +cesspool's +cesspools +cetacean +cetacean's +cetaceans +chafe +chafed +chafes +chaff +chaff's +chaffed +chaffinch +chaffinch's +chaffinches +chaffing +chaffs +chafing +chagrin +chagrin's +chagrined +chagrining +chagrinned +chagrinning +chagrins +chain +chain's +chained +chaining +chains +chainsaw +chainsaw's +chainsawed +chainsawing +chainsaws +chair +chair's +chaired +chairing +chairlift +chairlift's +chairlifts +chairman +chairman's +chairmanship +chairmanship's +chairmen +chairperson +chairperson's +chairpersons +chairs +chairwoman +chairwoman's +chairwomen +chaise +chaise's +chaises +chalet +chalet's +chalets +chalice +chalice's +chalices +chalk +chalk's +chalkboard +chalkboard's +chalkboards +chalked +chalkier +chalkiest +chalking +chalks +chalky +challenge +challenge's +challenged +challenger +challenger's +challengers +challenges +challenging +chamber +chamber's +chamberlain +chamberlain's +chamberlains +chambermaid +chambermaid's +chambermaids +chambers +chambray +chambray's +chameleon +chameleon's +chameleons +chammies +chammy +chammy's +chamois +chamois's +chamoix +chamomile +chamomile's +chamomiles +champ +champ's +champagne +champagne's +champagnes +champed +champing +champion +champion's +championed +championing +champions +championship +championship's +championships +champs +chance +chance's +chanced +chancel +chancel's +chancelleries +chancellery +chancellery's +chancellor +chancellor's +chancellors +chancels +chanceries +chancery +chancery's +chances +chancier +chanciest +chancing +chancy +chandelier +chandelier's +chandeliers +chandler +chandler's +chandlers +change +change's +changeable +changed +changeling +changeling's +changelings +changeover +changeover's +changeovers +changes +changing +channel +channel's +channeled +channeling +channelled +channelling +channels +chant +chant's +chanted +chanter +chanter's +chanters +chantey +chantey's +chanteys +chanticleer +chanticleer's +chanticleers +chanties +chanting +chants +chanty +chanty's +chaos +chaos's +chaotic +chaotically +chap +chap's +chaparral +chaparral's +chaparrals +chapel +chapel's +chapels +chaperon +chaperon's +chaperone +chaperone's +chaperoned +chaperones +chaperoning +chaperons +chaplain +chaplain's +chaplaincies +chaplaincy +chaplaincy's +chaplains +chaplet +chaplet's +chaplets +chapped +chapping +chaps +chapt +chapter +chapter's +chapters +char +char's +character +character's +characteristic +characteristic's +characteristically +characteristics +characterization +characterization's +characterizations +characterize +characterized +characterizes +characterizing +characters +charade +charade's +charades +charbroil +charbroiled +charbroiling +charbroils +charcoal +charcoal's +charcoals +charge +charge's +chargeable +charged +charger +charger's +chargers +charges +charging +charier +chariest +charily +chariot +chariot's +charioteer +charioteer's +charioteers +chariots +charisma +charisma's +charismatic +charismatic's +charismatics +charitable +charitably +charities +charity +charity's +charlatan +charlatan's +charlatans +charm +charm's +charmed +charmer +charmer's +charmers +charming +charmingly +charms +charred +charring +chars +chart +chart's +charted +charter +charter's +chartered +chartering +charters +charting +chartreuse +chartreuse's +charts +charwoman +charwoman's +charwomen +chary +chase +chase's +chased +chaser +chaser's +chasers +chases +chasing +chasm +chasm's +chasms +chassis +chassis's +chaste +chastely +chasten +chastened +chastening +chastens +chaster +chastest +chastise +chastised +chastisement +chastisement's +chastisements +chastises +chastising +chastity +chastity's +chasuble +chasuble's +chasubles +chat +chat's +chateaus +chats +chatted +chattel +chattel's +chattels +chatter +chatter's +chatterbox +chatterbox's +chatterboxes +chattered +chatterer +chatterer's +chatterers +chattering +chatters +chattier +chattiest +chattily +chattiness +chattiness's +chatting +chatty +chauffeur +chauffeur's +chauffeured +chauffeuring +chauffeurs +chauvinism +chauvinism's +chauvinist +chauvinist's +chauvinistic +chauvinists +cheap +cheapen +cheapened +cheapening +cheapens +cheaper +cheapest +cheaply +cheapness +cheapness's +cheapskate +cheapskate's +cheapskates +cheat +cheat's +cheated +cheater +cheater's +cheaters +cheating +cheats +check +check's +checkbook +checkbook's +checkbooks +checked +checker +checker's +checkerboard +checkerboard's +checkerboards +checkered +checkering +checkers +checkers's +checking +checklist +checklist's +checklists +checkmate +checkmate's +checkmated +checkmates +checkmating +checkout +checkout's +checkouts +checkpoint +checkpoint's +checkpoints +checkroom +checkroom's +checkrooms +checks +checkup +checkup's +checkups +cheddar +cheddar's +cheek +cheek's +cheekbone +cheekbone's +cheekbones +cheeked +cheekier +cheekiest +cheekily +cheekiness +cheekiness's +cheeking +cheeks +cheeky +cheep +cheep's +cheeped +cheeping +cheeps +cheer +cheer's +cheered +cheerful +cheerfuller +cheerfullest +cheerfully +cheerfulness +cheerfulness's +cheerier +cheeriest +cheerily +cheeriness +cheeriness's +cheering +cheerleader +cheerleader's +cheerleaders +cheerless +cheerlessly +cheerlessness +cheerlessness's +cheers +cheery +cheese +cheese's +cheeseburger +cheeseburger's +cheeseburgers +cheesecake +cheesecake's +cheesecakes +cheesecloth +cheesecloth's +cheesed +cheeses +cheesier +cheesiest +cheesing +cheesy +cheetah +cheetah's +cheetahs +chef +chef's +chefs +chemical +chemical's +chemically +chemicals +chemise +chemise's +chemises +chemist +chemist's +chemistry +chemistry's +chemists +chemotherapy +chemotherapy's +chenille +chenille's +cherish +cherished +cherishes +cherishing +cheroot +cheroot's +cheroots +cherries +cherry +cherry's +cherub +cherub's +cherubic +cherubim +cherubims +cherubs +chervil +chervil's +chess +chess's +chessboard +chessboard's +chessboards +chessman +chessman's +chessmen +chest +chest's +chestnut +chestnut's +chestnuts +chests +chevron +chevron's +chevrons +chew +chew's +chewed +chewer +chewer's +chewers +chewier +chewiest +chewing +chews +chewy +chi +chiaroscuro +chiaroscuro's +chic +chic's +chicaneries +chicanery +chicanery's +chicer +chicest +chichi +chichi's +chichis +chick +chick's +chickadee +chickadee's +chickadees +chicken +chicken's +chickened +chickening +chickenpox +chickenpox's +chickens +chickpea +chickpea's +chickpeas +chicks +chickweed +chickweed's +chicle +chicle's +chicories +chicory +chicory's +chid +chidden +chide +chided +chides +chiding +chief +chief's +chiefer +chiefest +chiefly +chiefs +chieftain +chieftain's +chieftains +chiffon +chiffon's +chigger +chigger's +chiggers +chignon +chignon's +chignons +chilblain +chilblain's +chilblains +child +child's +childbearing +childbearing's +childbirth +childbirth's +childbirths +childcare +childcare's +childhood +childhood's +childhoods +childish +childishly +childishness +childishness's +childless +childlessness +childlessness's +childlike +childproof +childproofed +childproofing +childproofs +children +chile +chile's +chiles +chili +chili's +chilies +chilis +chill +chill's +chilled +chiller +chiller's +chillers +chillest +chilli +chilli's +chillier +chillies +chilliest +chilliness +chilliness's +chilling +chillings +chills +chilly +chimaera +chimaera's +chimaeras +chime +chime's +chimed +chimera +chimera's +chimeras +chimerical +chimes +chiming +chimney +chimney's +chimneys +chimp +chimp's +chimpanzee +chimpanzee's +chimpanzees +chimps +chin +chin's +china +china's +chinchilla +chinchilla's +chinchillas +chink +chink's +chinked +chinking +chinks +chinned +chinning +chino +chino's +chinos +chins +chinstrap +chinstrap's +chinstraps +chintz +chintz's +chintzier +chintziest +chintzy +chip +chip's +chipmunk +chipmunk's +chipmunks +chipped +chipper +chipper's +chippers +chipping +chips +chiropodist +chiropodist's +chiropodists +chiropody +chiropody's +chiropractic +chiropractic's +chiropractics +chiropractor +chiropractor's +chiropractors +chirp +chirp's +chirped +chirping +chirps +chirrup +chirrup's +chirruped +chirruping +chirrupped +chirrupping +chirrups +chisel +chisel's +chiseled +chiseler +chiseler's +chiselers +chiseling +chiselled +chiseller +chiseller's +chisellers +chiselling +chisels +chit +chit's +chitchat +chitchat's +chitchats +chitchatted +chitchatting +chitin +chitin's +chitlings +chitlings's +chitlins +chitlins's +chits +chitterlings +chitterlings's +chivalrous +chivalrously +chivalry +chivalry's +chive +chive's +chives +chloride +chloride's +chlorides +chlorinate +chlorinated +chlorinates +chlorinating +chlorination +chlorination's +chlorine +chlorine's +chlorofluorocarbon +chlorofluorocarbon's +chlorofluorocarbons +chloroform +chloroform's +chloroformed +chloroforming +chloroforms +chlorophyll +chlorophyll's +chock +chock's +chocked +chocking +chocks +chocolate +chocolate's +chocolates +choice +choice's +choicer +choices +choicest +choir +choir's +choirs +choke +choke's +choked +choker +choker's +chokers +chokes +choking +choler +choler's +cholera +cholera's +choleric +cholesterol +cholesterol's +chomp +chomp's +chomped +chomping +chomps +choose +chooses +choosey +choosier +choosiest +choosing +choosy +chop +chop's +chopped +chopper +chopper's +choppered +choppering +choppers +choppier +choppiest +choppily +choppiness +choppiness's +chopping +choppy +chops +chopstick +chopstick's +chopsticks +choral +choral's +chorale +chorale's +chorales +chorals +chord +chord's +chords +chore +chore's +choreograph +choreographed +choreographer +choreographer's +choreographers +choreographic +choreographing +choreographs +choreography +choreography's +chores +chorister +chorister's +choristers +chortle +chortle's +chortled +chortles +chortling +chorus +chorus's +chorused +choruses +chorusing +chorussed +chorussing +chose +chosen +chow +chow's +chowder +chowder's +chowders +chowed +chowing +chows +christen +christened +christening +christening's +christenings +christens +chromatic +chrome +chrome's +chromed +chromes +chroming +chromium +chromium's +chromosome +chromosome's +chromosomes +chronic +chronically +chronicle +chronicle's +chronicled +chronicler +chronicler's +chroniclers +chronicles +chronicling +chronological +chronologically +chronologies +chronology +chronology's +chronometer +chronometer's +chronometers +chrysalides +chrysalis +chrysalis's +chrysalises +chrysanthemum +chrysanthemum's +chrysanthemums +chubbier +chubbiest +chubbiness +chubbiness's +chubby +chuck +chuck's +chucked +chuckhole +chuckhole's +chuckholes +chucking +chuckle +chuckle's +chuckled +chuckles +chuckling +chucks +chug +chug's +chugged +chugging +chugs +chum +chum's +chummed +chummier +chummiest +chumminess +chumminess's +chumming +chummy +chump +chump's +chumps +chums +chunk +chunk's +chunkier +chunkiest +chunkiness +chunkiness's +chunks +chunky +church +church's +churches +churchgoer +churchgoer's +churchgoers +churchman +churchman's +churchmen +churchyard +churchyard's +churchyards +churl +churl's +churlish +churlishly +churlishness +churlishness's +churls +churn +churn's +churned +churning +churns +chute +chute's +chutes +chutney +chutney's +chutzpa +chutzpa's +chutzpah +chutzpah's +château +château's +châteaux +châtelaine +châtelaine's +châtelaines +cicada +cicada's +cicadae +cicadas +cicatrice +cicatrice's +cicatrices +cicatrix +cicatrix's +cider +cider's +ciders +cigar +cigar's +cigaret +cigaret's +cigarets +cigarette +cigarette's +cigarettes +cigarillo +cigarillo's +cigarillos +cigars +cilantro +cilantro's +cilia +cilium +cilium's +cinch +cinch's +cinched +cinches +cinching +cinchona +cinchona's +cinchonas +cincture +cincture's +cinctures +cinder +cinder's +cindered +cindering +cinders +cinema +cinema's +cinemas +cinematic +cinematographer +cinematographer's +cinematographers +cinematography +cinematography's +cinnabar +cinnabar's +cinnamon +cinnamon's +cipher +cipher's +ciphered +ciphering +ciphers +circa +circadian +circle +circle's +circled +circles +circlet +circlet's +circlets +circling +circuit +circuit's +circuited +circuiting +circuitous +circuitously +circuitry +circuitry's +circuits +circular +circular's +circularity +circularity's +circularize +circularized +circularizes +circularizing +circulars +circulate +circulated +circulates +circulating +circulation +circulation's +circulations +circulatory +circumcise +circumcised +circumcises +circumcising +circumcision +circumcision's +circumcisions +circumference +circumference's +circumferences +circumflex +circumflex's +circumflexes +circumlocution +circumlocution's +circumlocutions +circumnavigate +circumnavigated +circumnavigates +circumnavigating +circumnavigation +circumnavigation's +circumnavigations +circumscribe +circumscribed +circumscribes +circumscribing +circumscription +circumscription's +circumscriptions +circumspect +circumspection +circumspection's +circumstance +circumstance's +circumstanced +circumstances +circumstancing +circumstantial +circumstantially +circumvent +circumvented +circumventing +circumvention +circumvention's +circumvents +circus +circus's +circuses +cirrhosis +cirrhosis's +cirrus +cirrus's +cistern +cistern's +cisterns +citadel +citadel's +citadels +citation +citation's +citations +cite +cite's +cited +cites +cities +citing +citizen +citizen's +citizenry +citizenry's +citizens +citizenship +citizenship's +citric +citron +citron's +citronella +citronella's +citrons +citrous +citrus +citrus's +citruses +city +city's +civet +civet's +civets +civic +civics +civics's +civies +civil +civilian +civilian's +civilians +civilities +civility +civility's +civilization +civilization's +civilizations +civilize +civilized +civilizes +civilizing +civilly +civvies +civvies's +clack +clack's +clacked +clacking +clacks +clad +claim +claim's +claimant +claimant's +claimants +claimed +claiming +claims +clairvoyance +clairvoyance's +clairvoyant +clairvoyant's +clairvoyants +clam +clam's +clambake +clambake's +clambakes +clamber +clamber's +clambered +clambering +clambers +clammed +clammier +clammiest +clamminess +clamminess's +clamming +clammy +clamor +clamor's +clamored +clamoring +clamorous +clamors +clamp +clamp's +clampdown +clampdown's +clampdowns +clamped +clamping +clamps +clams +clan +clan's +clandestine +clandestinely +clang +clang's +clanged +clanging +clangor +clangor's +clangs +clank +clank's +clanked +clanking +clanks +clannish +clans +clap +clap's +clapboard +clapboard's +clapboarded +clapboarding +clapboards +clapped +clapper +clapper's +clappers +clapping +claps +claptrap +claptrap's +claret +claret's +clarets +clarification +clarification's +clarifications +clarified +clarifies +clarify +clarifying +clarinet +clarinet's +clarinetist +clarinetist's +clarinetists +clarinets +clarinettist +clarinettist's +clarinettists +clarion +clarion's +clarioned +clarioning +clarions +clarity +clarity's +clash +clash's +clashed +clashes +clashing +clasp +clasp's +clasped +clasping +clasps +class +class's +classed +classes +classic +classic's +classical +classical's +classically +classicism +classicism's +classicist +classicist's +classicists +classics +classier +classiest +classifiable +classification +classification's +classifications +classified +classified's +classifieds +classifies +classify +classifying +classiness +classiness's +classing +classless +classmate +classmate's +classmates +classroom +classroom's +classrooms +classy +clatter +clatter's +clattered +clattering +clatters +clause +clause's +clauses +claustrophobia +claustrophobia's +claustrophobic +clavichord +clavichord's +clavichords +clavicle +clavicle's +clavicles +claw +claw's +clawed +clawing +claws +clay +clay's +clayey +clayier +clayiest +clean +cleaned +cleaner +cleaner's +cleaners +cleanest +cleaning +cleaning's +cleanings +cleanlier +cleanliest +cleanliness +cleanliness's +cleanly +cleanness +cleanness's +cleans +cleanse +cleansed +cleanser +cleanser's +cleansers +cleanses +cleansing +cleanup +cleanup's +cleanups +clear +clear's +clearance +clearance's +clearances +cleared +clearer +clearest +clearing +clearing's +clearinghouse +clearinghouse's +clearinghouses +clearings +clearly +clearness +clearness's +clears +cleat +cleat's +cleats +cleavage +cleavage's +cleavages +cleave +cleaved +cleaver +cleaver's +cleavers +cleaves +cleaving +clef +clef's +clefs +cleft +cleft's +clefts +clematis +clematis's +clematises +clemency +clemency's +clement +clench +clench's +clenched +clenches +clenching +clerestories +clerestory +clerestory's +clergies +clergy +clergy's +clergyman +clergyman's +clergymen +clergywoman +clergywoman's +clergywomen +cleric +cleric's +clerical +clerics +clerk +clerk's +clerked +clerking +clerks +clever +cleverer +cleverest +cleverly +cleverness +cleverness's +clew +clew's +clewed +clewing +clews +cliché +cliché's +clichéd +clichés +click +click's +clicked +clicking +clicks +client +client's +clients +clientèle +clientèle's +clientèles +cliff +cliff's +cliffhanger +cliffhanger's +cliffhangers +cliffs +climactic +climate +climate's +climates +climatic +climax +climax's +climaxed +climaxes +climaxing +climb +climb's +climbed +climber +climber's +climbers +climbing +climbs +clime +clime's +climes +clinch +clinch's +clinched +clincher +clincher's +clinchers +clinches +clinching +cling +cling's +clingier +clingiest +clinging +clings +clingy +clinic +clinic's +clinical +clinically +clinician +clinician's +clinicians +clinics +clink +clink's +clinked +clinker +clinker's +clinkers +clinking +clinks +clip +clip's +clipboard +clipboard's +clipboards +clipped +clipper +clipper's +clippers +clipping +clipping's +clippings +clips +clipt +clique +clique's +cliques +cliquish +clitoral +clitoris +clitoris's +clitorises +cloak +cloak's +cloaked +cloaking +cloakroom +cloakroom's +cloakrooms +cloaks +clobber +clobber's +clobbered +clobbering +clobbers +cloche +cloche's +cloches +clock +clock's +clocked +clocking +clocks +clockwise +clockwork +clockwork's +clockworks +clod +clod's +clodhopper +clodhopper's +clodhoppers +clods +clog +clog's +clogged +clogging +clogs +cloister +cloister's +cloistered +cloistering +cloisters +clomp +clomped +clomping +clomps +clone +clone's +cloned +clones +cloning +clop +clop's +clopped +clopping +clops +close +close's +closed +closefisted +closely +closemouthed +closeness +closeness's +closeout +closeout's +closeouts +closer +closes +closest +closet +closet's +closeted +closeting +closets +closing +closure +closure's +closures +clot +clot's +cloth +cloth's +clothe +clothed +clothes +clothesline +clothesline's +clotheslines +clothespin +clothespin's +clothespins +clothier +clothier's +clothiers +clothing +clothing's +cloths +clots +clotted +clotting +cloture +cloture's +clotures +cloud +cloud's +cloudburst +cloudburst's +cloudbursts +clouded +cloudier +cloudiest +cloudiness +cloudiness's +clouding +cloudless +clouds +cloudy +clout +clout's +clouted +clouting +clouts +clove +clove's +cloven +clover +clover's +cloverleaf +cloverleaf's +cloverleafs +cloverleaves +clovers +cloves +clown +clown's +clowned +clowning +clownish +clownishly +clownishness +clownishness's +clowns +cloy +cloyed +cloying +cloys +club +club's +clubbed +clubbing +clubfeet +clubfoot +clubfoot's +clubhouse +clubhouse's +clubhouses +clubs +cluck +cluck's +clucked +clucking +clucks +clue +clue's +clued +clueing +clueless +clues +cluing +clump +clump's +clumped +clumping +clumps +clumsier +clumsiest +clumsily +clumsiness +clumsiness's +clumsy +clung +clunk +clunk's +clunked +clunker +clunker's +clunkers +clunkier +clunkiest +clunking +clunks +clunky +cluster +cluster's +clustered +clustering +clusters +clutch +clutch's +clutched +clutches +clutching +clutter +clutter's +cluttered +cluttering +clutters +coach +coach's +coached +coaches +coaching +coachman +coachman's +coachmen +coagulant +coagulant's +coagulants +coagulate +coagulated +coagulates +coagulating +coagulation +coagulation's +coal +coal's +coaled +coalesce +coalesced +coalescence +coalescence's +coalesces +coalescing +coaling +coalition +coalition's +coalitions +coals +coarse +coarsely +coarsen +coarsened +coarseness +coarseness's +coarsening +coarsens +coarser +coarsest +coast +coast's +coastal +coasted +coaster +coaster's +coasters +coasting +coastline +coastline's +coastlines +coasts +coat +coat's +coated +coating +coating's +coatings +coats +coauthor +coauthor's +coauthored +coauthoring +coauthors +coax +coaxed +coaxes +coaxing +cob +cob's +cobalt +cobalt's +cobble +cobble's +cobbled +cobbler +cobbler's +cobblers +cobbles +cobblestone +cobblestone's +cobblestones +cobbling +cobra +cobra's +cobras +cobs +cobweb +cobweb's +cobwebs +cocaine +cocaine's +cocci +coccis +coccus +coccus's +coccyges +coccyx +coccyx's +coccyxes +cochlea +cochlea's +cochleae +cochleas +cock +cock's +cockade +cockade's +cockades +cockamamie +cockatoo +cockatoo's +cockatoos +cocked +cockerel +cockerel's +cockerels +cockeyed +cockfight +cockfight's +cockfights +cockier +cockiest +cockily +cockiness +cockiness's +cocking +cockle +cockle's +cockles +cockleshell +cockleshell's +cockleshells +cockney +cockney's +cockneys +cockpit +cockpit's +cockpits +cockroach +cockroach's +cockroaches +cocks +cockscomb +cockscomb's +cockscombs +cocksucker +cocksucker's +cocksuckers +cocksure +cocktail +cocktail's +cocktails +cocky +cocoa +cocoa's +cocoanut +cocoanut's +cocoanuts +cocoas +coconut +coconut's +coconuts +cocoon +cocoon's +cocooned +cocooning +cocoons +cod +cod's +coda +coda's +codas +codded +codding +coddle +coddled +coddles +coddling +code +code's +coded +codeine +codeine's +codependency +codependency's +codependent +codependent's +codependents +codes +codex +codex's +codfish +codfish's +codfishes +codger +codger's +codgers +codices +codicil +codicil's +codicils +codification +codification's +codifications +codified +codifies +codify +codifying +coding +cods +coed +coed's +coeds +coeducation +coeducation's +coeducational +coefficient +coefficient's +coefficients +coequal +coequal's +coequals +coerce +coerced +coerces +coercing +coercion +coercion's +coercive +coeval +coeval's +coevals +coexist +coexisted +coexistence +coexistence's +coexisting +coexists +coffee +coffee's +coffeecake +coffeecake's +coffeecakes +coffeehouse +coffeehouse's +coffeehouses +coffeepot +coffeepot's +coffeepots +coffees +coffer +coffer's +coffers +coffin +coffin's +coffined +coffining +coffins +cog +cog's +cogency +cogency's +cogent +cogently +cogitate +cogitated +cogitates +cogitating +cogitation +cogitation's +cognac +cognac's +cognacs +cognate +cognate's +cognates +cognition +cognition's +cognitive +cognizance +cognizance's +cognizant +cognomen +cognomen's +cognomens +cognomina +cogs +cogwheel +cogwheel's +cogwheels +cohabit +cohabitation +cohabitation's +cohabited +cohabiting +cohabits +cohere +cohered +coherence +coherence's +coherent +coherently +coheres +cohering +cohesion +cohesion's +cohesive +cohesively +cohesiveness +cohesiveness's +cohort +cohort's +cohorts +coif +coif's +coifed +coiffed +coiffing +coiffure +coiffure's +coiffured +coiffures +coiffuring +coifing +coifs +coil +coil's +coiled +coiling +coils +coin +coin's +coinage +coinage's +coinages +coincide +coincided +coincidence +coincidence's +coincidences +coincident +coincidental +coincidentally +coincides +coinciding +coined +coining +coins +coital +coitus +coitus's +coke +coke's +coked +cokes +coking +cola +cola's +colander +colander's +colanders +colas +cold +cold's +colder +coldest +coldly +coldness +coldness's +colds +coleslaw +coleslaw's +colic +colic's +colicky +coliseum +coliseum's +coliseums +colitis +colitis's +collaborate +collaborated +collaborates +collaborating +collaboration +collaboration's +collaborations +collaborative +collaborator +collaborator's +collaborators +collage +collage's +collages +collapse +collapse's +collapsed +collapses +collapsible +collapsing +collar +collar's +collarbone +collarbone's +collarbones +collared +collaring +collars +collate +collated +collateral +collateral's +collates +collating +collation +collation's +collations +colleague +colleague's +colleagues +collect +collect's +collectable +collectable's +collectables +collected +collectible +collectible's +collectibles +collecting +collection +collection's +collections +collective +collective's +collectively +collectives +collectivism +collectivism's +collectivist +collectivist's +collectivists +collectivize +collectivized +collectivizes +collectivizing +collector +collector's +collectors +collects +colleen +colleen's +colleens +college +college's +colleges +collegian +collegian's +collegians +collegiate +collide +collided +collides +colliding +collie +collie's +collier +collier's +collieries +colliers +colliery +colliery's +collies +collision +collision's +collisions +collocate +collocate's +collocated +collocates +collocating +collocation +collocation's +collocations +colloid +colloid's +colloids +colloquia +colloquial +colloquialism +colloquialism's +colloquialisms +colloquially +colloquies +colloquium +colloquium's +colloquiums +colloquy +colloquy's +collude +colluded +colludes +colluding +collusion +collusion's +collusive +cologne +cologne's +colognes +colon +colon's +colonel +colonel's +colonels +colones +colonial +colonial's +colonialism +colonialism's +colonialist +colonialist's +colonialists +colonials +colonies +colonist +colonist's +colonists +colonization +colonization's +colonize +colonized +colonizer +colonizer's +colonizers +colonizes +colonizing +colonnade +colonnade's +colonnades +colons +colony +colony's +color +color's +coloration +coloration's +coloratura +coloratura's +coloraturas +colorblind +colored +colored's +coloreds +colorfast +colorful +colorfully +coloring +coloring's +colorless +colors +colossal +colossally +colossi +colossus +colossus's +colossuses +cols +colt +colt's +coltish +colts +columbine +columbine's +columbines +column +column's +columned +columnist +columnist's +columnists +columns +coma +coma's +comas +comatose +comb +comb's +combat +combat's +combatant +combatant's +combatants +combated +combating +combative +combats +combatted +combatting +combed +combination +combination's +combinations +combine +combine's +combined +combines +combing +combining +combo +combo's +combos +combs +combustibility +combustibility's +combustible +combustible's +combustibles +combustion +combustion's +come +come's +comeback +comeback's +comebacks +comedian +comedian's +comedians +comedic +comedienne +comedienne's +comediennes +comedies +comedown +comedown's +comedowns +comedy +comedy's +comelier +comeliest +comeliness +comeliness's +comely +comer +comer's +comers +comes +comestible +comestible's +comestibles +comet +comet's +comets +comeuppance +comeuppance's +comeuppances +comfier +comfiest +comfort +comfort's +comfortable +comfortably +comforted +comforter +comforter's +comforters +comforting +comfortingly +comforts +comfy +comic +comic's +comical +comically +comics +coming +coming's +comings +comity +comity's +comma +comma's +command +command's +commandant +commandant's +commandants +commanded +commandeer +commandeered +commandeering +commandeers +commander +commander's +commanders +commanding +commandment +commandment's +commandments +commando +commando's +commandoes +commandos +commands +commas +commemorate +commemorated +commemorates +commemorating +commemoration +commemoration's +commemorations +commemorative +commence +commenced +commencement +commencement's +commencements +commences +commencing +commend +commendable +commendably +commendation +commendation's +commendations +commended +commending +commends +commensurable +commensurate +comment +comment's +commentaries +commentary +commentary's +commentate +commentated +commentates +commentating +commentator +commentator's +commentators +commented +commenting +comments +commerce +commerce's +commercial +commercial's +commercialism +commercialism's +commercialization +commercialization's +commercialize +commercialized +commercializes +commercializing +commercially +commercials +commingle +commingled +commingles +commingling +commiserate +commiserated +commiserates +commiserating +commiseration +commiseration's +commiserations +commissar +commissar's +commissariat +commissariat's +commissariats +commissaries +commissars +commissary +commissary's +commission +commission's +commissioned +commissioner +commissioner's +commissioners +commissioning +commissions +commit +commitment +commitment's +commitments +commits +committal +committal's +committals +committed +committee +committee's +committees +committing +commode +commode's +commodes +commodious +commodities +commodity +commodity's +commodore +commodore's +commodores +common +common's +commoner +commoner's +commoners +commonest +commonly +commonplace +commonplace's +commonplaces +commons +commonwealth +commonwealth's +commonwealths +commotion +commotion's +commotions +communal +communally +commune +commune's +communed +communes +communicable +communicant +communicant's +communicants +communicate +communicated +communicates +communicating +communication +communication's +communications +communicative +communicator +communicator's +communicators +communing +communion +communion's +communions +communique +communique's +communiques +communism +communism's +communist +communist's +communistic +communists +communities +community +community's +commutation +commutation's +commutations +commutative +commute +commute's +commuted +commuter +commuter's +commuters +commutes +commuting +compact +compact's +compacted +compacter +compactest +compacting +compaction +compactly +compactness +compactness's +compactor +compactor's +compactors +compacts +companies +companion +companion's +companionable +companions +companionship +companionship's +companionway +companionway's +companionways +company +company's +comparability +comparability's +comparable +comparably +comparative +comparative's +comparatively +comparatives +compare +compare's +compared +compares +comparing +comparison +comparison's +comparisons +compartment +compartment's +compartmentalize +compartmentalized +compartmentalizes +compartmentalizing +compartments +compass +compass's +compassed +compasses +compassing +compassion +compassion's +compassionate +compassionately +compatibility +compatibility's +compatible +compatible's +compatibles +compatibly +compatriot +compatriot's +compatriots +compel +compelled +compelling +compellingly +compels +compendia +compendium +compendium's +compendiums +compensate +compensated +compensates +compensating +compensation +compensation's +compensations +compensatory +compete +competed +competence +competence's +competences +competencies +competency +competency's +competent +competently +competes +competing +competition +competition's +competitions +competitive +competitively +competitiveness +competitiveness's +competitor +competitor's +competitors +compilation +compilation's +compilations +compile +compiled +compiler +compiler's +compilers +compiles +compiling +complacence +complacence's +complacency +complacency's +complacent +complacently +complain +complainant +complainant's +complainants +complained +complainer +complainer's +complainers +complaining +complains +complaint +complaint's +complaints +complaisance +complaisance's +complaisant +complaisantly +complected +complement +complement's +complementary +complemented +complementing +complements +complete +completed +completely +completeness +completeness's +completer +completes +completest +completing +completion +completion's +complex +complex's +complexes +complexion +complexion's +complexioned +complexions +complexities +complexity +complexity's +compliance +compliance's +compliant +complicate +complicated +complicates +complicating +complication +complication's +complications +complicity +complicity's +complied +complies +compliment +compliment's +complimentary +complimented +complimenting +compliments +comply +complying +component +component's +components +comport +comported +comporting +comportment +comportment's +comports +compose +composed +composer +composer's +composers +composes +composing +composite +composite's +composites +composition +composition's +compositions +compositor +compositor's +compositors +compost +compost's +composted +composting +composts +composure +composure's +compote +compote's +compotes +compound +compound's +compounded +compounding +compounds +comprehend +comprehended +comprehending +comprehends +comprehensibility +comprehensibility's +comprehensible +comprehension +comprehension's +comprehensions +comprehensive +comprehensive's +comprehensively +comprehensiveness +comprehensiveness's +comprehensives +compress +compress's +compressed +compresses +compressing +compression +compression's +compressor +compressor's +compressors +comprise +comprised +comprises +comprising +compromise +compromise's +compromised +compromises +compromising +comptroller +comptroller's +comptrollers +compulsion +compulsion's +compulsions +compulsive +compulsively +compulsiveness +compulsiveness's +compulsories +compulsorily +compulsory +compulsory's +compunction +compunction's +compunctions +computation +computation's +computational +computationally +computations +compute +computed +computer +computer's +computerization +computerization's +computerize +computerized +computerizes +computerizing +computers +computes +computing +computing's +comrade +comrade's +comrades +comradeship +comradeship's +con +con's +concatenate +concatenated +concatenates +concatenating +concatenation +concatenation's +concatenations +concave +concavities +concavity +concavity's +conceal +concealed +concealing +concealment +concealment's +conceals +concede +conceded +concedes +conceding +conceit +conceit's +conceited +conceits +conceivable +conceivably +conceive +conceived +conceives +conceiving +concentrate +concentrate's +concentrated +concentrates +concentrating +concentration +concentration's +concentrations +concentric +concentrically +concept +concept's +conception +conception's +conceptions +concepts +conceptual +conceptualization +conceptualization's +conceptualizations +conceptualize +conceptualized +conceptualizes +conceptualizing +conceptually +concern +concern's +concerned +concerning +concerns +concert +concert's +concerted +concerti +concertina +concertina's +concertinaed +concertinaing +concertinas +concerting +concertmaster +concertmaster's +concertmasters +concerto +concerto's +concertos +concerts +concession +concession's +concessionaire +concessionaire's +concessionaires +concessions +conch +conch's +conches +conchs +concierge +concierge's +concierges +conciliate +conciliated +conciliates +conciliating +conciliation +conciliation's +conciliator +conciliator's +conciliators +conciliatory +concise +concisely +conciseness +conciseness's +conciser +concisest +conclave +conclave's +conclaves +conclude +concluded +concludes +concluding +conclusion +conclusion's +conclusions +conclusive +conclusively +concoct +concocted +concocting +concoction +concoction's +concoctions +concocts +concomitant +concomitant's +concomitants +concord +concord's +concordance +concordance's +concordances +concordant +concourse +concourse's +concourses +concrete +concrete's +concreted +concretely +concretes +concreting +concubine +concubine's +concubines +concur +concurred +concurrence +concurrence's +concurrences +concurrency +concurrent +concurrently +concurring +concurs +concussion +concussion's +concussions +condemn +condemnation +condemnation's +condemnations +condemnatory +condemned +condemning +condemns +condensation +condensation's +condensations +condense +condensed +condenser +condenser's +condensers +condenses +condensing +condescend +condescended +condescending +condescendingly +condescends +condescension +condescension's +condiment +condiment's +condiments +condition +condition's +conditional +conditional's +conditionally +conditionals +conditioned +conditioner +conditioner's +conditioners +conditioning +conditions +condo +condo's +condoes +condole +condoled +condolence +condolence's +condolences +condoles +condoling +condom +condom's +condominium +condominium's +condominiums +condoms +condone +condoned +condones +condoning +condor +condor's +condors +condos +conduce +conduced +conduces +conducing +conducive +conduct +conduct's +conducted +conducting +conduction +conduction's +conductive +conductivity +conductivity's +conductor +conductor's +conductors +conducts +conduit +conduit's +conduits +cone +cone's +cones +confab +confab's +confabbed +confabbing +confabs +confection +confection's +confectioner +confectioner's +confectioneries +confectioners +confectionery +confectionery's +confections +confederacies +confederacy +confederacy's +confederate +confederate's +confederated +confederates +confederating +confederation +confederation's +confederations +confer +conference +conference's +conferences +conferencing +conferment +conferment's +conferments +conferred +conferrer +conferring +confers +confess +confessed +confessedly +confesses +confessing +confession +confession's +confessional +confessional's +confessionals +confessions +confessor +confessor's +confessors +confetti +confetti's +confidant +confidant's +confidante +confidante's +confidantes +confidants +confide +confided +confidence +confidence's +confidences +confident +confidential +confidentiality +confidentiality's +confidentially +confidently +confides +confiding +configurable +configuration +configuration's +configurations +configure +configured +configures +configuring +confine +confine's +confined +confinement +confinement's +confinements +confines +confining +confirm +confirmation +confirmation's +confirmations +confirmatory +confirmed +confirming +confirms +confiscate +confiscated +confiscates +confiscating +confiscation +confiscation's +confiscations +conflagration +conflagration's +conflagrations +conflict +conflict's +conflicted +conflicting +conflicts +confluence +confluence's +confluences +confluent +conform +conformance +conformation +conformation's +conformations +conformed +conforming +conformist +conformist's +conformists +conformity +conformity's +conforms +confound +confounded +confounding +confounds +confront +confrontation +confrontation's +confrontational +confrontations +confronted +confronting +confronts +confrère +confrère's +confrères +confuse +confused +confusedly +confuses +confusing +confusingly +confusion +confusion's +confusions +confute +confuted +confutes +confuting +conga +conga's +congaed +congaing +congas +congeal +congealed +congealing +congeals +congenial +congeniality +congeniality's +congenially +congenital +congenitally +congest +congested +congesting +congestion +congestion's +congestive +congests +conglomerate +conglomerate's +conglomerated +conglomerates +conglomerating +conglomeration +conglomeration's +conglomerations +congratulate +congratulated +congratulates +congratulating +congratulation +congratulation's +congratulations +congratulatory +congregate +congregated +congregates +congregating +congregation +congregation's +congregational +congregations +congress +congress's +congresses +congressional +congressman +congressman's +congressmen +congresswoman +congresswoman's +congresswomen +congruence +congruence's +congruent +congruities +congruity +congruity's +congruous +conic +conic's +conical +conics +conifer +conifer's +coniferous +conifers +conjectural +conjecture +conjecture's +conjectured +conjectures +conjecturing +conjoin +conjoined +conjoining +conjoins +conjoint +conjugal +conjugate +conjugated +conjugates +conjugating +conjugation +conjugation's +conjugations +conjunction +conjunction's +conjunctions +conjunctive +conjunctive's +conjunctives +conjunctivitis +conjunctivitis's +conjuncture +conjuncture's +conjunctures +conjure +conjured +conjurer +conjurer's +conjurers +conjures +conjuring +conjuror +conjuror's +conjurors +conk +conk's +conked +conking +conks +connect +connected +connecter +connecter's +connecters +connecting +connection +connection's +connections +connective +connective's +connectives +connectivity +connector +connector's +connectors +connects +conned +conning +connivance +connivance's +connive +connived +conniver +conniver's +connivers +connives +conniving +connoisseur +connoisseur's +connoisseurs +connotation +connotation's +connotations +connotative +connote +connoted +connotes +connoting +connubial +conquer +conquered +conquering +conqueror +conqueror's +conquerors +conquers +conquest +conquest's +conquests +conquistador +conquistador's +conquistadores +conquistadors +cons +consanguinity +consanguinity's +conscience +conscience's +consciences +conscientious +conscientiously +conscientiousness +conscientiousness's +conscious +consciously +consciousness +consciousness's +consciousnesses +conscript +conscript's +conscripted +conscripting +conscription +conscription's +conscripts +consecrate +consecrated +consecrates +consecrating +consecration +consecration's +consecrations +consecutive +consecutively +consensual +consensus +consensus's +consensuses +consent +consent's +consented +consenting +consents +consequence +consequence's +consequences +consequent +consequential +consequently +conservation +conservation's +conservationist +conservationist's +conservationists +conservatism +conservatism's +conservative +conservative's +conservatively +conservatives +conservator +conservator's +conservatories +conservators +conservatory +conservatory's +conserve +conserve's +conserved +conserves +conserving +consider +considerable +considerably +considerate +considerately +consideration +consideration's +considerations +considered +considering +considers +consign +consigned +consigning +consignment +consignment's +consignments +consigns +consist +consisted +consistencies +consistency +consistency's +consistent +consistently +consisting +consists +consolation +consolation's +consolations +console +console's +consoled +consoles +consolidate +consolidated +consolidates +consolidating +consolidation +consolidation's +consolidations +consoling +consommé +consommé's +consonance +consonance's +consonances +consonant +consonant's +consonants +consort +consort's +consorted +consortia +consorting +consortium +consortium's +consortiums +consorts +conspicuous +conspicuously +conspiracies +conspiracy +conspiracy's +conspirator +conspirator's +conspiratorial +conspirators +conspire +conspired +conspires +conspiring +constable +constable's +constables +constabularies +constabulary +constabulary's +constancy +constancy's +constant +constant's +constantly +constants +constellation +constellation's +constellations +consternation +consternation's +constipate +constipated +constipates +constipating +constipation +constipation's +constituencies +constituency +constituency's +constituent +constituent's +constituents +constitute +constituted +constitutes +constituting +constitution +constitution's +constitutional +constitutional's +constitutionality +constitutionality's +constitutionally +constitutionals +constitutions +constrain +constrained +constraining +constrains +constraint +constraint's +constraints +constrict +constricted +constricting +constriction +constriction's +constrictions +constrictive +constrictor +constrictor's +constrictors +constricts +construct +construct's +constructed +constructing +construction +construction's +constructions +constructive +constructively +constructor +constructor's +constructors +constructs +construe +construed +construes +construing +consul +consul's +consular +consulate +consulate's +consulates +consuls +consult +consultancies +consultancy +consultancy's +consultant +consultant's +consultants +consultation +consultation's +consultations +consultative +consulted +consulting +consults +consumable +consumable's +consumables +consume +consumed +consumer +consumer's +consumerism +consumerism's +consumers +consumes +consuming +consummate +consummated +consummates +consummating +consummation +consummation's +consummations +consumption +consumption's +consumptive +consumptive's +consumptives +contact +contact's +contactable +contacted +contacting +contacts +contagion +contagion's +contagions +contagious +contain +contained +container +container's +containers +containing +containment +containment's +contains +contaminant +contaminant's +contaminants +contaminate +contaminated +contaminates +contaminating +contamination +contamination's +contemplate +contemplated +contemplates +contemplating +contemplation +contemplation's +contemplative +contemplative's +contemplatives +contemporaneous +contemporaneously +contemporaries +contemporary +contemporary's +contempt +contempt's +contemptible +contemptibly +contemptuous +contemptuously +contend +contended +contender +contender's +contenders +contending +contends +content +content's +contented +contentedly +contentedness +contentedness's +contenting +contention +contention's +contentions +contentious +contentiously +contentment +contentment's +contents +contest +contest's +contestant +contestant's +contestants +contested +contesting +contests +context +context's +contexts +contextual +contiguity +contiguity's +contiguous +continence +continence's +continent +continent's +continental +continental's +continentals +continents +contingencies +contingency +contingency's +contingent +contingent's +contingents +continua +continual +continually +continuance +continuance's +continuances +continuation +continuation's +continuations +continue +continued +continues +continuing +continuity +continuity's +continuous +continuously +continuum +continuum's +continuums +contort +contorted +contorting +contortion +contortion's +contortionist +contortionist's +contortionists +contortions +contorts +contour +contour's +contoured +contouring +contours +contraband +contraband's +contraception +contraception's +contraceptive +contraceptive's +contraceptives +contract +contract's +contracted +contractile +contracting +contraction +contraction's +contractions +contractor +contractor's +contractors +contracts +contractual +contractually +contradict +contradicted +contradicting +contradiction +contradiction's +contradictions +contradictory +contradicts +contradistinction +contradistinction's +contradistinctions +contrail +contrail's +contrails +contralto +contralto's +contraltos +contraption +contraption's +contraptions +contrapuntal +contraries +contrarily +contrariness +contrariness's +contrariwise +contrary +contrary's +contrast +contrast's +contrasted +contrasting +contrasts +contravene +contravened +contravenes +contravening +contravention +contravention's +contraventions +contretemps +contretemps's +contribute +contributed +contributes +contributing +contribution +contribution's +contributions +contributor +contributor's +contributors +contributory +contrite +contritely +contrition +contrition's +contrivance +contrivance's +contrivances +contrive +contrived +contrives +contriving +control +control's +controllable +controlled +controller +controller's +controllers +controlling +controls +controversial +controversially +controversies +controversy +controversy's +controvert +controverted +controverting +controverts +contumacious +contumelies +contumely +contumely's +contuse +contused +contuses +contusing +contusion +contusion's +contusions +conundrum +conundrum's +conundrums +conurbation +conurbation's +conurbations +convalesce +convalesced +convalescence +convalescence's +convalescences +convalescent +convalescent's +convalescents +convalesces +convalescing +convection +convection's +convene +convened +convenes +convenience +convenience's +conveniences +convenient +conveniently +convening +convent +convent's +convention +convention's +conventional +conventionality +conventionality's +conventionally +conventions +convents +converge +converged +convergence +convergence's +convergences +convergent +converges +converging +conversant +conversation +conversation's +conversational +conversationalist +conversationalist's +conversationalists +conversationally +conversations +converse +converse's +conversed +conversely +converses +conversing +conversion +conversion's +conversions +convert +convert's +converted +converter +converter's +converters +convertible +convertible's +convertibles +converting +convertor +convertor's +convertors +converts +convex +convexity +convexity's +convey +conveyance +conveyance's +conveyances +conveyed +conveyer +conveyer's +conveyers +conveying +conveyor +conveyor's +conveyors +conveys +convict +convict's +convicted +convicting +conviction +conviction's +convictions +convicts +convince +convinced +convinces +convincing +convincingly +convivial +conviviality +conviviality's +convocation +convocation's +convocations +convoke +convoked +convokes +convoking +convoluted +convolution +convolution's +convolutions +convoy +convoy's +convoyed +convoying +convoys +convulse +convulsed +convulses +convulsing +convulsion +convulsion's +convulsions +convulsive +convulsively +coo +coo's +cooed +cooing +cook +cook's +cookbook +cookbook's +cookbooks +cooked +cooker +cooker's +cookeries +cookers +cookery +cookery's +cookie +cookie's +cookies +cooking +cooking's +cookout +cookout's +cookouts +cooks +cooky +cooky's +cool +cool's +coolant +coolant's +coolants +cooled +cooler +cooler's +coolers +coolest +coolie +coolie's +coolies +cooling +coolly +coolness +coolness's +cools +coon +coon's +coons +coop +coop's +cooped +cooper +cooper's +cooperate +cooperated +cooperates +cooperating +cooperation +cooperation's +cooperative +cooperative's +cooperatively +cooperatives +coopered +coopering +coopers +cooping +coops +coordinate +coordinate's +coordinated +coordinates +coordinating +coordination +coordination's +coordinator +coordinator's +coordinators +coos +coot +coot's +cootie +cootie's +cooties +coots +cop +cop's +cope +cope's +copeck +copeck's +copecks +coped +copes +copied +copier +copier's +copiers +copies +copilot +copilot's +copilots +coping +coping's +copings +copious +copiously +copped +copper +copper's +copperhead +copperhead's +copperheads +coppers +coppery +coppice +coppice's +coppices +copping +copra +copra's +cops +copse +copse's +copses +copter +copter's +copters +copula +copula's +copulae +copulas +copulate +copulated +copulates +copulating +copulation +copulation's +copy +copy's +copycat +copycat's +copycats +copycatted +copycatting +copying +copyright +copyright's +copyrighted +copyrighting +copyrights +copywriter +copywriter's +copywriters +coquette +coquette's +coquetted +coquettes +coquetting +coquettish +coral +coral's +corals +cord +cord's +corded +cordial +cordial's +cordiality +cordiality's +cordially +cordials +cording +cordite +cordite's +cordless +cordon +cordon's +cordoned +cordoning +cordons +cords +corduroy +corduroy's +corduroys +corduroys's +core +core's +cored +cores +corespondent +corespondent's +corespondents +coriander +coriander's +coring +cork +cork's +corked +corking +corks +corkscrew +corkscrew's +corkscrewed +corkscrewing +corkscrews +corm +corm's +cormorant +cormorant's +cormorants +corms +corn +corn's +cornball +cornball's +cornballs +cornbread +cornbread's +corncob +corncob's +corncobs +cornea +cornea's +corneal +corneas +corned +corner +corner's +cornered +cornering +corners +cornerstone +cornerstone's +cornerstones +cornet +cornet's +cornets +cornflakes +cornflakes's +cornflower +cornflower's +cornflowers +cornice +cornice's +cornices +cornier +corniest +corning +cornmeal +cornmeal's +cornrow +cornrow's +cornrowed +cornrowing +cornrows +corns +cornstalk +cornstalk's +cornstalks +cornstarch +cornstarch's +cornucopia +cornucopia's +cornucopias +corny +corolla +corolla's +corollaries +corollary +corollary's +corollas +corona +corona's +coronae +coronaries +coronary +coronary's +coronas +coronation +coronation's +coronations +coroner +coroner's +coroners +coronet +coronet's +coronets +corpora +corporal +corporal's +corporals +corporate +corporation +corporation's +corporations +corporeal +corps +corps's +corpse +corpse's +corpses +corpulence +corpulence's +corpulent +corpus +corpus's +corpuscle +corpuscle's +corpuscles +corpuses +corral +corral's +corralled +corralling +corrals +correct +correctable +corrected +correcter +correctest +correcting +correction +correction's +correctional +corrections +corrective +corrective's +correctives +correctly +correctness +correctness's +corrector +corrects +correlate +correlate's +correlated +correlates +correlating +correlation +correlation's +correlations +correlative +correlative's +correlatives +correspond +corresponded +correspondence +correspondence's +correspondences +correspondent +correspondent's +correspondents +corresponding +correspondingly +corresponds +corridor +corridor's +corridors +corroborate +corroborated +corroborates +corroborating +corroboration +corroboration's +corroborations +corroborative +corrode +corroded +corrodes +corroding +corrosion +corrosion's +corrosive +corrosive's +corrosives +corrugate +corrugated +corrugates +corrugating +corrugation +corrugation's +corrugations +corrupt +corrupted +corrupter +corruptest +corruptible +corrupting +corruption +corruption's +corruptions +corruptly +corruptness +corruptness's +corrupts +corsage +corsage's +corsages +corsair +corsair's +corsairs +corset +corset's +corseted +corseting +corsets +cortex +cortex's +cortexes +cortical +cortices +cortisone +cortisone's +cortège +cortège's +cortèges +coruscate +coruscated +coruscates +coruscating +cosier +cosies +cosiest +cosign +cosignatories +cosignatory +cosignatory's +cosigned +cosigner +cosigner's +cosigners +cosigning +cosigns +cosine +cosmetic +cosmetic's +cosmetically +cosmetics +cosmetologist +cosmetologist's +cosmetologists +cosmetology +cosmetology's +cosmic +cosmically +cosmogonies +cosmogony +cosmogony's +cosmological +cosmologies +cosmologist +cosmologist's +cosmologists +cosmology +cosmology's +cosmonaut +cosmonaut's +cosmonauts +cosmopolitan +cosmopolitan's +cosmopolitans +cosmos +cosmos's +cosmoses +cosponsor +cosponsor's +cosponsored +cosponsoring +cosponsors +cost +cost's +costar +costar's +costarred +costarring +costars +costed +costing +costings +costlier +costliest +costliness +costliness's +costly +costs +costume +costume's +costumed +costumes +costuming +cosy +cosy's +cot +cot's +cote +cote's +coterie +coterie's +coteries +cotes +cotillion +cotillion's +cotillions +cots +cottage +cottage's +cottages +cotter +cotter's +cotters +cotton +cotton's +cottoned +cottoning +cottonmouth +cottonmouth's +cottonmouths +cottons +cottonseed +cottonseed's +cottonseeds +cottontail +cottontail's +cottontails +cottonwood +cottonwood's +cottonwoods +cotyledon +cotyledon's +cotyledons +couch +couch's +couched +couches +couching +cougar +cougar's +cougars +cough +cough's +coughed +coughing +coughs +could +couldn't +council +council's +councillor +councillor's +councillors +councilman +councilman's +councilmen +councilor +councilor's +councilors +councils +councilwoman +councilwoman's +councilwomen +counsel +counsel's +counseled +counseling +counselings +counselled +counsellor +counsellor's +counsellors +counselor +counselor's +counselors +counsels +count +count's +countable +countably +countdown +countdown's +countdowns +counted +countenance +countenance's +countenanced +countenances +countenancing +counter +counter's +counteract +counteracted +counteracting +counteraction +counteraction's +counteractions +counteracts +counterattack +counterattack's +counterattacked +counterattacking +counterattacks +counterbalance +counterbalance's +counterbalanced +counterbalances +counterbalancing +counterclaim +counterclaim's +counterclaimed +counterclaiming +counterclaims +counterclockwise +counterculture +counterculture's +countered +counterespionage +counterespionage's +counterexample +counterexamples +counterfeit +counterfeit's +counterfeited +counterfeiter +counterfeiter's +counterfeiters +counterfeiting +counterfeits +countering +counterintelligence +counterintelligence's +countermand +countermand's +countermanded +countermanding +countermands +counteroffer +counteroffer's +counteroffers +counterpane +counterpane's +counterpanes +counterpart +counterpart's +counterparts +counterpoint +counterpoint's +counterpoints +counterproductive +counterrevolution +counterrevolution's +counterrevolutionaries +counterrevolutionary +counterrevolutionary's +counterrevolutions +counters +countersank +countersign +countersign's +countersigned +countersigning +countersigns +countersink +countersink's +countersinking +countersinks +countersunk +countertenor +countertenor's +countertenors +counterweight +counterweight's +counterweights +countess +countess's +countesses +counties +counting +countless +countries +countrified +country +country's +countryman +countryman's +countrymen +countryside +countryside's +countrysides +countrywoman +countrywoman's +countrywomen +counts +county +county's +coup +coup's +coupe +coupe's +coupes +couple +couple's +coupled +couples +couplet +couplet's +couplets +coupling +coupling's +couplings +coupon +coupon's +coupons +coups +courage +courage's +courageous +courageously +courier +courier's +couriers +course +course's +coursed +courser +courses +coursing +court +court's +courted +courteous +courteously +courteousness +courteousness's +courtesan +courtesan's +courtesans +courtesies +courtesy +courtesy's +courthouse +courthouse's +courthouses +courtier +courtier's +courtiers +courting +courtlier +courtliest +courtliness +courtliness's +courtly +courtroom +courtroom's +courtrooms +courts +courtship +courtship's +courtships +courtyard +courtyard's +courtyards +cousin +cousin's +cousins +cove +cove's +coven +coven's +covenant +covenant's +covenanted +covenanting +covenants +covens +cover +cover's +coverage +coverage's +coverall +coverall's +coveralls +covered +covering +covering's +coverings +coverlet +coverlet's +coverlets +covers +covert +covert's +covertly +coverts +coves +covet +coveted +coveting +covetous +covetously +covetousness +covetousness's +covets +covey +covey's +coveys +cow +cow's +coward +coward's +cowardice +cowardice's +cowardliness +cowardliness's +cowardly +cowards +cowbird +cowbird's +cowbirds +cowboy +cowboy's +cowboys +cowed +cower +cowered +cowering +cowers +cowgirl +cowgirl's +cowgirls +cowhand +cowhand's +cowhands +cowhide +cowhide's +cowhides +cowing +cowl +cowl's +cowlick +cowlick's +cowlicks +cowling +cowling's +cowlings +cowls +coworker +coworker's +coworkers +cowpoke +cowpoke's +cowpokes +cowpox +cowpox's +cowpuncher +cowpuncher's +cowpunchers +cows +cowslip +cowslip's +cowslips +cox +coxcomb +coxcomb's +coxcombs +coxswain +coxswain's +coxswains +coy +coyer +coyest +coyly +coyness +coyness's +coyote +coyote's +coyotes +cozen +cozened +cozening +cozens +cozier +cozies +coziest +cozily +coziness +coziness's +cozy +cozy's +crab +crab's +crabbed +crabbier +crabbiest +crabbily +crabbiness +crabbiness's +crabbing +crabby +crabs +crack +crack's +crackdown +crackdown's +crackdowns +cracked +cracker +cracker's +crackerjack +crackerjack's +crackerjacks +crackers +cracking +crackle +crackle's +crackled +crackles +cracklier +crackliest +crackling +crackly +crackpot +crackpot's +crackpots +cracks +crackup +crackup's +crackups +cradle +cradle's +cradled +cradles +cradling +craft +craft's +crafted +craftier +craftiest +craftily +craftiness +craftiness's +crafting +crafts +craftsman +craftsman's +craftsmanship +craftsmanship's +craftsmen +crafty +crag +crag's +craggier +craggiest +craggy +crags +cram +crammed +cramming +cramp +cramp's +cramped +cramping +cramps +crams +cranberries +cranberry +cranberry's +crane +crane's +craned +cranes +crania +cranial +craning +cranium +cranium's +craniums +crank +crank's +crankcase +crankcase's +crankcases +cranked +crankier +crankiest +crankiness +crankiness's +cranking +cranks +crankshaft +crankshaft's +crankshafts +cranky +crannies +cranny +cranny's +crap +crap's +crape +crape's +crapes +crapped +crappier +crappiest +crapping +crappy +craps +craps's +crash +crash's +crashed +crashes +crashing +crass +crasser +crassest +crassly +crassness +crassness's +crate +crate's +crated +crater +crater's +cratered +cratering +craters +crates +crating +cravat +cravat's +cravats +crave +craved +craven +craven's +cravenly +cravens +craves +craving +craving's +cravings +craw +craw's +crawfish +crawfish's +crawfishes +crawl +crawl's +crawled +crawling +crawls +crawlspace +crawlspace's +crawlspaces +craws +crayfish +crayfish's +crayfishes +crayon +crayon's +crayoned +crayoning +crayons +craze +craze's +crazed +crazes +crazier +crazies +craziest +crazily +craziness +craziness's +crazing +crazy +crazy's +creak +creak's +creaked +creakier +creakiest +creaking +creaks +creaky +cream +cream's +creamed +creamer +creamer's +creameries +creamers +creamery +creamery's +creamier +creamiest +creaminess +creaminess's +creaming +creams +creamy +crease +crease's +creased +creases +creasing +create +created +creates +creating +creation +creation's +creationism +creationism's +creations +creative +creative's +creatively +creativeness +creativeness's +creatives +creativity +creativity's +creator +creator's +creators +creature +creature's +creatures +credence +credence's +credential +credential's +credentials +credenza +credenza's +credenzas +credibility +credibility's +credible +credibly +credit +credit's +creditable +creditably +credited +crediting +creditor +creditor's +creditors +credits +credo +credo's +credos +credulity +credulity's +credulous +credulously +creed +creed's +creeds +creek +creek's +creeks +creel +creel's +creels +creep +creep's +creeper +creeper's +creepers +creepier +creepiest +creepily +creepiness +creepiness's +creeping +creeps +creepy +cremate +cremated +cremates +cremating +cremation +cremation's +cremations +crematoria +crematories +crematorium +crematorium's +crematoriums +crematory +crematory's +creole +creole's +creoles +creosote +creosote's +creosoted +creosotes +creosoting +crepe +crepe's +crepes +crept +crescendi +crescendo +crescendo's +crescendos +crescent +crescent's +crescents +cress +cress's +crest +crest's +crested +crestfallen +cresting +crests +cretin +cretin's +cretinous +cretins +crevasse +crevasse's +crevasses +crevice +crevice's +crevices +crew +crew's +crewed +crewing +crewman +crewman's +crewmen +crews +crib +crib's +cribbage +cribbage's +cribbed +cribbing +cribs +crick +crick's +cricked +cricket +cricket's +cricketer +cricketer's +cricketers +crickets +cricking +cricks +cried +crier +crier's +criers +cries +crime +crime's +crimes +criminal +criminal's +criminally +criminals +criminologist +criminologist's +criminologists +criminology +criminology's +crimp +crimp's +crimped +crimping +crimps +crimson +crimson's +crimsoned +crimsoning +crimsons +cringe +cringe's +cringed +cringes +cringing +crinkle +crinkle's +crinkled +crinkles +crinklier +crinkliest +crinkling +crinkly +crinoline +crinoline's +crinolines +cripple +cripple's +crippled +cripples +crippling +crises +crisis +crisis's +crisp +crisp's +crisped +crisper +crispest +crispier +crispiest +crisping +crisply +crispness +crispness's +crisps +crispy +crisscross +crisscross's +crisscrossed +crisscrosses +crisscrossing +criteria +criterion +criterion's +criterions +critic +critic's +critical +critically +criticism +criticism's +criticisms +criticize +criticized +criticizes +criticizing +critics +critique +critique's +critiqued +critiques +critiquing +critter +critter's +critters +croak +croak's +croaked +croaking +croaks +crochet +crochet's +crocheted +crocheting +crochets +croci +crock +crock's +crocked +crockery +crockery's +crocks +crocodile +crocodile's +crocodiles +crocus +crocus's +crocuses +crofts +croissant +croissant's +croissants +crone +crone's +crones +cronies +crony +crony's +crook +crook's +crooked +crookeder +crookedest +crookedly +crookedness +crookedness's +crooking +crooks +croon +croon's +crooned +crooner +crooner's +crooners +crooning +croons +crop +crop's +cropped +cropper +cropper's +croppers +cropping +crops +croquet +croquet's +croquette +croquette's +croquettes +crosier +crosier's +crosiers +cross +cross's +crossbar +crossbar's +crossbars +crossbeam +crossbeam's +crossbeams +crossbones +crossbones's +crossbow +crossbow's +crossbows +crossbred +crossbreed +crossbreed's +crossbreeding +crossbreeds +crosscheck +crosscheck's +crosschecked +crosschecking +crosschecks +crossed +crosser +crosses +crossest +crossfire +crossfire's +crossfires +crossing +crossing's +crossings +crossly +crossness +crossness's +crossover +crossover's +crossovers +crosspiece +crosspiece's +crosspieces +crossroad +crossroad's +crossroads +crossroads's +crosstown +crosswalk +crosswalk's +crosswalks +crossways +crosswise +crossword +crossword's +crosswords +crotch +crotch's +crotches +crotchet +crotchet's +crotchets +crotchety +crouch +crouch's +crouched +crouches +crouching +croup +croup's +croupier +croupier's +croupiers +croupiest +croupy +crow +crow's +crowbar +crowbar's +crowbars +crowd +crowd's +crowded +crowding +crowds +crowed +crowing +crown +crown's +crowned +crowning +crowns +crows +crozier +crozier's +croziers +croûton +croûton's +croûtons +crucial +crucially +crucible +crucible's +crucibles +crucified +crucifies +crucifix +crucifix's +crucifixes +crucifixion +crucifixion's +crucifixions +cruciform +cruciform's +cruciforms +crucify +crucifying +crud +crud's +cruddier +cruddiest +cruddy +crude +crude's +crudely +crudeness +crudeness's +cruder +crudest +crudities +crudity +crudity's +crudités +crudités's +cruel +crueler +cruelest +crueller +cruellest +cruelly +cruelties +cruelty +cruelty's +cruet +cruet's +cruets +cruise +cruise's +cruised +cruiser +cruiser's +cruisers +cruises +cruising +cruller +cruller's +crullers +crumb +crumb's +crumbed +crumbier +crumbiest +crumbing +crumble +crumble's +crumbled +crumbles +crumblier +crumbliest +crumbling +crumbly +crumbs +crumby +crummier +crummiest +crummy +crumpet +crumpet's +crumpets +crumple +crumple's +crumpled +crumples +crumpling +crunch +crunch's +crunched +cruncher +crunches +crunchier +crunchiest +crunching +crunchy +crusade +crusade's +crusaded +crusader +crusader's +crusaders +crusades +crusading +crush +crush's +crushed +crushes +crushing +crust +crust's +crustacean +crustacean's +crustaceans +crusted +crustier +crustiest +crusting +crusts +crusty +crutch +crutch's +crutches +crux +crux's +cruxes +cry +cry's +crybabies +crybaby +crybaby's +crying +cryings +cryogenics +cryogenics's +crypt +crypt's +cryptic +cryptically +cryptogram +cryptogram's +cryptograms +cryptographer +cryptographer's +cryptographers +cryptography +cryptography's +crypts +crystal +crystal's +crystalize +crystalized +crystalizes +crystalizing +crystalline +crystallization +crystallization's +crystallize +crystallized +crystallizes +crystallizing +crystallographic +crystallography +crystals +crèche +crèche's +crèches +cs +cub +cub's +cubbyhole +cubbyhole's +cubbyholes +cube +cube's +cubed +cubes +cubic +cubical +cubicle +cubicle's +cubicles +cubing +cubism +cubism's +cubist +cubist's +cubists +cubit +cubit's +cubits +cubs +cuckold +cuckold's +cuckolded +cuckolding +cuckolds +cuckoo +cuckoo's +cuckoos +cucumber +cucumber's +cucumbers +cud +cud's +cuddle +cuddle's +cuddled +cuddles +cuddlier +cuddliest +cuddling +cuddly +cudgel +cudgel's +cudgeled +cudgeling +cudgelled +cudgelling +cudgels +cuds +cue +cue's +cued +cueing +cues +cuff +cuff's +cuffed +cuffing +cuffs +cuing +cuisine +cuisine's +cuisines +culinary +cull +cull's +culled +cullender +cullender's +cullenders +culling +culls +culminate +culminated +culminates +culminating +culmination +culmination's +culminations +culotte +culotte's +culottes +culpability +culpability's +culpable +culprit +culprit's +culprits +cult +cult's +cultivate +cultivated +cultivates +cultivating +cultivation +cultivation's +cultivator +cultivator's +cultivators +cults +cultural +culturally +culture +culture's +cultured +cultures +culturing +culvert +culvert's +culverts +cumbersome +cumin +cumin's +cummerbund +cummerbund's +cummerbunds +cumming +cumquat +cumquat's +cumquats +cums +cumulative +cumulatively +cumuli +cumulus +cumulus's +cuneiform +cuneiform's +cunnilingus +cunnilingus's +cunning +cunning's +cunninger +cunningest +cunningly +cunt +cunt's +cunts +cup +cup's +cupboard +cupboard's +cupboards +cupcake +cupcake's +cupcakes +cupful +cupful's +cupfuls +cupidity +cupidity's +cupola +cupola's +cupolas +cupped +cupping +cups +cupsful +cur +cur's +curable +curacies +curacy +curacy's +curate +curate's +curates +curative +curative's +curatives +curator +curator's +curators +curb +curb's +curbed +curbing +curbs +curd +curd's +curdle +curdled +curdles +curdling +curds +cure +cure's +cured +curer +cures +curfew +curfew's +curfews +curie +curie's +curies +curing +curio +curio's +curios +curiosities +curiosity +curiosity's +curious +curiously +curl +curl's +curled +curler +curler's +curlers +curlew +curlew's +curlews +curlicue +curlicue's +curlicued +curlicues +curlicuing +curlier +curliest +curliness +curliness's +curling +curls +curly +curlycue +curlycue's +curlycues +curmudgeon +curmudgeon's +curmudgeons +currant +currant's +currants +currencies +currency +currency's +current +current's +currently +currents +curricula +curriculum +curriculum's +curriculums +curried +curries +curry +curry's +currycomb +currycomb's +currycombed +currycombing +currycombs +currying +curs +curse +curse's +cursed +curses +cursing +cursive +cursive's +cursor +cursor's +cursorily +cursors +cursory +curst +curt +curtail +curtailed +curtailing +curtailment +curtailment's +curtailments +curtails +curtain +curtain's +curtained +curtaining +curtains +curter +curtest +curtly +curtness +curtness's +curtsey +curtsey's +curtseyed +curtseying +curtseys +curtsied +curtsies +curtsy +curtsy's +curtsying +curvaceous +curvacious +curvature +curvature's +curvatures +curve +curve's +curved +curves +curvier +curviest +curving +curvy +cushier +cushiest +cushion +cushion's +cushioned +cushioning +cushions +cushy +cusp +cusp's +cuspid +cuspid's +cuspids +cusps +cuss +cuss's +cussed +cusses +cussing +custard +custard's +custards +custodial +custodian +custodian's +custodians +custody +custody's +custom +custom's +customarily +customary +customer +customer's +customers +customization +customize +customized +customizes +customizing +customs +cut +cut's +cutback +cutback's +cutbacks +cute +cutely +cuteness +cuteness's +cuter +cutesier +cutesiest +cutest +cutesy +cuticle +cuticle's +cuticles +cutlass +cutlass's +cutlasses +cutlery +cutlery's +cutlet +cutlet's +cutlets +cutoff +cutoff's +cutoffs +cuts +cutter +cutter's +cutters +cutthroat +cutthroat's +cutthroats +cutting +cutting's +cuttings +cuttlefish +cuttlefish's +cuttlefishes +cutup +cutup's +cutups +cyanide +cyanide's +cybernetic +cybernetics +cybernetics's +cyberpunk +cyberpunk's +cyberpunks +cyberspace +cyberspace's +cyclamen +cyclamen's +cyclamens +cycle +cycle's +cycled +cycles +cyclic +cyclical +cyclically +cycling +cyclist +cyclist's +cyclists +cyclone +cyclone's +cyclones +cyclonic +cyclotron +cyclotron's +cyclotrons +cygnet +cygnet's +cygnets +cylinder +cylinder's +cylinders +cylindrical +cymbal +cymbal's +cymbals +cynic +cynic's +cynical +cynically +cynicism +cynicism's +cynics +cynosure +cynosure's +cynosures +cypher +cypher's +cypress +cypress's +cypresses +cyst +cyst's +cystic +cysts +cytology +cytology's +cytoplasm +cytoplasm's +czar +czar's +czarina +czarina's +czarinas +czars +d +d'Arezzo +d'Estaing +dB +dab +dab's +dabbed +dabbing +dabble +dabbled +dabbler +dabbler's +dabblers +dabbles +dabbling +dabs +dacha +dacha's +dachas +dachshund +dachshund's +dachshunds +dactyl +dactyl's +dactylic +dactylic's +dactylics +dactyls +dad +dad's +daddies +daddy +daddy's +dado +dado's +dadoes +dados +dads +daemon +daemon's +daemons +daffier +daffiest +daffodil +daffodil's +daffodils +daffy +daft +dafter +daftest +dagger +dagger's +daggers +daguerreotype +daguerreotype's +daguerreotyped +daguerreotypes +daguerreotyping +dahlia +dahlia's +dahlias +dailies +daily +daily's +daintier +dainties +daintiest +daintily +daintiness +daintiness's +dainty +dainty's +daiquiri +daiquiri's +daiquiris +dairies +dairy +dairy's +dairying +dairying's +dairymaid +dairymaid's +dairymaids +dairyman +dairyman's +dairymen +dais +dais's +daises +daisies +daisy +daisy's +dale +dale's +dales +dalliance +dalliance's +dalliances +dallied +dallies +dally +dallying +dalmatian +dalmatian's +dalmatians +dam +dam's +damage +damage's +damaged +damages +damages's +damaging +damask +damask's +damasked +damasking +damasks +dame +dame's +dames +dammed +damming +damn +damn's +damnable +damnably +damnation +damnation's +damndest +damned +damnedest +damning +damns +damp +damp's +damped +dampen +dampened +dampening +dampens +damper +damper's +dampers +dampest +damping +damply +dampness +dampness's +damps +dams +damsel +damsel's +damsels +damson +damson's +damsons +dance +dance's +danced +dancer +dancer's +dancers +dances +dancing +dancing's +dandelion +dandelion's +dandelions +dander +dander's +dandier +dandies +dandiest +dandle +dandled +dandles +dandling +dandruff +dandruff's +dandy +dandy's +danger +danger's +dangerous +dangerously +dangers +dangle +dangled +dangles +dangling +dank +danker +dankest +dankly +dankness +dankness's +dapper +dapperer +dapperest +dapple +dapple's +dappled +dapples +dappling +dare +dare's +dared +daredevil +daredevil's +daredevils +dares +daring +daring's +daringly +dark +dark's +darken +darkened +darkening +darkens +darker +darkest +darkly +darkness +darkness's +darkroom +darkroom's +darkrooms +darling +darling's +darlings +darn +darn's +darned +darneder +darnedest +darning +darns +dart +dart's +dartboard +dartboard's +dartboards +darted +darting +darts +dash +dash's +dashboard +dashboard's +dashboards +dashed +dashes +dashiki +dashiki's +dashikis +dashing +dashingly +dastardly +data +database +database's +databases +date +date's +dated +dateline +dateline's +datelined +datelines +datelining +dates +dating +dative +dative's +datives +datum +datum's +daub +daub's +daubed +dauber +dauber's +daubers +daubing +daubs +daughter +daughter's +daughters +daunt +daunted +daunting +dauntless +dauntlessly +dauntlessness +dauntlessness's +daunts +dauphin +dauphin's +dauphins +davenport +davenport's +davenports +davit +davit's +davits +dawdle +dawdled +dawdler +dawdler's +dawdlers +dawdles +dawdling +dawn +dawn's +dawned +dawning +dawns +day +day's +daybed +daybed's +daybeds +daybreak +daybreak's +daydream +daydream's +daydreamed +daydreamer +daydreamer's +daydreamers +daydreaming +daydreams +daydreamt +daylight +daylight's +daylights +days +daytime +daytime's +daze +daze's +dazed +dazes +dazing +dazzle +dazzle's +dazzled +dazzles +dazzling +deacon +deacon's +deaconess +deaconess's +deaconesses +deacons +deactivate +deactivated +deactivates +deactivating +dead +dead's +deadbeat +deadbeat's +deadbeats +deadbolt +deadbolt's +deadbolts +deaden +deadened +deadening +deadens +deader +deadest +deadlier +deadliest +deadline +deadline's +deadlines +deadliness +deadliness's +deadlock +deadlock's +deadlocked +deadlocking +deadlocks +deadly +deadpan +deadpan's +deadpanned +deadpanning +deadpans +deadwood +deadwood's +deaf +deafen +deafened +deafening +deafens +deafer +deafest +deafness +deafness's +deal +deal's +dealer +dealer's +dealers +dealership +dealership's +dealerships +dealing +dealing's +dealings +deals +dealt +dean +dean's +deans +dear +dear's +dearer +dearest +dearly +dearness +dearness's +dears +dearth +dearth's +dearths +death +death's +deathbed +deathbed's +deathbeds +deathblow +deathblow's +deathblows +deathless +deathlike +deathly +deaths +deathtrap +deathtrap's +deathtraps +deaves +deb +deb's +debacle +debacle's +debacles +debar +debark +debarkation +debarkation's +debarked +debarking +debarks +debarment +debarment's +debarred +debarring +debars +debase +debased +debasement +debasement's +debasements +debases +debasing +debatable +debate +debate's +debated +debater +debater's +debaters +debates +debating +debauch +debauch's +debauched +debaucheries +debauchery +debauchery's +debauches +debauching +debenture +debenture's +debentures +debilitate +debilitated +debilitates +debilitating +debilitation +debilitation's +debilities +debility +debility's +debit +debit's +debited +debiting +debits +debonair +debonairly +debrief +debriefed +debriefing +debriefing's +debriefings +debriefs +debris +debris's +debs +debt +debt's +debtor +debtor's +debtors +debts +debug +debugged +debugger +debuggers +debugging +debugs +debunk +debunked +debunking +debunks +debut +debut's +debuted +debuting +debuts +decade +decade's +decadence +decadence's +decadent +decadent's +decadently +decadents +decades +decaf +decaf's +decaffeinate +decaffeinated +decaffeinates +decaffeinating +decal +decal's +decals +decamp +decamped +decamping +decamps +decant +decanted +decanter +decanter's +decanters +decanting +decants +decapitate +decapitated +decapitates +decapitating +decapitation +decapitation's +decapitations +decathlon +decathlon's +decathlons +decay +decay's +decayed +decaying +decays +decease +decease's +deceased +deceased's +deceases +deceasing +decedent +decedent's +decedents +deceit +deceit's +deceitful +deceitfully +deceitfulness +deceitfulness's +deceits +deceive +deceived +deceiver +deceiver's +deceivers +deceives +deceiving +decelerate +decelerated +decelerates +decelerating +deceleration +deceleration's +decencies +decency +decency's +decent +decently +decentralization +decentralization's +decentralize +decentralized +decentralizes +decentralizing +deception +deception's +deceptions +deceptive +deceptively +deceptiveness +deceptiveness's +decibel +decibel's +decibels +decide +decided +decidedly +decides +deciding +deciduous +decimal +decimal's +decimals +decimate +decimated +decimates +decimating +decimation +decimation's +decipher +decipherable +deciphered +deciphering +deciphers +decision +decision's +decisions +decisive +decisively +decisiveness +decisiveness's +deck +deck's +decked +deckhand +deckhand's +deckhands +decking +decks +declaim +declaimed +declaiming +declaims +declamation +declamation's +declamations +declamatory +declaration +declaration's +declarations +declarative +declare +declared +declares +declaring +declassified +declassifies +declassify +declassifying +declension +declension's +declensions +declination +declination's +decline +decline's +declined +declines +declining +declivities +declivity +declivity's +decode +decoded +decoder +decodes +decoding +decolonization +decolonization's +decolonize +decolonized +decolonizes +decolonizing +decommission +decommissioned +decommissioning +decommissions +decompose +decomposed +decomposes +decomposing +decomposition +decomposition's +decompress +decompressed +decompresses +decompressing +decompression +decompression's +decongestant +decongestant's +decongestants +deconstruction +deconstruction's +deconstructions +decontaminate +decontaminated +decontaminates +decontaminating +decontamination +decontamination's +decor +decor's +decorate +decorated +decorates +decorating +decoration +decoration's +decorations +decorative +decorator +decorator's +decorators +decorous +decorously +decors +decorum +decorum's +decoy +decoy's +decoyed +decoying +decoys +decrease +decrease's +decreased +decreases +decreasing +decree +decree's +decreed +decreeing +decrees +decremented +decrements +decrepit +decrepitude +decrepitude's +decrescendi +decrescendo +decrescendo's +decrescendos +decried +decries +decriminalization +decriminalization's +decriminalize +decriminalized +decriminalizes +decriminalizing +decry +decrying +dedicate +dedicated +dedicates +dedicating +dedication +dedication's +dedications +deduce +deduced +deduces +deducible +deducing +deduct +deducted +deductible +deductible's +deductibles +deducting +deduction +deduction's +deductions +deductive +deducts +deed +deed's +deeded +deeding +deeds +deejay +deejay's +deejays +deem +deemed +deeming +deems +deep +deep's +deepen +deepened +deepening +deepens +deeper +deepest +deeply +deepness +deepness's +deeps +deer +deer's +deers +deerskin +deerskin's +deescalate +deescalated +deescalates +deescalating +deface +defaced +defacement +defacement's +defaces +defacing +defamation +defamation's +defamatory +defame +defamed +defames +defaming +default +default's +defaulted +defaulter +defaulter's +defaulters +defaulting +defaults +defeat +defeat's +defeated +defeating +defeatism +defeatism's +defeatist +defeatist's +defeatists +defeats +defecate +defecated +defecates +defecating +defecation +defecation's +defect +defect's +defected +defecting +defection +defection's +defections +defective +defective's +defectives +defector +defector's +defectors +defects +defend +defendant +defendant's +defendants +defended +defender +defender's +defenders +defending +defends +defense +defense's +defensed +defenseless +defenses +defensible +defensing +defensive +defensive's +defensively +defensiveness +defensiveness's +defer +deference +deference's +deferential +deferentially +deferment +deferment's +deferments +deferred +deferring +defers +defiance +defiance's +defiant +defiantly +deficiencies +deficiency +deficiency's +deficient +deficit +deficit's +deficits +defied +defies +defile +defile's +defiled +defilement +defilement's +defiles +defiling +definable +define +defined +definer +definer's +definers +defines +defining +definite +definitely +definiteness +definiteness's +definition +definition's +definitions +definitive +definitively +deflate +deflated +deflates +deflating +deflation +deflation's +deflect +deflected +deflecting +deflection +deflection's +deflections +deflector +deflector's +deflectors +deflects +defogger +defogger's +defoggers +defoliant +defoliant's +defoliants +defoliate +defoliated +defoliates +defoliating +defoliation +defoliation's +deforest +deforestation +deforestation's +deforested +deforesting +deforests +deform +deformation +deformation's +deformations +deformed +deforming +deformities +deformity +deformity's +deforms +defraud +defrauded +defrauding +defrauds +defray +defrayal +defrayal's +defrayed +defraying +defrays +defrost +defrosted +defroster +defroster's +defrosters +defrosting +defrosts +deft +defter +deftest +deftly +deftness +deftness's +defunct +defuse +defused +defuses +defusing +defy +defying +degeneracy +degeneracy's +degenerate +degenerate's +degenerated +degenerates +degenerating +degeneration +degeneration's +degenerative +degradation +degradation's +degrade +degraded +degrades +degrading +degree +degree's +degrees +dehumanization +dehumanization's +dehumanize +dehumanized +dehumanizes +dehumanizing +dehumidified +dehumidifier +dehumidifier's +dehumidifiers +dehumidifies +dehumidify +dehumidifying +dehydrate +dehydrated +dehydrates +dehydrating +dehydration +dehydration's +deice +deiced +deicer +deicer's +deicers +deices +deicing +deification +deification's +deified +deifies +deify +deifying +deign +deigned +deigning +deigns +deism +deism's +deities +deity +deity's +deject +dejected +dejectedly +dejecting +dejection +dejection's +dejects +delay +delay's +delayed +delaying +delays +delectable +delectation +delectation's +delegate +delegate's +delegated +delegates +delegating +delegation +delegation's +delegations +delete +deleted +deleterious +deletes +deleting +deletion +deletion's +deletions +deli +deli's +deliberate +deliberated +deliberately +deliberates +deliberating +deliberation +deliberation's +deliberations +delicacies +delicacy +delicacy's +delicate +delicately +delicatessen +delicatessen's +delicatessens +delicious +deliciously +deliciousness +deliciousness's +delight +delight's +delighted +delightful +delightfully +delighting +delights +delimit +delimited +delimiter +delimiters +delimiting +delimits +delineate +delineated +delineates +delineating +delineation +delineation's +delineations +delinquencies +delinquency +delinquency's +delinquent +delinquent's +delinquently +delinquents +deliquescent +deliria +delirious +deliriously +delirium +delirium's +deliriums +delis +deliver +deliverance +deliverance's +delivered +deliverer +deliverer's +deliverers +deliveries +delivering +delivers +delivery +delivery's +dell +dell's +dells +delphinia +delphinium +delphinium's +delphiniums +delta +delta's +deltas +delude +deluded +deludes +deluding +deluge +deluge's +deluged +deluges +deluging +delusion +delusion's +delusions +delusive +deluxe +delve +delved +delves +delving +demagnetization +demagnetization's +demagnetize +demagnetized +demagnetizes +demagnetizing +demagog +demagog's +demagogic +demagogry +demagogs +demagogue +demagogue's +demagoguery +demagoguery's +demagogues +demagogy +demagogy's +demand +demand's +demanded +demanding +demands +demarcate +demarcated +demarcates +demarcating +demarcation +demarcation's +demean +demeaned +demeaning +demeanor +demeanor's +demeans +demented +dementedly +dementia +dementia's +demerit +demerit's +demerits +demesne +demesne's +demesnes +demigod +demigod's +demigods +demijohn +demijohn's +demijohns +demilitarization +demilitarization's +demilitarize +demilitarized +demilitarizes +demilitarizing +demise +demise's +demised +demises +demising +demitasse +demitasse's +demitasses +demo +demo's +demobilization +demobilization's +demobilize +demobilized +demobilizes +demobilizing +democracies +democracy +democracy's +democrat +democrat's +democratic +democratically +democratization +democratization's +democratize +democratized +democratizes +democratizing +democrats +demoed +demographer +demographer's +demographers +demographic +demographic's +demographically +demographics +demographics's +demography +demography's +demoing +demolish +demolished +demolishes +demolishing +demolition +demolition's +demolitions +demon +demon's +demoniac +demoniacal +demonic +demons +demonstrable +demonstrably +demonstrate +demonstrated +demonstrates +demonstrating +demonstration +demonstration's +demonstrations +demonstrative +demonstrative's +demonstratively +demonstratives +demonstrator +demonstrator's +demonstrators +demoralization +demoralization's +demoralize +demoralized +demoralizes +demoralizing +demos +demote +demoted +demotes +demoting +demotion +demotion's +demotions +demount +demur +demur's +demure +demurely +demurer +demurest +demurred +demurring +demurs +den +den's +denature +denatured +denatures +denaturing +dendrite +dendrite's +dendrites +denial +denial's +denials +denied +denier +denier's +deniers +denies +denigrate +denigrated +denigrates +denigrating +denigration +denigration's +denim +denim's +denims +denizen +denizen's +denizens +denominate +denominated +denominates +denominating +denomination +denomination's +denominational +denominations +denominator +denominator's +denominators +denotation +denotation's +denotations +denote +denoted +denotes +denoting +denouement +denouement's +denouements +denounce +denounced +denouncement +denouncement's +denouncements +denounces +denouncing +dens +dense +densely +denseness +denseness's +denser +densest +densities +density +density's +dent +dent's +dental +dented +dentifrice +dentifrice's +dentifrices +dentin +dentin's +dentine +dentine's +denting +dentist +dentist's +dentistry +dentistry's +dentists +dents +denture +denture's +dentures +denude +denuded +denudes +denuding +denunciation +denunciation's +denunciations +deny +denying +deodorant +deodorant's +deodorants +deodorize +deodorized +deodorizer +deodorizer's +deodorizers +deodorizes +deodorizing +depart +departed +departed's +departing +department +department's +departmental +departmentalize +departmentalized +departmentalizes +departmentalizing +departments +departs +departure +departure's +departures +depend +dependability +dependability's +dependable +dependably +dependance +dependance's +dependant +dependant's +dependants +depended +dependence +dependence's +dependencies +dependency +dependency's +dependent +dependent's +dependents +depending +depends +depict +depicted +depicting +depiction +depiction's +depictions +depicts +depilatories +depilatory +depilatory's +deplane +deplaned +deplanes +deplaning +deplete +depleted +depletes +depleting +depletion +depletion's +deplorable +deplorably +deplore +deplored +deplores +deploring +deploy +deployed +deploying +deployment +deployment's +deployments +deploys +depoliticize +depoliticized +depoliticizes +depoliticizing +depopulate +depopulated +depopulates +depopulating +depopulation +depopulation's +deport +deportation +deportation's +deportations +deported +deporting +deportment +deportment's +deports +depose +deposed +deposes +deposing +deposit +deposit's +deposited +depositing +deposition +deposition's +depositions +depositor +depositor's +depositories +depositors +depository +depository's +deposits +depot +depot's +depots +deprave +depraved +depraves +depraving +depravities +depravity +depravity's +deprecate +deprecated +deprecates +deprecating +deprecation +deprecation's +deprecatory +depreciate +depreciated +depreciates +depreciating +depreciation +depreciation's +depredation +depredation's +depredations +depress +depressant +depressant's +depressants +depressed +depresses +depressing +depressingly +depression +depression's +depressions +depressive +depressive's +depressives +deprivation +deprivation's +deprivations +deprive +deprived +deprives +depriving +deprogram +deprogramed +deprograming +deprogrammed +deprogramming +deprograms +depth +depth's +depths +deputation +deputation's +deputations +depute +deputed +deputes +deputies +deputing +deputize +deputized +deputizes +deputizing +deputy +deputy's +derail +derailed +derailing +derailment +derailment's +derailments +derails +derange +deranged +derangement +derangement's +deranges +deranging +derbies +derby +derby's +deregulate +deregulated +deregulates +deregulating +deregulation +deregulation's +derelict +derelict's +dereliction +dereliction's +derelicts +deride +derided +derides +deriding +derision +derision's +derisive +derisively +derisory +derivable +derivation +derivation's +derivations +derivative +derivative's +derivatives +derive +derived +derives +deriving +dermatitis +dermatitis's +dermatologist +dermatologist's +dermatologists +dermatology +dermatology's +dermis +dermis's +derogate +derogated +derogates +derogating +derogation +derogation's +derogatory +derrick +derrick's +derricks +derringer +derringer's +derringers +derrière +derrière's +derrières +dervish +dervish's +dervishes +desalinate +desalinated +desalinates +desalinating +desalination +desalination's +descant +descant's +descanted +descanting +descants +descend +descendant +descendant's +descendants +descended +descendent +descendent's +descendents +descender +descending +descends +descent +descent's +descents +describable +describe +described +describes +describing +descried +descries +description +description's +descriptions +descriptive +descriptively +descriptor +descriptors +descry +descrying +desecrate +desecrated +desecrates +desecrating +desecration +desecration's +desegregate +desegregated +desegregates +desegregating +desegregation +desegregation's +desensitization +desensitization's +desensitize +desensitized +desensitizes +desensitizing +desert +desert's +deserted +deserter +deserter's +deserters +deserting +desertion +desertion's +desertions +deserts +deserve +deserved +deservedly +deserves +deserving +desiccate +desiccated +desiccates +desiccating +desiccation +desiccation's +desiderata +desideratum +desideratum's +design +design's +designate +designated +designates +designating +designation +designation's +designations +designed +designer +designer's +designers +designing +designing's +designs +desirability +desirability's +desirable +desirably +desire +desire's +desired +desires +desiring +desirous +desist +desisted +desisting +desists +desk +desk's +desks +desktop +desktop's +desktops +desolate +desolated +desolately +desolateness +desolateness's +desolates +desolating +desolation +desolation's +despair +despair's +despaired +despairing +despairingly +despairs +despatch +despatch's +despatched +despatches +despatching +desperado +desperado's +desperadoes +desperados +desperate +desperately +desperation +desperation's +despicable +despicably +despise +despised +despises +despising +despite +despoil +despoiled +despoiling +despoils +despondency +despondency's +despondent +despondently +despot +despot's +despotic +despotism +despotism's +despots +dessert +dessert's +desserts +destabilize +destination +destination's +destinations +destine +destined +destines +destinies +destining +destiny +destiny's +destitute +destitution +destitution's +destroy +destroyed +destroyer +destroyer's +destroyers +destroying +destroys +destruct +destruct's +destructed +destructible +destructing +destruction +destruction's +destructive +destructively +destructiveness +destructiveness's +destructs +desultory +detach +detachable +detached +detaches +detaching +detachment +detachment's +detachments +detail +detail's +detailed +detailing +details +detain +detained +detaining +detainment +detainment's +detains +detect +detectable +detected +detecting +detection +detection's +detective +detective's +detectives +detector +detector's +detectors +detects +detentes +detention +detention's +detentions +deter +detergent +detergent's +detergents +deteriorate +deteriorated +deteriorates +deteriorating +deterioration +deterioration's +determinable +determinant +determinant's +determinants +determinate +determination +determination's +determinations +determine +determined +determiner +determiner's +determiners +determines +determining +determinism +deterministic +deterred +deterrence +deterrence's +deterrent +deterrent's +deterrents +deterring +deters +detest +detestable +detestation +detestation's +detested +detesting +detests +dethrone +dethroned +dethronement +dethronement's +dethrones +dethroning +detonate +detonated +detonates +detonating +detonation +detonation's +detonations +detonator +detonator's +detonators +detour +detour's +detoured +detouring +detours +detox +detox's +detoxed +detoxes +detoxification +detoxification's +detoxified +detoxifies +detoxify +detoxifying +detoxing +detract +detracted +detracting +detraction +detraction's +detractor +detractor's +detractors +detracts +detriment +detriment's +detrimental +detriments +detritus +detritus's +deuce +deuce's +deuces +deuterium +deuterium's +devaluation +devaluation's +devaluations +devalue +devalued +devalues +devaluing +devastate +devastated +devastates +devastating +devastation +devastation's +develop +developed +developer +developer's +developers +developing +development +development's +developmental +developments +develops +deviance +deviance's +deviant +deviant's +deviants +deviate +deviate's +deviated +deviates +deviating +deviation +deviation's +deviations +device +device's +devices +devil +devil's +deviled +deviling +devilish +devilishly +devilled +devilling +devilment +devilment's +devilries +devilry +devilry's +devils +deviltries +deviltry +deviltry's +devious +deviously +deviousness +deviousness's +devise +devise's +devised +devises +devising +devoid +devolution +devolve +devolved +devolves +devolving +devote +devoted +devotedly +devotee +devotee's +devotees +devotes +devoting +devotion +devotion's +devotional +devotional's +devotionals +devotions +devour +devoured +devouring +devours +devout +devouter +devoutest +devoutly +devoutness +devoutness's +dew +dew's +dewberries +dewberry +dewberry's +dewdrop +dewdrop's +dewdrops +dewier +dewiest +dewlap +dewlap's +dewlaps +dewy +dexterity +dexterity's +dexterous +dexterously +dextrose +dextrose's +dextrous +dextrously +dhoti +dhoti's +dhotis +diabetes +diabetes's +diabetic +diabetic's +diabetics +diabolic +diabolical +diabolically +diacritic +diacritic's +diacritical +diacritics +diadem +diadem's +diadems +diagnose +diagnosed +diagnoses +diagnosing +diagnosis +diagnosis's +diagnostic +diagnostician +diagnostician's +diagnosticians +diagnostics +diagonal +diagonal's +diagonally +diagonals +diagram +diagram's +diagramed +diagraming +diagrammatic +diagrammed +diagramming +diagrams +dial +dial's +dialect +dialect's +dialectal +dialectic +dialectic's +dialects +dialed +dialing +dialings +dialog +dialog's +dialogs +dialogue +dialogue's +dialogues +dials +dialyses +dialysis +dialysis's +dialyzes +diameter +diameter's +diameters +diametrical +diametrically +diamond +diamond's +diamonds +diaper +diaper's +diapered +diapering +diapers +diaphanous +diaphragm +diaphragm's +diaphragms +diaries +diarist +diarist's +diarists +diarrhea +diarrhea's +diarrhoea +diarrhoea's +diary +diary's +diastolic +diatom +diatom's +diatoms +diatribe +diatribe's +diatribes +dibble +dibble's +dibbled +dibbles +dibbling +dice +diced +dices +dicey +dichotomies +dichotomy +dichotomy's +dicier +diciest +dicing +dick +dick's +dicker +dickered +dickering +dickers +dickey +dickey's +dickeys +dickie +dickie's +dickies +dicks +dicky +dicky's +dicta +dictate +dictate's +dictated +dictates +dictating +dictation +dictation's +dictations +dictator +dictator's +dictatorial +dictators +dictatorship +dictatorship's +dictatorships +diction +diction's +dictionaries +dictionary +dictionary's +dictum +dictum's +dictums +did +didactic +diddle +diddled +diddles +diddling +didn't +die +die's +died +diehard +diehard's +diehards +diereses +dieresis +dieresis's +dies +diesel +diesel's +dieseled +dieseling +diesels +diet +diet's +dietaries +dietary +dietary's +dieted +dieter +dieter's +dieters +dietetic +dietetics +dietetics's +dietician +dietician's +dieticians +dieting +dietitian +dietitian's +dietitians +diets +differ +differed +difference +difference's +differences +different +differential +differential's +differentials +differentiate +differentiated +differentiates +differentiating +differentiation +differentiation's +differently +differing +differs +difficult +difficulties +difficulty +difficulty's +diffidence +diffidence's +diffident +diffidently +diffraction +diffraction's +diffuse +diffused +diffusely +diffuseness +diffuseness's +diffuses +diffusing +diffusion +diffusion's +dig +dig's +digest +digest's +digested +digestible +digesting +digestion +digestion's +digestions +digestive +digests +digger +digger's +diggers +digging +digit +digit's +digital +digitalis +digitalis's +digitally +digitization +digitize +digitized +digitizes +digitizing +digits +dignified +dignifies +dignify +dignifying +dignitaries +dignitary +dignitary's +dignities +dignity +dignity's +digraph +digraph's +digraphs +digress +digressed +digresses +digressing +digression +digression's +digressions +digressive +digs +dike +dike's +diked +dikes +diking +dilapidated +dilapidation +dilapidation's +dilate +dilated +dilates +dilating +dilation +dilation's +dilatory +dilemma +dilemma's +dilemmas +dilettante +dilettante's +dilettantes +dilettanti +dilettantism +dilettantism's +diligence +diligence's +diligent +diligently +dill +dill's +dillies +dills +dilly +dilly's +dillydallied +dillydallies +dillydally +dillydallying +dilute +diluted +dilutes +diluting +dilution +dilution's +dim +dime +dime's +dimension +dimension's +dimensional +dimensionless +dimensions +dimer +dimes +diminish +diminished +diminishes +diminishing +diminuendo +diminuendo's +diminuendoes +diminuendos +diminution +diminution's +diminutions +diminutive +diminutive's +diminutives +dimly +dimmed +dimmer +dimmer's +dimmers +dimmest +dimming +dimness +dimness's +dimple +dimple's +dimpled +dimples +dimpling +dims +dimwit +dimwit's +dimwits +dimwitted +din +din's +dine +dined +diner +diner's +diners +dines +dinette +dinette's +dinettes +ding +ding's +dinged +dinghies +dinghy +dinghy's +dingier +dingiest +dinginess +dinginess's +dinging +dingo +dingo's +dingoes +dings +dingy +dining +dinkier +dinkies +dinkiest +dinky +dinky's +dinned +dinner +dinner's +dinnered +dinnering +dinners +dinning +dinosaur +dinosaur's +dinosaurs +dins +dint +dint's +diocesan +diocesan's +diocesans +diocese +diocese's +dioceses +diode +diode's +diodes +diorama +diorama's +dioramas +dioxide +dioxin +dioxin's +dioxins +dip +dip's +diphtheria +diphtheria's +diphthong +diphthong's +diphthongs +diploma +diploma's +diplomacy +diplomacy's +diplomas +diplomat +diplomat's +diplomata +diplomatic +diplomatically +diplomats +dipole +dipped +dipper +dipper's +dippers +dipping +dips +dipsomania +dipsomania's +dipsomaniac +dipsomaniac's +dipsomaniacs +dipstick +dipstick's +dipsticks +dire +direct +directed +directer +directest +directing +direction +direction's +directional +directions +directive +directive's +directives +directly +directness +directness's +director +director's +directorate +directorate's +directorates +directorial +directories +directors +directorship +directorship's +directorships +directory +directory's +directs +direr +direst +dirge +dirge's +dirges +dirigible +dirigible's +dirigibles +dirk +dirk's +dirks +dirt +dirt's +dirtied +dirtier +dirties +dirtiest +dirtiness +dirtiness's +dirty +dirtying +dis +dis's +disabilities +disability +disability's +disable +disabled +disablement +disablement's +disables +disabling +disabuse +disabused +disabuses +disabusing +disadvantage +disadvantage's +disadvantaged +disadvantageous +disadvantageously +disadvantages +disadvantaging +disaffect +disaffected +disaffecting +disaffection +disaffection's +disaffects +disagree +disagreeable +disagreeably +disagreed +disagreeing +disagreement +disagreement's +disagreements +disagrees +disallow +disallowed +disallowing +disallows +disambiguate +disambiguation +disappear +disappearance +disappearance's +disappearances +disappeared +disappearing +disappears +disappoint +disappointed +disappointing +disappointingly +disappointment +disappointment's +disappointments +disappoints +disapprobation +disapprobation's +disapproval +disapproval's +disapprove +disapproved +disapproves +disapproving +disapprovingly +disarm +disarmament +disarmament's +disarmed +disarming +disarms +disarrange +disarranged +disarrangement +disarrangement's +disarranges +disarranging +disarray +disarray's +disarrayed +disarraying +disarrays +disassemble +disassembled +disassembles +disassembling +disassociate +disassociated +disassociates +disassociating +disaster +disaster's +disasters +disastrous +disastrously +disavow +disavowal +disavowal's +disavowals +disavowed +disavowing +disavows +disband +disbanded +disbanding +disbands +disbar +disbarment +disbarment's +disbarred +disbarring +disbars +disbelief +disbelief's +disbelieve +disbelieved +disbelieves +disbelieving +disburse +disbursed +disbursement +disbursement's +disbursements +disburses +disbursing +disc +disc's +discard +discard's +discarded +discarding +discards +discern +discerned +discernible +discerning +discernment +discernment's +discerns +discharge +discharge's +discharged +discharges +discharging +disciple +disciple's +disciples +disciplinarian +disciplinarian's +disciplinarians +disciplinary +discipline +discipline's +disciplined +disciplines +disciplining +disclaim +disclaimed +disclaimer +disclaimer's +disclaimers +disclaiming +disclaims +disclose +disclosed +discloses +disclosing +disclosure +disclosure's +disclosures +disco +disco's +discoed +discoing +discolor +discoloration +discoloration's +discolorations +discolored +discoloring +discolors +discombobulate +discombobulated +discombobulates +discombobulating +discomfit +discomfited +discomfiting +discomfits +discomfiture +discomfiture's +discomfort +discomfort's +discomforted +discomforting +discomforts +discommode +discommoded +discommodes +discommoding +discompose +discomposed +discomposes +discomposing +discomposure +discomposure's +disconcert +disconcerted +disconcerting +disconcerts +disconnect +disconnected +disconnectedly +disconnecting +disconnection +disconnection's +disconnections +disconnects +disconsolate +disconsolately +discontent +discontent's +discontented +discontentedly +discontenting +discontentment +discontentment's +discontents +discontinuance +discontinuance's +discontinuances +discontinuation +discontinuation's +discontinuations +discontinue +discontinued +discontinues +discontinuing +discontinuities +discontinuity +discontinuity's +discontinuous +discord +discord's +discordant +discorded +discording +discords +discos +discotheque +discotheque's +discotheques +discount +discount's +discounted +discountenance +discountenanced +discountenances +discountenancing +discounting +discounts +discourage +discouraged +discouragement +discouragement's +discouragements +discourages +discouraging +discouragingly +discourse +discourse's +discoursed +discourses +discoursing +discourteous +discourteously +discourtesies +discourtesy +discourtesy's +discover +discovered +discoverer +discoverer's +discoverers +discoveries +discovering +discovers +discovery +discovery's +discredit +discredit's +discreditable +discredited +discrediting +discredits +discreet +discreeter +discreetest +discreetly +discrepancies +discrepancy +discrepancy's +discrete +discretion +discretion's +discretionary +discriminant +discriminate +discriminated +discriminates +discriminating +discrimination +discrimination's +discriminatory +discs +discursive +discus +discus's +discuses +discuss +discussant +discussant's +discussants +discussed +discusses +discussing +discussion +discussion's +discussions +disdain +disdain's +disdained +disdainful +disdainfully +disdaining +disdains +disease +disease's +diseased +diseases +disembark +disembarkation +disembarkation's +disembarked +disembarking +disembarks +disembodied +disembodies +disembody +disembodying +disembowel +disemboweled +disemboweling +disembowelled +disembowelling +disembowels +disenchant +disenchanted +disenchanting +disenchantment +disenchantment's +disenchants +disencumber +disencumbered +disencumbering +disencumbers +disenfranchise +disenfranchised +disenfranchisement +disenfranchisement's +disenfranchises +disenfranchising +disengage +disengaged +disengagement +disengagement's +disengagements +disengages +disengaging +disentangle +disentangled +disentanglement +disentanglement's +disentangles +disentangling +disestablish +disestablished +disestablishes +disestablishing +disfavor +disfavor's +disfavored +disfavoring +disfavors +disfigure +disfigured +disfigurement +disfigurement's +disfigurements +disfigures +disfiguring +disfranchise +disfranchised +disfranchisement +disfranchisement's +disfranchises +disfranchising +disgorge +disgorged +disgorges +disgorging +disgrace +disgrace's +disgraced +disgraceful +disgracefully +disgraces +disgracing +disgruntle +disgruntled +disgruntles +disgruntling +disguise +disguise's +disguised +disguises +disguising +disgust +disgust's +disgusted +disgustedly +disgusting +disgustingly +disgusts +dish +dish's +disharmonious +disharmony +disharmony's +dishcloth +dishcloth's +dishcloths +dishearten +disheartened +disheartening +disheartens +dished +dishes +dishevel +disheveled +disheveling +dishevelled +dishevelling +dishevels +dishing +dishonest +dishonestly +dishonesty +dishonesty's +dishonor +dishonor's +dishonorable +dishonorably +dishonored +dishonoring +dishonors +dishpan +dishpan's +dishpans +dishrag +dishrag's +dishrags +dishtowel +dishtowel's +dishtowels +dishwasher +dishwasher's +dishwashers +dishwater +dishwater's +disillusion +disillusion's +disillusioned +disillusioning +disillusionment +disillusionment's +disillusions +disincentive +disinclination +disinclination's +disincline +disinclined +disinclines +disinclining +disinfect +disinfectant +disinfectant's +disinfectants +disinfected +disinfecting +disinfects +disinformation +disinformation's +disingenuous +disinherit +disinherited +disinheriting +disinherits +disintegrate +disintegrated +disintegrates +disintegrating +disintegration +disintegration's +disinter +disinterest +disinterest's +disinterested +disinterestedly +disinterests +disinterment +disinterment's +disinterred +disinterring +disinters +disjoint +disjointed +disjointedly +disjointing +disjoints +disk +disk's +diskette +diskette's +diskettes +disks +dislike +dislike's +disliked +dislikes +disliking +dislocate +dislocated +dislocates +dislocating +dislocation +dislocation's +dislocations +dislodge +dislodged +dislodges +dislodging +disloyal +disloyally +disloyalty +disloyalty's +dismal +dismally +dismantle +dismantled +dismantles +dismantling +dismay +dismay's +dismayed +dismaying +dismays +dismember +dismembered +dismembering +dismemberment +dismemberment's +dismembers +dismiss +dismissal +dismissal's +dismissals +dismissed +dismisses +dismissing +dismissive +dismount +dismount's +dismounted +dismounting +dismounts +disobedience +disobedience's +disobedient +disobediently +disobey +disobeyed +disobeying +disobeys +disoblige +disobliged +disobliges +disobliging +disorder +disorder's +disordered +disordering +disorderliness +disorderliness's +disorderly +disorders +disorganization +disorganization's +disorganize +disorganized +disorganizes +disorganizing +disorient +disorientation +disorientation's +disoriented +disorienting +disorients +disown +disowned +disowning +disowns +disparage +disparaged +disparagement +disparagement's +disparages +disparaging +disparate +disparities +disparity +disparity's +dispassionate +dispassionately +dispatch +dispatch's +dispatched +dispatcher +dispatcher's +dispatchers +dispatches +dispatching +dispel +dispelled +dispelling +dispels +dispensable +dispensaries +dispensary +dispensary's +dispensation +dispensation's +dispensations +dispense +dispensed +dispenser +dispenser's +dispensers +dispenses +dispensing +dispersal +dispersal's +disperse +dispersed +disperses +dispersing +dispersion +dispersion's +dispirit +dispirited +dispiriting +dispirits +displace +displaced +displacement +displacement's +displacements +displaces +displacing +display +display's +displayable +displayed +displaying +displays +displease +displeased +displeases +displeasing +displeasure +displeasure's +disport +disported +disporting +disports +disposable +disposable's +disposables +disposal +disposal's +disposals +dispose +disposed +disposes +disposing +disposition +disposition's +dispositions +dispossess +dispossessed +dispossesses +dispossessing +dispossession +dispossession's +disproof +disproportion +disproportion's +disproportionate +disproportionately +disproportions +disprove +disproved +disproven +disproves +disproving +disputable +disputant +disputant's +disputants +disputation +disputation's +disputations +disputatious +dispute +dispute's +disputed +disputes +disputing +disqualification +disqualification's +disqualifications +disqualified +disqualifies +disqualify +disqualifying +disquiet +disquiet's +disquieted +disquieting +disquiets +disquisition +disquisition's +disquisitions +disregard +disregard's +disregarded +disregarding +disregards +disrepair +disrepair's +disreputable +disreputably +disrepute +disrepute's +disrespect +disrespect's +disrespected +disrespectful +disrespectfully +disrespecting +disrespects +disrobe +disrobed +disrobes +disrobing +disrupt +disrupted +disrupting +disruption +disruption's +disruptions +disruptive +disrupts +diss +diss's +dissatisfaction +dissatisfaction's +dissatisfied +dissatisfies +dissatisfy +dissatisfying +dissect +dissected +dissecting +dissection +dissection's +dissections +dissects +dissed +dissemble +dissembled +dissembles +dissembling +disseminate +disseminated +disseminates +disseminating +dissemination +dissemination's +dissension +dissension's +dissensions +dissent +dissent's +dissented +dissenter +dissenter's +dissenters +dissenting +dissents +dissertation +dissertation's +dissertations +disservice +disservice's +disservices +disses +dissidence +dissidence's +dissident +dissident's +dissidents +dissimilar +dissimilarities +dissimilarity +dissimilarity's +dissimulate +dissimulated +dissimulates +dissimulating +dissimulation +dissimulation's +dissing +dissipate +dissipated +dissipates +dissipating +dissipation +dissipation's +dissociate +dissociated +dissociates +dissociating +dissociation +dissociation's +dissolute +dissolutely +dissoluteness +dissoluteness's +dissolution +dissolution's +dissolve +dissolved +dissolves +dissolving +dissonance +dissonance's +dissonances +dissonant +dissuade +dissuaded +dissuades +dissuading +dissuasion +dissuasion's +distaff +distaff's +distaffs +distance +distance's +distanced +distances +distancing +distant +distantly +distaste +distaste's +distasteful +distastefully +distastes +distemper +distemper's +distend +distended +distending +distends +distension +distension's +distensions +distention +distention's +distentions +distil +distill +distillate +distillate's +distillates +distillation +distillation's +distillations +distilled +distiller +distiller's +distilleries +distillers +distillery +distillery's +distilling +distills +distils +distinct +distincter +distinctest +distinction +distinction's +distinctions +distinctive +distinctively +distinctiveness +distinctiveness's +distinctly +distinguish +distinguishable +distinguished +distinguishes +distinguishing +distort +distorted +distorter +distorting +distortion +distortion's +distortions +distorts +distract +distracted +distracting +distraction +distraction's +distractions +distracts +distrait +distraught +distress +distress's +distressed +distresses +distressful +distressing +distressingly +distribute +distributed +distributes +distributing +distribution +distribution's +distributions +distributive +distributor +distributor's +distributors +district +district's +districts +distrust +distrust's +distrusted +distrustful +distrustfully +distrusting +distrusts +disturb +disturbance +disturbance's +disturbances +disturbed +disturbing +disturbingly +disturbs +disunite +disunited +disunites +disuniting +disunity +disunity's +disuse +disuse's +disused +disuses +disusing +ditch +ditch's +ditched +ditches +ditching +dither +dither's +dithered +dithering +dithers +ditties +ditto +ditto's +dittoed +dittoes +dittoing +dittos +ditty +ditty's +diuretic +diuretic's +diuretics +diurnal +diurnally +diva +diva's +divan +divan's +divans +divas +dive +dive's +dived +diver +diver's +diverge +diverged +divergence +divergence's +divergences +divergent +diverges +diverging +divers +diverse +diversely +diversification +diversification's +diversified +diversifies +diversify +diversifying +diversion +diversion's +diversionary +diversions +diversities +diversity +diversity's +divert +diverted +diverting +diverts +dives +divest +divested +divesting +divests +divide +divide's +divided +dividend +dividend's +dividends +divider +divider's +dividers +divides +dividing +divination +divination's +divine +divine's +divined +divinely +diviner +diviner's +diviners +divines +divinest +diving +diving's +divining +divinities +divinity +divinity's +divisibility +divisibility's +divisible +division +division's +divisional +divisions +divisive +divisively +divisiveness +divisiveness's +divisor +divisor's +divisors +divorce +divorce's +divorced +divorces +divorcing +divorcée +divorcée's +divorcées +divot +divot's +divots +divulge +divulged +divulges +divulging +divvied +divvies +divvy +divvy's +divvying +dizzied +dizzier +dizzies +dizziest +dizzily +dizziness +dizziness's +dizzy +dizzying +djinn +djinn's +djinni +djinni's +djinns +do +do's +doable +doc +doc's +docent +docent's +docents +docile +docilely +docility +docility's +dock +dock's +docked +docket +docket's +docketed +docketing +dockets +docking +docks +dockyard +dockyard's +dockyards +docs +doctor +doctor's +doctoral +doctorate +doctorate's +doctorates +doctored +doctoring +doctors +doctrinaire +doctrinaire's +doctrinaires +doctrinal +doctrine +doctrine's +doctrines +docudrama +docudrama's +docudramas +document +document's +documentaries +documentary +documentary's +documentation +documentation's +documented +documenting +documents +dodder +dodder's +doddered +doddering +dodders +dodge +dodge's +dodged +dodger +dodger's +dodgers +dodges +dodging +dodo +dodo's +dodoes +dodos +doe +doe's +doer +doer's +doers +does +doesn't +doff +doffed +doffing +doffs +dog +dog's +dogcatcher +dogcatcher's +dogcatchers +dogfight +dogfight's +dogfights +dogfish +dogfish's +dogfishes +dogged +doggedly +doggedness +doggedness's +doggerel +doggerel's +doggie +doggie's +doggier +doggies +doggiest +dogging +doggone +doggoned +doggoneder +doggonedest +doggoner +doggones +doggonest +doggoning +doggy +doggy's +doghouse +doghouse's +doghouses +dogie +dogie's +dogies +dogma +dogma's +dogmas +dogmata +dogmatic +dogmatically +dogmatism +dogmatism's +dogmatist +dogmatist's +dogmatists +dogs +dogtrot +dogtrot's +dogtrots +dogtrotted +dogtrotting +dogwood +dogwood's +dogwoods +doilies +doily +doily's +doing +doing's +doings +doldrums +doldrums's +dole +dole's +doled +doleful +dolefully +doles +doling +doll +doll's +dollar +dollar's +dollars +dolled +dollhouse +dollhouse's +dollhouses +dollies +dolling +dollop +dollop's +dolloped +dolloping +dollops +dolls +dolly +dolly's +dolmen +dolmen's +dolmens +dolorous +dolphin +dolphin's +dolphins +dolt +dolt's +doltish +dolts +domain +domain's +domains +dome +dome's +domed +domes +domestic +domestic's +domestically +domesticate +domesticated +domesticates +domesticating +domestication +domestication's +domesticity +domesticity's +domestics +domicile +domicile's +domiciled +domiciles +domiciling +dominance +dominance's +dominant +dominant's +dominantly +dominants +dominate +dominated +dominates +dominating +domination +domination's +domineer +domineered +domineering +domineers +doming +dominion +dominion's +dominions +domino +domino's +dominoes +dominos +don +don's +don't +donate +donated +donates +donating +donation +donation's +donations +done +donkey +donkey's +donkeys +donned +donning +donor +donor's +donors +dons +donut +donut's +donuts +doodad +doodad's +doodads +doodle +doodle's +doodled +doodler +doodler's +doodlers +doodles +doodling +doohickey +doohickey's +doohickeys +doom +doom's +doomed +dooming +dooms +doomsday +doomsday's +door +door's +doorbell +doorbell's +doorbells +doorknob +doorknob's +doorknobs +doorman +doorman's +doormat +doormat's +doormats +doormen +doors +doorstep +doorstep's +doorsteps +doorway +doorway's +doorways +dope +dope's +doped +dopes +dopey +dopier +dopiest +doping +dopy +dories +dork +dork's +dorkier +dorkiest +dorks +dorky +dorm +dorm's +dormancy +dormancy's +dormant +dormer +dormer's +dormers +dormice +dormitories +dormitory +dormitory's +dormouse +dormouse's +dorms +dorsal +dory +dory's +dos +dosage +dosage's +dosages +dose +dose's +dosed +doses +dosing +dossier +dossier's +dossiers +dot +dot's +dotage +dotage's +dote +doted +dotes +doth +doting +dotingly +dots +dotted +dotting +dotty +double +double's +doubled +doubles +doublet +doublet's +doublets +doubling +doubloon +doubloon's +doubloons +doubly +doubt +doubt's +doubted +doubter +doubter's +doubters +doubtful +doubtfully +doubting +doubtless +doubtlessly +doubts +douche +douche's +douched +douches +douching +dough +dough's +doughier +doughiest +doughnut +doughnut's +doughnuts +doughtier +doughtiest +doughty +doughy +dour +dourer +dourest +dourly +douse +doused +douses +dousing +dove +dove's +doves +dovetail +dovetail's +dovetailed +dovetailing +dovetails +dowager +dowager's +dowagers +dowdier +dowdies +dowdiest +dowdily +dowdiness +dowdiness's +dowdy +dowel +dowel's +doweled +doweling +dowelled +dowelling +dowels +down +down's +downbeat +downbeat's +downbeats +downcast +downed +downer +downer's +downers +downfall +downfall's +downfalls +downgrade +downgrade's +downgraded +downgrades +downgrading +downhearted +downhill +downhill's +downhills +downier +downiest +downing +download +download's +downloaded +downloading +downloads +downplay +downplayed +downplaying +downplays +downpour +downpour's +downpours +downright +downs +downscale +downsize +downsized +downsizes +downsizing +downsizing's +downstage +downstairs +downstairs's +downstate +downstate's +downstream +downswing +downswing's +downswings +downtime +downtime's +downtown +downtown's +downtrodden +downturn +downturn's +downturns +downward +downwards +downwind +downy +dowries +dowry +dowry's +dowse +dowsed +dowses +dowsing +doxologies +doxology +doxology's +doyen +doyen's +doyens +doze +doze's +dozed +dozen +dozen's +dozens +dozes +dozing +drab +drab's +drabber +drabbest +drably +drabness +drabness's +drabs +drachma +drachma's +drachmae +drachmai +drachmas +draconian +draft +draft's +drafted +draftee +draftee's +draftees +draftier +draftiest +draftiness +draftiness's +drafting +drafts +draftsman +draftsman's +draftsmanship +draftsmanship's +draftsmen +drafty +drag +drag's +dragged +dragging +dragnet +dragnet's +dragnets +dragon +dragon's +dragonflies +dragonfly +dragonfly's +dragons +dragoon +dragoon's +dragooned +dragooning +dragoons +drags +drain +drain's +drainage +drainage's +drained +drainer +drainer's +drainers +draining +drainpipe +drainpipe's +drainpipes +drains +drake +drake's +drakes +dram +dram's +drama +drama's +dramas +dramatic +dramatically +dramatics +dramatics's +dramatist +dramatist's +dramatists +dramatization +dramatization's +dramatizations +dramatize +dramatized +dramatizes +dramatizing +drams +drank +drape +drape's +draped +draperies +drapery +drapery's +drapes +draping +drastic +drastically +draw +draw's +drawback +drawback's +drawbacks +drawbridge +drawbridge's +drawbridges +drawer +drawer's +drawers +drawing +drawing's +drawings +drawl +drawl's +drawled +drawling +drawls +drawn +draws +drawstring +drawstring's +drawstrings +dray +dray's +drays +dread +dread's +dreaded +dreadful +dreadfully +dreading +dreadlocks +dreadlocks's +dreadnought +dreadnought's +dreadnoughts +dreads +dream +dream's +dreamed +dreamer +dreamer's +dreamers +dreamier +dreamiest +dreamily +dreaming +dreamland +dreamland's +dreamless +dreamlike +dreams +dreamy +drearier +dreariest +drearily +dreariness +dreariness's +dreary +dredge +dredge's +dredged +dredger +dredger's +dredgers +dredges +dredging +dregs +dregs's +drench +drenched +drenches +drenching +dress +dress's +dressage +dressage's +dressed +dresser +dresser's +dressers +dresses +dressier +dressiest +dressiness +dressiness's +dressing +dressing's +dressings +dressmaker +dressmaker's +dressmakers +dressmaking +dressmaking's +dressy +drew +dribble +dribble's +dribbled +dribbler +dribbler's +dribblers +dribbles +dribbling +driblet +driblet's +driblets +dried +drier +drier's +driers +dries +driest +drift +drift's +drifted +drifter +drifter's +drifters +drifting +drifts +driftwood +driftwood's +drill +drill's +drilled +drilling +drills +drily +drink +drink's +drinkable +drinker +drinker's +drinkers +drinking +drinkings +drinks +drip +drip's +dripped +dripping +dripping's +drippings +drips +drive +drive's +drivel +drivel's +driveled +driveling +drivelled +drivelling +drivels +driven +driver +driver's +drivers +drives +driveway +driveway's +driveways +driving +drivings +drizzle +drizzle's +drizzled +drizzles +drizzlier +drizzliest +drizzling +drizzly +droll +droller +drolleries +drollery +drollery's +drollest +drollness +drollness's +drolly +dromedaries +dromedary +dromedary's +drone +drone's +droned +drones +droning +drool +drool's +drooled +drooling +drools +droop +droop's +drooped +droopier +droopiest +drooping +droops +droopy +drop +drop's +droplet +droplet's +droplets +dropout +dropout's +dropouts +dropped +dropper +dropper's +droppers +dropping +droppings +droppings's +drops +dropsy +dropsy's +dross +dross's +drought +drought's +droughts +drouth +drouth's +drouthes +drouths +drove +drove's +drover +drover's +drovers +droves +drown +drowned +drowning +drowning's +drownings +drowns +drowse +drowse's +drowsed +drowses +drowsier +drowsiest +drowsily +drowsiness +drowsiness's +drowsing +drowsy +drub +drubbed +drubbing +drubbing's +drubbings +drubs +drudge +drudge's +drudged +drudgery +drudgery's +drudges +drudging +drug +drug's +drugged +drugging +druggist +druggist's +druggists +drugs +drugstore +drugstore's +drugstores +druid +druid's +druids +drum +drum's +drummed +drummer +drummer's +drummers +drumming +drums +drumstick +drumstick's +drumsticks +drunk +drunk's +drunkard +drunkard's +drunkards +drunken +drunkenly +drunkenness +drunkenness's +drunker +drunkest +drunks +dry +dry's +dryad +dryad's +dryads +dryer +dryer's +dryers +dryest +drying +dryly +dryness +dryness's +drys +drywall +drywall's +dual +dualism +duality +duality's +dub +dub's +dubbed +dubbing +dubiety +dubiety's +dubious +dubiously +dubiousness +dubiousness's +dubs +ducal +ducat +ducat's +ducats +duchess +duchess's +duchesses +duchies +duchy +duchy's +duck +duck's +duckbill +duckbill's +duckbills +ducked +ducking +duckling +duckling's +ducklings +ducks +duct +duct's +ductile +ductility +ductility's +ducting +ductless +ducts +dud +dud's +dude +dude's +duded +dudes +dudgeon +dudgeon's +duding +duds +due +due's +duel +duel's +dueled +dueling +duelist +duelist's +duelists +duelled +duelling +duellist +duellist's +duellists +duels +dues +duet +duet's +duets +duff +duffer +duffer's +duffers +dug +dugout +dugout's +dugouts +duh +duke +duke's +dukedom +dukedom's +dukedoms +dukes +dulcet +dulcimer +dulcimer's +dulcimers +dull +dullard +dullard's +dullards +dulled +duller +dullest +dulling +dullness +dullness's +dulls +dully +dulness +dulness's +duly +dumb +dumbbell +dumbbell's +dumbbells +dumber +dumbest +dumbfound +dumbfounded +dumbfounding +dumbfounds +dumbly +dumbness +dumbness's +dumbwaiter +dumbwaiter's +dumbwaiters +dumfound +dumfounded +dumfounding +dumfounds +dummies +dummy +dummy's +dump +dump's +dumped +dumpier +dumpiest +dumping +dumpling +dumpling's +dumplings +dumps +dumpster +dumpy +dun +dun's +dunce +dunce's +dunces +dune +dune's +dunes +dung +dung's +dungaree +dungaree's +dungarees +dunged +dungeon +dungeon's +dungeons +dunging +dungs +dunk +dunk's +dunked +dunking +dunks +dunned +dunner +dunnest +dunning +dunno +duns +duo +duo's +duodena +duodenal +duodenum +duodenum's +duodenums +duos +dupe +dupe's +duped +dupes +duping +duplex +duplex's +duplexes +duplicate +duplicate's +duplicated +duplicates +duplicating +duplication +duplication's +duplicator +duplicator's +duplicators +duplicity +duplicity's +durability +durability's +durable +durably +duration +duration's +duress +duress's +during +dusk +dusk's +duskier +duskiest +dusky +dust +dust's +dustbin +dustbin's +dustbins +dusted +duster +duster's +dusters +dustier +dustiest +dustiness +dustiness's +dusting +dustless +dustman +dustmen +dustpan +dustpan's +dustpans +dusts +dusty +duteous +dutiable +duties +dutiful +dutifully +duty +duty's +duvet +dwarf +dwarf's +dwarfed +dwarfing +dwarfish +dwarfism +dwarfism's +dwarfs +dwarves +dweeb +dweeb's +dweebs +dwell +dwelled +dweller +dweller's +dwellers +dwelling +dwelling's +dwellings +dwells +dwelt +dwindle +dwindled +dwindles +dwindling +dyadic +dye +dye's +dyed +dyeing +dyer +dyer's +dyers +dyes +dyestuff +dyestuff's +dying +dying's +dyke +dyke's +dykes +dynamic +dynamic's +dynamical +dynamically +dynamics +dynamics's +dynamism +dynamism's +dynamite +dynamite's +dynamited +dynamites +dynamiting +dynamo +dynamo's +dynamos +dynastic +dynasties +dynasty +dynasty's +dysentery +dysentery's +dysfunction +dysfunction's +dysfunctional +dysfunctions +dyslexia +dyslexia's +dyslexic +dyslexic's +dyslexics +dyspepsia +dyspepsia's +dyspeptic +dyspeptic's +dyspeptics +débutante +débutante's +débutantes +décolleté +dérailleur +dérailleur's +dérailleurs +détente +détente's +e +e'er +eBay +eBay's +eMusic +each +eager +eagerer +eagerest +eagerly +eagerness +eagerness's +eagle +eagle's +eagles +eaglet +eaglet's +eaglets +ear +ear's +earache +earache's +earaches +eardrum +eardrum's +eardrums +earful +earful's +earfuls +earl +earl's +earldom +earldom's +earldoms +earlier +earliest +earliness +earliness's +earlobe +earlobe's +earlobes +earls +early +earmark +earmark's +earmarked +earmarking +earmarks +earmuff +earmuff's +earmuffs +earn +earned +earner +earner's +earners +earnest +earnest's +earnestly +earnestness +earnestness's +earnests +earning +earnings +earnings's +earns +earphone +earphone's +earphones +earplug +earplug's +earplugs +earring +earring's +earrings +ears +earshot +earshot's +earsplitting +earth +earth's +earthed +earthen +earthenware +earthenware's +earthier +earthiest +earthiness +earthiness's +earthing +earthlier +earthliest +earthling +earthling's +earthlings +earthly +earthquake +earthquake's +earthquakes +earths +earthshaking +earthward +earthwork +earthwork's +earthworks +earthworm +earthworm's +earthworms +earthy +earwax +earwax's +earwig +earwig's +earwigs +ease +ease's +eased +easel +easel's +easels +eases +easier +easiest +easily +easiness +easiness's +easing +east +east's +eastbound +easterlies +easterly +easterly's +eastern +easterner +easterner's +easterners +easternmost +eastward +eastwards +easy +easygoing +eat +eatable +eatable's +eatables +eaten +eater +eater's +eateries +eaters +eatery +eatery's +eating +eats +eave +eave's +eaves +eavesdrop +eavesdropped +eavesdropper +eavesdropper's +eavesdroppers +eavesdropping +eavesdrops +ebb +ebb's +ebbed +ebbing +ebbs +ebonies +ebony +ebony's +ebullience +ebullience's +ebullient +eccentric +eccentric's +eccentrically +eccentricities +eccentricity +eccentricity's +eccentrics +ecclesiastic +ecclesiastic's +ecclesiastical +ecclesiastics +echelon +echelon's +echelons +echo +echo's +echoed +echoes +echoing +echos +eclectic +eclectic's +eclectically +eclecticism +eclecticism's +eclectics +eclipse +eclipse's +eclipsed +eclipses +eclipsing +ecliptic +ecliptic's +ecological +ecologically +ecologist +ecologist's +ecologists +ecology +ecology's +econometric +economic +economical +economically +economics +economics's +economies +economist +economist's +economists +economize +economized +economizes +economizing +economy +economy's +ecosystem +ecosystem's +ecosystems +ecru +ecru's +ecstasies +ecstasy +ecstasy's +ecstatic +ecstatically +ecumenical +ecumenically +eczema +eczema's +ed's +eddied +eddies +eddy +eddy's +eddying +edelweiss +edelweiss's +edema +edema's +edge +edge's +edged +edger +edges +edgeways +edgewise +edgier +edgiest +edginess +edginess's +edging +edging's +edgings +edgy +edibility +edibility's +edible +edible's +edibles +edict +edict's +edicts +edification +edification's +edifice +edifice's +edifices +edified +edifies +edify +edifying +edit +edit's +editable +edited +editing +edition +edition's +editions +editor +editor's +editorial +editorial's +editorialize +editorialized +editorializes +editorializing +editorially +editorials +editors +editorship +edits +educable +educate +educated +educates +educating +education +education's +educational +educationally +educations +educator +educator's +educators +eel +eel's +eels +eerie +eerier +eeriest +eerily +eeriness +eeriness's +eery +efface +effaced +effacement +effacement's +effaces +effacing +effect +effect's +effected +effecting +effective +effectively +effectiveness +effectiveness's +effects +effectual +effectually +effectuate +effectuated +effectuates +effectuating +effeminacy +effeminacy's +effeminate +effervesce +effervesced +effervescence +effervescence's +effervescent +effervesces +effervescing +effete +efficacious +efficaciously +efficacy +efficacy's +efficiency +efficiency's +efficient +efficiently +effigies +effigy +effigy's +effluent +effluent's +effluents +effort +effort's +effortless +effortlessly +efforts +effrontery +effrontery's +effulgence +effulgence's +effulgent +effusion +effusion's +effusions +effusive +effusively +effusiveness +effusiveness's +egalitarian +egalitarian's +egalitarianism +egalitarianism's +egalitarians +egg +egg's +eggbeater +eggbeater's +eggbeaters +egged +egghead +egghead's +eggheads +egging +eggnog +eggnog's +eggplant +eggplant's +eggplants +eggs +eggshell +eggshell's +eggshells +egis +egis's +eglantine +eglantine's +eglantines +ego +ego's +egocentric +egocentric's +egocentrics +egoism +egoism's +egoist +egoist's +egoistic +egoists +egos +egotism +egotism's +egotist +egotist's +egotistic +egotistical +egotistically +egotists +egregious +egregiously +egress +egress's +egresses +egret +egret's +egrets +eh +eider +eider's +eiderdown +eiderdown's +eiderdowns +eiders +eigenvalue +eigenvalues +eight +eight's +eighteen +eighteen's +eighteens +eighteenth +eighteenth's +eighteenths +eighth +eighth's +eighths +eighties +eightieth +eightieth's +eightieths +eights +eighty +eighty's +either +ejaculate +ejaculated +ejaculates +ejaculating +ejaculation +ejaculation's +ejaculations +eject +ejected +ejecting +ejection +ejection's +ejections +ejects +eke +eked +ekes +eking +elaborate +elaborated +elaborately +elaborateness +elaborateness's +elaborates +elaborating +elaboration +elaboration's +elaborations +elapse +elapsed +elapses +elapsing +elastic +elastic's +elasticity +elasticity's +elastics +elate +elated +elates +elating +elation +elation's +elbow +elbow's +elbowed +elbowing +elbowroom +elbowroom's +elbows +elder +elder's +elderberries +elderberry +elderberry's +elderly +elders +eldest +elect +elect's +elected +electing +election +election's +electioneer +electioneered +electioneering +electioneers +elections +elective +elective's +electives +elector +elector's +electoral +electorate +electorate's +electorates +electors +electric +electrical +electrically +electrician +electrician's +electricians +electricity +electricity's +electrification +electrification's +electrified +electrifies +electrify +electrifying +electrocardiogram +electrocardiogram's +electrocardiograms +electrocardiograph +electrocardiograph's +electrocardiographs +electrocute +electrocuted +electrocutes +electrocuting +electrocution +electrocution's +electrocutions +electrode +electrode's +electrodes +electrodynamics +electroencephalogram +electroencephalogram's +electroencephalograms +electroencephalograph +electroencephalograph's +electroencephalographs +electrolysis +electrolysis's +electrolyte +electrolyte's +electrolytes +electrolytic +electromagnet +electromagnet's +electromagnetic +electromagnetism +electromagnetism's +electromagnets +electron +electron's +electronic +electronically +electronics +electronics's +electrons +electroplate +electroplated +electroplates +electroplating +electrostatic +elects +elegance +elegance's +elegant +elegantly +elegiac +elegiac's +elegiacs +elegies +elegy +elegy's +element +element's +elemental +elementary +elements +elephant +elephant's +elephantine +elephants +elevate +elevated +elevates +elevating +elevation +elevation's +elevations +elevator +elevator's +elevators +eleven +eleven's +elevens +eleventh +eleventh's +elevenths +elf +elf's +elfin +elfish +elicit +elicited +eliciting +elicits +elide +elided +elides +eliding +eligibility +eligibility's +eligible +eliminate +eliminated +eliminates +eliminating +elimination +elimination's +eliminations +elision +elision's +elisions +elite +elite's +elites +elitism +elitism's +elitist +elitist's +elitists +elixir +elixir's +elixirs +elk +elk's +elks +ell +ell's +ellipse +ellipse's +ellipses +ellipsis +ellipsis's +elliptic +elliptical +elliptically +ells +elm +elm's +elms +elocution +elocution's +elocutionist +elocutionist's +elocutionists +elongate +elongated +elongates +elongating +elongation +elongation's +elongations +elope +eloped +elopement +elopement's +elopements +elopes +eloping +eloquence +eloquence's +eloquent +eloquently +else +elsewhere +elucidate +elucidated +elucidates +elucidating +elucidation +elucidation's +elucidations +elude +eluded +eludes +eluding +elusive +elusively +elusiveness +elusiveness's +elves +em +em's +emaciate +emaciated +emaciates +emaciating +emaciation +emaciation's +email +email's +emailed +emailing +emails +emanate +emanated +emanates +emanating +emanation +emanation's +emanations +emancipate +emancipated +emancipates +emancipating +emancipation +emancipation's +emancipator +emancipator's +emancipators +emasculate +emasculated +emasculates +emasculating +emasculation +emasculation's +embalm +embalmed +embalmer +embalmer's +embalmers +embalming +embalms +embankment +embankment's +embankments +embargo +embargo's +embargoed +embargoes +embargoing +embark +embarkation +embarkation's +embarkations +embarked +embarking +embarks +embarrass +embarrassed +embarrasses +embarrassing +embarrassingly +embarrassment +embarrassment's +embarrassments +embassies +embassy +embassy's +embattled +embed +embedded +embedding +embeds +embellish +embellished +embellishes +embellishing +embellishment +embellishment's +embellishments +ember +ember's +embers +embezzle +embezzled +embezzlement +embezzlement's +embezzler +embezzler's +embezzlers +embezzles +embezzling +embitter +embittered +embittering +embitters +emblazon +emblazoned +emblazoning +emblazons +emblem +emblem's +emblematic +emblems +embodied +embodies +embodiment +embodiment's +embody +embodying +embolden +emboldened +emboldening +emboldens +embolism +embolism's +embolisms +emboss +embossed +embosses +embossing +embrace +embrace's +embraced +embraces +embracing +embroider +embroidered +embroideries +embroidering +embroiders +embroidery +embroidery's +embroil +embroiled +embroiling +embroils +embryo +embryo's +embryologist +embryologist's +embryologists +embryology +embryology's +embryonic +embryos +emcee +emcee's +emceed +emceeing +emcees +emend +emendation +emendation's +emendations +emended +emending +emends +emerald +emerald's +emeralds +emerge +emerged +emergence +emergence's +emergencies +emergency +emergency's +emergent +emerges +emerging +emeritus +emery +emery's +emetic +emetic's +emetics +emigrant +emigrant's +emigrants +emigrate +emigrated +emigrates +emigrating +emigration +emigration's +emigrations +eminence +eminence's +eminences +eminent +eminently +emir +emir's +emirate +emirate's +emirates +emirs +emissaries +emissary +emissary's +emission +emission's +emissions +emit +emits +emitted +emitting +emollient +emollient's +emollients +emolument +emolument's +emoluments +emote +emoted +emotes +emoting +emotion +emotion's +emotional +emotionalism +emotionalism's +emotionally +emotions +emotive +empanel +empaneled +empaneling +empanels +empathetic +empathize +empathized +empathizes +empathizing +empathy +empathy's +emperor +emperor's +emperors +emphases +emphasis +emphasis's +emphasize +emphasized +emphasizes +emphasizing +emphatic +emphatically +emphysema +emphysema's +empire +empire's +empires +empirical +empirically +empiricism +empiricism's +emplacement +emplacement's +emplacements +employ +employ's +employable +employe +employe's +employed +employee +employee's +employees +employer +employer's +employers +employes +employing +employment +employment's +employments +employs +emporia +emporium +emporium's +emporiums +empower +empowered +empowering +empowerment +empowerment's +empowers +empress +empress's +empresses +emptied +emptier +empties +emptiest +emptily +emptiness +emptiness's +empty +empty's +emptying +ems +emu +emu's +emulate +emulated +emulates +emulating +emulation +emulation's +emulations +emulator +emulator's +emulators +emulsification +emulsification's +emulsified +emulsifies +emulsify +emulsifying +emulsion +emulsion's +emulsions +emus +enable +enabled +enables +enabling +enact +enacted +enacting +enactment +enactment's +enactments +enacts +enamel +enamel's +enameled +enameling +enamelled +enamelling +enamels +enamor +enamored +enamoring +enamors +encamp +encamped +encamping +encampment +encampment's +encampments +encamps +encapsulate +encapsulated +encapsulates +encapsulating +encapsulation +encapsulation's +encapsulations +encase +encased +encases +encasing +encephalitis +encephalitis's +enchant +enchanted +enchanter +enchanter's +enchanters +enchanting +enchantingly +enchantment +enchantment's +enchantments +enchantress +enchantress's +enchantresses +enchants +enchilada +enchilada's +enchiladas +encircle +encircled +encirclement +encirclement's +encircles +encircling +enclave +enclave's +enclaves +enclose +enclosed +encloses +enclosing +enclosure +enclosure's +enclosures +encode +encoded +encoder +encoder's +encoders +encodes +encoding +encompass +encompassed +encompasses +encompassing +encore +encore's +encored +encores +encoring +encounter +encounter's +encountered +encountering +encounters +encourage +encouraged +encouragement +encouragement's +encouragements +encourages +encouraging +encouragingly +encroach +encroached +encroaches +encroaching +encroachment +encroachment's +encroachments +encrust +encrustation +encrustation's +encrustations +encrusted +encrusting +encrusts +encrypt +encrypted +encryption +encrypts +encumber +encumbered +encumbering +encumbers +encumbrance +encumbrance's +encumbrances +encyclical +encyclical's +encyclicals +encyclopaedia +encyclopaedia's +encyclopaedias +encyclopedia +encyclopedia's +encyclopedias +encyclopedic +end +end's +endanger +endangered +endangering +endangers +endear +endeared +endearing +endearingly +endearment +endearment's +endearments +endears +endeavor +endeavor's +endeavored +endeavoring +endeavors +ended +endemic +endemic's +endemics +ending +ending's +endings +endive +endive's +endives +endless +endlessly +endlessness +endlessness's +endocrine +endocrine's +endocrines +endorse +endorsed +endorsement +endorsement's +endorsements +endorser +endorser's +endorsers +endorses +endorsing +endow +endowed +endowing +endowment +endowment's +endowments +endows +ends +endue +endued +endues +enduing +endurable +endurance +endurance's +endure +endured +endures +enduring +endways +endwise +enema +enema's +enemas +enemata +enemies +enemy +enemy's +energetic +energetically +energies +energize +energized +energizer +energizer's +energizers +energizes +energizing +energy +energy's +enervate +enervated +enervates +enervating +enervation +enervation's +enfeeble +enfeebled +enfeebles +enfeebling +enfold +enfolded +enfolding +enfolds +enforce +enforceable +enforced +enforcement +enforcement's +enforcer +enforcer's +enforcers +enforces +enforcing +enfranchise +enfranchised +enfranchisement +enfranchisement's +enfranchises +enfranchising +engage +engaged +engagement +engagement's +engagements +engages +engaging +engagingly +engender +engendered +engendering +engenders +engine +engine's +engineer +engineer's +engineered +engineering +engineering's +engineers +engines +engorge +engorged +engorges +engorging +engrave +engraved +engraver +engraver's +engravers +engraves +engraving +engraving's +engravings +engross +engrossed +engrosses +engrossing +engulf +engulfed +engulfing +engulfs +enhance +enhanced +enhancement +enhancement's +enhancements +enhancer +enhances +enhancing +enigma +enigma's +enigmas +enigmatic +enigmatically +enjoin +enjoined +enjoining +enjoins +enjoy +enjoyable +enjoyed +enjoying +enjoyment +enjoyment's +enjoyments +enjoys +enlarge +enlarged +enlargement +enlargement's +enlargements +enlarger +enlarger's +enlargers +enlarges +enlarging +enlighten +enlightened +enlightening +enlightenment +enlightenment's +enlightens +enlist +enlisted +enlistee +enlistee's +enlistees +enlisting +enlistment +enlistment's +enlistments +enlists +enliven +enlivened +enlivening +enlivens +enmesh +enmeshed +enmeshes +enmeshing +enmities +enmity +enmity's +ennoble +ennobled +ennoblement +ennoblement's +ennobles +ennobling +ennui +ennui's +enormities +enormity +enormity's +enormous +enormously +enormousness +enormousness's +enough +enough's +enquire +enquired +enquires +enquiries +enquiring +enquiry +enquiry's +enrage +enraged +enrages +enraging +enrapture +enraptured +enraptures +enrapturing +enrich +enriched +enriches +enriching +enrichment +enrichment's +enrol +enroll +enrolled +enrolling +enrollment +enrollment's +enrollments +enrolls +enrolment +enrolment's +enrolments +enrols +ensconce +ensconced +ensconces +ensconcing +ensemble +ensemble's +ensembles +enshrine +enshrined +enshrines +enshrining +enshroud +enshrouded +enshrouding +enshrouds +ensign +ensign's +ensigns +enslave +enslaved +enslavement +enslavement's +enslaves +enslaving +ensnare +ensnared +ensnares +ensnaring +ensue +ensued +ensues +ensuing +ensure +ensured +ensures +ensuring +entail +entailed +entailing +entails +entangle +entangled +entanglement +entanglement's +entanglements +entangles +entangling +entente +entente's +ententes +enter +entered +entering +enterprise +enterprise's +enterprises +enterprising +enters +entertain +entertained +entertainer +entertainer's +entertainers +entertaining +entertaining's +entertainingly +entertainment +entertainment's +entertainments +entertains +enthral +enthrall +enthralled +enthralling +enthralls +enthrals +enthrone +enthroned +enthronement +enthronement's +enthronements +enthrones +enthroning +enthuse +enthused +enthuses +enthusiasm +enthusiasm's +enthusiasms +enthusiast +enthusiast's +enthusiastic +enthusiastically +enthusiasts +enthusing +entice +enticed +enticement +enticement's +enticements +entices +enticing +entire +entirely +entirety +entirety's +entities +entitle +entitled +entitlement +entitlement's +entitlements +entitles +entitling +entity +entity's +entomb +entombed +entombing +entombment +entombment's +entombs +entomological +entomologist +entomologist's +entomologists +entomology +entomology's +entourage +entourage's +entourages +entrails +entrails's +entrance +entrance's +entranced +entrances +entrancing +entrant +entrant's +entrants +entrap +entrapment +entrapment's +entrapped +entrapping +entraps +entreat +entreated +entreaties +entreating +entreats +entreaty +entreaty's +entrench +entrenched +entrenches +entrenching +entrenchment +entrenchment's +entrenchments +entrepreneur +entrepreneur's +entrepreneurial +entrepreneurs +entries +entropy +entropy's +entrust +entrusted +entrusting +entrusts +entry +entry's +entryway +entryway's +entryways +entrée +entrée's +entrées +entwine +entwined +entwines +entwining +enumerable +enumerate +enumerated +enumerates +enumerating +enumeration +enumeration's +enumerations +enunciate +enunciated +enunciates +enunciating +enunciation +enunciation's +enure +enured +enures +enuring +envelop +envelope +envelope's +enveloped +envelopes +enveloping +envelopment +envelopment's +envelops +enviable +enviably +envied +envies +envious +enviously +enviousness +enviousness's +environment +environment's +environmental +environmentalism +environmentalism's +environmentalist +environmentalist's +environmentalists +environmentally +environments +environs +environs's +envisage +envisaged +envisages +envisaging +envision +envisioned +envisioning +envisions +envoy +envoy's +envoys +envy +envy's +envying +enzyme +enzyme's +enzymes +eon +eon's +eons +epaulet +epaulet's +epaulets +epaulette +epaulette's +epaulettes +ephemeral +epic +epic's +epicenter +epicenter's +epicenters +epics +epicure +epicure's +epicurean +epicurean's +epicureans +epicures +epidemic +epidemic's +epidemics +epidemiology +epidemiology's +epidermal +epidermis +epidermis's +epidermises +epiglottides +epiglottis +epiglottis's +epiglottises +epigram +epigram's +epigrammatic +epigrams +epilepsy +epilepsy's +epileptic +epileptic's +epileptics +epilog +epilog's +epilogs +epilogue +epilogue's +epilogues +episcopacy +episcopacy's +episcopal +episcopate +episcopate's +episode +episode's +episodes +episodic +epistemology +epistle +epistle's +epistles +epistolary +epitaph +epitaph's +epitaphs +epithet +epithet's +epithets +epitome +epitome's +epitomes +epitomize +epitomized +epitomizes +epitomizing +epoch +epoch's +epochal +epochs +epoxied +epoxies +epoxy +epoxy's +epoxyed +epoxying +epsilon +equability +equability's +equable +equably +equal +equal's +equaled +equaling +equality +equality's +equalization +equalization's +equalize +equalized +equalizer +equalizer's +equalizers +equalizes +equalizing +equalled +equalling +equally +equals +equanimity +equanimity's +equate +equated +equates +equating +equation +equation's +equations +equator +equator's +equatorial +equators +equestrian +equestrian's +equestrians +equestrienne +equestrienne's +equestriennes +equidistant +equilateral +equilateral's +equilaterals +equilibrium +equilibrium's +equine +equine's +equines +equinoctial +equinox +equinox's +equinoxes +equip +equipage +equipage's +equipages +equipment +equipment's +equipoise +equipoise's +equipped +equipping +equips +equitable +equitably +equities +equity +equity's +equivalence +equivalence's +equivalences +equivalent +equivalent's +equivalently +equivalents +equivocal +equivocally +equivocate +equivocated +equivocates +equivocating +equivocation +equivocation's +equivocations +era +era's +eradicate +eradicated +eradicates +eradicating +eradication +eradication's +eras +erase +erased +eraser +eraser's +erasers +erases +erasing +erasure +erasure's +erasures +ere +erect +erected +erectile +erecting +erection +erection's +erections +erectly +erectness +erectness's +erects +erg +erg's +ergo +ergonomic +ergonomics +ergonomics's +ergs +ermine +ermine's +ermines +erode +eroded +erodes +eroding +erogenous +erosion +erosion's +erosive +erotic +erotica +erotica's +erotically +eroticism +eroticism's +err +errand +errand's +errands +errant +errata +errata's +erratas +erratic +erratically +erratum +erratum's +erred +erring +erroneous +erroneously +error +error's +errors +errs +ersatz +ersatz's +ersatzes +erstwhile +erudite +eruditely +erudition +erudition's +erupt +erupted +erupting +eruption +eruption's +eruptions +erupts +erythrocyte +erythrocyte's +erythrocytes +es +escalate +escalated +escalates +escalating +escalation +escalation's +escalations +escalator +escalator's +escalators +escapade +escapade's +escapades +escape +escape's +escaped +escapee +escapee's +escapees +escapes +escaping +escapism +escapism's +escapist +escapist's +escapists +escarole +escarole's +escaroles +escarpment +escarpment's +escarpments +eschatology +eschew +eschewed +eschewing +eschews +escort +escort's +escorted +escorting +escorts +escrow +escrow's +escrows +escutcheon +escutcheon's +escutcheons +esophagi +esophagus +esophagus's +esophaguses +esoteric +esoterically +espadrille +espadrille's +espadrilles +especial +especially +espied +espies +espionage +espionage's +esplanade +esplanade's +esplanades +espousal +espousal's +espouse +espoused +espouses +espousing +espresso +espresso's +espressos +espy +espying +esquire +esquire's +esquires +essay +essay's +essayed +essaying +essayist +essayist's +essayists +essays +essence +essence's +essences +essential +essential's +essentially +essentials +establish +established +establishes +establishing +establishment +establishment's +establishments +estate +estate's +estates +esteem +esteem's +esteemed +esteeming +esteems +ester +ester's +esters +esthete +esthete's +esthetes +esthetic +esthetics +estimable +estimate +estimate's +estimated +estimates +estimating +estimation +estimation's +estimations +estimator +estimator's +estimators +estrange +estranged +estrangement +estrangement's +estrangements +estranges +estranging +estrogen +estrogen's +estuaries +estuary +estuary's +eta +etch +etched +etcher +etcher's +etchers +etches +etching +etching's +etchings +eternal +eternally +eternities +eternity +eternity's +ether +ether's +ethereal +ethereally +ethic +ethic's +ethical +ethically +ethics +ethics's +ethnic +ethnic's +ethnically +ethnicity +ethnicity's +ethnics +ethnological +ethnologist +ethnologist's +ethnologists +ethnology +ethnology's +ethos +ethos's +etiologies +etiology +etiology's +etiquette +etiquette's +etymological +etymologies +etymologist +etymologist's +etymologists +etymology +etymology's +eucalypti +eucalyptus +eucalyptus's +eucalyptuses +eugenics +eugenics's +eulogies +eulogistic +eulogize +eulogized +eulogizes +eulogizing +eulogy +eulogy's +eunuch +eunuch's +eunuchs +euphemism +euphemism's +euphemisms +euphemistic +euphemistically +euphony +euphony's +euphoria +euphoria's +euphoric +eureka +euro +euro's +euros +eutectic +euthanasia +euthanasia's +evacuate +evacuated +evacuates +evacuating +evacuation +evacuation's +evacuations +evacuee +evacuee's +evacuees +evade +evaded +evades +evading +evaluate +evaluated +evaluates +evaluating +evaluation +evaluation's +evaluations +evanescent +evangelical +evangelical's +evangelicals +evangelism +evangelism's +evangelist +evangelist's +evangelistic +evangelists +evangelize +evangelized +evangelizes +evangelizing +evaporate +evaporated +evaporates +evaporating +evaporation +evaporation's +evasion +evasion's +evasions +evasive +evasively +evasiveness +evasiveness's +eve +eve's +even +even's +evened +evener +evenest +evenhanded +evening +evening's +evenings +evenly +evenness +evenness's +evens +event +event's +eventful +eventfully +eventfulness +eventfulness's +eventide +eventide's +events +eventual +eventualities +eventuality +eventuality's +eventually +eventuate +eventuated +eventuates +eventuating +ever +everglade +everglade's +everglades +evergreen +evergreen's +evergreens +everlasting +everlasting's +everlastings +evermore +every +everybody +everybody's +everyday +everyone +everyone's +everyplace +everything +everything's +everywhere +eves +evict +evicted +evicting +eviction +eviction's +evictions +evicts +evidence +evidence's +evidenced +evidences +evidencing +evident +evidently +evil +evil's +evildoer +evildoer's +evildoers +eviler +evilest +eviller +evillest +evilly +evils +evince +evinced +evinces +evincing +eviscerate +eviscerated +eviscerates +eviscerating +evisceration +evisceration's +evocation +evocation's +evocations +evocative +evoke +evoked +evokes +evoking +evolution +evolution's +evolutionary +evolve +evolved +evolves +evolving +ewe +ewe's +ewer +ewer's +ewers +ewes +ex +ex's +exacerbate +exacerbated +exacerbates +exacerbating +exacerbation +exacerbation's +exact +exacted +exacter +exactest +exacting +exactingly +exactitude +exactitude's +exactly +exactness +exactness's +exacts +exaggerate +exaggerated +exaggerates +exaggerating +exaggeration +exaggeration's +exaggerations +exalt +exaltation +exaltation's +exalted +exalting +exalts +exam +exam's +examination +examination's +examinations +examine +examined +examiner +examiner's +examiners +examines +examining +example +example's +exampled +examples +exampling +exams +exasperate +exasperated +exasperates +exasperating +exasperation +exasperation's +excavate +excavated +excavates +excavating +excavation +excavation's +excavations +excavator +excavator's +excavators +exceed +exceeded +exceeding +exceedingly +exceeds +excel +excelled +excellence +excellence's +excellent +excellently +excelling +excels +except +excepted +excepting +exception +exception's +exceptionable +exceptional +exceptionally +exceptions +excepts +excerpt +excerpt's +excerpted +excerpting +excerpts +excess +excess's +excesses +excessive +excessively +exchange +exchange's +exchangeable +exchanged +exchanges +exchanging +exchequer +exchequer's +exchequers +excise +excise's +excised +excises +excising +excision +excision's +excisions +excitability +excitability's +excitable +excitation +excitation's +excite +excited +excitedly +excitement +excitement's +excitements +excites +exciting +excitingly +exclaim +exclaimed +exclaiming +exclaims +exclamation +exclamation's +exclamations +exclamatory +exclude +excluded +excludes +excluding +exclusion +exclusion's +exclusive +exclusive's +exclusively +exclusiveness +exclusiveness's +exclusives +exclusivity +exclusivity's +excommunicate +excommunicated +excommunicates +excommunicating +excommunication +excommunication's +excommunications +excoriate +excoriated +excoriates +excoriating +excoriation +excoriation's +excoriations +excrement +excrement's +excrescence +excrescence's +excrescences +excreta +excreta's +excrete +excreted +excretes +excreting +excretion +excretion's +excretions +excretory +excruciating +excruciatingly +exculpate +exculpated +exculpates +exculpating +excursion +excursion's +excursions +excusable +excuse +excuse's +excused +excuses +excusing +exec +exec's +execrable +execrate +execrated +execrates +execrating +execs +executable +execute +executed +executes +executing +execution +execution's +executioner +executioner's +executioners +executions +executive +executive's +executives +executor +executor's +executors +executrices +executrix +executrix's +executrixes +exegeses +exegesis +exegesis's +exemplar +exemplar's +exemplars +exemplary +exemplification +exemplification's +exemplifications +exemplified +exemplifies +exemplify +exemplifying +exempt +exempted +exempting +exemption +exemption's +exemptions +exempts +exercise +exercise's +exercised +exercises +exercising +exert +exerted +exerting +exertion +exertion's +exertions +exerts +exes +exhalation +exhalation's +exhalations +exhale +exhaled +exhales +exhaling +exhaust +exhaust's +exhausted +exhaustible +exhausting +exhaustion +exhaustion's +exhaustive +exhaustively +exhausts +exhibit +exhibit's +exhibited +exhibiting +exhibition +exhibition's +exhibitionism +exhibitionism's +exhibitionist +exhibitionist's +exhibitionists +exhibitions +exhibitor +exhibitor's +exhibitors +exhibits +exhilarate +exhilarated +exhilarates +exhilarating +exhilaration +exhilaration's +exhort +exhortation +exhortation's +exhortations +exhorted +exhorting +exhorts +exhumation +exhumation's +exhumations +exhume +exhumed +exhumes +exhuming +exigencies +exigency +exigency's +exigent +exiguous +exile +exile's +exiled +exiles +exiling +exist +existed +existence +existence's +existences +existent +existential +existentialism +existentialism's +existentialist +existentialist's +existentialists +existentially +existing +exists +exit +exit's +exited +exiting +exits +exodus +exodus's +exoduses +exonerate +exonerated +exonerates +exonerating +exoneration +exoneration's +exorbitance +exorbitance's +exorbitant +exorbitantly +exorcise +exorcised +exorcises +exorcising +exorcism +exorcism's +exorcisms +exorcist +exorcist's +exorcists +exorcize +exorcized +exorcizes +exorcizing +exotic +exotic's +exotically +exotics +expand +expandable +expanded +expanding +expands +expanse +expanse's +expanses +expansion +expansion's +expansionist +expansionist's +expansionists +expansions +expansive +expansively +expansiveness +expansiveness's +expatiate +expatiated +expatiates +expatiating +expatriate +expatriate's +expatriated +expatriates +expatriating +expatriation +expatriation's +expect +expectancy +expectancy's +expectant +expectantly +expectation +expectation's +expectations +expected +expecting +expectorant +expectorant's +expectorants +expectorate +expectorated +expectorates +expectorating +expectoration +expectoration's +expects +expedience +expedience's +expediences +expediencies +expediency +expediency's +expedient +expedient's +expediently +expedients +expedite +expedited +expediter +expediter's +expediters +expedites +expediting +expedition +expedition's +expeditionary +expeditions +expeditious +expeditiously +expeditor +expeditor's +expeditors +expel +expelled +expelling +expels +expend +expendable +expendable's +expendables +expended +expending +expenditure +expenditure's +expenditures +expends +expense +expense's +expenses +expensive +expensively +experience +experience's +experienced +experiences +experiencing +experiment +experiment's +experimental +experimentally +experimentation +experimentation's +experimented +experimenter +experimenter's +experimenters +experimenting +experiments +expert +expert's +expertise +expertise's +expertly +expertness +expertness's +experts +expiate +expiated +expiates +expiating +expiation +expiation's +expiration +expiration's +expire +expired +expires +expiring +expiry +explain +explained +explaining +explains +explanation +explanation's +explanations +explanatory +expletive +expletive's +expletives +explicable +explicate +explicated +explicates +explicating +explication +explication's +explications +explicit +explicitly +explicitness +explicitness's +explode +exploded +explodes +exploding +exploit +exploit's +exploitation +exploitation's +exploitative +exploited +exploiter +exploiter's +exploiters +exploiting +exploits +exploration +exploration's +explorations +exploratory +explore +explored +explorer +explorer's +explorers +explores +exploring +explosion +explosion's +explosions +explosive +explosive's +explosively +explosiveness +explosiveness's +explosives +expo +expo's +exponent +exponent's +exponential +exponentially +exponentiation +exponents +export +export's +exportation +exportation's +exported +exporter +exporter's +exporters +exporting +exports +expos +expose +expose's +exposed +exposes +exposing +exposition +exposition's +expositions +expository +expostulate +expostulated +expostulates +expostulating +expostulation +expostulation's +expostulations +exposure +exposure's +exposures +expound +expounded +expounding +expounds +express +express's +expressed +expresses +expressible +expressing +expression +expression's +expressionism +expressionism's +expressionist +expressionist's +expressionists +expressionless +expressions +expressive +expressively +expressiveness +expressiveness's +expressly +expressway +expressway's +expressways +expropriate +expropriated +expropriates +expropriating +expropriation +expropriation's +expropriations +expulsion +expulsion's +expulsions +expunge +expunged +expunges +expunging +expurgate +expurgated +expurgates +expurgating +expurgation +expurgation's +expurgations +exquisite +exquisitely +extant +extemporaneous +extemporaneously +extempore +extemporize +extemporized +extemporizes +extemporizing +extend +extendable +extended +extendible +extending +extends +extension +extension's +extensional +extensions +extensive +extensively +extensiveness +extensiveness's +extent +extent's +extents +extenuate +extenuated +extenuates +extenuating +extenuation +extenuation's +exterior +exterior's +exteriors +exterminate +exterminated +exterminates +exterminating +extermination +extermination's +exterminations +exterminator +exterminator's +exterminators +external +external's +externally +externals +extinct +extincted +extincting +extinction +extinction's +extinctions +extincts +extinguish +extinguishable +extinguished +extinguisher +extinguisher's +extinguishers +extinguishes +extinguishing +extirpate +extirpated +extirpates +extirpating +extirpation +extirpation's +extol +extoll +extolled +extolling +extolls +extols +extort +extorted +extorting +extortion +extortion's +extortionate +extortionist +extortionist's +extortionists +extorts +extra +extra's +extract +extract's +extracted +extracting +extraction +extraction's +extractions +extractor +extractor's +extractors +extracts +extracurricular +extradite +extradited +extradites +extraditing +extradition +extradition's +extraditions +extramarital +extraneous +extraneously +extraordinarily +extraordinary +extrapolate +extrapolated +extrapolates +extrapolating +extrapolation +extrapolation's +extrapolations +extras +extrasensory +extraterrestrial +extraterrestrial's +extraterrestrials +extravagance +extravagance's +extravagances +extravagant +extravagantly +extravaganza +extravaganza's +extravaganzas +extravert +extravert's +extraverted +extraverts +extreme +extreme's +extremely +extremer +extremes +extremest +extremism +extremism's +extremist +extremist's +extremists +extremities +extremity +extremity's +extricate +extricated +extricates +extricating +extrication +extrication's +extrinsic +extrinsically +extroversion +extroversion's +extrovert +extrovert's +extroverted +extroverts +extrude +extruded +extrudes +extruding +extrusion +extrusion's +extrusions +exuberance +exuberance's +exuberant +exuberantly +exude +exuded +exudes +exuding +exult +exultant +exultantly +exultation +exultation's +exulted +exulting +exults +eye +eye's +eyeball +eyeball's +eyeballed +eyeballing +eyeballs +eyebrow +eyebrow's +eyebrows +eyed +eyeful +eyeful's +eyefuls +eyeglass +eyeglass's +eyeglasses +eyeing +eyelash +eyelash's +eyelashes +eyelet +eyelet's +eyelets +eyelid +eyelid's +eyelids +eyeliner +eyeliner's +eyeliners +eyepiece +eyepiece's +eyepieces +eyes +eyesight +eyesight's +eyesore +eyesore's +eyesores +eyestrain +eyestrain's +eyeteeth +eyetooth +eyetooth's +eyewitness +eyewitness's +eyewitnesses +eying +eyrie +eyrie's +f +fa +fa's +fable +fable's +fabled +fables +fabric +fabric's +fabricate +fabricated +fabricates +fabricating +fabrication +fabrication's +fabrications +fabrics +fabulous +fabulously +facade +facade's +facades +face +face's +faced +faceless +facelift +facelift's +facelifts +faces +facet +facet's +faceted +faceting +facetious +facetiously +facetiousness +facetiousness's +facets +facetted +facetting +facial +facial's +facially +facials +facile +facilitate +facilitated +facilitates +facilitating +facilitation +facilitation's +facilities +facility +facility's +facing +facing's +facings +facsimile +facsimile's +facsimiled +facsimileing +facsimiles +fact +fact's +faction +faction's +factional +factionalism +factionalism's +factions +factitious +factor +factor's +factored +factorial +factories +factoring +factorization +factorize +factorizing +factors +factory +factory's +factotum +factotum's +factotums +facts +factual +factually +faculties +faculty +faculty's +fad +fad's +faddish +fade +fade's +faded +fades +fading +fads +faecal +faeces +faeces's +fag +fag's +fagged +fagging +faggot +faggot's +faggots +fagot +fagot's +fagots +fags +fail +fail's +failed +failing +failing's +failings +fails +failure +failure's +failures +fain +fainer +fainest +faint +faint's +fainted +fainter +faintest +fainthearted +fainting +faintly +faintness +faintness's +faints +fair +fair's +fairer +fairest +fairground +fairground's +fairgrounds +fairies +fairly +fairness +fairness's +fairs +fairway +fairway's +fairways +fairy +fairy's +fairyland +fairyland's +fairylands +faith +faith's +faithful +faithful's +faithfully +faithfulness +faithfulness's +faithfuls +faithless +faithlessly +faithlessness +faithlessness's +faiths +fake +fake's +faked +faker +faker's +fakers +fakes +faking +fakir +fakir's +fakirs +falcon +falcon's +falconer +falconer's +falconers +falconry +falconry's +falcons +fall +fall's +fallacies +fallacious +fallaciously +fallacy +fallacy's +fallen +fallibility +fallibility's +fallible +fallibly +falling +falloff +falloff's +falloffs +fallout +fallout's +fallow +fallow's +fallowed +fallowing +fallows +falls +false +falsehood +falsehood's +falsehoods +falsely +falseness +falseness's +falser +falsest +falsetto +falsetto's +falsettos +falsifiable +falsification +falsification's +falsifications +falsified +falsifies +falsify +falsifying +falsities +falsity +falsity's +falter +falter's +faltered +faltering +falteringly +falterings +falters +fame +fame's +famed +familial +familiar +familiar's +familiarity +familiarity's +familiarization +familiarization's +familiarize +familiarized +familiarizes +familiarizing +familiarly +familiars +families +family +family's +famine +famine's +famines +famish +famished +famishes +famishing +famous +famously +fan +fan's +fanatic +fanatic's +fanatical +fanatically +fanaticism +fanaticism's +fanatics +fancied +fancier +fancier's +fanciers +fancies +fanciest +fanciful +fancifully +fancily +fanciness +fanciness's +fancy +fancy's +fancying +fanfare +fanfare's +fanfares +fang +fang's +fangs +fanned +fannies +fanning +fanny +fanny's +fans +fantasied +fantasies +fantasize +fantasized +fantasizes +fantasizing +fantastic +fantastically +fantasy +fantasy's +fantasying +fanzine +far +faraway +farce +farce's +farces +farcical +fare +fare's +fared +fares +farewell +farewell's +farewells +farina +farina's +farinaceous +faring +farm +farm's +farmed +farmer +farmer's +farmers +farmhand +farmhand's +farmhands +farmhouse +farmhouse's +farmhouses +farming +farming's +farmland +farmland's +farms +farmyard +farmyard's +farmyards +farrow +farrow's +farrowed +farrowing +farrows +farsighted +farsightedness +farsightedness's +fart +fart's +farted +farther +farthest +farthing +farthing's +farthings +farting +farts +fascinate +fascinated +fascinates +fascinating +fascination +fascination's +fascinations +fascism +fascism's +fascist +fascist's +fascists +fashion +fashion's +fashionable +fashionably +fashioned +fashioning +fashions +fast +fast's +fasted +fasten +fastened +fastener +fastener's +fasteners +fastening +fastening's +fastenings +fastens +faster +fastest +fastidious +fastidiously +fastidiousness +fastidiousness's +fasting +fastness +fastness's +fastnesses +fasts +fat +fat's +fatal +fatalism +fatalism's +fatalist +fatalist's +fatalistic +fatalists +fatalities +fatality +fatality's +fatally +fate +fate's +fated +fateful +fatefully +fates +fathead +fathead's +fatheads +father +father's +fathered +fatherhood +fatherhood's +fathering +fatherland +fatherland's +fatherlands +fatherless +fatherly +fathers +fathom +fathom's +fathomable +fathomed +fathoming +fathomless +fathoms +fatigue +fatigue's +fatigued +fatigues +fatigues's +fatiguing +fating +fatness +fatness's +fats +fatten +fattened +fattening +fattens +fatter +fattest +fattier +fatties +fattiest +fatty +fatty's +fatuous +fatuously +fatuousness +fatuousness's +faucet +faucet's +faucets +fault +fault's +faulted +faultfinding +faultfinding's +faultier +faultiest +faultily +faultiness +faultiness's +faulting +faultless +faultlessly +faults +faulty +faun +faun's +fauna +fauna's +faunae +faunas +fauns +favor +favor's +favorable +favorably +favored +favoring +favorite +favorite's +favorites +favoritism +favoritism's +favors +fawn +fawn's +fawned +fawning +fawns +fax +fax's +faxed +faxes +faxing +faze +fazed +fazes +fazing +fealty +fealty's +fear +fear's +feared +fearful +fearfully +fearfulness +fearfulness's +fearing +fearless +fearlessly +fearlessness +fearlessness's +fears +fearsome +feasibility +feasibility's +feasible +feasibly +feast +feast's +feasted +feasting +feasts +feat +feat's +feather +feather's +featherbedding +featherbedding's +feathered +featherier +featheriest +feathering +feathers +featherweight +featherweight's +featherweights +feathery +feats +feature +feature's +featured +featureless +features +featuring +febrile +fecal +feces +feces's +feckless +fecund +fecundity +fecundity's +fed +fed's +federal +federal's +federalism +federalism's +federalist +federalist's +federalists +federally +federals +federate +federated +federates +federating +federation +federation's +federations +fedora +fedora's +fedoras +feds +fee +fee's +feeble +feebleness +feebleness's +feebler +feeblest +feebly +feed +feed's +feedback +feedback's +feedbag +feedbag's +feedbags +feeder +feeder's +feeders +feeding +feeding's +feedings +feeds +feel +feel's +feeler +feeler's +feelers +feeling +feeling's +feelingly +feelings +feels +fees +feet +feign +feigned +feigning +feigns +feint +feint's +feinted +feinting +feints +feistier +feistiest +feisty +feldspar +feldspar's +felicities +felicitous +felicity +felicity's +feline +feline's +felines +fell +fell's +fellatio +fellatio's +felled +feller +fellest +felling +fellow +fellow's +fellows +fellowship +fellowship's +fellowships +fells +felon +felon's +felonies +felonious +felons +felony +felony's +felt +felt's +felted +felting +felts +female +female's +females +feminine +feminine's +feminines +femininity +femininity's +feminism +feminism's +feminist +feminist's +feminists +femora +femoral +femur +femur's +femurs +fen +fen's +fence +fence's +fenced +fencer +fencer's +fencers +fences +fencing +fencing's +fend +fended +fender +fender's +fenders +fending +fends +fennel +fennel's +fens +fer +feral +ferment +ferment's +fermentation +fermentation's +fermented +fermenting +ferments +fern +fern's +ferns +ferocious +ferociously +ferociousness +ferociousness's +ferocity +ferocity's +ferret +ferret's +ferreted +ferreting +ferrets +ferric +ferried +ferries +ferrous +ferrule +ferrule's +ferrules +ferry +ferry's +ferryboat +ferryboat's +ferryboats +ferrying +fertile +fertility +fertility's +fertilization +fertilization's +fertilize +fertilized +fertilizer +fertilizer's +fertilizers +fertilizes +fertilizing +fervency +fervency's +fervent +fervently +fervid +fervidly +fervor +fervor's +fest +fest's +festal +fester +fester's +festered +festering +festers +festival +festival's +festivals +festive +festively +festivities +festivity +festivity's +festoon +festoon's +festooned +festooning +festoons +fests +feta +feta's +fetal +fetch +fetched +fetches +fetching +fetchingly +feted +fetich +fetich's +fetiches +fetid +feting +fetish +fetish's +fetishes +fetishism +fetishism's +fetishist +fetishist's +fetishistic +fetishists +fetlock +fetlock's +fetlocks +fetter +fetter's +fettered +fettering +fetters +fettle +fettle's +fetus +fetus's +fetuses +feud +feud's +feudal +feudalism +feudalism's +feudalistic +feuded +feuding +feuds +fever +fever's +fevered +feverish +feverishly +fevers +few +few's +fewer +fewest +fey +fez +fez's +fezes +fezzes +fiancé +fiancé's +fiancée +fiancée's +fiancées +fiancés +fiasco +fiasco's +fiascoes +fiascos +fiat +fiat's +fiats +fib +fib's +fibbed +fibber +fibber's +fibbers +fibbing +fiber +fiber's +fiberboard +fiberboard's +fiberglass +fiberglass's +fibers +fibroid +fibrous +fibs +fibula +fibula's +fibulae +fibulas +fiche +fiche's +fiches +fickle +fickleness +fickleness's +fickler +ficklest +fiction +fiction's +fictional +fictionalize +fictionalized +fictionalizes +fictionalizing +fictions +fictitious +fiddle +fiddle's +fiddled +fiddler +fiddler's +fiddlers +fiddles +fiddlesticks +fiddling +fiddly +fidelity +fidelity's +fidget +fidget's +fidgeted +fidgeting +fidgets +fidgety +fiduciaries +fiduciary +fiduciary's +fie +fief +fief's +fiefs +field +field's +fielded +fielder +fielder's +fielders +fielding +fields +fieldwork +fieldwork's +fiend +fiend's +fiendish +fiendishly +fiends +fierce +fiercely +fierceness +fierceness's +fiercer +fiercest +fierier +fieriest +fieriness +fieriness's +fiery +fiesta +fiesta's +fiestas +fife +fife's +fifes +fifteen +fifteen's +fifteens +fifteenth +fifteenth's +fifteenths +fifth +fifth's +fifths +fifties +fiftieth +fiftieth's +fiftieths +fifty +fifty's +fig +fig's +fight +fight's +fighter +fighter's +fighters +fighting +fighting's +fights +figment +figment's +figments +figs +figurative +figuratively +figure +figure's +figured +figurehead +figurehead's +figureheads +figures +figurine +figurine's +figurines +figuring +filament +filament's +filamentous +filaments +filbert +filbert's +filberts +filch +filched +filches +filching +file +file's +filed +files +filet +filet's +filets +filial +filibuster +filibuster's +filibustered +filibustering +filibusters +filigree +filigree's +filigreed +filigreeing +filigrees +filing +filing's +filings +fill +fill's +filled +filler +filler's +fillers +fillet +fillet's +filleted +filleting +fillets +fillies +filling +filling's +fillings +fillip +fillip's +filliped +filliping +fillips +fills +filly +filly's +film +film's +filmed +filmier +filmiest +filming +filmmaker +filmmaker's +filmmakers +films +filmstrip +filmstrip's +filmstrips +filmy +filter +filter's +filterable +filtered +filtering +filters +filth +filth's +filthier +filthiest +filthiness +filthiness's +filthy +filtrable +filtrate +filtrate's +filtrated +filtrates +filtrating +filtration +filtration's +fin +fin's +finagle +finagled +finagler +finagler's +finaglers +finagles +finagling +final +final's +finale +finale's +finales +finalist +finalist's +finalists +finality +finality's +finalize +finalized +finalizes +finalizing +finally +finals +finance +finance's +financed +finances +financial +financially +financier +financier's +financiers +financing +financing's +finch +finch's +finches +find +find's +finder +finder's +finders +finding +finding's +findings +finds +fine +fine's +fined +finely +fineness +fineness's +finer +finery +finery's +fines +finesse +finesse's +finessed +finesses +finessing +finest +finger +finger's +fingerboard +fingerboard's +fingerboards +fingered +fingering +fingering's +fingerings +fingernail +fingernail's +fingernails +fingerprint +fingerprint's +fingerprinted +fingerprinting +fingerprints +fingers +fingertip +fingertip's +fingertips +finickier +finickiest +finicky +fining +finis +finis's +finises +finish +finish's +finished +finisher +finisher's +finishers +finishes +finishing +finite +finitely +fink +fink's +finked +finking +finks +finnier +finniest +finny +fins +fiord +fiord's +fiords +fir +fir's +fire +fire's +firearm +firearm's +firearms +fireball +fireball's +fireballs +firebomb +firebomb's +firebombed +firebombing +firebombs +firebrand +firebrand's +firebrands +firebreak +firebreak's +firebreaks +firebug +firebug's +firebugs +firecracker +firecracker's +firecrackers +fired +firefight +firefight's +firefighter +firefighter's +firefighters +firefighting +firefighting's +firefights +fireflies +firefly +firefly's +firehouse +firehouse's +firehouses +fireman +fireman's +firemen +fireplace +fireplace's +fireplaces +fireplug +fireplug's +fireplugs +firepower +firepower's +fireproof +fireproofed +fireproofing +fireproofs +fires +fireside +fireside's +firesides +firestorm +firestorm's +firestorms +firetrap +firetrap's +firetraps +firewall +firewall's +firewalls +firewater +firewater's +firewood +firewood's +firework +firework's +fireworks +firing +firm +firm's +firmament +firmament's +firmaments +firmed +firmer +firmest +firming +firmly +firmness +firmness's +firms +firmware +firs +first +first's +firstborn +firstborn's +firstborns +firsthand +firstly +firsts +firth +firth's +firths +fiscal +fiscal's +fiscally +fiscals +fish +fish's +fishbowl +fishbowl's +fishbowls +fished +fisher +fisher's +fisheries +fisherman +fisherman's +fishermen +fishers +fishery +fishery's +fishes +fishhook +fishhook's +fishhooks +fishier +fishiest +fishing +fishing's +fishnet +fishnet's +fishnets +fishtail +fishtailed +fishtailing +fishtails +fishwife +fishwife's +fishwives +fishy +fission +fission's +fissure +fissure's +fissures +fist +fist's +fistful +fistful's +fistfuls +fisticuffs +fisticuffs's +fists +fit +fit's +fitful +fitfully +fitly +fitness +fitness's +fits +fitted +fitter +fitter's +fitters +fittest +fitting +fitting's +fittingly +fittings +five +five's +fiver +fives +fix +fix's +fixable +fixate +fixated +fixates +fixating +fixation +fixation's +fixations +fixative +fixative's +fixatives +fixed +fixedly +fixer +fixer's +fixers +fixes +fixing +fixings +fixings's +fixity +fixity's +fixture +fixture's +fixtures +fizz +fizz's +fizzed +fizzes +fizzier +fizziest +fizzing +fizzle +fizzle's +fizzled +fizzles +fizzling +fizzy +fjord +fjord's +fjords +flab +flab's +flabbergast +flabbergasted +flabbergasting +flabbergasts +flabbier +flabbiest +flabbiness +flabbiness's +flabby +flaccid +flack +flack's +flacks +flag +flag's +flagella +flagellate +flagellated +flagellates +flagellating +flagellation +flagellation's +flagellum +flagellum's +flagellums +flagged +flagging +flagon +flagon's +flagons +flagpole +flagpole's +flagpoles +flagrant +flagrantly +flags +flagship +flagship's +flagships +flagstaff +flagstaff's +flagstaffs +flagstone +flagstone's +flagstones +flail +flail's +flailed +flailing +flails +flair +flair's +flairs +flak +flak's +flake +flake's +flaked +flakes +flakier +flakiest +flakiness +flakiness's +flaking +flaky +flambeing +flambes +flamboyance +flamboyance's +flamboyant +flamboyantly +flambé +flambé's +flambéed +flame +flame's +flamed +flamenco +flamenco's +flamencos +flames +flamethrower +flamethrower's +flamethrowers +flaming +flamingo +flamingo's +flamingoes +flamingos +flamings +flammability +flammability's +flammable +flammable's +flammables +flan +flange +flange's +flanges +flank +flank's +flanked +flanking +flanks +flannel +flannel's +flanneled +flannelet +flannelet's +flannelette +flannelette's +flanneling +flannelled +flannelling +flannels +flap +flap's +flapjack +flapjack's +flapjacks +flapped +flapper +flapper's +flappers +flapping +flaps +flare +flare's +flared +flares +flaring +flash +flash's +flashback +flashback's +flashbacks +flashbulb +flashbulb's +flashbulbs +flashed +flasher +flasher's +flashers +flashes +flashest +flashgun +flashgun's +flashguns +flashier +flashiest +flashily +flashiness +flashiness's +flashing +flashing's +flashlight +flashlight's +flashlights +flashy +flask +flask's +flasks +flat +flat's +flatbed +flatbed's +flatbeds +flatboat +flatboat's +flatboats +flatcar +flatcar's +flatcars +flatfeet +flatfish +flatfish's +flatfishes +flatfoot +flatfoot's +flatfooted +flatfoots +flatiron +flatiron's +flatirons +flatly +flatness +flatness's +flats +flatted +flatten +flattened +flattening +flattens +flatter +flattered +flatterer +flatterer's +flatterers +flattering +flatteringly +flatters +flattery +flattery's +flattest +flatting +flattop +flattop's +flattops +flatulence +flatulence's +flatulent +flatware +flatware's +flaunt +flaunt's +flaunted +flaunting +flaunts +flavor +flavor's +flavored +flavorful +flavoring +flavoring's +flavorings +flavorless +flavors +flaw +flaw's +flawed +flawing +flawless +flawlessly +flaws +flax +flax's +flaxen +flay +flayed +flaying +flays +flea +flea's +fleas +fleck +fleck's +flecked +flecking +flecks +fled +fledged +fledgeling +fledgeling's +fledgelings +fledgling +fledgling's +fledglings +flee +fleece +fleece's +fleeced +fleeces +fleecier +fleeciest +fleecing +fleecy +fleeing +flees +fleet +fleet's +fleeted +fleeter +fleetest +fleeting +fleetingly +fleetingly's +fleetness +fleetness's +fleets +flesh +flesh's +fleshed +fleshes +fleshier +fleshiest +fleshing +fleshlier +fleshliest +fleshly +fleshy +flew +flex +flex's +flexed +flexes +flexibility +flexibility's +flexible +flexibly +flexing +flexitime +flexitime's +flextime +flextime's +flibbertigibbet +flibbertigibbet's +flibbertigibbets +flick +flick's +flicked +flicker +flicker's +flickered +flickering +flickers +flicking +flicks +flied +flier +flier's +fliers +flies +fliest +flight +flight's +flightier +flightiest +flightiness +flightiness's +flightless +flights +flighty +flimflam +flimflam's +flimflammed +flimflamming +flimflams +flimsier +flimsiest +flimsily +flimsiness +flimsiness's +flimsy +flinch +flinch's +flinched +flinches +flinching +fling +fling's +flinging +flings +flint +flint's +flintier +flintiest +flintlock +flintlock's +flintlocks +flints +flinty +flip +flip's +flippancy +flippancy's +flippant +flippantly +flipped +flipper +flipper's +flippers +flippest +flipping +flips +flirt +flirt's +flirtation +flirtation's +flirtations +flirtatious +flirtatiously +flirted +flirting +flirts +flit +flit's +flits +flitted +flitting +float +float's +floatation +floatation's +floatations +floated +floater +floater's +floaters +floating +floats +flock +flock's +flocked +flocking +flocks +floe +floe's +floes +flog +flogged +flogging +flogging's +floggings +flogs +flood +flood's +flooded +flooder +floodgate +floodgate's +floodgates +flooding +floodlight +floodlight's +floodlighted +floodlighting +floodlights +floodlit +floods +floor +floor's +floorboard +floorboard's +floorboards +floored +flooring +flooring's +floors +floozie +floozie's +floozies +floozy +floozy's +flop +flop's +flophouse +flophouse's +flophouses +flopped +floppier +floppies +floppiest +floppiness +floppiness's +flopping +floppy +floppy's +flops +flora +flora's +florae +floral +floras +florid +floridly +florin +florin's +florins +florist +florist's +florists +floss +floss's +flossed +flosses +flossing +flotation +flotation's +flotations +flotilla +flotilla's +flotillas +flotsam +flotsam's +flounce +flounce's +flounced +flounces +flouncing +flounder +flounder's +floundered +floundering +flounders +flour +flour's +floured +flouring +flourish +flourish's +flourished +flourishes +flourishing +flours +floury +flout +flout's +flouted +flouting +flouts +flow +flow's +flowed +flower +flower's +flowerbed +flowerbed's +flowerbeds +flowered +flowerier +floweriest +floweriness +floweriness's +flowering +flowerpot +flowerpot's +flowerpots +flowers +flowery +flowing +flown +flows +flu +flu's +flub +flub's +flubbed +flubbing +flubs +fluctuate +fluctuated +fluctuates +fluctuating +fluctuation +fluctuation's +fluctuations +flue +flue's +fluency +fluency's +fluent +fluently +flues +fluff +fluff's +fluffed +fluffier +fluffiest +fluffiness +fluffiness's +fluffing +fluffs +fluffy +fluid +fluid's +fluidity +fluidity's +fluidly +fluids +fluke +fluke's +flukes +flukey +flukier +flukiest +fluky +flume +flume's +flumes +flummox +flummoxed +flummoxes +flummoxing +flung +flunk +flunk's +flunked +flunkey +flunkey's +flunkeys +flunkie +flunkie's +flunkies +flunking +flunks +flunky +flunky's +fluoresce +fluoresced +fluorescence +fluorescence's +fluorescent +fluoresces +fluorescing +fluoridate +fluoridated +fluoridates +fluoridating +fluoridation +fluoridation's +fluoride +fluoride's +fluorides +fluorine +fluorine's +fluorite +fluorite's +fluorocarbon +fluorocarbon's +fluorocarbons +fluoroscope +fluoroscope's +fluoroscopes +flurried +flurries +flurry +flurry's +flurrying +flush +flush's +flushed +flusher +flushes +flushest +flushing +fluster +fluster's +flustered +flustering +flusters +flute +flute's +fluted +flutes +fluting +fluting's +flutist +flutist's +flutists +flutter +flutter's +fluttered +fluttering +flutters +fluttery +flux +flux's +fluxed +fluxes +fluxing +fly +fly's +flyby +flyby's +flybys +flycatcher +flycatcher's +flycatchers +flyer +flyer's +flyers +flying +flying's +flyleaf +flyleaf's +flyleaves +flyover +flyover's +flyovers +flypaper +flypaper's +flypapers +flysheet +flyspeck +flyspeck's +flyspecked +flyspecking +flyspecks +flyswatter +flyswatter's +flyswatters +flyweight +flyweight's +flyweights +flywheel +flywheel's +flywheels +fo'c's'le +fo'c's'le's +fo'c's'les +fo'c'sle +fo'c'sle's +fo'c'sles +foal +foal's +foaled +foaling +foals +foam +foam's +foamed +foamier +foamiest +foaming +foams +foamy +fob +fob's +fobbed +fobbing +fobs +focal +foci +focus +focus's +focused +focuses +focusing +focussed +focusses +focussing +fodder +fodder's +fodders +foe +foe's +foes +foetal +foetus +foetus's +foetuses +fog +fog's +fogbound +fogey +fogey's +fogeys +fogged +foggier +foggiest +fogginess +fogginess's +fogging +foggy +foghorn +foghorn's +foghorns +fogies +fogs +fogy +fogy's +foible +foible's +foibles +foil +foil's +foiled +foiling +foils +foist +foisted +foisting +foists +fold +fold's +foldaway +folded +folder +folder's +folders +folding +folds +foliage +foliage's +folio +folio's +folios +folk +folk's +folklore +folklore's +folks +folksier +folksiest +folksy +follicle +follicle's +follicles +follies +follow +followed +follower +follower's +followers +following +following's +followings +follows +folly +folly's +foment +fomentation +fomentation's +fomented +fomenting +foments +fond +fondant +fondant's +fondants +fonder +fondest +fondle +fondled +fondles +fondling +fondly +fondness +fondness's +fondu +fondu's +fondue +fondue's +fondues +fondus +font +font's +fonts +food +food's +foods +foodstuff +foodstuff's +foodstuffs +fool +fool's +fooled +fooleries +foolery +foolery's +foolhardier +foolhardiest +foolhardiness +foolhardiness's +foolhardy +fooling +foolish +foolishly +foolishness +foolishness's +foolproof +fools +foolscap +foolscap's +foot +foot's +footage +footage's +football +football's +footballer +footballer's +footballers +footballs +footbridge +footbridge's +footbridges +footed +footfall +footfall's +footfalls +foothill +foothill's +foothills +foothold +foothold's +footholds +footing +footing's +footings +footlights +footlights's +footlocker +footlocker's +footlockers +footloose +footman +footman's +footmen +footnote +footnote's +footnoted +footnotes +footnoting +footpath +footpath's +footpaths +footprint +footprint's +footprints +footrest +footrest's +footrests +foots +footsie +footsie's +footsies +footsore +footstep +footstep's +footsteps +footstool +footstool's +footstools +footwear +footwear's +footwork +footwork's +fop +fop's +foppish +fops +for +fora +forage +forage's +foraged +forager +forager's +foragers +forages +foraging +foray +foray's +forayed +foraying +forays +forbad +forbade +forbear +forbear's +forbearance +forbearance's +forbearing +forbears +forbid +forbidden +forbidding +forbiddingly +forbiddings +forbids +forbore +forborne +force +force's +forced +forceful +forcefully +forcefulness +forcefulness's +forceps +forceps's +forces +forcible +forcibly +forcing +ford +ford's +forded +fording +fords +fore +fore's +forearm +forearm's +forearmed +forearming +forearms +forebear +forebear's +forebears +forebode +foreboded +forebodes +foreboding +foreboding's +forebodings +forecast +forecast's +forecasted +forecaster +forecaster's +forecasters +forecasting +forecastle +forecastle's +forecastles +forecasts +foreclose +foreclosed +forecloses +foreclosing +foreclosure +foreclosure's +foreclosures +forefather +forefather's +forefathers +forefeet +forefinger +forefinger's +forefingers +forefoot +forefoot's +forefront +forefront's +forefronts +foregather +foregathered +foregathering +foregathers +forego +foregoes +foregoing +foregone +foreground +foreground's +foregrounded +foregrounding +foregrounds +forehand +forehand's +forehands +forehead +forehead's +foreheads +foreign +foreigner +foreigner's +foreigners +foreknowledge +foreknowledge's +foreleg +foreleg's +forelegs +forelock +forelock's +forelocks +foreman +foreman's +foremast +foremast's +foremasts +foremen +foremost +forename +forename's +forenames +forenoon +forenoon's +forenoons +forensic +forensic's +forensics +foreordain +foreordained +foreordaining +foreordains +foreplay +foreplay's +forerunner +forerunner's +forerunners +fores +foresail +foresail's +foresails +foresaw +foresee +foreseeable +foreseeing +foreseen +foresees +foreshadow +foreshadowed +foreshadowing +foreshadows +foreshorten +foreshortened +foreshortening +foreshortens +foresight +foresight's +foreskin +foreskin's +foreskins +forest +forest's +forestall +forestalled +forestalling +forestalls +forestation +forestation's +forested +forester +forester's +foresters +foresting +forestry +forestry's +forests +foreswear +foreswearing +foreswears +foreswore +foresworn +foretaste +foretaste's +foretasted +foretastes +foretasting +foretell +foretelling +foretells +forethought +forethought's +foretold +forever +forever's +forevermore +forewarn +forewarned +forewarning +forewarns +forewent +forewoman +forewoman's +forewomen +foreword +foreword's +forewords +forfeit +forfeit's +forfeited +forfeiting +forfeits +forfeiture +forfeiture's +forgather +forgathered +forgathering +forgathers +forgave +forge +forge's +forged +forger +forger's +forgeries +forgers +forgery +forgery's +forges +forget +forgetful +forgetfully +forgetfulness +forgetfulness's +forgets +forgettable +forgetting +forging +forgivable +forgive +forgiven +forgiveness +forgiveness's +forgives +forgiving +forgo +forgoes +forgoing +forgone +forgot +forgotten +fork +fork's +forked +forking +forklift +forklift's +forklifts +forks +forlorn +forlornly +form +form's +formal +formal's +formaldehyde +formaldehyde's +formalism +formalism's +formalities +formality +formality's +formalization +formalization's +formalize +formalized +formalizes +formalizing +formally +formals +format +format's +formation +formation's +formations +formative +formats +formatted +formatting +formed +former +former's +formerly +formidable +formidably +forming +formless +formlessly +formlessness +formlessness's +forms +formula +formula's +formulae +formulaic +formulas +formulate +formulated +formulates +formulating +formulation +formulation's +formulations +fornicate +fornicated +fornicates +fornicating +fornication +fornication's +forsake +forsaken +forsakes +forsaking +forsook +forsooth +forswear +forswearing +forswears +forswore +forsworn +forsythia +forsythia's +forsythias +fort +fort's +forte +forte's +fortes +forth +forthcoming +forthcoming's +forthright +forthrightly +forthrightness +forthrightness's +forthwith +forties +fortieth +fortieth's +fortieths +fortification +fortification's +fortifications +fortified +fortifies +fortify +fortifying +fortissimo +fortitude +fortitude's +fortnight +fortnight's +fortnightly +fortnights +fortress +fortress's +fortresses +forts +fortuitous +fortuitously +fortunate +fortunately +fortune +fortune's +fortunes +forty +forty's +forum +forum's +forums +forward +forward's +forwarded +forwarder +forwardest +forwarding +forwardness +forwardness's +forwards +forwent +fossil +fossil's +fossilization +fossilization's +fossilize +fossilized +fossilizes +fossilizing +fossils +foster +fostered +fostering +fosters +fought +foul +foul's +fouled +fouler +foulest +fouling +foully +foulness +foulness's +fouls +found +foundation +foundation's +foundations +founded +founder +founder's +foundered +foundering +founders +founding +foundling +foundling's +foundlings +foundries +foundry +foundry's +founds +fount +fount's +fountain +fountain's +fountainhead +fountainhead's +fountainheads +fountains +founts +four +four's +fourfold +fours +fourscore +fourscore's +foursome +foursome's +foursomes +foursquare +fourteen +fourteen's +fourteens +fourteenth +fourteenth's +fourteenths +fourth +fourth's +fourthly +fourths +fowl +fowl's +fowled +fowling +fowls +fox +fox's +foxed +foxes +foxglove +foxglove's +foxgloves +foxhole +foxhole's +foxholes +foxhound +foxhound's +foxhounds +foxier +foxiest +foxing +foxtrot +foxtrot's +foxtrots +foxtrotted +foxtrotting +foxy +foyer +foyer's +foyers +fracas +fracas's +fracases +fractal +fractal's +fractals +fraction +fraction's +fractional +fractionally +fractions +fractious +fractiously +fracture +fracture's +fractured +fractures +fracturing +fragile +fragility +fragility's +fragment +fragment's +fragmentary +fragmentary's +fragmentation +fragmentation's +fragmented +fragmenting +fragments +fragrance +fragrance's +fragrances +fragrant +fragrantly +frail +frailer +frailest +frailties +frailty +frailty's +frame +frame's +framed +framer +framer's +framers +frames +framework +framework's +frameworks +framing +franc +franc's +franchise +franchise's +franchised +franchisee +franchisee's +franchisees +franchiser +franchiser's +franchisers +franchises +franchising +francs +frank +frank's +franked +franker +frankest +frankfurter +frankfurter's +frankfurters +frankincense +frankincense's +franking +frankly +frankness +frankness's +franks +frantic +frantically +frappes +frappé +frappé's +frat +frat's +fraternal +fraternally +fraternities +fraternity +fraternity's +fraternization +fraternization's +fraternize +fraternized +fraternizes +fraternizing +fratricide +fratricide's +fratricides +frats +fraud +fraud's +frauds +fraudulence +fraudulence's +fraudulent +fraudulently +fraught +fray +fray's +frayed +fraying +frays +frazzle +frazzle's +frazzled +frazzles +frazzling +freak +freak's +freaked +freakier +freakiest +freaking +freakish +freaks +freaky +freckle +freckle's +freckled +freckles +freckling +free +freebase +freebase's +freebased +freebases +freebasing +freebee +freebee's +freebees +freebie +freebie's +freebies +freebooter +freebooter's +freebooters +freed +freedman +freedman's +freedmen +freedom +freedom's +freedoms +freehand +freehold +freehold's +freeholder +freeholder's +freeholders +freeholds +freeing +freelance +freelance's +freelanced +freelancer +freelancer's +freelancers +freelances +freelancing +freeload +freeloaded +freeloader +freeloader's +freeloaders +freeloading +freeloads +freely +freeman +freeman's +freemen +freer +frees +freest +freestanding +freestyle +freestyle's +freestyles +freethinker +freethinker's +freethinkers +freethinking +freethinking's +freeway +freeway's +freeways +freewheel +freewheeled +freewheeling +freewheels +freewill +freeze +freeze's +freezer +freezer's +freezers +freezes +freezing +freezing's +freight +freight's +freighted +freighter +freighter's +freighters +freighting +freights +french +frenetic +frenetically +frenzied +frenziedly +frenzies +frenzy +frenzy's +frequencies +frequency +frequency's +frequent +frequented +frequenter +frequentest +frequenting +frequently +frequents +fresco +fresco's +frescoes +frescos +fresh +freshen +freshened +freshening +freshens +fresher +freshest +freshet +freshet's +freshets +freshly +freshman +freshman's +freshmen +freshness +freshness's +freshwater +freshwater's +fret +fret's +fretful +fretfully +fretfulness +fretfulness's +frets +fretted +fretting +fretwork +fretwork's +friable +friar +friar's +friars +fricassee +fricassee's +fricasseed +fricasseeing +fricassees +friction +friction's +fridge +fridge's +fridges +fried +friend +friend's +friendless +friendlier +friendlies +friendliest +friendliness +friendliness's +friendly +friendly's +friends +friendship +friendship's +friendships +frier +frier's +friers +fries +frieze +frieze's +friezes +frigate +frigate's +frigates +fright +fright's +frighted +frighten +frightened +frightening +frighteningly +frightens +frightful +frightfully +frighting +frights +frigid +frigidity +frigidity's +frigidly +frill +frill's +frillier +frilliest +frills +frilly +fringe +fringe's +fringed +fringes +fringing +fripperies +frippery +frippery's +frisk +frisked +friskier +friskiest +friskily +friskiness +friskiness's +frisking +frisks +frisky +fritter +fritter's +frittered +frittering +fritters +frivolities +frivolity +frivolity's +frivolous +frivolously +frizz +frizz's +frizzed +frizzes +frizzier +frizziest +frizzing +frizzle +frizzle's +frizzled +frizzles +frizzling +frizzy +fro +frock +frock's +frocks +frog +frog's +frogman +frogman's +frogmen +frogs +frolic +frolic's +frolicked +frolicking +frolics +frolicsome +from +frond +frond's +fronds +front +front's +frontage +frontage's +frontages +frontal +frontally +fronted +frontier +frontier's +frontiers +frontiersman +frontiersman's +frontiersmen +fronting +frontispiece +frontispiece's +frontispieces +frontrunner +frontrunner's +frontrunners +fronts +frost +frost's +frostbit +frostbite +frostbite's +frostbites +frostbiting +frostbitten +frosted +frostier +frostiest +frostily +frostiness +frostiness's +frosting +frosting's +frosts +frosty +froth +froth's +frothed +frothier +frothiest +frothing +froths +frothy +frown +frown's +frowned +frowning +frowns +frowsier +frowsiest +frowsy +frowzier +frowziest +frowzy +froze +frozen +fructified +fructifies +fructify +fructifying +fructose +fructose's +frugal +frugality +frugality's +frugally +fruit +fruit's +fruitcake +fruitcake's +fruitcakes +fruited +fruitful +fruitfully +fruitfulness +fruitfulness's +fruitier +fruitiest +fruiting +fruition +fruition's +fruitless +fruitlessly +fruitlessness +fruitlessness's +fruits +fruity +frump +frump's +frumpier +frumpiest +frumps +frumpy +frustrate +frustrated +frustrates +frustrating +frustration +frustration's +frustrations +fry +fry's +fryer +fryer's +fryers +frying +fuchsia +fuchsia's +fuchsias +fuck +fuck's +fucked +fucker +fucker's +fuckers +fucking +fucks +fuddle +fuddle's +fuddled +fuddles +fuddling +fudge +fudge's +fudged +fudges +fudging +fuel +fuel's +fueled +fueling +fuelled +fuelling +fuels +fugitive +fugitive's +fugitives +fugue +fugue's +fugues +fulcra +fulcrum +fulcrum's +fulcrums +fulfil +fulfill +fulfilled +fulfilling +fulfillment +fulfillment's +fulfills +fulfilment +fulfilment's +fulfils +full +full's +fullback +fullback's +fullbacks +fulled +fuller +fullest +fulling +fullness +fullness's +fulls +fully +fulminate +fulminated +fulminates +fulminating +fulmination +fulmination's +fulminations +fulness +fulness's +fulsome +fumble +fumble's +fumbled +fumbler +fumbler's +fumblers +fumbles +fumbling +fume +fume's +fumed +fumes +fumigate +fumigated +fumigates +fumigating +fumigation +fumigation's +fumigator +fumigator's +fumigators +fuming +fun +fun's +function +function's +functional +functionality +functionally +functionaries +functionary +functionary's +functioned +functioning +functions +fund +fund's +fundamental +fundamental's +fundamentalism +fundamentalism's +fundamentalist +fundamentalist's +fundamentalists +fundamentally +fundamentals +funded +funding +funding's +funds +funeral +funeral's +funerals +funereal +funereally +fungal +fungi +fungicidal +fungicide +fungicide's +fungicides +fungous +fungus +fungus's +funguses +funicular +funicular's +funiculars +funk +funk's +funked +funkier +funkiest +funking +funks +funky +funnel +funnel's +funneled +funneling +funnelled +funnelling +funnels +funner +funnest +funnier +funnies +funniest +funnily +funniness +funniness's +funny +funny's +fur +fur's +furbelow +furbelow's +furbish +furbished +furbishes +furbishing +furies +furious +furiously +furl +furl's +furled +furling +furlong +furlong's +furlongs +furlough +furlough's +furloughed +furloughing +furloughs +furls +furnace +furnace's +furnaces +furnish +furnished +furnishes +furnishing +furnishings +furnishings's +furniture +furniture's +furor +furor's +furors +furred +furrier +furrier's +furriers +furriest +furring +furrow +furrow's +furrowed +furrowing +furrows +furry +furs +further +furtherance +furtherance's +furthered +furthering +furthermore +furthermost +furthers +furthest +furtive +furtively +furtiveness +furtiveness's +fury +fury's +furze +furze's +fuse +fuse's +fused +fuselage +fuselage's +fuselages +fuses +fusible +fusillade +fusillade's +fusillades +fusing +fusion +fusion's +fusions +fuss +fuss's +fussbudget +fussbudget's +fussbudgets +fussed +fusses +fussier +fussiest +fussily +fussiness +fussiness's +fussing +fussy +fustian +fustian's +fustier +fustiest +fusty +futile +futilely +futility +futility's +futon +futon's +futons +future +future's +futures +futuristic +futurities +futurity +futurity's +futz +futzed +futzes +futzing +fuze +fuze's +fuzed +fuzes +fuzing +fuzz +fuzz's +fuzzed +fuzzes +fuzzier +fuzziest +fuzzily +fuzziness +fuzziness's +fuzzing +fuzzy +fête +fête's +fêtes +g +gab +gab's +gabardine +gabardine's +gabardines +gabbed +gabbier +gabbiest +gabbing +gabble +gabble's +gabbled +gabbles +gabbling +gabby +gaberdine +gaberdine's +gaberdines +gable +gable's +gabled +gables +gabs +gad +gadabout +gadabout's +gadabouts +gadded +gadding +gadflies +gadfly +gadfly's +gadget +gadget's +gadgetry +gadgetry's +gadgets +gads +gaff +gaff's +gaffe +gaffe's +gaffed +gaffes +gaffing +gaffs +gag +gag's +gage +gage's +gaged +gages +gagged +gagging +gaggle +gaggle's +gaggles +gaging +gags +gaiety +gaiety's +gaily +gain +gain's +gained +gainful +gainfully +gaining +gains +gainsaid +gainsay +gainsaying +gainsays +gait +gait's +gaiter +gaiter's +gaiters +gaits +gal +gal's +gala +gala's +galactic +galas +galaxies +galaxy +galaxy's +gale +gale's +galena +galena's +gales +gall +gall's +gallant +gallant's +gallantly +gallantry +gallantry's +gallants +gallbladder +gallbladder's +gallbladders +galled +galleon +galleon's +galleons +galleries +gallery +gallery's +galley +galley's +galleys +galling +gallium +gallium's +gallivant +gallivanted +gallivanting +gallivants +gallon +gallon's +gallons +gallop +gallop's +galloped +galloping +gallops +gallows +gallows's +gallowses +galls +gallstone +gallstone's +gallstones +galore +galosh +galosh's +galoshes +gals +galvanic +galvanize +galvanized +galvanizes +galvanizing +galvanometer +galvanometer's +galvanometers +gambit +gambit's +gambits +gamble +gamble's +gambled +gambler +gambler's +gamblers +gambles +gambling +gambling's +gambol +gambol's +gamboled +gamboling +gambolled +gambolling +gambols +game +game's +gamecock +gamecock's +gamecocks +gamed +gamekeeper +gamekeeper's +gamekeepers +gamely +gameness +gameness's +gamer +games +gamesmanship +gamesmanship's +gamest +gamete +gamete's +gametes +gamey +gamier +gamiest +gamin +gamin's +gamine +gamine's +gamines +gaming +gamins +gamma +gamma's +gammas +gamut +gamut's +gamuts +gamy +gander +gander's +ganders +gang +gang's +ganged +ganging +gangland +gangland's +ganglia +ganglier +gangliest +gangling +ganglion +ganglion's +ganglions +gangly +gangplank +gangplank's +gangplanks +gangrene +gangrene's +gangrened +gangrenes +gangrening +gangrenous +gangs +gangster +gangster's +gangsters +gangway +gangway's +gangways +gannet +gannet's +gannets +gantlet +gantlet's +gantlets +gantries +gantry +gantry's +gap +gap's +gape +gape's +gaped +gapes +gaping +gaps +garage +garage's +garaged +garages +garaging +garb +garb's +garbage +garbage's +garbageman +garbanzo +garbanzo's +garbanzos +garbed +garbing +garble +garbled +garbles +garbling +garbs +garden +garden's +gardened +gardener +gardener's +gardeners +gardenia +gardenia's +gardenias +gardening +gardening's +gardens +gargantuan +gargle +gargle's +gargled +gargles +gargling +gargoyle +gargoyle's +gargoyles +garish +garishly +garishness +garishness's +garland +garland's +garlanded +garlanding +garlands +garlic +garlic's +garlicky +garment +garment's +garments +garner +garnered +garnering +garners +garnet +garnet's +garnets +garnish +garnish's +garnished +garnishee +garnishee's +garnisheed +garnisheeing +garnishees +garnishes +garnishing +garote +garote's +garoted +garotes +garoting +garotte +garotte's +garotted +garottes +garotting +garret +garret's +garrets +garrison +garrison's +garrisoned +garrisoning +garrisons +garrote +garrote's +garroted +garrotes +garroting +garrotte +garrotte's +garrotted +garrottes +garrotting +garrulity +garrulity's +garrulous +garrulously +garrulousness +garrulousness's +garter +garter's +garters +gas +gas's +gaseous +gases +gash +gash's +gashed +gashes +gashing +gasket +gasket's +gaskets +gaslight +gaslight's +gaslights +gasohol +gasohol's +gasolene +gasolene's +gasoline +gasoline's +gasp +gasp's +gasped +gasping +gasps +gassed +gasses +gassier +gassiest +gassing +gassy +gastric +gastritis +gastritis's +gastrointestinal +gastronomic +gastronomical +gastronomy +gastronomy's +gasworks +gasworks's +gate +gate's +gatecrasher +gatecrasher's +gatecrashers +gated +gatepost +gatepost's +gateposts +gates +gateway +gateway's +gateways +gather +gather's +gathered +gatherer +gatherer's +gatherers +gathering +gathering's +gatherings +gathers +gating +gauche +gaucher +gauchest +gaucho +gaucho's +gauchos +gaudier +gaudiest +gaudily +gaudiness +gaudiness's +gaudy +gauge +gauge's +gauged +gauges +gauging +gaunt +gaunter +gauntest +gauntlet +gauntlet's +gauntlets +gauntness +gauntness's +gauze +gauze's +gauzier +gauziest +gauzy +gave +gavel +gavel's +gavels +gavotte +gavotte's +gavottes +gawk +gawked +gawkier +gawkiest +gawkily +gawkiness +gawkiness's +gawking +gawks +gawky +gay +gay's +gayer +gayest +gayety +gayety's +gayly +gayness +gayness's +gays +gaze +gaze's +gazebo +gazebo's +gazeboes +gazebos +gazed +gazelle +gazelle's +gazelles +gazer +gazer's +gazers +gazes +gazette +gazette's +gazetted +gazetteer +gazetteer's +gazetteers +gazettes +gazetting +gazillion +gazillions +gazing +gazpacho +gazpacho's +gear +gear's +gearbox +gearbox's +gearboxes +geared +gearing +gears +gearshift +gearshift's +gearshifts +gearwheel +gearwheel's +gearwheels +gecko +gecko's +geckoes +geckos +gee +geed +geegaw +geegaw's +geegaws +geeing +geek +geek's +geekier +geekiest +geeks +geeky +gees +geese +geez +geezer +geezer's +geezers +geisha +geisha's +geishas +gel +gel's +gelatin +gelatin's +gelatine +gelatine's +gelatinous +geld +gelded +gelding +gelding's +geldings +gelds +gelid +gelled +gelling +gels +gelt +gem +gem's +gems +gemstone +gemstone's +gemstones +gendarme +gendarme's +gendarmes +gender +gender's +genders +gene +gene's +genealogical +genealogies +genealogist +genealogist's +genealogists +genealogy +genealogy's +genera +general +general's +generalissimo +generalissimo's +generalissimos +generalities +generality +generality's +generalization +generalization's +generalizations +generalize +generalized +generalizes +generalizing +generally +generals +generate +generated +generates +generating +generation +generation's +generations +generative +generator +generator's +generators +generic +generic's +generically +generics +generosities +generosity +generosity's +generous +generously +genes +geneses +genesis +genesis's +genetic +genetically +geneticist +geneticist's +geneticists +genetics +genetics's +genial +geniality +geniality's +genially +genie +genie's +genies +genii +genital +genitalia +genitalia's +genitals +genitals's +genitive +genitive's +genitives +genius +genius's +geniuses +genocide +genocide's +genome +genome's +genomes +genre +genre's +genres +gent +gent's +genteel +gentian +gentian's +gentians +gentile +gentile's +gentiles +gentility +gentility's +gentle +gentled +gentlefolk +gentlefolk's +gentleman +gentleman's +gentlemanly +gentlemen +gentleness +gentleness's +gentler +gentles +gentlest +gentlewoman +gentlewoman's +gentlewomen +gentling +gently +gentries +gentrification +gentrification's +gentrified +gentrifies +gentrify +gentrifying +gentry +gentry's +gents +genuflect +genuflected +genuflecting +genuflection +genuflection's +genuflections +genuflects +genuine +genuinely +genuineness +genuineness's +genus +genus's +genuses +geocentric +geode +geode's +geodes +geodesic +geodesic's +geodesics +geographer +geographer's +geographers +geographic +geographical +geographically +geographies +geography +geography's +geologic +geological +geologically +geologies +geologist +geologist's +geologists +geology +geology's +geometer +geometric +geometrical +geometrically +geometries +geometry +geometry's +geophysical +geophysics +geophysics's +geopolitical +geopolitics +geopolitics's +geostationary +geothermal +geranium +geranium's +geraniums +gerbil +gerbil's +gerbils +geriatric +geriatrics +geriatrics's +germ +germ's +germane +germanium +germanium's +germicidal +germicide +germicide's +germicides +germinal +germinal's +germinate +germinated +germinates +germinating +germination +germination's +germs +gerontologist +gerontologist's +gerontologists +gerontology +gerontology's +gerrymander +gerrymander's +gerrymandered +gerrymandering +gerrymandering's +gerrymanders +gerund +gerund's +gerunds +gestate +gestated +gestates +gestating +gestation +gestation's +gesticulate +gesticulated +gesticulates +gesticulating +gesticulation +gesticulation's +gesticulations +gesture +gesture's +gestured +gestures +gesturing +gesundheit +get +get's +getaway +getaway's +getaways +gets +getting +getup +getup's +gewgaw +gewgaw's +gewgaws +geyser +geyser's +geysers +ghastlier +ghastliest +ghastliness +ghastliness's +ghastly +gherkin +gherkin's +gherkins +ghetto +ghetto's +ghettoes +ghettos +ghost +ghost's +ghosted +ghosting +ghostlier +ghostliest +ghostliness +ghostliness's +ghostly +ghosts +ghostwrite +ghostwriter +ghostwriter's +ghostwriters +ghostwrites +ghostwriting +ghostwritten +ghostwrote +ghoul +ghoul's +ghoulish +ghouls +giant +giant's +giantess +giantess's +giantesses +giants +gibber +gibbered +gibbering +gibberish +gibberish's +gibbers +gibbet +gibbet's +gibbeted +gibbeting +gibbets +gibbon +gibbon's +gibbons +gibe +gibe's +gibed +gibes +gibing +giblet +giblet's +giblets +giddier +giddiest +giddily +giddiness +giddiness's +giddy +gift +gift's +gifted +gifting +gifts +gig +gig's +gigabit +gigabit's +gigabits +gigabyte +gigabyte's +gigabytes +gigahertz +gigahertz's +gigantic +gigged +gigging +giggle +giggle's +giggled +giggler +giggler's +gigglers +giggles +gigglier +giggliest +giggling +giggly +gigolo +gigolo's +gigolos +gigs +gild +gild's +gilded +gilding +gilds +gill +gill's +gills +gilt +gilt's +gilts +gimcrack +gimcrack's +gimcracks +gimlet +gimlet's +gimleted +gimleting +gimlets +gimme +gimmick +gimmick's +gimmickry +gimmickry's +gimmicks +gimmicky +gimpier +gimpiest +gimpy +gin +gin's +ginger +ginger's +gingerbread +gingerbread's +gingerly +gingersnap +gingersnap's +gingersnaps +gingham +gingham's +gingivitis +gingivitis's +gingko +gingko's +gingkoes +gingkos +ginkgo +ginkgo's +ginkgoes +ginkgos +ginned +ginning +gins +ginseng +ginseng's +gipsies +gipsy +gipsy's +giraffe +giraffe's +giraffes +gird +girded +girder +girder's +girders +girding +girdle +girdle's +girdled +girdles +girdling +girds +girl +girl's +girlfriend +girlfriend's +girlfriends +girlhood +girlhood's +girlhoods +girlish +girlishly +girls +girt +girt's +girted +girth +girth's +girths +girting +girts +gismo +gismo's +gismos +gist +gist's +give +give's +giveaway +giveaway's +giveaways +given +given's +givens +gives +giving +gizmo +gizmo's +gizmos +gizzard +gizzard's +gizzards +glacial +glacially +glacier +glacier's +glaciers +glad +glad's +gladden +gladdened +gladdening +gladdens +gladder +gladdest +glade +glade's +glades +gladiator +gladiator's +gladiatorial +gladiators +gladiola +gladiola's +gladiolas +gladioli +gladiolus +gladiolus's +gladioluses +gladly +gladness +gladness's +glads +glamor +glamor's +glamored +glamoring +glamorize +glamorized +glamorizes +glamorizing +glamorous +glamorously +glamors +glamour +glamour's +glamoured +glamouring +glamourize +glamourized +glamourizes +glamourizing +glamourous +glamours +glance +glance's +glanced +glances +glancing +gland +gland's +glands +glandular +glare +glare's +glared +glares +glaring +glaringly +glass +glass's +glassed +glasses +glassful +glassful's +glassfuls +glassier +glassiest +glassing +glassware +glassware's +glassy +glaucoma +glaucoma's +glaze +glaze's +glazed +glazes +glazier +glazier's +glaziers +glazing +gleam +gleam's +gleamed +gleaming +gleamings +gleams +glean +gleaned +gleaning +gleans +glee +glee's +gleeful +gleefully +glen +glen's +glens +glib +glibber +glibbest +glibly +glibness +glibness's +glide +glide's +glided +glider +glider's +gliders +glides +gliding +glimmer +glimmer's +glimmered +glimmering +glimmering's +glimmerings +glimmers +glimpse +glimpse's +glimpsed +glimpses +glimpsing +glint +glint's +glinted +glinting +glints +glissandi +glissando +glissando's +glissandos +glisten +glisten's +glistened +glistening +glistens +glitch +glitch's +glitches +glitter +glitter's +glittered +glittering +glitters +glittery +glitz +glitz's +glitzier +glitziest +glitzy +gloaming +gloaming's +gloamings +gloat +gloat's +gloated +gloating +gloats +glob +glob's +global +globally +globe +globe's +globes +globetrotter +globetrotter's +globetrotters +globs +globular +globule +globule's +globules +glockenspiel +glockenspiel's +glockenspiels +gloom +gloom's +gloomier +gloomiest +gloomily +gloominess +gloominess's +gloomy +glop +glop's +gloried +glories +glorification +glorification's +glorified +glorifies +glorify +glorifying +glorious +gloriously +glory +glory's +glorying +gloss +gloss's +glossaries +glossary +glossary's +glossed +glosses +glossier +glossies +glossiest +glossiness +glossiness's +glossing +glossy +glossy's +glottides +glottis +glottis's +glottises +glove +glove's +gloved +gloves +gloving +glow +glow's +glowed +glower +glower's +glowered +glowering +glowers +glowing +glowingly +glows +glowworm +glowworm's +glowworms +glucose +glucose's +glue +glue's +glued +glueing +glues +gluey +gluier +gluiest +gluing +glum +glumly +glummer +glummest +glumness +glumness's +glut +glut's +gluten +gluten's +glutinous +gluts +glutted +glutting +glutton +glutton's +gluttonous +gluttonously +gluttons +gluttony +gluttony's +glycerin +glycerin's +glycerine +glycerine's +glycerol +glycerol's +glycogen +glycogen's +glyph +gnarl +gnarled +gnarlier +gnarliest +gnarling +gnarls +gnarly +gnash +gnash's +gnashed +gnashes +gnashing +gnat +gnat's +gnats +gnaw +gnawed +gnawing +gnawn +gnaws +gneiss +gneiss's +gnome +gnome's +gnomes +gnomish +gnu +gnu's +gnus +go +go's +goad +goad's +goaded +goading +goads +goal +goal's +goalie +goalie's +goalies +goalkeeper +goalkeeper's +goalkeepers +goalpost +goalpost's +goalposts +goals +goaltender +goaltender's +goaltenders +goat +goat's +goatee +goatee's +goatees +goatherd +goatherd's +goatherds +goats +goatskin +goatskin's +goatskins +gob +gob's +gobbed +gobbing +gobble +gobble's +gobbled +gobbledegook +gobbledegook's +gobbledygook +gobbledygook's +gobbler +gobbler's +gobblers +gobbles +gobbling +goblet +goblet's +goblets +goblin +goblin's +goblins +gobs +god +god's +godchild +godchild's +godchildren +goddam +goddamed +goddamn +goddamned +goddaughter +goddaughter's +goddaughters +goddess +goddess's +goddesses +godfather +godfather's +godfathers +godforsaken +godhood +godhood's +godless +godlier +godliest +godlike +godliness +godliness's +godly +godmother +godmother's +godmothers +godparent +godparent's +godparents +gods +godsend +godsend's +godsends +godson +godson's +godsons +goes +gofer +gofer's +gofers +goggle +goggle's +goggled +goggles +goggles's +goggling +going +going's +goings +goiter +goiter's +goiters +goitre +goitre's +goitres +gold +gold's +goldbrick +goldbrick's +goldbricked +goldbricking +goldbricks +golden +goldener +goldenest +goldenrod +goldenrod's +goldfinch +goldfinch's +goldfinches +goldfish +goldfish's +goldfishes +golds +goldsmith +goldsmith's +goldsmiths +golf +golf's +golfed +golfer +golfer's +golfers +golfing +golfs +gollies +golly +golly's +gonad +gonad's +gonads +gondola +gondola's +gondolas +gondolier +gondolier's +gondoliers +gone +goner +goner's +goners +gong +gong's +gonged +gonging +gongs +gonna +gonorrhea +gonorrhea's +gonorrhoea +gonorrhoea's +goo +goo's +goober +goober's +goobers +good +good's +goodby +goodby's +goodbye +goodbye's +goodbyes +goodbys +goodie +goodie's +goodies +goodlier +goodliest +goodly +goodness +goodness's +goodnight +goods +goods's +goodwill +goodwill's +goody +goody's +gooey +goof +goof's +goofed +goofier +goofiest +goofing +goofs +goofy +gooier +gooiest +gook +gook's +gooks +goon +goon's +goons +goop +goop's +goose +goose's +gooseberries +gooseberry +gooseberry's +goosed +gooses +goosing +gopher +gopher's +gophers +gore +gore's +gored +gores +gorge +gorge's +gorged +gorgeous +gorgeously +gorges +gorging +gorier +goriest +gorilla +gorilla's +gorillas +goriness +goriness's +goring +gorse +gorse's +gory +gosh +gosling +gosling's +goslings +gospel +gospel's +gospels +gossamer +gossamer's +gossip +gossip's +gossiped +gossiping +gossipped +gossipping +gossips +gossipy +got +gotta +gotten +gouge +gouge's +gouged +gouger +gouger's +gougers +gouges +gouging +goulash +goulash's +goulashes +gourd +gourd's +gourds +gourmand +gourmand's +gourmands +gourmet +gourmet's +gourmets +gout +gout's +goutier +goutiest +gouty +govern +governable +governance +governance's +governed +governess +governess's +governesses +governing +government +government's +governmental +governments +governor +governor's +governors +governorship +governorship's +governs +gown +gown's +gowned +gowning +gowns +grab +grab's +grabbed +grabber +grabbing +grabs +grace +grace's +graced +graceful +gracefully +gracefulness +gracefulness's +graceless +gracelessly +gracelessness +gracelessness's +graces +gracing +gracious +graciously +graciousness +graciousness's +grackle +grackle's +grackles +grad +grad's +gradation +gradation's +gradations +grade +grade's +graded +grader +grader's +graders +grades +gradient +gradient's +gradients +grading +grads +gradual +gradually +graduate +graduate's +graduated +graduates +graduating +graduation +graduation's +graduations +graffiti +graffito +graffito's +graft +graft's +grafted +grafter +grafter's +grafters +grafting +grafts +grail +grain +grain's +grainier +grainiest +grains +grainy +gram +gram's +grammar +grammar's +grammarian +grammarian's +grammarians +grammars +grammatical +grammatically +gramophone +grams +granaries +granary +granary's +grand +grand's +grandad +grandad's +grandads +grandchild +grandchild's +grandchildren +granddad +granddad's +granddads +granddaughter +granddaughter's +granddaughters +grandee +grandee's +grandees +grander +grandest +grandeur +grandeur's +grandfather +grandfather's +grandfathered +grandfathering +grandfathers +grandiloquence +grandiloquence's +grandiloquent +grandiose +grandly +grandma +grandma's +grandmas +grandmother +grandmother's +grandmothers +grandness +grandness's +grandpa +grandpa's +grandparent +grandparent's +grandparents +grandpas +grands +grandson +grandson's +grandsons +grandstand +grandstand's +grandstanded +grandstanding +grandstands +grange +grange's +granges +granite +granite's +grannie +grannie's +grannies +granny +granny's +granola +granola's +grant +grant's +granted +granting +grants +granular +granularity +granularity's +granulate +granulated +granulates +granulating +granulation +granulation's +granule +granule's +granules +grape +grape's +grapefruit +grapefruit's +grapefruits +grapes +grapevine +grapevine's +grapevines +graph +graph's +graphed +graphic +graphic's +graphical +graphically +graphics +graphing +graphite +graphite's +graphologist +graphologist's +graphologists +graphology +graphology's +graphs +grapnel +grapnel's +grapnels +grapple +grapple's +grappled +grapples +grappling +grasp +grasp's +grasped +grasping +grasps +grass +grass's +grassed +grasses +grasshopper +grasshopper's +grasshoppers +grassier +grassiest +grassing +grassland +grassland's +grassy +grate +grate's +grated +grateful +gratefully +gratefulness +gratefulness's +grater +grater's +graters +grates +gratification +gratification's +gratifications +gratified +gratifies +gratify +gratifying +grating +grating's +gratings +gratis +gratitude +gratitude's +gratuities +gratuitous +gratuitously +gratuity +gratuity's +grave +grave's +graved +gravel +gravel's +graveled +graveling +gravelled +gravelling +gravelly +gravels +gravely +graven +graver +graves +gravest +gravestone +gravestone's +gravestones +graveyard +graveyard's +graveyards +gravies +graving +gravitate +gravitated +gravitates +gravitating +gravitation +gravitation's +gravitational +gravity +gravity's +gravy +gravy's +gray +gray's +graybeard +graybeard's +graybeards +grayed +grayer +grayest +graying +grayish +grayness +grayness's +grays +graze +graze's +grazed +grazes +grazing +grease +grease's +greased +greasepaint +greasepaint's +greases +greasier +greasiest +greasiness +greasiness's +greasing +greasy +great +great's +greater +greatest +greatly +greatness +greatness's +greats +grebe +grebe's +grebes +greed +greed's +greedier +greediest +greedily +greediness +greediness's +greedy +green +green's +greenback +greenback's +greenbacks +greened +greener +greenery +greenery's +greenest +greengrocer +greengrocer's +greengrocers +greenhorn +greenhorn's +greenhorns +greenhouse +greenhouse's +greenhouses +greening +greenish +greenness +greenness's +greens +greensward +greensward's +greet +greeted +greeting +greeting's +greetings +greets +gregarious +gregariously +gregariousness +gregariousness's +gremlin +gremlin's +gremlins +grenade +grenade's +grenades +grenadier +grenadier's +grenadiers +grew +grey +grey's +greyed +greyer +greyest +greyhound +greyhound's +greyhounds +greying +greyish +greys +grid +grid's +griddle +griddle's +griddlecake +griddlecake's +griddlecakes +griddles +gridiron +gridiron's +gridirons +gridlock +gridlock's +gridlocks +grids +grief +grief's +griefs +grievance +grievance's +grievances +grieve +grieved +grieves +grieving +grievous +grievously +griffin +griffin's +griffins +grill +grill's +grille +grille's +grilled +grilles +grilling +grills +grim +grimace +grimace's +grimaced +grimaces +grimacing +grime +grime's +grimed +grimes +grimier +grimiest +griming +grimly +grimmer +grimmest +grimness +grimness's +grimy +grin +grin's +grind +grind's +grinder +grinder's +grinders +grinding +grinds +grindstone +grindstone's +grindstones +gringo +gringo's +gringos +grinned +grinning +grins +grip +grip's +gripe +gripe's +griped +gripes +griping +grippe +grippe's +gripped +gripping +grips +grislier +grisliest +grisly +grist +grist's +gristle +gristle's +gristlier +gristliest +gristly +grit +grit's +grits +grits's +gritted +grittier +grittiest +gritting +gritty +grizzled +grizzlier +grizzlies +grizzliest +grizzly +grizzly's +groan +groan's +groaned +groaning +groans +grocer +grocer's +groceries +grocers +grocery +grocery's +grog +grog's +groggier +groggiest +groggily +grogginess +grogginess's +groggy +groin +groin's +groins +grommet +grommet's +grommets +groom +groom's +groomed +grooming +grooming's +grooms +groove +groove's +grooved +grooves +groovier +grooviest +grooving +groovy +grope +grope's +groped +gropes +groping +grosbeak +grosbeak's +grosbeaks +gross +gross's +grossed +grosser +grosses +grossest +grossing +grossly +grossness +grossness's +grotesque +grotesque's +grotesquely +grotesques +grotto +grotto's +grottoes +grottos +grouch +grouch's +grouched +grouches +grouchier +grouchiest +grouchiness +grouchiness's +grouching +grouchy +ground +ground's +groundbreaking +groundbreaking's +groundbreakings +grounded +grounder +grounder's +grounders +groundhog +groundhog's +groundhogs +grounding +grounding's +groundings +groundless +groundlessly +grounds +groundswell +groundswell's +groundswells +groundwork +groundwork's +group +group's +grouped +grouper +grouper's +groupers +groupie +groupie's +groupies +grouping +grouping's +groupings +groups +grouse +grouse's +groused +grouses +grousing +grout +grout's +grouted +grouting +grouts +grove +grove's +grovel +groveled +groveler +groveler's +grovelers +groveling +grovelled +groveller +groveller's +grovellers +grovelling +grovels +groves +grow +grower +grower's +growers +growing +growl +growl's +growled +growling +growls +grown +grownup +grownup's +grownups +grows +growth +growth's +growths +grub +grub's +grubbed +grubbier +grubbiest +grubbiness +grubbiness's +grubbing +grubby +grubs +grubstake +grubstake's +grudge +grudge's +grudged +grudges +grudging +grudgingly +gruel +gruel's +grueling +gruelings +gruelling +gruellings +gruesome +gruesomely +gruesomer +gruesomest +gruff +gruffer +gruffest +gruffly +gruffness +gruffness's +grumble +grumble's +grumbled +grumbler +grumbler's +grumblers +grumbles +grumbling +grumpier +grumpiest +grumpily +grumpiness +grumpiness's +grumpy +grunge +grunge's +grungier +grungiest +grungy +grunt +grunt's +grunted +grunting +grunts +gryphon +gryphon's +gryphons +gs +guacamole +guacamole's +guano +guano's +guarantee +guarantee's +guaranteed +guaranteeing +guarantees +guarantied +guaranties +guarantor +guarantor's +guarantors +guaranty +guaranty's +guarantying +guard +guard's +guarded +guardedly +guardhouse +guardhouse's +guardhouses +guardian +guardian's +guardians +guardianship +guardianship's +guarding +guardrail +guardrail's +guardrails +guardroom +guardroom's +guardrooms +guards +guardsman +guardsman's +guardsmen +guava +guava's +guavas +gubernatorial +guerilla +guerilla's +guerillas +guerrilla +guerrilla's +guerrillas +guess +guess's +guessable +guessed +guesser +guesser's +guessers +guesses +guessing +guesstimate +guesstimate's +guesstimated +guesstimates +guesstimating +guesswork +guesswork's +guest +guest's +guested +guesting +guests +guff +guff's +guffaw +guffaw's +guffawed +guffawing +guffaws +guidance +guidance's +guide +guide's +guidebook +guidebook's +guidebooks +guided +guideline +guideline's +guidelines +guides +guiding +guild +guild's +guilder +guilder's +guilders +guilds +guile +guile's +guileful +guileless +guillotine +guillotine's +guillotined +guillotines +guillotining +guilt +guilt's +guiltier +guiltiest +guiltily +guiltiness +guiltiness's +guiltless +guilty +guinea +guinea's +guineas +guise +guise's +guises +guitar +guitar's +guitarist +guitarist's +guitarists +guitars +gulag +gulag's +gulags +gulch +gulch's +gulches +gulf +gulf's +gulfs +gull +gull's +gulled +gullet +gullet's +gullets +gulley +gulley's +gullibility +gullibility's +gullible +gullies +gulling +gulls +gully +gully's +gulp +gulp's +gulped +gulping +gulps +gum +gum's +gumbo +gumbo's +gumbos +gumdrop +gumdrop's +gumdrops +gummed +gummier +gummiest +gumming +gummy +gumption +gumption's +gums +gun +gun's +gunboat +gunboat's +gunboats +gunfight +gunfight's +gunfights +gunfire +gunfire's +gunk +gunk's +gunman +gunman's +gunmen +gunned +gunner +gunner's +gunners +gunnery +gunnery's +gunning +gunny +gunny's +gunnysack +gunnysack's +gunnysacks +gunpoint +gunpoint's +gunpowder +gunpowder's +gunrunner +gunrunner's +gunrunners +gunrunning +gunrunning's +guns +gunshot +gunshot's +gunshots +gunslinger +gunslinger's +gunslingers +gunsmith +gunsmith's +gunsmiths +gunwale +gunwale's +gunwales +guppies +guppy +guppy's +gurgle +gurgle's +gurgled +gurgles +gurgling +gurney +gurney's +gurneys +guru +guru's +gurus +gush +gush's +gushed +gusher +gusher's +gushers +gushes +gushier +gushiest +gushing +gushy +gusset +gusset's +gusseted +gusseting +gussets +gust +gust's +gustatory +gusted +gustier +gustiest +gusting +gusto +gusto's +gusts +gusty +gut +gut's +gutless +guts +gutsier +gutsiest +gutsy +gutted +gutter +gutter's +guttered +guttering +gutters +guttersnipe +guttersnipe's +guttersnipes +gutting +guttural +guttural's +gutturals +guy +guy's +guyed +guying +guys +guzzle +guzzled +guzzler +guzzler's +guzzlers +guzzles +guzzling +gybe +gybe's +gybed +gybes +gybing +gym +gym's +gymnasia +gymnasium +gymnasium's +gymnasiums +gymnast +gymnast's +gymnastic +gymnastics +gymnastics's +gymnasts +gymnosperm +gymnosperm's +gymnosperms +gyms +gynecological +gynecologist +gynecologist's +gynecologists +gynecology +gynecology's +gyp +gyp's +gypped +gypping +gyps +gypsies +gypsum +gypsum's +gypsy +gypsy's +gyrate +gyrated +gyrates +gyrating +gyration +gyration's +gyrations +gyro +gyro's +gyros +gyroscope +gyroscope's +gyroscopes +h +h'm +ha +haberdasher +haberdasher's +haberdasheries +haberdashers +haberdashery +haberdashery's +habit +habit's +habitability +habitability's +habitable +habitat +habitat's +habitation +habitation's +habitations +habitats +habits +habitual +habitually +habituate +habituated +habituates +habituating +habituation +habituation's +habitué +habitué's +habitués +hacienda +hacienda's +haciendas +hack +hack's +hacked +hacker +hacker's +hackers +hacking +hackle +hackle's +hackles +hackney +hackney's +hackneyed +hackneying +hackneys +hacks +hacksaw +hacksaw's +hacksaws +had +haddock +haddock's +haddocks +hadn't +haemoglobin +haemoglobin's +haemophilia +haemophilia's +haemorrhage +haemorrhage's +haemorrhaged +haemorrhages +haemorrhaging +haemorrhoids +hafnium +hafnium's +haft +haft's +hafts +hag +hag's +haggard +haggle +haggle's +haggled +haggler +haggler's +hagglers +haggles +haggling +hags +hah +haiku +haiku's +hail +hail's +hailed +hailing +hails +hailstone +hailstone's +hailstones +hailstorm +hailstorm's +hailstorms +hair +hair's +hairbreadth +hairbreadth's +hairbreadths +hairbrush +hairbrush's +hairbrushes +haircut +haircut's +haircuts +hairdo +hairdo's +hairdos +hairdresser +hairdresser's +hairdressers +hairdressing +hairdressing's +haired +hairier +hairiest +hairiness +hairiness's +hairless +hairline +hairline's +hairlines +hairnet +hairnet's +hairnets +hairpiece +hairpiece's +hairpieces +hairpin +hairpin's +hairpins +hairs +hairsbreadth +hairsbreadth's +hairsbreadths +hairsplitting +hairsplitting's +hairspring +hairspring's +hairsprings +hairstyle +hairstyle's +hairstyles +hairstylist +hairstylist's +hairstylists +hairy +hake +hake's +hakes +halberd +halberd's +halberds +halcyon +hale +haled +haler +hales +halest +half +half's +halfback +halfback's +halfbacks +halfhearted +halfheartedly +halfheartedness +halfheartedness's +halfpence +halfpennies +halfpenny +halfpenny's +halftime +halftime's +halftimes +halfway +halibut +halibut's +halibuts +haling +halitosis +halitosis's +hall +hall's +halleluiah +halleluiah's +halleluiahs +hallelujah +hallelujah's +hallelujahs +hallmark +hallmark's +hallmarked +hallmarking +hallmarks +hallow +hallowed +hallowing +hallows +halls +hallucinate +hallucinated +hallucinates +hallucinating +hallucination +hallucination's +hallucinations +hallucinatory +hallucinogen +hallucinogen's +hallucinogenic +hallucinogenic's +hallucinogenics +hallucinogens +hallway +hallway's +hallways +halo +halo's +haloed +haloes +halogen +halogen's +halogens +haloing +halon +halos +halt +halt's +halted +halter +halter's +haltered +haltering +halters +halting +haltingly +halts +halve +halved +halves +halving +halyard +halyard's +halyards +ham +ham's +hamburger +hamburger's +hamburgers +hamlet +hamlet's +hamlets +hammed +hammer +hammer's +hammered +hammerhead +hammerhead's +hammerheads +hammering +hammerings +hammers +hamming +hammock +hammock's +hammocks +hamper +hamper's +hampered +hampering +hampers +hams +hamster +hamster's +hamsters +hamstring +hamstring's +hamstringing +hamstrings +hamstrung +hand +hand's +handbag +handbag's +handbags +handball +handball's +handballs +handbill +handbill's +handbills +handbook +handbook's +handbooks +handcar +handcar's +handcars +handcart +handcart's +handcarts +handcraft +handcraft's +handcrafted +handcrafting +handcrafts +handcuff +handcuff's +handcuffed +handcuffing +handcuffs +handed +handedness +handful +handful's +handfuls +handgun +handgun's +handguns +handicap +handicap's +handicapped +handicapper +handicapper's +handicappers +handicapping +handicaps +handicraft +handicraft's +handicrafts +handier +handiest +handily +handiness +handiness's +handing +handiwork +handiwork's +handkerchief +handkerchief's +handkerchiefs +handkerchieves +handle +handle's +handlebar +handlebar's +handlebars +handled +handler +handler's +handlers +handles +handling +handmade +handmaid +handmaid's +handmaiden +handmaiden's +handmaidens +handmaids +handout +handout's +handouts +handpick +handpicked +handpicking +handpicks +handrail +handrail's +handrails +hands +handset +handset's +handsets +handsful +handshake +handshake's +handshakes +handshaking +handsome +handsomely +handsomeness +handsomeness's +handsomer +handsomest +handspring +handspring's +handsprings +handstand +handstand's +handstands +handwork +handwork's +handwriting +handwriting's +handwritten +handy +handyman +handyman's +handymen +hang +hang's +hangar +hangar's +hangars +hangdog +hanged +hanger +hanger's +hangers +hanging +hanging's +hangings +hangman +hangman's +hangmen +hangnail +hangnail's +hangnails +hangout +hangout's +hangouts +hangover +hangover's +hangovers +hangs +hank +hank's +hanker +hankered +hankering +hankering's +hankerings +hankers +hankie +hankie's +hankies +hanks +hanky +hanky's +hansom +hansom's +hansoms +haphazard +haphazardly +hapless +happen +happened +happening +happening's +happenings +happens +happenstance +happenstance's +happenstances +happier +happiest +happily +happiness +happiness's +happy +harangue +harangue's +harangued +harangues +haranguing +harass +harassed +harasses +harassing +harassment +harassment's +harbinger +harbinger's +harbingers +harbor +harbor's +harbored +harboring +harbors +hard +hardback +hardback's +hardbacks +hardball +hardball's +hardcover +hardcover's +hardcovers +harden +hardened +hardener +hardener's +hardeners +hardening +hardens +harder +hardest +hardheaded +hardheadedly +hardheadedness +hardheadedness's +hardhearted +hardheartedly +hardheartedness +hardheartedness's +hardier +hardiest +hardily +hardiness +hardiness's +hardline +hardliner +hardliner's +hardliners +hardly +hardness +hardness's +hardship +hardship's +hardships +hardtack +hardtack's +hardtop +hardtop's +hardtops +hardware +hardware's +hardwood +hardwood's +hardwoods +hardy +hare +hare's +harebrained +hared +harelip +harelip's +harelips +harem +harem's +harems +hares +haring +hark +harked +harken +harkened +harkening +harkens +harking +harks +harlequin +harlequin's +harlequins +harlot +harlot's +harlots +harm +harm's +harmed +harmful +harmfully +harmfulness +harmfulness's +harming +harmless +harmlessly +harmlessness +harmlessness's +harmonic +harmonic's +harmonica +harmonica's +harmonically +harmonicas +harmonics +harmonies +harmonious +harmoniously +harmoniousness +harmoniousness's +harmonization +harmonization's +harmonize +harmonized +harmonizes +harmonizing +harmony +harmony's +harms +harness +harness's +harnessed +harnesses +harnessing +harp +harp's +harped +harpies +harping +harpist +harpist's +harpists +harpoon +harpoon's +harpooned +harpooning +harpoons +harps +harpsichord +harpsichord's +harpsichords +harpy +harpy's +harridan +harridan's +harridans +harried +harries +harrow +harrow's +harrowed +harrowing +harrows +harry +harrying +harsh +harsher +harshest +harshly +harshness +harshness's +hart +hart's +harts +harvest +harvest's +harvested +harvester +harvester's +harvesters +harvesting +harvests +has +hash +hash's +hashed +hasheesh +hasheesh's +hashes +hashing +hashish +hashish's +hasn't +hasp +hasp's +hasps +hassle +hassle's +hassled +hassles +hassling +hassock +hassock's +hassocks +haste +haste's +hasted +hasten +hastened +hastening +hastens +hastes +hastier +hastiest +hastily +hastiness +hastiness's +hasting +hasty +hat +hat's +hatch +hatch's +hatchback +hatchback's +hatchbacks +hatched +hatcheries +hatchery +hatchery's +hatches +hatchet +hatchet's +hatchets +hatching +hatching's +hatchway +hatchway's +hatchways +hate +hate's +hated +hateful +hatefully +hatefulness +hatefulness's +hater +hater's +haters +hates +hath +hating +hatred +hatred's +hatreds +hats +hatted +hatter +hatter's +hatters +hatting +haughtier +haughtiest +haughtily +haughtiness +haughtiness's +haughty +haul +haul's +hauled +hauler +hauler's +haulers +hauling +hauls +haunch +haunch's +haunches +haunt +haunt's +haunted +haunting +hauntingly +haunts +hauteur +hauteur's +have +have's +haven +haven's +haven't +havens +haversack +haversack's +haversacks +haves +having +havoc +havoc's +haw +haw's +hawed +hawing +hawk +hawk's +hawked +hawker +hawker's +hawkers +hawking +hawkish +hawks +haws +hawser +hawser's +hawsers +hawthorn +hawthorn's +hawthorns +hay +hay's +haycock +haycock's +haycocks +hayed +haying +hayloft +hayloft's +haylofts +haymow +haymow's +haymows +hays +hayseed +hayseed's +hayseeds +haystack +haystack's +haystacks +haywire +hazard +hazard's +hazarded +hazarding +hazardous +hazards +haze +haze's +hazed +hazel +hazel's +hazelnut +hazelnut's +hazelnuts +hazels +hazes +hazier +haziest +hazily +haziness +haziness's +hazing +hazing's +hazings +hazy +he +he'd +he'll +he's +head +head's +headache +headache's +headaches +headband +headband's +headbands +headboard +headboard's +headboards +headdress +headdress's +headdresses +headed +header +header's +headers +headfirst +headgear +headgear's +headhunter +headhunter's +headhunters +headier +headiest +heading +heading's +headings +headland +headland's +headlands +headless +headlight +headlight's +headlights +headline +headline's +headlined +headlines +headlining +headlock +headlock's +headlocks +headlong +headmaster +headmaster's +headmasters +headmistress +headmistress's +headmistresses +headphone +headphone's +headphones +headquarter +headquarters +headquarters's +headrest +headrest's +headrests +headroom +headroom's +heads +headset +headset's +headsets +headstone +headstone's +headstones +headstrong +headwaiter +headwaiter's +headwaiters +headwaters +headwaters's +headway +headway's +headwind +headwind's +headwinds +headword +headword's +headwords +heady +heal +healed +healer +healer's +healers +healing +heals +health +health's +healthful +healthfully +healthfulness +healthfulness's +healthier +healthiest +healthily +healthiness +healthiness's +healthy +heap +heap's +heaped +heaping +heaps +hear +heard +hearer +hearer's +hearers +hearing +hearing's +hearings +hearken +hearkened +hearkening +hearkens +hears +hearsay +hearsay's +hearse +hearse's +hearses +heart +heart's +heartache +heartache's +heartaches +heartbeat +heartbeat's +heartbeats +heartbreak +heartbreak's +heartbreaking +heartbreaks +heartbroken +heartburn +heartburn's +hearten +heartened +heartening +heartens +heartfelt +hearth +hearth's +hearths +heartier +hearties +heartiest +heartily +heartiness +heartiness's +heartland +heartland's +heartlands +heartless +heartlessly +heartlessness +heartlessness's +heartrending +hearts +heartsick +heartstrings +heartstrings's +heartthrob +heartthrob's +heartthrobs +heartwarming +hearty +hearty's +heat +heat's +heated +heatedly +heater +heater's +heaters +heath +heath's +heathen +heathen's +heathenish +heathens +heather +heather's +heaths +heating +heats +heatstroke +heatstroke's +heave +heave's +heaved +heaven +heaven's +heavenlier +heavenliest +heavenly +heavens +heavens's +heavenward +heavenwards +heaves +heavier +heavies +heaviest +heavily +heaviness +heaviness's +heaving +heavy +heavy's +heavyset +heavyweight +heavyweight's +heavyweights +heck +heck's +heckle +heckle's +heckled +heckler +heckler's +hecklers +heckles +heckling +heckling's +hectare +hectare's +hectares +hectic +hectically +hector +hector's +hectored +hectoring +hectors +hedge +hedge's +hedged +hedgehog +hedgehog's +hedgehogs +hedgerow +hedgerow's +hedgerows +hedges +hedging +hedonism +hedonism's +hedonist +hedonist's +hedonistic +hedonists +heed +heed's +heeded +heedful +heeding +heedless +heedlessly +heedlessness +heedlessness's +heeds +heehaw +heehaw's +heehawed +heehawing +heehaws +heel +heel's +heeled +heeling +heels +heft +heft's +hefted +heftier +heftiest +hefting +hefts +hefty +hegemony +hegemony's +heifer +heifer's +heifers +height +height's +heighten +heightened +heightening +heightens +heights +heinous +heinously +heinousness +heinousness's +heir +heir's +heiress +heiress's +heiresses +heirloom +heirloom's +heirlooms +heirs +heist +heist's +heisted +heisting +heists +held +helical +helices +helicopter +helicopter's +helicoptered +helicoptering +helicopters +heliotrope +heliotrope's +heliotropes +heliport +heliport's +heliports +helium +helium's +helix +helix's +helixes +hell +hell's +hellebore +hellebore's +hellhole +hellhole's +hellholes +hellion +hellion's +hellions +hellish +hellishly +hello +hello's +hellos +helm +helm's +helmet +helmet's +helmets +helms +helmsman +helmsman's +helmsmen +helot +helot's +helots +help +help's +helped +helper +helper's +helpers +helpful +helpfully +helpfulness +helpfulness's +helping +helping's +helpings +helpless +helplessly +helplessness +helplessness's +helpmate +helpmate's +helpmates +helpmeet +helpmeet's +helpmeets +helps +hem +hem's +hematologist +hematologist's +hematologists +hematology +hematology's +hemisphere +hemisphere's +hemispheres +hemispheric +hemispherical +hemline +hemline's +hemlines +hemlock +hemlock's +hemlocks +hemmed +hemming +hemoglobin +hemoglobin's +hemophilia +hemophilia's +hemophiliac +hemophiliac's +hemophiliacs +hemorrhage +hemorrhage's +hemorrhaged +hemorrhages +hemorrhaging +hemorrhoid +hemorrhoid's +hemorrhoids +hemp +hemp's +hempen +hems +hemstitch +hemstitch's +hemstitched +hemstitches +hemstitching +hen +hen's +hence +henceforth +henceforward +henchman +henchman's +henchmen +henna +henna's +hennaed +hennaing +hennas +henpeck +henpecked +henpecking +henpecks +hens +hep +hepatic +hepatitis +hepatitis's +hepper +heppest +heptagon +heptagon's +heptagons +her +her's +herald +herald's +heralded +heraldic +heralding +heraldry +heraldry's +heralds +herb +herb's +herbaceous +herbage +herbage's +herbal +herbalist +herbalist's +herbalists +herbicide +herbicide's +herbicides +herbivore +herbivore's +herbivores +herbivorous +herbs +herculean +herd +herd's +herded +herding +herds +herdsman +herdsman's +herdsmen +here +here's +hereabout +hereabouts +hereafter +hereafter's +hereafters +hereby +hereditary +heredity +heredity's +herein +hereof +heresies +heresy +heresy's +heretic +heretic's +heretical +heretics +hereto +heretofore +hereupon +herewith +heritage +heritage's +heritages +hermaphrodite +hermaphrodite's +hermaphrodites +hermaphroditic +hermetic +hermetically +hermit +hermit's +hermitage +hermitage's +hermitages +hermits +hernia +hernia's +herniae +hernias +hero +hero's +heroes +heroic +heroically +heroics +heroics's +heroin +heroin's +heroine +heroine's +heroins +heroism +heroism's +heron +heron's +herons +heros +herpes +herpes's +herring +herring's +herringbone +herringbone's +herrings +hers +herself +hertz +hertz's +hertzes +hes +hesitancy +hesitancy's +hesitant +hesitantly +hesitate +hesitated +hesitates +hesitating +hesitatingly +hesitation +hesitation's +hesitations +heterodox +heterodoxy +heterodoxy's +heterogeneity +heterogeneity's +heterogeneous +heterosexual +heterosexual's +heterosexuality +heterosexuality's +heterosexuals +heuristic +heuristic's +heuristics +hew +hewed +hewer +hewer's +hewers +hewing +hewn +hews +hex +hex's +hexadecimal +hexagon +hexagon's +hexagonal +hexagons +hexameter +hexameter's +hexameters +hexed +hexes +hexing +hey +heyday +heyday's +heydays +hi +hiatus +hiatus's +hiatuses +hibachi +hibachi's +hibachis +hibernate +hibernated +hibernates +hibernating +hibernation +hibernation's +hibiscus +hibiscus's +hibiscuses +hiccough +hiccough's +hiccoughed +hiccoughing +hiccoughs +hiccup +hiccup's +hiccuped +hiccuping +hiccups +hick +hick's +hickey +hickey's +hickeys +hickories +hickory +hickory's +hicks +hid +hidden +hide +hide's +hideaway +hideaway's +hideaways +hidebound +hided +hideous +hideously +hideousness +hideousness's +hideout +hideout's +hideouts +hides +hiding +hiding's +hie +hied +hieing +hierarchical +hierarchically +hierarchies +hierarchy +hierarchy's +hieroglyphic +hieroglyphic's +hieroglyphics +hies +hifalutin +high +high's +highball +highball's +highballs +highborn +highboy +highboy's +highboys +highbrow +highbrow's +highbrows +highchair +highchair's +highchairs +higher +highest +highfalutin +highfaluting +highjack +highjack's +highjacked +highjacker +highjacker's +highjackers +highjacking +highjacks +highland +highland's +highlands +highlight +highlight's +highlighted +highlighter +highlighter's +highlighters +highlighting +highlights +highly +highness +highness's +highs +hightail +hightailed +hightailing +hightails +highway +highway's +highwayman +highwayman's +highwaymen +highways +hijack +hijack's +hijacked +hijacker +hijacker's +hijackers +hijacking +hijacking's +hijackings +hijacks +hike +hike's +hiked +hiker +hiker's +hikers +hikes +hiking +hilarious +hilariously +hilarity +hilarity's +hill +hill's +hillbillies +hillbilly +hillbilly's +hillier +hilliest +hillock +hillock's +hillocks +hills +hillside +hillside's +hillsides +hilltop +hilltop's +hilltops +hilly +hilt +hilt's +hilts +him +him's +hims +himself +hind +hind's +hinder +hindered +hindering +hinders +hindmost +hindquarter +hindquarter's +hindquarters +hindrance +hindrance's +hindrances +hinds +hindsight +hindsight's +hinge +hinge's +hinged +hinges +hinging +hint +hint's +hinted +hinterland +hinterland's +hinterlands +hinting +hints +hip +hip's +hipped +hipper +hippest +hippie +hippie's +hippies +hipping +hippo +hippo's +hippopotami +hippopotamus +hippopotamus's +hippopotamuses +hippos +hippy +hippy's +hips +hire +hire's +hired +hireling +hireling's +hirelings +hires +hiring +hirsute +his +hiss +hiss's +hissed +hisses +hissing +histamine +histamine's +histamines +histogram +histogram's +histograms +historian +historian's +historians +historic +historical +historically +histories +history +history's +histrionic +histrionics +histrionics's +hit +hit's +hitch +hitch's +hitched +hitches +hitchhike +hitchhike's +hitchhiked +hitchhiker +hitchhiker's +hitchhikers +hitchhikes +hitchhiking +hitching +hither +hitherto +hits +hitter +hitter's +hitters +hitting +hive +hive's +hived +hives +hiving +ho +ho's +hoagie +hoagie's +hoagies +hoagy +hoagy's +hoard +hoard's +hoarded +hoarder +hoarder's +hoarders +hoarding +hoards +hoarfrost +hoarfrost's +hoarier +hoariest +hoariness +hoariness's +hoarse +hoarsely +hoarseness +hoarseness's +hoarser +hoarsest +hoary +hoax +hoax's +hoaxed +hoaxer +hoaxer's +hoaxers +hoaxes +hoaxing +hob +hob's +hobbies +hobbit +hobble +hobble's +hobbled +hobbles +hobbling +hobby +hobby's +hobbyhorse +hobbyhorse's +hobbyhorses +hobbyist +hobbyist's +hobbyists +hobgoblin +hobgoblin's +hobgoblins +hobnail +hobnail's +hobnailed +hobnailing +hobnails +hobnob +hobnobbed +hobnobbing +hobnobs +hobo +hobo's +hoboes +hobos +hobs +hock +hock's +hocked +hockey +hockey's +hocking +hocks +hockshop +hockshop's +hockshops +hod +hod's +hodgepodge +hodgepodge's +hodgepodges +hods +hoe +hoe's +hoed +hoedown +hoedown's +hoedowns +hoeing +hoes +hog +hog's +hogan +hogan's +hogans +hogged +hogging +hoggish +hogs +hogshead +hogshead's +hogsheads +hogwash +hogwash's +hoist +hoist's +hoisted +hoisting +hoists +hokey +hokier +hokiest +hokum +hokum's +hold +hold's +holder +holder's +holders +holding +holding's +holdings +holdout +holdout's +holdouts +holdover +holdover's +holdovers +holds +holdup +holdup's +holdups +hole +hole's +holed +holes +holiday +holiday's +holidayed +holidaying +holidays +holier +holiest +holiness +holiness's +holing +holistic +holler +holler's +hollered +hollering +hollers +hollies +hollow +hollow's +hollowed +hollower +hollowest +hollowing +hollowly +hollowness +hollowness's +hollows +holly +holly's +hollyhock +hollyhock's +hollyhocks +holocaust +holocaust's +holocausts +hologram +hologram's +holograms +holograph +holograph's +holographic +holographs +holography +holography's +holster +holster's +holstered +holstering +holsters +holy +homage +homage's +homages +homburg +homburg's +homburgs +home +home's +homebodies +homebody +homebody's +homeboy +homeboy's +homeboys +homecoming +homecoming's +homecomings +homed +homegrown +homeland +homeland's +homelands +homeless +homeless's +homelessness +homelessness's +homelier +homeliest +homeliness +homeliness's +homely +homemade +homemaker +homemaker's +homemakers +homeopathic +homeopathy +homeopathy's +homeowner +homeowner's +homeowners +homepage +homepage's +homepages +homer +homer's +homered +homering +homeroom +homeroom's +homerooms +homers +homes +homesick +homesickness +homesickness's +homespun +homespun's +homestead +homestead's +homesteaded +homesteader +homesteader's +homesteaders +homesteading +homesteads +homestretch +homestretch's +homestretches +hometown +hometown's +hometowns +homeward +homewards +homework +homework's +homey +homey's +homeyness +homeyness's +homeys +homicidal +homicide +homicide's +homicides +homie +homie's +homier +homies +homiest +homilies +homily +homily's +hominess +hominess's +homing +hominy +hominy's +homogeneity +homogeneity's +homogeneous +homogeneously +homogenization +homogenization's +homogenize +homogenized +homogenizes +homogenizing +homograph +homograph's +homographs +homonym +homonym's +homonyms +homophobia +homophobia's +homophobic +homophone +homophone's +homophones +homosexual +homosexual's +homosexuality +homosexuality's +homosexuals +homy +honcho +honcho's +honchos +hone +hone's +honed +hones +honest +honester +honestest +honestly +honesty +honesty's +honey +honey's +honeybee +honeybee's +honeybees +honeycomb +honeycomb's +honeycombed +honeycombing +honeycombs +honeydew +honeydew's +honeydews +honeyed +honeying +honeymoon +honeymoon's +honeymooned +honeymooner +honeymooner's +honeymooners +honeymooning +honeymoons +honeys +honeysuckle +honeysuckle's +honeysuckles +honied +honing +honk +honk's +honked +honking +honks +honor +honor's +honorable +honorably +honoraria +honorarium +honorarium's +honorariums +honorary +honored +honorific +honorific's +honorifics +honoring +honors +hooch +hooch's +hood +hood's +hooded +hooding +hoodlum +hoodlum's +hoodlums +hoodoo +hoodoo's +hoodooed +hoodooing +hoodoos +hoods +hoodwink +hoodwinked +hoodwinking +hoodwinks +hooey +hooey's +hoof +hoof's +hoofed +hoofing +hoofs +hook +hook's +hookah +hookah's +hookahs +hooked +hooker +hooker's +hookers +hookey +hookey's +hooking +hooks +hookup +hookup's +hookups +hookworm +hookworm's +hookworms +hooky +hooky's +hooligan +hooligan's +hooliganism +hooliganism's +hooligans +hoop +hoop's +hooped +hooping +hoopla +hoopla's +hoops +hoorah +hoorah's +hoorahs +hooray +hooray's +hoorayed +hooraying +hoorays +hoot +hoot's +hootch +hootch's +hooted +hooter +hooter's +hooters +hooting +hoots +hooves +hop +hop's +hope +hope's +hoped +hopeful +hopeful's +hopefully +hopefulness +hopefulness's +hopefuls +hopeless +hopelessly +hopelessness +hopelessness's +hopes +hoping +hopped +hopper +hopper's +hoppers +hopping +hops +hopscotch +hopscotch's +hopscotched +hopscotches +hopscotching +horde +horde's +horded +hordes +hording +horizon +horizon's +horizons +horizontal +horizontal's +horizontally +horizontals +hormonal +hormone +hormone's +hormones +horn +horn's +horned +hornet +hornet's +hornets +hornier +horniest +hornless +hornpipe +hornpipe's +hornpipes +horns +horny +horology +horology's +horoscope +horoscope's +horoscopes +horrendous +horrendously +horrible +horribly +horrid +horridly +horrific +horrified +horrifies +horrify +horrifying +horror +horror's +horrors +horse +horse's +horseback +horseback's +horsed +horseflies +horsefly +horsefly's +horsehair +horsehair's +horsehide +horsehide's +horseman +horseman's +horsemanship +horsemanship's +horsemen +horseplay +horseplay's +horsepower +horsepower's +horseradish +horseradish's +horseradishes +horses +horseshoe +horseshoe's +horseshoed +horseshoeing +horseshoes +horsetail +horsetail's +horsetails +horsewhip +horsewhip's +horsewhipped +horsewhipping +horsewhips +horsewoman +horsewoman's +horsewomen +horsey +horsier +horsiest +horsing +horsy +horticultural +horticulture +horticulture's +horticulturist +horticulturist's +horticulturists +hos +hosanna +hosanna's +hosannas +hose +hose's +hosed +hoses +hosiery +hosiery's +hosing +hospice +hospice's +hospices +hospitable +hospitably +hospital +hospital's +hospitality +hospitality's +hospitalization +hospitalization's +hospitalizations +hospitalize +hospitalized +hospitalizes +hospitalizing +hospitals +host +host's +hostage +hostage's +hostages +hosted +hostel +hostel's +hosteled +hosteler +hosteler's +hostelers +hosteling +hostelled +hostelling +hostelries +hostelry +hostelry's +hostels +hostess +hostess's +hostessed +hostesses +hostessing +hostile +hostile's +hostilely +hostiles +hostilities +hostilities's +hostility +hostility's +hosting +hostler +hostler's +hostlers +hosts +hot +hotbed +hotbed's +hotbeds +hotcake +hotcake's +hotcakes +hotel +hotel's +hotelier +hotelier's +hoteliers +hotels +hothead +hothead's +hotheaded +hotheadedly +hotheadedness +hotheadedness's +hotheads +hothouse +hothouse's +hothouses +hotly +hotness +hotness's +hotshot +hotshot's +hotshots +hotter +hottest +hoummos +hound +hound's +hounded +hounding +hounds +hour +hour's +hourglass +hourglass's +hourglasses +hourly +hours +house +house's +houseboat +houseboat's +houseboats +housebound +housebreak +housebreaking +housebreaking's +housebreaks +housebroke +housebroken +houseclean +housecleaned +housecleaning +housecleaning's +housecleans +housecoat +housecoat's +housecoats +housed +houseflies +housefly +housefly's +household +household's +householder +householder's +householders +households +househusband +househusband's +househusbands +housekeeper +housekeeper's +housekeepers +housekeeping +housekeeping's +housemaid +housemaid's +housemaids +housemother +housemother's +housemothers +houseplant +houseplant's +houseplants +houses +housetop +housetop's +housetops +housewares +housewares's +housewarming +housewarming's +housewarmings +housewife +housewife's +housewives +housework +housework's +housing +housing's +housings +hove +hovel +hovel's +hovels +hover +hovercraft +hovercraft's +hovered +hovering +hovers +how +how's +howdah +howdah's +howdahs +howdy +however +howitzer +howitzer's +howitzers +howl +howl's +howled +howler +howler's +howlers +howling +howls +hows +howsoever +hub +hub's +hubbies +hubbub +hubbub's +hubbubs +hubby +hubby's +hubcap +hubcap's +hubcaps +hubris +hubris's +hubs +huckleberries +huckleberry +huckleberry's +huckster +huckster's +huckstered +huckstering +hucksters +huddle +huddle's +huddled +huddles +huddling +hue +hue's +hued +hues +huff +huff's +huffed +huffier +huffiest +huffily +huffing +huffs +huffy +hug +hug's +huge +hugely +hugeness +hugeness's +huger +hugest +hugged +hugging +hugs +huh +hula +hula's +hulas +hulk +hulk's +hulking +hulks +hull +hull's +hullabaloo +hullabaloo's +hullabaloos +hulled +hulling +hulls +hum +hum's +human +human's +humane +humanely +humaneness +humaneness's +humaner +humanest +humanism +humanism's +humanist +humanist's +humanistic +humanists +humanitarian +humanitarian's +humanitarianism +humanitarianism's +humanitarians +humanities +humanities's +humanity +humanity's +humanization +humanization's +humanize +humanized +humanizer +humanizer's +humanizers +humanizes +humanizing +humankind +humankind's +humanly +humanness +humanness's +humanoid +humanoid's +humanoids +humans +humble +humbled +humbleness +humbleness's +humbler +humbles +humblest +humbling +humblings +humbly +humbug +humbug's +humbugged +humbugging +humbugs +humdinger +humdinger's +humdingers +humdrum +humdrum's +humeri +humerus +humerus's +humid +humidified +humidifier +humidifier's +humidifiers +humidifies +humidify +humidifying +humidity +humidity's +humidor +humidor's +humidors +humiliate +humiliated +humiliates +humiliating +humiliation +humiliation's +humiliations +humility +humility's +hummed +humming +hummingbird +hummingbird's +hummingbirds +hummock +hummock's +hummocks +humongous +humor +humor's +humored +humoring +humorist +humorist's +humorists +humorless +humorlessness +humorlessness's +humorous +humorously +humors +hump +hump's +humpback +humpback's +humpbacked +humpbacks +humped +humping +humps +hums +humungous +humus +humus's +hunch +hunch's +hunchback +hunchback's +hunchbacked +hunchbacks +hunched +hunches +hunching +hundred +hundred's +hundredfold +hundreds +hundredth +hundredth's +hundredths +hundredweight +hundredweight's +hundredweights +hung +hunger +hunger's +hungered +hungering +hungers +hungover +hungrier +hungriest +hungrily +hungry +hunk +hunk's +hunker +hunkered +hunkering +hunkers +hunks +hunt +hunt's +hunted +hunter +hunter's +hunters +hunting +hunting's +huntress +huntress's +huntresses +hunts +huntsman +huntsman's +huntsmen +hurdle +hurdle's +hurdled +hurdler +hurdler's +hurdlers +hurdles +hurdling +hurl +hurl's +hurled +hurler +hurler's +hurlers +hurling +hurls +hurrah +hurrah's +hurrahed +hurrahing +hurrahs +hurray +hurray's +hurrayed +hurraying +hurrays +hurricane +hurricane's +hurricanes +hurried +hurriedly +hurries +hurry +hurry's +hurrying +hurt +hurt's +hurtful +hurting +hurtle +hurtled +hurtles +hurtling +hurts +husband +husband's +husbanded +husbanding +husbandry +husbandry's +husbands +hush +hush's +hushed +hushes +hushing +husk +husk's +husked +husker +husker's +huskers +huskier +huskies +huskiest +huskily +huskiness +huskiness's +husking +husks +husky +husky's +hussar +hussar's +hussars +hussies +hussy +hussy's +hustings +hustings's +hustle +hustle's +hustled +hustler +hustler's +hustlers +hustles +hustling +hut +hut's +hutch +hutch's +hutches +huts +hutzpa +hutzpa's +hutzpah +hutzpah's +hyacinth +hyacinth's +hyacinths +hyaena +hyaena's +hyaenas +hybrid +hybrid's +hybridize +hybridized +hybridizes +hybridizing +hybrids +hydra +hydra's +hydrae +hydrangea +hydrangea's +hydrangeas +hydrant +hydrant's +hydrants +hydras +hydrate +hydrate's +hydrated +hydrates +hydrating +hydraulic +hydraulically +hydraulics +hydraulics's +hydrocarbon +hydrocarbon's +hydrocarbons +hydroelectric +hydroelectricity +hydroelectricity's +hydrofoil +hydrofoil's +hydrofoils +hydrogen +hydrogen's +hydrogenate +hydrogenated +hydrogenates +hydrogenating +hydrology +hydrology's +hydrolysis +hydrolysis's +hydrometer +hydrometer's +hydrometers +hydrophobia +hydrophobia's +hydroplane +hydroplane's +hydroplaned +hydroplanes +hydroplaning +hydroponic +hydroponics +hydroponics's +hydrosphere +hydrosphere's +hydrotherapy +hydrotherapy's +hyena +hyena's +hyenas +hygiene +hygiene's +hygienic +hygienically +hygienist +hygienist's +hygienists +hygrometer +hygrometer's +hygrometers +hying +hymen +hymen's +hymens +hymn +hymn's +hymnal +hymnal's +hymnals +hymned +hymning +hymns +hype +hype's +hyped +hyper +hyperactive +hyperactivity +hyperactivity's +hyperbola +hyperbola's +hyperbolae +hyperbolas +hyperbole +hyperbole's +hyperbolic +hypercritical +hypercritically +hypermarket +hypersensitive +hypersensitivities +hypersensitivity +hypersensitivity's +hyperspace +hypertension +hypertension's +hypertext +hypertext's +hyperventilate +hyperventilated +hyperventilates +hyperventilating +hyperventilation +hyperventilation's +hypes +hyphen +hyphen's +hyphenate +hyphenate's +hyphenated +hyphenates +hyphenating +hyphenation +hyphenation's +hyphenations +hyphened +hyphening +hyphens +hyping +hypnoses +hypnosis +hypnosis's +hypnotic +hypnotic's +hypnotically +hypnotics +hypnotism +hypnotism's +hypnotist +hypnotist's +hypnotists +hypnotize +hypnotized +hypnotizes +hypnotizing +hypo +hypo's +hypoallergenic +hypochondria +hypochondria's +hypochondriac +hypochondriac's +hypochondriacs +hypocrisies +hypocrisy +hypocrisy's +hypocrite +hypocrite's +hypocrites +hypocritical +hypocritically +hypodermic +hypodermic's +hypodermics +hypoglycemia +hypoglycemia's +hypoglycemic +hypoglycemic's +hypoglycemics +hypos +hypotenuse +hypotenuse's +hypotenuses +hypothalami +hypothalamus +hypothalamus's +hypothermia +hypothermia's +hypotheses +hypothesis +hypothesis's +hypothesize +hypothesized +hypothesizes +hypothesizing +hypothetical +hypothetically +hysterectomies +hysterectomy +hysterectomy's +hysteresis +hysteria +hysteria's +hysteric +hysteric's +hysterical +hysterically +hysterics +hysterics's +i +iPad +iPhone +iPod +iPod's +iTunes +iTunes's +iamb +iamb's +iambic +iambic's +iambics +iambs +ibex +ibex's +ibexes +ibices +ibis +ibis's +ibises +ibuprofen +ibuprofen's +ice +ice's +iceberg +iceberg's +icebergs +icebound +icebox +icebox's +iceboxes +icebreaker +icebreaker's +icebreakers +icecap +icecap's +icecaps +iced +ices +icicle +icicle's +icicles +icier +iciest +icily +iciness +iciness's +icing +icing's +icings +ickier +ickiest +icky +icon +icon's +iconoclast +iconoclast's +iconoclastic +iconoclasts +icons +icy +id +id's +idea +idea's +ideal +ideal's +idealism +idealism's +idealist +idealist's +idealistic +idealistically +idealists +idealization +idealization's +idealize +idealized +idealizes +idealizing +ideally +ideals +ideas +identical +identically +identifiable +identification +identification's +identified +identifier +identifiers +identifies +identify +identifying +identities +identity +identity's +ideogram +ideogram's +ideograms +ideograph +ideograph's +ideographs +ideological +ideologically +ideologies +ideologist +ideologist's +ideologists +ideology +ideology's +ides +ides's +idiocies +idiocy +idiocy's +idiom +idiom's +idiomatic +idiomatically +idioms +idiosyncrasies +idiosyncrasy +idiosyncrasy's +idiosyncratic +idiot +idiot's +idiotic +idiotically +idiots +idle +idle's +idled +idleness +idleness's +idler +idler's +idlers +idles +idlest +idling +idly +idol +idol's +idolater +idolater's +idolaters +idolatrous +idolatry +idolatry's +idolize +idolized +idolizes +idolizing +idols +ids +idyl +idyl's +idyll +idyll's +idyllic +idylls +idyls +if +if's +iffier +iffiest +iffy +ifs +igloo +igloo's +igloos +igneous +ignite +ignited +ignites +igniting +ignition +ignition's +ignitions +ignoble +ignobly +ignominies +ignominious +ignominiously +ignominy +ignominy's +ignoramus +ignoramus's +ignoramuses +ignorance +ignorance's +ignorant +ignorantly +ignore +ignored +ignores +ignoring +iguana +iguana's +iguanas +ikon +ikon's +ikons +ilk +ilk's +ilks +ill +ill's +illegal +illegal's +illegalities +illegality +illegality's +illegally +illegals +illegibility +illegibility's +illegible +illegibly +illegitimacy +illegitimacy's +illegitimate +illegitimately +illiberal +illicit +illicitly +illicitness +illicitness's +illiteracy +illiteracy's +illiterate +illiterate's +illiterates +illness +illness's +illnesses +illogical +illogically +ills +illuminate +illuminated +illuminates +illuminating +illumination +illumination's +illuminations +illumine +illumined +illumines +illumining +illusion +illusion's +illusions +illusive +illusory +illustrate +illustrated +illustrates +illustrating +illustration +illustration's +illustrations +illustrative +illustrator +illustrator's +illustrators +illustrious +image +image's +imaged +imagery +imagery's +images +imaginable +imaginably +imaginary +imagination +imagination's +imaginations +imaginative +imaginatively +imagine +imagined +imagines +imaging +imagining +imam +imam's +imams +imbalance +imbalance's +imbalanced +imbalances +imbecile +imbecile's +imbeciles +imbecilic +imbecilities +imbecility +imbecility's +imbed +imbedded +imbedding +imbeds +imbibe +imbibed +imbibes +imbibing +imbroglio +imbroglio's +imbroglios +imbue +imbued +imbues +imbuing +imitate +imitated +imitates +imitating +imitation +imitation's +imitations +imitative +imitator +imitator's +imitators +immaculate +immaculately +immaculateness +immaculateness's +immanence +immanence's +immanent +immaterial +immature +immaturely +immaturity +immaturity's +immeasurable +immeasurably +immediacy +immediacy's +immediate +immediately +immemorial +immense +immensely +immensities +immensity +immensity's +immerse +immersed +immerses +immersing +immersion +immersion's +immersions +immigrant +immigrant's +immigrants +immigrate +immigrated +immigrates +immigrating +immigration +immigration's +imminence +imminence's +imminent +imminently +immobile +immobility +immobility's +immobilization +immobilization's +immobilize +immobilized +immobilizes +immobilizing +immoderate +immoderately +immodest +immodestly +immodesty +immodesty's +immolate +immolated +immolates +immolating +immolation +immolation's +immoral +immoralities +immorality +immorality's +immorally +immortal +immortal's +immortality +immortality's +immortalize +immortalized +immortalizes +immortalizing +immortally +immortals +immovable +immovably +immoveable +immune +immunity +immunity's +immunization +immunization's +immunizations +immunize +immunized +immunizes +immunizing +immunology +immunology's +immure +immured +immures +immuring +immutability +immutability's +immutable +immutably +imp +imp's +impact +impact's +impacted +impacting +impacts +impair +impaired +impairing +impairment +impairment's +impairments +impairs +impala +impala's +impalas +impale +impaled +impalement +impalement's +impales +impaling +impalpable +impanel +impaneled +impaneling +impanels +impart +imparted +impartial +impartiality +impartiality's +impartially +imparting +imparts +impassable +impasse +impasse's +impasses +impassioned +impassive +impassively +impassivity +impassivity's +impatience +impatience's +impatiences +impatient +impatiently +impeach +impeached +impeaches +impeaching +impeachment +impeachment's +impeachments +impeccability +impeccability's +impeccable +impeccably +impecunious +impecuniousness +impecuniousness's +impedance +impedance's +impede +impeded +impedes +impediment +impediment's +impedimenta +impedimenta's +impediments +impeding +impel +impelled +impelling +impels +impend +impended +impending +impends +impenetrability +impenetrability's +impenetrable +impenetrably +impenitence +impenitence's +impenitent +imperative +imperative's +imperatively +imperatives +imperceptible +imperceptibly +imperfect +imperfect's +imperfection +imperfection's +imperfections +imperfectly +imperfects +imperial +imperial's +imperialism +imperialism's +imperialist +imperialist's +imperialistic +imperialists +imperially +imperials +imperil +imperiled +imperiling +imperilled +imperilling +imperils +imperious +imperiously +imperiousness +imperiousness's +imperishable +impermanence +impermanence's +impermanent +impermeable +impermissible +impersonal +impersonally +impersonate +impersonated +impersonates +impersonating +impersonation +impersonation's +impersonations +impersonator +impersonator's +impersonators +impertinence +impertinence's +impertinent +impertinently +imperturbability +imperturbability's +imperturbable +imperturbably +impervious +impetigo +impetigo's +impetuosity +impetuosity's +impetuous +impetuously +impetus +impetus's +impetuses +impieties +impiety +impiety's +impinge +impinged +impingement +impingement's +impinges +impinging +impious +impiously +impish +impishly +impishness +impishness's +implacability +implacability's +implacable +implacably +implant +implant's +implantation +implantation's +implanted +implanting +implants +implausibilities +implausibility +implausibility's +implausible +implausibly +implement +implement's +implementable +implementation +implementation's +implementations +implemented +implementer +implementing +implements +implicate +implicated +implicates +implicating +implication +implication's +implications +implicit +implicitly +implied +implies +implode +imploded +implodes +imploding +implore +implored +implores +imploring +implosion +implosion's +implosions +imply +implying +impolite +impolitely +impoliteness +impoliteness's +impolitenesses +impolitic +imponderable +imponderable's +imponderables +import +import's +importance +importance's +important +importantly +importation +importation's +importations +imported +importer +importer's +importers +importing +imports +importunate +importune +importuned +importunes +importuning +importunity +importunity's +impose +imposed +imposes +imposing +imposingly +imposition +imposition's +impositions +impossibilities +impossibility +impossibility's +impossible +impossibles +impossibly +imposter +imposter's +imposters +impostor +impostor's +impostors +imposture +imposture's +impostures +impotence +impotence's +impotent +impotently +impound +impounded +impounding +impounds +impoverish +impoverished +impoverishes +impoverishing +impoverishment +impoverishment's +impracticable +impracticably +impractical +impracticality +impracticality's +imprecation +imprecation's +imprecations +imprecise +imprecisely +imprecision +imprecision's +impregnability +impregnability's +impregnable +impregnably +impregnate +impregnated +impregnates +impregnating +impregnation +impregnation's +impresario +impresario's +impresarios +impress +impress's +impressed +impresses +impressing +impression +impression's +impressionable +impressionism +impressionism's +impressionist +impressionist's +impressionistic +impressionists +impressions +impressive +impressively +impressiveness +impressiveness's +imprimatur +imprimatur's +imprimaturs +imprint +imprint's +imprinted +imprinting +imprints +imprison +imprisoned +imprisoning +imprisonment +imprisonment's +imprisonments +imprisons +improbabilities +improbability +improbability's +improbable +improbably +impromptu +impromptu's +impromptus +improper +improperly +improprieties +impropriety +impropriety's +improvable +improve +improved +improvement +improvement's +improvements +improves +improvidence +improvidence's +improvident +improvidently +improving +improvisation +improvisation's +improvisations +improvise +improvised +improvises +improvising +imprudence +imprudence's +imprudent +imps +impudence +impudence's +impudent +impudently +impugn +impugned +impugning +impugns +impulse +impulse's +impulsed +impulses +impulsing +impulsion +impulsion's +impulsive +impulsively +impulsiveness +impulsiveness's +impunity +impunity's +impure +impurely +impurer +impurest +impurities +impurity +impurity's +imputation +imputation's +imputations +impute +imputed +imputes +imputing +in +in's +inabilities +inability +inability's +inaccessibility +inaccessibility's +inaccessible +inaccuracies +inaccuracy +inaccuracy's +inaccurate +inaccurately +inaction +inaction's +inactive +inactivity +inactivity's +inadequacies +inadequacy +inadequacy's +inadequate +inadequately +inadmissible +inadvertence +inadvertence's +inadvertent +inadvertently +inadvisable +inalienable +inamorata +inamorata's +inamoratas +inane +inanely +inaner +inanest +inanimate +inanities +inanity +inanity's +inapplicable +inappropriate +inappropriately +inapt +inarticulate +inarticulately +inasmuch +inattention +inattention's +inattentive +inaudible +inaudibly +inaugural +inaugural's +inaugurals +inaugurate +inaugurated +inaugurates +inaugurating +inauguration +inauguration's +inaugurations +inauspicious +inboard +inboard's +inboards +inborn +inbound +inbred +inbreed +inbreeding +inbreeding's +inbreeds +inbuilt +incalculable +incalculably +incandescence +incandescence's +incandescent +incantation +incantation's +incantations +incapability +incapability's +incapable +incapacitate +incapacitated +incapacitates +incapacitating +incapacity +incapacity's +incarcerate +incarcerated +incarcerates +incarcerating +incarceration +incarceration's +incarcerations +incarnate +incarnated +incarnates +incarnating +incarnation +incarnation's +incarnations +incautious +incendiaries +incendiary +incendiary's +incense +incense's +incensed +incenses +incensing +incentive +incentive's +incentives +inception +inception's +inceptions +incessant +incessantly +incest +incest's +incestuous +inch +inch's +inched +inches +inching +inchoate +incidence +incidence's +incidences +incident +incident's +incidental +incidental's +incidentally +incidentals +incidents +incinerate +incinerated +incinerates +incinerating +incineration +incineration's +incinerator +incinerator's +incinerators +incipient +incise +incised +incises +incising +incision +incision's +incisions +incisive +incisively +incisiveness +incisiveness's +incisor +incisor's +incisors +incite +incited +incitement +incitement's +incitements +incites +inciting +incivilities +incivility +incivility's +inclemency +inclemency's +inclement +inclination +inclination's +inclinations +incline +incline's +inclined +inclines +inclining +inclose +inclosed +incloses +inclosing +inclosure +inclosure's +inclosures +include +included +includes +including +inclusion +inclusion's +inclusions +inclusive +inclusively +incognito +incognito's +incognitos +incoherence +incoherence's +incoherent +incoherently +incombustible +income +income's +incomes +incoming +incommensurate +incommunicado +incomparable +incomparably +incompatibilities +incompatibility +incompatibility's +incompatible +incompatible's +incompatibles +incompatibly +incompetence +incompetence's +incompetent +incompetent's +incompetently +incompetents +incomplete +incompletely +incompleteness +incomprehensible +incomprehensibly +inconceivable +inconceivably +inconclusive +inconclusively +incongruities +incongruity +incongruity's +incongruous +incongruously +inconsequential +inconsequentially +inconsiderable +inconsiderate +inconsiderately +inconsiderateness +inconsiderateness's +inconsistencies +inconsistency +inconsistency's +inconsistent +inconsistently +inconsolable +inconspicuous +inconspicuously +inconspicuousness +inconspicuousness's +inconstancy +inconstancy's +inconstant +incontestable +incontestably +incontinence +incontinence's +incontinent +incontrovertible +incontrovertibly +inconvenience +inconvenience's +inconvenienced +inconveniences +inconveniencing +inconvenient +inconveniently +incorporate +incorporated +incorporates +incorporating +incorporation +incorporation's +incorporeal +incorrect +incorrectly +incorrectness +incorrectness's +incorrigibility +incorrigibility's +incorrigible +incorrigibly +incorruptibility +incorruptibility's +incorruptible +increase +increase's +increased +increases +increasing +increasingly +incredibility +incredibility's +incredible +incredibly +incredulity +incredulity's +incredulous +incredulously +increment +increment's +incremental +incremented +increments +incriminate +incriminated +incriminates +incriminating +incrimination +incrimination's +incriminatory +incrust +incrustation +incrustation's +incrustations +incrusted +incrusting +incrusts +incubate +incubated +incubates +incubating +incubation +incubation's +incubator +incubator's +incubators +incubi +incubus +incubus's +incubuses +inculcate +inculcated +inculcates +inculcating +inculcation +inculcation's +inculpate +inculpated +inculpates +inculpating +incumbencies +incumbency +incumbency's +incumbent +incumbent's +incumbents +incur +incurable +incurable's +incurables +incurably +incurious +incurred +incurring +incurs +incursion +incursion's +incursions +indebted +indebtedness +indebtedness's +indecencies +indecency +indecency's +indecent +indecently +indecipherable +indecision +indecision's +indecisive +indecisively +indecisiveness +indecisiveness's +indecorous +indeed +indefatigable +indefatigably +indefensible +indefensibly +indefinable +indefinably +indefinite +indefinitely +indelible +indelibly +indelicacies +indelicacy +indelicacy's +indelicate +indelicately +indemnification +indemnification's +indemnifications +indemnified +indemnifies +indemnify +indemnifying +indemnities +indemnity +indemnity's +indent +indent's +indentation +indentation's +indentations +indented +indenting +indents +indenture +indenture's +indentured +indentures +indenturing +independence +independence's +independent +independent's +independently +independents +indescribable +indescribably +indestructible +indestructibly +indeterminable +indeterminacy +indeterminacy's +indeterminate +indeterminately +index +index's +indexed +indexes +indexing +indicate +indicated +indicates +indicating +indication +indication's +indications +indicative +indicative's +indicatives +indicator +indicator's +indicators +indices +indict +indictable +indicted +indicting +indictment +indictment's +indictments +indicts +indifference +indifference's +indifferent +indifferently +indigence +indigence's +indigenous +indigent +indigent's +indigents +indigestible +indigestion +indigestion's +indignant +indignantly +indignation +indignation's +indignities +indignity +indignity's +indigo +indigo's +indirect +indirection +indirectly +indirectness +indirectness's +indiscernible +indiscreet +indiscreetly +indiscretion +indiscretion's +indiscretions +indiscriminate +indiscriminately +indispensable +indispensable's +indispensables +indispensably +indisposed +indisposition +indisposition's +indispositions +indisputable +indisputably +indissoluble +indistinct +indistinctly +indistinctness +indistinctness's +indistinguishable +individual +individual's +individualism +individualism's +individualist +individualist's +individualistic +individualists +individuality +individuality's +individualize +individualized +individualizes +individualizing +individually +individuals +indivisibility +indivisibility's +indivisible +indivisibly +indoctrinate +indoctrinated +indoctrinates +indoctrinating +indoctrination +indoctrination's +indolence +indolence's +indolent +indolently +indomitable +indomitably +indoor +indoors +indorse +indorsed +indorsement +indorsement's +indorsements +indorses +indorsing +indubitable +indubitably +induce +induced +inducement +inducement's +inducements +induces +inducing +induct +inductance +inductance's +inducted +inductee +inductee's +inductees +inducting +induction +induction's +inductions +inductive +inducts +indue +indued +indues +induing +indulge +indulged +indulgence +indulgence's +indulgences +indulgent +indulgently +indulges +indulging +industrial +industrialism +industrialism's +industrialist +industrialist's +industrialists +industrialization +industrialization's +industrialize +industrialized +industrializes +industrializing +industrially +industries +industrious +industriously +industriousness +industriousness's +industry +industry's +inebriate +inebriate's +inebriated +inebriates +inebriating +inebriation +inebriation's +inedible +ineducable +ineffable +ineffably +ineffective +ineffectively +ineffectiveness +ineffectiveness's +ineffectual +ineffectually +inefficiencies +inefficiency +inefficiency's +inefficient +inefficiently +inelastic +inelegance +inelegant +inelegantly +ineligibility +ineligibility's +ineligible +ineligible's +ineligibles +ineluctable +ineluctably +inept +ineptitude +ineptitude's +ineptly +ineptness +ineptness's +inequalities +inequality +inequality's +inequitable +inequities +inequity +inequity's +inert +inertia +inertia's +inertial +inertly +inertness +inertness's +inescapable +inescapably +inessential +inessential's +inessentials +inestimable +inestimably +inevitability +inevitability's +inevitable +inevitable's +inevitably +inexact +inexcusable +inexcusably +inexhaustible +inexhaustibly +inexorable +inexorably +inexpedient +inexpensive +inexpensively +inexperience +inexperience's +inexperienced +inexpert +inexplicable +inexplicably +inexpressible +inextinguishable +inextricable +inextricably +infallibility +infallibility's +infallible +infallibly +infamies +infamous +infamously +infamy +infamy's +infancy +infancy's +infant +infant's +infanticide +infanticide's +infanticides +infantile +infantries +infantry +infantry's +infantryman +infantryman's +infantrymen +infants +infarction +infarction's +infatuate +infatuated +infatuates +infatuating +infatuation +infatuation's +infatuations +infect +infected +infecting +infection +infection's +infections +infectious +infectiously +infectiousness +infectiousness's +infects +infelicities +infelicitous +infelicity +infelicity's +infer +inference +inference's +inferences +inferential +inferior +inferior's +inferiority +inferiority's +inferiors +infernal +inferno +inferno's +infernos +inferred +inferring +infers +infertile +infertility +infertility's +infest +infestation +infestation's +infestations +infested +infesting +infests +infidel +infidel's +infidelities +infidelity +infidelity's +infidels +infield +infield's +infielder +infielder's +infielders +infields +infighting +infighting's +infiltrate +infiltrated +infiltrates +infiltrating +infiltration +infiltration's +infiltrator +infiltrator's +infiltrators +infinite +infinite's +infinitely +infinitesimal +infinitesimal's +infinitesimally +infinitesimals +infinities +infinitive +infinitive's +infinitives +infinitude +infinitude's +infinity +infinity's +infirm +infirmaries +infirmary +infirmary's +infirmities +infirmity +infirmity's +infix +inflame +inflamed +inflames +inflaming +inflammable +inflammation +inflammation's +inflammations +inflammatory +inflatable +inflatable's +inflatables +inflate +inflated +inflates +inflating +inflation +inflation's +inflationary +inflect +inflected +inflecting +inflection +inflection's +inflectional +inflections +inflects +inflexibility +inflexibility's +inflexible +inflexibly +inflict +inflicted +inflicting +infliction +infliction's +inflicts +inflorescence +inflorescence's +inflow +influence +influence's +influenced +influences +influencing +influential +influentially +influenza +influenza's +influx +influx's +influxes +info +info's +infomercial +infomercial's +infomercials +inform +informal +informality +informality's +informally +informant +informant's +informants +information +information's +informational +informative +informed +informer +informer's +informers +informing +informs +infotainment +infotainment's +infraction +infraction's +infractions +infrared +infrared's +infrastructure +infrastructure's +infrastructures +infrequency +infrequency's +infrequent +infrequently +infringe +infringed +infringement +infringement's +infringements +infringes +infringing +infuriate +infuriated +infuriates +infuriating +infuriatingly +infuse +infused +infuses +infusing +infusion +infusion's +infusions +ingenious +ingeniously +ingenuity +ingenuity's +ingenuous +ingenuously +ingenuousness +ingenuousness's +ingest +ingested +ingesting +ingestion +ingestion's +ingests +inglorious +ingot +ingot's +ingots +ingrain +ingrained +ingraining +ingrains +ingrate +ingrate's +ingrates +ingratiate +ingratiated +ingratiates +ingratiating +ingratiatingly +ingratitude +ingratitude's +ingredient +ingredient's +ingredients +ingress +ingress's +ingresses +ingrown +ingénue +ingénue's +ingénues +inhabit +inhabitable +inhabitant +inhabitant's +inhabitants +inhabited +inhabiting +inhabits +inhalant +inhalant's +inhalants +inhalation +inhalation's +inhalations +inhalator +inhalator's +inhalators +inhale +inhaled +inhaler +inhaler's +inhalers +inhales +inhaling +inhere +inhered +inherent +inherently +inheres +inhering +inherit +inheritance +inheritance's +inheritances +inherited +inheriting +inheritor +inheritor's +inheritors +inherits +inhibit +inhibited +inhibiting +inhibition +inhibition's +inhibitions +inhibits +inhospitable +inhuman +inhumane +inhumanely +inhumanities +inhumanity +inhumanity's +inhumanly +inimical +inimically +inimitable +inimitably +iniquities +iniquitous +iniquity +iniquity's +initial +initial's +initialed +initialing +initialization +initialize +initialized +initializes +initializing +initialled +initialling +initially +initials +initiate +initiate's +initiated +initiates +initiating +initiation +initiation's +initiations +initiative +initiative's +initiatives +initiator +initiator's +initiators +inject +injected +injecting +injection +injection's +injections +injector +injector's +injectors +injects +injudicious +injunction +injunction's +injunctions +injure +injured +injures +injuries +injuring +injurious +injury +injury's +injustice +injustice's +injustices +ink +ink's +inkblot +inkblot's +inkblots +inked +inkier +inkiest +inkiness +inkiness's +inking +inkling +inkling's +inklings +inks +inkwell +inkwell's +inkwells +inky +inlaid +inland +inland's +inlay +inlay's +inlaying +inlays +inlet +inlet's +inlets +inline +inmate +inmate's +inmates +inmost +inn +inn's +innards +innards's +innate +innately +inner +innermost +inning +inning's +innings +innkeeper +innkeeper's +innkeepers +innocence +innocence's +innocent +innocent's +innocently +innocents +innocuous +innocuously +innovate +innovated +innovates +innovating +innovation +innovation's +innovations +innovative +innovator +innovator's +innovators +inns +innuendo +innuendo's +innuendoes +innuendos +innumerable +inoculate +inoculated +inoculates +inoculating +inoculation +inoculation's +inoculations +inoffensive +inoffensively +inoperable +inoperative +inopportune +inordinate +inordinately +inorganic +inpatient +inpatient's +inpatients +input +input's +inputs +inputted +inputting +inquest +inquest's +inquests +inquietude +inquietude's +inquire +inquired +inquirer +inquirer's +inquirers +inquires +inquiries +inquiring +inquiringly +inquiry +inquiry's +inquisition +inquisition's +inquisitions +inquisitive +inquisitively +inquisitiveness +inquisitiveness's +inquisitor +inquisitor's +inquisitors +inroad +inroad's +inroads +ins +insane +insanely +insaner +insanest +insanity +insanity's +insatiable +insatiably +inscribe +inscribed +inscribes +inscribing +inscription +inscription's +inscriptions +inscrutable +inscrutably +inseam +inseam's +inseams +insect +insect's +insecticide +insecticide's +insecticides +insectivore +insectivore's +insectivores +insectivorous +insects +insecure +insecurely +insecurities +insecurity +insecurity's +inseminate +inseminated +inseminates +inseminating +insemination +insemination's +insensate +insensibility +insensibility's +insensible +insensibly +insensitive +insensitively +insensitivity +insensitivity's +insentience +insentience's +insentient +inseparability +inseparability's +inseparable +inseparable's +inseparables +inseparably +insert +insert's +inserted +inserting +insertion +insertion's +insertions +inserts +inset +inset's +insets +insetted +insetting +inshore +inside +inside's +insider +insider's +insiders +insides +insidious +insidiously +insidiousness +insidiousness's +insight +insight's +insightful +insights +insigne +insigne's +insignes +insignia +insignia's +insignias +insignificance +insignificance's +insignificant +insignificantly +insincere +insincerely +insincerity +insincerity's +insinuate +insinuated +insinuates +insinuating +insinuation +insinuation's +insinuations +insipid +insist +insisted +insistence +insistence's +insistent +insistently +insisting +insists +insofar +insole +insole's +insolence +insolence's +insolent +insolently +insoles +insolubility +insolubility's +insoluble +insolvable +insolvency +insolvency's +insolvent +insolvent's +insolvents +insomnia +insomnia's +insomniac +insomniac's +insomniacs +insouciance +insouciance's +insouciant +inspect +inspected +inspecting +inspection +inspection's +inspections +inspector +inspector's +inspectors +inspects +inspiration +inspiration's +inspirational +inspirations +inspire +inspired +inspires +inspiring +instability +instability's +instal +install +installation +installation's +installations +installed +installing +installment +installment's +installments +installs +instalment +instalment's +instalments +instals +instance +instance's +instanced +instances +instancing +instant +instant's +instantaneous +instantaneously +instantly +instants +instead +instep +instep's +insteps +instigate +instigated +instigates +instigating +instigation +instigation's +instigator +instigator's +instigators +instil +instill +instilled +instilling +instills +instils +instinct +instinct's +instinctive +instinctively +instincts +institute +institute's +instituted +institutes +instituting +institution +institution's +institutional +institutionalize +institutionalized +institutionalizes +institutionalizing +institutions +instruct +instructed +instructing +instruction +instruction's +instructional +instructions +instructive +instructively +instructor +instructor's +instructors +instructs +instrument +instrument's +instrumental +instrumental's +instrumentalist +instrumentalist's +instrumentalists +instrumentality +instrumentality's +instrumentals +instrumentation +instrumentation's +instrumented +instrumenting +instruments +insubordinate +insubordination +insubordination's +insubstantial +insufferable +insufferably +insufficiency +insufficiency's +insufficient +insufficiently +insular +insularity +insularity's +insulate +insulated +insulates +insulating +insulation +insulation's +insulator +insulator's +insulators +insulin +insulin's +insult +insult's +insulted +insulting +insults +insuperable +insupportable +insurance +insurance's +insurances +insure +insured +insured's +insureds +insurer +insurer's +insurers +insures +insurgence +insurgence's +insurgences +insurgencies +insurgency +insurgency's +insurgent +insurgent's +insurgents +insuring +insurmountable +insurrection +insurrection's +insurrectionist +insurrectionist's +insurrectionists +insurrections +intact +intagli +intaglio +intaglio's +intaglios +intake +intake's +intakes +intangible +intangible's +intangibles +intangibly +integer +integer's +integers +integral +integral's +integrals +integrate +integrated +integrates +integrating +integration +integration's +integrator +integrity +integrity's +integument +integument's +integuments +intellect +intellect's +intellects +intellectual +intellectual's +intellectualism +intellectualize +intellectualized +intellectualizes +intellectualizing +intellectually +intellectuals +intelligence +intelligence's +intelligent +intelligently +intelligentsia +intelligentsia's +intelligibility +intelligibility's +intelligible +intelligibly +intemperance +intemperance's +intemperate +intend +intended +intended's +intendeds +intending +intends +intense +intensely +intenser +intensest +intensification +intensification's +intensified +intensifier +intensifier's +intensifiers +intensifies +intensify +intensifying +intensities +intensity +intensity's +intensive +intensive's +intensively +intensives +intent +intent's +intention +intention's +intentional +intentionally +intentions +intently +intentness +intentness's +intents +inter +interact +interacted +interacting +interaction +interaction's +interactions +interactive +interactively +interacts +interbred +interbreed +interbreeding +interbreeds +intercede +interceded +intercedes +interceding +intercept +intercept's +intercepted +intercepting +interception +interception's +interceptions +interceptor +interceptor's +interceptors +intercepts +intercession +intercession's +intercessions +intercessor +intercessor's +intercessors +interchange +interchange's +interchangeable +interchangeably +interchanged +interchanges +interchanging +intercollegiate +intercom +intercom's +intercoms +interconnect +interconnected +interconnecting +interconnection +interconnection's +interconnections +interconnects +intercontinental +intercourse +intercourse's +interdenominational +interdepartmental +interdependence +interdependence's +interdependent +interdict +interdict's +interdicted +interdicting +interdiction +interdiction's +interdicts +interdisciplinary +interest +interest's +interested +interesting +interestingly +interests +interface +interface's +interfaced +interfaces +interfacing +interfaith +interfere +interfered +interference +interference's +interferes +interfering +interferon +interferon's +intergalactic +interim +interim's +interior +interior's +interiors +interject +interjected +interjecting +interjection +interjection's +interjections +interjects +interlace +interlaced +interlaces +interlacing +interlard +interlarded +interlarding +interlards +interleave +interleaved +interleaves +interleaving +interleukin +interleukin's +interlink +interlinked +interlinking +interlinks +interlock +interlock's +interlocked +interlocking +interlocks +interlocutory +interloper +interloper's +interlopers +interlude +interlude's +interluded +interludes +interluding +intermarriage +intermarriage's +intermarriages +intermarried +intermarries +intermarry +intermarrying +intermediaries +intermediary +intermediary's +intermediate +intermediate's +intermediates +interment +interment's +interments +intermezzi +intermezzo +intermezzo's +intermezzos +interminable +interminably +intermingle +intermingled +intermingles +intermingling +intermission +intermission's +intermissions +intermittent +intermittently +intern +intern's +internal +internalize +internalized +internalizes +internalizing +internally +internals +international +international's +internationalism +internationalism's +internationalize +internationalized +internationalizes +internationalizing +internationally +internationals +interne +interne's +internecine +interned +internee +internee's +internees +internement +internes +interneship +interneships +internet +interning +internist +internist's +internists +internment +internment's +interns +internship +internship's +internships +interoffice +interpersonal +interplanetary +interplay +interplay's +interpolate +interpolated +interpolates +interpolating +interpolation +interpolation's +interpolations +interpose +interposed +interposes +interposing +interposition +interposition's +interpret +interpretation +interpretation's +interpretations +interpretative +interpreted +interpreter +interpreter's +interpreters +interpreting +interpretive +interprets +interracial +interred +interrelate +interrelated +interrelates +interrelating +interrelation +interrelation's +interrelations +interrelationship +interrelationship's +interrelationships +interring +interrogate +interrogated +interrogates +interrogating +interrogation +interrogation's +interrogations +interrogative +interrogative's +interrogatives +interrogator +interrogator's +interrogatories +interrogators +interrogatory +interrogatory's +interrupt +interrupt's +interrupted +interrupting +interruption +interruption's +interruptions +interrupts +inters +interscholastic +intersect +intersected +intersecting +intersection +intersection's +intersections +intersects +intersperse +interspersed +intersperses +interspersing +interstate +interstate's +interstates +interstellar +interstice +interstice's +interstices +intertwine +intertwined +intertwines +intertwining +interurban +interval +interval's +intervals +intervene +intervened +intervenes +intervening +intervention +intervention's +interventions +interview +interview's +interviewed +interviewee +interviewee's +interviewees +interviewer +interviewer's +interviewers +interviewing +interviews +interweave +interweaved +interweaves +interweaving +interwove +interwoven +intestate +intestinal +intestine +intestine's +intestines +intimacies +intimacy +intimacy's +intimate +intimate's +intimated +intimately +intimates +intimating +intimation +intimation's +intimations +intimidate +intimidated +intimidates +intimidating +intimidation +intimidation's +into +intolerable +intolerably +intolerance +intolerance's +intolerant +intonation +intonation's +intonations +intone +intoned +intones +intoning +intoxicant +intoxicant's +intoxicants +intoxicate +intoxicated +intoxicates +intoxicating +intoxication +intoxication's +intractability +intractability's +intractable +intramural +intransigence +intransigence's +intransigent +intransigent's +intransigents +intransitive +intransitive's +intransitively +intransitives +intravenous +intravenous's +intravenouses +intravenously +intrench +intrenched +intrenches +intrenching +intrenchment +intrenchment's +intrepid +intrepidly +intricacies +intricacy +intricacy's +intricate +intricately +intrigue +intrigue's +intrigued +intrigues +intriguing +intriguingly +intrinsic +intrinsically +intro's +introduce +introduced +introduces +introducing +introduction +introduction's +introductions +introductory +intros +introspection +introspection's +introspective +introversion +introversion's +introvert +introvert's +introverted +introverts +intrude +intruded +intruder +intruder's +intruders +intrudes +intruding +intrusion +intrusion's +intrusions +intrusive +intrust +intrusted +intrusting +intrusts +intuit +intuited +intuiting +intuition +intuition's +intuitions +intuitive +intuitively +intuits +inundate +inundated +inundates +inundating +inundation +inundation's +inundations +inure +inured +inures +inuring +invade +invaded +invader +invader's +invaders +invades +invading +invalid +invalid's +invalidate +invalidated +invalidates +invalidating +invalidation +invalidation's +invalided +invaliding +invalidity +invalidity's +invalids +invaluable +invariable +invariable's +invariables +invariably +invariant +invasion +invasion's +invasions +invasive +invective +invective's +inveigh +inveighed +inveighing +inveighs +inveigle +inveigled +inveigles +inveigling +invent +invented +inventing +invention +invention's +inventions +inventive +inventiveness +inventiveness's +inventor +inventor's +inventoried +inventories +inventors +inventory +inventory's +inventorying +invents +inverse +inverse's +inversely +inverses +inversion +inversion's +inversions +invert +invert's +invertebrate +invertebrate's +invertebrates +inverted +inverting +inverts +invest +invested +investigate +investigated +investigates +investigating +investigation +investigation's +investigations +investigative +investigator +investigator's +investigators +investing +investiture +investiture's +investitures +investment +investment's +investments +investor +investor's +investors +invests +inveterate +invidious +invidiously +invigorate +invigorated +invigorates +invigorating +invigoration +invigoration's +invincibility +invincibility's +invincible +invincibly +inviolability +inviolability's +inviolable +inviolate +invisibility +invisibility's +invisible +invisibly +invitation +invitation's +invitational +invitational's +invitationals +invitations +invite +invite's +invited +invites +inviting +invitingly +invocation +invocation's +invocations +invoice +invoice's +invoiced +invoices +invoicing +invoke +invoked +invokes +invoking +involuntarily +involuntary +involve +involved +involvement +involvement's +involvements +involves +involving +invulnerability +invulnerability's +invulnerable +invulnerably +inward +inwardly +inwards +iodine +iodine's +iodize +iodized +iodizes +iodizing +ion +ion's +ionization +ionization's +ionize +ionized +ionizer +ionizer's +ionizers +ionizes +ionizing +ionosphere +ionosphere's +ionospheres +ions +iota +iota's +iotas +ipecac +ipecac's +ipecacs +irascibility +irascibility's +irascible +irate +irately +irateness +irateness's +ire +ire's +iridescence +iridescence's +iridescent +iridium +iridium's +iris +iris's +irises +irk +irked +irking +irks +irksome +iron +iron's +ironclad +ironclad's +ironclads +ironed +ironic +ironical +ironically +ironies +ironing +ironing's +irons +ironware +ironware's +ironwork +ironwork's +irony +irony's +irradiate +irradiated +irradiates +irradiating +irradiation +irradiation's +irrational +irrational's +irrationality +irrationality's +irrationally +irrationals +irreconcilable +irrecoverable +irredeemable +irrefutable +irregardless +irregular +irregular's +irregularities +irregularity +irregularity's +irregularly +irregulars +irrelevance +irrelevance's +irrelevances +irrelevancies +irrelevancy +irrelevancy's +irrelevant +irrelevantly +irreligious +irremediable +irremediably +irreparable +irreparably +irreplaceable +irrepressible +irreproachable +irresistible +irresistibly +irresolute +irresolutely +irresolution +irresolution's +irrespective +irresponsibility +irresponsibility's +irresponsible +irresponsibly +irretrievable +irretrievably +irreverence +irreverence's +irreverent +irreverently +irreversible +irreversibly +irrevocable +irrevocably +irrigate +irrigated +irrigates +irrigating +irrigation +irrigation's +irritability +irritability's +irritable +irritably +irritant +irritant's +irritants +irritate +irritated +irritates +irritating +irritatingly +irritation +irritation's +irritations +irruption +irruption's +irruptions +is +isinglass +isinglass's +island +island's +islander +islander's +islanders +islands +isle +isle's +isles +islet +islet's +islets +ism +ism's +isms +isn't +isobar +isobar's +isobars +isolate +isolate's +isolated +isolates +isolating +isolation +isolation's +isolationism +isolationism's +isolationist +isolationist's +isolationists +isometric +isometrics +isometrics's +isomorphic +isosceles +isotope +isotope's +isotopes +isotopic +isotropic +issuance +issuance's +issue +issue's +issued +issues +issuing +isthmi +isthmus +isthmus's +isthmuses +it +it'd +it'll +it's +italic +italic's +italicize +italicized +italicizes +italicizing +italics +italics's +itch +itch's +itched +itches +itchier +itchiest +itchiness +itchiness's +itching +itchy +item +item's +itemization +itemization's +itemize +itemized +itemizes +itemizing +items +iterate +iterated +iterates +iterating +iteration +iteration's +iterations +iterative +iterator +iterators +itinerant +itinerant's +itinerants +itineraries +itinerary +itinerary's +its +itself +ivies +ivories +ivory +ivory's +ivy +ivy's +j +jab +jab's +jabbed +jabber +jabber's +jabbered +jabberer +jabberer's +jabberers +jabbering +jabbers +jabbing +jabot +jabot's +jabots +jabs +jack +jack's +jackal +jackal's +jackals +jackass +jackass's +jackasses +jackboot +jackboot's +jackboots +jackdaw +jackdaw's +jackdaws +jacked +jacket +jacket's +jackets +jackhammer +jackhammer's +jackhammers +jacking +jackknife +jackknife's +jackknifed +jackknifes +jackknifing +jackknives +jackpot +jackpot's +jackpots +jackrabbit +jackrabbit's +jackrabbits +jacks +jade +jade's +jaded +jades +jading +jag +jag's +jagged +jaggeder +jaggedest +jaggedly +jaggedness +jaggedness's +jags +jaguar +jaguar's +jaguars +jail +jail's +jailbreak +jailbreak's +jailbreaks +jailed +jailer +jailer's +jailers +jailing +jailor +jailor's +jailors +jails +jalapeño +jalapeño's +jalapeños +jalopies +jalopy +jalopy's +jalousie +jalousie's +jalousies +jam +jam's +jamb +jamb's +jamboree +jamboree's +jamborees +jambs +jammed +jamming +jams +jangle +jangle's +jangled +jangles +jangling +janitor +janitor's +janitorial +janitors +japan +japan's +japanned +japanning +japans +jape +jape's +japed +japes +japing +jar +jar's +jardinière +jardinière's +jardinières +jargon +jargon's +jarred +jarring +jars +jasmine +jasmine's +jasmines +jasper +jasper's +jaundice +jaundice's +jaundiced +jaundices +jaundicing +jaunt +jaunt's +jaunted +jauntier +jauntiest +jauntily +jauntiness +jauntiness's +jaunting +jaunts +jaunty +javelin +javelin's +javelins +jaw +jaw's +jawbone +jawbone's +jawboned +jawbones +jawboning +jawbreaker +jawbreaker's +jawbreakers +jawed +jawing +jaws +jay +jay's +jays +jaywalk +jaywalked +jaywalker +jaywalker's +jaywalkers +jaywalking +jaywalks +jazz +jazz's +jazzed +jazzes +jazzier +jazziest +jazzing +jazzy +jealous +jealousies +jealously +jealousy +jealousy's +jeans +jeans's +jeep +jeep's +jeeps +jeer +jeer's +jeered +jeering +jeeringly +jeers +jeez +jehad +jehad's +jehads +jejune +jell +jelled +jellied +jellies +jelling +jello +jello's +jells +jelly +jelly's +jellybean +jellybean's +jellybeans +jellyfish +jellyfish's +jellyfishes +jellying +jeopardize +jeopardized +jeopardizes +jeopardizing +jeopardy +jeopardy's +jeremiad +jeremiad's +jeremiads +jerk +jerk's +jerked +jerkier +jerkiest +jerkily +jerkin +jerkin's +jerking +jerkins +jerks +jerkwater +jerky +jerky's +jersey +jersey's +jerseys +jessamine +jessamine's +jessamines +jest +jest's +jested +jester +jester's +jesters +jesting +jests +jet +jet's +jets +jetsam +jetsam's +jetted +jetties +jetting +jettison +jettison's +jettisoned +jettisoning +jettisons +jetty +jetty's +jewel +jewel's +jeweled +jeweler +jeweler's +jewelers +jeweling +jewelled +jeweller +jeweller's +jewellers +jewelling +jewelries +jewelry +jewelry's +jewels +jib +jib's +jibbed +jibbing +jibe +jibe's +jibed +jibes +jibing +jibs +jiffies +jiffy +jiffy's +jig +jig's +jigged +jigger +jigger's +jiggered +jiggering +jiggers +jigging +jiggle +jiggle's +jiggled +jiggles +jiggling +jigs +jigsaw +jigsaw's +jigsawed +jigsawing +jigsawn +jigsaws +jihad +jihad's +jihads +jilt +jilt's +jilted +jilting +jilts +jimmied +jimmies +jimmy +jimmy's +jimmying +jingle +jingle's +jingled +jingles +jingling +jingoism +jingoism's +jingoist +jingoist's +jingoistic +jingoists +jinn +jinn's +jinni +jinni's +jinnis +jinns +jinricksha +jinricksha's +jinrickshas +jinrikisha +jinrikisha's +jinrikishas +jinx +jinx's +jinxed +jinxes +jinxing +jitney +jitney's +jitneys +jitterbug +jitterbug's +jitterbugged +jitterbugging +jitterbugs +jitterier +jitteriest +jitters +jitters's +jittery +jiujitsu +jiujitsu's +jive +jive's +jived +jives +jiving +job +job's +jobbed +jobber +jobber's +jobbers +jobbing +jobless +joblessness +joblessness's +jobs +jock +jock's +jockey +jockey's +jockeyed +jockeying +jockeys +jocks +jockstrap +jockstrap's +jockstraps +jocose +jocosely +jocosity +jocosity's +jocular +jocularity +jocularity's +jocularly +jocund +jocundity +jocundity's +jocundly +jodhpurs +jodhpurs's +jog +jog's +jogged +jogger +jogger's +joggers +jogging +jogging's +joggle +joggle's +joggled +joggles +joggling +jogs +john +john's +johns +join +join's +joined +joiner +joiner's +joiners +joining +joins +joint +joint's +jointed +jointing +jointly +joints +joist +joist's +joists +joke +joke's +joked +joker +joker's +jokers +jokes +joking +jokingly +jollied +jollier +jollies +jolliest +jolliness +jolliness's +jollity +jollity's +jolly +jolly's +jollying +jolt +jolt's +jolted +jolting +jolts +jonquil +jonquil's +jonquils +josh +josh's +joshed +joshes +joshing +jostle +jostle's +jostled +jostles +jostling +jot +jot's +jots +jotted +jotting +jotting's +jottings +joule +joule's +joules +jounce +jounce's +jounced +jounces +jouncing +journal +journal's +journalese +journalese's +journalism +journalism's +journalist +journalist's +journalistic +journalists +journals +journey +journey's +journeyed +journeying +journeyman +journeyman's +journeymen +journeys +joust +joust's +jousted +jousting +jousts +jovial +joviality +joviality's +jovially +jowl +jowl's +jowls +joy +joy's +joyed +joyful +joyfuller +joyfullest +joyfully +joyfulness +joyfulness's +joying +joyless +joyous +joyously +joyousness +joyousness's +joyridden +joyride +joyride's +joyrider +joyrider's +joyriders +joyrides +joyriding +joyriding's +joyrode +joys +joystick +joystick's +joysticks +jubilant +jubilantly +jubilation +jubilation's +jubilee +jubilee's +jubilees +judge +judge's +judged +judgement +judgement's +judgemental +judgements +judges +judgeship +judgeship's +judging +judgment +judgment's +judgmental +judgments +judicature +judicature's +judicial +judicially +judiciaries +judiciary +judiciary's +judicious +judiciously +judiciousness +judiciousness's +judo +judo's +jug +jug's +jugged +juggernaut +juggernaut's +juggernauts +jugging +juggle +juggle's +juggled +juggler +juggler's +jugglers +juggles +juggling +jugs +jugular +jugular's +jugulars +juice +juice's +juiced +juicer +juicer's +juicers +juices +juicier +juiciest +juiciness +juiciness's +juicing +juicy +jujitsu +jujitsu's +jujube +jujube's +jujubes +jujutsu +jujutsu's +jukebox +jukebox's +jukeboxes +julep +julep's +juleps +julienne +jumble +jumble's +jumbled +jumbles +jumbling +jumbo +jumbo's +jumbos +jump +jump's +jumped +jumper +jumper's +jumpers +jumpier +jumpiest +jumpiness +jumpiness's +jumping +jumps +jumpsuit +jumpsuit's +jumpsuits +jumpy +junco +junco's +juncoes +juncos +junction +junction's +junctions +juncture +juncture's +junctures +jungle +jungle's +jungles +junior +junior's +juniors +juniper +juniper's +junipers +junk +junk's +junked +junker +junker's +junkers +junket +junket's +junketed +junketing +junkets +junkie +junkie's +junkier +junkies +junkiest +junking +junks +junky +junky's +junkyard +junkyard's +junkyards +junta +junta's +juntas +juridical +juries +jurisdiction +jurisdiction's +jurisdictional +jurisprudence +jurisprudence's +jurist +jurist's +jurists +juror +juror's +jurors +jury +jury's +just +juster +justest +justice +justice's +justices +justifiable +justifiably +justification +justification's +justifications +justified +justifies +justify +justifying +justly +justness +justness's +jut +jut's +jute +jute's +juts +jutted +jutting +juvenile +juvenile's +juveniles +juxtapose +juxtaposed +juxtaposes +juxtaposing +juxtaposition +juxtaposition's +juxtapositions +k +kHz +kW +kabob +kabob's +kabobs +kaboom +kaftan +kaftan's +kaftans +kale +kale's +kaleidoscope +kaleidoscope's +kaleidoscopes +kaleidoscopic +kamikaze +kamikaze's +kamikazes +kangaroo +kangaroo's +kangaroos +kaolin +kaolin's +kapok +kapok's +kaput +karakul +karakul's +karaoke +karaoke's +karaokes +karat +karat's +karate +karate's +karats +karma +karma's +katydid +katydid's +katydids +kayak +kayak's +kayaked +kayaking +kayaks +kazoo +kazoo's +kazoos +kc +kebab +kebab's +kebabs +kebob +kebob's +kebobs +keel +keel's +keeled +keeling +keels +keen +keen's +keened +keener +keenest +keening +keenly +keenness +keenness's +keens +keep +keep's +keeper +keeper's +keepers +keeping +keeping's +keeps +keepsake +keepsake's +keepsakes +keg +keg's +kegs +kelp +kelp's +ken +ken's +kenned +kennel +kennel's +kenneled +kenneling +kennelled +kennelling +kennels +kenning +kens +kept +keratin +keratin's +kerchief +kerchief's +kerchiefs +kerchieves +kernel +kernel's +kernels +kerosene +kerosene's +kerosine +kerosine's +kestrel +kestrel's +kestrels +ketch +ketch's +ketches +ketchup +ketchup's +kettle +kettle's +kettledrum +kettledrum's +kettledrums +kettles +key +key's +keyboard +keyboard's +keyboarded +keyboarder +keyboarder's +keyboarders +keyboarding +keyboards +keyed +keyhole +keyhole's +keyholes +keying +keynote +keynote's +keynoted +keynotes +keynoting +keypunch +keypunch's +keypunched +keypunches +keypunching +keys +keystone +keystone's +keystones +keystroke +keystroke's +keystrokes +keyword +keyword's +keywords +khaki +khaki's +khakis +khan +khan's +khans +kibbutz +kibbutz's +kibbutzim +kibitz +kibitzed +kibitzer +kibitzer's +kibitzers +kibitzes +kibitzing +kibosh +kibosh's +kick +kick's +kickback +kickback's +kickbacks +kicked +kicker +kicker's +kickers +kickier +kickiest +kicking +kickoff +kickoff's +kickoffs +kicks +kickstand +kickstand's +kickstands +kicky +kid +kid's +kidded +kidder +kidder's +kidders +kiddie +kiddie's +kiddies +kidding +kiddo +kiddo's +kiddoes +kiddos +kiddy +kiddy's +kidnap +kidnaped +kidnaper +kidnaper's +kidnapers +kidnaping +kidnapped +kidnapper +kidnapper's +kidnappers +kidnapping +kidnapping's +kidnappings +kidnaps +kidney +kidney's +kidneys +kids +kielbasa +kielbasa's +kielbasas +kielbasy +kill +kill's +killdeer +killdeer's +killdeers +killed +killer +killer's +killers +killing +killing's +killings +killjoy +killjoy's +killjoys +kills +kiln +kiln's +kilned +kilning +kilns +kilo +kilo's +kilobyte +kilobyte's +kilobytes +kilocycle +kilocycle's +kilocycles +kilogram +kilogram's +kilograms +kilohertz +kilohertz's +kilohertzes +kilometer +kilometer's +kilometers +kilos +kiloton +kiloton's +kilotons +kilowatt +kilowatt's +kilowatts +kilt +kilt's +kilter +kilter's +kilts +kimono +kimono's +kimonos +kin +kin's +kind +kind's +kinda +kinder +kindergarten +kindergarten's +kindergartener +kindergartener's +kindergarteners +kindergartens +kindergärtner +kindergärtner's +kindergärtners +kindest +kindhearted +kindle +kindled +kindles +kindlier +kindliest +kindliness +kindliness's +kindling +kindling's +kindly +kindness +kindness's +kindnesses +kindred +kindred's +kinds +kinematic +kinematics +kinetic +kinfolk +kinfolk's +kinfolks +kinfolks's +king +king's +kingdom +kingdom's +kingdoms +kingfisher +kingfisher's +kingfishers +kinglier +kingliest +kingly +kingpin +kingpin's +kingpins +kings +kingship +kingship's +kink +kink's +kinked +kinkier +kinkiest +kinking +kinks +kinky +kinship +kinship's +kinsman +kinsman's +kinsmen +kinswoman +kinswoman's +kinswomen +kiosk +kiosk's +kiosks +kipper +kipper's +kippered +kippering +kippers +kismet +kismet's +kiss +kiss's +kissed +kisser +kisser's +kissers +kisses +kissing +kit +kit's +kitchen +kitchen's +kitchenette +kitchenette's +kitchenettes +kitchens +kitchenware +kitchenware's +kite +kite's +kited +kites +kith +kith's +kiting +kits +kitsch +kitsch's +kitschy +kitten +kitten's +kittenish +kittens +kitties +kitty +kitty's +kiwi +kiwi's +kiwis +kleptomania +kleptomania's +kleptomaniac +kleptomaniac's +kleptomaniacs +klutz +klutz's +klutzes +klutzier +klutziest +klutzy +knack +knack's +knacker +knacks +knackwurst +knackwurst's +knackwursts +knapsack +knapsack's +knapsacks +knave +knave's +knavery +knavery's +knaves +knavish +knead +kneaded +kneader +kneader's +kneaders +kneading +kneads +knee +knee's +kneecap +kneecap's +kneecapped +kneecapping +kneecaps +kneed +kneeing +kneel +kneeled +kneeling +kneels +knees +knell +knell's +knelled +knelling +knells +knelt +knew +knickers +knickers's +knickknack +knickknack's +knickknacks +knife +knife's +knifed +knifes +knifing +knight +knight's +knighted +knighthood +knighthood's +knighthoods +knighting +knightly +knights +knit +knit's +knits +knitted +knitter +knitter's +knitters +knitting +knitting's +knitwear +knitwear's +knives +knob +knob's +knobbier +knobbiest +knobby +knobs +knock +knock's +knocked +knocker +knocker's +knockers +knocking +knockout +knockout's +knockouts +knocks +knockwurst +knockwurst's +knockwursts +knoll +knoll's +knolls +knot +knot's +knothole +knothole's +knotholes +knots +knotted +knottier +knottiest +knotting +knotty +know +knowable +knowing +knowingly +knowings +knowledge +knowledge's +knowledgeable +knowledgeably +known +knows +knuckle +knuckle's +knuckled +knucklehead +knucklehead's +knuckleheads +knuckles +knuckling +koala +koala's +koalas +kohlrabi +kohlrabi's +kohlrabies +kook +kook's +kookaburra +kookaburra's +kookaburras +kookie +kookier +kookiest +kookiness +kookiness's +kooks +kooky +kopeck +kopeck's +kopecks +kopek +kopek's +kopeks +kosher +koshered +koshering +koshers +kowtow +kowtow's +kowtowed +kowtowing +kowtows +krone +krone's +kroner +kronor +krypton +krypton's +króna +króna's +krónur +ks +kudos +kudos's +kudzu +kudzu's +kudzus +kumquat +kumquat's +kumquats +l +la +la's +lab +lab's +label +label's +labeled +labeling +labelled +labelling +labels +labia +labial +labial's +labials +labium +labium's +labor +labor's +laboratories +laboratory +laboratory's +labored +laborer +laborer's +laborers +laboring +laborious +laboriously +labors +labs +laburnum +laburnum's +laburnums +labyrinth +labyrinth's +labyrinthine +labyrinths +lace +lace's +laced +lacerate +lacerated +lacerates +lacerating +laceration +laceration's +lacerations +laces +lachrymal +lachrymose +lacier +laciest +lacing +lack +lack's +lackadaisical +lackadaisically +lacked +lackey +lackey's +lackeys +lacking +lackluster +lacks +laconic +laconically +lacquer +lacquer's +lacquered +lacquering +lacquers +lacrimal +lacrosse +lacrosse's +lactate +lactated +lactates +lactating +lactation +lactation's +lactic +lactose +lactose's +lacuna +lacuna's +lacunae +lacunas +lacy +lad +lad's +ladder +ladder's +laddered +laddering +ladders +laddie +laddie's +laddies +lade +laded +laden +lades +ladies +lading +lading's +ladings +ladle +ladle's +ladled +ladles +ladling +lads +lady +lady's +ladybird +ladybird's +ladybirds +ladybug +ladybug's +ladybugs +ladyfinger +ladyfinger's +ladyfingers +ladylike +ladyship +ladyship's +lag +lag's +lager +lager's +lagers +laggard +laggard's +laggards +lagged +lagging +lagniappe +lagniappe's +lagniappes +lagoon +lagoon's +lagoons +lags +laid +lain +lair +lair's +lairs +laity +laity's +lake +lake's +lakes +lallygag +lallygagged +lallygagging +lallygags +lam +lam's +lama +lama's +lamas +lamaseries +lamasery +lamasery's +lamb +lamb's +lambast +lambaste +lambasted +lambastes +lambasting +lambasts +lambda +lambed +lambent +lambing +lambkin +lambkin's +lambkins +lambs +lambskin +lambskin's +lambskins +lame +lame's +lamebrain +lamebrain's +lamebrains +lamed +lamely +lameness +lameness's +lament +lament's +lamentable +lamentably +lamentation +lamentation's +lamentations +lamented +lamenting +laments +lamer +lames +lamest +laminate +laminate's +laminated +laminates +laminating +lamination +lamination's +laming +lammed +lamming +lamp +lamp's +lampblack +lampblack's +lampoon +lampoon's +lampooned +lampooning +lampoons +lamppost +lamppost's +lampposts +lamprey +lamprey's +lampreys +lamps +lampshade +lampshade's +lampshades +lams +lance +lance's +lanced +lancer +lancer's +lancers +lances +lancet +lancet's +lancets +lancing +land +land's +landed +lander +landfall +landfall's +landfalls +landfill +landfill's +landfills +landholder +landholder's +landholders +landing +landing's +landings +landladies +landlady +landlady's +landlocked +landlord +landlord's +landlords +landlubber +landlubber's +landlubbers +landmark +landmark's +landmarks +landmass +landmass's +landmasses +landowner +landowner's +landowners +lands +landscape +landscape's +landscaped +landscaper +landscaper's +landscapers +landscapes +landscaping +landslid +landslidden +landslide +landslide's +landslides +landsliding +landward +landwards +lane +lane's +lanes +language +language's +languages +languid +languidly +languish +languished +languishes +languishing +languor +languor's +languorous +languorously +languors +lank +lanker +lankest +lankier +lankiest +lankiness +lankiness's +lanky +lanolin +lanolin's +lantern +lantern's +lanterns +lanyard +lanyard's +lanyards +lap +lap's +lapel +lapel's +lapels +lapidaries +lapidary +lapidary's +lapped +lapping +laps +lapse +lapse's +lapsed +lapses +lapsing +laptop +laptop's +laptops +lapwing +lapwing's +lapwings +larboard +larboard's +larboards +larcenies +larcenous +larceny +larceny's +larch +larch's +larches +lard +lard's +larded +larder +larder's +larders +larding +lards +large +large's +largely +largeness +largeness's +larger +larges +largess +largess's +largesse +largesse's +largest +largo +largo's +largos +lariat +lariat's +lariats +lark +lark's +larked +larking +larks +larkspur +larkspur's +larkspurs +larva +larva's +larvae +larval +larvas +larynges +laryngitis +laryngitis's +larynx +larynx's +larynxes +lasagna +lasagna's +lasagnas +lasagne +lasagne's +lasagnes +lascivious +lasciviously +lasciviousness +lasciviousness's +laser +laser's +lasers +lash +lash's +lashed +lashes +lashing +lass +lass's +lasses +lassie +lassie's +lassies +lassitude +lassitude's +lasso +lasso's +lassoed +lassoes +lassoing +lassos +last +last's +lasted +lasting +lastingly +lastly +lasts +latch +latch's +latched +latches +latching +late +latecomer +latecomer's +latecomers +lately +latency +latency's +lateness +lateness's +latent +later +lateral +lateral's +lateraled +lateraling +lateralled +lateralling +laterally +laterals +latest +latest's +latex +latex's +lath +lath's +lathe +lathe's +lathed +lather +lather's +lathered +lathering +lathers +lathes +lathing +laths +latitude +latitude's +latitudes +latitudinal +latrine +latrine's +latrines +lats +latter +latter's +latterly +lattice +lattice's +latticed +lattices +latticework +latticework's +latticeworks +laud +laud's +laudable +laudably +laudanum +laudanum's +laudatory +lauded +lauding +lauds +laugh +laugh's +laughable +laughably +laughed +laughing +laughingly +laughingstock +laughingstock's +laughingstocks +laughs +laughter +laughter's +launch +launch's +launched +launcher +launcher's +launchers +launches +launching +launder +laundered +launderer +launderer's +launderers +laundering +launders +laundress +laundress's +laundresses +laundries +laundry +laundry's +laundryman +laundryman's +laundrymen +laureate +laureate's +laureates +laurel +laurel's +laurels +lava +lava's +lavatories +lavatory +lavatory's +lavender +lavender's +lavenders +lavish +lavished +lavisher +lavishes +lavishest +lavishing +lavishly +lavishness +lavishness's +law +law's +lawbreaker +lawbreaker's +lawbreakers +lawful +lawfully +lawfulness +lawfulness's +lawgiver +lawgiver's +lawgivers +lawless +lawlessly +lawlessness +lawlessness's +lawmaker +lawmaker's +lawmakers +lawn +lawn's +lawns +lawrencium +lawrencium's +laws +lawsuit +lawsuit's +lawsuits +lawyer +lawyer's +lawyers +lax +laxative +laxative's +laxatives +laxer +laxest +laxity +laxity's +laxly +laxness +laxness's +lay +lay's +layaway +layaway's +layer +layer's +layered +layering +layers +layette +layette's +layettes +laying +layman +layman's +laymen +layoff +layoff's +layoffs +layout +layout's +layouts +layover +layover's +layovers +laypeople +layperson +layperson's +laypersons +lays +laywoman +laywoman's +laywomen +laze +laze's +lazed +lazes +lazied +lazier +lazies +laziest +lazily +laziness +laziness's +lazing +lazy +lazybones +lazybones's +lazying +lea +lea's +leach +leached +leaches +leaching +lead +lead's +leaded +leaden +leader +leader's +leaders +leadership +leadership's +leading +leading's +leads +leaf +leaf's +leafed +leafier +leafiest +leafing +leafless +leaflet +leaflet's +leafleted +leafleting +leaflets +leafletted +leafletting +leafs +leafy +league +league's +leagued +leagues +leaguing +leak +leak's +leakage +leakage's +leakages +leaked +leakier +leakiest +leaking +leaks +leaky +lean +lean's +leaned +leaner +leanest +leaning +leaning's +leanings +leanness +leanness's +leans +leap +leap's +leaped +leapfrog +leapfrog's +leapfrogged +leapfrogging +leapfrogs +leaping +leaps +leapt +learn +learned +learner +learner's +learners +learning +learning's +learns +learnt +leas +lease +lease's +leased +leasehold +leasehold's +leaseholder +leaseholder's +leaseholders +leaseholds +leases +leash +leash's +leashed +leashes +leashing +leasing +least +least's +leastwise +leather +leather's +leatherneck +leatherneck's +leathernecks +leathers +leathery +leave +leave's +leaved +leaven +leaven's +leavened +leavening +leavening's +leavens +leaves +leaving +leavings +leavings's +lecher +lecher's +lecherous +lecherously +lechers +lechery +lechery's +lecithin +lecithin's +lectern +lectern's +lecterns +lecture +lecture's +lectured +lecturer +lecturer's +lecturers +lectures +lecturing +led +ledge +ledge's +ledger +ledger's +ledgers +ledges +lee +lee's +leech +leech's +leeched +leeches +leeching +leek +leek's +leeks +leer +leer's +leered +leerier +leeriest +leering +leers +leery +lees +leeward +leeward's +leewards +leeway +leeway's +left +left's +lefter +leftest +leftie +leftie's +lefties +leftism +leftism's +leftist +leftist's +leftists +leftmost +leftover +leftover's +leftovers +lefts +leftwards +lefty +lefty's +leg +leg's +legacies +legacy +legacy's +legal +legal's +legalese +legalese's +legalism +legalism's +legalisms +legalistic +legality +legality's +legalization +legalization's +legalize +legalized +legalizes +legalizing +legally +legals +legate +legate's +legatee +legatee's +legatees +legates +legation +legation's +legations +legato +legato's +legatos +legend +legend's +legendary +legends +legerdemain +legerdemain's +legged +leggier +leggiest +leggin +leggin's +legging +legging's +leggings +leggins +leggy +legibility +legibility's +legible +legibly +legion +legion's +legionnaire +legionnaire's +legionnaires +legions +legislate +legislated +legislates +legislating +legislation +legislation's +legislative +legislator +legislator's +legislators +legislature +legislature's +legislatures +legit +legitimacy +legitimacy's +legitimate +legitimated +legitimately +legitimates +legitimating +legitimize +legitimized +legitimizes +legitimizing +legless +legman +legman's +legmen +legroom +legroom's +legrooms +legs +legume +legume's +legumes +leguminous +legwork +legwork's +lei +lei's +leis +leisure +leisure's +leisurely +leitmotif +leitmotif's +leitmotifs +lemma +lemmas +lemme +lemming +lemming's +lemmings +lemon +lemon's +lemonade +lemonade's +lemons +lemony +lemur +lemur's +lemurs +lend +lender +lender's +lenders +lending +lends +length +length's +lengthen +lengthened +lengthening +lengthens +lengthier +lengthiest +lengthily +lengths +lengthways +lengthwise +lengthy +leniency +leniency's +lenient +leniently +lens +lens's +lenses +lent +lentil +lentil's +lentils +leonine +leopard +leopard's +leopards +leotard +leotard's +leotards +leper +leper's +lepers +leprechaun +leprechaun's +leprechauns +leprosy +leprosy's +leprous +lept +lesbian +lesbian's +lesbianism +lesbianism's +lesbians +lesion +lesion's +lesions +less +less's +lessee +lessee's +lessees +lessen +lessened +lessening +lessens +lesser +lesson +lesson's +lessons +lessor +lessor's +lessors +lest +let +let's +letdown +letdown's +letdowns +lethal +lethally +lethargic +lethargically +lethargy +lethargy's +lets +letter +letter's +letterbox +lettered +letterhead +letterhead's +letterheads +lettering +lettering's +letters +letting +lettuce +lettuce's +lettuces +letup +letup's +letups +leukemia +leukemia's +leukocyte +leukocyte's +leukocytes +levee +levee's +levees +level +level's +leveled +leveler +leveler's +levelers +levelheaded +levelheadedness +levelheadedness's +leveling +levelled +leveller's +levellers +levelling +levelness +levelness's +levels +lever +lever's +leverage +leverage's +leveraged +leverages +leveraging +levered +levering +levers +leviathan +leviathan's +leviathans +levied +levies +levitate +levitated +levitates +levitating +levitation +levitation's +levity +levity's +levy +levy's +levying +lewd +lewder +lewdest +lewdly +lewdness +lewdness's +lexica +lexical +lexicographer +lexicographer's +lexicographers +lexicography +lexicography's +lexicon +lexicon's +lexicons +liabilities +liability +liability's +liable +liaise +liaised +liaises +liaising +liaison +liaison's +liaisons +liar +liar's +liars +lib +lib's +libation +libation's +libations +libel +libel's +libeled +libeler +libeler's +libelers +libeling +libelled +libeller +libeller's +libellers +libelling +libellous +libelous +libels +liberal +liberal's +liberalism +liberalism's +liberality +liberality's +liberalization +liberalization's +liberalizations +liberalize +liberalized +liberalizes +liberalizing +liberally +liberals +liberate +liberated +liberates +liberating +liberation +liberation's +liberator +liberator's +liberators +libertarian +libertarian's +libertarians +liberties +libertine +libertine's +libertines +liberty +liberty's +libidinous +libido +libido's +libidos +librarian +librarian's +librarians +libraries +library +library's +libretti +librettist +librettist's +librettists +libretto +libretto's +librettos +lice +licence +licence's +licenced +licences +licencing +license +license's +licensed +licensee +licensee's +licensees +licenses +licensing +licentiate +licentiate's +licentiates +licentious +licentiously +licentiousness +licentiousness's +lichee +lichee's +lichees +lichen +lichen's +lichens +licit +lick +lick's +licked +licking +licking's +lickings +licks +licorice +licorice's +licorices +lid +lid's +lidded +lids +lie +lie's +lied +lief +liefer +liefest +liege +liege's +lieges +lien +lien's +liens +lies +lieu +lieu's +lieutenancy +lieutenancy's +lieutenant +lieutenant's +lieutenants +life +life's +lifeblood +lifeblood's +lifeboat +lifeboat's +lifeboats +lifeforms +lifeguard +lifeguard's +lifeguards +lifeless +lifelike +lifeline +lifeline's +lifelines +lifelong +lifer +lifer's +lifers +lifesaver +lifesaver's +lifesavers +lifesaving +lifesaving's +lifespan +lifespans +lifestyle +lifestyle's +lifestyles +lifetime +lifetime's +lifetimes +lifework +lifework's +lifeworks +lift +lift's +lifted +lifting +liftoff +liftoff's +liftoffs +lifts +ligament +ligament's +ligaments +ligature +ligature's +ligatured +ligatures +ligaturing +light +light's +lighted +lighten +lightened +lightening +lightens +lighter +lighter's +lighters +lightest +lightheaded +lighthearted +lightheartedly +lightheartedness +lightheartedness's +lighthouse +lighthouse's +lighthouses +lighting +lighting's +lightly +lightness +lightness's +lightning +lightning's +lightninged +lightnings +lights +lightweight +lightweight's +lightweights +lignite +lignite's +likable +likableness +likableness's +like +like's +likeable +likeableness +likeableness's +liked +likelier +likeliest +likelihood +likelihood's +likelihoods +likely +liken +likened +likeness +likeness's +likenesses +likening +likens +liker +likes +likest +likewise +liking +liking's +lilac +lilac's +lilacs +lilies +lilt +lilt's +lilted +lilting +lilts +lily +lily's +limb +limb's +limber +limbered +limbering +limbers +limbless +limbo +limbo's +limbos +limbs +lime +lime's +limeade +limeade's +limeades +limed +limelight +limelight's +limerick +limerick's +limericks +limes +limestone +limestone's +limier +limiest +liming +limit +limit's +limitation +limitation's +limitations +limited +limiting +limitings +limitless +limits +limn +limned +limning +limns +limo +limo's +limos +limousine +limousine's +limousines +limp +limp's +limped +limper +limpest +limpet +limpet's +limpets +limpid +limpidity +limpidity's +limpidly +limping +limply +limpness +limpness's +limps +limy +linage +linage's +linchpin +linchpin's +linchpins +linden +linden's +lindens +line +line's +lineage +lineage's +lineages +lineal +lineally +lineament +lineament's +lineaments +linear +linearly +linebacker +linebacker's +linebackers +lined +linefeed +lineman +lineman's +linemen +linen +linen's +linens +linens's +liner +liner's +liners +lines +linesman +linesman's +linesmen +lineup +lineup's +lineups +linger +lingered +lingerer +lingerer's +lingerers +lingerie +lingerie's +lingering +lingeringly +lingerings +lingers +lingo +lingo's +lingoes +lingos +lingual +linguist +linguist's +linguistic +linguistics +linguistics's +linguists +liniment +liniment's +liniments +lining +lining's +linings +link +link's +linkage +linkage's +linkages +linked +linker +linking +links +linkup +linkup's +linkups +linnet +linnet's +linnets +linoleum +linoleum's +linseed +linseed's +lint +lint's +lintel +lintel's +lintels +lion +lion's +lioness +lioness's +lionesses +lionhearted +lionize +lionized +lionizes +lionizing +lions +lip +lip's +lipid +lipid's +lipids +liposuction +liposuction's +lipread +lipreading +lipreading's +lipreads +lips +lipstick +lipstick's +lipsticked +lipsticking +lipsticks +liquefaction +liquefaction's +liquefied +liquefies +liquefy +liquefying +liqueur +liqueur's +liqueurs +liquid +liquid's +liquidate +liquidated +liquidates +liquidating +liquidation +liquidation's +liquidations +liquidator +liquidator's +liquidators +liquidity +liquidity's +liquidize +liquidized +liquidizes +liquidizing +liquids +liquified +liquifies +liquify +liquifying +liquor +liquor's +liquored +liquoring +liquors +lira +lira's +liras +lire +lisle +lisle's +lisp +lisp's +lisped +lisping +lisps +lissom +lissome +list +list's +listed +listen +listen's +listened +listener +listener's +listeners +listening +listens +listing +listing's +listings +listless +listlessly +listlessness +listlessness's +lists +lit +litanies +litany +litany's +litchi +litchi's +litchis +lite +liter +liter's +literacy +literacy's +literal +literal's +literally +literals +literary +literate +literate's +literates +literati +literati's +literature +literature's +liters +lithe +lither +lithest +lithium +lithium's +lithograph +lithograph's +lithographed +lithographer +lithographer's +lithographers +lithographic +lithographing +lithographs +lithography +lithography's +lithosphere +lithosphere's +lithospheres +litigant +litigant's +litigants +litigate +litigated +litigates +litigating +litigation +litigation's +litigious +litigiousness +litigiousness's +litmus +litmus's +litter +litter's +litterbug +litterbug's +litterbugs +littered +littering +litters +little +little's +littleness +littleness's +littler +littlest +littoral +littoral's +littorals +liturgical +liturgies +liturgy +liturgy's +livability +livability's +livable +live +liveable +lived +livelier +liveliest +livelihood +livelihood's +livelihoods +liveliness +liveliness's +livelong +livelongs +lively +liven +livened +livening +livens +liver +liver's +liveried +liveries +livers +liverwurst +liverwurst's +livery +livery's +lives +livest +livestock +livestock's +livid +lividly +living +living's +livings +lizard +lizard's +lizards +llama +llama's +llamas +llano +llano's +llanos +lo +load +load's +loadable +loaded +loader +loader's +loaders +loading +loads +loadstar +loadstar's +loadstars +loadstone +loadstone's +loadstones +loaf +loaf's +loafed +loafer +loafer's +loafers +loafing +loafs +loam +loam's +loamier +loamiest +loamy +loan +loan's +loaned +loaner +loaner's +loaners +loaning +loans +loanword +loanword's +loanwords +loath +loathe +loathed +loathes +loathing +loathing's +loathings +loathsome +loathsomeness +loathsomeness's +loaves +lob +lob's +lobbed +lobbied +lobbies +lobbing +lobby +lobby's +lobbying +lobbyist +lobbyist's +lobbyists +lobe +lobe's +lobed +lobes +lobotomies +lobotomy +lobotomy's +lobs +lobster +lobster's +lobsters +local +local's +locale +locale's +locales +localities +locality +locality's +localization +localization's +localize +localized +localizes +localizing +locally +locals +locate +located +locates +locating +location +location's +locations +loci +lock +lock's +lockable +locked +locker +locker's +lockers +locket +locket's +lockets +locking +lockjaw +lockjaw's +lockout +lockout's +lockouts +locks +locksmith +locksmith's +locksmiths +lockstep +lockstep's +lockup +lockup's +lockups +loco +locomotion +locomotion's +locomotive +locomotive's +locomotives +locoweed +locoweed's +locoweeds +locus +locus's +locust +locust's +locusts +locution +locution's +locutions +lode +lode's +lodes +lodestar +lodestar's +lodestars +lodestone +lodestone's +lodestones +lodge +lodge's +lodged +lodger +lodger's +lodgers +lodges +lodging +lodging's +lodgings +lodgings's +loft +loft's +lofted +loftier +loftiest +loftily +loftiness +loftiness's +lofting +lofts +lofty +log +log's +loganberries +loganberry +loganberry's +logarithm +logarithm's +logarithmic +logarithms +logbook +logbook's +logbooks +loge +loge's +loges +logged +logger +logger's +loggerhead +loggerhead's +loggerheads +loggers +logging +logging's +logic +logic's +logical +logically +logician +logician's +logicians +logistic +logistical +logistically +logistics +logistics's +logjam +logjam's +logjams +logo +logo's +logos +logotype +logotype's +logotypes +logrolling +logrolling's +logs +loin +loin's +loincloth +loincloth's +loincloths +loins +loiter +loitered +loiterer +loiterer's +loiterers +loitering +loiters +loll +lolled +lolling +lollipop +lollipop's +lollipops +lolls +lollygag +lollygagged +lollygagging +lollygags +lollypop +lollypop's +lollypops +lone +lonelier +loneliest +loneliness +loneliness's +lonely +loner +loner's +loners +lonesome +long +long's +longboat +longboat's +longboats +longed +longer +longest +longevity +longevity's +longhair +longhair's +longhairs +longhand +longhand's +longhorn +longhorn's +longhorns +longing +longing's +longingly +longings +longish +longitude +longitude's +longitudes +longitudinal +longitudinally +longs +longshoreman +longshoreman's +longshoremen +longtime +loofah +look +look's +lookalike +lookalike's +lookalikes +looked +looking +lookout +lookout's +lookouts +looks +loom +loom's +loomed +looming +looms +loon +loon's +looney +looney's +looneyier +looneyies +looneys +loonier +loonies +looniest +loons +loony +loony's +loop +loop's +looped +loophole +loophole's +loopholes +loopier +loopiest +looping +loops +loopy +loose +loosed +loosely +loosen +loosened +looseness +looseness's +loosening +loosens +looser +looses +loosest +loosing +loot +loot's +looted +looter +looter's +looters +looting +loots +lop +lope +lope's +loped +lopes +loping +lopped +lopping +lops +lopsided +lopsidedly +lopsidedness +lopsidedness's +loquacious +loquacity +loquacity's +lord +lord's +lorded +lording +lordlier +lordliest +lordly +lords +lordship +lordship's +lordships +lore +lore's +lorgnette +lorgnette's +lorgnettes +lorn +lorries +lorry +lorry's +lose +loser +loser's +losers +loses +losing +loss +loss's +losses +lost +lot +lot's +loth +lotion +lotion's +lotions +lots +lotteries +lottery +lottery's +lotto +lotto's +lotus +lotus's +lotuses +loud +louder +loudest +loudly +loudmouth +loudmouth's +loudmouthed +loudmouths +loudness +loudness's +loudspeaker +loudspeaker's +loudspeakers +lounge +lounge's +lounged +lounges +lounging +louse +louse's +louses +lousier +lousiest +lousiness +lousiness's +lousy +lout +lout's +loutish +louts +louver +louver's +louvered +louvers +louvred +lovable +love +love's +loveable +lovebird +lovebird's +lovebirds +loved +loveless +lovelier +lovelies +loveliest +loveliness +loveliness's +lovelorn +lovely +lovely's +lovemaking +lovemaking's +lover +lover's +lovers +loves +lovesick +loving +lovingly +low +low's +lowbrow +lowbrow's +lowbrows +lowdown +lowdown's +lowed +lower +lowercase +lowercase's +lowered +lowering +lowers +lowest +lowing +lowish +lowland +lowland's +lowlands +lowlier +lowliest +lowliness +lowliness's +lowly +lowness +lowness's +lows +lox +lox's +loxes +loyal +loyaler +loyalest +loyalist +loyalist's +loyalists +loyaller +loyallest +loyally +loyalties +loyalty +loyalty's +lozenge +lozenge's +lozenges +ls +luau +luau's +luaus +lubber +lubber's +lubbers +lube +lube's +lubed +lubes +lubing +lubricant +lubricant's +lubricants +lubricate +lubricated +lubricates +lubricating +lubrication +lubrication's +lubricator +lubricator's +lubricators +lucid +lucidity +lucidity's +lucidly +lucidness +lucidness's +luck +luck's +lucked +luckier +luckiest +luckily +luckiness +luckiness's +lucking +luckless +lucks +lucky +lucrative +lucratively +lucre +lucre's +ludicrous +ludicrously +ludicrousness +ludicrousness's +lug +lug's +luggage +luggage's +lugged +lugging +lugs +lugubrious +lugubriously +lugubriousness +lugubriousness's +lukewarm +lull +lull's +lullabies +lullaby +lullaby's +lulled +lulling +lulls +lumbago +lumbago's +lumbar +lumber +lumber's +lumbered +lumbering +lumbering's +lumberjack +lumberjack's +lumberjacks +lumberman +lumberman's +lumbermen +lumbers +lumberyard +lumberyard's +lumberyards +luminaries +luminary +luminary's +luminescence +luminescence's +luminescent +luminosity +luminosity's +luminous +luminously +lummox +lummox's +lummoxes +lump +lump's +lumped +lumpier +lumpiest +lumpiness +lumpiness's +lumping +lumpish +lumps +lumpy +lunacies +lunacy +lunacy's +lunar +lunatic +lunatic's +lunatics +lunch +lunch's +lunchbox +lunched +luncheon +luncheon's +luncheonette +luncheonette's +luncheonettes +luncheons +lunches +lunching +lunchroom +lunchroom's +lunchrooms +lunchtime +lunchtime's +lunchtimes +lung +lung's +lunge +lunge's +lunged +lunges +lunging +lungs +lupin +lupin's +lupine +lupine's +lupines +lupins +lupus +lupus's +lurch +lurch's +lurched +lurches +lurching +lure +lure's +lured +lures +lurid +luridly +luridness +luridness's +luring +lurk +lurked +lurking +lurks +luscious +lusciously +lusciousness +lusciousness's +lush +lush's +lusher +lushes +lushest +lushness +lushness's +lust +lust's +lusted +luster +luster's +lustful +lustfully +lustier +lustiest +lustily +lustiness +lustiness's +lusting +lustre +lustre's +lustrous +lusts +lusty +lute +lute's +lutes +luxuriance +luxuriance's +luxuriant +luxuriantly +luxuriate +luxuriated +luxuriates +luxuriating +luxuries +luxurious +luxuriously +luxuriousness +luxuriousness's +luxury +luxury's +lyceum +lyceum's +lyceums +lychee +lychee's +lychees +lye +lye's +lying +lying's +lymph +lymph's +lymphatic +lymphatic's +lymphatics +lymphoma +lymphoma's +lymphomas +lymphomata +lynch +lynched +lynches +lynching +lynching's +lynchings +lynchpin +lynchpin's +lynchpins +lynx +lynx's +lynxes +lyre +lyre's +lyres +lyric +lyric's +lyrical +lyrically +lyricist +lyricist's +lyricists +lyrics +m +ma +ma'am +ma's +macabre +macadam +macadam's +macaroni +macaroni's +macaronies +macaronis +macaroon +macaroon's +macaroons +macaw +macaw's +macaws +mace +mace's +maced +macerate +macerated +macerates +macerating +maceration +maceration's +maces +machete +machete's +machetes +machination +machination's +machinations +machine +machine's +machined +machinery +machinery's +machines +machining +machinist +machinist's +machinists +machismo +machismo's +macho +macho's +macing +macintosh +macintosh's +macintoshes +mackerel +mackerel's +mackerels +mackinaw +mackinaw's +mackinaws +mackintosh +mackintosh's +mackintoshes +macramé +macramé's +macro +macro's +macrobiotic +macrobiotics +macrobiotics's +macrocosm +macrocosm's +macrocosms +macron +macron's +macrons +macros +macroscopic +mad +mad's +madam +madam's +madame +madame's +madams +madcap +madcap's +madcaps +madden +maddened +maddening +maddeningly +maddens +madder +madder's +madders +maddest +made +mademoiselle +mademoiselle's +mademoiselles +madhouse +madhouse's +madhouses +madly +madman +madman's +madmen +madness +madness's +madras +madras's +madrases +madrigal +madrigal's +madrigals +mads +madwoman +madwoman's +madwomen +maelstrom +maelstrom's +maelstroms +maestri +maestro +maestro's +maestros +magazine +magazine's +magazines +magenta +magenta's +maggot +maggot's +maggots +magic +magic's +magical +magically +magician +magician's +magicians +magisterial +magisterially +magistrate +magistrate's +magistrates +magma +magma's +magnanimity +magnanimity's +magnanimous +magnanimously +magnate +magnate's +magnates +magnesia +magnesia's +magnesium +magnesium's +magnet +magnet's +magnetic +magnetically +magnetism +magnetism's +magnetization +magnetization's +magnetize +magnetized +magnetizes +magnetizing +magneto +magneto's +magnetos +magnetosphere +magnets +magnification +magnification's +magnifications +magnificence +magnificence's +magnificent +magnificently +magnified +magnifier +magnifier's +magnifiers +magnifies +magnify +magnifying +magnitude +magnitude's +magnitudes +magnolia +magnolia's +magnolias +magnum +magnum's +magnums +magpie +magpie's +magpies +maharaja +maharaja's +maharajah +maharajah's +maharajahs +maharajas +maharanee +maharanee's +maharanees +maharani +maharani's +maharanis +maharishi +maharishi's +maharishis +mahatma +mahatma's +mahatmas +mahjong +mahjong's +mahoganies +mahogany +mahogany's +maid +maid's +maiden +maiden's +maidenhair +maidenhair's +maidenhead +maidenhead's +maidenheads +maidenhood +maidenhood's +maidenly +maidens +maids +maidservant +maidservant's +maidservants +mail +mail's +mailbox +mailbox's +mailboxes +mailed +mailer +mailer's +mailers +mailing +mailing's +mailings +mailman +mailman's +mailmen +mails +maim +maimed +maiming +maims +main +main's +mainframe +mainframe's +mainframes +mainland +mainland's +mainlands +mainline +mainline's +mainlined +mainlines +mainlining +mainly +mainmast +mainmast's +mainmasts +mains +mainsail +mainsail's +mainsails +mainspring +mainspring's +mainsprings +mainstay +mainstay's +mainstays +mainstream +mainstream's +mainstreamed +mainstreaming +mainstreams +maintain +maintainability +maintainable +maintained +maintainer +maintainers +maintaining +maintains +maintenance +maintenance's +maize +maize's +maizes +majestic +majestically +majesties +majesty +majesty's +major +major's +majored +majorette +majorette's +majorettes +majoring +majorities +majority +majority's +majorly +majors +make +make's +maker +maker's +makers +makes +makeshift +makeshift's +makeshifts +makeup +makeup's +makeups +making +making's +makings +maladies +maladjusted +maladjustment +maladjustment's +maladroit +malady +malady's +malaise +malaise's +malapropism +malapropism's +malapropisms +malaria +malaria's +malarial +malarkey +malarkey's +malcontent +malcontent's +malcontents +male +male's +malediction +malediction's +maledictions +malefactor +malefactor's +malefactors +maleness +maleness's +males +malevolence +malevolence's +malevolent +malevolently +malfeasance +malfeasance's +malformation +malformation's +malformations +malformed +malfunction +malfunction's +malfunctioned +malfunctioning +malfunctions +malice +malice's +malicious +maliciously +malign +malignancies +malignancy +malignancy's +malignant +malignantly +maligned +maligning +malignity +malignity's +maligns +malinger +malingered +malingerer +malingerer's +malingerers +malingering +malingers +mall +mall's +mallard +mallard's +mallards +malleability +malleability's +malleable +mallet +mallet's +mallets +mallow +mallow's +mallows +malls +malnourished +malnutrition +malnutrition's +malodorous +malpractice +malpractice's +malpractices +malt +malt's +malted +malted's +malteds +malting +maltreat +maltreated +maltreating +maltreatment +maltreatment's +maltreats +malts +mama +mama's +mamas +mambo +mambo's +mamboed +mamboing +mambos +mamma +mamma's +mammal +mammal's +mammalian +mammalian's +mammalians +mammals +mammary +mammas +mammogram +mammogram's +mammograms +mammography +mammography's +mammon +mammon's +mammoth +mammoth's +mammoths +man +man's +manacle +manacle's +manacled +manacles +manacling +manage +manageability +manageability's +manageable +managed +management +management's +manager +manager's +managerial +managers +manages +managing +manatee +manatee's +manatees +mandarin +mandarin's +mandarins +mandate +mandate's +mandated +mandates +mandating +mandatory +mandible +mandible's +mandibles +mandolin +mandolin's +mandolins +mandrake +mandrake's +mandrakes +mandrill +mandrill's +mandrills +mane +mane's +manes +maneuver +maneuver's +maneuverability +maneuverability's +maneuverable +maneuvered +maneuvering +maneuvers +manful +manfully +manganese +manganese's +mange +mange's +manger +manger's +mangers +mangier +mangiest +mangle +mangle's +mangled +mangles +mangling +mango +mango's +mangoes +mangos +mangrove +mangrove's +mangroves +mangy +manhandle +manhandled +manhandles +manhandling +manhole +manhole's +manholes +manhood +manhood's +manhunt +manhunt's +manhunts +mania +mania's +maniac +maniac's +maniacal +maniacs +manias +manic +manic's +manics +manicure +manicure's +manicured +manicures +manicuring +manicurist +manicurist's +manicurists +manifest +manifest's +manifestation +manifestation's +manifestations +manifested +manifesting +manifestly +manifesto +manifesto's +manifestoes +manifestos +manifests +manifold +manifold's +manifolded +manifolding +manifolds +manikin +manikin's +manikins +manipulate +manipulated +manipulates +manipulating +manipulation +manipulation's +manipulations +manipulative +manipulator +manipulator's +manipulators +mankind +mankind's +manlier +manliest +manliness +manliness's +manly +manna +manna's +manned +mannequin +mannequin's +mannequins +manner +manner's +mannered +mannerism +mannerism's +mannerisms +mannerly +manners +mannikin +mannikin's +mannikins +manning +mannish +mannishly +mannishness +mannishness's +manor +manor's +manorial +manors +manpower +manpower's +manqué +mans +mansard +mansard's +mansards +manse +manse's +manservant +manservant's +manses +mansion +mansion's +mansions +manslaughter +manslaughter's +mantel +mantel's +mantelpiece +mantelpiece's +mantelpieces +mantels +mantes +mantilla +mantilla's +mantillas +mantis +mantis's +mantises +mantissa +mantle +mantle's +mantled +mantlepiece +mantlepieces +mantles +mantling +mantra +mantra's +mantras +manual +manual's +manually +manuals +manufacture +manufacture's +manufactured +manufacturer +manufacturer's +manufacturers +manufactures +manufacturing +manufacturing's +manumit +manumits +manumitted +manumitting +manure +manure's +manured +manures +manuring +manuscript +manuscript's +manuscripts +many +many's +manège +manège's +map +map's +maple +maple's +maples +mapped +mapper +mapping +mappings +maps +mar +marabou +marabou's +marabous +maraca +maraca's +maracas +marathon +marathon's +marathoner +marathoner's +marathoners +marathons +maraud +marauded +marauder +marauder's +marauders +marauding +marauds +marble +marble's +marbled +marbles +marbling +marbling's +march +march's +marched +marcher +marcher's +marchers +marches +marching +marchioness +marchioness's +marchionesses +mare +mare's +mares +margarine +margarine's +margarita +margarita's +margaritas +margin +margin's +marginal +marginalia +marginalia's +marginally +margins +maria +maria's +mariachi +mariachi's +mariachis +marigold +marigold's +marigolds +marihuana +marihuana's +marijuana +marijuana's +marimba +marimba's +marimbas +marina +marina's +marinade +marinade's +marinaded +marinades +marinading +marinas +marinate +marinated +marinates +marinating +marine +marine's +mariner +mariner's +mariners +marines +marionette +marionette's +marionettes +marital +maritime +marjoram +marjoram's +mark +mark's +markdown +markdown's +markdowns +marked +markedly +marker +marker's +markers +market +market's +marketability +marketability's +marketable +marketed +marketer +marketer's +marketers +marketing +marketing's +marketplace +marketplace's +marketplaces +markets +marking +marking's +markings +marks +marksman +marksman's +marksmanship +marksmanship's +marksmen +markup +markup's +markups +marlin +marlin's +marlins +marmalade +marmalade's +marmoset +marmoset's +marmosets +marmot +marmot's +marmots +maroon +maroon's +marooned +marooning +maroons +marquee +marquee's +marquees +marquess +marquess's +marquesses +marquetry +marquetry's +marquis +marquis's +marquise +marquise's +marquises +marred +marriage +marriage's +marriageable +marriages +married +married's +marrieds +marries +marring +marrow +marrow's +marrows +marry +marrying +mars +marsh +marsh's +marshal +marshal's +marshaled +marshaling +marshalled +marshalling +marshals +marshes +marshier +marshiest +marshmallow +marshmallow's +marshmallows +marshy +marsupial +marsupial's +marsupials +mart +mart's +marten +marten's +martens +martial +martin +martin's +martinet +martinet's +martinets +martini +martini's +martinis +martins +marts +martyr +martyr's +martyrdom +martyrdom's +martyred +martyring +martyrs +marvel +marvel's +marveled +marveling +marvelled +marvelling +marvellously +marvelous +marvelously +marvels +marzipan +marzipan's +mas +mascara +mascara's +mascaraed +mascaraing +mascaras +mascot +mascot's +mascots +masculine +masculine's +masculines +masculinity +masculinity's +mash +mash's +mashed +masher +masher's +mashers +mashes +mashing +mask +mask's +masked +masking +masks +masochism +masochism's +masochist +masochist's +masochistic +masochists +mason +mason's +masonic +masonry +masonry's +masons +masque +masque's +masquerade +masquerade's +masqueraded +masquerader +masquerader's +masqueraders +masquerades +masquerading +masques +mass +mass's +massacre +massacre's +massacred +massacres +massacring +massage +massage's +massaged +massages +massaging +massed +masses +masseur +masseur's +masseurs +masseuse +masseuse's +masseuses +massing +massive +massively +massiveness +massiveness's +mast +mast's +mastectomies +mastectomy +mastectomy's +master +master's +mastered +masterful +masterfully +mastering +masterly +mastermind +mastermind's +masterminded +masterminding +masterminds +masterpiece +masterpiece's +masterpieces +masters +masterstroke +masterstroke's +masterstrokes +masterwork +masterwork's +masterworks +mastery +mastery's +masthead +masthead's +mastheads +masticate +masticated +masticates +masticating +mastication +mastication's +mastiff +mastiff's +mastiffs +mastodon +mastodon's +mastodons +mastoid +mastoid's +mastoids +masts +masturbate +masturbated +masturbates +masturbating +masturbation +masturbation's +mat +mat's +matador +matador's +matadors +match +match's +matchbook +matchbook's +matchbooks +matchbox +matchbox's +matchboxes +matched +matches +matching +matchless +matchmaker +matchmaker's +matchmakers +matchmaking +matchmaking's +matchstick +matchstick's +matchsticks +mate +mate's +mated +material +material's +materialism +materialism's +materialist +materialist's +materialistic +materialistically +materialists +materialization +materialization's +materialize +materialized +materializes +materializing +materially +materials +maternal +maternally +maternity +maternity's +mates +math +math's +mathematical +mathematically +mathematician +mathematician's +mathematicians +mathematics +mathematics's +mating +matins +matins's +matinée +matinée's +matinées +matriarch +matriarch's +matriarchal +matriarchies +matriarchs +matriarchy +matriarchy's +matrices +matricide +matricide's +matricides +matriculate +matriculated +matriculates +matriculating +matriculation +matriculation's +matrimonial +matrimony +matrimony's +matrix +matrix's +matrixes +matron +matron's +matronly +matrons +mats +matt +matte +matte's +matted +matter +matter's +mattered +mattering +matters +mattes +matting +matting's +mattock +mattock's +mattocks +mattress +mattress's +mattresses +matts +maturation +maturation's +mature +matured +maturely +maturer +matures +maturest +maturing +maturities +maturity +maturity's +matzo +matzo's +matzoh +matzoh's +matzohs +matzos +matzot +matzoth +matériel +matériel's +maudlin +maul +maul's +mauled +mauling +mauls +maunder +maundered +maundering +maunders +mausolea +mausoleum +mausoleum's +mausoleums +mauve +mauve's +maven +maven's +mavens +maverick +maverick's +mavericks +mavin +mavin's +mavins +maw +maw's +mawkish +mawkishly +maws +max's +maxed +maxes +maxilla +maxilla's +maxillae +maxillary +maxillas +maxim +maxim's +maxima +maximal +maximally +maximization +maximization's +maximize +maximized +maximizes +maximizing +maxims +maximum +maximum's +maximums +maxing +may +may's +maybe +maybe's +maybes +mayday +mayday's +maydays +mayflies +mayflower +mayflower's +mayflowers +mayfly +mayfly's +mayhem +mayhem's +mayo +mayo's +mayonnaise +mayonnaise's +mayor +mayor's +mayoral +mayoralty +mayoralty's +mayors +maypole +maypole's +maypoles +maze +maze's +mazes +mazourka +mazourka's +mazourkas +mazurka +mazurka's +mazurkas +me +mead +mead's +meadow +meadow's +meadowlark +meadowlark's +meadowlarks +meadows +meager +meagerly +meagerness +meagerness's +meal +meal's +mealier +mealiest +meals +mealtime +mealtime's +mealtimes +mealy +mean +mean's +meander +meander's +meandered +meandering +meanders +meaner +meanest +meaning +meaning's +meaningful +meaningfully +meaningless +meanings +meanly +meanness +meanness's +means +meant +meantime +meantime's +meanwhile +meanwhile's +measles +measles's +measlier +measliest +measly +measurable +measurably +measure +measure's +measured +measureless +measurement +measurement's +measurements +measures +measuring +meat +meat's +meatball +meatball's +meatballs +meatier +meatiest +meatloaf +meatloaf's +meatloaves +meats +meaty +mecca +mecca's +meccas +mechanic +mechanic's +mechanical +mechanically +mechanics +mechanics's +mechanism +mechanism's +mechanisms +mechanistic +mechanization +mechanization's +mechanize +mechanized +mechanizes +mechanizing +medal +medal's +medalist +medalist's +medalists +medallion +medallion's +medallions +medals +meddle +meddled +meddler +meddler's +meddlers +meddles +meddlesome +meddling +media +media's +mediaeval +medial +median +median's +medians +medias +mediate +mediated +mediates +mediating +mediation +mediation's +mediator +mediator's +mediators +medic +medic's +medical +medical's +medically +medicals +medicate +medicated +medicates +medicating +medication +medication's +medications +medicinal +medicinally +medicine +medicine's +medicines +medics +medieval +mediocre +mediocrities +mediocrity +mediocrity's +meditate +meditated +meditates +meditating +meditation +meditation's +meditations +meditative +meditatively +medium +medium's +mediums +medley +medley's +medleys +medulla +medulla's +medullae +medullas +meek +meeker +meekest +meekly +meekness +meekness's +meet +meet's +meeting +meeting's +meetinghouse +meetinghouse's +meetinghouses +meetings +meets +meg +megabyte +megabyte's +megabytes +megacycle +megacycle's +megacycles +megahertz +megahertz's +megahertzes +megalith +megalith's +megaliths +megalomania +megalomania's +megalomaniac +megalomaniac's +megalomaniacs +megalopolis +megalopolis's +megalopolises +megaphone +megaphone's +megaphoned +megaphones +megaphoning +megapixel +megapixel's +megapixels +megaton +megaton's +megatons +megs +melancholia +melancholia's +melancholic +melancholics +melancholy +melancholy's +melange +melange's +melanges +melanin +melanin's +melanoma +melanoma's +melanomas +melanomata +meld +meld's +melded +melding +melds +mellifluous +mellifluously +mellow +mellowed +mellower +mellowest +mellowing +mellowness +mellowness's +mellows +melodic +melodically +melodies +melodious +melodiously +melodiousness +melodiousness's +melodrama +melodrama's +melodramas +melodramatic +melodramatically +melody +melody's +melon +melon's +melons +melt +melt's +meltdown +meltdown's +meltdowns +melted +melting +melts +member +member's +members +membership +membership's +memberships +membrane +membrane's +membranes +membranous +memento +memento's +mementoes +mementos +memo +memo's +memoir +memoir's +memoirs +memorabilia +memorabilia's +memorable +memorably +memoranda +memorandum +memorandum's +memorandums +memorial +memorial's +memorialize +memorialized +memorializes +memorializing +memorials +memories +memorization +memorization's +memorize +memorized +memorizes +memorizing +memory +memory's +memos +men +menace +menace's +menaced +menaces +menacing +menacingly +menage +menage's +menagerie +menagerie's +menageries +menages +mend +mend's +mendacious +mendacity +mendacity's +mended +mender +mender's +menders +mendicant +mendicant's +mendicants +mending +mends +menfolk +menfolk's +menhaden +menhaden's +menhadens +menial +menial's +menially +menials +meningitis +meningitis's +menopausal +menopause +menopause's +menorah +menorah's +menorahs +menservants +menses +menses's +menstrual +menstruate +menstruated +menstruates +menstruating +menstruation +menstruation's +menswear +menswear's +mental +mentalities +mentality +mentality's +mentally +menthol +menthol's +mentholated +mention +mention's +mentioned +mentioning +mentions +mentor +mentor's +mentored +mentoring +mentors +menu +menu's +menus +meow +meow's +meowed +meowing +meows +mercantile +mercenaries +mercenary +mercenary's +mercerize +mercerized +mercerizes +mercerizing +merchandise +merchandise's +merchandised +merchandises +merchandising +merchandize +merchandized +merchandizes +merchandizing +merchant +merchant's +merchantman +merchantman's +merchantmen +merchants +mercies +merciful +mercifully +merciless +mercilessly +mercurial +mercuric +mercury +mercury's +mercy +mercy's +mere +mere's +merely +meres +merest +meretricious +merganser +merganser's +mergansers +merge +merged +merger +merger's +mergers +merges +merging +meridian +meridian's +meridians +meringue +meringue's +meringues +merino +merino's +merinos +merit +merit's +merited +meriting +meritocracies +meritocracy +meritocracy's +meritorious +meritoriously +merits +mermaid +mermaid's +mermaids +merman +merman's +mermen +merrier +merriest +merrily +merriment +merriment's +merriness +merriness's +merry +merrymaker +merrymaker's +merrymakers +merrymaking +merrymaking's +mes +mesa +mesa's +mesas +mescal +mescal's +mescaline +mescaline's +mescals +mesdames +mesdemoiselles +mesh +mesh's +meshed +meshes +meshing +mesmerism +mesmerism's +mesmerize +mesmerized +mesmerizes +mesmerizing +mesquite +mesquite's +mesquites +mess +mess's +message +message's +messages +messed +messenger +messenger's +messengers +messes +messiah +messiah's +messiahs +messier +messiest +messieurs +messily +messiness +messiness's +messing +messy +mestizo +mestizo's +mestizoes +mestizos +met +metabolic +metabolism +metabolism's +metabolisms +metabolize +metabolized +metabolizes +metabolizing +metacarpal +metacarpal's +metacarpals +metacarpi +metacarpus +metacarpus's +metal +metal's +metallic +metallurgical +metallurgist +metallurgist's +metallurgists +metallurgy +metallurgy's +metals +metamorphic +metamorphism +metamorphism's +metamorphose +metamorphosed +metamorphoses +metamorphosing +metamorphosis +metamorphosis's +metaphor +metaphor's +metaphorical +metaphorically +metaphors +metaphysical +metaphysics +metaphysics's +metastases +metastasis +metastasis's +metastasize +metastasized +metastasizes +metastasizing +metatarsal +metatarsal's +metatarsals +mete +mete's +meted +meteor +meteor's +meteoric +meteorite +meteorite's +meteorites +meteoroid +meteoroid's +meteoroids +meteorological +meteorologist +meteorologist's +meteorologists +meteorology +meteorology's +meteors +meter +meter's +metered +metering +meters +metes +methadon +methadon's +methadone +methadone's +methane +methane's +methanol +methanol's +methinks +method +method's +methodical +methodically +methodological +methodologies +methodology +methodology's +methods +methought +meticulous +meticulously +meticulousness +meticulousness's +meting +metric +metrical +metrically +metrication +metrication's +metrics +metro +metro's +metronome +metronome's +metronomes +metropolis +metropolis's +metropolises +metropolitan +metros +mettle +mettle's +mettlesome +mew +mew's +mewed +mewing +mewl +mewled +mewling +mewls +mews +mews's +mezzanine +mezzanine's +mezzanines +mi +mi's +miaow +miaow's +miaowed +miaowing +miaows +miasma +miasma's +miasmas +miasmata +mica +mica's +mice +micra +microbe +microbe's +microbes +microbiologist +microbiologist's +microbiologists +microbiology +microbiology's +microchip +microchip's +microchips +microcode +microcomputer +microcomputer's +microcomputers +microcosm +microcosm's +microcosms +microeconomics +microeconomics's +microfiche +microfiche's +microfiches +microfilm +microfilm's +microfilmed +microfilming +microfilms +micrometer +micrometer's +micrometers +micron +micron's +microns +microorganism +microorganism's +microorganisms +microphone +microphone's +microphones +microprocessor +microprocessor's +microprocessors +microscope +microscope's +microscopes +microscopic +microscopically +microscopy +microscopy's +microsecond +microsecond's +microseconds +microsurgery +microsurgery's +microwave +microwave's +microwaved +microwaves +microwaving +mid +midair +midair's +midday +midday's +middies +middle +middle's +middlebrow +middlebrow's +middlebrows +middleman +middleman's +middlemen +middles +middleweight +middleweight's +middleweights +middling +middy +middy's +midge +midge's +midges +midget +midget's +midgets +midland +midland's +midlands +midmost +midnight +midnight's +midpoint +midpoint's +midpoints +midriff +midriff's +midriffs +midshipman +midshipman's +midshipmen +midst +midst's +midstream +midstream's +midsummer +midsummer's +midterm +midterm's +midterms +midtown +midtown's +midway +midway's +midways +midweek +midweek's +midweeks +midwife +midwife's +midwifed +midwiferies +midwifery +midwifery's +midwifes +midwifing +midwinter +midwinter's +midwived +midwives +midwiving +midyear +midyear's +midyears +mien +mien's +miens +miff +miffed +miffing +miffs +might +might's +mightier +mightiest +mightily +mightiness +mightiness's +mighty +migraine +migraine's +migraines +migrant +migrant's +migrants +migrate +migrated +migrates +migrating +migration +migration's +migrations +migratory +mike +mike's +miked +mikes +miking +mil +mil's +milch +mild +mild's +milder +mildest +mildew +mildew's +mildewed +mildewing +mildews +mildly +mildness +mildness's +mile +mile's +mileage +mileage's +mileages +milepost +milepost's +mileposts +miler +miler's +milers +miles +milestone +milestone's +milestones +milieu +milieu's +milieus +milieux +militancy +militancy's +militant +militant's +militantly +militants +militaries +militarily +militarism +militarism's +militarist +militarist's +militaristic +militarists +militarization +militarization's +militarize +militarized +militarizes +militarizing +military +military's +militate +militated +militates +militating +militia +militia's +militiaman +militiaman's +militiamen +militias +milk +milk's +milked +milker +milkier +milkiest +milkiness +milkiness's +milking +milkmaid +milkmaid's +milkmaids +milkman +milkman's +milkmen +milks +milkshake +milkshake's +milkshakes +milksop +milksop's +milksops +milkweed +milkweed's +milkweeds +milky +mill +mill's +millage +millage's +milled +millennia +millennial +millennium +millennium's +millenniums +millepede +millepede's +millepedes +miller +miller's +millers +millet +millet's +milligram +milligram's +milligrams +milliliter +milliliter's +milliliters +millimeter +millimeter's +millimeters +milliner +milliner's +milliners +millinery +millinery's +milling +million +million's +millionaire +millionaire's +millionaires +millions +millionth +millionth's +millionths +millipede +millipede's +millipedes +millisecond +millisecond's +milliseconds +millrace +millrace's +millraces +mills +millstone +millstone's +millstones +milquetoast +milquetoast's +milquetoasts +mils +mime +mime's +mimed +mimeograph +mimeograph's +mimeographed +mimeographing +mimeographs +mimes +mimetic +mimic +mimic's +mimicked +mimicking +mimicries +mimicry +mimicry's +mimics +miming +mimosa +mimosa's +mimosas +minaret +minaret's +minarets +minatory +mince +mince's +minced +mincemeat +mincemeat's +minces +mincing +mind +mind's +mindbogglingly +minded +mindedness +mindful +mindfully +mindfulness +mindfulness's +minding +mindless +mindlessly +mindlessness +mindlessness's +minds +mine +mine's +mined +minefield +minefield's +minefields +miner +miner's +mineral +mineral's +mineralogist +mineralogist's +mineralogists +mineralogy +mineralogy's +minerals +miners +mines +minestrone +minestrone's +minesweeper +minesweeper's +minesweepers +mingle +mingled +mingles +mingling +mini +mini's +miniature +miniature's +miniatures +miniaturist +miniaturist's +miniaturists +miniaturization +miniaturization's +miniaturize +miniaturized +miniaturizes +miniaturizing +minibike +minibike's +minibikes +minibus +minibus's +minibuses +minibusses +minicam +minicam's +minicams +minicomputer +minicomputer's +minicomputers +minim +minim's +minima +minimal +minimalism +minimalism's +minimalist +minimalist's +minimalists +minimally +minimization +minimize +minimized +minimizes +minimizing +minims +minimum +minimum's +minimums +mining +mining's +minion +minion's +minions +minis +miniscule +miniscule's +miniscules +miniseries +miniseries's +miniskirt +miniskirt's +miniskirts +minister +minister's +ministered +ministerial +ministering +ministers +ministrant +ministrant's +ministrants +ministration +ministration's +ministrations +ministries +ministry +ministry's +minivan +minivan's +minivans +mink +mink's +minks +minnow +minnow's +minnows +minor +minor's +minored +minoring +minorities +minority +minority's +minors +minster +minstrel +minstrel's +minstrels +mint +mint's +minted +mintier +mintiest +minting +mints +minty +minuend +minuend's +minuends +minuet +minuet's +minuets +minus +minus's +minuscule +minuscule's +minuscules +minuses +minute +minute's +minuted +minutely +minuteman +minuteman's +minutemen +minuteness +minuteness's +minuter +minutes +minutest +minutia +minutia's +minutiae +minuting +minx +minx's +minxes +miracle +miracle's +miracles +miraculous +miraculously +mirage +mirage's +mirages +mire +mire's +mired +mires +miring +mirror +mirror's +mirrored +mirroring +mirrors +mirth +mirth's +mirthful +mirthfully +mirthless +misadventure +misadventure's +misadventures +misalignment +misalliance +misalliance's +misalliances +misanthrope +misanthrope's +misanthropes +misanthropic +misanthropist +misanthropist's +misanthropists +misanthropy +misanthropy's +misapplication +misapplication's +misapplied +misapplies +misapply +misapplying +misapprehend +misapprehended +misapprehending +misapprehends +misapprehension +misapprehension's +misapprehensions +misappropriate +misappropriated +misappropriates +misappropriating +misappropriation +misappropriation's +misappropriations +misbegotten +misbehave +misbehaved +misbehaves +misbehaving +misbehavior +misbehavior's +miscalculate +miscalculated +miscalculates +miscalculating +miscalculation +miscalculation's +miscalculations +miscall +miscalled +miscalling +miscalls +miscarriage +miscarriage's +miscarriages +miscarried +miscarries +miscarry +miscarrying +miscast +miscasting +miscasts +miscegenation +miscegenation's +miscellaneous +miscellanies +miscellany +miscellany's +mischance +mischance's +mischances +mischief +mischief's +mischievous +mischievously +mischievousness +mischievousness's +misconceive +misconceived +misconceives +misconceiving +misconception +misconception's +misconceptions +misconduct +misconduct's +misconducted +misconducting +misconducts +misconstruction +misconstruction's +misconstructions +misconstrue +misconstrued +misconstrues +misconstruing +miscount +miscount's +miscounted +miscounting +miscounts +miscreant +miscreant's +miscreants +miscue +miscue's +miscued +miscues +miscuing +misdeal +misdeal's +misdealing +misdeals +misdealt +misdeed +misdeed's +misdeeds +misdemeanor +misdemeanor's +misdemeanors +misdiagnose +misdiagnosed +misdiagnoses +misdiagnosing +misdiagnosis +misdiagnosis's +misdid +misdirect +misdirected +misdirecting +misdirection +misdirection's +misdirects +misdo +misdoes +misdoing +misdoing's +misdoings +misdone +miser +miser's +miserable +miserably +miseries +miserliness +miserliness's +miserly +misers +misery +misery's +misfeasance +misfeasance's +misfire +misfire's +misfired +misfires +misfiring +misfit +misfit's +misfits +misfitted +misfitting +misfortune +misfortune's +misfortunes +misgiving +misgiving's +misgivings +misgovern +misgoverned +misgoverning +misgoverns +misguide +misguided +misguidedly +misguides +misguiding +mishandle +mishandled +mishandles +mishandling +mishap +mishap's +mishaps +mishmash +mishmash's +mishmashes +misidentified +misidentifies +misidentify +misidentifying +misinform +misinformation +misinformation's +misinformed +misinforming +misinforms +misinterpret +misinterpretation +misinterpretation's +misinterpretations +misinterpreted +misinterpreting +misinterprets +misjudge +misjudged +misjudgement +misjudgement's +misjudgements +misjudges +misjudging +misjudgment +misjudgment's +misjudgments +mislaid +mislay +mislaying +mislays +mislead +misleading +misleads +misled +mismanage +mismanaged +mismanagement +mismanagement's +mismanages +mismanaging +mismatch +mismatch's +mismatched +mismatches +mismatching +misnomer +misnomer's +misnomers +misogynist +misogynist's +misogynistic +misogynists +misogyny +misogyny's +misplace +misplaced +misplaces +misplacing +misplay +misplay's +misplayed +misplaying +misplays +misprint +misprint's +misprinted +misprinting +misprints +mispronounce +mispronounced +mispronounces +mispronouncing +mispronunciation +mispronunciation's +mispronunciations +misquotation +misquotation's +misquotations +misquote +misquote's +misquoted +misquotes +misquoting +misread +misreading +misreading's +misreadings +misreads +misrepresent +misrepresentation +misrepresentation's +misrepresentations +misrepresented +misrepresenting +misrepresents +misrule +misrule's +misruled +misrules +misruling +miss +miss's +missal +missal's +missals +missed +misses +misshapen +missile +missile's +missilery +missilery's +missiles +missing +mission +mission's +missionaries +missionary +missionary's +missions +missive +missive's +missives +misspell +misspelled +misspelling +misspelling's +misspellings +misspells +misspelt +misspend +misspending +misspends +misspent +misstate +misstated +misstatement +misstatement's +misstatements +misstates +misstating +misstep +misstep's +missteps +mist +mist's +mistake +mistake's +mistaken +mistakenly +mistakes +mistaking +misted +mister +mister's +misters +mistier +mistiest +mistily +mistime +mistimed +mistimes +mistiming +mistiness +mistiness's +misting +mistletoe +mistletoe's +mistook +mistranslated +mistreat +mistreated +mistreating +mistreatment +mistreatment's +mistreats +mistress +mistress's +mistresses +mistrial +mistrial's +mistrials +mistrust +mistrust's +mistrusted +mistrustful +mistrusting +mistrusts +mists +misty +mistype +mistypes +mistyping +misunderstand +misunderstanding +misunderstanding's +misunderstandings +misunderstands +misunderstood +misuse +misuse's +misused +misuses +misusing +mite +mite's +miter +miter's +mitered +mitering +miters +mites +mitigate +mitigated +mitigates +mitigating +mitigation +mitigation's +mitosis +mitosis's +mitt +mitt's +mitten +mitten's +mittens +mitts +mix +mix's +mixed +mixer +mixer's +mixers +mixes +mixing +mixture +mixture's +mixtures +mizzen +mizzen's +mizzenmast +mizzenmast's +mizzenmasts +mizzens +mnemonic +mnemonic's +mnemonics +moan +moan's +moaned +moaning +moans +moat +moat's +moats +mob +mob's +mobbed +mobbing +mobile +mobile's +mobiles +mobility +mobility's +mobilization +mobilization's +mobilizations +mobilize +mobilized +mobilizes +mobilizing +mobs +mobster +mobster's +mobsters +moccasin +moccasin's +moccasins +mocha +mocha's +mock +mocked +mocker +mocker's +mockeries +mockers +mockery +mockery's +mocking +mockingbird +mockingbird's +mockingbirds +mockingly +mocks +mod +mod's +modal +modal's +modals +mode +mode's +model +model's +modeled +modeling +modeling's +modelings +modelled +modelling +models +modem +modem's +modems +moderate +moderate's +moderated +moderately +moderates +moderating +moderation +moderation's +moderator +moderator's +moderators +modern +modern's +modernism +modernism's +modernist +modernist's +modernistic +modernists +modernity +modernity's +modernization +modernization's +modernize +modernized +modernizes +modernizing +moderns +modes +modest +modestly +modesty +modesty's +modicum +modicum's +modicums +modifiable +modification +modification's +modifications +modified +modifier +modifier's +modifiers +modifies +modify +modifying +modish +modishly +mods +modular +modulate +modulated +modulates +modulating +modulation +modulation's +modulations +modulator +modulator's +modulators +module +module's +modules +modulus +mogul +mogul's +moguls +mohair +mohair's +moieties +moiety +moiety's +moire +moire's +moires +moist +moisten +moistened +moistening +moistens +moister +moistest +moistly +moistness +moistness's +moisture +moisture's +moisturize +moisturized +moisturizer +moisturizer's +moisturizers +moisturizes +moisturizing +molar +molar's +molars +molasses +molasses's +mold +mold's +molded +molder +molder's +moldered +moldering +molders +moldier +moldiest +moldiness +moldiness's +molding +molding's +moldings +molds +moldy +mole +mole's +molecular +molecule +molecule's +molecules +molehill +molehill's +molehills +moles +moleskin +moleskin's +molest +molestation +molestation's +molested +molester +molester's +molesters +molesting +molests +moll +moll's +mollification +mollification's +mollified +mollifies +mollify +mollifying +molls +mollusc +mollusc's +molluscs +mollusk +mollusk's +mollusks +mollycoddle +mollycoddle's +mollycoddled +mollycoddles +mollycoddling +molt +molt's +molted +molten +molting +molts +molybdenum +molybdenum's +mom +mom's +moment +moment's +momentarily +momentary +momentous +momentousness +momentousness's +moments +momentum +momentum's +momma +momma's +mommas +mommies +mommy +mommy's +moms +monarch +monarch's +monarchic +monarchical +monarchies +monarchism +monarchism's +monarchist +monarchist's +monarchists +monarchs +monarchy +monarchy's +monasteries +monastery +monastery's +monastic +monastic's +monasticism +monasticism's +monastics +monaural +monetarily +monetarism +monetary +money +money's +moneybag +moneybag's +moneybags +moneyed +moneymaker +moneymaker's +moneymakers +moneymaking +moneymaking's +mongeese +monger +monger's +mongered +mongering +mongers +mongolism +mongolism's +mongoose +mongoose's +mongooses +mongrel +mongrel's +mongrels +monicker +monicker's +monickers +monied +monies +moniker +moniker's +monikers +monitor +monitor's +monitored +monitoring +monitors +monk +monk's +monkey +monkey's +monkeyed +monkeying +monkeys +monkeyshine +monkeyshine's +monkeyshines +monks +mono +mono's +monochromatic +monochrome +monochrome's +monochromes +monocle +monocle's +monocles +monocotyledon +monocotyledon's +monocotyledons +monogamous +monogamy +monogamy's +monogram +monogram's +monogrammed +monogramming +monograms +monograph +monograph's +monographs +monolingual +monolingual's +monolinguals +monolith +monolith's +monolithic +monoliths +monolog +monolog's +monologs +monologue +monologue's +monologues +monomania +monomania's +monomaniac +monomaniac's +monomaniacs +mononucleosis +mononucleosis's +monophonic +monopolies +monopolist +monopolist's +monopolistic +monopolists +monopolization +monopolization's +monopolize +monopolized +monopolizes +monopolizing +monopoly +monopoly's +monorail +monorail's +monorails +monosyllabic +monosyllable +monosyllable's +monosyllables +monotheism +monotheism's +monotheist +monotheist's +monotheistic +monotheists +monotone +monotone's +monotones +monotonic +monotonically +monotonous +monotonously +monotony +monotony's +monoxide +monoxide's +monoxides +monsieur +monsieur's +monsignor +monsignor's +monsignori +monsignors +monsoon +monsoon's +monsoons +monster +monster's +monsters +monstrance +monstrance's +monstrances +monstrosities +monstrosity +monstrosity's +monstrous +monstrously +montage +montage's +montages +month +month's +monthlies +monthly +monthly's +months +monument +monument's +monumental +monumentally +monuments +moo +moo's +mooch +mooch's +mooched +moocher +moocher's +moochers +mooches +mooching +mood +mood's +moodier +moodiest +moodily +moodiness +moodiness's +moods +moody +mooed +mooing +moon +moon's +moonbeam +moonbeam's +moonbeams +mooned +mooning +moonlight +moonlight's +moonlighted +moonlighter +moonlighter's +moonlighters +moonlighting +moonlighting's +moonlights +moonlit +moons +moonscape +moonscape's +moonscapes +moonshine +moonshine's +moonshines +moonshot +moonshot's +moonshots +moonstone +moonstone's +moonstones +moonstruck +moor +moor's +moored +mooring +mooring's +moorings +moorland +moors +moos +moose +moose's +moot +mooted +mooting +moots +mop +mop's +mope +mope's +moped +moped's +mopeds +mopes +moping +mopped +moppet +moppet's +moppets +mopping +mops +moraine +moraine's +moraines +moral +moral's +morale +morale's +moralist +moralist's +moralistic +moralists +moralities +morality +morality's +moralize +moralized +moralizes +moralizing +morally +morals +morass +morass's +morasses +moratoria +moratorium +moratorium's +moratoriums +moray +moray's +morays +morbid +morbidity +morbidity's +morbidly +mordant +mordant's +mordants +more +more's +moreover +mores +mores's +morgue +morgue's +morgues +moribund +morn +morn's +morning +morning's +mornings +morns +morocco +morocco's +moron +moron's +moronic +morons +morose +morosely +moroseness +moroseness's +morpheme +morpheme's +morphemes +morphine +morphine's +morphological +morphology +morphology's +morrow +morrow's +morrows +morsel +morsel's +morsels +mortal +mortal's +mortality +mortality's +mortally +mortals +mortar +mortar's +mortarboard +mortarboard's +mortarboards +mortared +mortaring +mortars +mortgage +mortgage's +mortgaged +mortgagee +mortgagee's +mortgagees +mortgager +mortgager's +mortgagers +mortgages +mortgaging +mortgagor +mortgagor's +mortgagors +mortice +mortice's +morticed +mortices +mortician +mortician's +morticians +morticing +mortification +mortification's +mortified +mortifies +mortify +mortifying +mortise +mortise's +mortised +mortises +mortising +mortuaries +mortuary +mortuary's +mosaic +mosaic's +mosaics +mosey +moseyed +moseying +moseys +mosque +mosque's +mosques +mosquito +mosquito's +mosquitoes +mosquitos +moss +moss's +mosses +mossier +mossiest +mossy +most +most's +mostly +mote +mote's +motel +motel's +motels +motes +moth +moth's +mothball +mothball's +mothballed +mothballing +mothballs +mother +mother's +motherboard +motherboard's +motherboards +mothered +motherfucker +motherfucker's +motherfuckers +motherfucking +motherhood +motherhood's +mothering +motherland +motherland's +motherlands +motherless +motherliness +motherliness's +motherly +mothers +moths +motif +motif's +motifs +motile +motiles +motion +motion's +motioned +motioning +motionless +motions +motivate +motivated +motivates +motivating +motivation +motivation's +motivational +motivations +motivator +motivator's +motivators +motive +motive's +motives +motley +motley's +motleys +motlier +motliest +motocross +motocross's +motocrosses +motor +motor's +motorbike +motorbike's +motorbiked +motorbikes +motorbiking +motorboat +motorboat's +motorboats +motorcade +motorcade's +motorcades +motorcar +motorcar's +motorcars +motorcycle +motorcycle's +motorcycled +motorcycles +motorcycling +motorcyclist +motorcyclist's +motorcyclists +motored +motoring +motorist +motorist's +motorists +motorize +motorized +motorizes +motorizing +motorman +motorman's +motormen +motormouth +motormouth's +motormouths +motors +motorway +motorway's +motorways +mottle +mottled +mottles +mottling +motto +motto's +mottoes +mottos +mound +mound's +mounded +mounding +mounds +mount +mount's +mountain +mountain's +mountaineer +mountaineer's +mountaineered +mountaineering +mountaineering's +mountaineers +mountainous +mountains +mountainside +mountainside's +mountainsides +mountaintop +mountaintop's +mountaintops +mountebank +mountebank's +mountebanks +mounted +mounting +mounting's +mountings +mounts +mourn +mourned +mourner +mourner's +mourners +mournful +mournfully +mournfulness +mournfulness's +mourning +mourning's +mourns +mouse +mouse's +moused +mouser +mouser's +mousers +mouses +mousetrap +mousetrap's +mousetrapped +mousetrapping +mousetraps +mousey +mousier +mousiest +mousiness +mousiness's +mousing +mousse +mousse's +moussed +mousses +moussing +moustache +moustache's +moustaches +mousy +mouth +mouth's +mouthed +mouthful +mouthful's +mouthfuls +mouthing +mouthpiece +mouthpiece's +mouthpieces +mouths +mouthwash +mouthwash's +mouthwashes +mouthwatering +movable +movable's +movables +move +move's +moveable +moveable's +moveables +moved +movement +movement's +movements +mover +mover's +movers +moves +movie +movie's +movies +moving +movingly +mow +mow's +mowed +mower +mower's +mowers +mowing +mown +mows +mozzarella +mozzarella's +ms +mu +much +much's +mucilage +mucilage's +muck +muck's +mucked +muckier +muckiest +mucking +muckrake +muckraked +muckraker +muckraker's +muckrakers +muckrakes +muckraking +mucks +mucky +mucous +mucus +mucus's +mud +mud's +muddied +muddier +muddies +muddiest +muddiness +muddiness's +muddle +muddle's +muddled +muddles +muddling +muddy +muddying +mudguard +mudguard's +mudguards +mudslide +mudslide's +mudslides +mudslinger +mudslinger's +mudslingers +mudslinging +mudslinging's +muesli +muezzin +muezzin's +muezzins +muff +muff's +muffed +muffin +muffin's +muffing +muffins +muffle +muffled +muffler +muffler's +mufflers +muffles +muffling +muffs +mufti +mufti's +muftis +mug +mug's +mugged +mugger +mugger's +muggers +muggier +muggiest +mugginess +mugginess's +mugging +mugging's +muggings +muggy +mugs +mukluk +mukluk's +mukluks +mulatto +mulatto's +mulattoes +mulattos +mulberries +mulberry +mulberry's +mulch +mulch's +mulched +mulches +mulching +mule +mule's +mules +muleteer +muleteer's +muleteers +mulish +mulishly +mulishness +mulishness's +mull +mullah +mullah's +mullahs +mulled +mullet +mullet's +mullets +mulligatawny +mulligatawny's +mulling +mullion +mullion's +mullions +mulls +multicolored +multicultural +multiculturalism +multiculturalism's +multidimensional +multifaceted +multifarious +multifariousness +multifariousness's +multilateral +multilingual +multimedia +multimedia's +multimillionaire +multimillionaire's +multimillionaires +multinational +multinational's +multinationals +multiple +multiple's +multiples +multiplex +multiplex's +multiplexed +multiplexer +multiplexer's +multiplexers +multiplexes +multiplexing +multiplexor +multiplexor's +multiplexors +multiplicand +multiplicand's +multiplicands +multiplication +multiplication's +multiplications +multiplicative +multiplicities +multiplicity +multiplicity's +multiplied +multiplier +multiplier's +multipliers +multiplies +multiply +multiplying +multiprocessing +multipurpose +multiracial +multitasking +multitude +multitude's +multitudes +multitudinous +multivariate +multivitamin +multivitamin's +multivitamins +mum +mum's +mumble +mumble's +mumbled +mumbler +mumbler's +mumblers +mumbles +mumbling +mummer +mummer's +mummers +mummery +mummery's +mummies +mummification +mummification's +mummified +mummifies +mummify +mummifying +mummy +mummy's +mumps +mumps's +mums +munch +munched +munches +munchies +munchies's +munching +mundane +mundanely +municipal +municipal's +municipalities +municipality +municipality's +municipally +municipals +munificence +munificence's +munificent +munition +munition's +munitions +mural +mural's +muralist +muralist's +muralists +murals +murder +murder's +murdered +murderer +murderer's +murderers +murderess +murderess's +murderesses +murdering +murderous +murderously +murders +murk +murk's +murkier +murkiest +murkily +murkiness +murkiness's +murks +murky +murmur +murmur's +murmured +murmuring +murmurs +muscat +muscatel +muscatel's +muscatels +muscle +muscle's +muscled +muscles +muscling +muscular +muscularity +muscularity's +musculature +musculature's +muse +muse's +mused +muses +museum +museum's +museums +mush +mush's +mushed +mushes +mushier +mushiest +mushiness +mushiness's +mushing +mushroom +mushroom's +mushroomed +mushrooming +mushrooms +mushy +music +music's +musical +musical's +musicale +musicale's +musicales +musically +musicals +musician +musician's +musicians +musicianship +musicianship's +musicologist +musicologist's +musicologists +musicology +musicology's +musing +musing's +musings +musk +musk's +muskellunge +muskellunge's +muskellunges +musket +musket's +musketeer +musketeer's +musketeers +musketry +musketry's +muskets +muskier +muskiest +muskiness +muskiness's +muskmelon +muskmelon's +muskmelons +muskrat +muskrat's +muskrats +musky +muslin +muslin's +muss +muss's +mussed +mussel +mussel's +mussels +musses +mussier +mussiest +mussing +mussy +must +must's +mustache +mustache's +mustaches +mustang +mustang's +mustangs +mustard +mustard's +muster +muster's +mustered +mustering +musters +mustier +mustiest +mustiness +mustiness's +mustn't +musts +musty +mutability +mutability's +mutable +mutant +mutant's +mutants +mutate +mutated +mutates +mutating +mutation +mutation's +mutations +mute +mute's +muted +mutely +muteness +muteness's +muter +mutes +mutest +mutilate +mutilated +mutilates +mutilating +mutilation +mutilation's +mutilations +mutineer +mutineer's +mutineers +muting +mutinied +mutinies +mutinous +mutinously +mutiny +mutiny's +mutinying +mutt +mutt's +mutter +mutter's +muttered +muttering +mutters +mutton +mutton's +mutts +mutual +mutuality +mutuality's +mutually +muumuu +muumuu's +muumuus +muzzle +muzzle's +muzzled +muzzles +muzzling +my +myna +myna's +mynah +mynah's +mynahes +mynahs +mynas +myopia +myopia's +myopic +myriad +myriad's +myriads +myrrh +myrrh's +myrtle +myrtle's +myrtles +mys +myself +mysteries +mysterious +mysteriously +mysteriousness +mysteriousness's +mystery +mystery's +mystic +mystic's +mystical +mystically +mysticism +mysticism's +mystics +mystification +mystification's +mystified +mystifies +mystify +mystifying +mystique +mystique's +myth +myth's +mythic +mythical +mythological +mythologies +mythologist +mythologist's +mythologists +mythology +mythology's +myths +métier +métier's +métiers +mêlée +mêlée's +mêlées +n +nab +nabbed +nabbing +nabob +nabob's +nabobs +nabs +nacho +nacho's +nachos +nacre +nacre's +nadir +nadir's +nadirs +nag +nag's +nagged +nagging +nags +naiad +naiad's +naiades +naiads +nail +nail's +nailbrush +nailbrush's +nailbrushes +nailed +nailing +nails +naive +naively +naiver +naivest +naivety +naiveté +naiveté's +naked +nakedly +nakedness +nakedness's +name +name's +named +nameless +namely +names +namesake +namesake's +namesakes +naming +nannies +nanny +nanny's +nanosecond +nanosecond's +nanoseconds +nap +nap's +napalm +napalm's +napalmed +napalming +napalms +nape +nape's +napes +naphtha +naphtha's +naphthalene +naphthalene's +napkin +napkin's +napkins +napped +nappier +nappies +nappiest +napping +nappy +nappy's +naps +narc +narc's +narcissi +narcissism +narcissism's +narcissist +narcissist's +narcissistic +narcissists +narcissus +narcissus's +narcissuses +narcosis +narcosis's +narcotic +narcotic's +narcotics +narcs +nark +nark's +narked +narking +narks +narrate +narrated +narrates +narrating +narration +narration's +narrations +narrative +narrative's +narratives +narrator +narrator's +narrators +narrow +narrow's +narrowed +narrower +narrowest +narrowing +narrowly +narrowness +narrowness's +narrows +narwhal +narwhal's +narwhals +nary +nasal +nasal's +nasalize +nasalized +nasalizes +nasalizing +nasally +nasals +nascent +nastier +nastiest +nastily +nastiness +nastiness's +nasturtium +nasturtium's +nasturtiums +nasty +natal +nation +nation's +national +national's +nationalism +nationalism's +nationalist +nationalist's +nationalistic +nationalists +nationalities +nationality +nationality's +nationalization +nationalization's +nationalizations +nationalize +nationalized +nationalizes +nationalizing +nationally +nationals +nations +nationwide +native +native's +natives +nativities +nativity +nativity's +nattier +nattiest +nattily +natty +natural +natural's +naturalism +naturalism's +naturalist +naturalist's +naturalistic +naturalists +naturalization +naturalization's +naturalize +naturalized +naturalizes +naturalizing +naturally +naturalness +naturalness's +naturals +nature +nature's +natures +naught +naught's +naughtier +naughtiest +naughtily +naughtiness +naughtiness's +naughts +naughty +nausea +nausea's +nauseate +nauseated +nauseates +nauseating +nauseatingly +nauseous +nautical +nautically +nautili +nautilus +nautilus's +nautiluses +naval +nave +nave's +navel +navel's +navels +naves +navies +navigability +navigability's +navigable +navigate +navigated +navigates +navigating +navigation +navigation's +navigational +navigator +navigator's +navigators +navy +navy's +nay +nay's +nays +naysayer +naysayer's +naysayers +ne'er +near +nearby +neared +nearer +nearest +nearing +nearly +nearness +nearness's +nears +nearsighted +nearsightedness +nearsightedness's +neat +neater +neatest +neath +neatly +neatness +neatness's +nebula +nebula's +nebulae +nebular +nebulas +nebulous +necessaries +necessarily +necessary +necessary's +necessitate +necessitated +necessitates +necessitating +necessities +necessity +necessity's +neck +neck's +necked +neckerchief +neckerchief's +neckerchiefs +neckerchieves +necking +necklace +necklace's +necklaces +neckline +neckline's +necklines +necks +necktie +necktie's +neckties +necromancer +necromancer's +necromancers +necromancy +necromancy's +necrophilia +necrosis +necrosis's +nectar +nectar's +nectarine +nectarine's +nectarines +need +need's +needed +needful +needier +neediest +neediness +neediness's +needing +needle +needle's +needled +needlepoint +needlepoint's +needles +needless +needlessly +needlework +needlework's +needling +needn't +needs +needy +nefarious +nefariously +nefariousness +nefariousness's +negate +negated +negates +negating +negation +negation's +negations +negative +negative's +negatived +negatively +negatives +negativing +negativity +negativity's +neglect +neglect's +neglected +neglectful +neglectfully +neglecting +neglects +neglig +neglig's +negligee +negligee's +negligees +negligence +negligence's +negligent +negligently +negligible +negligibly +negligs +negotiable +negotiate +negotiated +negotiates +negotiating +negotiation +negotiation's +negotiations +negotiator +negotiator's +negotiators +neigh +neigh's +neighbor +neighbor's +neighbored +neighborhood +neighborhood's +neighborhoods +neighboring +neighborliness +neighborliness's +neighborly +neighbors +neighed +neighing +neighs +neither +nematode +nematode's +nematodes +nemeses +nemesis +nemesis's +neoclassic +neoclassical +neoclassicism +neoclassicism's +neocolonialism +neocolonialism's +neodymium +neodymium's +neologism +neologism's +neologisms +neon +neon's +neonatal +neonate +neonate's +neonates +neophyte +neophyte's +neophytes +neoprene +neoprene's +nephew +nephew's +nephews +nephritis +nephritis's +nepotism +nepotism's +neptunium +neptunium's +nerd +nerd's +nerdier +nerdiest +nerds +nerdy +nerve +nerve's +nerved +nerveless +nervelessly +nerves +nervier +nerviest +nerving +nervous +nervously +nervousness +nervousness's +nervy +nest +nest's +nested +nesting +nestle +nestled +nestles +nestling +nestling's +nestlings +nests +net +net's +nether +nethermost +nets +netted +netting +netting's +nettle +nettle's +nettled +nettles +nettlesome +nettling +network +network's +networked +networking +networking's +networks +neural +neuralgia +neuralgia's +neuralgic +neuritis +neuritis's +neurological +neurologist +neurologist's +neurologists +neurology +neurology's +neuron +neuron's +neurons +neuroses +neurosis +neurosis's +neurosurgery +neurosurgery's +neurotic +neurotic's +neurotically +neurotics +neurotransmitter +neurotransmitter's +neurotransmitters +neuter +neuter's +neutered +neutering +neuters +neutral +neutral's +neutrality +neutrality's +neutralization +neutralization's +neutralize +neutralized +neutralizer +neutralizer's +neutralizers +neutralizes +neutralizing +neutrally +neutrals +neutrino +neutrino's +neutrinos +neutron +neutron's +neutrons +never +nevermore +nevertheless +new +new's +newbie +newbie's +newbies +newborn +newborn's +newborns +newcomer +newcomer's +newcomers +newel +newel's +newels +newer +newest +newfangled +newly +newlywed +newlywed's +newlyweds +newness +newness's +news +news's +newsagents +newsboy +newsboy's +newsboys +newscast +newscast's +newscaster +newscaster's +newscasters +newscasts +newsflash +newsier +newsiest +newsletter +newsletter's +newsletters +newsman +newsman's +newsmen +newspaper +newspaper's +newspaperman +newspaperman's +newspapermen +newspapers +newspaperwoman +newspaperwoman's +newspaperwomen +newsprint +newsprint's +newsreel +newsreel's +newsreels +newsstand +newsstand's +newsstands +newsworthier +newsworthiest +newsworthy +newsy +newt +newt's +newton +newton's +newtons +newts +next +next's +nexus +nexus's +nexuses +niacin +niacin's +nib +nib's +nibble +nibble's +nibbled +nibbler +nibbler's +nibblers +nibbles +nibbling +nibs +nice +nicely +niceness +niceness's +nicer +nicest +niceties +nicety +nicety's +niche +niche's +niches +nick +nick's +nicked +nickel +nickel's +nickelodeon +nickelodeon's +nickelodeons +nickels +nicking +nicknack +nicknack's +nicknacks +nickname +nickname's +nicknamed +nicknames +nicknaming +nicks +nicotine +nicotine's +niece +niece's +nieces +niftier +niftiest +nifty +niggard +niggard's +niggardliness +niggardliness's +niggardly +niggards +nigger +nigger's +niggers +niggle +niggle's +niggled +niggles +niggling +nigh +nigher +nighest +night +night's +nightcap +nightcap's +nightcaps +nightclothes +nightclothes's +nightclub +nightclub's +nightclubbed +nightclubbing +nightclubs +nightfall +nightfall's +nightgown +nightgown's +nightgowns +nighthawk +nighthawk's +nighthawks +nightie +nightie's +nighties +nightingale +nightingale's +nightingales +nightlife +nightlife's +nightly +nightmare +nightmare's +nightmares +nightmarish +nights +nightshade +nightshade's +nightshades +nightshirt +nightshirt's +nightshirts +nightstick +nightstick's +nightsticks +nighttime +nighttime's +nighty +nighty's +nihilism +nihilism's +nihilist +nihilist's +nihilistic +nihilists +nil +nil's +nimbi +nimble +nimbleness +nimbleness's +nimbler +nimblest +nimbly +nimbus +nimbus's +nimbuses +nincompoop +nincompoop's +nincompoops +nine +nine's +ninepin +ninepin's +ninepins +ninepins's +nines +nineteen +nineteen's +nineteens +nineteenth +nineteenth's +nineteenths +nineties +ninetieth +ninetieth's +ninetieths +ninety +ninety's +ninja +ninja's +ninjas +ninnies +ninny +ninny's +ninth +ninth's +ninths +nip +nip's +nipped +nipper +nipper's +nippers +nippier +nippiest +nipping +nipple +nipple's +nipples +nippy +nips +nirvana +nirvana's +nit +nit's +nite +nite's +niter +niter's +nites +nitpick +nitpicked +nitpicker +nitpicker's +nitpickers +nitpicking +nitpicks +nitrate +nitrate's +nitrated +nitrates +nitrating +nitrogen +nitrogen's +nitrogenous +nitroglycerin +nitroglycerin's +nitroglycerine +nitroglycerine's +nits +nitwit +nitwit's +nitwits +nix +nix's +nixed +nixes +nixing +no +no's +nobility +nobility's +noble +noble's +nobleman +nobleman's +noblemen +nobleness +nobleness's +nobler +nobles +noblest +noblewoman +noblewoman's +noblewomen +nobly +nobodies +nobody +nobody's +nocturnal +nocturnally +nocturne +nocturne's +nocturnes +nod +nod's +nodal +nodded +nodding +noddy +node +node's +nodes +nods +nodular +nodule +nodule's +nodules +noel +noel's +noels +noes +noggin +noggin's +noggins +noise +noise's +noised +noiseless +noiselessly +noiselessness +noiselessness's +noisemaker +noisemaker's +noisemakers +noises +noisier +noisiest +noisily +noisiness +noisiness's +noising +noisome +noisy +nomad +nomad's +nomadic +nomads +nomenclature +nomenclature's +nomenclatures +nominal +nominally +nominate +nominated +nominates +nominating +nomination +nomination's +nominations +nominative +nominative's +nominatives +nominee +nominee's +nominees +non +nonabrasive +nonabsorbent +nonabsorbent's +nonabsorbents +nonagenarian +nonagenarian's +nonagenarians +nonalcoholic +nonaligned +nonbeliever +nonbeliever's +nonbelievers +nonbreakable +nonce +nonce's +nonchalance +nonchalance's +nonchalant +nonchalantly +noncom +noncom's +noncombatant +noncombatant's +noncombatants +noncommercial +noncommercial's +noncommercials +noncommittal +noncommittally +noncompetitive +noncompliance +noncompliance's +noncoms +nonconductor +nonconductor's +nonconductors +nonconformist +nonconformist's +nonconformists +nonconformity +nonconformity's +noncontagious +noncooperation +noncooperation's +nondairy +nondeductible +nondeductible's +nondenominational +nondescript +nondrinker +nondrinker's +nondrinkers +none +nonempty +nonentities +nonentity +nonentity's +nonessential +nonesuch +nonesuch's +nonesuches +nonetheless +nonevent +nonevent's +nonevents +nonexempt +nonexempt's +nonexistence +nonexistence's +nonexistent +nonfat +nonfatal +nonfiction +nonfiction's +nonflammable +nongovernmental +nonhazardous +nonhuman +nonindustrial +noninterference +noninterference's +nonintervention +nonintervention's +nonjudgmental +nonliving +nonliving's +nonmalignant +nonmember +nonmember's +nonmembers +nonnegotiable +nonobjective +nonpareil +nonpareil's +nonpareils +nonpartisan +nonpartisan's +nonpartisans +nonpayment +nonpayment's +nonpayments +nonphysical +nonplus +nonplused +nonpluses +nonplusing +nonplussed +nonplusses +nonplussing +nonpoisonous +nonpolitical +nonpolluting +nonprescription +nonproductive +nonprofessional +nonprofessional's +nonprofessionals +nonprofit +nonprofit's +nonprofits +nonproliferation +nonproliferation's +nonrefillable +nonrefundable +nonrenewable +nonrepresentational +nonresident +nonresident's +nonresidents +nonrestrictive +nonreturnable +nonreturnable's +nonreturnables +nonrigid +nonscheduled +nonseasonal +nonsectarian +nonsense +nonsense's +nonsensical +nonsensically +nonsexist +nonskid +nonsmoker +nonsmoker's +nonsmokers +nonsmoking +nonstandard +nonstick +nonstop +nonsupport +nonsupport's +nontaxable +nontechnical +nontoxic +nontransferable +nontrivial +nonunion +nonuser +nonuser's +nonusers +nonverbal +nonviolence +nonviolence's +nonviolent +nonvoting +nonwhite +nonwhite's +nonwhites +nonzero +noodle +noodle's +noodled +noodles +noodling +nook +nook's +nooks +noon +noon's +noonday +noonday's +noontime +noontime's +noose +noose's +nooses +nope +nor +norm +norm's +normal +normal's +normalcy +normalcy's +normality +normality's +normalization +normalization's +normalize +normalized +normalizes +normalizing +normally +normative +norms +north +north's +northbound +northeast +northeast's +northeaster +northeaster's +northeasterly +northeastern +northeasters +northeastward +northerlies +northerly +northerly's +northern +northerner +northerner's +northerners +northernmost +northward +northwards +northwest +northwest's +northwesterly +northwestern +northwestward +nose +nose's +nosebleed +nosebleed's +nosebleeds +nosed +nosedive +nosedive's +nosedived +nosedives +nosediving +nosedove +nosegay +nosegay's +nosegays +noses +nosey +nosh +nosh's +noshed +noshes +noshing +nosier +nosiest +nosiness +nosiness's +nosing +nostalgia +nostalgia's +nostalgic +nostalgically +nostril +nostril's +nostrils +nostrum +nostrum's +nostrums +nosy +not +notable +notable's +notables +notably +notaries +notarize +notarized +notarizes +notarizing +notary +notary's +notation +notation's +notations +notch +notch's +notched +notches +notching +note +note's +notebook +notebook's +notebooks +noted +notepad +notepaper +notes +noteworthy +nothing +nothing's +nothingness +nothingness's +nothings +notice +notice's +noticeable +noticeably +noticeboard +noticeboards +noticed +notices +noticing +notification +notification's +notifications +notified +notifies +notify +notifying +noting +notion +notion's +notional +notionally +notions +notoriety +notoriety's +notorious +notoriously +notwithstanding +nougat +nougat's +nougats +nought +nought's +noughts +noun +noun's +nouns +nourish +nourished +nourishes +nourishing +nourishment +nourishment's +nous +nova +nova's +novae +novas +novel +novel's +novelette +novelette's +novelettes +novelist +novelist's +novelists +novella +novella's +novellas +novelle +novels +novelties +novelty +novelty's +novice +novice's +novices +novitiate +novitiate's +novitiates +now +now's +nowadays +nowadays's +noway +nowhere +nowhere's +nowise +noxious +nozzle +nozzle's +nozzles +nth +nu +nuance +nuance's +nuanced +nuances +nub +nub's +nubile +nubs +nuclear +nuclei +nucleic +nucleus +nucleus's +nucleuses +nude +nude's +nuder +nudes +nudest +nudge +nudge's +nudged +nudges +nudging +nudism +nudism's +nudist +nudist's +nudists +nudity +nudity's +nugget +nugget's +nuggets +nuisance +nuisance's +nuisances +nuke +nuke's +nuked +nukes +nuking +null +nullification +nullification's +nullified +nullifies +nullify +nullifying +nullity +nullity's +nulls +numb +numbed +number +number's +numbered +numbering +numberless +numbers +numbest +numbing +numbly +numbness +numbness's +numbs +numbskull +numbskull's +numbskulls +numeracy +numeral +numeral's +numerals +numerate +numerated +numerates +numerating +numeration +numeration's +numerations +numerator +numerator's +numerators +numeric +numerical +numerically +numerology +numerology's +numerous +numismatic +numismatics +numismatics's +numismatist +numismatist's +numismatists +numskull +numskull's +numskulls +nun +nun's +nuncio +nuncio's +nuncios +nunneries +nunnery +nunnery's +nuns +nuptial +nuptial's +nuptials +nurse +nurse's +nursed +nursemaid +nursemaid's +nursemaids +nurseries +nursery +nursery's +nurseryman +nurseryman's +nurserymen +nurses +nursing +nursing's +nurture +nurture's +nurtured +nurtures +nurturing +nut +nut's +nutcracker +nutcracker's +nutcrackers +nuthatch +nuthatch's +nuthatches +nutmeat +nutmeat's +nutmeats +nutmeg +nutmeg's +nutmegs +nutria +nutria's +nutrias +nutrient +nutrient's +nutrients +nutriment +nutriment's +nutriments +nutrition +nutrition's +nutritional +nutritionally +nutritionist +nutritionist's +nutritionists +nutritious +nutritive +nuts +nutshell +nutshell's +nutshells +nutted +nuttier +nuttiest +nuttiness +nuttiness's +nutting +nutty +nuzzle +nuzzle's +nuzzled +nuzzles +nuzzling +nylon +nylon's +nylons +nylons's +nymph +nymph's +nymphomania +nymphomania's +nymphomaniac +nymphomaniac's +nymphomaniacs +nymphs +née +o +o'clock +o'er +oaf +oaf's +oafish +oafs +oak +oak's +oaken +oaks +oakum +oakum's +oar +oar's +oared +oaring +oarlock +oarlock's +oarlocks +oars +oarsman +oarsman's +oarsmen +oases +oasis +oasis's +oat +oat's +oaten +oath +oath's +oaths +oatmeal +oatmeal's +oats +oats's +obduracy +obduracy's +obdurate +obdurately +obedience +obedience's +obedient +obediently +obeisance +obeisance's +obeisances +obeisant +obelisk +obelisk's +obelisks +obese +obesity +obesity's +obey +obeyed +obeying +obeys +obfuscate +obfuscated +obfuscates +obfuscating +obfuscation +obfuscation's +obit +obit's +obits +obituaries +obituary +obituary's +object +object's +objected +objecting +objection +objection's +objectionable +objectionably +objections +objective +objective's +objectively +objectiveness +objectiveness's +objectives +objectivity +objectivity's +objector +objector's +objectors +objects +oblate +oblation +oblation's +oblations +obligate +obligated +obligates +obligating +obligation +obligation's +obligations +obligatory +oblige +obliged +obliges +obliging +obligingly +oblique +oblique's +obliquely +obliqueness +obliqueness's +obliques +obliterate +obliterated +obliterates +obliterating +obliteration +obliteration's +oblivion +oblivion's +oblivious +obliviously +obliviousness +obliviousness's +oblong +oblong's +oblongs +obloquy +obloquy's +obnoxious +obnoxiously +oboe +oboe's +oboes +oboist +oboist's +oboists +obscene +obscenely +obscener +obscenest +obscenities +obscenity +obscenity's +obscure +obscured +obscurely +obscurer +obscures +obscurest +obscuring +obscurities +obscurity +obscurity's +obsequies +obsequious +obsequiously +obsequiousness +obsequiousness's +obsequy +obsequy's +observable +observably +observance +observance's +observances +observant +observantly +observation +observation's +observational +observations +observatories +observatory +observatory's +observe +observed +observer +observer's +observers +observes +observing +obsess +obsessed +obsesses +obsessing +obsession +obsession's +obsessions +obsessive +obsessive's +obsessively +obsessives +obsidian +obsidian's +obsolescence +obsolescence's +obsolescent +obsolete +obsoleted +obsoletes +obsoleting +obstacle +obstacle's +obstacles +obstetric +obstetrical +obstetrician +obstetrician's +obstetricians +obstetrics +obstetrics's +obstinacy +obstinacy's +obstinate +obstinately +obstreperous +obstruct +obstructed +obstructing +obstruction +obstruction's +obstructionist +obstructionist's +obstructionists +obstructions +obstructive +obstructively +obstructiveness +obstructiveness's +obstructs +obtain +obtainable +obtained +obtaining +obtains +obtrude +obtruded +obtrudes +obtruding +obtrusive +obtrusively +obtrusiveness +obtrusiveness's +obtuse +obtusely +obtuseness +obtuseness's +obtuser +obtusest +obverse +obverse's +obverses +obviate +obviated +obviates +obviating +obvious +obviously +obviousness +obviousness's +ocarina +ocarina's +ocarinas +occasion +occasion's +occasional +occasionally +occasioned +occasioning +occasions +occidental +occidental's +occidentals +occlude +occluded +occludes +occluding +occlusion +occlusion's +occlusions +occult +occult's +occupancy +occupancy's +occupant +occupant's +occupants +occupation +occupation's +occupational +occupations +occupied +occupies +occupy +occupying +occur +occurred +occurrence +occurrence's +occurrences +occurring +occurs +ocean +ocean's +oceangoing +oceanic +oceanic's +oceanographer +oceanographer's +oceanographers +oceanographic +oceanography +oceanography's +oceans +ocelot +ocelot's +ocelots +ocher +ocher's +ochre +ochre's +octagon +octagon's +octagonal +octagons +octal +octane +octane's +octave +octave's +octaves +octet +octet's +octets +octette +octette's +octettes +octogenarian +octogenarian's +octogenarians +octopi +octopus +octopus's +octopuses +ocular +ocular's +oculars +oculist +oculist's +oculists +odd +oddball +oddball's +oddballs +odder +oddest +oddities +oddity +oddity's +oddly +oddness +oddness's +odds +odds's +ode +ode's +odes +odious +odiously +odium +odium's +odometer +odometer's +odometers +odor +odor's +odoriferous +odorless +odorous +odors +odyssey +odyssey's +odysseys +of +off +offal +offal's +offbeat +offbeat's +offbeats +offed +offend +offended +offender +offender's +offenders +offending +offends +offense +offense's +offenses +offensive +offensive's +offensively +offensiveness +offensiveness's +offensives +offer +offer's +offered +offering +offering's +offerings +offers +offertories +offertory +offertory's +offhand +offhandedly +office +office's +officeholder +officeholder's +officeholders +officer +officer's +officers +offices +official +official's +officialdom +officialdom's +officially +officials +officiate +officiated +officiates +officiating +officious +officiously +officiousness +officiousness's +offing +offing's +offings +offload +offs +offset +offset's +offsets +offsetting +offshoot +offshoot's +offshoots +offshore +offside +offspring +offspring's +offsprings +offstage +offstages +oft +often +oftener +oftenest +oftentimes +ogle +ogle's +ogled +ogles +ogling +ogre +ogre's +ogres +oh +oh's +ohm +ohm's +ohms +oho +ohs +oil +oil's +oilcloth +oilcloth's +oilcloths +oiled +oilfield +oilfields +oilier +oiliest +oiliness +oiliness's +oiling +oils +oilskin +oilskin's +oily +oink +oink's +oinked +oinking +oinks +ointment +ointment's +ointments +okay +okay's +okayed +okaying +okays +okra +okra's +okras +old +old's +olden +older +oldest +oldie +oldie's +oldies +oleaginous +oleander +oleander's +oleanders +oleo +oleo's +oleomargarine +oleomargarine's +olfactories +olfactory +olfactory's +oligarch +oligarch's +oligarchic +oligarchies +oligarchs +oligarchy +oligarchy's +olive +olive's +olives +ombudsman +ombudsman's +ombudsmen +omega +omega's +omegas +omelet +omelet's +omelets +omelette +omelette's +omelettes +omen +omen's +omens +ominous +ominously +omission +omission's +omissions +omit +omits +omitted +omitting +omnibus +omnibus's +omnibuses +omnibusses +omnipotence +omnipotence's +omnipotent +omnipresence +omnipresence's +omnipresent +omniscience +omniscience's +omniscient +omnivore +omnivore's +omnivores +omnivorous +on +once +once's +oncology +oncology's +oncoming +one +one's +oneness +oneness's +onerous +ones +oneself +onetime +ongoing +onion +onion's +onions +onionskin +onionskin's +online +onlooker +onlooker's +onlookers +only +onomatopoeia +onomatopoeia's +onomatopoeic +onrush +onrush's +onrushes +onrushing +onset +onset's +onsets +onshore +onslaught +onslaught's +onslaughts +onto +onus +onus's +onuses +onward +onwards +onyx +onyx's +onyxes +oodles +oodles's +oops +ooze +ooze's +oozed +oozes +oozing +opacity +opacity's +opal +opal's +opalescence +opalescence's +opalescent +opals +opaque +opaqued +opaquely +opaqueness +opaqueness's +opaquer +opaques +opaquest +opaquing +open +open's +opened +opener +opener's +openers +openest +openhanded +opening +opening's +openings +openly +openness +openness's +opens +openwork +openwork's +opera +opera's +operable +operand +operands +operas +operate +operated +operates +operatic +operating +operation +operation's +operational +operationally +operations +operative +operative's +operatives +operator +operator's +operators +operetta +operetta's +operettas +ophthalmic +ophthalmologist +ophthalmologist's +ophthalmologists +ophthalmology +ophthalmology's +opiate +opiate's +opiates +opine +opined +opines +opining +opinion +opinion's +opinionated +opinions +opium +opium's +opossum +opossum's +opossums +opponent +opponent's +opponents +opportune +opportunism +opportunism's +opportunist +opportunist's +opportunistic +opportunists +opportunities +opportunity +opportunity's +oppose +opposed +opposes +opposing +opposite +opposite's +opposites +opposition +opposition's +oppress +oppressed +oppresses +oppressing +oppression +oppression's +oppressive +oppressively +oppressor +oppressor's +oppressors +opprobrious +opprobrium +opprobrium's +opt +opted +optic +optic's +optical +optically +optician +optician's +opticians +optics +optics's +optima +optimal +optimism +optimism's +optimist +optimist's +optimistic +optimistically +optimists +optimization +optimize +optimized +optimizer +optimizes +optimizing +optimum +optimum's +optimums +opting +option +option's +optional +optionally +optioned +optioning +options +optometrist +optometrist's +optometrists +optometry +optometry's +opts +opulence +opulence's +opulent +opus +opus's +opuses +or +oracle +oracle's +oracles +oracular +oral +oral's +orally +orals +orange +orange's +orangeade +orangeade's +orangeades +oranges +orangutan +orangutan's +orangutang +orangutang's +orangutangs +orangutans +orate +orated +orates +orating +oration +oration's +orations +orator +orator's +oratorical +oratories +oratorio +oratorio's +oratorios +orators +oratory +oratory's +orb +orb's +orbit +orbit's +orbital +orbital's +orbitals +orbited +orbiting +orbits +orbs +orchard +orchard's +orchards +orchestra +orchestra's +orchestral +orchestras +orchestrate +orchestrated +orchestrates +orchestrating +orchestration +orchestration's +orchestrations +orchid +orchid's +orchids +ordain +ordained +ordaining +ordains +ordeal +ordeal's +ordeals +order +order's +ordered +ordering +orderings +orderlies +orderliness +orderliness's +orderly +orderly's +orders +ordinal +ordinal's +ordinals +ordinance +ordinance's +ordinances +ordinaries +ordinarily +ordinariness +ordinariness's +ordinary +ordinary's +ordination +ordination's +ordinations +ordnance +ordnance's +ordure +ordure's +ore +ore's +oregano +oregano's +ores +organ +organ's +organdie +organdie's +organdy +organdy's +organelle +organelle's +organelles +organic +organic's +organically +organics +organism +organism's +organisms +organist +organist's +organists +organization +organization's +organizational +organizations +organize +organized +organizer +organizer's +organizers +organizes +organizing +organs +orgasm +orgasm's +orgasmic +orgasms +orgiastic +orgies +orgy +orgy's +orient +orient's +oriental +oriental's +orientals +orientate +orientated +orientates +orientating +orientation +orientation's +orientations +oriented +orienting +orients +orifice +orifice's +orifices +origami +origami's +origin +origin's +original +original's +originality +originality's +originally +originals +originate +originated +originates +originating +origination +origination's +originator +originator's +originators +origins +oriole +oriole's +orioles +ormolu +ormolu's +ornament +ornament's +ornamental +ornamentation +ornamentation's +ornamented +ornamenting +ornaments +ornate +ornately +ornateness +ornateness's +ornerier +orneriest +ornery +ornithologist +ornithologist's +ornithologists +ornithology +ornithology's +orotund +orphan +orphan's +orphanage +orphanage's +orphanages +orphaned +orphaning +orphans +orthodontia +orthodontia's +orthodontic +orthodontics +orthodontics's +orthodontist +orthodontist's +orthodontists +orthodox +orthodoxies +orthodoxy +orthodoxy's +orthogonal +orthogonality +orthographic +orthographies +orthography +orthography's +orthopaedic +orthopaedics +orthopaedics's +orthopaedist +orthopaedist's +orthopaedists +orthopedic +orthopedics +orthopedics's +orthopedist +orthopedist's +orthopedists +oscillate +oscillated +oscillates +oscillating +oscillation +oscillation's +oscillations +oscillator +oscillator's +oscillators +oscilloscope +oscilloscope's +oscilloscopes +osier +osier's +osiers +osmosis +osmosis's +osmotic +osprey +osprey's +ospreys +ossification +ossification's +ossified +ossifies +ossify +ossifying +ostensible +ostensibly +ostentation +ostentation's +ostentatious +ostentatiously +osteopath +osteopath's +osteopaths +osteopathy +osteopathy's +osteoporosis +osteoporosis's +ostracism +ostracism's +ostracize +ostracized +ostracizes +ostracizing +ostrich +ostrich's +ostriches +other +others +otherwise +otherworldly +otiose +otter +otter's +otters +ottoman +ottoman's +ottomans +ouch +ought +ounce +ounce's +ounces +our +ours +ourselves +oust +ousted +ouster +ouster's +ousters +ousting +ousts +out +out's +outage +outage's +outages +outback +outback's +outbacks +outbalance +outbalanced +outbalances +outbalancing +outbid +outbidding +outbids +outbound +outbreak +outbreak's +outbreaks +outbuilding +outbuilding's +outbuildings +outburst +outburst's +outbursts +outcast +outcast's +outcasts +outclass +outclassed +outclasses +outclassing +outcome +outcome's +outcomes +outcries +outcrop +outcrop's +outcropped +outcropping +outcropping's +outcroppings +outcrops +outcry +outcry's +outdated +outdid +outdistance +outdistanced +outdistances +outdistancing +outdo +outdoes +outdoing +outdone +outdoor +outdoors +outdoors's +outed +outer +outermost +outfield +outfield's +outfielder +outfielder's +outfielders +outfields +outfit +outfit's +outfits +outfitted +outfitter +outfitter's +outfitters +outfitting +outflank +outflanked +outflanking +outflanks +outfox +outfoxed +outfoxes +outfoxing +outgo +outgo's +outgoes +outgoing +outgrew +outgrow +outgrowing +outgrown +outgrows +outgrowth +outgrowth's +outgrowths +outhouse +outhouse's +outhouses +outing +outing's +outings +outlaid +outlandish +outlandishly +outlast +outlasted +outlasting +outlasts +outlaw +outlaw's +outlawed +outlawing +outlaws +outlay +outlay's +outlaying +outlays +outlet +outlet's +outlets +outline +outline's +outlined +outlines +outlining +outlive +outlived +outlives +outliving +outlook +outlook's +outlooks +outlying +outmaneuver +outmaneuvered +outmaneuvering +outmaneuvers +outmanoeuvre +outmanoeuvred +outmanoeuvres +outmanoeuvring +outmoded +outnumber +outnumbered +outnumbering +outnumbers +outpatient +outpatient's +outpatients +outperform +outperformed +outperforming +outperforms +outplacement +outplacement's +outplay +outplayed +outplaying +outplays +outpost +outpost's +outposts +outpouring +outpouring's +outpourings +output +output's +outputs +outputted +outputting +outrage +outrage's +outraged +outrageous +outrageously +outrages +outraging +outran +outrank +outranked +outranking +outranks +outreach +outreach's +outreached +outreaches +outreaching +outrider +outrider's +outriders +outrigger +outrigger's +outriggers +outright +outrun +outrunning +outruns +outré +outs +outsell +outselling +outsells +outset +outset's +outsets +outshine +outshined +outshines +outshining +outshone +outside +outside's +outsider +outsider's +outsiders +outsides +outsize +outsize's +outsized +outsizes +outskirt +outskirt's +outskirts +outsmart +outsmarted +outsmarting +outsmarts +outsold +outsource +outsourced +outsources +outsourcing +outsourcing's +outspoken +outspokenly +outspokenness +outspokenness's +outspread +outspreading +outspreads +outstanding +outstandingly +outstation +outstation's +outstations +outstay +outstayed +outstaying +outstays +outstretch +outstretched +outstretches +outstretching +outstrip +outstripped +outstripping +outstrips +outstript +outtake +outtake's +outtakes +outvote +outvoted +outvotes +outvoting +outward +outwardly +outwards +outwear +outwearing +outwears +outweigh +outweighed +outweighing +outweighs +outwit +outwits +outwitted +outwitting +outwore +outworn +ova +oval +oval's +ovals +ovarian +ovaries +ovary +ovary's +ovation +ovation's +ovations +oven +oven's +ovens +over +over's +overabundance +overabundance's +overabundant +overachieve +overachieved +overachiever +overachiever's +overachievers +overachieves +overachieving +overact +overacted +overacting +overactive +overacts +overage +overage's +overages +overall +overall's +overalls +overalls's +overambitious +overanxious +overate +overawe +overawed +overawes +overawing +overbalance +overbalance's +overbalanced +overbalances +overbalancing +overbear +overbearing +overbears +overbite +overbite's +overbites +overblown +overboard +overbook +overbooked +overbooking +overbooks +overbore +overborne +overburden +overburdened +overburdening +overburdens +overcame +overcast +overcast's +overcasting +overcasts +overcautious +overcharge +overcharge's +overcharged +overcharges +overcharging +overcoat +overcoat's +overcoats +overcome +overcomes +overcoming +overcompensate +overcompensated +overcompensates +overcompensating +overcompensation +overcompensation's +overconfident +overcook +overcooked +overcooking +overcooks +overcrowd +overcrowded +overcrowding +overcrowds +overdid +overdo +overdoes +overdoing +overdone +overdose +overdose's +overdosed +overdoses +overdosing +overdraft +overdraft's +overdrafts +overdraw +overdrawing +overdrawn +overdraws +overdress +overdress's +overdressed +overdresses +overdressing +overdrew +overdrive +overdrive's +overdue +overeager +overeat +overeaten +overeating +overeats +overemphasize +overemphasized +overemphasizes +overemphasizing +overenthusiastic +overestimate +overestimate's +overestimated +overestimates +overestimating +overexpose +overexposed +overexposes +overexposing +overexposure +overexposure's +overextend +overextended +overextending +overextends +overflow +overflow's +overflowed +overflowing +overflows +overfull +overgenerous +overgrew +overgrow +overgrowing +overgrown +overgrows +overgrowth +overgrowth's +overhand +overhand's +overhands +overhang +overhang's +overhanging +overhangs +overhaul +overhaul's +overhauled +overhauling +overhauls +overhead +overhead's +overheads +overhear +overheard +overhearing +overhears +overheat +overheated +overheating +overheats +overhung +overindulge +overindulged +overindulgence +overindulgence's +overindulges +overindulging +overjoy +overjoyed +overjoying +overjoys +overkill +overkill's +overlaid +overlain +overland +overlap +overlap's +overlapped +overlapping +overlaps +overlay +overlay's +overlaying +overlays +overlie +overlies +overload +overload's +overloaded +overloading +overloads +overlong +overlook +overlook's +overlooked +overlooking +overlooks +overlord +overlord's +overlords +overly +overlying +overmuch +overmuches +overnight +overnight's +overnights +overpaid +overpass +overpass's +overpasses +overpay +overpaying +overpays +overplay +overplayed +overplaying +overplays +overpopulate +overpopulated +overpopulates +overpopulating +overpopulation +overpopulation's +overpower +overpowered +overpowering +overpowers +overprice +overpriced +overprices +overpricing +overprint +overprinted +overprinting +overprints +overproduce +overproduced +overproduces +overproducing +overproduction +overproduction's +overprotective +overqualified +overran +overrate +overrated +overrates +overrating +overreach +overreached +overreaches +overreaching +overreact +overreacted +overreacting +overreaction +overreaction's +overreactions +overreacts +overridden +override +override's +overrides +overriding +overripe +overripe's +overrode +overrule +overruled +overrules +overruling +overrun +overrun's +overrunning +overruns +overs +oversampling +oversaw +overseas +oversee +overseeing +overseen +overseer +overseer's +overseers +oversees +oversell +overselling +oversells +oversensitive +oversexed +overshadow +overshadowed +overshadowing +overshadows +overshoe +overshoe's +overshoes +overshoot +overshooting +overshoots +overshot +oversight +oversight's +oversights +oversimplification +oversimplification's +oversimplifications +oversimplified +oversimplifies +oversimplify +oversimplifying +oversize +oversized +oversleep +oversleeping +oversleeps +overslept +oversold +overspecialize +overspecialized +overspecializes +overspecializing +overspend +overspending +overspends +overspent +overspill +overspread +overspreading +overspreads +overstate +overstated +overstatement +overstatement's +overstatements +overstates +overstating +overstay +overstayed +overstaying +overstays +overstep +overstepped +overstepping +oversteps +overstock +overstocked +overstocking +overstocks +overstuffed +oversupplied +oversupplies +oversupply +oversupplying +overt +overtake +overtaken +overtakes +overtaking +overtax +overtaxed +overtaxes +overtaxing +overthrew +overthrow +overthrow's +overthrowing +overthrown +overthrows +overtime +overtime's +overtimes +overtly +overtone +overtone's +overtones +overtook +overture +overture's +overtures +overturn +overturned +overturning +overturns +overuse +overuse's +overused +overuses +overusing +overview +overview's +overviews +overweening +overweight +overweight's +overwhelm +overwhelmed +overwhelming +overwhelmingly +overwhelms +overwork +overwork's +overworked +overworking +overworks +overwrite +overwrites +overwriting +overwritten +overwrought +overzealous +oviduct +oviduct's +oviducts +oviparous +ovoid +ovoid's +ovoids +ovulate +ovulated +ovulates +ovulating +ovulation +ovulation's +ovule +ovule's +ovules +ovum +ovum's +ow +owe +owed +owes +owing +owl +owl's +owlet +owlet's +owlets +owlish +owls +own +owned +owner +owner's +owners +ownership +ownership's +owning +owns +ox +ox's +oxbow +oxbow's +oxbows +oxen +oxford +oxford's +oxfords +oxidation +oxidation's +oxide +oxide's +oxides +oxidize +oxidized +oxidizer +oxidizer's +oxidizers +oxidizes +oxidizing +oxyacetylene +oxyacetylene's +oxygen +oxygen's +oxygenate +oxygenated +oxygenates +oxygenating +oxygenation +oxygenation's +oxymora +oxymoron +oxymoron's +oxymorons +oyster +oyster's +oysters +ozone +ozone's +p +pH +pa +pa's +pace +pace's +paced +pacemaker +pacemaker's +pacemakers +paces +pacesetter +pacesetter's +pacesetters +pachyderm +pachyderm's +pachyderms +pacific +pacifically +pacification +pacification's +pacified +pacifier +pacifier's +pacifiers +pacifies +pacifism +pacifism's +pacifist +pacifist's +pacifists +pacify +pacifying +pacing +pack +pack's +package +package's +packaged +packages +packaging +packaging's +packed +packer +packer's +packers +packet +packet's +packets +packing +packing's +packs +pact +pact's +pacts +pad +pad's +padded +paddies +padding +padding's +paddle +paddle's +paddled +paddles +paddling +paddock +paddock's +paddocked +paddocking +paddocks +paddy +paddy's +padlock +padlock's +padlocked +padlocking +padlocks +padre +padre's +padres +pads +paean +paean's +paeans +pagan +pagan's +paganism +paganism's +pagans +page +page's +pageant +pageant's +pageantry +pageantry's +pageants +paged +pager +pager's +pagers +pages +paginate +paginated +paginates +paginating +pagination +pagination's +paging +pagoda +pagoda's +pagodas +paid +pail +pail's +pailful +pailful's +pailfuls +pails +pailsful +pain +pain's +pained +painful +painfuller +painfullest +painfully +paining +painkiller +painkiller's +painkillers +painless +painlessly +pains +painstaking +painstaking's +painstakingly +paint +paint's +paintbrush +paintbrush's +paintbrushes +painted +painter +painter's +painters +painting +painting's +paintings +paints +paintwork +pair +pair's +paired +pairing +pairs +pairwise +paisley +paisley's +paisleys +pajamas +pajamas's +pal +pal's +palace +palace's +palaces +palatable +palatal +palatal's +palatals +palate +palate's +palates +palatial +palaver +palaver's +palavered +palavering +palavers +pale +pale's +paled +paleface +paleface's +palefaces +paleness +paleness's +paleontologist +paleontologist's +paleontologists +paleontology +paleontology's +paler +pales +palest +palette +palette's +palettes +palimony +palimony's +palimpsest +palimpsest's +palimpsests +palindrome +palindrome's +palindromes +palindromic +paling +paling's +palings +palisade +palisade's +palisades +pall +pall's +palladium +palladium's +pallbearer +pallbearer's +pallbearers +palled +pallet +pallet's +pallets +palliate +palliated +palliates +palliating +palliation +palliation's +palliative +palliative's +palliatives +pallid +palling +pallor +pallor's +palls +palm +palm's +palmed +palmetto +palmetto's +palmettoes +palmettos +palmier +palmiest +palming +palmist +palmist's +palmistry +palmistry's +palmists +palms +palmy +palomino +palomino's +palominos +palpable +palpably +palpate +palpated +palpates +palpating +palpation +palpation's +palpitate +palpitated +palpitates +palpitating +palpitation +palpitation's +palpitations +pals +palsied +palsies +palsy +palsy's +palsying +paltrier +paltriest +paltriness +paltriness's +paltry +pampas +pampas's +pamper +pampered +pampering +pampers +pamphlet +pamphlet's +pamphleteer +pamphleteer's +pamphleteers +pamphlets +pan +pan's +panacea +panacea's +panaceas +panache +panache's +pancake +pancake's +pancaked +pancakes +pancaking +panchromatic +pancreas +pancreas's +pancreases +pancreatic +panda +panda's +pandas +pandemic +pandemic's +pandemics +pandemonium +pandemonium's +pander +pander's +pandered +panderer +panderer's +panderers +pandering +panders +pane +pane's +panegyric +panegyric's +panegyrics +panel +panel's +paneled +paneling +paneling's +panelings +panelist +panelist's +panelists +panelled +panelling +panelling's +panellings +panels +panes +pang +pang's +pangs +panhandle +panhandle's +panhandled +panhandler +panhandler's +panhandlers +panhandles +panhandling +panic +panic's +panicked +panickier +panickiest +panicking +panicky +panics +panier +panier's +paniers +panned +pannier +pannier's +panniers +panning +panoplies +panoply +panoply's +panorama +panorama's +panoramas +panoramic +pans +pansies +pansy +pansy's +pant +pant's +pantaloons +pantaloons's +panted +pantheism +pantheism's +pantheist +pantheist's +pantheistic +pantheists +pantheon +pantheon's +pantheons +panther +panther's +panthers +pantie +pantie's +panties +panting +pantomime +pantomime's +pantomimed +pantomimes +pantomiming +pantries +pantry +pantry's +pants +pantsuit +pantsuit's +pantsuits +panty +panty's +pantyhose +pantyhose's +pap +pap's +papa +papa's +papacies +papacy +papacy's +papal +papas +papaw +papaw's +papaws +papaya +papaya's +papayas +paper +paper's +paperback +paperback's +paperbacks +paperboy +paperboy's +paperboys +papered +papergirl +papergirl's +papergirls +paperhanger +paperhanger's +paperhangers +papering +papers +paperweight +paperweight's +paperweights +paperwork +paperwork's +papery +papilla +papilla's +papillae +papoose +papoose's +papooses +paprika +paprika's +paps +papyri +papyrus +papyrus's +papyruses +par +par's +parable +parable's +parables +parabola +parabola's +parabolas +parabolic +parachute +parachute's +parachuted +parachutes +parachuting +parachutist +parachutist's +parachutists +parade +parade's +paraded +parades +paradigm +paradigm's +paradigmatic +paradigms +parading +paradise +paradise's +paradises +paradox +paradox's +paradoxes +paradoxical +paradoxically +paraffin +paraffin's +paragon +paragon's +paragons +paragraph +paragraph's +paragraphed +paragraphing +paragraphs +parakeet +parakeet's +parakeets +paralegal +paralegal's +paralegals +parallax +parallax's +parallaxes +parallel +parallel's +paralleled +paralleling +parallelism +parallelism's +parallelisms +parallelled +parallelling +parallelogram +parallelogram's +parallelograms +parallels +paralyses +paralysis +paralysis's +paralytic +paralytic's +paralytics +paralyze +paralyzed +paralyzes +paralyzing +paramecia +paramecium +paramecium's +parameciums +paramedic +paramedic's +paramedical +paramedical's +paramedicals +paramedics +parameter +parameter's +parameters +paramilitaries +paramilitary +paramilitary's +paramount +paramour +paramour's +paramours +paranoia +paranoia's +paranoid +paranoid's +paranoids +paranormal +parapet +parapet's +parapets +paraphernalia +paraphernalia's +paraphrase +paraphrase's +paraphrased +paraphrases +paraphrasing +paraplegia +paraplegia's +paraplegic +paraplegic's +paraplegics +paraprofessional +paraprofessional's +paraprofessionals +parapsychology +parapsychology's +parasite +parasite's +parasites +parasitic +parasol +parasol's +parasols +paratrooper +paratrooper's +paratroopers +paratroops +paratroops's +parboil +parboiled +parboiling +parboils +parcel +parcel's +parceled +parceling +parcelled +parcelling +parcels +parch +parched +parches +parching +parchment +parchment's +parchments +pardon +pardon's +pardonable +pardoned +pardoning +pardons +pare +pared +parent +parent's +parentage +parentage's +parental +parented +parentheses +parenthesis +parenthesis's +parenthesize +parenthesized +parenthesizes +parenthesizing +parenthetic +parenthetical +parenthetically +parenthood +parenthood's +parenting +parenting's +parents +pares +parfait +parfait's +parfaits +pariah +pariah's +pariahs +paring +paring's +parings +parish +parish's +parishes +parishioner +parishioner's +parishioners +parity +parity's +park +park's +parka +parka's +parkas +parked +parking +parking's +parks +parkway +parkway's +parkways +parlance +parlance's +parlay +parlay's +parlayed +parlaying +parlays +parley +parley's +parleyed +parleying +parleys +parliament +parliament's +parliamentarian +parliamentarian's +parliamentarians +parliamentary +parliaments +parlor +parlor's +parlors +parochial +parochialism +parochialism's +parodied +parodies +parody +parody's +parodying +parole +parole's +paroled +parolee +parolee's +parolees +paroles +paroling +paroxysm +paroxysm's +paroxysms +parquet +parquet's +parqueted +parqueting +parquetry +parquetry's +parquets +parrakeet +parrakeet's +parrakeets +parred +parricide +parricide's +parricides +parried +parries +parring +parrot +parrot's +parroted +parroting +parrots +parry +parry's +parrying +pars +parse +parsec +parsec's +parsecs +parsed +parser +parses +parsimonious +parsimony +parsimony's +parsing +parsley +parsley's +parsnip +parsnip's +parsnips +parson +parson's +parsonage +parsonage's +parsonages +parsons +part +part's +partake +partaken +partaker +partaker's +partakers +partakes +partaking +parted +parterre +parterre's +parterres +parthenogenesis +parthenogenesis's +partial +partial's +partiality +partiality's +partially +partials +participant +participant's +participants +participate +participated +participates +participating +participation +participation's +participator +participator's +participators +participatory +participial +participial's +participle +participle's +participles +particle +particle's +particles +particular +particular's +particularities +particularity +particularity's +particularization +particularization's +particularize +particularized +particularizes +particularizing +particularly +particulars +particulate +particulate's +particulates +partied +parties +parting +parting's +partings +partisan +partisan's +partisans +partisanship +partisanship's +partition +partition's +partitioned +partitioning +partitions +partizan +partizan's +partizans +partly +partner +partner's +partnered +partnering +partners +partnership +partnership's +partnerships +partook +partridge +partridge's +partridges +parts +parturition +parturition's +partway +party +party's +partying +parvenu +parvenu's +parvenus +pas +paschal +pasha +pasha's +pashas +pass +pass's +passable +passably +passage +passage's +passages +passageway +passageway's +passageways +passbook +passbook's +passbooks +passed +passel +passel's +passels +passenger +passenger's +passengers +passer +passerby +passerby's +passersby +passes +passing +passing's +passion +passion's +passionate +passionately +passionless +passions +passive +passive's +passively +passives +passivity +passivity's +passkey +passkey's +passkeys +passport +passport's +passports +password +password's +passwords +passé +past +past's +pasta +pasta's +pastas +paste +paste's +pasteboard +pasteboard's +pasted +pastel +pastel's +pastels +pastern +pastern's +pasterns +pastes +pasteurization +pasteurization's +pasteurize +pasteurized +pasteurizes +pasteurizing +pastiche +pastiche's +pastiches +pastier +pasties +pastiest +pastime +pastime's +pastimes +pasting +pastor +pastor's +pastoral +pastoral's +pastorals +pastorate +pastorate's +pastorates +pastors +pastrami +pastrami's +pastries +pastry +pastry's +pasts +pasturage +pasturage's +pasture +pasture's +pastured +pastures +pasturing +pasty +pasty's +pat +pat's +patch +patch's +patched +patches +patchier +patchiest +patchiness +patchiness's +patching +patchwork +patchwork's +patchworks +patchy +pate +pate's +patella +patella's +patellae +patellas +patent +patent's +patented +patenting +patently +patents +paternal +paternalism +paternalism's +paternalistic +paternally +paternity +paternity's +pates +path +path's +pathetic +pathetically +pathogen +pathogen's +pathogenic +pathogens +pathological +pathologically +pathologist +pathologist's +pathologists +pathology +pathology's +pathos +pathos's +paths +pathway +pathway's +pathways +patience +patience's +patient +patient's +patienter +patientest +patiently +patients +patina +patina's +patinae +patinas +patine +patio +patio's +patios +patois +patois's +patriarch +patriarch's +patriarchal +patriarchies +patriarchs +patriarchy +patriarchy's +patrician +patrician's +patricians +patricide +patricide's +patricides +patrimonial +patrimonies +patrimony +patrimony's +patriot +patriot's +patriotic +patriotically +patriotism +patriotism's +patriots +patrol +patrol's +patrolled +patrolling +patrolman +patrolman's +patrolmen +patrols +patrolwoman +patrolwoman's +patrolwomen +patron +patron's +patronage +patronage's +patronages +patronize +patronized +patronizes +patronizing +patronizingly +patrons +patronymic +patronymic's +patronymics +pats +patsies +patsy +patsy's +patted +patter +patter's +pattered +pattering +pattern +pattern's +patterned +patterning +patterns +patters +patties +patting +patty +patty's +paucity +paucity's +paunch +paunch's +paunches +paunchier +paunchiest +paunchy +pauper +pauper's +pauperism +pauperism's +pauperize +pauperized +pauperizes +pauperizing +paupers +pause +pause's +paused +pauses +pausing +pave +paved +pavement +pavement's +pavements +paves +pavilion +pavilion's +pavilions +paving +paving's +pavings +paw +paw's +pawed +pawing +pawl +pawl's +pawls +pawn +pawn's +pawnbroker +pawnbroker's +pawnbrokers +pawned +pawning +pawns +pawnshop +pawnshop's +pawnshops +pawpaw +pawpaw's +pawpaws +paws +pay +pay's +payable +paycheck +paycheck's +paychecks +payday +payday's +paydays +payed +payee +payee's +payees +payer +payer's +payers +paying +payload +payload's +payloads +paymaster +paymaster's +paymasters +payment +payment's +payments +payoff +payoff's +payoffs +payroll +payroll's +payrolls +pays +pea +pea's +peace +peace's +peaceable +peaceably +peaceful +peacefully +peacefulness +peacefulness's +peacekeeping +peacekeeping's +peacemaker +peacemaker's +peacemakers +peaces +peacetime +peacetime's +peach +peach's +peaches +peacock +peacock's +peacocks +peafowl +peafowl's +peafowls +peahen +peahen's +peahens +peak +peak's +peaked +peaking +peaks +peal +peal's +pealed +pealing +peals +peanut +peanut's +peanuts +pear +pear's +pearl +pearl's +pearled +pearlier +pearliest +pearling +pearls +pearly +pears +peas +peasant +peasant's +peasantry +peasantry's +peasants +pease +peat +peat's +pebble +pebble's +pebbled +pebbles +pebblier +pebbliest +pebbling +pebbly +pecan +pecan's +pecans +peccadillo +peccadillo's +peccadilloes +peccadillos +peccaries +peccary +peccary's +peck +peck's +pecked +pecking +pecks +pectin +pectin's +pectoral +pectoral's +pectorals +peculiar +peculiarities +peculiarity +peculiarity's +peculiarly +pecuniary +pedagog +pedagog's +pedagogic +pedagogical +pedagogs +pedagogue +pedagogue's +pedagogues +pedagogy +pedagogy's +pedal +pedal's +pedaled +pedaling +pedalled +pedalling +pedals +pedant +pedant's +pedantic +pedantically +pedantry +pedantry's +pedants +peddle +peddled +peddler +peddler's +peddlers +peddles +peddling +pederast +pederast's +pederasts +pederasty +pederasty's +pedestal +pedestal's +pedestals +pedestrian +pedestrian's +pedestrianize +pedestrianized +pedestrianizes +pedestrianizing +pedestrians +pediatric +pediatrician +pediatrician's +pediatricians +pediatrics +pediatrics's +pediatrist +pediatrist's +pediatrists +pedicure +pedicure's +pedicured +pedicures +pedicuring +pedigree +pedigree's +pedigreed +pedigrees +pediment +pediment's +pediments +pedlar +pedlar's +pedlars +pedometer +pedometer's +pedometers +pee +pee's +peed +peeing +peek +peek's +peekaboo +peekaboo's +peeked +peeking +peeks +peel +peel's +peeled +peeling +peeling's +peelings +peels +peep +peep's +peeped +peeper +peeper's +peepers +peephole +peephole's +peepholes +peeping +peeps +peer +peer's +peerage +peerage's +peerages +peered +peering +peerless +peers +pees +peeve +peeve's +peeved +peeves +peeving +peevish +peevishly +peevishness +peevishness's +peewee +peewee's +peewees +peg +peg's +pegged +pegging +pegs +pejorative +pejorative's +pejoratives +pekoe +pekoe's +pelagic +pelican +pelican's +pelicans +pellagra +pellagra's +pellet +pellet's +pelleted +pelleting +pellets +pellucid +pelt +pelt's +pelted +pelting +pelts +pelves +pelvic +pelvis +pelvis's +pelvises +pen +pen's +penal +penalize +penalized +penalizes +penalizing +penalties +penalty +penalty's +penance +penance's +penances +pence +penchant +penchant's +penchants +pencil +pencil's +penciled +penciling +pencilled +pencilling +pencils +pendant +pendant's +pendants +pended +pendent +pendent's +pendents +pending +pends +pendulous +pendulum +pendulum's +pendulums +penes +penetrable +penetrate +penetrated +penetrates +penetrating +penetration +penetration's +penetrations +penetrative +penguin +penguin's +penguins +penicillin +penicillin's +penile +peninsula +peninsula's +peninsular +peninsulas +penis +penis's +penises +penitence +penitence's +penitent +penitent's +penitential +penitentiaries +penitentiary +penitentiary's +penitently +penitents +penknife +penknife's +penknives +penlight +penlight's +penlights +penlite +penlite's +penlites +penmanship +penmanship's +pennant +pennant's +pennants +penned +pennies +penniless +penning +pennon +pennon's +pennons +penny +penny's +pennyweight +pennyweight's +pennyweights +penologist +penologist's +penologists +penology +penology's +pens +pension +pension's +pensioned +pensioner +pensioner's +pensioners +pensioning +pensions +pensive +pensively +pensiveness +pensiveness's +pent +pentagon +pentagon's +pentagonal +pentagons +pentameter +pentameter's +pentameters +pentathlon +pentathlon's +pentathlons +penthouse +penthouse's +penthouses +penultimate +penultimate's +penultimates +penurious +penury +penury's +peon +peon's +peonage +peonage's +peonies +peons +peony +peony's +people +people's +peopled +peoples +peopling +pep +pep's +pepped +pepper +pepper's +peppercorn +peppercorn's +peppercorns +peppered +peppering +peppermint +peppermint's +peppermints +pepperoni +pepperoni's +pepperonis +peppers +peppery +peppier +peppiest +pepping +peppy +peps +pepsin +pepsin's +peptic +peptic's +peptics +per +perambulate +perambulated +perambulates +perambulating +perambulator +perambulator's +perambulators +percale +percale's +percales +perceivable +perceive +perceived +perceives +perceiving +percent +percent's +percentage +percentage's +percentages +percentile +percentile's +percentiles +percents +perceptible +perceptibly +perception +perception's +perceptions +perceptive +perceptively +perceptiveness +perceptiveness's +perceptual +perch +perch's +perchance +perched +perches +perching +percolate +percolated +percolates +percolating +percolation +percolation's +percolator +percolator's +percolators +percussion +percussion's +percussionist +percussionist's +percussionists +perdition +perdition's +peregrination +peregrination's +peregrinations +peremptorily +peremptory +perennial +perennial's +perennially +perennials +perfect +perfect's +perfected +perfecter +perfectest +perfectible +perfecting +perfection +perfection's +perfectionism +perfectionism's +perfectionist +perfectionist's +perfectionists +perfections +perfectly +perfects +perfidies +perfidious +perfidy +perfidy's +perforate +perforated +perforates +perforating +perforation +perforation's +perforations +perforce +perform +performance +performance's +performances +performed +performer +performer's +performers +performing +performs +perfume +perfume's +perfumed +perfumeries +perfumery +perfumery's +perfumes +perfuming +perfunctorily +perfunctory +perhaps +pericardia +pericardium +pericardium's +pericardiums +perigee +perigee's +perigees +perihelia +perihelion +perihelion's +perihelions +peril +peril's +periled +periling +perilled +perilling +perilous +perilously +perils +perimeter +perimeter's +perimeters +period +period's +periodic +periodical +periodical's +periodically +periodicals +periodicity +periodontal +periods +peripatetic +peripatetic's +peripatetics +peripheral +peripheral's +peripherals +peripheries +periphery +periphery's +periphrases +periphrasis +periphrasis's +periscope +periscope's +periscopes +perish +perishable +perishable's +perishables +perished +perishes +perishing +peritonea +peritoneum +peritoneum's +peritoneums +peritonitis +peritonitis's +periwig +periwig's +periwigs +periwinkle +periwinkle's +periwinkles +perjure +perjured +perjurer +perjurer's +perjurers +perjures +perjuries +perjuring +perjury +perjury's +perk +perk's +perked +perkier +perkiest +perkiness +perkiness's +perking +perks +perky +perm +perm's +permafrost +permafrost's +permanence +permanence's +permanent +permanent's +permanently +permanents +permeability +permeability's +permeable +permeate +permeated +permeates +permeating +permed +perming +permissible +permissibly +permission +permission's +permissions +permissive +permissively +permissiveness +permissiveness's +permit +permit's +permits +permitted +permitting +perms +permutation +permutation's +permutations +permute +permuted +permutes +permuting +pernicious +perniciously +peroration +peroration's +perorations +peroxide +peroxide's +peroxided +peroxides +peroxiding +perpendicular +perpendicular's +perpendiculars +perpetrate +perpetrated +perpetrates +perpetrating +perpetration +perpetration's +perpetrator +perpetrator's +perpetrators +perpetual +perpetual's +perpetually +perpetuals +perpetuate +perpetuated +perpetuates +perpetuating +perpetuation +perpetuation's +perpetuity +perpetuity's +perplex +perplexed +perplexes +perplexing +perplexities +perplexity +perplexity's +perquisite +perquisite's +perquisites +persecute +persecuted +persecutes +persecuting +persecution +persecution's +persecutions +persecutor +persecutor's +persecutors +perseverance +perseverance's +persevere +persevered +perseveres +persevering +persiflage +persiflage's +persimmon +persimmon's +persimmons +persist +persisted +persistence +persistence's +persistent +persistently +persisting +persists +persnickety +person +person's +persona +persona's +personable +personae +personage +personage's +personages +personal +personal's +personalities +personality +personality's +personalize +personalized +personalizes +personalizing +personally +personals +personification +personification's +personifications +personified +personifies +personify +personifying +personnel +personnel's +persons +perspective +perspective's +perspectives +perspicacious +perspicacity +perspicacity's +perspicuity +perspicuity's +perspicuous +perspiration +perspiration's +perspire +perspired +perspires +perspiring +persuade +persuaded +persuades +persuading +persuasion +persuasion's +persuasions +persuasive +persuasively +persuasiveness +persuasiveness's +pert +pertain +pertained +pertaining +pertains +perter +pertest +pertinacious +pertinacity +pertinacity's +pertinence +pertinence's +pertinent +pertly +pertness +pertness's +perturb +perturbation +perturbation's +perturbations +perturbed +perturbing +perturbs +perusal +perusal's +perusals +peruse +perused +peruses +perusing +pervade +pervaded +pervades +pervading +pervasive +perverse +perversely +perverseness +perverseness's +perversion +perversion's +perversions +perversity +perversity's +pervert +pervert's +perverted +perverting +perverts +peseta +peseta's +pesetas +peskier +peskiest +pesky +peso +peso's +pesos +pessimism +pessimism's +pessimist +pessimist's +pessimistic +pessimistically +pessimists +pest +pest's +pester +pestered +pestering +pesters +pesticide +pesticide's +pesticides +pestilence +pestilence's +pestilences +pestilent +pestle +pestle's +pestled +pestles +pestling +pests +pet +pet's +petal +petal's +petals +petard +petard's +petards +peter +peter's +petered +petering +peters +petiole +petiole's +petioles +petite +petite's +petites +petition +petition's +petitioned +petitioner +petitioner's +petitioners +petitioning +petitions +petrel +petrel's +petrels +petrifaction +petrifaction's +petrified +petrifies +petrify +petrifying +petrochemical +petrochemical's +petrochemicals +petrol +petrol's +petrolatum +petrolatum's +petroleum +petroleum's +pets +petted +petticoat +petticoat's +petticoats +pettier +pettiest +pettifog +pettifogged +pettifogger +pettifogger's +pettifoggers +pettifogging +pettifogs +pettily +pettiness +pettiness's +petting +petty +petulance +petulance's +petulant +petulantly +petunia +petunia's +petunias +pew +pew's +pewee +pewee's +pewees +pews +pewter +pewter's +pewters +peyote +peyote's +phalanges +phalanx +phalanx's +phalanxes +phalli +phallic +phallus +phallus's +phalluses +phantasied +phantasies +phantasm +phantasm's +phantasmagoria +phantasmagoria's +phantasmagorias +phantasms +phantasy +phantasy's +phantasying +phantom +phantom's +phantoms +pharaoh +pharaoh's +pharaohs +pharmaceutical +pharmaceutical's +pharmaceuticals +pharmacies +pharmacist +pharmacist's +pharmacists +pharmacologist +pharmacologist's +pharmacologists +pharmacology +pharmacology's +pharmacopeia +pharmacopeia's +pharmacopeias +pharmacopoeia +pharmacopoeia's +pharmacopoeias +pharmacy +pharmacy's +pharyngeal +pharynges +pharynx +pharynx's +pharynxes +phase +phase's +phased +phases +phasing +pheasant +pheasant's +pheasants +phenobarbital +phenobarbital's +phenomena +phenomenal +phenomenally +phenomenon +phenomenon's +phenomenons +phenotype +pheromone +pheromone's +pheromones +phial +phial's +phials +philander +philandered +philanderer +philanderer's +philanderers +philandering +philanders +philanthropic +philanthropically +philanthropies +philanthropist +philanthropist's +philanthropists +philanthropy +philanthropy's +philatelic +philatelist +philatelist's +philatelists +philately +philately's +philharmonic +philharmonic's +philharmonics +philippic +philippic's +philippics +philistine +philistine's +philistines +philodendra +philodendron +philodendron's +philodendrons +philological +philologist +philologist's +philologists +philology +philology's +philosopher +philosopher's +philosophers +philosophic +philosophical +philosophically +philosophies +philosophize +philosophized +philosophizes +philosophizing +philosophy +philosophy's +philter +philter's +philters +phish +phished +phisher +phisher's +phishers +phishing +phlebitis +phlebitis's +phlegm +phlegm's +phlegmatic +phlegmatically +phloem +phloem's +phlox +phlox's +phloxes +phobia +phobia's +phobias +phobic +phobic's +phobics +phoebe +phoebe's +phoebes +phoenix +phoenix's +phoenixes +phone +phone's +phoned +phoneme +phoneme's +phonemes +phonemic +phones +phonetic +phonetically +phonetician +phonetician's +phoneticians +phonetics +phonetics's +phoney +phoney's +phoneyed +phoneying +phoneys +phonic +phonically +phonics +phonics's +phonied +phonier +phonies +phoniest +phoniness +phoniness's +phoning +phonograph +phonograph's +phonographs +phonological +phonologist +phonologist's +phonologists +phonology +phonology's +phony +phony's +phonying +phooey +phosphate +phosphate's +phosphates +phosphor +phosphor's +phosphorescence +phosphorescence's +phosphorescent +phosphoric +phosphors +phosphorus +phosphorus's +photo +photo's +photocopied +photocopier +photocopier's +photocopiers +photocopies +photocopy +photocopy's +photocopying +photoed +photoelectric +photogenic +photograph +photograph's +photographed +photographer +photographer's +photographers +photographic +photographically +photographing +photographs +photography +photography's +photoing +photojournalism +photojournalism's +photojournalist +photojournalist's +photojournalists +photon +photon's +photons +photos +photosensitive +photosynthesis +photosynthesis's +phototypesetter +phototypesetting +phrasal +phrase +phrase's +phrased +phraseology +phraseology's +phrases +phrasing +phrasing's +phrasings +phrenology +phrenology's +phyla +phylum +phylum's +physic +physic's +physical +physical's +physically +physicals +physician +physician's +physicians +physicist +physicist's +physicists +physicked +physicking +physics +physics's +physiognomies +physiognomy +physiognomy's +physiological +physiologist +physiologist's +physiologists +physiology +physiology's +physiotherapist +physiotherapist's +physiotherapists +physiotherapy +physiotherapy's +physique +physique's +physiques +pi +pi's +pianissimi +pianissimo +pianissimo's +pianissimos +pianist +pianist's +pianists +piano +piano's +pianoforte +pianoforte's +pianofortes +pianos +piazza +piazza's +piazzas +piazze +pica +pica's +picaresque +picayune +piccalilli +piccalilli's +piccolo +piccolo's +piccolos +pick +pick's +pickaback +pickaback's +pickabacked +pickabacking +pickabacks +pickax +pickax's +pickaxe +pickaxe's +pickaxed +pickaxes +pickaxing +picked +picker +picker's +pickerel +pickerel's +pickerels +pickers +picket +picket's +picketed +picketing +pickets +pickier +pickiest +picking +pickings +pickings's +pickle +pickle's +pickled +pickles +pickling +pickpocket +pickpocket's +pickpockets +picks +pickup +pickup's +pickups +picky +picnic +picnic's +picnicked +picnicker +picnicker's +picnickers +picnicking +picnics +pictograph +pictograph's +pictographs +pictorial +pictorial's +pictorially +pictorials +picture +picture's +pictured +pictures +picturesque +picturing +piddle +piddle's +piddled +piddles +piddling +pidgin +pidgin's +pidgins +pie +pie's +piebald +piebald's +piebalds +piece +piece's +pieced +piecemeal +pieces +piecework +piecework's +piecing +pied +pieing +pier +pier's +pierce +pierced +pierces +piercing +piercing's +piercingly +piercings +piers +pies +piety +piety's +piffle +piffle's +pig +pig's +pigeon +pigeon's +pigeonhole +pigeonhole's +pigeonholed +pigeonholes +pigeonholing +pigeons +pigged +piggier +piggies +piggiest +pigging +piggish +piggishness +piggishness's +piggy +piggy's +piggyback +piggyback's +piggybacked +piggybacking +piggybacks +pigheaded +piglet +piglet's +piglets +pigment +pigment's +pigmentation +pigmentation's +pigments +pigmies +pigmy +pigmy's +pigpen +pigpen's +pigpens +pigs +pigskin +pigskin's +pigskins +pigsties +pigsty +pigsty's +pigtail +pigtail's +pigtails +piing +pike +pike's +piked +piker +piker's +pikers +pikes +piking +pilaf +pilaf's +pilaff +pilaff's +pilaffs +pilafs +pilaster +pilaster's +pilasters +pilau +pilau's +pilaus +pilaw +pilaw's +pilaws +pilchard +pilchard's +pilchards +pile +pile's +piled +piles +pileup +pileup's +pileups +pilfer +pilfered +pilferer +pilferer's +pilferers +pilfering +pilfers +pilgrim +pilgrim's +pilgrimage +pilgrimage's +pilgrimages +pilgrims +piling +piling's +pilings +pill +pill's +pillage +pillage's +pillaged +pillages +pillaging +pillar +pillar's +pillars +pillbox +pillbox's +pillboxes +pilled +pilling +pillion +pillion's +pillions +pilloried +pillories +pillory +pillory's +pillorying +pillow +pillow's +pillowcase +pillowcase's +pillowcases +pillowed +pillowing +pillows +pills +pilot +pilot's +piloted +pilothouse +pilothouse's +pilothouses +piloting +pilots +pimento +pimento's +pimentos +pimiento +pimiento's +pimientos +pimp +pimp's +pimped +pimpernel +pimpernel's +pimpernels +pimping +pimple +pimple's +pimples +pimplier +pimpliest +pimply +pimps +pin +pin's +pinafore +pinafore's +pinafores +pinball +pinball's +pincer +pincer's +pincers +pinch +pinch's +pinched +pinches +pinching +pincushion +pincushion's +pincushions +pine +pine's +pineapple +pineapple's +pineapples +pined +pines +pinfeather +pinfeather's +pinfeathers +ping +ping's +pinged +pinging +pings +pinhead +pinhead's +pinheads +pinhole +pinhole's +pinholes +pining +pinion +pinion's +pinioned +pinioning +pinions +pink +pink's +pinked +pinker +pinkest +pinkeye +pinkeye's +pinkie +pinkie's +pinkies +pinking +pinkish +pinks +pinky +pinky's +pinnacle +pinnacle's +pinnacles +pinnate +pinned +pinning +pinochle +pinochle's +pinpoint +pinpoint's +pinpointed +pinpointing +pinpoints +pinprick +pinprick's +pinpricks +pins +pinstripe +pinstripe's +pinstriped +pinstripes +pint +pint's +pinto +pinto's +pintoes +pintos +pints +pinup +pinup's +pinups +pinwheel +pinwheel's +pinwheeled +pinwheeling +pinwheels +pioneer +pioneer's +pioneered +pioneering +pioneers +pious +piously +pip +pip's +pipe +pipe's +piped +pipeline +pipeline's +pipelines +piper +piper's +pipers +pipes +piping +piping's +pipit +pipit's +pipits +pipped +pippin +pippin's +pipping +pippins +pips +pipsqueak +pipsqueak's +pipsqueaks +piquancy +piquancy's +piquant +pique +pique's +piqued +piques +piquing +piracy +piracy's +piranha +piranha's +piranhas +pirate +pirate's +pirated +pirates +piratical +pirating +pirouette +pirouette's +pirouetted +pirouettes +pirouetting +pis +piscatorial +piss +piss's +pissed +pisses +pissing +pistachio +pistachio's +pistachios +pistil +pistil's +pistillate +pistils +pistol +pistol's +pistols +piston +piston's +pistons +pit +pit's +pita +pita's +pitch +pitch's +pitchblende +pitchblende's +pitched +pitcher +pitcher's +pitchers +pitches +pitchfork +pitchfork's +pitchforked +pitchforking +pitchforks +pitching +pitchman +pitchman's +pitchmen +piteous +piteously +pitfall +pitfall's +pitfalls +pith +pith's +pithier +pithiest +pithily +pithy +pitiable +pitiably +pitied +pities +pitiful +pitifully +pitiless +pitilessly +piton +piton's +pitons +pits +pittance +pittance's +pittances +pitted +pitting +pituitaries +pituitary +pituitary's +pity +pity's +pitying +pivot +pivot's +pivotal +pivoted +pivoting +pivots +pixel +pixel's +pixels +pixie +pixie's +pixies +pixy +pixy's +pizazz +pizazz's +pizza +pizza's +pizzas +pizzazz +pizzazz's +pizzeria +pizzeria's +pizzerias +pizzicati +pizzicato +pizzicato's +pizzicatos +pj's +placard +placard's +placarded +placarding +placards +placate +placated +placates +placating +placation +placation's +place +place's +placebo +placebo's +placebos +placed +placeholder +placement +placement's +placements +placenta +placenta's +placentae +placental +placentals +placentas +placer +placer's +placers +places +placid +placidity +placidity's +placidly +placing +placket +placket's +plackets +plagiarism +plagiarism's +plagiarisms +plagiarist +plagiarist's +plagiarists +plagiarize +plagiarized +plagiarizes +plagiarizing +plague +plague's +plagued +plagues +plaguing +plaice +plaid +plaid's +plaids +plain +plain's +plainclothes +plainclothesman +plainclothesman's +plainclothesmen +plainer +plainest +plainly +plainness +plainness's +plains +plaint +plaint's +plaintiff +plaintiff's +plaintiffs +plaintive +plaintively +plaints +plait +plait's +plaited +plaiting +plaits +plan +plan's +planar +plane +plane's +planed +planes +planet +planet's +planetaria +planetarium +planetarium's +planetariums +planetary +planets +plangent +planing +plank +plank's +planked +planking +planking's +planks +plankton +plankton's +planned +planner +planner's +planners +planning +plannings +plans +plant +plant's +plantain +plantain's +plantains +plantation +plantation's +plantations +planted +planter +planter's +planters +planting +planting's +plantings +plants +plaque +plaque's +plaques +plasma +plasma's +plaster +plaster's +plasterboard +plasterboard's +plastered +plasterer +plasterer's +plasterers +plastering +plasters +plastic +plastic's +plasticity +plasticity's +plastics +plate +plate's +plateau +plateau's +plateaued +plateauing +plateaus +plateaux +plated +plateful +plateful's +platefuls +platelet +platelet's +platelets +platen +platen's +platens +plates +platform +platform's +platformed +platforming +platforms +plating +plating's +platinum +platinum's +platitude +platitude's +platitudes +platitudinous +platonic +platoon +platoon's +platooned +platooning +platoons +platter +platter's +platters +platypi +platypus +platypus's +platypuses +plaudit +plaudit's +plaudits +plausibility +plausibility's +plausible +plausibly +play +play's +playable +playact +playacted +playacting +playacting's +playacts +playback +playback's +playbacks +playbill +playbill's +playbills +playboy +playboy's +playboys +played +player +player's +players +playful +playfully +playfulness +playfulness's +playgoer +playgoer's +playgoers +playground +playground's +playgrounds +playhouse +playhouse's +playhouses +playing +playmate +playmate's +playmates +playoff +playoff's +playoffs +playpen +playpen's +playpens +playroom +playroom's +playrooms +plays +plaything +plaything's +playthings +playwright +playwright's +playwrights +plaza +plaza's +plazas +plea +plea's +plead +pleaded +pleader +pleader's +pleaders +pleading +pleads +pleas +pleasant +pleasanter +pleasantest +pleasantly +pleasantness +pleasantness's +pleasantries +pleasantry +pleasantry's +please +pleased +pleases +pleasing +pleasingly +pleasings +pleasurable +pleasurably +pleasure +pleasure's +pleasured +pleasures +pleasuring +pleat +pleat's +pleated +pleating +pleats +plebeian +plebeian's +plebeians +plebiscite +plebiscite's +plebiscites +plectra +plectrum +plectrum's +plectrums +pled +pledge +pledge's +pledged +pledges +pledging +plenaries +plenary +plenary's +plenipotentiaries +plenipotentiary +plenipotentiary's +plenitude +plenitude's +plenitudes +plenteous +plentiful +plentifully +plenty +plenty's +plethora +plethora's +pleurisy +pleurisy's +plexus +plexus's +plexuses +pliability +pliability's +pliable +pliancy +pliancy's +pliant +plied +pliers +pliers's +plies +plight +plight's +plighted +plighting +plights +plinth +plinth's +plinths +plod +plodded +plodder +plodder's +plodders +plodding +ploddings +plods +plop +plop's +plopped +plopping +plops +plot +plot's +plots +plotted +plotter +plotter's +plotters +plotting +plough +plough's +ploughed +ploughing +ploughs +ploughshare +ploughshare's +ploughshares +plover +plover's +plovers +plow +plow's +plowed +plowing +plowman +plowman's +plowmen +plows +plowshare +plowshare's +plowshares +ploy +ploy's +ploys +pluck +pluck's +plucked +pluckier +pluckiest +pluckiness +pluckiness's +plucking +plucks +plucky +plug +plug's +plugged +plugging +plugin +plugin's +plugins +plugs +plum +plum's +plumage +plumage's +plumb +plumb's +plumbed +plumber +plumber's +plumbers +plumbing +plumbing's +plumbs +plume +plume's +plumed +plumes +pluming +plummer +plummest +plummet +plummet's +plummeted +plummeting +plummets +plump +plump's +plumped +plumper +plumpest +plumping +plumpness +plumpness's +plumps +plums +plunder +plunder's +plundered +plunderer +plunderer's +plunderers +plundering +plunders +plunge +plunge's +plunged +plunger +plunger's +plungers +plunges +plunging +plunk +plunk's +plunked +plunking +plunks +pluperfect +pluperfect's +pluperfects +plural +plural's +pluralism +pluralism's +pluralistic +pluralities +plurality +plurality's +pluralize +pluralized +pluralizes +pluralizing +plurals +plus +plus's +pluses +plush +plush's +plusher +plushest +plushier +plushiest +plushy +plusses +plutocracies +plutocracy +plutocracy's +plutocrat +plutocrat's +plutocratic +plutocrats +plutonium +plutonium's +ply +ply's +plying +plywood +plywood's +pneumatic +pneumatically +pneumonia +pneumonia's +poach +poached +poacher +poacher's +poachers +poaches +poaching +pock +pock's +pocked +pocket +pocket's +pocketbook +pocketbook's +pocketbooks +pocketed +pocketful +pocketful's +pocketfuls +pocketing +pocketknife +pocketknife's +pocketknives +pockets +pocking +pockmark +pockmark's +pockmarked +pockmarking +pockmarks +pocks +pod +pod's +podcast +podded +podding +podia +podiatrist +podiatrist's +podiatrists +podiatry +podiatry's +podium +podium's +podiums +pods +poem +poem's +poems +poesy +poesy's +poet +poet's +poetess +poetess's +poetesses +poetic +poetical +poetically +poetry +poetry's +poets +pogrom +pogrom's +pogroms +poi +poi's +poignancy +poignancy's +poignant +poignantly +poinsettia +poinsettia's +poinsettias +point +point's +pointed +pointedly +pointer +pointer's +pointers +pointier +pointiest +pointillism +pointillism's +pointillist +pointillist's +pointillists +pointing +pointless +pointlessly +pointlessness +pointlessness's +points +pointy +poise +poise's +poised +poises +poising +poison +poison's +poisoned +poisoner +poisoner's +poisoners +poisoning +poisoning's +poisonings +poisonous +poisonously +poisons +poke +poke's +poked +poker +poker's +pokers +pokes +pokey +pokey's +pokeys +pokier +pokiest +poking +poky +pol +pol's +polar +polarities +polarity +polarity's +polarization +polarization's +polarize +polarized +polarizes +polarizing +pole +pole's +polecat +polecat's +polecats +poled +polemic +polemic's +polemical +polemics +poles +polestar +polestar's +polestars +police +police's +policed +policeman +policeman's +policemen +polices +policewoman +policewoman's +policewomen +policies +policing +policy +policy's +policyholder +policyholder's +policyholders +poling +polio +polio's +poliomyelitis +poliomyelitis's +polios +polish +polish's +polished +polisher +polisher's +polishers +polishes +polishing +polite +politely +politeness +politeness's +politer +politesse +politesse's +politest +politic +political +politically +politician +politician's +politicians +politicize +politicized +politicizes +politicizing +politico +politico's +politicoes +politicos +politics +politics's +polities +polity +polity's +polka +polka's +polkaed +polkaing +polkas +poll +poll's +polled +pollen +pollen's +pollinate +pollinated +pollinates +pollinating +pollination +pollination's +polling +polliwog +polliwog's +polliwogs +polls +pollster +pollster's +pollsters +pollutant +pollutant's +pollutants +pollute +polluted +polluter +polluter's +polluters +pollutes +polluting +pollution +pollution's +pollywog +pollywog's +pollywogs +polo +polo's +polonaise +polonaise's +polonaises +polonium +polonium's +pols +poltergeist +poltergeist's +poltergeists +poltroon +poltroon's +poltroons +polyester +polyester's +polyesters +polyethylene +polyethylene's +polygamist +polygamist's +polygamists +polygamous +polygamy +polygamy's +polyglot +polyglot's +polyglots +polygon +polygon's +polygonal +polygons +polygraph +polygraph's +polygraphed +polygraphing +polygraphs +polyhedra +polyhedron +polyhedron's +polyhedrons +polymath +polymath's +polymaths +polymer +polymer's +polymeric +polymerization +polymerization's +polymers +polymorphic +polynomial +polynomial's +polynomials +polyp +polyp's +polyphonic +polyphony +polyphony's +polyps +polystyrene +polystyrene's +polysyllabic +polysyllable +polysyllable's +polysyllables +polytechnic +polytechnic's +polytechnics +polytheism +polytheism's +polytheist +polytheist's +polytheistic +polytheists +polythene +polyunsaturated +pomade +pomade's +pomaded +pomades +pomading +pomegranate +pomegranate's +pomegranates +pommel +pommel's +pommeled +pommeling +pommelled +pommelling +pommels +pomp +pomp's +pompadour +pompadour's +pompadoured +pompadours +pompom +pompom's +pompoms +pompon +pompon's +pompons +pomposity +pomposity's +pompous +pompously +pompousness +pompousness's +poncho +poncho's +ponchos +pond +pond's +ponder +pondered +pondering +ponderous +ponderously +ponders +ponds +pone +pone's +pones +poniard +poniard's +poniards +ponies +pontiff +pontiff's +pontiffs +pontifical +pontificate +pontificate's +pontificated +pontificates +pontificating +pontoon +pontoon's +pontoons +pony +pony's +ponytail +ponytail's +ponytails +pooch +pooch's +pooched +pooches +pooching +poodle +poodle's +poodles +pooh +pooh's +poohed +poohing +poohs +pool +pool's +pooled +pooling +pools +poop +poop's +pooped +pooping +poops +poor +poorer +poorest +poorhouse +poorhouse's +poorhouses +poorly +pop +pop's +popcorn +popcorn's +pope +pope's +popes +popgun +popgun's +popguns +popinjay +popinjay's +popinjays +poplar +poplar's +poplars +poplin +poplin's +popover +popover's +popovers +poppa +poppa's +poppas +popped +poppies +popping +poppy +poppy's +poppycock +poppycock's +pops +populace +populace's +populaces +popular +popularity +popularity's +popularization +popularization's +popularize +popularized +popularizes +popularizing +popularly +populate +populated +populates +populating +population +population's +populations +populism +populism's +populist +populist's +populists +populous +porcelain +porcelain's +porch +porch's +porches +porcine +porcupine +porcupine's +porcupines +pore +pore's +pored +pores +poring +pork +pork's +porn +porn's +porno +porno's +pornographer +pornographer's +pornographers +pornographic +pornography +pornography's +porosity +porosity's +porous +porphyry +porphyry's +porpoise +porpoise's +porpoised +porpoises +porpoising +porridge +porridge's +porringer +porringer's +porringers +port +port's +portability +portability's +portable +portable's +portables +portage +portage's +portaged +portages +portaging +portal +portal's +portals +portcullis +portcullis's +portcullises +ported +portend +portended +portending +portends +portent +portent's +portentous +portentously +portents +porter +porter's +porterhouse +porterhouse's +porterhouses +porters +portfolio +portfolio's +portfolios +porthole +porthole's +portholes +portico +portico's +porticoes +porticos +porting +portion +portion's +portioned +portioning +portions +portlier +portliest +portliness +portliness's +portly +portmanteau +portmanteau's +portmanteaus +portmanteaux +portrait +portrait's +portraitist +portraitist's +portraitists +portraits +portraiture +portraiture's +portray +portrayal +portrayal's +portrayals +portrayed +portraying +portrays +ports +pose +pose's +posed +poser +poser's +posers +poses +poseur +poseur's +poseurs +posh +posher +poshest +posies +posing +posit +posited +positing +position +position's +positional +positioned +positioning +positions +positive +positive's +positively +positives +positivism +positron +positron's +positrons +posits +posse +posse's +posses +possess +possessed +possesses +possessing +possession +possession's +possessions +possessive +possessive's +possessively +possessiveness +possessiveness's +possessives +possessor +possessor's +possessors +possibilities +possibility +possibility's +possible +possible's +possibles +possibly +possum +possum's +possums +post +post's +postage +postage's +postal +postbox +postcard +postcard's +postcards +postcode +postcodes +postdate +postdated +postdates +postdating +postdoc +postdoctoral +posted +poster +poster's +posterior +posterior's +posteriors +posterity +posterity's +posters +postgraduate +postgraduate's +postgraduates +posthaste +posthumous +posthumously +posting +postlude +postlude's +postludes +postman +postman's +postmark +postmark's +postmarked +postmarking +postmarks +postmaster +postmaster's +postmasters +postmen +postmistress +postmistress's +postmistresses +postmodern +postmortem +postmortem's +postmortems +postnatal +postoperative +postpaid +postpartum +postpone +postponed +postponement +postponement's +postponements +postpones +postponing +posts +postscript +postscript's +postscripts +postulate +postulate's +postulated +postulates +postulating +posture +posture's +postured +postures +posturing +postwar +posy +posy's +pot +pot's +potable +potable's +potables +potash +potash's +potassium +potassium's +potato +potato's +potatoes +potbellied +potbellies +potbelly +potbelly's +potboiler +potboiler's +potboilers +potency +potency's +potent +potentate +potentate's +potentates +potential +potential's +potentialities +potentiality +potentiality's +potentially +potentials +potful +potful's +potfuls +potholder +potholder's +potholders +pothole +pothole's +potholes +pothook +pothook's +pothooks +potion +potion's +potions +potluck +potluck's +potlucks +potpie +potpie's +potpies +potpourri +potpourri's +potpourris +pots +potsherd +potsherd's +potsherds +potshot +potshot's +potshots +pottage +pottage's +potted +potter +potter's +pottered +potteries +pottering +potters +pottery +pottery's +pottier +potties +pottiest +potting +potty +potty's +pouch +pouch's +pouched +pouches +pouching +poultice +poultice's +poulticed +poultices +poulticing +poultry +poultry's +pounce +pounce's +pounced +pounces +pouncing +pound +pound's +pounded +pounding +pounds +pour +poured +pouring +pours +pout +pout's +pouted +pouting +pouts +poverty +poverty's +powder +powder's +powdered +powdering +powders +powdery +power +power's +powerboat +powerboat's +powerboats +powered +powerful +powerfully +powerhouse +powerhouse's +powerhouses +powering +powerless +powerlessly +powerlessness +powerlessness's +powers +powwow +powwow's +powwowed +powwowing +powwows +pox +pox's +poxes +practicability +practicability's +practicable +practicably +practical +practical's +practicalities +practicality +practicality's +practically +practicals +practice +practice's +practiced +practices +practicing +practise +practise's +practised +practises +practising +practitioner +practitioner's +practitioners +pragmatic +pragmatic's +pragmatically +pragmatics +pragmatism +pragmatism's +pragmatist +pragmatist's +pragmatists +prairie +prairie's +prairies +praise +praise's +praised +praises +praiseworthiness +praiseworthiness's +praiseworthy +praising +praline +praline's +pralines +pram +prance +prance's +pranced +prancer +prancer's +prancers +prances +prancing +prank +prank's +pranks +prankster +prankster's +pranksters +prate +prate's +prated +prates +pratfall +pratfall's +pratfalls +prating +prattle +prattle's +prattled +prattles +prattling +prawn +prawn's +prawned +prawning +prawns +pray +prayed +prayer +prayer's +prayers +praying +prays +preach +preached +preacher +preacher's +preachers +preaches +preachier +preachiest +preaching +preachy +preamble +preamble's +preambled +preambles +preambling +prearrange +prearranged +prearrangement +prearrangement's +prearranges +prearranging +precarious +precariously +precaution +precaution's +precautionary +precautions +precede +preceded +precedence +precedence's +precedent +precedent's +precedents +precedes +preceding +precept +precept's +preceptor +preceptor's +preceptors +precepts +precinct +precinct's +precincts +preciosity +preciosity's +precious +preciously +preciousness +preciousness's +precipice +precipice's +precipices +precipitant +precipitant's +precipitants +precipitate +precipitate's +precipitated +precipitately +precipitates +precipitating +precipitation +precipitation's +precipitations +precipitous +precipitously +precise +precisely +preciseness +preciseness's +preciser +precises +precisest +precision +precision's +preclude +precluded +precludes +precluding +preclusion +preclusion's +precocious +precociously +precociousness +precociousness's +precocity +precocity's +precognition +preconceive +preconceived +preconceives +preconceiving +preconception +preconception's +preconceptions +precondition +precondition's +preconditioned +preconditioning +preconditions +precursor +precursor's +precursors +predate +predated +predates +predating +predator +predator's +predators +predatory +predecease +predeceased +predeceases +predeceasing +predecessor +predecessor's +predecessors +predefined +predestination +predestination's +predestine +predestined +predestines +predestining +predetermination +predetermination's +predetermine +predetermined +predetermines +predetermining +predicament +predicament's +predicaments +predicate +predicate's +predicated +predicates +predicating +predication +predication's +predicative +predict +predictability +predictable +predictably +predicted +predicting +prediction +prediction's +predictions +predictive +predictor +predicts +predilection +predilection's +predilections +predispose +predisposed +predisposes +predisposing +predisposition +predisposition's +predispositions +predominance +predominance's +predominant +predominantly +predominate +predominated +predominates +predominating +preeminence +preeminence's +preeminent +preeminently +preempt +preempted +preempting +preemption +preemption's +preemptive +preemptively +preempts +preen +preened +preening +preens +preexist +preexisted +preexisting +preexists +prefab +prefab's +prefabbed +prefabbing +prefabricate +prefabricated +prefabricates +prefabricating +prefabrication +prefabrication's +prefabs +preface +preface's +prefaced +prefaces +prefacing +prefatory +prefect +prefect's +prefects +prefecture +prefecture's +prefectures +prefer +preferable +preferably +preference +preference's +preferences +preferential +preferentially +preferment +preferment's +preferred +preferring +prefers +prefigure +prefigured +prefigures +prefiguring +prefix +prefix's +prefixed +prefixes +prefixing +pregnancies +pregnancy +pregnancy's +pregnant +preheat +preheated +preheating +preheats +prehensile +prehistoric +prehistory +prehistory's +prejudge +prejudged +prejudges +prejudging +prejudgment +prejudgment's +prejudgments +prejudice +prejudice's +prejudiced +prejudices +prejudicial +prejudicing +prelate +prelate's +prelates +preliminaries +preliminary +preliminary's +prelude +prelude's +preludes +premarital +premature +prematurely +premeditate +premeditated +premeditates +premeditating +premeditation +premeditation's +premenstrual +premier +premier's +premiere +premiere's +premiered +premieres +premiering +premiers +premise +premise's +premised +premises +premising +premiss +premiss's +premisses +premium +premium's +premiums +premonition +premonition's +premonitions +premonitory +prenatal +preoccupation +preoccupation's +preoccupations +preoccupied +preoccupies +preoccupy +preoccupying +preordain +preordained +preordaining +preordains +prep +prep's +prepackage +prepackaged +prepackages +prepackaging +prepaid +preparation +preparation's +preparations +preparatory +prepare +prepared +preparedness +preparedness's +prepares +preparing +prepay +prepaying +prepayment +prepayment's +prepayments +prepays +preponderance +preponderance's +preponderances +preponderant +preponderate +preponderated +preponderates +preponderating +preposition +preposition's +prepositional +prepositions +prepossess +prepossessed +prepossesses +prepossessing +preposterous +preposterously +prepped +preppie +preppie's +preppier +preppies +preppiest +prepping +preppy +preppy's +preps +prequel +prequel's +prequels +prerecord +prerecorded +prerecording +prerecords +preregister +preregistered +preregistering +preregisters +preregistration +preregistration's +prerequisite +prerequisite's +prerequisites +prerogative +prerogative's +prerogatives +presage +presage's +presaged +presages +presaging +preschool +preschool's +preschooler +preschooler's +preschoolers +preschools +prescience +prescience's +prescient +prescribe +prescribed +prescribes +prescribing +prescription +prescription's +prescriptions +prescriptive +presence +presence's +presences +present +present's +presentable +presentation +presentation's +presentations +presented +presenter +presentiment +presentiment's +presentiments +presenting +presently +presents +preservation +preservation's +preservative +preservative's +preservatives +preserve +preserve's +preserved +preserver +preserver's +preservers +preserves +preserving +preset +presets +presetting +preshrank +preshrink +preshrinking +preshrinks +preshrunk +preshrunken +preside +presided +presidencies +presidency +presidency's +president +president's +presidential +presidents +presides +presiding +press +press's +pressed +presses +pressing +pressing's +pressings +pressman +pressman's +pressmen +pressure +pressure's +pressured +pressures +pressuring +pressurization +pressurization's +pressurize +pressurized +pressurizes +pressurizing +prestige +prestige's +prestigious +presto +presto's +prestos +presumable +presumably +presume +presumed +presumes +presuming +presumption +presumption's +presumptions +presumptive +presumptuous +presumptuously +presumptuousness +presumptuousness's +presuppose +presupposed +presupposes +presupposing +presupposition +presupposition's +presuppositions +preteen +preteen's +preteens +pretence +pretence's +pretences +pretend +pretended +pretender +pretender's +pretenders +pretending +pretends +pretense +pretense's +pretenses +pretension +pretension's +pretensions +pretentious +pretentiously +pretentiousness +pretentiousness's +preterit +preterit's +preterite +preterite's +preterites +preterits +preternatural +pretext +pretext's +pretexts +prettied +prettier +pretties +prettiest +prettified +prettifies +prettify +prettifying +prettily +prettiness +prettiness's +pretty +pretty's +prettying +pretzel +pretzel's +pretzels +prevail +prevailed +prevailing +prevails +prevalence +prevalence's +prevalent +prevaricate +prevaricated +prevaricates +prevaricating +prevarication +prevarication's +prevarications +prevaricator +prevaricator's +prevaricators +prevent +preventable +preventative +preventative's +preventatives +prevented +preventible +preventing +prevention +prevention's +preventive +preventive's +preventives +prevents +preview +preview's +previewed +previewer +previewers +previewing +previews +previous +previously +prevue +prevue's +prevues +prewar +prey +prey's +preyed +preying +preys +price +price's +priced +priceless +prices +pricey +pricier +priciest +pricing +prick +prick's +pricked +pricking +prickle +prickle's +prickled +prickles +pricklier +prickliest +prickling +prickly +pricks +pricy +pride +pride's +prided +prides +priding +pried +pries +priest +priest's +priestess +priestess's +priestesses +priesthood +priesthood's +priesthoods +priestlier +priestliest +priestly +priests +prig +prig's +priggish +prigs +prim +primacy +primacy's +primaeval +primal +primaries +primarily +primary +primary's +primate +primate's +primates +prime +prime's +primed +primer +primer's +primers +primes +primeval +priming +primitive +primitive's +primitively +primitives +primly +primmer +primmest +primness +primness's +primogeniture +primogeniture's +primordial +primp +primped +primping +primps +primrose +primrose's +primroses +prince +prince's +princelier +princeliest +princely +princes +princess +princess's +princesses +principal +principal's +principalities +principality +principality's +principally +principals +principle +principle's +principled +principles +print +print's +printable +printed +printer +printer's +printers +printing +printing's +printings +printout +printout's +printouts +prints +prior +prior's +prioress +prioress's +prioresses +priories +priorities +prioritize +prioritized +prioritizes +prioritizing +priority +priority's +priors +priory +priory's +prism +prism's +prismatic +prisms +prison +prison's +prisoner +prisoner's +prisoners +prisons +prissier +prissiest +prissiness +prissiness's +prissy +pristine +prithee +privacy +privacy's +private +private's +privateer +privateer's +privateers +privately +privater +privates +privatest +privation +privation's +privations +privatization +privatization's +privatizations +privatize +privatized +privatizes +privatizing +privet +privet's +privets +privier +privies +priviest +privilege +privilege's +privileged +privileges +privileging +privy +privy's +prize +prize's +prized +prizefight +prizefight's +prizefighter +prizefighter's +prizefighters +prizefighting +prizefights +prizes +prizing +pro +pro's +proactive +probabilistic +probabilities +probability +probability's +probable +probable's +probables +probably +probate +probate's +probated +probates +probating +probation +probation's +probationary +probationer +probationer's +probationers +probe +probe's +probed +probes +probing +probity +probity's +problem +problem's +problematic +problematical +problematically +problems +proboscides +proboscis +proboscis's +proboscises +procedural +procedure +procedure's +procedures +proceed +proceeded +proceeding +proceeding's +proceedings +proceeds +proceeds's +process +process's +processed +processes +processing +procession +procession's +processional +processional's +processionals +processioned +processioning +processions +processor +processor's +processors +proclaim +proclaimed +proclaiming +proclaims +proclamation +proclamation's +proclamations +proclivities +proclivity +proclivity's +procrastinate +procrastinated +procrastinates +procrastinating +procrastination +procrastination's +procrastinator +procrastinator's +procrastinators +procreate +procreated +procreates +procreating +procreation +procreation's +procreative +proctor +proctor's +proctored +proctoring +proctors +procurator +procurator's +procurators +procure +procured +procurement +procurement's +procurer +procurer's +procurers +procures +procuring +prod +prod's +prodded +prodding +prodigal +prodigal's +prodigality +prodigality's +prodigals +prodigies +prodigious +prodigiously +prodigy +prodigy's +prods +produce +produce's +produced +producer +producer's +producers +produces +producing +product +product's +production +production's +productions +productive +productively +productiveness +productiveness's +productivity +productivity's +products +prof +prof's +profanation +profanation's +profanations +profane +profaned +profanely +profanes +profaning +profanities +profanity +profanity's +profess +professed +professes +professing +profession +profession's +professional +professional's +professionalism +professionalism's +professionally +professionals +professions +professor +professor's +professorial +professors +professorship +professorship's +professorships +proffer +proffer's +proffered +proffering +proffers +proficiency +proficiency's +proficient +proficient's +proficiently +proficients +profile +profile's +profiled +profiles +profiling +profit +profit's +profitability +profitability's +profitable +profitably +profited +profiteer +profiteer's +profiteered +profiteering +profiteers +profiting +profits +profligacy +profligacy's +profligate +profligate's +profligates +proforma +profound +profounder +profoundest +profoundly +profs +profundities +profundity +profundity's +profuse +profusely +profusion +profusion's +profusions +progenitor +progenitor's +progenitors +progeny +progeny's +progesterone +progesterone's +prognoses +prognosis +prognosis's +prognostic +prognostic's +prognosticate +prognosticated +prognosticates +prognosticating +prognostication +prognostication's +prognostications +prognosticator +prognosticator's +prognosticators +prognostics +program +program's +programed +programer +programer's +programers +programing +programmable +programmable's +programmables +programmed +programmer +programmer's +programmers +programming +programming's +programs +progress +progress's +progressed +progresses +progressing +progression +progression's +progressions +progressive +progressive's +progressively +progressives +prohibit +prohibited +prohibiting +prohibition +prohibition's +prohibitionist +prohibitionist's +prohibitionists +prohibitions +prohibitive +prohibitively +prohibitory +prohibits +project +project's +projected +projectile +projectile's +projectiles +projecting +projection +projection's +projectionist +projectionist's +projectionists +projections +projector +projector's +projectors +projects +proletarian +proletarian's +proletarians +proletariat +proletariat's +proliferate +proliferated +proliferates +proliferating +proliferation +proliferation's +prolific +prolifically +prolix +prolixity +prolixity's +prolog +prolog's +prologs +prologue +prologue's +prologues +prolong +prolongation +prolongation's +prolongations +prolonged +prolonging +prolongs +prom +prom's +promenade +promenade's +promenaded +promenades +promenading +prominence +prominence's +prominent +prominently +promiscuity +promiscuity's +promiscuous +promiscuously +promise +promise's +promised +promises +promising +promisingly +promissory +promo +promo's +promontories +promontory +promontory's +promos +promote +promoted +promoter +promoter's +promoters +promotes +promoting +promotion +promotion's +promotional +promotions +prompt +prompt's +prompted +prompter +prompter's +prompters +promptest +prompting +prompting's +promptings +promptly +promptness +promptness's +prompts +proms +promulgate +promulgated +promulgates +promulgating +promulgation +promulgation's +prone +proneness +proneness's +prong +prong's +pronged +pronghorn +pronghorn's +pronghorns +prongs +pronoun +pronoun's +pronounce +pronounceable +pronounced +pronouncement +pronouncement's +pronouncements +pronounces +pronouncing +pronouns +pronto +pronunciation +pronunciation's +pronunciations +proof +proof's +proofed +proofing +proofread +proofreader +proofreader's +proofreaders +proofreading +proofreads +proofs +prop +prop's +propaganda +propaganda's +propagandist +propagandist's +propagandists +propagandize +propagandized +propagandizes +propagandizing +propagate +propagated +propagates +propagating +propagation +propagation's +propane +propane's +propel +propellant +propellant's +propellants +propelled +propellent +propellent's +propellents +propeller +propeller's +propellers +propelling +propels +propensities +propensity +propensity's +proper +proper's +properer +properest +properly +propertied +properties +property +property's +prophecies +prophecy +prophecy's +prophesied +prophesies +prophesy +prophesy's +prophesying +prophet +prophet's +prophetess +prophetess's +prophetesses +prophetic +prophetically +prophets +prophylactic +prophylactic's +prophylactics +prophylaxis +prophylaxis's +propinquity +propinquity's +propitiate +propitiated +propitiates +propitiating +propitiation +propitiation's +propitiatory +propitious +proponent +proponent's +proponents +proportion +proportion's +proportional +proportionality +proportionally +proportionals +proportionate +proportionately +proportioned +proportioning +proportions +proposal +proposal's +proposals +propose +proposed +proposer +proposes +proposing +proposition +proposition's +propositional +propositioned +propositioning +propositions +propound +propounded +propounding +propounds +propped +propping +proprietaries +proprietary +proprietary's +proprietor +proprietor's +proprietors +proprietorship +proprietorship's +proprietress +proprietress's +proprietresses +propriety +propriety's +props +propulsion +propulsion's +propulsive +prorate +prorated +prorates +prorating +pros +prosaic +prosaically +proscenia +proscenium +proscenium's +prosceniums +proscribe +proscribed +proscribes +proscribing +proscription +proscription's +proscriptions +prose +prose's +prosecute +prosecuted +prosecutes +prosecuting +prosecution +prosecution's +prosecutions +prosecutor +prosecutor's +prosecutors +proselyte +proselyte's +proselyted +proselytes +proselyting +proselytize +proselytized +proselytizes +proselytizing +prosier +prosiest +prosodies +prosody +prosody's +prospect +prospect's +prospected +prospecting +prospective +prospector +prospector's +prospectors +prospects +prospectus +prospectus's +prospectuses +prosper +prospered +prospering +prosperity +prosperity's +prosperous +prosperously +prospers +prostate +prostate's +prostates +prostheses +prosthesis +prosthesis's +prosthetic +prostitute +prostitute's +prostituted +prostitutes +prostituting +prostitution +prostitution's +prostrate +prostrated +prostrates +prostrating +prostration +prostration's +prostrations +prosy +protagonist +protagonist's +protagonists +protean +protect +protected +protecting +protection +protection's +protections +protective +protectively +protectiveness +protectiveness's +protector +protector's +protectorate +protectorate's +protectorates +protectors +protects +protein +protein's +proteins +protest +protest's +protestant +protestants +protestation +protestation's +protestations +protested +protester +protester's +protesters +protesting +protestor +protestor's +protestors +protests +protocol +protocol's +protocols +proton +proton's +protons +protoplasm +protoplasm's +protoplasmic +prototype +prototype's +prototypes +prototyping +protozoa +protozoan +protozoan's +protozoans +protozoon +protozoon's +protract +protracted +protracting +protraction +protraction's +protractor +protractor's +protractors +protracts +protrude +protruded +protrudes +protruding +protrusion +protrusion's +protrusions +protuberance +protuberance's +protuberances +protuberant +protégé +protégé's +protégés +proud +prouder +proudest +proudly +provable +provably +prove +proved +proven +provenance +provenance's +provender +provender's +proverb +proverb's +proverbial +proverbially +proverbs +proves +provide +provided +providence +providence's +provident +providential +providentially +providently +provider +provider's +providers +provides +providing +province +province's +provinces +provincial +provincial's +provincialism +provincialism's +provincials +proving +provision +provision's +provisional +provisionally +provisioned +provisioning +provisions +proviso +proviso's +provisoes +provisos +provocation +provocation's +provocations +provocative +provocatively +provoke +provoked +provokes +provoking +provost +provost's +provosts +prow +prow's +prowess +prowess's +prowl +prowl's +prowled +prowler +prowler's +prowlers +prowling +prowls +prows +proxies +proximity +proximity's +proxy +proxy's +prude +prude's +prudence +prudence's +prudent +prudential +prudently +prudery +prudery's +prudes +prudish +prudishly +prune +prune's +pruned +prunes +pruning +prurience +prurience's +prurient +pry +pry's +prying +précis +précis's +précised +précising +psalm +psalm's +psalmist +psalmist's +psalmists +psalms +pseudo +pseudonym +pseudonym's +pseudonyms +pshaw +pshaw's +pshaws +psoriasis +psoriasis's +psst +psych +psych's +psyche +psyche's +psyched +psychedelic +psychedelic's +psychedelics +psyches +psychiatric +psychiatrist +psychiatrist's +psychiatrists +psychiatry +psychiatry's +psychic +psychic's +psychical +psychically +psychics +psyching +psycho +psycho's +psychoanalysis +psychoanalysis's +psychoanalyst +psychoanalyst's +psychoanalysts +psychoanalyze +psychoanalyzed +psychoanalyzes +psychoanalyzing +psychobabble +psychobabble's +psychogenic +psychokinesis +psychological +psychologically +psychologies +psychologist +psychologist's +psychologists +psychology +psychology's +psychopath +psychopath's +psychopathic +psychopaths +psychos +psychoses +psychosis +psychosis's +psychosomatic +psychotherapies +psychotherapist +psychotherapist's +psychotherapists +psychotherapy +psychotherapy's +psychotic +psychotic's +psychotics +psychs +ptarmigan +ptarmigan's +ptarmigans +pterodactyl +pterodactyl's +pterodactyls +ptomaine +ptomaine's +ptomaines +pub +pub's +puberty +puberty's +pubescence +pubescence's +pubescent +pubic +public +public's +publican +publican's +publicans +publication +publication's +publications +publicist +publicist's +publicists +publicity +publicity's +publicize +publicized +publicizes +publicizing +publicly +publish +publishable +published +publisher +publisher's +publishers +publishes +publishing +publishing's +pubs +puck +puck's +pucker +pucker's +puckered +puckering +puckers +puckish +pucks +pudding +pudding's +puddings +puddle +puddle's +puddled +puddles +puddling +pudgier +pudgiest +pudgy +pueblo +pueblo's +pueblos +puerile +puerility +puerility's +puff +puff's +puffball +puffball's +puffballs +puffed +puffer +puffier +puffiest +puffin +puffin's +puffiness +puffiness's +puffing +puffins +puffs +puffy +pug +pug's +pugilism +pugilism's +pugilist +pugilist's +pugilistic +pugilists +pugnacious +pugnaciously +pugnacity +pugnacity's +pugs +puke +puke's +puked +pukes +puking +pulchritude +pulchritude's +pull +pull's +pullback +pullback's +pullbacks +pulled +puller +puller's +pullers +pullet +pullet's +pullets +pulley +pulley's +pulleys +pulling +pullout +pullout's +pullouts +pullover +pullover's +pullovers +pulls +pulmonary +pulp +pulp's +pulped +pulpier +pulpiest +pulping +pulpit +pulpit's +pulpits +pulps +pulpy +pulsar +pulsar's +pulsars +pulsate +pulsated +pulsates +pulsating +pulsation +pulsation's +pulsations +pulse +pulse's +pulsed +pulses +pulsing +pulverization +pulverization's +pulverize +pulverized +pulverizes +pulverizing +puma +puma's +pumas +pumice +pumice's +pumices +pummel +pummeled +pummeling +pummelled +pummelling +pummels +pump +pump's +pumped +pumpernickel +pumpernickel's +pumping +pumpkin +pumpkin's +pumpkins +pumps +pun +pun's +punch +punch's +punched +punches +punchier +punchiest +punching +punchline +punchy +punctilious +punctiliously +punctual +punctuality +punctuality's +punctually +punctuate +punctuated +punctuates +punctuating +punctuation +punctuation's +puncture +puncture's +punctured +punctures +puncturing +pundit +pundit's +pundits +pungency +pungency's +pungent +pungently +punier +puniest +punish +punishable +punished +punishes +punishing +punishment +punishment's +punishments +punitive +punk +punk's +punker +punkest +punks +punned +punning +puns +punster +punster's +punsters +punt +punt's +punted +punter +punter's +punters +punting +punts +puny +pup +pup's +pupa +pupa's +pupae +pupal +pupas +pupil +pupil's +pupils +pupped +puppet +puppet's +puppeteer +puppeteer's +puppeteers +puppetry +puppetry's +puppets +puppies +pupping +puppy +puppy's +pups +purblind +purchasable +purchase +purchase's +purchased +purchaser +purchaser's +purchasers +purchases +purchasing +pure +purebred +purebred's +purebreds +puree +puree's +pureed +pureeing +purees +purely +pureness +pureness's +purer +purest +purgative +purgative's +purgatives +purgatorial +purgatories +purgatory +purgatory's +purge +purge's +purged +purges +purging +purification +purification's +purified +purifier +purifier's +purifiers +purifies +purify +purifying +purism +purism's +purist +purist's +purists +puritan +puritan's +puritanical +puritanically +puritanism +puritanism's +puritans +purity +purity's +purl +purl's +purled +purling +purloin +purloined +purloining +purloins +purls +purple +purple's +purpler +purples +purplest +purplish +purport +purport's +purported +purportedly +purporting +purports +purpose +purpose's +purposed +purposeful +purposefully +purposeless +purposely +purposes +purposing +purr +purr's +purred +purring +purrs +purse +purse's +pursed +purser +purser's +pursers +purses +pursing +pursuance +pursuance's +pursuant +pursue +pursued +pursuer +pursuer's +pursuers +pursues +pursuing +pursuit +pursuit's +pursuits +purulence +purulence's +purulent +purvey +purveyed +purveying +purveyor +purveyor's +purveyors +purveys +purview +purview's +pus +pus's +push +push's +pushcart +pushcart's +pushcarts +pushed +pusher +pusher's +pushers +pushes +pushier +pushiest +pushiness +pushiness's +pushing +pushover +pushover's +pushovers +pushup +pushup's +pushups +pushy +pusillanimity +pusillanimity's +pusillanimous +puss +puss's +pusses +pussier +pussies +pussiest +pussy +pussy's +pussycat +pussycat's +pussycats +pussyfoot +pussyfooted +pussyfooting +pussyfoots +pustule +pustule's +pustules +put +put's +putative +putrefaction +putrefaction's +putrefied +putrefies +putrefy +putrefying +putrescence +putrescence's +putrescent +putrid +puts +putsch +putsch's +putsches +putt +putt's +putted +putter +putter's +puttered +puttering +putters +puttied +putties +putting +putts +putty +putty's +puttying +puzzle +puzzle's +puzzled +puzzlement +puzzlement's +puzzler +puzzler's +puzzlers +puzzles +puzzling +pygmies +pygmy +pygmy's +pylon +pylon's +pylons +pyorrhea +pyorrhea's +pyramid +pyramid's +pyramidal +pyramided +pyramiding +pyramids +pyre +pyre's +pyres +pyrite +pyrite's +pyromania +pyromania's +pyromaniac +pyromaniac's +pyromaniacs +pyrotechnic +pyrotechnics +pyrotechnics's +python +python's +pythons +pyx +pyx's +pyxes +q +qua +quack +quack's +quacked +quackery +quackery's +quacking +quacks +quad +quad's +quadrangle +quadrangle's +quadrangles +quadrangular +quadrant +quadrant's +quadrants +quadraphonic +quadratic +quadrature +quadrennial +quadriceps +quadriceps's +quadricepses +quadrilateral +quadrilateral's +quadrilaterals +quadrille +quadrille's +quadrilles +quadriphonic +quadriplegia +quadriplegia's +quadriplegic +quadriplegic's +quadriplegics +quadruped +quadruped's +quadrupeds +quadruple +quadruple's +quadrupled +quadruples +quadruplet +quadruplet's +quadruplets +quadruplicate +quadruplicate's +quadruplicated +quadruplicates +quadruplicating +quadrupling +quads +quaff +quaff's +quaffed +quaffing +quaffs +quagmire +quagmire's +quagmires +quahaug +quahaug's +quahaugs +quahog +quahog's +quahogs +quail +quail's +quailed +quailing +quails +quaint +quainter +quaintest +quaintly +quaintness +quaintness's +quake +quake's +quaked +quakes +quaking +qualification +qualification's +qualifications +qualified +qualifier +qualifier's +qualifiers +qualifies +qualify +qualifying +qualitative +qualitatively +qualities +quality +quality's +qualm +qualm's +qualms +quandaries +quandary +quandary's +quanta +quantified +quantifier +quantifier's +quantifiers +quantifies +quantify +quantifying +quantitative +quantities +quantity +quantity's +quantum +quantum's +quarantine +quarantine's +quarantined +quarantines +quarantining +quark +quark's +quarks +quarrel +quarrel's +quarreled +quarreling +quarrelled +quarrelling +quarrels +quarrelsome +quarried +quarries +quarry +quarry's +quarrying +quart +quart's +quarter +quarter's +quarterback +quarterback's +quarterbacked +quarterbacking +quarterbacks +quarterdeck +quarterdeck's +quarterdecks +quartered +quarterfinal +quarterfinal's +quarterfinals +quartering +quarterlies +quarterly +quarterly's +quartermaster +quartermaster's +quartermasters +quarters +quartet +quartet's +quartets +quartette +quartette's +quartettes +quarto +quarto's +quartos +quarts +quartz +quartz's +quasar +quasar's +quasars +quash +quashed +quashes +quashing +quasi +quatrain +quatrain's +quatrains +quaver +quaver's +quavered +quavering +quavers +quavery +quay +quay's +quays +queasier +queasiest +queasily +queasiness +queasiness's +queasy +queen +queen's +queened +queening +queenlier +queenliest +queenly +queens +queer +queer's +queered +queerer +queerest +queering +queerly +queerness +queerness's +queers +quell +quelled +quelling +quells +quench +quenched +quenches +quenching +queried +queries +querulous +querulously +query +query's +querying +quest +quest's +quested +questing +question +question's +questionable +questionably +questioned +questioner +questioner's +questioners +questioning +questioningly +questionnaire +questionnaire's +questionnaires +questions +quests +queue +queue's +queued +queues +queuing +quibble +quibble's +quibbled +quibbler +quibbler's +quibblers +quibbles +quibbling +quiche +quiche's +quiches +quick +quick's +quicken +quickened +quickening +quickens +quicker +quickest +quickie +quickie's +quickies +quicklime +quicklime's +quickly +quickness +quickness's +quicksand +quicksand's +quicksands +quicksilver +quicksilver's +quid +quid's +quids +quiescence +quiescence's +quiescent +quiet +quiet's +quieted +quieter +quietest +quieting +quietly +quietness +quietness's +quiets +quietude +quietude's +quietus +quietus's +quietuses +quill +quill's +quills +quilt +quilt's +quilted +quilter +quilter's +quilters +quilting +quilting's +quilts +quince +quince's +quinces +quinine +quinine's +quintessence +quintessence's +quintessences +quintessential +quintet +quintet's +quintets +quintuple +quintuple's +quintupled +quintuples +quintuplet +quintuplet's +quintuplets +quintupling +quip +quip's +quipped +quipping +quips +quire +quire's +quires +quirk +quirk's +quirked +quirkier +quirkiest +quirking +quirks +quirky +quisling +quisling's +quislings +quit +quite +quits +quitted +quitter +quitter's +quitters +quitting +quiver +quiver's +quivered +quivering +quivers +quixotic +quiz +quiz's +quizzed +quizzes +quizzical +quizzically +quizzing +quoit +quoit's +quoited +quoiting +quoits +quondam +quorum +quorum's +quorums +quota +quota's +quotable +quotas +quotation +quotation's +quotations +quote +quote's +quoted +quotes +quoth +quotidian +quotient +quotient's +quotients +quoting +r +rabbi +rabbi's +rabbinate +rabbinate's +rabbinical +rabbis +rabbit +rabbit's +rabbited +rabbiting +rabbits +rabble +rabble's +rabbles +rabid +rabies +rabies's +raccoon +raccoon's +raccoons +race +race's +racecourse +racecourse's +racecourses +raced +racehorse +racehorse's +racehorses +raceme +raceme's +racemes +racer +racer's +racers +races +racetrack +racetrack's +racetracks +raceway +raceway's +raceways +racial +racially +racier +raciest +racily +raciness +raciness's +racing +racing's +racism +racism's +racist +racist's +racists +rack +rack's +racked +racket +racket's +racketed +racketeer +racketeer's +racketeered +racketeering +racketeering's +racketeers +racketing +rackets +racking +racks +raconteur +raconteur's +raconteurs +racoon +racoon's +racoons +racquet +racquet's +racquetball +racquetball's +racquetballs +racquets +racy +radar +radar's +radars +radial +radial's +radially +radials +radiance +radiance's +radiant +radiantly +radiate +radiated +radiates +radiating +radiation +radiation's +radiations +radiator +radiator's +radiators +radical +radical's +radicalism +radicalism's +radically +radicals +radii +radio +radio's +radioactive +radioactivity +radioactivity's +radioed +radiogram +radiogram's +radiograms +radioing +radioisotope +radioisotope's +radioisotopes +radiologist +radiologist's +radiologists +radiology +radiology's +radios +radiotelephone +radiotelephone's +radiotelephones +radiotherapist +radiotherapist's +radiotherapists +radiotherapy +radiotherapy's +radish +radish's +radishes +radium +radium's +radius +radius's +radiuses +radon +radon's +raffia +raffia's +raffish +raffle +raffle's +raffled +raffles +raffling +raft +raft's +rafted +rafter +rafter's +rafters +rafting +rafts +rag +rag's +raga +raga's +ragamuffin +ragamuffin's +ragamuffins +ragas +rage +rage's +raged +rages +ragged +raggeder +raggedest +raggedier +raggediest +raggedly +raggedness +raggedness's +raggedy +ragging +raging +raglan +raglan's +raglans +ragout +ragout's +ragouts +rags +ragtag +ragtags +ragtime +ragtime's +ragweed +ragweed's +raid +raid's +raided +raider +raider's +raiders +raiding +raids +rail +rail's +railed +railing +railing's +railings +railleries +raillery +raillery's +railroad +railroad's +railroaded +railroading +railroads +rails +railway +railway's +railways +raiment +raiment's +rain +rain's +rainbow +rainbow's +rainbows +raincoat +raincoat's +raincoats +raindrop +raindrop's +raindrops +rained +rainfall +rainfall's +rainfalls +rainforest +rainier +rainiest +raining +rainmaker +rainmaker's +rainmakers +rains +rainstorm +rainstorm's +rainstorms +rainwater +rainwater's +rainy +raise +raise's +raised +raises +raisin +raisin's +raising +raisins +raja +raja's +rajah +rajah's +rajahs +rajas +rake +rake's +raked +rakes +raking +rakish +rakishly +rakishness +rakishness's +rallied +rallies +rally +rally's +rallying +ram +ram's +ramble +ramble's +rambled +rambler +rambler's +ramblers +rambles +rambling +rambunctious +rambunctiousness +rambunctiousness's +ramification +ramification's +ramifications +ramified +ramifies +ramify +ramifying +rammed +ramming +ramp +ramp's +rampage +rampage's +rampaged +rampages +rampaging +rampant +rampantly +rampart +rampart's +ramparts +ramps +ramrod +ramrod's +ramrodded +ramrodding +ramrods +rams +ramshackle +ran +ranch +ranch's +ranched +rancher +rancher's +ranchers +ranches +ranching +ranching's +rancid +rancidity +rancidity's +rancor +rancor's +rancorous +rancorously +randier +randiest +random +randomize +randomized +randomizes +randomizing +randomly +randomness +randomness's +randy +rang +range +range's +ranged +ranger +ranger's +rangers +ranges +rangier +rangiest +ranginess +ranginess's +ranging +rangy +rank +rank's +ranked +ranker +rankest +ranking +ranking's +rankings +rankle +rankled +rankles +rankling +rankness +rankness's +ranks +ransack +ransacked +ransacking +ransacks +ransom +ransom's +ransomed +ransoming +ransoms +rant +rant's +ranted +ranter +ranting +rants +rap +rap's +rapacious +rapaciously +rapaciousness +rapaciousness's +rapacity +rapacity's +rape +rape's +raped +rapes +rapid +rapid's +rapider +rapidest +rapidity +rapidity's +rapidly +rapids +rapier +rapier's +rapiers +rapine +rapine's +raping +rapist +rapist's +rapists +rapped +rapper +rapper's +rappers +rapping +rapport +rapport's +rapports +rapprochement +rapprochement's +rapprochements +raps +rapscallion +rapscallion's +rapscallions +rapt +rapture +rapture's +raptures +rapturous +rare +rared +rarefied +rarefies +rarefy +rarefying +rarely +rareness +rareness's +rarer +rares +rarest +raring +rarities +rarity +rarity's +rascal +rascal's +rascally +rascals +rash +rash's +rasher +rasher's +rashers +rashes +rashest +rashly +rashness +rashness's +rasp +rasp's +raspberries +raspberry +raspberry's +rasped +raspier +raspiest +rasping +rasps +raspy +raster +rat +rat's +ratchet +ratchet's +ratcheted +ratcheting +ratchets +rate +rate's +rated +rates +rather +rathskeller +rathskeller's +rathskellers +ratification +ratification's +ratified +ratifies +ratify +ratifying +rating +rating's +ratings +ratio +ratio's +ration +ration's +rational +rational's +rationale +rationale's +rationales +rationalism +rationalism's +rationalist +rationalist's +rationalistic +rationalists +rationality +rationality's +rationalization +rationalization's +rationalizations +rationalize +rationalized +rationalizes +rationalizing +rationally +rationals +rationed +rationing +rations +ratios +rats +rattan +rattan's +rattans +ratted +rattier +rattiest +ratting +rattle +rattle's +rattled +rattler +rattler's +rattlers +rattles +rattlesnake +rattlesnake's +rattlesnakes +rattletrap +rattletrap's +rattletraps +rattling +rattlings +rattrap +rattrap's +rattraps +ratty +raucous +raucously +raucousness +raucousness's +raunchier +raunchiest +raunchiness +raunchiness's +raunchy +ravage +ravage's +ravaged +ravages +ravaging +rave +rave's +raved +ravel +ravel's +raveled +raveling +ravelled +ravelling +ravels +raven +raven's +ravened +ravening +ravenous +ravenously +ravens +raves +ravine +ravine's +ravines +raving +raving's +ravings +ravioli +ravioli's +raviolis +ravish +ravished +ravishes +ravishing +ravishingly +ravishment +ravishment's +raw +raw's +rawboned +rawer +rawest +rawhide +rawhide's +rawness +rawness's +ray +ray's +rayon +rayon's +rays +raze +razed +razes +razing +razor +razor's +razors +razz +razz's +razzed +razzes +razzing +re +re's +reach +reach's +reachable +reached +reaches +reaching +react +reacted +reacting +reaction +reaction's +reactionaries +reactionary +reactionary's +reactions +reactivate +reactivated +reactivates +reactivating +reactivation +reactivation's +reactive +reactor +reactor's +reactors +reacts +read +read's +readabilities +readability +readability's +readable +reader +reader's +readers +readership +readership's +readerships +readied +readier +readies +readiest +readily +readiness +readiness's +reading +reading's +readings +readjust +readjusted +readjusting +readjustment +readjustment's +readjustments +readjusts +readmit +readmits +readmitted +readmitting +readout +readout's +readouts +reads +ready +readying +reaffirm +reaffirmed +reaffirming +reaffirms +reagent +reagent's +reagents +real +real's +realer +reales +realest +realign +realism +realism's +realist +realist's +realistic +realistically +realists +realities +reality +reality's +realizable +realization +realization's +realize +realized +realizes +realizing +reallocate +reallocated +reallocates +reallocating +reallocation +really +realm +realm's +realms +reals +realtor +realtor's +realtors +realty +realty's +ream +ream's +reamed +reamer +reamer's +reamers +reaming +reams +reanimate +reanimated +reanimates +reanimating +reap +reaped +reaper +reaper's +reapers +reaping +reappear +reappearance +reappearance's +reappearances +reappeared +reappearing +reappears +reapplied +reapplies +reapply +reapplying +reappoint +reappointed +reappointing +reappointment +reappointment's +reappoints +reapportion +reapportioned +reapportioning +reapportionment +reapportionment's +reapportions +reappraisal +reappraisal's +reappraisals +reappraise +reappraised +reappraises +reappraising +reaps +rear +rear's +reared +rearing +rearm +rearmament +rearmament's +rearmed +rearming +rearmost +rearms +rearrange +rearranged +rearrangement +rearrangement's +rearrangements +rearranges +rearranging +rears +rearward +rearwards +reason +reason's +reasonable +reasonableness +reasonableness's +reasonably +reasoned +reasoning +reasoning's +reasons +reassemble +reassembled +reassembles +reassembling +reassert +reasserted +reasserting +reasserts +reassess +reassessed +reassesses +reassessing +reassessment +reassessment's +reassessments +reassign +reassigned +reassigning +reassigns +reassurance +reassurance's +reassurances +reassure +reassured +reassures +reassuring +reassuringly +reawaken +reawakened +reawakening +reawakens +rebate +rebate's +rebated +rebates +rebating +rebel +rebel's +rebelled +rebelling +rebellion +rebellion's +rebellions +rebellious +rebelliously +rebelliousness +rebelliousness's +rebels +rebind +rebinding +rebinds +rebirth +rebirth's +rebirths +reborn +rebound +rebound's +rebounded +rebounding +rebounds +rebroadcast +rebroadcast's +rebroadcasted +rebroadcasting +rebroadcasts +rebuff +rebuff's +rebuffed +rebuffing +rebuffs +rebuild +rebuilding +rebuilds +rebuilt +rebuke +rebuke's +rebuked +rebukes +rebuking +rebus +rebus's +rebuses +rebut +rebuts +rebuttal +rebuttal's +rebuttals +rebutted +rebutting +recalcitrance +recalcitrance's +recalcitrant +recall +recall's +recalled +recalling +recalls +recant +recantation +recantation's +recantations +recanted +recanting +recants +recap +recap's +recapitulate +recapitulated +recapitulates +recapitulating +recapitulation +recapitulation's +recapitulations +recapped +recapping +recaps +recapture +recapture's +recaptured +recaptures +recapturing +recast +recast's +recasting +recasts +recede +receded +recedes +receding +receipt +receipt's +receipted +receipting +receipts +receivable +receive +received +receiver +receiver's +receivers +receivership +receivership's +receives +receiving +recent +recenter +recentest +recently +receptacle +receptacle's +receptacles +reception +reception's +receptionist +receptionist's +receptionists +receptions +receptive +receptively +receptiveness +receptiveness's +receptivity +receptivity's +receptor +receptor's +receptors +recess +recess's +recessed +recesses +recessing +recession +recession's +recessional +recessional's +recessionals +recessions +recessive +recessive's +recessives +recharge +recharge's +rechargeable +recharged +recharges +recharging +recheck +recheck's +rechecked +rechecking +rechecks +recherché +recidivism +recidivism's +recidivist +recidivist's +recidivists +recipe +recipe's +recipes +recipient +recipient's +recipients +reciprocal +reciprocal's +reciprocally +reciprocals +reciprocate +reciprocated +reciprocates +reciprocating +reciprocation +reciprocation's +reciprocity +reciprocity's +recital +recital's +recitals +recitation +recitation's +recitations +recitative +recitative's +recitatives +recite +recited +recites +reciting +reckless +recklessly +recklessness +recklessness's +reckon +reckoned +reckoning +reckoning's +reckonings +reckons +reclaim +reclaimed +reclaiming +reclaims +reclamation +reclamation's +reclassified +reclassifies +reclassify +reclassifying +recline +reclined +recliner +recliner's +recliners +reclines +reclining +recluse +recluse's +recluses +reclusive +recognition +recognition's +recognizable +recognizably +recognizance +recognizance's +recognize +recognized +recognizer +recognizes +recognizing +recoil +recoil's +recoiled +recoiling +recoils +recollect +recollected +recollecting +recollection +recollection's +recollections +recollects +recombination +recombine +recombined +recombines +recombining +recommence +recommenced +recommences +recommencing +recommend +recommendation +recommendation's +recommendations +recommended +recommending +recommends +recompense +recompense's +recompensed +recompenses +recompensing +recompilation +recompile +recompiled +recompiling +reconcilable +reconcile +reconciled +reconciles +reconciliation +reconciliation's +reconciliations +reconciling +recondite +recondition +reconditioned +reconditioning +reconditions +reconfiguration +reconfigure +reconfigured +reconnaissance +reconnaissance's +reconnaissances +reconnect +reconnected +reconnecting +reconnects +reconnoiter +reconnoitered +reconnoitering +reconnoiters +reconquer +reconquered +reconquering +reconquers +reconsider +reconsideration +reconsideration's +reconsidered +reconsidering +reconsiders +reconstitute +reconstituted +reconstitutes +reconstituting +reconstruct +reconstructed +reconstructing +reconstruction +reconstruction's +reconstructions +reconstructs +reconvene +reconvened +reconvenes +reconvening +recopied +recopies +recopy +recopying +record +record's +recorded +recorder +recorder's +recorders +recording +recording's +recordings +records +recount +recount's +recounted +recounting +recounts +recoup +recouped +recouping +recoups +recourse +recourse's +recover +recoverable +recovered +recoveries +recovering +recovers +recovery +recovery's +recreant +recreant's +recreants +recreate +recreated +recreates +recreating +recreation +recreation's +recreational +recreations +recriminate +recriminated +recriminates +recriminating +recrimination +recrimination's +recriminations +recrudescence +recrudescence's +recruit +recruit's +recruited +recruiter +recruiter's +recruiters +recruiting +recruitment +recruitment's +recruits +recta +rectal +rectangle +rectangle's +rectangles +rectangular +rectifiable +rectification +rectification's +rectifications +rectified +rectifier +rectifier's +rectifiers +rectifies +rectify +rectifying +rectilinear +rectitude +rectitude's +rector +rector's +rectories +rectors +rectory +rectory's +rectum +rectum's +rectums +recumbent +recuperate +recuperated +recuperates +recuperating +recuperation +recuperation's +recuperative +recur +recurred +recurrence +recurrence's +recurrences +recurrent +recurring +recurs +recursion +recursive +recursively +recyclable +recyclable's +recyclables +recycle +recycle's +recycled +recycles +recycling +recycling's +red +red's +redbreast +redbreast's +redbreasts +redcap +redcap's +redcaps +redcoat +redcoat's +redcoats +redden +reddened +reddening +reddens +redder +reddest +reddish +redecorate +redecorated +redecorates +redecorating +rededicate +rededicated +rededicates +rededicating +redeem +redeemable +redeemed +redeemer +redeemer's +redeemers +redeeming +redeems +redefine +redefined +redefines +redefining +redefinition +redemption +redemption's +redeploy +redeployed +redeploying +redeployment +redeployment's +redeploys +redesign +redesigned +redesigning +redesigns +redevelop +redeveloped +redeveloping +redevelopment +redevelopment's +redevelopments +redevelops +redhead +redhead's +redheaded +redheads +redid +redirect +redirected +redirecting +redirection +redirects +rediscover +rediscovered +rediscovering +rediscovers +rediscovery +rediscovery's +redistribute +redistributed +redistributes +redistributing +redistribution +redistribution's +redistrict +redistricted +redistricting +redistricts +redneck +redneck's +rednecks +redness +redness's +redo +redoes +redoing +redolence +redolence's +redolent +redone +redouble +redoubled +redoubles +redoubling +redoubt +redoubt's +redoubtable +redoubts +redound +redounded +redounding +redounds +redraft +redrafted +redrafting +redrafts +redraw +redrawing +redrawn +redraws +redress +redress's +redressed +redresses +redressing +redrew +reds +redskin +redskin's +redskins +reduce +reduced +reduces +reducing +reduction +reduction's +reductions +redundancies +redundancy +redundancy's +redundant +redundantly +redwood +redwood's +redwoods +reed +reed's +reedier +reediest +reeds +reeducate +reeducated +reeducates +reeducating +reeducation +reeducation's +reedy +reef +reef's +reefed +reefer +reefer's +reefers +reefing +reefs +reek +reek's +reeked +reeking +reeks +reel +reel's +reelect +reelected +reelecting +reelection +reelection's +reelections +reelects +reeled +reeling +reels +reemerge +reemerged +reemerges +reemerging +reemphasize +reemphasized +reemphasizes +reemphasizing +reenact +reenacted +reenacting +reenactment +reenactment's +reenactments +reenacts +reenforce +reenforced +reenforces +reenforcing +reenlist +reenlisted +reenlisting +reenlists +reenter +reentered +reentering +reenters +reentries +reentry +reentry's +reestablish +reestablished +reestablishes +reestablishing +reevaluate +reevaluated +reevaluates +reevaluating +reeve +reeved +reeves +reeving +reexamine +reexamined +reexamines +reexamining +ref +ref's +refashion +refashioned +refashioning +refashions +refectories +refectory +refectory's +refer +referee +referee's +refereed +refereeing +referees +reference +reference's +referenced +references +referencing +referenda +referendum +referendum's +referendums +referent +referential +referral +referral's +referrals +referred +referring +refers +reffed +reffing +refile +refiled +refiles +refiling +refill +refill's +refillable +refilled +refilling +refills +refinance +refinanced +refinances +refinancing +refine +refined +refinement +refinement's +refinements +refiner +refiner's +refineries +refiners +refinery +refinery's +refines +refining +refinish +refinished +refinishes +refinishing +refit +refit's +refits +refitted +refitting +reflect +reflected +reflecting +reflection +reflection's +reflections +reflective +reflector +reflector's +reflectors +reflects +reflex +reflex's +reflexes +reflexive +reflexive's +reflexively +reflexives +refocus +refocused +refocuses +refocusing +refocussed +refocusses +refocussing +reforest +reforestation +reforestation's +reforested +reforesting +reforests +reform +reform's +reformat +reformation +reformation's +reformations +reformatories +reformatory +reformatory's +reformatted +reformatting +reformed +reformer +reformer's +reformers +reforming +reforms +reformulate +reformulated +reformulates +reformulating +refract +refracted +refracting +refraction +refraction's +refractories +refractory +refractory's +refracts +refrain +refrain's +refrained +refraining +refrains +refresh +refreshed +refresher +refresher's +refreshers +refreshes +refreshing +refreshingly +refreshment +refreshment's +refreshments +refreshments's +refrigerant +refrigerant's +refrigerants +refrigerate +refrigerated +refrigerates +refrigerating +refrigeration +refrigeration's +refrigerator +refrigerator's +refrigerators +refs +refuel +refueled +refueling +refuelled +refuelling +refuels +refuge +refuge's +refugee +refugee's +refugees +refuges +refulgence +refulgence's +refulgent +refund +refund's +refundable +refunded +refunding +refunds +refurbish +refurbished +refurbishes +refurbishing +refurbishment +refurbishment's +refurbishments +refurnish +refurnished +refurnishes +refurnishing +refusal +refusal's +refusals +refuse +refuse's +refused +refuses +refusing +refutation +refutation's +refutations +refute +refuted +refutes +refuting +regain +regained +regaining +regains +regal +regale +regaled +regales +regalia +regalia's +regaling +regally +regard +regard's +regarded +regarding +regardless +regards +regards's +regatta +regatta's +regattas +regencies +regency +regency's +regenerate +regenerated +regenerates +regenerating +regeneration +regeneration's +regenerative +regent +regent's +regents +reggae +reggae's +regicide +regicide's +regicides +regime +regime's +regimen +regimen's +regimens +regiment +regiment's +regimental +regimentation +regimentation's +regimented +regimenting +regiments +regimes +region +region's +regional +regionalism +regionalism's +regionalisms +regionally +regions +register +register's +registered +registering +registers +registrant +registrant's +registrants +registrar +registrar's +registrars +registration +registration's +registrations +registries +registry +registry's +regress +regress's +regressed +regresses +regressing +regression +regression's +regressions +regressive +regret +regret's +regretful +regretfully +regrets +regrettable +regrettably +regretted +regretting +regroup +regrouped +regrouping +regroups +regular +regular's +regularity +regularity's +regularize +regularized +regularizes +regularizing +regularly +regulars +regulate +regulated +regulates +regulating +regulation +regulation's +regulations +regulator +regulator's +regulators +regulatory +regurgitate +regurgitated +regurgitates +regurgitating +regurgitation +regurgitation's +rehab +rehab's +rehabbed +rehabbing +rehabilitate +rehabilitated +rehabilitates +rehabilitating +rehabilitation +rehabilitation's +rehabs +rehash +rehash's +rehashed +rehashes +rehashing +rehearsal +rehearsal's +rehearsals +rehearse +rehearsed +rehearses +rehearsing +reheat +reheated +reheating +reheats +rehire +rehired +rehires +rehiring +reign +reign's +reigned +reigning +reigns +reimburse +reimbursed +reimbursement +reimbursement's +reimbursements +reimburses +reimbursing +reimpose +reimposed +reimposes +reimposing +rein +rein's +reincarnate +reincarnated +reincarnates +reincarnating +reincarnation +reincarnation's +reincarnations +reindeer +reindeer's +reindeers +reined +reinforce +reinforced +reinforcement +reinforcement's +reinforcements +reinforces +reinforcing +reining +reinitialize +reinitialized +reins +reinsert +reinserted +reinserting +reinserts +reinstate +reinstated +reinstatement +reinstatement's +reinstates +reinstating +reinterpret +reinterpretation +reinterpretation's +reinterpretations +reinterpreted +reinterpreting +reinterprets +reinvent +reinvented +reinventing +reinvents +reinvest +reinvested +reinvesting +reinvests +reis +reissue +reissue's +reissued +reissues +reissuing +reiterate +reiterated +reiterates +reiterating +reiteration +reiteration's +reiterations +reject +reject's +rejected +rejecting +rejection +rejection's +rejections +rejects +rejoice +rejoiced +rejoices +rejoicing +rejoicing's +rejoicings +rejoin +rejoinder +rejoinder's +rejoinders +rejoined +rejoining +rejoins +rejuvenate +rejuvenated +rejuvenates +rejuvenating +rejuvenation +rejuvenation's +rekindle +rekindled +rekindles +rekindling +relabel +relabeled +relabeling +relabelled +relabelling +relabels +relaid +relapse +relapse's +relapsed +relapses +relapsing +relate +related +relates +relating +relation +relation's +relational +relations +relationship +relationship's +relationships +relative +relative's +relatively +relatives +relativistic +relativity +relativity's +relax +relaxant +relaxant's +relaxants +relaxation +relaxation's +relaxations +relaxed +relaxes +relaxing +relay +relay's +relayed +relaying +relays +relearn +relearned +relearning +relearns +releasable +release +release's +released +releases +releasing +relegate +relegated +relegates +relegating +relegation +relegation's +relent +relented +relenting +relentless +relentlessly +relentlessness +relentlessness's +relents +relevance +relevance's +relevancy +relevancy's +relevant +relevantly +reliability +reliability's +reliable +reliably +reliance +reliance's +reliant +relic +relic's +relics +relied +relief +relief's +reliefs +relies +relieve +relieved +relieves +relieving +religion +religion's +religions +religious +religious's +religiously +relinquish +relinquished +relinquishes +relinquishing +relinquishment +relinquishment's +relish +relish's +relished +relishes +relishing +relive +relived +relives +reliving +reload +reloaded +reloading +reloads +relocatable +relocate +relocated +relocates +relocating +relocation +relocation's +reluctance +reluctance's +reluctant +reluctantly +rely +relying +remade +remain +remainder +remainder's +remaindered +remainders +remained +remaining +remains +remake +remake's +remakes +remaking +remand +remanded +remanding +remands +remark +remark's +remarkable +remarkably +remarked +remarking +remarks +remarriage +remarriage's +remarriages +remarried +remarries +remarry +remarrying +rematch +rematch's +rematches +remediable +remedial +remedied +remedies +remedy +remedy's +remedying +remember +remembered +remembering +remembers +remembrance +remembrance's +remembrances +remind +reminded +reminder +reminder's +reminders +reminding +reminds +reminisce +reminisced +reminiscence +reminiscence's +reminiscences +reminiscent +reminisces +reminiscing +remiss +remission +remission's +remissions +remissness +remissness's +remit +remits +remittance +remittance's +remittances +remitted +remitting +remnant +remnant's +remnants +remodel +remodeled +remodeling +remodelled +remodelling +remodels +remonstrance +remonstrance's +remonstrances +remonstrate +remonstrated +remonstrates +remonstrating +remorse +remorse's +remorseful +remorsefully +remorseless +remorselessly +remote +remote's +remotely +remoteness +remoteness's +remoter +remotes +remotest +remount +remount's +remounted +remounting +remounts +removable +removal +removal's +removals +remove +remove's +removed +remover +remover's +removers +removes +removing +remunerate +remunerated +remunerates +remunerating +remuneration +remuneration's +remunerations +remunerative +renaissance +renaissance's +renaissances +renal +rename +renamed +renames +renaming +renascence +renascence's +renascences +renascent +rend +render +render's +rendered +rendering +rendering's +renderings +renders +rendezvous +rendezvous's +rendezvoused +rendezvouses +rendezvousing +rending +rendition +rendition's +renditions +rends +renegade +renegade's +renegaded +renegades +renegading +renege +reneged +reneges +reneging +renegotiate +renegotiated +renegotiates +renegotiating +renew +renewable +renewal +renewal's +renewals +renewed +renewing +renews +rennet +rennet's +renounce +renounced +renounces +renouncing +renovate +renovated +renovates +renovating +renovation +renovation's +renovations +renovator +renovator's +renovators +renown +renown's +renowned +rent +rent's +rental +rental's +rentals +rented +renter +renter's +renters +renting +rents +renumber +renumbered +renumbering +renumbers +renunciation +renunciation's +renunciations +reoccupied +reoccupies +reoccupy +reoccupying +reoccur +reoccurred +reoccurring +reoccurs +reopen +reopened +reopening +reopens +reorder +reorder's +reordered +reordering +reorders +reorganization +reorganization's +reorganizations +reorganize +reorganized +reorganizes +reorganizing +rep +rep's +repackage +repackaged +repackages +repackaging +repaid +repaint +repainted +repainting +repaints +repair +repair's +repairable +repaired +repairing +repairman +repairman's +repairmen +repairs +reparation +reparation's +reparations +reparations's +repartee +repartee's +repast +repast's +repasts +repatriate +repatriate's +repatriated +repatriates +repatriating +repatriation +repatriation's +repay +repayable +repaying +repayment +repayment's +repayments +repays +repeal +repeal's +repealed +repealing +repeals +repeat +repeat's +repeatable +repeatably +repeated +repeatedly +repeater +repeater's +repeaters +repeating +repeats +repel +repellant +repellant's +repellants +repelled +repellent +repellent's +repellents +repelling +repels +repent +repentance +repentance's +repentant +repented +repenting +repents +repercussion +repercussion's +repercussions +repertoire +repertoire's +repertoires +repertories +repertory +repertory's +repetition +repetition's +repetitions +repetitious +repetitive +rephrase +rephrased +rephrases +rephrasing +replace +replaceable +replaced +replacement +replacement's +replacements +replaces +replacing +replay +replay's +replayed +replaying +replays +replenish +replenished +replenishes +replenishing +replenishment +replenishment's +replete +repleted +repletes +repleting +repletion +repletion's +replica +replica's +replicas +replicate +replicated +replicates +replicating +replication +replication's +replications +replied +replies +reply +reply's +replying +report +report's +reportage +reportage's +reported +reportedly +reporter +reporter's +reporters +reporting +reports +repose +repose's +reposed +reposeful +reposes +reposing +repositories +repository +repository's +repossess +repossessed +repossesses +repossessing +repossession +repossession's +repossessions +reprehend +reprehended +reprehending +reprehends +reprehensible +reprehensibly +represent +representation +representation's +representational +representations +representative +representative's +representatives +represented +representing +represents +repress +repressed +represses +repressing +repression +repression's +repressions +repressive +reprieve +reprieve's +reprieved +reprieves +reprieving +reprimand +reprimand's +reprimanded +reprimanding +reprimands +reprint +reprint's +reprinted +reprinting +reprints +reprisal +reprisal's +reprisals +reprise +reprise's +reprises +reprising +reprized +reproach +reproach's +reproached +reproaches +reproachful +reproachfully +reproaching +reprobate +reprobate's +reprobates +reprocess +reprocessed +reprocesses +reprocessing +reproduce +reproduced +reproduces +reproducible +reproducing +reproduction +reproduction's +reproductions +reproductive +reprogram +reprogramed +reprograming +reprogrammed +reprogramming +reprograms +reproof +reproof's +reproofed +reproofing +reproofs +reprove +reproved +reproves +reproving +reps +reptile +reptile's +reptiles +reptilian +reptilian's +reptilians +republic +republic's +republican +republican's +republicanism +republicanism's +republicans +republics +republish +republished +republishes +republishing +repudiate +repudiated +repudiates +repudiating +repudiation +repudiation's +repudiations +repugnance +repugnance's +repugnant +repulse +repulse's +repulsed +repulses +repulsing +repulsion +repulsion's +repulsive +repulsively +repulsiveness +repulsiveness's +reputable +reputably +reputation +reputation's +reputations +repute +repute's +reputed +reputedly +reputes +reputing +request +request's +requested +requester +requesting +requests +requiem +requiem's +requiems +require +required +requirement +requirement's +requirements +requires +requiring +requisite +requisite's +requisites +requisition +requisition's +requisitioned +requisitioning +requisitions +requital +requital's +requite +requited +requites +requiting +reran +reread +rereading +rereads +reroute +rerouted +reroutes +rerouting +rerun +rerun's +rerunning +reruns +resale +resale's +resales +reschedule +rescheduled +reschedules +rescheduling +rescind +rescinded +rescinding +rescinds +rescission +rescission's +rescue +rescue's +rescued +rescuer +rescuer's +rescuers +rescues +rescuing +research +research's +researched +researcher +researcher's +researchers +researches +researching +resell +reselling +resells +resemblance +resemblance's +resemblances +resemble +resembled +resembles +resembling +resend +resent +resented +resentful +resentfully +resenting +resentment +resentment's +resentments +resents +reservation +reservation's +reservations +reserve +reserve's +reserved +reservedly +reserves +reserving +reservist +reservist's +reservists +reservoir +reservoir's +reservoirs +reset +reset's +resets +resetting +resettle +resettled +resettles +resettling +reshuffle +reshuffle's +reshuffled +reshuffles +reshuffling +reside +resided +residence +residence's +residences +residencies +residency +residency's +resident +resident's +residential +residents +resides +residing +residual +residual's +residuals +residue +residue's +residues +resign +resignation +resignation's +resignations +resigned +resignedly +resigning +resigns +resilience +resilience's +resiliency +resiliency's +resilient +resin +resin's +resinous +resins +resist +resist's +resistance +resistance's +resistances +resistant +resisted +resister +resister's +resisters +resisting +resistor +resistor's +resistors +resists +resold +resolute +resolutely +resoluteness +resoluteness's +resolution +resolution's +resolutions +resolve +resolve's +resolved +resolver +resolves +resolving +resonance +resonance's +resonances +resonant +resonantly +resonate +resonated +resonates +resonating +resonator +resonator's +resonators +resort +resort's +resorted +resorting +resorts +resound +resounded +resounding +resoundingly +resounds +resource +resource's +resourced +resourceful +resourcefully +resourcefulness +resourcefulness's +resources +resourcing +respect +respect's +respectability +respectability's +respectable +respectably +respected +respectful +respectfully +respecting +respective +respectively +respects +respell +respelled +respelling +respells +respelt +respiration +respiration's +respirator +respirator's +respirators +respiratory +respire +respired +respires +respiring +respite +respite's +respites +resplendence +resplendence's +resplendent +resplendently +respond +responded +respondent +respondent's +respondents +responding +responds +response +response's +responses +responsibilities +responsibility +responsibility's +responsible +responsibly +responsive +responsively +responsiveness +responsiveness's +rest +rest's +restart +restart's +restarted +restarting +restarts +restate +restated +restatement +restatement's +restatements +restates +restating +restaurant +restaurant's +restauranteur +restauranteur's +restauranteurs +restaurants +restaurateur +restaurateur's +restaurateurs +rested +restful +restfuller +restfullest +restfully +restfulness +restfulness's +resting +restitution +restitution's +restive +restively +restiveness +restiveness's +restless +restlessly +restlessness +restlessness's +restock +restocked +restocking +restocks +restoration +restoration's +restorations +restorative +restorative's +restoratives +restore +restored +restorer +restorer's +restorers +restores +restoring +restrain +restrained +restraining +restrains +restraint +restraint's +restraints +restrict +restricted +restricting +restriction +restriction's +restrictions +restrictive +restrictively +restricts +restroom +restroom's +restrooms +restructure +restructured +restructures +restructuring +restructuring's +restructurings +rests +restudied +restudies +restudy +restudying +resubmit +resubmits +resubmitted +resubmitting +result +result's +resultant +resultant's +resultants +resulted +resulting +results +resume +resume's +resumed +resumes +resuming +resumption +resumption's +resumptions +resupplied +resupplies +resupply +resupplying +resurface +resurfaced +resurfaces +resurfacing +resurgence +resurgence's +resurgences +resurgent +resurrect +resurrected +resurrecting +resurrection +resurrection's +resurrections +resurrects +resuscitate +resuscitated +resuscitates +resuscitating +resuscitation +resuscitation's +resuscitator +resuscitator's +resuscitators +retail +retail's +retailed +retailer +retailer's +retailers +retailing +retails +retain +retained +retainer +retainer's +retainers +retaining +retains +retake +retake's +retaken +retakes +retaking +retaliate +retaliated +retaliates +retaliating +retaliation +retaliation's +retaliations +retaliatory +retard +retard's +retardant +retardant's +retardants +retardation +retardation's +retarded +retarding +retards +retch +retched +retches +retching +retell +retelling +retells +retention +retention's +retentive +retentiveness +retentiveness's +rethink +rethink's +rethinking +rethinks +rethought +reticence +reticence's +reticent +retina +retina's +retinae +retinal +retinas +retinue +retinue's +retinues +retire +retired +retiree +retiree's +retirees +retirement +retirement's +retirements +retires +retiring +retold +retook +retool +retooled +retooling +retools +retort +retort's +retorted +retorting +retorts +retouch +retouch's +retouched +retouches +retouching +retrace +retraced +retraces +retracing +retract +retractable +retracted +retracting +retraction +retraction's +retractions +retracts +retrain +retrained +retraining +retrains +retread +retread's +retreaded +retreading +retreads +retreat +retreat's +retreated +retreating +retreats +retrench +retrenched +retrenches +retrenching +retrenchment +retrenchment's +retrenchments +retrial +retrial's +retrials +retribution +retribution's +retributions +retributive +retried +retries +retrievable +retrieval +retrieval's +retrievals +retrieve +retrieve's +retrieved +retriever +retriever's +retrievers +retrieves +retrieving +retroactive +retroactively +retrod +retrodden +retrofit +retrofit's +retrofits +retrofitted +retrofitting +retrograde +retrograded +retrogrades +retrograding +retrogress +retrogressed +retrogresses +retrogressing +retrogression +retrogression's +retrogressive +retrorocket +retrorocket's +retrorockets +retrospect +retrospect's +retrospected +retrospecting +retrospection +retrospection's +retrospective +retrospective's +retrospectively +retrospectives +retrospects +retry +retrying +return +return's +returnable +returnable's +returnables +returned +returnee +returnee's +returnees +returning +returns +retype +retyped +retypes +retyping +reunification +reunification's +reunified +reunifies +reunify +reunifying +reunion +reunion's +reunions +reunite +reunited +reunites +reuniting +reupholster +reupholstered +reupholstering +reupholsters +reusable +reuse +reuse's +reused +reuses +reusing +rev +rev's +revaluation +revaluation's +revaluations +revalue +revalued +revalues +revaluing +revamp +revamp's +revamped +revamping +revamps +reveal +revealed +revealing +revealings +reveals +reveille +reveille's +revel +revel's +revelation +revelation's +revelations +reveled +reveler +reveler's +revelers +reveling +revelled +reveller +reveller's +revellers +revelling +revelries +revelry +revelry's +revels +revenge +revenge's +revenged +revengeful +revenges +revenging +revenue +revenue's +revenues +reverberate +reverberated +reverberates +reverberating +reverberation +reverberation's +reverberations +revere +revered +reverence +reverence's +reverenced +reverences +reverencing +reverend +reverend's +reverends +reverent +reverential +reverently +reveres +reverie +reverie's +reveries +revering +reversal +reversal's +reversals +reverse +reverse's +reversed +reverses +reversible +reversing +reversion +reversion's +revert +reverted +reverting +reverts +revery +revery's +review +review's +reviewed +reviewer +reviewer's +reviewers +reviewing +reviews +revile +reviled +revilement +revilement's +reviler +reviler's +revilers +reviles +reviling +revise +revise's +revised +revises +revising +revision +revision's +revisions +revisit +revisited +revisiting +revisits +revitalization +revitalization's +revitalize +revitalized +revitalizes +revitalizing +revival +revival's +revivalist +revivalist's +revivalists +revivals +revive +revived +revives +revivification +revivification's +revivified +revivifies +revivify +revivifying +reviving +revocable +revocation +revocation's +revocations +revokable +revoke +revoked +revokes +revoking +revolt +revolt's +revolted +revolting +revoltingly +revolts +revolution +revolution's +revolutionaries +revolutionary +revolutionary's +revolutionist +revolutionist's +revolutionists +revolutionize +revolutionized +revolutionizes +revolutionizing +revolutions +revolve +revolved +revolver +revolver's +revolvers +revolves +revolving +revs +revue +revue's +revues +revulsion +revulsion's +revved +revving +reward +reward's +rewarded +rewarding +rewards +rewind +rewind's +rewindable +rewinding +rewinds +rewire +rewired +rewires +rewiring +reword +reworded +rewording +rewords +rework +reworked +reworking +reworks +rewound +rewrite +rewrite's +rewrites +rewriting +rewritten +rewrote +rhapsodic +rhapsodies +rhapsodize +rhapsodized +rhapsodizes +rhapsodizing +rhapsody +rhapsody's +rhea +rhea's +rheas +rheostat +rheostat's +rheostats +rhetoric +rhetoric's +rhetorical +rhetorically +rhetorician +rhetorician's +rhetoricians +rheum +rheum's +rheumatic +rheumatic's +rheumatics +rheumatism +rheumatism's +rheumier +rheumiest +rheumy +rhinestone +rhinestone's +rhinestones +rhino +rhino's +rhinoceri +rhinoceros +rhinoceros's +rhinoceroses +rhinos +rhizome +rhizome's +rhizomes +rho +rhodium +rhodium's +rhododendron +rhododendron's +rhododendrons +rhombi +rhomboid +rhomboid's +rhomboids +rhombus +rhombus's +rhombuses +rhubarb +rhubarb's +rhubarbs +rhyme +rhyme's +rhymed +rhymes +rhyming +rhythm +rhythm's +rhythmic +rhythmical +rhythmically +rhythms +rib +rib's +ribald +ribaldry +ribaldry's +ribbed +ribbing +ribbon +ribbon's +ribbons +riboflavin +riboflavin's +ribs +rice +rice's +riced +rices +rich +rich's +richer +riches +richest +richly +richness +richness's +ricing +rick +rick's +ricked +ricketier +ricketiest +rickets +rickets's +rickety +ricking +ricks +ricksha +ricksha's +rickshas +rickshaw +rickshaw's +rickshaws +ricochet +ricochet's +ricocheted +ricocheting +ricochets +ricochetted +ricochetting +ricotta +ricotta's +rid +riddance +riddance's +ridded +ridden +ridding +riddle +riddle's +riddled +riddles +riddling +ride +ride's +rider +rider's +riders +rides +ridge +ridge's +ridged +ridgepole +ridgepole's +ridgepoles +ridges +ridging +ridicule +ridicule's +ridiculed +ridicules +ridiculing +ridiculous +ridiculously +ridiculousness +ridiculousness's +riding +riding's +rids +rife +rifer +rifest +riff +riff's +riffed +riffing +riffle +riffle's +riffled +riffles +riffling +riffraff +riffraff's +riffs +rifle +rifle's +rifled +rifleman +rifleman's +riflemen +rifles +rifling +rift +rift's +rifted +rifting +rifts +rig +rig's +rigamarole +rigamarole's +rigamaroles +rigged +rigging +rigging's +right +right's +righted +righteous +righteously +righteousness +righteousness's +righter +rightest +rightful +rightfully +rightfulness +rightfulness's +righting +rightist +rightist's +rightists +rightly +rightmost +rightness +rightness's +rights +rigid +rigidity +rigidity's +rigidly +rigidness +rigidness's +rigmarole +rigmarole's +rigmaroles +rigor +rigor's +rigorous +rigorously +rigors +rigs +rile +riled +riles +riling +rill +rill's +rills +rim +rim's +rime +rime's +rimed +rimes +riming +rimmed +rimming +rims +rind +rind's +rinds +ring +ring's +ringed +ringer +ringer's +ringers +ringing +ringleader +ringleader's +ringleaders +ringlet +ringlet's +ringlets +ringmaster +ringmaster's +ringmasters +rings +ringside +ringside's +ringworm +ringworm's +rink +rink's +rinks +rinse +rinse's +rinsed +rinses +rinsing +riot +riot's +rioted +rioter +rioter's +rioters +rioting +rioting's +riotous +riots +rip +rip's +ripe +ripely +ripen +ripened +ripeness +ripeness's +ripening +ripens +riper +ripest +riposte +riposte's +riposted +ripostes +riposting +ripped +ripper +ripper's +rippers +ripping +ripple +ripple's +rippled +ripples +rippling +rips +ripsaw +ripsaw's +ripsaws +rise +rise's +risen +riser +riser's +risers +rises +risible +rising +risk +risk's +risked +riskier +riskiest +riskiness +riskiness's +risking +risks +risky +risqué +rite +rite's +rites +ritual +ritual's +ritualism +ritualism's +ritualistic +ritually +rituals +ritzier +ritziest +ritzy +rival +rival's +rivaled +rivaling +rivalled +rivalling +rivalries +rivalry +rivalry's +rivals +riven +river +river's +riverbed +riverbed's +riverbeds +riverfront +rivers +riverside +riverside's +riversides +rivet +rivet's +riveted +riveting +rivets +rivetted +rivetting +rivulet +rivulet's +rivulets +roach +roach's +roaches +road +road's +roadbed +roadbed's +roadbeds +roadblock +roadblock's +roadblocked +roadblocking +roadblocks +roadhouse +roadhouse's +roadhouses +roadkill +roadkill's +roadrunner +roadrunner's +roadrunners +roads +roadshow +roadside +roadside's +roadsides +roadster +roadster's +roadsters +roadway +roadway's +roadways +roadwork +roadwork's +roadworthy +roam +roamed +roamer +roamer's +roamers +roaming +roams +roan +roan's +roans +roar +roar's +roared +roaring +roaring's +roars +roast +roast's +roasted +roaster +roaster's +roasters +roasting +roasts +rob +robbed +robber +robber's +robberies +robbers +robbery +robbery's +robbing +robe +robe's +robed +robes +robin +robin's +robing +robins +robot +robot's +robotic +robotics +robotics's +robots +robs +robust +robuster +robustest +robustly +robustness +robustness's +rock +rock's +rocked +rocker +rocker's +rockers +rocket +rocket's +rocketed +rocketing +rocketry +rocketry's +rockets +rockier +rockiest +rockiness +rockiness's +rocking +rocks +rocky +rococo +rococo's +rod +rod's +rode +rodent +rodent's +rodents +rodeo +rodeo's +rodeos +rods +roe +roe's +roebuck +roebuck's +roebucks +roentgen +roentgen's +roentgens +roes +roger +rogered +rogering +rogers +rogue +rogue's +roguery +roguery's +rogues +roguish +roguishly +roil +roiled +roiling +roils +roister +roistered +roisterer +roisterer's +roisterers +roistering +roisters +role +role's +roles +roll +roll's +rollback +rollback's +rollbacks +rolled +roller +roller's +rollers +rollerskating +rollerskating's +rollick +rollicked +rollicking +rollicking's +rollicks +rolling +rolls +romaine +romaine's +roman +romance +romance's +romanced +romances +romancing +romantic +romantic's +romantically +romanticism +romanticism's +romanticist +romanticist's +romanticists +romanticize +romanticized +romanticizes +romanticizing +romantics +romp +romp's +romped +romper +romper's +rompers +romping +romps +rood +rood's +roods +roof +roof's +roofed +roofing +roofing's +roofs +rooftop +rooftop's +rooftops +rook +rook's +rooked +rookeries +rookery +rookery's +rookie +rookie's +rookies +rooking +rooks +room +room's +roomed +roomer +roomer's +roomers +roomful +roomful's +roomfuls +roomier +roomiest +roominess +roominess's +rooming +roommate +roommate's +roommates +rooms +roomy +roost +roost's +roosted +rooster +rooster's +roosters +roosting +roosts +root +root's +rooted +rooter +rooting +rootless +roots +rope +rope's +roped +ropes +roping +rosaries +rosary +rosary's +rose +rose's +roseate +rosebud +rosebud's +rosebuds +rosebush +rosebush's +rosebushes +rosemary +rosemary's +roses +rosette +rosette's +rosettes +rosewood +rosewood's +rosewoods +rosier +rosiest +rosily +rosin +rosin's +rosined +rosiness +rosiness's +rosining +rosins +roster +roster's +rosters +rostra +rostrum +rostrum's +rostrums +rosy +rot +rot's +rotaries +rotary +rotary's +rotate +rotated +rotates +rotating +rotation +rotation's +rotational +rotations +rote +rote's +rotisserie +rotisserie's +rotisseries +rotogravure +rotogravure's +rotogravures +rotor +rotor's +rotors +rots +rotted +rotten +rottener +rottenest +rottenness +rottenness's +rotting +rotund +rotunda +rotunda's +rotundas +rotundity +rotundity's +rotundness +rotundness's +rouge +rouge's +rouged +rouges +rough +rough's +roughage +roughage's +roughed +roughen +roughened +roughening +roughens +rougher +roughest +roughhouse +roughhouse's +roughhoused +roughhouses +roughhousing +roughing +roughly +roughneck +roughneck's +roughnecked +roughnecking +roughnecks +roughness +roughness's +roughs +roughshod +rouging +roulette +roulette's +round +round's +roundabout +roundabout's +roundabouts +rounded +roundelay +roundelay's +roundelays +rounder +roundest +roundhouse +roundhouse's +roundhouses +rounding +roundish +roundly +roundness +roundness's +rounds +roundup +roundup's +roundups +roundworm +roundworm's +roundworms +rouse +roused +rouses +rousing +roustabout +roustabout's +roustabouts +rout +rout's +route +route's +routed +routeing +router +routes +routine +routine's +routinely +routines +routing +routinize +routinized +routinizes +routinizing +routs +roué +roué's +roués +rove +roved +rover +rover's +rovers +roves +roving +row +row's +rowboat +rowboat's +rowboats +rowdier +rowdies +rowdiest +rowdiness +rowdiness's +rowdy +rowdy's +rowdyism +rowdyism's +rowed +rowel +rowel's +roweled +roweling +rowelled +rowelling +rowels +rower +rower's +rowers +rowing +rowing's +rows +royal +royal's +royalist +royalist's +royalists +royally +royals +royalties +royalties's +royalty +royalty's +rs +rub +rub's +rubbed +rubber +rubber's +rubberier +rubberiest +rubberize +rubberized +rubberizes +rubberizing +rubberneck +rubberneck's +rubbernecked +rubbernecking +rubbernecks +rubbers +rubbery +rubbing +rubbish +rubbish's +rubbished +rubbishes +rubbishing +rubbishy +rubble +rubble's +rubdown +rubdown's +rubdowns +rube +rube's +rubella +rubella's +rubes +rubicund +rubier +rubies +rubiest +ruble +ruble's +rubles +rubric +rubric's +rubrics +rubs +ruby +ruby's +rucksack +rucksack's +rucksacks +ruckus +ruckus's +ruckuses +rudder +rudder's +rudders +ruddier +ruddiest +ruddiness +ruddiness's +ruddy +rude +rudely +rudeness +rudeness's +ruder +rudest +rudiment +rudiment's +rudimentary +rudiments +rue +rue's +rued +rueful +ruefully +rues +ruff +ruff's +ruffed +ruffian +ruffian's +ruffians +ruffing +ruffle +ruffle's +ruffled +ruffles +ruffling +ruffs +rug +rug's +rugby +rugby's +rugged +ruggeder +ruggedest +ruggedly +ruggedness +ruggedness's +rugs +ruin +ruin's +ruination +ruination's +ruined +ruing +ruining +ruinous +ruinously +ruins +rule +rule's +ruled +ruler +ruler's +rulers +rules +ruling +ruling's +rulings +rum +rum's +rumba +rumba's +rumbaed +rumbaing +rumbas +rumble +rumble's +rumbled +rumbles +rumbling +rumbling's +rumblings +ruminant +ruminant's +ruminants +ruminate +ruminated +ruminates +ruminating +rumination +rumination's +ruminations +rummage +rummage's +rummaged +rummages +rummaging +rummer +rummest +rummy +rummy's +rumor +rumor's +rumored +rumoring +rumors +rump +rump's +rumple +rumple's +rumpled +rumples +rumpling +rumps +rumpus +rumpus's +rumpuses +rums +run +run's +runabout +runabout's +runabouts +runaround +runaround's +runarounds +runaway +runaway's +runaways +rundown +rundown's +rundowns +rune +rune's +runes +rung +rung's +rungs +runnel +runnel's +runnels +runner +runner's +runners +runnier +runniest +running +running's +runny +runoff +runoff's +runoffs +runs +runt +runt's +runts +runway +runway's +runways +rupee +rupee's +rupees +rupture +rupture's +ruptured +ruptures +rupturing +rural +ruse +ruse's +ruses +rush +rush's +rushed +rushes +rushing +rusk +rusk's +rusks +russet +russet's +russets +rust +rust's +rusted +rustic +rustic's +rustically +rusticity +rusticity's +rustics +rustier +rustiest +rustiness +rustiness's +rusting +rustle +rustle's +rustled +rustler +rustler's +rustlers +rustles +rustling +rustproof +rustproofed +rustproofing +rustproofs +rusts +rusty +rut +rut's +rutabaga +rutabaga's +rutabagas +ruthless +ruthlessly +ruthlessness +ruthlessness's +ruts +rutted +rutting +rye +rye's +s +sabbatical +sabbatical's +sabbaticals +saber +saber's +sabers +sable +sable's +sables +sabotage +sabotage's +sabotaged +sabotages +sabotaging +saboteur +saboteur's +saboteurs +sabre +sabre's +sabres +sac +sac's +saccharin +saccharin's +saccharine +sacerdotal +sachem +sachem's +sachems +sachet +sachet's +sachets +sack +sack's +sackcloth +sackcloth's +sacked +sackful +sackful's +sackfuls +sacking +sacking's +sacks +sacrament +sacrament's +sacramental +sacraments +sacred +sacredly +sacredness +sacredness's +sacrifice +sacrifice's +sacrificed +sacrifices +sacrificial +sacrificing +sacrilege +sacrilege's +sacrileges +sacrilegious +sacristan +sacristan's +sacristans +sacristies +sacristy +sacristy's +sacrosanct +sacs +sad +sadden +saddened +saddening +saddens +sadder +saddest +saddle +saddle's +saddlebag +saddlebag's +saddlebags +saddled +saddles +saddling +sades +sadism +sadism's +sadist +sadist's +sadistic +sadistically +sadists +sadly +sadness +sadness's +safari +safari's +safaried +safariing +safaris +safe +safe's +safeguard +safeguard's +safeguarded +safeguarding +safeguards +safekeeping +safekeeping's +safely +safeness +safeness's +safer +safes +safest +safeties +safety +safety's +safflower +safflower's +safflowers +saffron +saffron's +saffrons +sag +sag's +saga +saga's +sagacious +sagacity +sagacity's +sagas +sage +sage's +sagebrush +sagebrush's +sager +sages +sagest +sagged +sagging +sago +sago's +sags +saguaro +saguaro's +saguaros +sahib +sahib's +sahibs +said +sail +sail's +sailboard +sailboard's +sailboards +sailboat +sailboat's +sailboats +sailcloth +sailcloth's +sailed +sailfish +sailfish's +sailfishes +sailing +sailing's +sailings +sailor +sailor's +sailors +sails +saint +saint's +sainthood +sainthood's +saintlier +saintliest +saintliness +saintliness's +saintly +saints +saith +sake +sake's +saki +saki's +salaam +salaam's +salaamed +salaaming +salaams +salable +salacious +salaciously +salaciousness +salaciousness's +salad +salad's +salads +salamander +salamander's +salamanders +salami +salami's +salamis +salaried +salaries +salary +salary's +sale +sale's +saleable +sales +salesclerk +salesclerk's +salesclerks +salesgirl +salesgirl's +salesgirls +salesman +salesman's +salesmanship +salesmanship's +salesmen +salespeople +salespeople's +salesperson +salesperson's +salespersons +saleswoman +saleswoman's +saleswomen +salient +salient's +salients +saline +saline's +salines +salinity +salinity's +saliva +saliva's +salivary +salivate +salivated +salivates +salivating +salivation +salivation's +sallied +sallies +sallow +sallower +sallowest +sally +sally's +sallying +salmon +salmon's +salmonella +salmonella's +salmonellae +salmonellas +salmons +salon +salon's +salons +saloon +saloon's +saloons +salsa +salsa's +salsas +salt +salt's +saltcellar +saltcellar's +saltcellars +salted +salter +saltest +saltier +saltiest +saltine +saltine's +saltines +saltiness +saltiness's +salting +saltpeter +saltpeter's +saltpetre +saltpetre's +salts +saltshaker +saltshaker's +saltshakers +saltwater +saltwater's +salty +salubrious +salutary +salutation +salutation's +salutations +salute +salute's +saluted +salutes +saluting +salvage +salvage's +salvageable +salvaged +salvages +salvaging +salvation +salvation's +salve +salve's +salved +salver +salver's +salvers +salves +salving +salvo +salvo's +salvoes +salvos +samba +samba's +sambaed +sambaing +sambas +same +sameness +sameness's +sames +samovar +samovar's +samovars +sampan +sampan's +sampans +sample +sample's +sampled +sampler +sampler's +samplers +samples +sampling +samurai +samurai's +sanatoria +sanatorium +sanatorium's +sanatoriums +sancta +sanctification +sanctification's +sanctified +sanctifies +sanctify +sanctifying +sanctimonious +sanctimoniously +sanction +sanction's +sanctioned +sanctioning +sanctions +sanctity +sanctity's +sanctuaries +sanctuary +sanctuary's +sanctum +sanctum's +sanctums +sand +sand's +sandal +sandal's +sandals +sandalwood +sandalwood's +sandbag +sandbag's +sandbagged +sandbagging +sandbags +sandbank +sandbank's +sandbanks +sandbar +sandbar's +sandbars +sandblast +sandblast's +sandblasted +sandblaster +sandblaster's +sandblasters +sandblasting +sandblasts +sandbox +sandbox's +sandboxes +sandcastle +sandcastle's +sandcastles +sanded +sander +sander's +sanders +sandhog +sandhog's +sandhogs +sandier +sandiest +sandiness +sandiness's +sanding +sandlot +sandlot's +sandlots +sandman +sandman's +sandmen +sandpaper +sandpaper's +sandpapered +sandpapering +sandpapers +sandpiper +sandpiper's +sandpipers +sands +sandstone +sandstone's +sandstorm +sandstorm's +sandstorms +sandwich +sandwich's +sandwiched +sandwiches +sandwiching +sandy +sane +sanely +saner +sanest +sang +sangfroid +sangfroid's +sangs +sanguinary +sanguine +sanitaria +sanitarium +sanitarium's +sanitariums +sanitary +sanitation +sanitation's +sanitize +sanitized +sanitizes +sanitizing +sanity +sanity's +sank +sans +sanserif +sap +sap's +sapience +sapience's +sapient +sapling +sapling's +saplings +sapped +sapphire +sapphire's +sapphires +sappier +sappiest +sapping +sappy +saprophyte +saprophyte's +saprophytes +saps +sapsucker +sapsucker's +sapsuckers +sarape +sarape's +sarapes +sarcasm +sarcasm's +sarcasms +sarcastic +sarcastically +sarcoma +sarcoma's +sarcomas +sarcomata +sarcophagi +sarcophagus +sarcophagus's +sarcophaguses +sardine +sardine's +sardines +sardonic +sardonically +saree +saree's +sarees +sari +sari's +saris +sarong +sarong's +sarongs +sarsaparilla +sarsaparilla's +sarsaparillas +sartorial +sartorially +sash +sash's +sashay +sashay's +sashayed +sashaying +sashays +sashes +sass +sass's +sassafras +sassafras's +sassafrases +sassed +sasses +sassier +sassiest +sassing +sassy +sat +satanic +satanically +satanism +satanism's +satchel +satchel's +satchels +sate +sated +sateen +sateen's +satellite +satellite's +satellited +satellites +satelliting +sates +satiate +satiated +satiates +satiating +satiety +satiety's +satin +satin's +sating +satinwood +satinwood's +satinwoods +satiny +satire +satire's +satires +satirical +satirically +satirist +satirist's +satirists +satirize +satirized +satirizes +satirizing +satisfaction +satisfaction's +satisfactions +satisfactorily +satisfactory +satisfied +satisfies +satisfy +satisfying +satrap +satrap's +satraps +saturate +saturated +saturates +saturating +saturation +saturation's +saturnine +satyr +satyr's +satyrs +sauce +sauce's +sauced +saucepan +saucepan's +saucepans +saucer +saucer's +saucers +sauces +saucier +sauciest +saucily +sauciness +sauciness's +saucing +saucy +sauerkraut +sauerkraut's +sauna +sauna's +saunaed +saunaing +saunas +saunter +saunter's +sauntered +sauntering +saunters +sausage +sausage's +sausages +sauted +sauté +sauté's +sautéed +sautéing +sautés +savage +savage's +savaged +savagely +savageness +savageness's +savager +savageries +savagery +savagery's +savages +savagest +savaging +savanna +savanna's +savannah +savannah's +savannahes +savannahs +savannas +savant +savant's +savants +save +save's +saved +saver +saver's +savers +saves +saving +saving's +savings +savings's +savior +savior's +saviors +saviour +saviour's +saviours +savor +savor's +savored +savorier +savories +savoriest +savoring +savors +savory +savory's +savvied +savvier +savvies +savviest +savvy +savvy's +savvying +saw +saw's +sawdust +sawdust's +sawed +sawhorse +sawhorse's +sawhorses +sawing +sawmill +sawmill's +sawmills +sawn +saws +sawyer +sawyer's +sawyers +sax +sax's +saxes +saxophone +saxophone's +saxophones +saxophonist +saxophonist's +saxophonists +say +say's +saying +saying's +sayings +says +scab +scab's +scabbard +scabbard's +scabbards +scabbed +scabbier +scabbiest +scabbing +scabby +scabies +scabies's +scabrous +scabs +scad +scad's +scads +scaffold +scaffold's +scaffolding +scaffolding's +scaffolds +scalar +scalars +scalawag +scalawag's +scalawags +scald +scald's +scalded +scalding +scalds +scale +scale's +scaled +scalene +scales +scalier +scaliest +scaling +scallion +scallion's +scallions +scallop +scallop's +scalloped +scalloping +scallops +scallywag +scallywag's +scallywags +scalp +scalp's +scalped +scalpel +scalpel's +scalpels +scalper +scalper's +scalpers +scalping +scalps +scaly +scam +scam's +scammed +scamming +scamp +scamp's +scamper +scamper's +scampered +scampering +scampers +scampi +scampi's +scampies +scamps +scams +scan +scan's +scandal +scandal's +scandalize +scandalized +scandalizes +scandalizing +scandalmonger +scandalmonger's +scandalmongers +scandalous +scandalously +scandals +scanned +scanner +scanner's +scanners +scanning +scans +scansion +scansion's +scant +scanted +scanter +scantest +scantier +scanties +scantiest +scantily +scantiness +scantiness's +scanting +scants +scanty +scapegoat +scapegoat's +scapegoated +scapegoating +scapegoats +scapula +scapula's +scapulae +scapulas +scar +scar's +scarab +scarab's +scarabs +scarce +scarcely +scarceness +scarceness's +scarcer +scarcest +scarcity +scarcity's +scare +scare's +scarecrow +scarecrow's +scarecrows +scared +scares +scarf +scarf's +scarfed +scarfing +scarfs +scarier +scariest +scarified +scarifies +scarify +scarifying +scaring +scarlet +scarlet's +scarred +scarring +scars +scarves +scary +scat +scat's +scathing +scathingly +scatological +scats +scatted +scatter +scatter's +scatterbrain +scatterbrain's +scatterbrained +scatterbrains +scattered +scattering +scatters +scatting +scavenge +scavenged +scavenger +scavenger's +scavengers +scavenges +scavenging +scenario +scenario's +scenarios +scene +scene's +scenery +scenery's +scenes +scenic +scenically +scent +scent's +scented +scenting +scents +scepter +scepter's +scepters +schedule +schedule's +scheduled +scheduler +schedulers +schedules +scheduling +schema +schematic +schematic's +schematically +schematics +scheme +scheme's +schemed +schemer +schemer's +schemers +schemes +scheming +scherzi +scherzo +scherzo's +scherzos +schism +schism's +schismatic +schismatic's +schismatics +schisms +schist +schist's +schizoid +schizoid's +schizoids +schizophrenia +schizophrenia's +schizophrenic +schizophrenic's +schizophrenics +schlemiel +schlemiel's +schlemiels +schlep +schlep's +schlepp +schlepp's +schlepped +schlepping +schlepps +schleps +schlock +schlock's +schlocky +schmaltz +schmaltz's +schmaltzier +schmaltziest +schmaltzy +schmalz +schmalz's +schmalzy +schmooze +schmoozed +schmoozes +schmoozing +schmuck +schmuck's +schmucks +schnapps +schnapps's +schnauzer +schnauzer's +schnauzers +scholar +scholar's +scholarly +scholars +scholarship +scholarship's +scholarships +scholastic +scholastically +school +school's +schoolbook +schoolbook's +schoolbooks +schoolboy +schoolboy's +schoolboys +schoolchild +schoolchild's +schoolchildren +schooldays +schooled +schoolgirl +schoolgirl's +schoolgirls +schoolhouse +schoolhouse's +schoolhouses +schooling +schooling's +schoolmarm +schoolmarm's +schoolmarms +schoolmaster +schoolmaster's +schoolmasters +schoolmate +schoolmate's +schoolmates +schoolmistress +schoolmistress's +schoolmistresses +schoolroom +schoolroom's +schoolrooms +schools +schoolteacher +schoolteacher's +schoolteachers +schoolwork +schoolwork's +schoolyard +schoolyard's +schoolyards +schooner +schooner's +schooners +schrod +schrod's +schrods +schtick +schtick's +schticks +schuss +schuss's +schussed +schusses +schussing +schwa +schwa's +schwas +sciatic +sciatica +sciatica's +science +science's +sciences +scientific +scientifically +scientist +scientist's +scientists +scimitar +scimitar's +scimitars +scintilla +scintilla's +scintillas +scintillate +scintillated +scintillates +scintillating +scintillation +scintillation's +scion +scion's +scions +scissor +scissors +sclerosis +sclerosis's +sclerotic +scoff +scoff's +scoffed +scoffing +scofflaw +scofflaw's +scofflaws +scoffs +scold +scold's +scolded +scolding +scolding's +scoldings +scolds +scoliosis +scoliosis's +scollop +scollop's +scolloped +scolloping +scollops +sconce +sconce's +sconces +scone +scone's +scones +scoop +scoop's +scooped +scooping +scoops +scoot +scooted +scooter +scooter's +scooters +scooting +scoots +scope +scope's +scoped +scopes +scoping +scorch +scorch's +scorched +scorcher +scorcher's +scorchers +scorches +scorching +score +score's +scoreboard +scoreboard's +scoreboards +scorecard +scorecard's +scorecards +scored +scoreless +scorer +scorer's +scorers +scores +scoring +scorn +scorn's +scorned +scornful +scornfully +scorning +scorns +scorpion +scorpion's +scorpions +scotch +scotch's +scotched +scotches +scotching +scotchs +scoundrel +scoundrel's +scoundrels +scour +scoured +scourge +scourge's +scourged +scourges +scourging +scouring +scours +scout +scout's +scouted +scouting +scouting's +scoutmaster +scoutmaster's +scoutmasters +scouts +scow +scow's +scowl +scowl's +scowled +scowling +scowls +scows +scrabble +scrabble's +scrabbled +scrabbles +scrabbling +scragglier +scraggliest +scraggly +scram +scramble +scramble's +scrambled +scrambler +scrambler's +scramblers +scrambles +scrambling +scrammed +scramming +scrams +scrap +scrap's +scrapbook +scrapbook's +scrapbooks +scrape +scrape's +scraped +scraper +scraper's +scrapers +scrapes +scraping +scrapped +scrappier +scrappiest +scrapping +scrappy +scraps +scratch +scratch's +scratched +scratches +scratchier +scratchiest +scratchiness +scratchiness's +scratching +scratchy +scrawl +scrawl's +scrawled +scrawling +scrawls +scrawnier +scrawniest +scrawny +scream +scream's +screamed +screaming +screams +screech +screech's +screeched +screeches +screechier +screechiest +screeching +screechy +screen +screen's +screened +screening +screening's +screenings +screenplay +screenplay's +screenplays +screens +screenwriter +screenwriter's +screenwriters +screw +screw's +screwball +screwball's +screwballs +screwdriver +screwdriver's +screwdrivers +screwed +screwier +screwiest +screwing +screws +screwy +scribble +scribble's +scribbled +scribbler +scribbler's +scribblers +scribbles +scribbling +scribe +scribe's +scribes +scrimmage +scrimmage's +scrimmaged +scrimmages +scrimmaging +scrimp +scrimped +scrimping +scrimps +scrimshaw +scrimshaw's +scrimshawed +scrimshawing +scrimshaws +scrip +scrip's +scrips +script +script's +scripted +scripting +scripts +scriptural +scripture +scripture's +scriptures +scriptwriter +scriptwriter's +scriptwriters +scrod +scrod's +scrods +scrofula +scrofula's +scroll +scroll's +scrolled +scrolling +scrolls +scrooge +scrooge's +scrooges +scrota +scrotum +scrotum's +scrotums +scrounge +scrounged +scrounger +scrounger's +scroungers +scrounges +scrounging +scrub +scrub's +scrubbed +scrubber +scrubber's +scrubbers +scrubbier +scrubbiest +scrubbing +scrubby +scrubs +scruff +scruff's +scruffier +scruffiest +scruffs +scruffy +scrumptious +scrunch +scrunch's +scrunched +scrunches +scrunching +scruple +scruple's +scrupled +scruples +scrupling +scrupulous +scrupulously +scrutinize +scrutinized +scrutinizes +scrutinizing +scrutiny +scrutiny's +scuba +scuba's +scubaed +scubaing +scubas +scud +scud's +scudded +scudding +scuds +scuff +scuff's +scuffed +scuffing +scuffle +scuffle's +scuffled +scuffles +scuffling +scuffs +scull +scull's +sculled +sculleries +scullery +scullery's +sculling +scullion +scullion's +scullions +sculls +sculpt +sculpted +sculpting +sculptor +sculptor's +sculptors +sculpts +sculptural +sculpture +sculpture's +sculptured +sculptures +sculpturing +scum +scum's +scumbag +scumbag's +scumbags +scummed +scummier +scummiest +scumming +scummy +scums +scupper +scupper's +scuppered +scuppering +scuppers +scurf +scurf's +scurfier +scurfiest +scurfy +scurried +scurries +scurrilous +scurrilously +scurry +scurry's +scurrying +scurvier +scurviest +scurvy +scurvy's +scuttle +scuttle's +scuttlebutt +scuttlebutt's +scuttled +scuttles +scuttling +scuzzier +scuzziest +scuzzy +scythe +scythe's +scythed +scythes +scything +sea +sea's +seabed +seabed's +seabeds +seabird +seabird's +seabirds +seaboard +seaboard's +seaboards +seacoast +seacoast's +seacoasts +seafarer +seafarer's +seafarers +seafaring +seafaring's +seafood +seafood's +seagoing +seal +seal's +sealant +sealant's +sealants +sealed +sealer +sealer's +sealers +sealing +seals +sealskin +sealskin's +seam +seam's +seaman +seaman's +seamanship +seamanship's +seamed +seamen +seamier +seamiest +seaming +seamless +seams +seamstress +seamstress's +seamstresses +seamy +seaplane +seaplane's +seaplanes +seaport +seaport's +seaports +sear +sear's +search +search's +searched +searcher +searcher's +searchers +searches +searching +searchingly +searchlight +searchlight's +searchlights +seared +searing +sears +seas +seascape +seascape's +seascapes +seashell +seashell's +seashells +seashore +seashore's +seashores +seasick +seasickness +seasickness's +seaside +seaside's +seasides +season +season's +seasonable +seasonal +seasonally +seasoned +seasoning +seasoning's +seasonings +seasons +seat +seat's +seated +seating +seating's +seats +seaward +seaward's +seawards +seaway +seaway's +seaways +seaweed +seaweed's +seaworthier +seaworthiest +seaworthy +sebaceous +sec's +secede +seceded +secedes +seceding +secession +secession's +secessionist +secessionist's +secessionists +seclude +secluded +secludes +secluding +seclusion +seclusion's +seclusive +second +second's +secondaries +secondarily +secondary +secondary's +seconded +secondhand +seconding +secondly +seconds +secrecy +secrecy's +secret +secret's +secretarial +secretariat +secretariat's +secretariats +secretaries +secretary +secretary's +secrete +secreted +secretes +secreting +secretion +secretion's +secretions +secretive +secretively +secretiveness +secretiveness's +secretly +secrets +secs +sect +sect's +sectarian +sectarian's +sectarianism +sectarianism's +sectarians +section +section's +sectional +sectional's +sectionalism +sectionalism's +sectionals +sectioned +sectioning +sections +sector +sector's +sectors +sects +secular +secularism +secularism's +secularization +secularization's +secularize +secularized +secularizes +secularizing +secure +secured +securely +securer +secures +securest +securing +securities +security +security's +sedan +sedan's +sedans +sedate +sedated +sedately +sedater +sedates +sedatest +sedating +sedation +sedation's +sedative +sedative's +sedatives +sedentary +sedge +sedge's +sediment +sediment's +sedimentary +sedimentation +sedimentation's +sediments +sedition +sedition's +seditious +seduce +seduced +seducer +seducer's +seducers +seduces +seducing +seduction +seduction's +seductions +seductive +seductively +sedulous +see +see's +seed +seed's +seeded +seedier +seediest +seediness +seediness's +seeding +seedless +seedling +seedling's +seedlings +seeds +seedy +seeing +seeings +seek +seeker +seeker's +seekers +seeking +seeks +seem +seemed +seeming +seemingly +seemlier +seemliest +seemliness +seemliness's +seemly +seems +seen +seep +seepage +seepage's +seeped +seeping +seeps +seer +seer's +seers +seersucker +seersucker's +sees +seesaw +seesaw's +seesawed +seesawing +seesaws +seethe +seethed +seethes +seething +segment +segment's +segmentation +segmentation's +segmented +segmenting +segments +segregate +segregated +segregates +segregating +segregation +segregation's +segregationist +segregationist's +segregationists +segue +segue's +segued +segueing +segues +seismic +seismically +seismograph +seismograph's +seismographic +seismographs +seismologist +seismologist's +seismologists +seismology +seismology's +seize +seized +seizes +seizing +seizure +seizure's +seizures +seldom +select +selected +selecting +selection +selection's +selections +selective +selectively +selectivity +selectivity's +selectman +selectman's +selectmen +selector +selector's +selectors +selects +selenium +selenium's +self +self's +selfish +selfishly +selfishness +selfishness's +selfless +selflessly +selflessness +selflessness's +selfsame +sell +sell's +seller +seller's +sellers +selling +sellout +sellout's +sellouts +sells +seltzer +seltzer's +selvage +selvage's +selvages +selvedge +selvedge's +selvedges +selves +semantic +semantically +semantics +semantics's +semaphore +semaphore's +semaphored +semaphores +semaphoring +semblance +semblance's +semblances +semen +semen's +semester +semester's +semesters +semi +semi's +semiannual +semiautomatic +semiautomatic's +semiautomatics +semicircle +semicircle's +semicircles +semicircular +semicolon +semicolon's +semicolons +semiconductor +semiconductor's +semiconductors +semiconscious +semifinal +semifinal's +semifinalist +semifinalist's +semifinalists +semifinals +semimonthlies +semimonthly +semimonthly's +seminal +seminar +seminar's +seminarian +seminarian's +seminarians +seminaries +seminars +seminary +seminary's +semipermeable +semiprecious +semiprivate +semiprofessional +semiprofessional's +semiprofessionals +semis +semiskilled +semitone +semitone's +semitones +semitrailer +semitrailer's +semitrailers +semitropical +semiweeklies +semiweekly +semiweekly's +senate +senate's +senates +senator +senator's +senatorial +senators +send +sender +sender's +senders +sending +sends +senile +senility +senility's +senior +senior's +seniority +seniority's +seniors +senna +senna's +sensation +sensation's +sensational +sensationalism +sensationalism's +sensationalist +sensationalist's +sensationalists +sensationally +sensations +sense +sense's +sensed +senseless +senselessly +senselessness +senselessness's +senses +sensibilities +sensibility +sensibility's +sensible +sensibly +sensing +sensitive +sensitive's +sensitively +sensitiveness +sensitiveness's +sensitives +sensitivities +sensitivity +sensitivity's +sensitization +sensitization's +sensitize +sensitized +sensitizes +sensitizing +sensor +sensor's +sensors +sensory +sensual +sensuality +sensuality's +sensually +sensuous +sensuously +sensuousness +sensuousness's +sent +sentence +sentence's +sentenced +sentences +sentencing +sententious +sentience +sentient +sentiment +sentiment's +sentimental +sentimentalism +sentimentalism's +sentimentalist +sentimentalist's +sentimentalists +sentimentality +sentimentality's +sentimentalize +sentimentalized +sentimentalizes +sentimentalizing +sentimentally +sentiments +sentinel +sentinel's +sentinels +sentries +sentry +sentry's +sepal +sepal's +sepals +separable +separate +separate's +separated +separately +separates +separating +separation +separation's +separations +separatism +separatism's +separatist +separatist's +separatists +separator +separator's +separators +sepia +sepia's +sepsis +sepsis's +septa +septet +septet's +septets +septette +septette's +septettes +septic +septicemia +septicemia's +septuagenarian +septuagenarian's +septuagenarians +septum +septum's +septums +sepulcher +sepulcher's +sepulchered +sepulchering +sepulchers +sepulchral +sequel +sequel's +sequels +sequence +sequence's +sequenced +sequencer +sequencers +sequences +sequencing +sequential +sequentially +sequester +sequestered +sequestering +sequesters +sequestration +sequestration's +sequestrations +sequin +sequin's +sequined +sequins +sequoia +sequoia's +sequoias +sera +seraglio +seraglio's +seraglios +serape +serape's +serapes +seraph +seraph's +seraphic +seraphim +seraphs +sere +serenade +serenade's +serenaded +serenades +serenading +serendipitous +serendipity +serendipity's +serene +serenely +sereneness +sereneness's +serener +serenest +serenity +serenity's +serer +serest +serf +serf's +serfdom +serfdom's +serfs +serge +serge's +sergeant +sergeant's +sergeants +serial +serial's +serialization +serialization's +serialize +serialized +serializes +serializing +serially +serials +series +series's +serious +seriously +seriousness +seriousness's +sermon +sermon's +sermonize +sermonized +sermonizes +sermonizing +sermons +serous +serpent +serpent's +serpentine +serpentine's +serpents +serrated +serried +serum +serum's +serums +servant +servant's +servants +serve +serve's +served +server +server's +servers +serves +service +service's +serviceable +serviced +serviceman +serviceman's +servicemen +services +servicewoman +servicewoman's +servicewomen +servicing +serviette +serviette's +serviettes +servile +servility +servility's +serving +serving's +servings +servitude +servitude's +servo +servo's +servomechanism +servomechanism's +servomechanisms +servos +sesame +sesame's +sesames +session +session's +sessions +set +set's +setback +setback's +setbacks +sets +settable +settee +settee's +settees +setter +setter's +setters +setting +setting's +settings +settle +settle's +settled +settlement +settlement's +settlements +settler +settler's +settlers +settles +settling +setup +setup's +setups +seven +seven's +sevens +seventeen +seventeen's +seventeens +seventeenth +seventeenth's +seventeenths +seventh +seventh's +sevenths +seventies +seventieth +seventieth's +seventieths +seventy +seventy's +sever +several +several's +severally +severance +severance's +severances +severe +severed +severely +severer +severest +severing +severity +severity's +severs +sew +sewage +sewage's +sewed +sewer +sewer's +sewerage +sewerage's +sewers +sewing +sewing's +sewn +sews +sex +sex's +sexagenarian +sexagenarian's +sexagenarians +sexed +sexes +sexier +sexiest +sexiness +sexiness's +sexing +sexism +sexism's +sexist +sexist's +sexists +sexless +sexpot +sexpot's +sexpots +sextant +sextant's +sextants +sextet +sextet's +sextets +sextette +sextette's +sextettes +sexton +sexton's +sextons +sexual +sexuality +sexuality's +sexually +sexy +sh +shabbier +shabbiest +shabbily +shabbiness +shabbiness's +shabby +shack +shack's +shackle +shackle's +shackled +shackles +shackling +shacks +shad +shad's +shade +shade's +shaded +shades +shadier +shadiest +shadiness +shadiness's +shading +shading's +shadings +shadow +shadow's +shadowbox +shadowboxed +shadowboxes +shadowboxing +shadowed +shadowier +shadowiest +shadowing +shadows +shadowy +shads +shady +shaft +shaft's +shafted +shafting +shafts +shag +shag's +shagged +shaggier +shaggiest +shagginess +shagginess's +shagging +shaggy +shags +shah +shah's +shahs +shaikh +shaikh's +shaikhs +shake +shake's +shakedown +shakedown's +shakedowns +shaken +shaker +shaker's +shakers +shakes +shakeup +shakeup's +shakeups +shakier +shakiest +shakily +shakiness +shakiness's +shaking +shaky +shale +shale's +shall +shallot +shallot's +shallots +shallow +shallow's +shallower +shallowest +shallowness +shallowness's +shallows +shalt +sham +sham's +shaman +shaman's +shamans +shamble +shamble's +shambled +shambles +shambles's +shambling +shame +shame's +shamed +shamefaced +shameful +shamefully +shamefulness +shamefulness's +shameless +shamelessly +shames +shaming +shammed +shammies +shamming +shammy +shammy's +shampoo +shampoo's +shampooed +shampooing +shampoos +shamrock +shamrock's +shamrocks +shams +shan't +shandy +shanghai +shanghaied +shanghaiing +shanghais +shank +shank's +shanks +shanties +shantung +shantung's +shanty +shanty's +shantytown +shantytown's +shantytowns +shape +shape's +shaped +shapeless +shapelessly +shapelessness +shapelessness's +shapelier +shapeliest +shapeliness +shapeliness's +shapely +shapes +shaping +shard +shard's +shards +share +share's +sharecropper +sharecropper's +sharecroppers +shared +shareholder +shareholder's +shareholders +shares +sharing +shark +shark's +sharked +sharking +sharks +sharkskin +sharkskin's +sharp +sharp's +sharped +sharpen +sharpened +sharpener +sharpener's +sharpeners +sharpening +sharpens +sharper +sharper's +sharpers +sharpest +sharping +sharply +sharpness +sharpness's +sharps +sharpshooter +sharpshooter's +sharpshooters +shat +shatter +shatter's +shattered +shattering +shatterproof +shatters +shave +shave's +shaved +shaven +shaver +shaver's +shavers +shaves +shaving +shaving's +shavings +shawl +shawl's +shawls +shaykh +shaykh's +shaykhs +she +she'd +she'll +she's +sheaf +sheaf's +shear +shear's +sheared +shearer +shearer's +shearers +shearing +shears +sheath +sheath's +sheathe +sheathed +sheathes +sheathing +sheathing's +sheathings +sheaths +sheave +sheave's +sheaves +shebang +shebang's +shebangs +shed +shed's +shedding +sheds +sheen +sheen's +sheep +sheep's +sheepdog +sheepdog's +sheepdogs +sheepfold +sheepfold's +sheepfolds +sheepish +sheepishly +sheepishness +sheepishness's +sheepskin +sheepskin's +sheepskins +sheer +sheer's +sheered +sheerer +sheerest +sheering +sheers +sheet +sheet's +sheeting +sheeting's +sheets +sheik +sheik's +sheikdom +sheikdom's +sheikdoms +sheikh +sheikh's +sheikhdom +sheikhdom's +sheikhdoms +sheikhs +sheiks +shekel +shekel's +shekels +shelf +shelf's +shell +shell's +shellac +shellac's +shellacked +shellacking +shellacs +shelled +sheller +shellfish +shellfish's +shellfishes +shelling +shells +shelter +shelter's +sheltered +sheltering +shelters +shelve +shelved +shelves +shelving +shelving's +shenanigan +shenanigan's +shenanigans +shepherd +shepherd's +shepherded +shepherdess +shepherdess's +shepherdesses +shepherding +shepherds +sherbert +sherbert's +sherberts +sherbet +sherbet's +sherbets +sherd +sherd's +sherds +sheriff +sheriff's +sheriffs +sherries +sherry +sherry's +shes +shibboleth +shibboleth's +shibboleths +shied +shield +shield's +shielded +shielding +shields +shies +shift +shift's +shifted +shiftier +shiftiest +shiftily +shiftiness +shiftiness's +shifting +shiftless +shiftlessness +shiftlessness's +shifts +shifty +shill +shill's +shillalah +shillalah's +shillalahs +shilled +shillelagh +shillelagh's +shillelaghs +shilling +shilling's +shillings +shills +shim +shim's +shimmed +shimmer +shimmer's +shimmered +shimmering +shimmers +shimmery +shimmied +shimmies +shimming +shimmy +shimmy's +shimmying +shims +shin +shin's +shinbone +shinbone's +shinbones +shindig +shindig's +shindigs +shine +shine's +shined +shiner +shiner's +shiners +shines +shingle +shingle's +shingled +shingles +shingling +shinier +shiniest +shininess +shininess's +shining +shinned +shinnied +shinnies +shinning +shinny +shinnying +shins +shiny +ship +ship's +shipboard +shipboard's +shipboards +shipbuilder +shipbuilder's +shipbuilders +shipbuilding +shipbuilding's +shipload +shipload's +shiploads +shipmate +shipmate's +shipmates +shipment +shipment's +shipments +shipped +shipper +shipper's +shippers +shipping +shipping's +ships +shipshape +shipwreck +shipwreck's +shipwrecked +shipwrecking +shipwrecks +shipwright +shipwright's +shipwrights +shipyard +shipyard's +shipyards +shire +shire's +shires +shirk +shirked +shirker +shirker's +shirkers +shirking +shirks +shirr +shirr's +shirred +shirring +shirring's +shirrings +shirrs +shirt +shirt's +shirted +shirting +shirts +shirtsleeve +shirtsleeve's +shirtsleeves +shirttail +shirttail's +shirttails +shirtwaist +shirtwaist's +shirtwaists +shit +shit's +shits +shittier +shittiest +shitting +shitty +shiver +shiver's +shivered +shivering +shivers +shivery +shlemiel +shlemiel's +shlemiels +shlep +shlep's +shlepp +shlepp's +shlepped +shlepping +shlepps +shleps +shlock +shlocky +shoal +shoal's +shoaled +shoaling +shoals +shock +shock's +shocked +shocker +shocker's +shockers +shocking +shockingly +shockproof +shocks +shod +shodden +shoddier +shoddiest +shoddily +shoddiness +shoddiness's +shoddy +shoddy's +shoe +shoe's +shoed +shoehorn +shoehorn's +shoehorned +shoehorning +shoehorns +shoeing +shoelace +shoelace's +shoelaces +shoemaker +shoemaker's +shoemakers +shoes +shoeshine +shoeshine's +shoeshines +shoestring +shoestring's +shoestrings +shogun +shogun's +shoguns +shone +shoo +shooed +shooing +shook +shoon +shoos +shoot +shoot's +shooter +shooter's +shooters +shooting +shooting's +shootings +shootout +shootout's +shootouts +shoots +shop +shop's +shopkeeper +shopkeeper's +shopkeepers +shoplift +shoplifted +shoplifter +shoplifter's +shoplifters +shoplifting +shoplifting's +shoplifts +shopped +shopper +shopper's +shoppers +shopping +shopping's +shops +shoptalk +shoptalk's +shopworn +shore +shore's +shored +shoreline +shoreline's +shorelines +shores +shoring +shorn +short +short's +shortage +shortage's +shortages +shortbread +shortbread's +shortcake +shortcake's +shortcakes +shortchange +shortchanged +shortchanges +shortchanging +shortcoming +shortcoming's +shortcomings +shortcut +shortcut's +shortcuts +shorted +shorten +shortened +shortening +shortening's +shortenings +shortens +shorter +shortest +shortfall +shortfall's +shortfalls +shorthand +shorthand's +shorthorn +shorthorn's +shorthorns +shorting +shortish +shortlist +shortly +shortness +shortness's +shorts +shortsighted +shortsightedly +shortsightedness +shortsightedness's +shortstop +shortstop's +shortstops +shortwave +shortwave's +shortwaves +shot +shot's +shotgun +shotgun's +shotgunned +shotgunning +shotguns +shots +should +shoulder +shoulder's +shouldered +shouldering +shoulders +shouldn't +shout +shout's +shouted +shouting +shouts +shove +shove's +shoved +shovel +shovel's +shoveled +shovelful +shovelful's +shovelfuls +shoveling +shovelled +shovelling +shovels +shoves +shoving +show +show's +showbiz +showbiz's +showboat +showboat's +showboated +showboating +showboats +showcase +showcase's +showcased +showcases +showcasing +showdown +showdown's +showdowns +showed +shower +shower's +showered +showering +showers +showery +showgirl +showgirl's +showgirls +showier +showiest +showily +showiness +showiness's +showing +showing's +showings +showman +showman's +showmanship +showmanship's +showmen +shown +showoff +showoff's +showoffs +showpiece +showpiece's +showpieces +showplace +showplace's +showplaces +showroom +showroom's +showrooms +shows +showy +shrank +shrapnel +shrapnel's +shred +shred's +shredded +shredder +shredder's +shredders +shredding +shreds +shrew +shrew's +shrewd +shrewder +shrewdest +shrewdly +shrewdness +shrewdness's +shrewish +shrews +shriek +shriek's +shrieked +shrieking +shrieks +shrift +shrift's +shrike +shrike's +shrikes +shrill +shrilled +shriller +shrillest +shrilling +shrillness +shrillness's +shrills +shrilly +shrimp +shrimp's +shrimped +shrimping +shrimps +shrine +shrine's +shrines +shrink +shrink's +shrinkable +shrinkage +shrinkage's +shrinking +shrinks +shrive +shrived +shrivel +shriveled +shriveling +shrivelled +shrivelling +shrivels +shriven +shrives +shriving +shroud +shroud's +shrouded +shrouding +shrouds +shrove +shrub +shrub's +shrubberies +shrubbery +shrubbery's +shrubbier +shrubbiest +shrubby +shrubs +shrug +shrug's +shrugged +shrugging +shrugs +shrunk +shrunken +shtick +shtick's +shticks +shtik +shtik's +shtiks +shuck +shuck's +shucked +shucking +shucks +shuckses +shudder +shudder's +shuddered +shuddering +shudders +shuffle +shuffle's +shuffleboard +shuffleboard's +shuffleboards +shuffled +shuffler +shuffler's +shufflers +shuffles +shuffling +shun +shunned +shunning +shuns +shunt +shunt's +shunted +shunting +shunts +shush +shushed +shushes +shushing +shut +shutdown +shutdown's +shutdowns +shuteye +shuteye's +shutout +shutout's +shutouts +shuts +shutter +shutter's +shutterbug +shutterbug's +shutterbugs +shuttered +shuttering +shutters +shutting +shuttle +shuttle's +shuttlecock +shuttlecock's +shuttlecocked +shuttlecocking +shuttlecocks +shuttled +shuttles +shuttling +shy +shy's +shyer +shyest +shying +shyly +shyness +shyness's +shyster +shyster's +shysters +sibilant +sibilant's +sibilants +sibling +sibling's +siblings +sibyl +sibyl's +sibyls +sic +sick +sickbed +sickbed's +sickbeds +sicked +sicken +sickened +sickening +sickeningly +sickens +sicker +sickest +sicking +sickle +sickle's +sickles +sicklier +sickliest +sickly +sickness +sickness's +sicknesses +sicks +sics +side +side's +sidearm +sidearm's +sidearms +sidebar +sidebar's +sidebars +sideboard +sideboard's +sideboards +sideburns +sideburns's +sidecar +sidecar's +sidecars +sided +sidekick +sidekick's +sidekicks +sidelight +sidelight's +sidelights +sideline +sideline's +sidelined +sidelines +sidelining +sidelong +sidereal +sides +sidesaddle +sidesaddle's +sidesaddles +sideshow +sideshow's +sideshows +sidesplitting +sidestep +sidestep's +sidestepped +sidestepping +sidesteps +sidestroke +sidestroke's +sidestroked +sidestrokes +sidestroking +sideswipe +sideswipe's +sideswiped +sideswipes +sideswiping +sidetrack +sidetrack's +sidetracked +sidetracking +sidetracks +sidewalk +sidewalk's +sidewalks +sidewall +sidewall's +sidewalls +sideways +sidewise +siding +siding's +sidings +sidle +sidle's +sidled +sidles +sidling +siege +siege's +sieges +sierra +sierra's +sierras +siesta +siesta's +siestas +sieve +sieve's +sieved +sieves +sieving +sift +sifted +sifter +sifter's +sifters +sifting +sifts +sigh +sigh's +sighed +sighing +sighs +sight +sight's +sighted +sighting +sighting's +sightings +sightless +sightread +sights +sightseeing +sightseeing's +sightseer +sightseer's +sightseers +sigma +sign +sign's +signal +signal's +signaled +signaling +signalize +signalized +signalizes +signalizing +signalled +signalling +signally +signals +signatories +signatory +signatory's +signature +signature's +signatures +signboard +signboard's +signboards +signed +signer +signer's +signers +signet +signet's +signets +significance +significance's +significant +significantly +signification +signification's +significations +signified +signifies +signify +signifying +signing +signing's +signings +signpost +signpost's +signposted +signposting +signposts +signs +silage +silage's +silence +silence's +silenced +silencer +silencer's +silencers +silences +silencing +silent +silent's +silenter +silentest +silently +silents +silhouette +silhouette's +silhouetted +silhouettes +silhouetting +silica +silica's +silicate +silicate's +silicates +siliceous +silicious +silicon +silicon's +silicone +silicone's +silicosis +silicosis's +silk +silk's +silken +silkier +silkiest +silks +silkworm +silkworm's +silkworms +silky +sill +sill's +sillier +sillies +silliest +silliness +silliness's +sills +silly +silly's +silo +silo's +silos +silt +silt's +silted +silting +silts +silvan +silver +silver's +silvered +silverfish +silverfish's +silverfishes +silvering +silvers +silversmith +silversmith's +silversmiths +silverware +silverware's +silvery +simian +simian's +simians +similar +similarities +similarity +similarity's +similarly +simile +simile's +similes +simmer +simmer's +simmered +simmering +simmers +simpatico +simper +simper's +simpered +simpering +simpers +simple +simpleness +simpleness's +simpler +simplest +simpleton +simpleton's +simpletons +simplex +simplicity +simplicity's +simplification +simplification's +simplifications +simplified +simplifies +simplify +simplifying +simplistic +simply +simulate +simulated +simulates +simulating +simulation +simulation's +simulations +simulator +simulator's +simulators +simulcast +simulcast's +simulcasted +simulcasting +simulcasts +simultaneous +simultaneously +sin +sin's +since +sincere +sincerely +sincerer +sincerest +sincerity +sincerity's +sine +sinecure +sinecure's +sinecures +sinew +sinew's +sinews +sinewy +sinful +sinfully +sinfulness +sinfulness's +sing +sing's +singe +singe's +singed +singeing +singer +singer's +singers +singes +singing +singing's +single +single's +singled +singles +singles's +singleton +singleton's +singletons +singling +singly +sings +singsong +singsong's +singsonged +singsonging +singsongs +singular +singular's +singularities +singularity +singularity's +singularly +singulars +sinister +sink +sink's +sinkable +sinker +sinker's +sinkers +sinkhole +sinkhole's +sinkholes +sinking +sinks +sinned +sinner +sinner's +sinners +sinning +sins +sinuous +sinus +sinus's +sinuses +sinusitis +sinusitis's +sinusoidal +sip +sip's +siphon +siphon's +siphoned +siphoning +siphons +sipped +sipping +sips +sir +sir's +sire +sire's +sired +siren +siren's +sirens +sires +siring +sirloin +sirloin's +sirloins +sirocco +sirocco's +siroccos +sirs +sirup +sirup's +sirups +sis +sis's +sisal +sisal's +sises +sissier +sissies +sissiest +sissy +sissy's +sister +sister's +sisterhood +sisterhood's +sisterhoods +sisterly +sisters +sit +sitar +sitar's +sitars +sitcom +sitcom's +sitcoms +site +site's +sited +sites +siting +sits +sitter +sitter's +sitters +sitting +sitting's +sittings +situate +situated +situates +situating +situation +situation's +situations +six +six's +sixes +sixpence +sixpence's +sixpences +sixteen +sixteen's +sixteens +sixteenth +sixteenth's +sixteenths +sixth +sixth's +sixths +sixties +sixtieth +sixtieth's +sixtieths +sixty +sixty's +sizable +size +size's +sizeable +sized +sizer +sizes +sizing +sizing's +sizzle +sizzle's +sizzled +sizzles +sizzling +skate +skate's +skateboard +skateboard's +skateboarded +skateboarder +skateboarder's +skateboarders +skateboarding +skateboarding's +skateboards +skated +skater +skater's +skaters +skates +skating +skedaddle +skedaddle's +skedaddled +skedaddles +skedaddling +skeet +skeet's +skein +skein's +skeins +skeletal +skeleton +skeleton's +skeletons +skeptic +skeptic's +skeptical +skeptically +skepticism +skepticism's +skeptics +sketch +sketch's +sketched +sketches +sketchier +sketchiest +sketching +sketchy +skew +skew's +skewed +skewer +skewer's +skewered +skewering +skewers +skewing +skews +ski +ski's +skid +skid's +skidded +skidding +skids +skied +skier +skier's +skiers +skies +skiff +skiff's +skiffs +skiing +skiing's +skilful +skill +skill's +skilled +skillet +skillet's +skillets +skillful +skillfully +skills +skim +skim's +skimmed +skimming +skimp +skimped +skimpier +skimpiest +skimpiness +skimpiness's +skimping +skimps +skimpy +skims +skin +skin's +skinflint +skinflint's +skinflints +skinhead +skinhead's +skinheads +skinless +skinned +skinnier +skinniest +skinniness +skinniness's +skinning +skinny +skinny's +skins +skintight +skip +skip's +skipped +skipper +skipper's +skippered +skippering +skippers +skipping +skips +skirmish +skirmish's +skirmished +skirmishes +skirmishing +skirt +skirt's +skirted +skirting +skirts +skis +skit +skit's +skits +skitter +skittered +skittering +skitters +skittish +skivvied +skivvies +skivvy +skivvy's +skivvying +skulduggery +skulduggery's +skulk +skulked +skulking +skulks +skull +skull's +skullcap +skullcap's +skullcaps +skullduggery +skullduggery's +skulls +skunk +skunk's +skunked +skunking +skunks +sky +sky's +skycap +skycap's +skycaps +skydive +skydived +skydiver +skydiver's +skydivers +skydives +skydiving +skydiving's +skydove +skyed +skying +skyjack +skyjacked +skyjacker +skyjacker's +skyjackers +skyjacking +skyjacks +skylark +skylark's +skylarked +skylarking +skylarks +skylight +skylight's +skylights +skyline +skyline's +skylines +skyrocket +skyrocket's +skyrocketed +skyrocketing +skyrockets +skyscraper +skyscraper's +skyscrapers +skyward +skywards +skywriter +skywriter's +skywriters +skywriting +skywriting's +slab +slab's +slabbed +slabbing +slabs +slack +slack's +slacked +slacken +slackened +slackening +slackens +slacker +slacker's +slackers +slackest +slacking +slackly +slackness +slackness's +slacks +slacks's +slag +slag's +slags +slain +slake +slaked +slakes +slaking +slalom +slalom's +slalomed +slaloming +slaloms +slam +slam's +slammed +slammer +slammer's +slammers +slamming +slams +slander +slander's +slandered +slanderer +slanderer's +slanderers +slandering +slanderous +slanders +slang +slang's +slangier +slangiest +slangy +slant +slant's +slanted +slanting +slants +slantwise +slap +slap's +slapdash +slaphappier +slaphappiest +slaphappy +slapped +slapping +slaps +slapstick +slapstick's +slash +slash's +slashed +slashes +slashing +slat +slat's +slate +slate's +slated +slates +slather +slathered +slathering +slathers +slating +slats +slattern +slattern's +slatternly +slatterns +slaughter +slaughter's +slaughtered +slaughterer +slaughterer's +slaughterers +slaughterhouse +slaughterhouse's +slaughterhouses +slaughtering +slaughters +slave +slave's +slaved +slaver +slaver's +slavered +slavering +slavers +slavery +slavery's +slaves +slaving +slavish +slavishly +slaw +slaw's +slay +slayer +slayer's +slayers +slaying +slaying's +slayings +slays +sleaze +sleaze's +sleazes +sleazier +sleaziest +sleazily +sleaziness +sleaziness's +sleazy +sled +sled's +sledded +sledding +sledge +sledge's +sledged +sledgehammer +sledgehammer's +sledgehammered +sledgehammering +sledgehammers +sledges +sledging +sleds +sleek +sleeked +sleeker +sleekest +sleeking +sleekly +sleekness +sleekness's +sleeks +sleep +sleep's +sleeper +sleeper's +sleepers +sleepier +sleepiest +sleepily +sleepiness +sleepiness's +sleeping +sleepless +sleeplessness +sleeplessness's +sleeps +sleepwalk +sleepwalked +sleepwalker +sleepwalker's +sleepwalkers +sleepwalking +sleepwalking's +sleepwalks +sleepwear +sleepwear's +sleepy +sleepyhead +sleepyhead's +sleepyheads +sleet +sleet's +sleeted +sleetier +sleetiest +sleeting +sleets +sleety +sleeve +sleeve's +sleeveless +sleeves +sleigh +sleigh's +sleighed +sleighing +sleighs +slender +slenderer +slenderest +slenderize +slenderized +slenderizes +slenderizing +slenderness +slenderness's +slept +sleuth +sleuth's +sleuths +slew +slew's +slewed +slewing +slews +slice +slice's +sliced +slicer +slicer's +slicers +slices +slicing +slick +slick's +slicked +slicker +slicker's +slickers +slickest +slicking +slickly +slickness +slickness's +slicks +slid +slide +slide's +slider +slider's +sliders +slides +sliding +slier +sliest +slight +slight's +slighted +slighter +slightest +slighting +slightly +slightness +slightness's +slights +slily +slim +slime +slime's +slimier +slimiest +slimmed +slimmer +slimmest +slimming +slimness +slimness's +slims +slimy +sling +sling's +slinging +slings +slingshot +slingshot's +slingshots +slink +slinked +slinkier +slinkiest +slinking +slinks +slinky +slip +slip's +slipcover +slipcover's +slipcovers +slipknot +slipknot's +slipknots +slippage +slippage's +slippages +slipped +slipper +slipper's +slipperier +slipperiest +slipperiness +slipperiness's +slippers +slippery +slipping +slips +slipshod +slit +slit's +slither +slither's +slithered +slithering +slithers +slithery +slits +slitter +slitting +sliver +sliver's +slivered +slivering +slivers +slob +slob's +slobber +slobber's +slobbered +slobbering +slobbers +slobs +sloe +sloe's +sloes +slog +slog's +slogan +slogan's +slogans +slogged +slogging +slogs +sloop +sloop's +sloops +slop +slop's +slope +slope's +sloped +slopes +sloping +slopped +sloppier +sloppiest +sloppily +sloppiness +sloppiness's +slopping +sloppy +slops +slosh +sloshed +sloshes +sloshing +slot +slot's +sloth +sloth's +slothful +slothfulness +slothfulness's +sloths +slots +slotted +slotting +slouch +slouch's +slouched +slouches +slouchier +slouchiest +slouching +slouchy +slough +slough's +sloughed +sloughing +sloughs +sloven +sloven's +slovenlier +slovenliest +slovenliness +slovenliness's +slovenly +slovens +slow +slowdown +slowdown's +slowdowns +slowed +slower +slowest +slowing +slowly +slowness +slowness's +slowpoke +slowpoke's +slowpokes +slows +sludge +sludge's +slue +slue's +slued +slues +slug +slug's +sluggard +sluggard's +sluggards +slugged +slugger +slugger's +sluggers +slugging +sluggish +sluggishly +sluggishness +sluggishness's +slugs +sluice +sluice's +sluiced +sluices +sluicing +sluing +slum +slum's +slumber +slumber's +slumbered +slumbering +slumberous +slumbers +slumbrous +slumlord +slumlord's +slumlords +slummed +slummer +slumming +slump +slump's +slumped +slumping +slumps +slums +slung +slunk +slur +slur's +slurp +slurp's +slurped +slurping +slurps +slurred +slurring +slurs +slush +slush's +slushier +slushiest +slushy +slut +slut's +sluts +sluttish +sly +slyer +slyest +slyly +slyness +slyness's +smack +smack's +smacked +smacker +smacker's +smackers +smacking +smacks +small +small's +smaller +smallest +smallish +smallness +smallness's +smallpox +smallpox's +smalls +smarmier +smarmiest +smarmy +smart +smart's +smarted +smarten +smartened +smartening +smartens +smarter +smartest +smarting +smartly +smartness +smartness's +smarts +smarts's +smash +smash's +smashed +smashes +smashing +smattering +smattering's +smatterings +smear +smear's +smeared +smearing +smears +smell +smell's +smelled +smellier +smelliest +smelling +smells +smelly +smelt +smelt's +smelted +smelter +smelter's +smelters +smelting +smelts +smidge +smidge's +smidgen +smidgen's +smidgens +smidgeon +smidgeon's +smidgeons +smidges +smidgin +smidgin's +smidgins +smile +smile's +smiled +smiles +smiling +smilingly +smirch +smirch's +smirched +smirches +smirching +smirk +smirk's +smirked +smirking +smirks +smit +smite +smites +smith +smith's +smithereens +smithereens's +smithies +smiths +smithy +smithy's +smiting +smitten +smock +smock's +smocked +smocking +smocking's +smocks +smog +smog's +smoggier +smoggiest +smoggy +smoke +smoke's +smoked +smokehouse +smokehouse's +smokehouses +smokeless +smoker +smoker's +smokers +smokes +smokestack +smokestack's +smokestacks +smokier +smokiest +smokiness +smokiness's +smoking +smoking's +smoky +smolder +smolder's +smoldered +smoldering +smolders +smooch +smooch's +smooched +smooches +smooching +smooth +smoothed +smoother +smoothes +smoothest +smoothing +smoothly +smoothness +smoothness's +smooths +smote +smother +smother's +smothered +smothering +smothers +smoulder +smoulder's +smouldered +smouldering +smoulders +smudge +smudge's +smudged +smudges +smudgier +smudgiest +smudging +smudgy +smug +smugger +smuggest +smuggle +smuggled +smuggler +smuggler's +smugglers +smuggles +smuggling +smuggling's +smugly +smugness +smugness's +smut +smut's +smuts +smuttier +smuttiest +smutty +smörgåsbord +smörgåsbord's +smörgåsbords +snack +snack's +snacked +snacking +snacks +snaffle +snaffle's +snaffled +snaffles +snaffling +snafu +snafu's +snafus +snag +snag's +snagged +snagging +snags +snail +snail's +snailed +snailing +snails +snake +snake's +snakebite +snakebite's +snakebites +snaked +snakes +snakier +snakiest +snaking +snaky +snap +snap's +snapdragon +snapdragon's +snapdragons +snapped +snapper +snapper's +snappers +snappier +snappiest +snapping +snappish +snappy +snaps +snapshot +snapshot's +snapshots +snare +snare's +snared +snares +snaring +snarl +snarl's +snarled +snarling +snarls +snatch +snatch's +snatched +snatches +snatching +snazzier +snazziest +snazzy +sneak +sneak's +sneaked +sneaker +sneaker's +sneakers +sneakier +sneakiest +sneaking +sneaks +sneaky +sneer +sneer's +sneered +sneering +sneeringly +sneers +sneeze +sneeze's +sneezed +sneezes +sneezing +snicker +snicker's +snickered +snickering +snickers +snide +snider +snidest +sniff +sniff's +sniffed +sniffing +sniffle +sniffle's +sniffled +sniffles +sniffling +sniffs +snifter +snifter's +snifters +snigger +snigger's +sniggered +sniggering +sniggers +snip +snip's +snipe +snipe's +sniped +sniper +sniper's +snipers +snipes +sniping +snipped +snippet +snippet's +snippets +snippier +snippiest +snipping +snippy +snips +snit +snit's +snitch +snitch's +snitched +snitches +snitching +snits +snivel +snivel's +sniveled +sniveling +snivelled +snivelling +snivels +snob +snob's +snobbery +snobbery's +snobbier +snobbiest +snobbish +snobbishness +snobbishness's +snobby +snobs +snooker +snoop +snoop's +snooped +snooper +snooper's +snoopers +snoopier +snoopiest +snooping +snoops +snoopy +snoot +snoot's +snootier +snootiest +snootiness +snootiness's +snoots +snooty +snooze +snooze's +snoozed +snoozes +snoozing +snore +snore's +snored +snorer +snorer's +snorers +snores +snoring +snorkel +snorkel's +snorkeled +snorkeler +snorkeler's +snorkelers +snorkeling +snorkeling's +snorkelled +snorkelling +snorkels +snort +snort's +snorted +snorting +snorts +snot +snot's +snots +snottier +snottiest +snotty +snout +snout's +snouts +snow +snow's +snowball +snowball's +snowballed +snowballing +snowballs +snowboard +snowboard's +snowboarded +snowboarding +snowboarding's +snowboards +snowbound +snowdrift +snowdrift's +snowdrifts +snowdrop +snowdrop's +snowdrops +snowed +snowfall +snowfall's +snowfalls +snowflake +snowflake's +snowflakes +snowier +snowiest +snowing +snowman +snowman's +snowmen +snowmobile +snowmobile's +snowmobiled +snowmobiles +snowmobiling +snowplow +snowplow's +snowplowed +snowplowing +snowplows +snows +snowshed +snowshoe +snowshoe's +snowshoeing +snowshoes +snowstorm +snowstorm's +snowstorms +snowsuit +snowsuit's +snowsuits +snowy +snub +snub's +snubbed +snubbing +snubs +snuck +snuff +snuff's +snuffbox +snuffbox's +snuffboxes +snuffed +snuffer +snuffer's +snuffers +snuffing +snuffle +snuffle's +snuffled +snuffles +snuffling +snuffs +snug +snug's +snugged +snugger +snuggest +snugging +snuggle +snuggle's +snuggled +snuggles +snuggling +snugly +snugs +so +so's +soak +soak's +soaked +soaking +soaking's +soakings +soaks +soap +soap's +soapbox +soapbox's +soapboxes +soaped +soapier +soapiest +soapiness +soapiness's +soaping +soaps +soapstone +soapstone's +soapsuds +soapsuds's +soapy +soar +soar's +soared +soaring +soars +sob +sob's +sobbed +sobbing +sober +sobered +soberer +soberest +sobering +soberly +soberness +soberness's +sobers +sobriety +sobriety's +sobriquet +sobriquet's +sobriquets +sobs +soccer +soccer's +sociability +sociability's +sociable +sociable's +sociables +sociably +social +social's +socialism +socialism's +socialist +socialist's +socialistic +socialists +socialite +socialite's +socialites +socialization +socialization's +socialize +socialized +socializes +socializing +socially +socials +societal +societies +society +society's +socioeconomic +sociological +sociologist +sociologist's +sociologists +sociology +sociology's +sociopath +sociopath's +sociopaths +sock +sock's +socked +socket +socket's +sockets +socking +socks +sod +sod's +soda +soda's +sodas +sodded +sodden +sodding +sodium +sodium's +sodomite +sodomite's +sodomites +sodomy +sodomy's +sods +sofa +sofa's +sofas +soft +softball +softball's +softballs +soften +softened +softener +softener's +softeners +softening +softens +softer +softest +softhearted +softie +softie's +softies +softly +softness +softness's +software +software's +softwood +softwood's +softwoods +softy +softy's +soggier +soggiest +soggily +sogginess +sogginess's +soggy +soil +soil's +soiled +soiling +soils +soirée +soirée's +soirées +sojourn +sojourn's +sojourned +sojourning +sojourns +sol +sol's +solace +solace's +solaced +solaces +solacing +solar +solaria +solarium +solarium's +solariums +sold +solder +solder's +soldered +soldering +solders +soldier +soldier's +soldiered +soldiering +soldierly +soldiers +sole +sole's +solecism +solecism's +solecisms +soled +solely +solemn +solemner +solemnest +solemnity +solemnity's +solemnize +solemnized +solemnizes +solemnizing +solemnly +solenoid +solenoid's +solenoids +soles +soli +solicit +solicitation +solicitation's +solicitations +solicited +soliciting +solicitor +solicitor's +solicitors +solicitous +solicitously +solicits +solicitude +solicitude's +solid +solid's +solidarity +solidarity's +solider +solidest +solidification +solidification's +solidified +solidifies +solidify +solidifying +solidity +solidity's +solidly +solidness +solidness's +solids +soliloquies +soliloquize +soliloquized +soliloquizes +soliloquizing +soliloquy +soliloquy's +soling +solitaire +solitaire's +solitaires +solitaries +solitary +solitary's +solitude +solitude's +solo +solo's +soloed +soloing +soloist +soloist's +soloists +solos +sols +solstice +solstice's +solstices +solubility +solubility's +soluble +soluble's +solubles +solution +solution's +solutions +solvable +solve +solved +solvency +solvency's +solvent +solvent's +solvents +solver +solver's +solvers +solves +solving +somber +somberly +sombre +sombrely +sombrero +sombrero's +sombreros +some +somebodies +somebody +somebody's +someday +somehow +someone +someone's +someones +someplace +somersault +somersault's +somersaulted +somersaulting +somersaults +something +something's +somethings +sometime +sometimes +someway +somewhat +somewhats +somewhere +somnambulism +somnambulism's +somnambulist +somnambulist's +somnambulists +somnolence +somnolence's +somnolent +son +son's +sonar +sonar's +sonars +sonata +sonata's +sonatas +song +song's +songbird +songbird's +songbirds +songs +songster +songster's +songsters +songwriter +songwriter's +songwriters +sonic +sonnet +sonnet's +sonnets +sonnies +sonny +sonny's +sonority +sonority's +sonorous +sons +soon +sooner +soonest +soot +soot's +sooth +sooth's +soothe +soothed +soothes +soothing +soothingly +soothsayer +soothsayer's +soothsayers +sootier +sootiest +sooty +sop +sop's +sophism +sophism's +sophist +sophist's +sophisticate +sophisticate's +sophisticated +sophisticates +sophisticating +sophistication +sophistication's +sophistries +sophistry +sophistry's +sophists +sophomore +sophomore's +sophomores +sophomoric +soporific +soporific's +soporifics +sopped +soppier +soppiest +sopping +soppy +soprano +soprano's +sopranos +sops +sorbet +sorbet's +sorbets +sorcerer +sorcerer's +sorcerers +sorceress +sorceress's +sorceresses +sorcery +sorcery's +sordid +sordidly +sordidness +sordidness's +sore +sore's +sorehead +sorehead's +soreheads +sorely +soreness +soreness's +sorer +sores +sorest +sorghum +sorghum's +sororities +sorority +sorority's +sorrel +sorrel's +sorrels +sorrier +sorriest +sorrow +sorrow's +sorrowed +sorrowful +sorrowfully +sorrowing +sorrows +sorry +sort +sort's +sorta +sorted +sorter +sorter's +sorters +sortie +sortie's +sortied +sortieing +sorties +sorting +sorts +sos +sot +sot's +sots +sottish +sou'wester +soubriquet +soubriquet's +soubriquets +soufflé +soufflé's +soufflés +sough +sough's +soughed +soughing +soughs +sought +soul +soul's +soulful +soulfully +soulfulness +soulfulness's +soulless +souls +sound +sound's +sounded +sounder +soundest +sounding +sounding's +soundings +soundless +soundlessly +soundly +soundness +soundness's +soundproof +soundproofed +soundproofing +soundproofs +sounds +soundtrack +soundtrack's +soundtracks +soup +soup's +souped +soupier +soupiest +souping +soups +soupy +soupçon +soupçon's +soupçons +sour +sour's +source +source's +sourced +sources +sourcing +sourdough +sourdough's +sourdoughs +soured +sourer +sourest +souring +sourly +sourness +sourness's +sourpuss +sourpuss's +sourpusses +sours +souse +souse's +soused +souses +sousing +south +south's +southbound +southeast +southeast's +southeasterly +southeastern +southeastward +southerlies +southerly +southerly's +southern +southern's +southerner +southerner's +southerners +southernmost +southerns +southpaw +southpaw's +southpaws +southward +southward's +southwards +southwest +southwest's +southwester +southwester's +southwesterly +southwestern +southwesters +southwestward +souvenir +souvenir's +souvenirs +sovereign +sovereign's +sovereigns +sovereignty +sovereignty's +soviet +soviet's +soviets +sow +sow's +sowed +sower +sower's +sowers +sowing +sown +sows +sox +soy +soy's +soya +soya's +soybean +soybean's +soybeans +spa +spa's +space +space's +spacecraft +spacecraft's +spacecrafts +spaced +spaceflight +spaceflight's +spaceflights +spaceman +spaceman's +spacemen +spaces +spaceship +spaceship's +spaceships +spacesuit +spacesuit's +spacesuits +spacewalk +spacewalk's +spacewalked +spacewalking +spacewalks +spacey +spacial +spacier +spaciest +spacing +spacing's +spacious +spaciously +spaciousness +spaciousness's +spacy +spade +spade's +spaded +spadeful +spadeful's +spadefuls +spades +spadework +spadework's +spading +spaghetti +spaghetti's +spake +spammer +spammer's +spammers +span +span's +spandex +spandex's +spangle +spangle's +spangled +spangles +spangling +spaniel +spaniel's +spaniels +spank +spank's +spanked +spanking +spanking's +spankings +spanks +spanned +spanner +spanner's +spanners +spanning +spans +spar +spar's +spare +spare's +spared +sparely +spareness +spareness's +sparer +spareribs +spareribs's +spares +sparest +sparing +sparingly +spark +spark's +sparked +sparking +sparkle +sparkle's +sparkled +sparkler +sparkler's +sparklers +sparkles +sparkling +sparks +sparred +sparring +sparrow +sparrow's +sparrows +spars +sparse +sparsely +sparseness +sparseness's +sparser +sparsest +sparsity +sparsity's +spartan +spas +spasm +spasm's +spasmodic +spasmodically +spasms +spastic +spastic's +spastics +spat +spat's +spate +spate's +spates +spatial +spatially +spats +spatted +spatter +spatter's +spattered +spattering +spatters +spatting +spatula +spatula's +spatulas +spawn +spawn's +spawned +spawning +spawns +spay +spayed +spaying +spays +speak +speakeasies +speakeasy +speakeasy's +speaker +speaker's +speakers +speaking +speaks +spear +spear's +speared +spearhead +spearhead's +spearheaded +spearheading +spearheads +spearing +spearmint +spearmint's +spears +spec +spec's +specced +speccing +special +special's +specialist +specialist's +specialists +specialization +specialization's +specializations +specialize +specialized +specializes +specializing +specially +specials +specialties +specialty +specialty's +specie +specie's +species +species's +specifiable +specific +specific's +specifically +specification +specification's +specifications +specifics +specified +specifier +specifiers +specifies +specify +specifying +specimen +specimen's +specimens +specious +speciously +speck +speck's +specked +specking +speckle +speckle's +speckled +speckles +speckling +specks +specs +specs's +spectacle +spectacle's +spectacles +spectacles's +spectacular +spectacular's +spectacularly +spectaculars +spectator +spectator's +spectators +specter +specter's +specters +spectra +spectral +spectroscope +spectroscope's +spectroscopes +spectroscopic +spectroscopy +spectroscopy's +spectrum +spectrum's +spectrums +speculate +speculated +speculates +speculating +speculation +speculation's +speculations +speculative +speculator +speculator's +speculators +sped +speech +speech's +speeches +speechless +speed +speed's +speedboat +speedboat's +speedboats +speeded +speeder +speeder's +speeders +speedier +speediest +speedily +speeding +speeding's +speedometer +speedometer's +speedometers +speeds +speedster +speedster's +speedsters +speedup +speedup's +speedups +speedway +speedway's +speedways +speedy +spell +spell's +spellbind +spellbinder +spellbinder's +spellbinders +spellbinding +spellbinds +spellbound +spelled +speller +speller's +spellers +spelling +spelling's +spellings +spells +spelt +spelunker +spelunker's +spelunkers +spend +spender +spender's +spenders +spending +spending's +spends +spendthrift +spendthrift's +spendthrifts +spent +sperm +sperm's +spermatozoa +spermatozoon +spermatozoon's +spermicide +spermicide's +spermicides +sperms +spew +spew's +spewed +spewing +spews +sphere +sphere's +spheres +spherical +spheroid +spheroid's +spheroidal +spheroids +sphincter +sphincter's +sphincters +sphinges +sphinx +sphinx's +sphinxes +spice +spice's +spiced +spices +spicier +spiciest +spiciness +spiciness's +spicing +spicy +spider +spider's +spiderier +spideriest +spiders +spidery +spied +spiel +spiel's +spieled +spieling +spiels +spies +spiffier +spiffiest +spiffy +spigot +spigot's +spigots +spike +spike's +spiked +spikes +spikier +spikiest +spiking +spiky +spill +spill's +spillage +spillage's +spillages +spilled +spilling +spills +spillway +spillway's +spillways +spilt +spin +spin's +spinach +spinach's +spinal +spinal's +spinals +spindle +spindle's +spindled +spindles +spindlier +spindliest +spindling +spindly +spine +spine's +spineless +spines +spinet +spinet's +spinets +spinier +spiniest +spinnaker +spinnaker's +spinnakers +spinner +spinner's +spinners +spinning +spinoff +spinoff's +spinoffs +spins +spinster +spinster's +spinsterhood +spinsterhood's +spinsters +spiny +spiraea +spiraea's +spiraeas +spiral +spiral's +spiraled +spiraling +spiralled +spiralling +spirally +spirals +spire +spire's +spirea +spirea's +spireas +spires +spirit +spirit's +spirited +spiriting +spiritless +spirits +spiritual +spiritual's +spiritualism +spiritualism's +spiritualist +spiritualist's +spiritualistic +spiritualists +spirituality +spirituality's +spiritually +spirituals +spirituous +spit +spit's +spitball +spitball's +spitballs +spite +spite's +spited +spiteful +spitefuller +spitefullest +spitefully +spitefulness +spitefulness's +spites +spitfire +spitfire's +spitfires +spiting +spits +spitted +spitting +spittle +spittle's +spittoon +spittoon's +spittoons +splash +splash's +splashdown +splashdown's +splashdowns +splashed +splashes +splashier +splashiest +splashing +splashy +splat +splat's +splats +splatted +splatter +splatter's +splattered +splattering +splatters +splatting +splay +splay's +splayed +splaying +splays +spleen +spleen's +spleens +splendid +splendider +splendidest +splendidly +splendor +splendor's +splenetic +splice +splice's +spliced +splicer +splicer's +splicers +splices +splicing +spline +splines +splint +splint's +splinted +splinter +splinter's +splintered +splintering +splinters +splinting +splints +split +split's +splits +splitting +splitting's +splittings +splodge +splotch +splotch's +splotched +splotches +splotchier +splotchiest +splotching +splotchy +splurge +splurge's +splurged +splurges +splurging +splutter +splutter's +spluttered +spluttering +splutters +spoil +spoil's +spoilage +spoilage's +spoiled +spoiler +spoiler's +spoilers +spoiling +spoils +spoilsport +spoilsport's +spoilsports +spoilt +spoke +spoke's +spoken +spokes +spokesman +spokesman's +spokesmen +spokespeople +spokesperson +spokesperson's +spokespersons +spokeswoman +spokeswoman's +spokeswomen +spoliation +spoliation's +sponge +sponge's +sponged +sponger +sponger's +spongers +sponges +spongier +spongiest +sponging +spongy +sponsor +sponsor's +sponsored +sponsoring +sponsors +sponsorship +sponsorship's +spontaneity +spontaneity's +spontaneous +spontaneously +spoof +spoof's +spoofed +spoofing +spoofs +spook +spook's +spooked +spookier +spookiest +spooking +spooks +spooky +spool +spool's +spooled +spooling +spools +spoon +spoon's +spoonbill +spoonbill's +spoonbills +spooned +spoonerism +spoonerism's +spoonerisms +spoonful +spoonful's +spoonfuls +spooning +spoons +spoonsful +spoor +spoor's +spoored +spooring +spoors +sporadic +sporadically +spore +spore's +spored +spores +sporing +sporran +sport +sport's +sported +sportier +sportiest +sporting +sportive +sports +sportscast +sportscast's +sportscaster +sportscaster's +sportscasters +sportscasting +sportscasts +sportsman +sportsman's +sportsmanlike +sportsmanship +sportsmanship's +sportsmen +sportswear +sportswear's +sportswoman +sportswoman's +sportswomen +sporty +spot +spot's +spotless +spotlessly +spotlessness +spotlessness's +spotlight +spotlight's +spotlighted +spotlighting +spotlights +spots +spotted +spotter +spotter's +spotters +spottier +spottiest +spottiness +spottiness's +spotting +spotty +spouse +spouse's +spouses +spout +spout's +spouted +spouting +spouts +sprain +sprain's +sprained +spraining +sprains +sprang +sprat +sprat's +sprats +sprawl +sprawl's +sprawled +sprawling +sprawls +spray +spray's +sprayed +sprayer +sprayer's +sprayers +spraying +sprays +spread +spread's +spreader +spreader's +spreaders +spreading +spreads +spreadsheet +spreadsheet's +spreadsheets +spree +spree's +spreed +spreeing +sprees +sprier +spriest +sprig +sprig's +sprightlier +sprightliest +sprightliness +sprightliness's +sprightly +sprigs +spring +spring's +springboard +springboard's +springboards +springier +springiest +springiness +springiness's +springing +springs +springtime +springtime's +springy +sprinkle +sprinkle's +sprinkled +sprinkler +sprinkler's +sprinklers +sprinkles +sprinkling +sprinkling's +sprinklings +sprint +sprint's +sprinted +sprinter +sprinter's +sprinters +sprinting +sprints +sprite +sprite's +sprites +spritz +spritz's +spritzed +spritzes +spritzing +sprocket +sprocket's +sprockets +sprout +sprout's +sprouted +sprouting +sprouts +spruce +spruce's +spruced +sprucer +spruces +sprucest +sprucing +sprung +spry +spryer +spryest +spryly +spryness +spryness's +spud +spud's +spuds +spume +spume's +spumed +spumes +spuming +spumone +spumone's +spumoni +spumoni's +spun +spunk +spunk's +spunkier +spunkiest +spunky +spur +spur's +spurious +spuriously +spuriousness +spuriousness's +spurn +spurned +spurning +spurns +spurred +spurring +spurs +spurt +spurt's +spurted +spurting +spurts +sputter +sputter's +sputtered +sputtering +sputters +sputum +sputum's +spy +spy's +spyglass +spyglass's +spyglasses +spying +squab +squab's +squabble +squabble's +squabbled +squabbles +squabbling +squabs +squad +squad's +squadron +squadron's +squadrons +squads +squalid +squalider +squalidest +squall +squall's +squalled +squalling +squalls +squalor +squalor's +squander +squandered +squandering +squanders +square +square's +squared +squarely +squareness +squareness's +squarer +squares +squarest +squaring +squash +squash's +squashed +squashes +squashier +squashiest +squashing +squashy +squat +squat's +squats +squatted +squatter +squatter's +squatters +squattest +squatting +squaw +squaw's +squawk +squawk's +squawked +squawking +squawks +squaws +squeak +squeak's +squeaked +squeakier +squeakiest +squeaking +squeaks +squeaky +squeal +squeal's +squealed +squealer +squealer's +squealers +squealing +squeals +squeamish +squeamishly +squeamishness +squeamishness's +squeegee +squeegee's +squeegeed +squeegeeing +squeegees +squeeze +squeeze's +squeezed +squeezer +squeezer's +squeezers +squeezes +squeezing +squelch +squelch's +squelched +squelches +squelching +squid +squid's +squids +squiggle +squiggle's +squiggled +squiggles +squigglier +squiggliest +squiggling +squiggly +squint +squint's +squinted +squinter +squintest +squinting +squints +squire +squire's +squired +squires +squiring +squirm +squirm's +squirmed +squirmier +squirmiest +squirming +squirms +squirmy +squirrel +squirrel's +squirreled +squirreling +squirrelled +squirrelling +squirrels +squirt +squirt's +squirted +squirting +squirts +squish +squish's +squished +squishes +squishier +squishiest +squishing +squishy +stab +stab's +stabbed +stabbing +stabbing's +stabbings +stability +stability's +stabilization +stabilization's +stabilize +stabilized +stabilizer +stabilizer's +stabilizers +stabilizes +stabilizing +stable +stable's +stabled +stabler +stables +stablest +stabling +stabs +staccati +staccato +staccato's +staccatos +stack +stack's +stacked +stacking +stacks +stadia +stadium +stadium's +stadiums +staff +staff's +staffed +staffer +staffer's +staffers +staffing +staffing's +staffs +stag +stag's +stage +stage's +stagecoach +stagecoach's +stagecoaches +staged +stagehand +stagehand's +stagehands +stages +stagflation +stagflation's +stagger +stagger's +staggered +staggering +staggeringly +staggers +staging +staging's +stagings +stagnant +stagnate +stagnated +stagnates +stagnating +stagnation +stagnation's +stags +staid +staider +staidest +staidly +stain +stain's +stained +staining +stainless +stainless's +stains +stair +stair's +staircase +staircase's +staircases +stairs +stairway +stairway's +stairways +stairwell +stairwell's +stairwells +stake +stake's +staked +stakeout +stakeout's +stakeouts +stakes +staking +stalactite +stalactite's +stalactites +stalagmite +stalagmite's +stalagmites +stale +staled +stalemate +stalemate's +stalemated +stalemates +stalemating +staleness +staleness's +staler +stales +stalest +staling +stalk +stalk's +stalked +stalker +stalker's +stalkers +stalking +stalking's +stalkings +stalks +stall +stall's +stalled +stalling +stallion +stallion's +stallions +stalls +stalwart +stalwart's +stalwarts +stamen +stamen's +stamens +stamina +stamina's +stammer +stammer's +stammered +stammerer +stammerer's +stammerers +stammering +stammers +stamp +stamp's +stamped +stampede +stampede's +stampeded +stampedes +stampeding +stamping +stamps +stance +stance's +stances +stanch +stanched +stancher +stanches +stanchest +stanching +stanchion +stanchion's +stanchions +stand +stand's +standard +standard's +standardization +standardization's +standardize +standardized +standardizes +standardizing +standards +standby +standby's +standbys +standing +standing's +standings +standoff +standoff's +standoffish +standoffs +standout +standout's +standouts +standpoint +standpoint's +standpoints +stands +standstill +standstill's +standstills +stank +stanza +stanza's +stanzas +staph +staph's +staphylococci +staphylococcus +staphylococcus's +staple +staple's +stapled +stapler +stapler's +staplers +staples +stapling +star +star's +starboard +starboard's +starch +starch's +starched +starches +starchier +starchiest +starching +starchy +stardom +stardom's +stare +stare's +stared +stares +starfish +starfish's +starfishes +stargazer +stargazer's +stargazers +staring +stark +starker +starkest +starkly +starkness +starkness's +starless +starlet +starlet's +starlets +starlight +starlight's +starling +starling's +starlings +starlit +starred +starrier +starriest +starring +starry +stars +start +start's +started +starter +starter's +starters +starting +startle +startled +startles +startling +startlingly +starts +starvation +starvation's +starve +starved +starves +starving +starvings +stash +stash's +stashed +stashes +stashing +stat's +state +state's +stated +statehood +statehood's +statehouse +statehouse's +statehouses +stateless +statelier +stateliest +stateliness +stateliness's +stately +statement +statement's +statements +stater +stateroom +stateroom's +staterooms +states +stateside +statesman +statesman's +statesmanlike +statesmanship +statesmanship's +statesmen +statewide +static +static's +statically +stating +station +station's +stationary +stationed +stationer +stationer's +stationers +stationery +stationery's +stationing +stations +statistic +statistic's +statistical +statistically +statistician +statistician's +statisticians +statistics +stats +statuary +statuary's +statue +statue's +statues +statuesque +statuette +statuette's +statuettes +stature +stature's +statures +status +status's +statuses +statute +statute's +statutes +statutory +staunch +staunched +stauncher +staunches +staunchest +staunching +staunchly +stave +stave's +staved +staves +staving +stay +stay's +stayed +staying +stays +stead +stead's +steadfast +steadfastly +steadfastness +steadfastness's +steadied +steadier +steadies +steadiest +steadily +steadiness +steadiness's +steads +steady +steady's +steadying +steak +steak's +steakhouse +steakhouse's +steakhouses +steaks +steal +steal's +stealing +steals +stealth +stealth's +stealthier +stealthiest +stealthily +stealthy +steam +steam's +steamboat +steamboat's +steamboats +steamed +steamer +steamer's +steamers +steamier +steamiest +steaming +steamroll +steamrolled +steamroller +steamroller's +steamrollered +steamrollering +steamrollers +steamrolling +steamrolls +steams +steamship +steamship's +steamships +steamy +steed +steed's +steeds +steel +steel's +steeled +steelier +steeliest +steeling +steels +steely +steep +steep's +steeped +steeper +steepest +steeping +steeple +steeple's +steeplechase +steeplechase's +steeplechases +steeplejack +steeplejack's +steeplejacks +steeples +steeply +steepness +steepness's +steeps +steer +steer's +steerage +steerage's +steered +steering +steering's +steers +stein +stein's +steins +stellar +stem +stem's +stemmed +stemming +stems +stench +stench's +stenches +stencil +stencil's +stenciled +stenciling +stencilled +stencilling +stencils +stenographer +stenographer's +stenographers +stenographic +stenography +stenography's +stentorian +step +step's +stepbrother +stepbrother's +stepbrothers +stepchild +stepchild's +stepchildren +stepdaughter +stepdaughter's +stepdaughters +stepfather +stepfather's +stepfathers +stepladder +stepladder's +stepladders +stepmother +stepmother's +stepmothers +stepparent +stepparent's +stepparents +steppe +steppe's +stepped +steppes +stepping +steppingstone +steppingstone's +steppingstones +steps +stepsister +stepsister's +stepsisters +stepson +stepson's +stepsons +stereo +stereo's +stereophonic +stereos +stereoscope +stereoscope's +stereoscopes +stereotype +stereotype's +stereotyped +stereotypes +stereotypical +stereotyping +sterile +sterility +sterility's +sterilization +sterilization's +sterilize +sterilized +sterilizer +sterilizer's +sterilizers +sterilizes +sterilizing +sterling +sterling's +stern +stern's +sterna +sterner +sternest +sternly +sternness +sternness's +sterns +sternum +sternum's +sternums +steroid +steroid's +steroids +stethoscope +stethoscope's +stethoscopes +stevedore +stevedore's +stevedores +stew +stew's +steward +steward's +stewarded +stewardess +stewardess's +stewardesses +stewarding +stewards +stewardship +stewardship's +stewed +stewing +stews +stick +stick's +sticker +sticker's +stickers +stickier +stickies +stickiest +stickiness +stickiness's +sticking +stickleback +stickleback's +sticklebacks +stickler +stickler's +sticklers +stickpin +stickpin's +stickpins +sticks +stickup +stickup's +stickups +sticky +sticky's +sties +stiff +stiff's +stiffed +stiffen +stiffened +stiffener +stiffener's +stiffeners +stiffening +stiffens +stiffer +stiffest +stiffing +stiffly +stiffness +stiffness's +stiffs +stifle +stifled +stifles +stifling +stiflings +stigma +stigma's +stigmas +stigmata +stigmatize +stigmatized +stigmatizes +stigmatizing +stile +stile's +stiles +stiletto +stiletto's +stilettoes +stilettos +still +still's +stillbirth +stillbirth's +stillbirths +stillborn +stilled +stiller +stillest +stilling +stillness +stillness's +stills +stilt +stilt's +stilted +stilts +stimulant +stimulant's +stimulants +stimulate +stimulated +stimulates +stimulating +stimulation +stimulation's +stimuli +stimulus +stimulus's +sting +sting's +stinger +stinger's +stingers +stingier +stingiest +stingily +stinginess +stinginess's +stinging +stingray +stingray's +stingrays +stings +stingy +stink +stink's +stinker +stinker's +stinkers +stinking +stinks +stint +stint's +stinted +stinting +stints +stipend +stipend's +stipends +stipple +stipple's +stippled +stipples +stippling +stipulate +stipulated +stipulates +stipulating +stipulation +stipulation's +stipulations +stir +stir's +stirred +stirrer +stirrer's +stirrers +stirring +stirrings +stirrup +stirrup's +stirrups +stirs +stitch +stitch's +stitched +stitches +stitching +stitching's +stoat +stoat's +stoats +stochastic +stock +stock's +stockade +stockade's +stockaded +stockades +stockading +stockbroker +stockbroker's +stockbrokers +stocked +stockholder +stockholder's +stockholders +stockier +stockiest +stockiness +stockiness's +stocking +stocking's +stockings +stockpile +stockpile's +stockpiled +stockpiles +stockpiling +stockroom +stockroom's +stockrooms +stocks +stocky +stockyard +stockyard's +stockyards +stodgier +stodgiest +stodginess +stodginess's +stodgy +stoic +stoic's +stoical +stoically +stoicism +stoicism's +stoics +stoke +stoked +stoker +stoker's +stokers +stokes +stoking +stole +stole's +stolen +stoles +stolid +stolider +stolidest +stolidity +stolidity's +stolidly +stomach +stomach's +stomachache +stomachache's +stomachaches +stomached +stomaching +stomachs +stomp +stomp's +stomped +stomping +stomps +stone +stone's +stoned +stones +stonewall +stonewalled +stonewalling +stonewalls +stoneware +stoneware's +stonework +stonework's +stoney +stonier +stoniest +stonily +stoning +stony +stood +stooge +stooge's +stooges +stool +stool's +stools +stoop +stoop's +stooped +stooping +stoops +stop +stop's +stopcock +stopcock's +stopcocks +stopgap +stopgap's +stopgaps +stoplight +stoplight's +stoplights +stopover +stopover's +stopovers +stoppable +stoppage +stoppage's +stoppages +stopped +stopper +stopper's +stoppered +stoppering +stoppers +stopping +stops +stopwatch +stopwatch's +stopwatches +storage +storage's +store +store's +stored +storefront +storefront's +storefronts +storehouse +storehouse's +storehouses +storekeeper +storekeeper's +storekeepers +storeroom +storeroom's +storerooms +stores +storey +storey's +storeys +storied +stories +storing +stork +stork's +storks +storm +storm's +stormed +stormier +stormiest +stormily +storminess +storminess's +storming +storms +stormy +story +story's +storybook +storybook's +storybooks +storyteller +storyteller's +storytellers +stout +stout's +stouter +stoutest +stoutly +stoutness +stoutness's +stove +stove's +stovepipe +stovepipe's +stovepipes +stoves +stow +stowaway +stowaway's +stowaways +stowed +stowing +stows +straddle +straddle's +straddled +straddles +straddling +strafe +strafe's +strafed +strafes +strafing +straggle +straggled +straggler +straggler's +stragglers +straggles +stragglier +straggliest +straggling +straggly +straight +straight's +straightaway +straightaway's +straightaways +straightedge +straightedge's +straightedges +straighten +straightened +straightening +straightens +straighter +straightest +straightforward +straightforwardly +straightjacket +straightjacket's +straightjacketed +straightjacketing +straightjackets +straightness +straightness's +straights +strain +strain's +strained +strainer +strainer's +strainers +straining +strains +strait +strait's +straiten +straitened +straitening +straitens +straitjacket +straitjacket's +straitjacketed +straitjacketing +straitjackets +straits +strand +strand's +stranded +stranding +strands +strange +strangely +strangeness +strangeness's +stranger +stranger's +strangers +strangest +strangle +strangled +stranglehold +stranglehold's +strangleholds +strangler +strangler's +stranglers +strangles +strangling +strangulate +strangulated +strangulates +strangulating +strangulation +strangulation's +strap +strap's +strapless +strapless's +straplesses +strapped +strapping +strapping's +straps +strata +stratagem +stratagem's +stratagems +strategic +strategically +strategies +strategist +strategist's +strategists +strategy +strategy's +stratification +stratification's +stratified +stratifies +stratify +stratifying +stratosphere +stratosphere's +stratospheres +stratum +stratum's +stratums +straw +straw's +strawberries +strawberry +strawberry's +strawed +strawing +straws +stray +stray's +strayed +straying +strays +streak +streak's +streaked +streakier +streakiest +streaking +streaks +streaky +stream +stream's +streamed +streamer +streamer's +streamers +streaming +streamline +streamlined +streamlines +streamlining +streams +street +street's +streetcar +streetcar's +streetcars +streetlight +streetlight's +streetlights +streets +streetwalker +streetwalker's +streetwalkers +streetwise +strength +strength's +strengthen +strengthened +strengthening +strengthens +strengths +strenuous +strenuously +strenuousness +strenuousness's +strep +strep's +streptococcal +streptococci +streptococcus +streptococcus's +streptomycin +streptomycin's +stress +stress's +stressed +stresses +stressful +stressing +stretch +stretch's +stretched +stretcher +stretcher's +stretchers +stretches +stretchier +stretchiest +stretching +stretchy +strew +strewed +strewing +strewn +strews +striated +stricken +strict +stricter +strictest +strictly +strictness +strictness's +stricture +stricture's +strictures +stridden +stride +stride's +strident +stridently +strides +striding +strife +strife's +strike +strike's +strikeout +strikeout's +strikeouts +striker +striker's +strikers +strikes +striking +strikingly +strikings +string +string's +stringed +stringency +stringency's +stringent +stringently +stringer +stringer's +stringers +stringier +stringiest +stringing +strings +stringy +strip +strip's +stripe +stripe's +striped +stripes +striping +stripling +stripling's +striplings +stripped +stripper +stripper's +strippers +stripping +strips +stript +striptease +striptease's +stripteased +stripteases +stripteasing +strive +strived +striven +strives +striving +strobe +strobe's +strobes +strode +stroke +stroke's +stroked +strokes +stroking +stroll +stroll's +strolled +stroller +stroller's +strollers +strolling +strolls +strong +strongbox +strongbox's +strongboxes +stronger +strongest +stronghold +stronghold's +strongholds +strongly +strontium +strontium's +strop +strop's +strophe +strophe's +strophes +stropped +stropping +strops +strove +struck +structural +structuralist +structurally +structure +structure's +structured +structures +structuring +strudel +strudel's +strudels +struggle +struggle's +struggled +struggles +struggling +strum +strum's +strummed +strumming +strumpet +strumpet's +strumpets +strums +strung +strut +strut's +struts +strutted +strutting +strychnine +strychnine's +stub +stub's +stubbed +stubbier +stubbiest +stubbing +stubble +stubble's +stubblier +stubbliest +stubbly +stubborn +stubborner +stubbornest +stubbornly +stubbornness +stubbornness's +stubby +stubs +stucco +stucco's +stuccoed +stuccoes +stuccoing +stuccos +stuck +stud +stud's +studded +studding +student +student's +students +studentship +studentships +studied +studies +studio +studio's +studios +studious +studiously +studs +study +study's +studying +stuff +stuff's +stuffed +stuffier +stuffiest +stuffily +stuffiness +stuffiness's +stuffing +stuffing's +stuffs +stuffy +stultification +stultification's +stultified +stultifies +stultify +stultifying +stumble +stumble's +stumbled +stumbler +stumbler's +stumblers +stumbles +stumbling +stump +stump's +stumped +stumpier +stumpiest +stumping +stumps +stumpy +stun +stung +stunk +stunned +stunning +stunningly +stuns +stunt +stunt's +stunted +stunting +stunts +stupefaction +stupefaction's +stupefied +stupefies +stupefy +stupefying +stupendous +stupendously +stupid +stupid's +stupider +stupidest +stupidities +stupidity +stupidity's +stupidly +stupids +stupor +stupor's +stupors +sturdier +sturdiest +sturdily +sturdiness +sturdiness's +sturdy +sturgeon +sturgeon's +sturgeons +stutter +stutter's +stuttered +stutterer +stutterer's +stutterers +stuttering +stutters +sty +sty's +stye +stye's +styes +style +style's +styled +styles +styli +styling +stylish +stylishly +stylishness +stylishness's +stylist +stylist's +stylistic +stylistically +stylists +stylize +stylized +stylizes +stylizing +stylus +stylus's +styluses +stymie +stymie's +stymied +stymieing +stymies +stymying +styptic +styptic's +styptics +suave +suavely +suaver +suavest +suavity +suavity's +sub +sub's +subatomic +subbasement +subbasement's +subbasements +subbed +subbing +subclass +subcommittee +subcommittee's +subcommittees +subcompact +subcompact's +subcompacts +subconscious +subconscious's +subconsciously +subcontinent +subcontinent's +subcontinents +subcontract +subcontract's +subcontracted +subcontracting +subcontractor +subcontractor's +subcontractors +subcontracts +subculture +subculture's +subcultures +subcutaneous +subdivide +subdivided +subdivides +subdividing +subdivision +subdivision's +subdivisions +subdue +subdued +subdues +subduing +subgroup +subgroup's +subgroups +subhead +subhead's +subheading +subheading's +subheadings +subheads +subhuman +subhuman's +subhumans +subject +subject's +subjected +subjecting +subjection +subjection's +subjective +subjectively +subjectivity +subjectivity's +subjects +subjoin +subjoined +subjoining +subjoins +subjugate +subjugated +subjugates +subjugating +subjugation +subjugation's +subjunctive +subjunctive's +subjunctives +sublease +sublease's +subleased +subleases +subleasing +sublet +sublet's +sublets +subletting +sublimate +sublimated +sublimates +sublimating +sublimation +sublimation's +sublime +sublimed +sublimely +sublimer +sublimes +sublimest +subliminal +subliminally +subliming +sublimity +sublimity's +submarine +submarine's +submarines +submerge +submerged +submergence +submergence's +submerges +submerging +submerse +submersed +submerses +submersible +submersible's +submersibles +submersing +submersion +submersion's +submission +submission's +submissions +submissive +submit +submits +submitted +submitter +submitting +subnormal +suborbital +subordinate +subordinate's +subordinated +subordinates +subordinating +subordination +subordination's +suborn +subornation +subornation's +suborned +suborning +suborns +subplot +subplot's +subplots +subpoena +subpoena's +subpoenaed +subpoenaing +subpoenas +subprogram +subprograms +subroutine +subroutine's +subroutines +subs +subscribe +subscribed +subscriber +subscriber's +subscribers +subscribes +subscribing +subscript +subscript's +subscription +subscription's +subscriptions +subscripts +subsection +subsection's +subsections +subsequent +subsequently +subservience +subservience's +subservient +subset +subset's +subsets +subside +subsided +subsidence +subsidence's +subsides +subsidiaries +subsidiary +subsidiary's +subsidies +subsiding +subsidization +subsidization's +subsidize +subsidized +subsidizes +subsidizing +subsidy +subsidy's +subsist +subsisted +subsistence +subsistence's +subsisting +subsists +subsoil +subsoil's +subsonic +subspace +substance +substance's +substances +substandard +substantial +substantially +substantiate +substantiated +substantiates +substantiating +substantiation +substantiation's +substantiations +substantive +substantive's +substantives +substation +substation's +substations +substitute +substitute's +substituted +substitutes +substituting +substitution +substitution's +substitutions +substrata +substrate +substratum +substratum's +substratums +substructure +substructure's +substructures +subsume +subsumed +subsumes +subsuming +subsystem +subsystem's +subsystems +subteen +subteen's +subteens +subterfuge +subterfuge's +subterfuges +subterranean +subtitle +subtitle's +subtitled +subtitles +subtitling +subtle +subtler +subtlest +subtleties +subtlety +subtlety's +subtly +subtotal +subtotal's +subtotaled +subtotaling +subtotalled +subtotalling +subtotals +subtract +subtracted +subtracting +subtraction +subtraction's +subtractions +subtracts +subtrahend +subtrahend's +subtrahends +subtropical +suburb +suburb's +suburban +suburban's +suburbanite +suburbanite's +suburbanites +suburbans +suburbia +suburbia's +suburbs +subversion +subversion's +subversive +subversive's +subversives +subvert +subverted +subverting +subverts +subway +subway's +subways +succeed +succeeded +succeeding +succeeds +success +success's +successes +successful +successfully +succession +succession's +successions +successive +successively +successor +successor's +successors +succinct +succincter +succinctest +succinctly +succinctness +succinctness's +succor +succor's +succored +succoring +succors +succotash +succotash's +succulence +succulence's +succulent +succulent's +succulents +succumb +succumbed +succumbing +succumbs +such +suchlike +suck +suck's +sucked +sucker +sucker's +suckered +suckering +suckers +sucking +suckle +suckled +suckles +suckling +suckling's +sucklings +sucks +sucrose +sucrose's +suction +suction's +suctioned +suctioning +suctions +sudden +suddenly +suddenness +suddenness's +suds +suds's +sudsier +sudsiest +sudsy +sue +sued +suede +suede's +sues +suet +suet's +suffer +sufferance +sufferance's +suffered +sufferer +sufferer's +sufferers +suffering +suffering's +sufferings +suffers +suffice +sufficed +suffices +sufficiency +sufficiency's +sufficient +sufficiently +sufficing +suffix +suffix's +suffixed +suffixes +suffixing +suffocate +suffocated +suffocates +suffocating +suffocation +suffocation's +suffragan +suffragan's +suffragans +suffrage +suffrage's +suffragette +suffragette's +suffragettes +suffragist +suffragist's +suffragists +suffuse +suffused +suffuses +suffusing +suffusion +suffusion's +sugar +sugar's +sugarcane +sugarcane's +sugarcoat +sugarcoated +sugarcoating +sugarcoats +sugared +sugarier +sugariest +sugaring +sugarless +sugars +sugary +suggest +suggested +suggester +suggestible +suggesting +suggestion +suggestion's +suggestions +suggestive +suggestively +suggests +suicidal +suicide +suicide's +suicides +suing +suit +suit's +suitability +suitability's +suitable +suitably +suitcase +suitcase's +suitcases +suite +suite's +suited +suites +suiting +suiting's +suitor +suitor's +suitors +suits +sukiyaki +sukiyaki's +sulfate +sulfate's +sulfates +sulfide +sulfide's +sulfides +sulfur +sulfur's +sulfured +sulfuric +sulfuring +sulfurous +sulfurs +sulk +sulk's +sulked +sulkier +sulkies +sulkiest +sulkily +sulkiness +sulkiness's +sulking +sulks +sulky +sulky's +sullen +sullener +sullenest +sullenly +sullenness +sullenness's +sullied +sullies +sully +sullying +sulphur +sulphur's +sulphured +sulphuring +sulphurous +sulphurs +sultan +sultan's +sultana +sultana's +sultanas +sultanate +sultanate's +sultanates +sultans +sultrier +sultriest +sultry +sum +sum's +sumac +sumac's +sumach +sumach's +summaries +summarily +summarize +summarized +summarizes +summarizing +summary +summary's +summation +summation's +summations +summed +summer +summer's +summered +summerhouse +summerhouse's +summerhouses +summerier +summeriest +summering +summers +summertime +summertime's +summery +summing +summit +summit's +summitry +summitry's +summits +summon +summoned +summoner +summoner's +summoners +summoning +summons +summons's +summonsed +summonses +summonsing +sumo +sumo's +sump +sump's +sumps +sumptuous +sums +sun +sun's +sunbathe +sunbathed +sunbather +sunbather's +sunbathers +sunbathes +sunbathing +sunbathing's +sunbeam +sunbeam's +sunbeams +sunblock +sunblock's +sunblocks +sunbonnet +sunbonnet's +sunbonnets +sunburn +sunburn's +sunburned +sunburning +sunburns +sunburnt +sundae +sundae's +sundaes +sunder +sundered +sundering +sunders +sundial +sundial's +sundials +sundown +sundown's +sundowns +sundries +sundries's +sundry +sunfish +sunfish's +sunfishes +sunflower +sunflower's +sunflowers +sung +sunglasses +sunglasses's +sunk +sunken +sunlamp +sunlamp's +sunlamps +sunless +sunlight +sunlight's +sunlit +sunned +sunnier +sunniest +sunning +sunny +sunrise +sunrise's +sunrises +sunroof +sunroof's +sunroofs +suns +sunscreen +sunscreen's +sunscreens +sunset +sunset's +sunsets +sunshine +sunshine's +sunspot +sunspot's +sunspots +sunstroke +sunstroke's +suntan +suntan's +suntanned +suntanning +suntans +sunup +sunup's +sup +sup's +super +super's +superabundance +superabundance's +superabundances +superabundant +superannuate +superannuated +superannuates +superannuating +superb +superber +superbest +superbly +supercharge +supercharged +supercharger +supercharger's +superchargers +supercharges +supercharging +supercilious +supercomputer +supercomputer's +supercomputers +superconductivity +superconductivity's +superconductor +superconductor's +superconductors +superego +superego's +superegos +superficial +superficiality +superficiality's +superficially +superfluity +superfluity's +superfluous +superhighway +superhighway's +superhighways +superhuman +superimpose +superimposed +superimposes +superimposing +superintend +superintended +superintendence +superintendence's +superintendency +superintendency's +superintendent +superintendent's +superintendents +superintending +superintends +superior +superior's +superiority +superiority's +superiors +superlative +superlative's +superlatively +superlatives +superman +superman's +supermarket +supermarket's +supermarkets +supermen +supernatural +supernaturals +supernova +supernova's +supernovae +supernovas +supernumeraries +supernumerary +supernumerary's +superpower +superpower's +superpowers +supers +superscript +superscript's +superscripts +supersede +superseded +supersedes +superseding +supersonic +superstar +superstar's +superstars +superstition +superstition's +superstitions +superstitious +superstitiously +superstructure +superstructure's +superstructures +supertanker +supertanker's +supertankers +supervene +supervened +supervenes +supervening +supervise +supervised +supervises +supervising +supervision +supervision's +supervisions +supervisor +supervisor's +supervisors +supervisory +supine +supped +supper +supper's +suppers +supping +supplant +supplanted +supplanting +supplants +supple +supplement +supplement's +supplemental +supplementary +supplemented +supplementing +supplements +suppleness +suppleness's +suppler +supplest +suppliant +suppliant's +suppliants +supplicant +supplicant's +supplicants +supplicate +supplicated +supplicates +supplicating +supplication +supplication's +supplications +supplied +supplier +supplier's +suppliers +supplies +supply +supply's +supplying +support +support's +supportable +supported +supporter +supporter's +supporters +supporting +supportive +supports +suppose +supposed +supposedly +supposes +supposing +supposition +supposition's +suppositions +suppositories +suppository +suppository's +suppress +suppressed +suppresses +suppressing +suppression +suppression's +suppurate +suppurated +suppurates +suppurating +suppuration +suppuration's +supranational +supremacist +supremacist's +supremacists +supremacy +supremacy's +supreme +supremely +sups +surcease +surcease's +surceased +surceases +surceasing +surcharge +surcharge's +surcharged +surcharges +surcharging +sure +surefire +surefooted +surely +sureness +sureness's +surer +surest +sureties +surety +surety's +surf +surf's +surface +surface's +surfaced +surfaces +surfacing +surfboard +surfboard's +surfboarded +surfboarding +surfboards +surfed +surfeit +surfeit's +surfeited +surfeiting +surfeits +surfer +surfer's +surfers +surfing +surfing's +surfs +surge +surge's +surged +surgeon +surgeon's +surgeons +surgeries +surgery +surgery's +surges +surgical +surgically +surging +surlier +surliest +surliness +surliness's +surly +surmise +surmise's +surmised +surmises +surmising +surmount +surmountable +surmounted +surmounting +surmounts +surname +surname's +surnames +surpass +surpassed +surpasses +surpassing +surplice +surplice's +surplices +surplus +surplus's +surplused +surpluses +surplusing +surplussed +surplussing +surprise +surprise's +surprised +surprises +surprising +surprisingly +surprisings +surreal +surrealism +surrealism's +surrealist +surrealist's +surrealistic +surrealists +surrender +surrender's +surrendered +surrendering +surrenders +surreptitious +surreptitiously +surrey +surrey's +surreys +surrogate +surrogate's +surrogates +surround +surrounded +surrounding +surrounding's +surroundings +surroundings's +surrounds +surtax +surtax's +surtaxed +surtaxes +surtaxing +surveillance +surveillance's +survey +survey's +surveyed +surveying +surveyor +surveyor's +surveyors +surveys +survival +survival's +survivals +survive +survived +survives +surviving +survivor +survivor's +survivors +susceptibility +susceptibility's +susceptible +sushi +sushi's +suspect +suspect's +suspected +suspecting +suspects +suspend +suspended +suspender +suspender's +suspenders +suspending +suspends +suspense +suspense's +suspenseful +suspension +suspension's +suspensions +suspicion +suspicion's +suspicions +suspicious +suspiciously +sustain +sustainable +sustained +sustaining +sustains +sustenance +sustenance's +suture +suture's +sutured +sutures +suturing +svelte +svelter +sveltest +swab +swab's +swabbed +swabbing +swabs +swaddle +swaddled +swaddles +swaddling +swag +swag's +swagged +swagger +swagger's +swaggered +swaggerer +swaggering +swaggers +swagging +swags +swain +swain's +swains +swallow +swallow's +swallowed +swallowing +swallows +swallowtail +swallowtail's +swallowtails +swam +swami +swami's +swamis +swamp +swamp's +swamped +swampier +swampiest +swamping +swamps +swampy +swan +swan's +swank +swank's +swanked +swanker +swankest +swankier +swankiest +swanking +swanks +swanky +swans +swap +swap's +swapped +swapping +swaps +sward +sward's +swards +swarm +swarm's +swarmed +swarming +swarms +swarthier +swarthiest +swarthy +swash +swash's +swashbuckler +swashbuckler's +swashbucklers +swashbuckling +swashbuckling's +swashed +swashes +swashing +swastika +swastika's +swastikas +swat +swat's +swatch +swatch's +swatches +swath +swath's +swathe +swathe's +swathed +swathes +swathing +swaths +swats +swatted +swatter +swatter's +swattered +swattering +swatters +swatting +sway +sway's +swaybacked +swayed +swaying +sways +swear +swearer +swearer's +swearers +swearing +swears +swearword +swearword's +swearwords +sweat +sweat's +sweater +sweater's +sweaters +sweatier +sweatiest +sweating +sweatpants +sweatpants's +sweats +sweats's +sweatshirt +sweatshirt's +sweatshirts +sweatshop +sweatshop's +sweatshops +sweaty +sweep +sweep's +sweeper +sweeper's +sweepers +sweeping +sweeping's +sweepings +sweepings's +sweeps +sweepstake +sweepstake's +sweepstakes +sweepstakes's +sweet +sweet's +sweetbread +sweetbread's +sweetbreads +sweetbriar +sweetbriar's +sweetbriars +sweetbrier +sweetbrier's +sweetbriers +sweeten +sweetened +sweetener +sweetener's +sweeteners +sweetening +sweetening's +sweetens +sweeter +sweetest +sweetheart +sweetheart's +sweethearts +sweetie +sweetie's +sweeties +sweetish +sweetly +sweetmeat +sweetmeat's +sweetmeats +sweetness +sweetness's +sweets +swell +swell's +swelled +sweller +swellest +swellhead +swellhead's +swellheaded +swellheads +swelling +swelling's +swellings +swells +swelter +swelter's +sweltered +sweltering +swelters +swept +swerve +swerve's +swerved +swerves +swerving +swift +swift's +swifter +swiftest +swiftly +swiftness +swiftness's +swifts +swig +swig's +swigged +swigging +swigs +swill +swill's +swilled +swilling +swills +swim +swim's +swimmer +swimmer's +swimmers +swimming +swimming's +swims +swimsuit +swimsuit's +swimsuits +swindle +swindle's +swindled +swindler +swindler's +swindlers +swindles +swindling +swine +swine's +swines +swing +swing's +swinger +swinger's +swingers +swinging +swings +swinish +swipe +swipe's +swiped +swipes +swiping +swirl +swirl's +swirled +swirlier +swirliest +swirling +swirls +swirly +swish +swish's +swished +swisher +swishes +swishest +swishing +switch +switch's +switchable +switchback +switchback's +switchbacks +switchblade +switchblade's +switchblades +switchboard +switchboard's +switchboards +switched +switcher +switches +switching +swivel +swivel's +swiveled +swiveling +swivelled +swivelling +swivels +swollen +swoon +swoon's +swooned +swooning +swoons +swoop +swoop's +swooped +swooping +swoops +swop +swop's +swopped +swopping +swops +sword +sword's +swordfish +swordfish's +swordfishes +swordplay +swordplay's +swords +swordsman +swordsman's +swordsmen +swore +sworn +swum +swung +sybarite +sybarite's +sybarites +sybaritic +sycamore +sycamore's +sycamores +sycophant +sycophant's +sycophantic +sycophants +syllabi +syllabic +syllabication +syllabication's +syllabification +syllabification's +syllabified +syllabifies +syllabify +syllabifying +syllable +syllable's +syllables +syllabus +syllabus's +syllabuses +syllogism +syllogism's +syllogisms +syllogistic +sylph +sylph's +sylphs +sylvan +symbioses +symbiosis +symbiosis's +symbiotic +symbol +symbol's +symbolic +symbolically +symbolism +symbolism's +symbolization +symbolization's +symbolize +symbolized +symbolizes +symbolizing +symbols +symmetric +symmetrical +symmetrically +symmetricly +symmetries +symmetry +symmetry's +sympathetic +sympathetically +sympathies +sympathies's +sympathize +sympathized +sympathizer +sympathizer's +sympathizers +sympathizes +sympathizing +sympathy +sympathy's +symphonic +symphonies +symphony +symphony's +symposia +symposium +symposium's +symposiums +symptom +symptom's +symptomatic +symptoms +synagog +synagog's +synagogs +synagogue +synagogue's +synagogues +synapse +synapse's +synapses +sync +sync's +synced +synch +synch's +synched +synches +synching +synchronization +synchronization's +synchronizations +synchronize +synchronized +synchronizes +synchronizing +synchronous +synchronously +synchs +syncing +syncopate +syncopated +syncopates +syncopating +syncopation +syncopation's +syncs +syndicate +syndicate's +syndicated +syndicates +syndicating +syndication +syndication's +syndrome +syndrome's +syndromes +synergism +synergism's +synergistic +synergy +synergy's +synod +synod's +synods +synonym +synonym's +synonymous +synonyms +synopses +synopsis +synopsis's +syntactic +syntactical +syntactically +syntax +syntax's +syntheses +synthesis +synthesis's +synthesize +synthesized +synthesizer +synthesizer's +synthesizers +synthesizes +synthesizing +synthetic +synthetic's +synthetically +synthetics +syphilis +syphilis's +syphilitic +syphilitic's +syphilitics +syphon +syphon's +syphoned +syphoning +syphons +syringe +syringe's +syringed +syringes +syringing +syrup +syrup's +syrups +syrupy +system +system's +systematic +systematically +systematize +systematized +systematizes +systematizing +systemic +systemic's +systemics +systems +systolic +séance +séance's +séances +t +tab +tab's +tabbed +tabbies +tabbing +tabby +tabby's +tabernacle +tabernacle's +tabernacles +table +table's +tableau +tableau's +tableaus +tableaux +tablecloth +tablecloth's +tablecloths +tabled +tableland +tableland's +tablelands +tables +tablespoon +tablespoon's +tablespoonful +tablespoonful's +tablespoonfuls +tablespoons +tablespoonsful +tablet +tablet's +tablets +tableware +tableware's +tabling +tabloid +tabloid's +tabloids +taboo +taboo's +tabooed +tabooing +taboos +tabs +tabu +tabu's +tabued +tabuing +tabular +tabulate +tabulated +tabulates +tabulating +tabulation +tabulation's +tabulator +tabulator's +tabulators +tabus +tachometer +tachometer's +tachometers +tacit +tacitly +tacitness +tacitness's +taciturn +taciturnity +taciturnity's +tack +tack's +tacked +tackier +tackiest +tackiness +tackiness's +tacking +tackle +tackle's +tackled +tackler +tackler's +tacklers +tackles +tackling +tacks +tacky +taco +taco's +tacos +tact +tact's +tactful +tactfully +tactic +tactic's +tactical +tactically +tactician +tactician's +tacticians +tactics +tactile +tactless +tactlessly +tactlessness +tactlessness's +tad +tad's +tadpole +tadpole's +tadpoles +tads +taffeta +taffeta's +taffies +taffy +taffy's +tag +tag's +tagged +tagging +tags +tail +tail's +tailcoat +tailcoat's +tailcoats +tailed +tailgate +tailgate's +tailgated +tailgates +tailgating +tailing +tailless +taillight +taillight's +taillights +tailor +tailor's +tailored +tailoring +tailoring's +tailors +tailpipe +tailpipe's +tailpipes +tails +tailspin +tailspin's +tailspins +tailwind +tailwind's +tailwinds +taint +taint's +tainted +tainting +taints +take +take's +takeaways +taken +takeoff +takeoff's +takeoffs +takeout +takeout's +takeouts +takeover +takeover's +takeovers +taker +taker's +takers +takes +taking +taking's +takings +takings's +talc +talc's +tale +tale's +talent +talent's +talented +talents +tales +talisman +talisman's +talismans +talk +talk's +talkative +talkativeness +talkativeness's +talked +talker +talker's +talkers +talking +talks +tall +taller +tallest +tallied +tallies +tallness +tallness's +tallow +tallow's +tally +tally's +tallyho +tallyho's +tallyhoed +tallyhoing +tallyhos +tallying +talon +talon's +talons +tam +tam's +tamable +tamale +tamale's +tamales +tamarind +tamarind's +tamarinds +tambourine +tambourine's +tambourines +tame +tameable +tamed +tamely +tameness +tameness's +tamer +tamer's +tamers +tames +tamest +taming +tamp +tamped +tamper +tampered +tampering +tampers +tamping +tampon +tampon's +tampons +tamps +tams +tan +tan's +tanager +tanager's +tanagers +tandem +tandem's +tandems +tang +tang's +tangelo +tangelo's +tangelos +tangent +tangent's +tangential +tangents +tangerine +tangerine's +tangerines +tangibility +tangibility's +tangible +tangible's +tangibles +tangibly +tangier +tangiest +tangle +tangle's +tangled +tangles +tangling +tango +tango's +tangoed +tangoing +tangos +tangs +tangy +tank +tank's +tankard +tankard's +tankards +tanked +tanker +tanker's +tankers +tankful +tankful's +tankfuls +tanking +tanks +tanned +tanner +tanner's +tanneries +tanners +tannery +tannery's +tannest +tannin +tannin's +tanning +tans +tansy +tansy's +tantalize +tantalized +tantalizes +tantalizing +tantalizingly +tantamount +tantrum +tantrum's +tantrums +tap +tap's +tape +tape's +taped +taper +taper's +tapered +tapering +tapers +tapes +tapestries +tapestry +tapestry's +tapeworm +tapeworm's +tapeworms +taping +tapioca +tapioca's +tapir +tapir's +tapirs +tapped +tapping +taproom +taproom's +taprooms +taproot +taproot's +taproots +taps +tar +tar's +tarantula +tarantula's +tarantulae +tarantulas +tardier +tardiest +tardily +tardiness +tardiness's +tardy +tare +tare's +tared +tares +target +target's +targeted +targeting +targets +tariff +tariff's +tariffs +taring +tarmac +tarmac's +tarmacked +tarmacking +tarmacs +tarnish +tarnish's +tarnished +tarnishes +tarnishing +taro +taro's +taros +tarot +tarot's +tarots +tarp +tarp's +tarpaulin +tarpaulin's +tarpaulins +tarpon +tarpon's +tarpons +tarps +tarragon +tarragon's +tarragons +tarred +tarried +tarrier +tarries +tarriest +tarring +tarry +tarrying +tars +tart +tart's +tartan +tartan's +tartans +tartar +tartar's +tartars +tarter +tartest +tartly +tartness +tartness's +tarts +task +task's +tasked +tasking +taskmaster +taskmaster's +taskmasters +tasks +tassel +tassel's +tasseled +tasseling +tasselled +tasselling +tassels +taste +taste's +tasted +tasteful +tastefully +tasteless +tastelessly +tastelessness +tastelessness's +taster +taster's +tasters +tastes +tastier +tastiest +tastiness +tastiness's +tasting +tasty +tat +tats +tatted +tatter +tatter's +tattered +tattering +tatters +tatting +tatting's +tattle +tattle's +tattled +tattler +tattler's +tattlers +tattles +tattletale +tattletale's +tattletales +tattling +tattoo +tattoo's +tattooed +tattooing +tattooist +tattooist's +tattooists +tattoos +tatty +taught +taunt +taunt's +taunted +taunting +taunts +taupe +taupe's +taut +tauter +tautest +tautly +tautness +tautness's +tautological +tautologies +tautology +tautology's +tavern +tavern's +taverns +tawdrier +tawdriest +tawdriness +tawdriness's +tawdry +tawnier +tawniest +tawny +tawny's +tax +tax's +taxable +taxation +taxation's +taxed +taxes +taxi +taxi's +taxicab +taxicab's +taxicabs +taxidermist +taxidermist's +taxidermists +taxidermy +taxidermy's +taxied +taxies +taxiing +taxing +taxis +taxonomic +taxonomies +taxonomy +taxonomy's +taxpayer +taxpayer's +taxpayers +taxying +tea +tea's +teabag +teach +teachable +teacher +teacher's +teachers +teaches +teaching +teaching's +teachings +teacup +teacup's +teacups +teak +teak's +teakettle +teakettle's +teakettles +teaks +teal +teal's +teals +team +team's +teamed +teaming +teammate +teammate's +teammates +teams +teamster +teamster's +teamsters +teamwork +teamwork's +teapot +teapot's +teapots +tear +tear's +teardrop +teardrop's +teardrops +teared +tearful +tearfully +teargas +teargas's +teargases +teargassed +teargasses +teargassing +tearier +teariest +tearing +tearjerker +tearjerker's +tearjerkers +tearoom +tearoom's +tearooms +tears +teary +teas +tease +tease's +teased +teasel +teasel's +teasels +teaser +teaser's +teasers +teases +teasing +teaspoon +teaspoon's +teaspoonful +teaspoonful's +teaspoonfuls +teaspoons +teaspoonsful +teat +teat's +teatime +teats +teazel +teazel's +teazels +teazle +teazle's +teazles +tech's +technical +technicalities +technicality +technicality's +technically +technician +technician's +technicians +technique +technique's +techniques +technocracy +technocracy's +technocrat +technocrat's +technocrats +technological +technologically +technologies +technologist +technologist's +technologists +technology +technology's +techs +tectonics +tectonics's +tedious +tediously +tediousness +tediousness's +tedium +tedium's +tee +tee's +teed +teeing +teem +teemed +teeming +teems +teen +teen's +teenage +teenaged +teenager +teenager's +teenagers +teenier +teeniest +teens +teensier +teensiest +teensy +teeny +teepee +teepee's +teepees +tees +teeter +teeter's +teetered +teetering +teeters +teeth +teethe +teethed +teethes +teething +teetotal +teetotaler +teetotaler's +teetotalers +teetotaller +teetotaller's +teetotallers +telecast +telecast's +telecasted +telecaster +telecaster's +telecasters +telecasting +telecasts +telecommunication +telecommunication's +telecommunications +telecommunications's +telecommute +telecommuted +telecommuter +telecommuter's +telecommuters +telecommutes +telecommuting +telecommuting's +teleconference +teleconference's +teleconferenced +teleconferences +teleconferencing +telegram +telegram's +telegrams +telegraph +telegraph's +telegraphed +telegrapher +telegrapher's +telegraphers +telegraphic +telegraphing +telegraphs +telegraphy +telegraphy's +telekinesis +telekinesis's +telemarketing +telemarketing's +telemeter +telemeter's +telemeters +telemetries +telemetry +telemetry's +telepathic +telepathically +telepathy +telepathy's +telephone +telephone's +telephoned +telephones +telephonic +telephoning +telephony +telephony's +telephoto +telephoto's +telephotos +telescope +telescope's +telescoped +telescopes +telescopic +telescoping +telethon +telethon's +telethons +teletype +teletypes +teletypewriter +teletypewriter's +teletypewriters +televangelist +televangelist's +televangelists +televise +televised +televises +televising +television +television's +televisions +telex +telex's +telexed +telexes +telexing +tell +teller +teller's +tellers +telling +tellingly +tells +telltale +telltale's +telltales +temblor +temblor's +temblors +temerity +temerity's +temp +temp's +temped +temper +temper's +tempera +tempera's +temperament +temperament's +temperamental +temperamentally +temperaments +temperance +temperance's +temperas +temperate +temperature +temperature's +temperatures +tempered +tempering +tempers +tempest +tempest's +tempests +tempestuous +tempestuously +tempestuousness +tempestuousness's +tempi +temping +template +template's +templates +temple +temple's +temples +tempo +tempo's +temporal +temporally +temporaries +temporarily +temporary +temporary's +temporize +temporized +temporizes +temporizing +tempos +temps +tempt +temptation +temptation's +temptations +tempted +tempter +tempter's +tempters +tempting +temptingly +temptress +temptress's +temptresses +tempts +tempura +tempura's +ten +ten's +tenability +tenability's +tenable +tenacious +tenaciously +tenacity +tenacity's +tenancies +tenancy +tenancy's +tenant +tenant's +tenanted +tenanting +tenants +tend +tended +tendencies +tendency +tendency's +tendentious +tendentiously +tendentiousness +tendentiousness's +tender +tender's +tendered +tenderer +tenderest +tenderfeet +tenderfoot +tenderfoot's +tenderfoots +tenderhearted +tendering +tenderize +tenderized +tenderizer +tenderizer's +tenderizers +tenderizes +tenderizing +tenderloin +tenderloin's +tenderloins +tenderly +tenderness +tenderness's +tenders +tending +tendinitis +tendinitis's +tendon +tendon's +tendonitis +tendonitis's +tendons +tendril +tendril's +tendrils +tends +tenement +tenement's +tenements +tenet +tenet's +tenets +tenfold +tennis +tennis's +tenon +tenon's +tenoned +tenoning +tenons +tenor +tenor's +tenors +tenpin +tenpin's +tenpins +tenpins's +tens +tense +tense's +tensed +tensely +tenseness +tenseness's +tenser +tenses +tensest +tensile +tensing +tension +tension's +tensions +tensor +tensors +tent +tent's +tentacle +tentacle's +tentacles +tentative +tentatively +tented +tenth +tenth's +tenths +tenting +tents +tenuous +tenuously +tenuousness +tenuousness's +tenure +tenure's +tenured +tenures +tenuring +tepee +tepee's +tepees +tepid +tequila +tequila's +tequilas +terabit +terabit's +terabits +terabyte +terabyte's +terabytes +tercentenaries +tercentenary +tercentenary's +term +term's +termagant +termagant's +termagants +termed +terminable +terminal +terminal's +terminally +terminals +terminate +terminated +terminates +terminating +termination +termination's +terminations +terminator +terminators +terming +termini +terminological +terminologies +terminology +terminology's +terminus +terminus's +terminuses +termite +termite's +termites +termly +terms +tern +tern's +terns +terrace +terrace's +terraced +terraces +terracing +terrain +terrain's +terrains +terrapin +terrapin's +terrapins +terraria +terrarium +terrarium's +terrariums +terrestrial +terrestrial's +terrestrials +terrible +terribly +terrier +terrier's +terriers +terrific +terrifically +terrified +terrifies +terrify +terrifying +terrifyingly +territorial +territorial's +territorials +territories +territory +territory's +terror +terror's +terrorism +terrorism's +terrorist +terrorist's +terrorists +terrorize +terrorized +terrorizes +terrorizing +terrors +terry +terry's +terse +tersely +terseness +terseness's +terser +tersest +tertiary +test +test's +testable +testament +testament's +testamentary +testaments +testate +testates +tested +tester +tester's +testers +testes +testicle +testicle's +testicles +testier +testiest +testified +testifies +testify +testifying +testily +testimonial +testimonial's +testimonials +testimonies +testimony +testimony's +testiness +testiness's +testing +testis +testis's +testosterone +testosterone's +tests +testy +tetanus +tetanus's +tether +tether's +tethered +tethering +tethers +tetrahedra +tetrahedron +tetrahedron's +tetrahedrons +text +text's +textbook +textbook's +textbooks +textile +textile's +textiles +texts +textual +textually +textural +texture +texture's +textured +textures +texturing +thalami +thalamus +thalamus's +thallium +thallium's +than +thank +thanked +thankful +thankfully +thankfulness +thankfulness's +thanking +thankless +thanklessly +thanks +thanksgiving +thanksgiving's +thanksgivings +that +that's +thatch +thatch's +thatched +thatcher +thatches +thatching +thatching's +thaw +thaw's +thawed +thawing +thaws +the +theater +theater's +theaters +theatre +theatre's +theatres +theatrical +theatrically +thee +thees +theft +theft's +thefts +their +theirs +theism +theism's +theist +theist's +theistic +theists +them +thematic +thematically +theme +theme's +themes +themselves +then +then's +thence +thenceforth +thenceforward +theocracies +theocracy +theocracy's +theocratic +theologian +theologian's +theologians +theological +theologies +theology +theology's +theorem +theorem's +theorems +theoretic +theoretical +theoretically +theoretician +theoretician's +theoreticians +theories +theorist +theorist's +theorists +theorize +theorized +theorizes +theorizing +theory +theory's +theosophy +theosophy's +therapeutic +therapeutically +therapeutics +therapeutics's +therapies +therapist +therapist's +therapists +therapy +therapy's +there +there's +thereabout +thereabouts +thereafter +thereby +therefore +therefrom +therein +thereof +thereon +thereto +thereupon +therewith +thermal +thermal's +thermally +thermals +thermionic +thermodynamic +thermodynamics +thermodynamics's +thermometer +thermometer's +thermometers +thermonuclear +thermoplastic +thermoplastic's +thermoplastics +thermos +thermos's +thermoses +thermostat +thermostat's +thermostatic +thermostats +thesauri +thesaurus +thesaurus's +thesauruses +these +theses +thesis +thesis's +thespian +thespian's +thespians +theta +they +they'd +they'll +they're +they've +thiamin +thiamin's +thiamine +thiamine's +thick +thick's +thicken +thickened +thickener +thickener's +thickeners +thickening +thickening's +thickenings +thickens +thicker +thickest +thicket +thicket's +thickets +thickly +thickness +thickness's +thicknesses +thickset +thief +thief's +thieve +thieved +thievery +thievery's +thieves +thieving +thievish +thigh +thigh's +thighbone +thighbone's +thighbones +thighs +thimble +thimble's +thimbleful +thimbleful's +thimblefuls +thimbles +thin +thine +thing +thing's +thingamajig +thingamajig's +thingamajigs +things +think +thinker +thinker's +thinkers +thinking +thinking's +thinks +thinly +thinned +thinner +thinner's +thinners +thinness +thinness's +thinnest +thinning +thins +third +third's +thirdly +thirds +thirst +thirst's +thirsted +thirstier +thirstiest +thirstily +thirsting +thirsts +thirsty +thirteen +thirteen's +thirteens +thirteenth +thirteenth's +thirteenths +thirties +thirtieth +thirtieth's +thirtieths +thirty +thirty's +this +thistle +thistle's +thistledown +thistledown's +thistles +thither +tho +thong +thong's +thongs +thoraces +thoracic +thorax +thorax's +thoraxes +thorium +thorium's +thorn +thorn's +thornier +thorniest +thorns +thorny +thorough +thoroughbred +thoroughbred's +thoroughbreds +thorougher +thoroughest +thoroughfare +thoroughfare's +thoroughfares +thoroughgoing +thoroughly +thoroughness +thoroughness's +those +thou +thou's +though +thought +thought's +thoughtful +thoughtfully +thoughtfulness +thoughtfulness's +thoughtless +thoughtlessly +thoughtlessness +thoughtlessness's +thoughts +thous +thousand +thousand's +thousands +thousandth +thousandth's +thousandths +thraldom +thraldom's +thrall +thrall's +thralldom +thralldom's +thralled +thralling +thralls +thrash +thrash's +thrashed +thrasher +thrasher's +thrashers +thrashes +thrashing +thrashing's +thrashings +thread +thread's +threadbare +threaded +threading +threads +threat +threat's +threaten +threatened +threatening +threateningly +threatens +threats +three +three's +threefold +threes +threescore +threescore's +threescores +threesome +threesome's +threesomes +threnodies +threnody +threnody's +thresh +thresh's +threshed +thresher +thresher's +threshers +threshes +threshing +threshold +threshold's +thresholds +threw +thrice +thrift +thrift's +thriftier +thriftiest +thriftily +thriftiness +thriftiness's +thrifts +thrifty +thrill +thrill's +thrilled +thriller +thriller's +thrillers +thrilling +thrills +thrive +thrived +thriven +thrives +thriving +throat +throat's +throatier +throatiest +throatily +throatiness +throatiness's +throats +throaty +throb +throb's +throbbed +throbbing +throbs +throe +throe's +throes +thromboses +thrombosis +thrombosis's +throne +throne's +thrones +throng +throng's +thronged +thronging +throngs +throttle +throttle's +throttled +throttles +throttling +through +throughout +throughput +throughway +throughway's +throughways +throve +throw +throw's +throwaway +throwaway's +throwaways +throwback +throwback's +throwbacks +thrower +thrower's +throwers +throwing +thrown +throws +thru +thrum +thrum's +thrummed +thrumming +thrums +thrush +thrush's +thrushes +thrust +thrust's +thrusting +thrusts +thruway +thruway's +thruways +thud +thud's +thudded +thudding +thuds +thug +thug's +thugs +thumb +thumb's +thumbed +thumbing +thumbnail +thumbnail's +thumbnails +thumbs +thumbscrew +thumbscrew's +thumbscrews +thumbtack +thumbtack's +thumbtacks +thump +thump's +thumped +thumping +thumps +thunder +thunder's +thunderbolt +thunderbolt's +thunderbolts +thunderclap +thunderclap's +thunderclaps +thundercloud +thundercloud's +thunderclouds +thundered +thunderhead +thunderhead's +thunderheads +thundering +thunderous +thunders +thundershower +thundershower's +thundershowers +thunderstorm +thunderstorm's +thunderstorms +thunderstruck +thus +thwack +thwack's +thwacked +thwacking +thwacks +thwart +thwart's +thwarted +thwarting +thwarts +thy +thyme +thyme's +thymi +thymus +thymus's +thymuses +thyroid +thyroid's +thyroids +thyself +ti +ti's +tiara +tiara's +tiaras +tibia +tibia's +tibiae +tibias +tic +tic's +tick +tick's +ticked +ticker +ticker's +tickers +ticket +ticket's +ticketed +ticketing +tickets +ticking +ticking's +tickle +tickle's +tickled +tickles +tickling +ticklish +ticks +tics +tidal +tidbit +tidbit's +tidbits +tiddlywinks +tiddlywinks's +tide +tide's +tided +tides +tidewater +tidewater's +tidewaters +tidied +tidier +tidies +tidiest +tidily +tidiness +tidiness's +tiding +tidings +tidings's +tidy +tidy's +tidying +tie +tie's +tiebreaker +tiebreaker's +tiebreakers +tied +tieing +tier +tier's +tiers +ties +tiff +tiff's +tiffed +tiffing +tiffs +tiger +tiger's +tigers +tight +tighten +tightened +tightening +tightens +tighter +tightest +tightfisted +tightly +tightness +tightness's +tightrope +tightrope's +tightropes +tights +tights's +tightwad +tightwad's +tightwads +tigress +tigress's +tigresses +tike +tike's +tikes +tilde +tilde's +tildes +tile +tile's +tiled +tiles +tiling +tiling's +till +till's +tillable +tillage +tillage's +tilled +tiller +tiller's +tillers +tilling +tills +tilt +tilt's +tilted +tilting +tilts +timber +timber's +timbered +timbering +timberland +timberland's +timberline +timberline's +timberlines +timbers +timbre +timbre's +timbres +time +time's +timed +timekeeper +timekeeper's +timekeepers +timeless +timelessness +timelessness's +timelier +timeliest +timeliness +timeliness's +timely +timepiece +timepiece's +timepieces +timer +timer's +timers +times +timescale +timescales +timetable +timetable's +timetabled +timetables +timetabling +timeworn +timezone +timid +timider +timidest +timidity +timidity's +timidly +timing +timing's +timings +timorous +timorously +timpani +timpani's +timpanist +timpanist's +timpanists +tin +tin's +tincture +tincture's +tinctured +tinctures +tincturing +tinder +tinder's +tinderbox +tinderbox's +tinderboxes +tine +tine's +tines +tinfoil +tinfoil's +ting +tinge +tinge's +tinged +tingeing +tinges +tinging +tingle +tingle's +tingled +tingles +tinglier +tingliest +tingling +tingling's +tinglings +tingly +tings +tinier +tiniest +tinker +tinker's +tinkered +tinkering +tinkers +tinkle +tinkle's +tinkled +tinkles +tinkling +tinned +tinnier +tinniest +tinning +tinny +tins +tinsel +tinsel's +tinseled +tinseling +tinselled +tinselling +tinsels +tinsmith +tinsmith's +tinsmiths +tint +tint's +tinted +tinting +tintinnabulation +tintinnabulation's +tintinnabulations +tints +tiny +tip +tip's +tipi +tipi's +tipis +tipped +tipper +tipper's +tippers +tipping +tipple +tipple's +tippled +tippler +tippler's +tipplers +tipples +tippling +tips +tipsier +tipsiest +tipsily +tipster +tipster's +tipsters +tipsy +tiptoe +tiptoe's +tiptoed +tiptoeing +tiptoes +tiptop +tiptop's +tiptops +tirade +tirade's +tirades +tire +tire's +tired +tireder +tiredest +tiredness +tiredness's +tireless +tirelessly +tirelessness +tirelessness's +tires +tiresome +tiresomely +tiresomeness +tiresomeness's +tiring +tiro +tiro's +tiros +tissue +tissue's +tissues +tit +tit's +titan +titan's +titanic +titanium +titanium's +titans +titbit +titbit's +titbits +tithe +tithe's +tithed +tithes +tithing +titillate +titillated +titillates +titillating +titillation +titillation's +title +title's +titled +titles +titling +titmice +titmouse +titmouse's +tits +titter +titter's +tittered +tittering +titters +tittle +tittle's +tittles +titular +tizzies +tizzy +tizzy's +to +toad +toad's +toadied +toadies +toads +toadstool +toadstool's +toadstools +toady +toady's +toadying +toast +toast's +toasted +toaster +toaster's +toasters +toastier +toastiest +toasting +toastmaster +toastmaster's +toastmasters +toasts +toasty +tobacco +tobacco's +tobaccoes +tobacconist +tobacconist's +tobacconists +tobaccos +toboggan +toboggan's +tobogganed +tobogganing +toboggans +tocsin +tocsin's +tocsins +today +today's +toddies +toddle +toddle's +toddled +toddler +toddler's +toddlers +toddles +toddling +toddy +toddy's +toe +toe's +toed +toehold +toehold's +toeholds +toeing +toenail +toenail's +toenails +toes +toffee +toffee's +toffees +toffies +toffy +toffy's +tofu +tofu's +tog +tog's +toga +toga's +togae +togas +together +togetherness +togetherness's +toggle +toggle's +toggled +toggles +toggling +togs +togs's +toil +toil's +toiled +toiler +toiler's +toilers +toilet +toilet's +toileted +toileting +toiletries +toiletry +toiletry's +toilets +toilette +toilette's +toiling +toils +toilsome +toke +toke's +toked +token +token's +tokenism +tokenism's +tokens +tokes +toking +told +tolerable +tolerably +tolerance +tolerance's +tolerances +tolerant +tolerantly +tolerate +tolerated +tolerates +tolerating +toleration +toleration's +toll +toll's +tollbooth +tollbooth's +tollbooths +tolled +tollgate +tollgate's +tollgates +tolling +tolls +tom +tom's +tomahawk +tomahawk's +tomahawked +tomahawking +tomahawks +tomato +tomato's +tomatoes +tomb +tomb's +tombed +tombing +tomboy +tomboy's +tomboys +tombs +tombstone +tombstone's +tombstones +tomcat +tomcat's +tomcats +tome +tome's +tomes +tomfooleries +tomfoolery +tomfoolery's +tomorrow +tomorrow's +tomorrows +toms +ton +ton's +tonal +tonalities +tonality +tonality's +tone +tone's +toned +toneless +toner +tones +tong +tong's +tongs +tongue +tongue's +tongued +tongues +tonguing +tonic +tonic's +tonics +tonier +toniest +tonight +tonight's +toning +tonnage +tonnage's +tonnages +tonne +tonne's +tonnes +tons +tonsil +tonsil's +tonsillectomies +tonsillectomy +tonsillectomy's +tonsillitis +tonsillitis's +tonsils +tonsorial +tonsure +tonsure's +tonsured +tonsures +tonsuring +tony +too +took +tool +tool's +toolbar +toolbox +toolbox's +toolboxes +tooled +tooling +toolkit +tools +toot +toot's +tooted +tooth +tooth's +toothache +toothache's +toothaches +toothbrush +toothbrush's +toothbrushes +toothed +toothier +toothiest +toothless +toothpaste +toothpaste's +toothpastes +toothpick +toothpick's +toothpicks +toothsome +toothy +tooting +toots +top +top's +topaz +topaz's +topazes +topcoat +topcoat's +topcoats +topic +topic's +topical +topically +topics +topknot +topknot's +topknots +topless +topmast +topmast's +topmasts +topmost +topographer +topographer's +topographers +topographic +topographical +topographies +topography +topography's +topological +topologically +topology +topped +topping +topping's +toppings +topple +toppled +topples +toppling +tops +topsail +topsail's +topsails +topside +topside's +topsides +topsoil +topsoil's +toque +toque's +toques +tor +tor's +torch +torch's +torched +torches +torching +torchlight +torchlight's +tore +toreador +toreador's +toreadors +torment +torment's +tormented +tormenter +tormenter's +tormenters +tormenting +tormentor +tormentor's +tormentors +torments +torn +tornado +tornado's +tornadoes +tornados +torpedo +torpedo's +torpedoed +torpedoes +torpedoing +torpedos +torpid +torpidity +torpidity's +torpor +torpor's +torque +torque's +torqued +torques +torquing +torrent +torrent's +torrential +torrents +torrid +torrider +torridest +tors +torsi +torsion +torsion's +torso +torso's +torsos +tort +tort's +torte +torte's +tortes +tortilla +tortilla's +tortillas +tortoise +tortoise's +tortoises +tortoiseshell +tortoiseshell's +tortoiseshells +torts +tortuous +tortuously +torture +torture's +tortured +torturer +torturer's +torturers +tortures +torturing +torus +toss +toss's +tossed +tosses +tossing +tossup +tossup's +tossups +tost +tot +tot's +total +total's +totaled +totaling +totalitarian +totalitarian's +totalitarianism +totalitarianism's +totalitarians +totalities +totality +totality's +totalled +totalling +totally +totals +tote +tote's +toted +totem +totem's +totemic +totems +totes +toting +tots +totted +totter +totter's +tottered +tottering +totters +totting +toucan +toucan's +toucans +touch +touch's +touchdown +touchdown's +touchdowns +touched +touches +touchier +touchiest +touching +touchingly +touchings +touchstone +touchstone's +touchstones +touchy +touché +tough +tough's +toughen +toughened +toughening +toughens +tougher +toughest +toughly +toughness +toughness's +toughs +toupee +toupee's +toupees +tour +tour's +toured +touring +tourism +tourism's +tourist +tourist's +tourists +tourmaline +tourmaline's +tournament +tournament's +tournaments +tourney +tourney's +tourneys +tourniquet +tourniquet's +tourniquets +tours +tousle +tousled +tousles +tousling +tout +tout's +touted +touting +touts +tow +tow's +toward +towards +towed +towel +towel's +toweled +toweling +toweling's +towelings +towelled +towelling +towelling's +towellings +towels +tower +tower's +towered +towering +towers +towhead +towhead's +towheaded +towheads +towing +town +town's +townhouse +townhouse's +townhouses +towns +townsfolk +townsfolk's +township +township's +townships +townsman +townsman's +townsmen +townspeople +townspeople's +towpath +towpath's +towpaths +tows +toxemia +toxemia's +toxic +toxicity +toxicity's +toxicologist +toxicologist's +toxicologists +toxicology +toxicology's +toxin +toxin's +toxins +toy +toy's +toyed +toying +toys +trace +trace's +traceable +traced +tracer +tracer's +traceries +tracers +tracery +tracery's +traces +trachea +trachea's +tracheae +tracheas +tracheotomies +tracheotomy +tracheotomy's +tracing +tracing's +tracings +track +track's +tracked +tracker +tracker's +trackers +tracking +tracks +tract +tract's +tractable +traction +traction's +tractor +tractor's +tractors +tracts +trade +trade's +traded +trademark +trademark's +trademarked +trademarking +trademarks +trader +trader's +traders +trades +tradesman +tradesman's +tradesmen +trading +tradition +tradition's +traditional +traditionalist +traditionalist's +traditionalists +traditionally +traditions +traduce +traduced +traduces +traducing +traffic +traffic's +trafficked +trafficker +trafficker's +traffickers +trafficking +traffics +tragedian +tragedian's +tragedians +tragedies +tragedy +tragedy's +tragic +tragically +tragicomedies +tragicomedy +tragicomedy's +trail +trail's +trailblazer +trailblazer's +trailblazers +trailed +trailer +trailer's +trailers +trailing +trails +train +train's +trained +trainee +trainee's +trainees +trainer +trainer's +trainers +training +training's +trains +traipse +traipse's +traipsed +traipses +traipsing +trait +trait's +traitor +traitor's +traitorous +traitors +traits +trajectories +trajectory +trajectory's +tram +tram's +trammed +trammel +trammel's +trammeled +trammeling +trammelled +trammelling +trammels +tramming +tramp +tramp's +tramped +tramping +trample +trample's +trampled +tramples +trampling +trampoline +trampoline's +trampolines +tramps +trams +trance +trance's +trances +tranquil +tranquiler +tranquilest +tranquility +tranquility's +tranquilize +tranquilized +tranquilizer +tranquilizer's +tranquilizers +tranquilizes +tranquilizing +tranquiller +tranquillest +tranquillity +tranquillity's +tranquillize +tranquillized +tranquillizer +tranquillizer's +tranquillizers +tranquillizes +tranquillizing +tranquilly +transact +transacted +transacting +transaction +transaction's +transactions +transacts +transatlantic +transceiver +transceiver's +transceivers +transcend +transcended +transcendence +transcendence's +transcendent +transcendental +transcendentalism +transcendentalism's +transcendentalist +transcendentalist's +transcendentalists +transcendentally +transcending +transcends +transcontinental +transcribe +transcribed +transcribes +transcribing +transcript +transcript's +transcription +transcription's +transcriptions +transcripts +transducer +transducer's +transducers +transept +transept's +transepts +transfer +transfer's +transferable +transferal +transferal's +transferals +transference +transference's +transferred +transferring +transfers +transfiguration +transfiguration's +transfigure +transfigured +transfigures +transfiguring +transfinite +transfix +transfixed +transfixes +transfixing +transfixt +transform +transform's +transformation +transformation's +transformations +transformed +transformer +transformer's +transformers +transforming +transforms +transfuse +transfused +transfuses +transfusing +transfusion +transfusion's +transfusions +transgress +transgressed +transgresses +transgressing +transgression +transgression's +transgressions +transgressor +transgressor's +transgressors +transience +transience's +transiency +transiency's +transient +transient's +transients +transistor +transistor's +transistors +transit +transit's +transited +transiting +transition +transition's +transitional +transitioned +transitioning +transitions +transitive +transitive's +transitively +transitives +transitory +transits +transitted +transitting +translate +translated +translates +translating +translation +translation's +translations +translator +translator's +translators +transliterate +transliterated +transliterates +transliterating +transliteration +transliteration's +transliterations +translucence +translucence's +translucent +transmigrate +transmigrated +transmigrates +transmigrating +transmigration +transmigration's +transmissible +transmission +transmission's +transmissions +transmit +transmits +transmittable +transmittal +transmittal's +transmitted +transmitter +transmitter's +transmitters +transmitting +transmutation +transmutation's +transmutations +transmute +transmuted +transmutes +transmuting +transnational +transnational's +transnationals +transoceanic +transom +transom's +transoms +transparencies +transparency +transparency's +transparent +transparently +transpiration +transpiration's +transpire +transpired +transpires +transpiring +transplant +transplant's +transplantation +transplantation's +transplanted +transplanting +transplants +transponder +transponder's +transponders +transport +transport's +transportable +transportation +transportation's +transported +transporter +transporter's +transporters +transporting +transports +transpose +transposed +transposes +transposing +transposition +transposition's +transpositions +transsexual +transsexual's +transsexuals +transship +transshipment +transshipment's +transshipped +transshipping +transships +transubstantiation +transubstantiation's +transverse +transverse's +transversely +transverses +transvestism +transvestism's +transvestite +transvestite's +transvestites +trap +trap's +trapdoor +trapdoor's +trapdoors +trapeze +trapeze's +trapezes +trapezoid +trapezoid's +trapezoidal +trapezoids +trappable +trapped +trapper +trapper's +trappers +trapping +trappings +trappings's +traps +trapshooting +trapshooting's +trash +trash's +trashcan +trashcan's +trashcans +trashed +trashes +trashier +trashiest +trashing +trashy +trauma +trauma's +traumas +traumata +traumatic +traumatize +traumatized +traumatizes +traumatizing +travail +travail's +travailed +travailing +travails +travel +travel's +traveled +traveler +traveler's +travelers +traveling +travelings +travelled +traveller +traveller's +travellers +travelling +travelog +travelog's +travelogs +travelogue +travelogue's +travelogues +travels +traverse +traverse's +traversed +traverses +traversing +travestied +travesties +travesty +travesty's +travestying +trawl +trawl's +trawled +trawler +trawler's +trawlers +trawling +trawls +tray +tray's +trays +treacheries +treacherous +treacherously +treachery +treachery's +treacle +treacle's +tread +tread's +treading +treadle +treadle's +treadled +treadles +treadling +treadmill +treadmill's +treadmills +treads +treason +treason's +treasonable +treasonous +treasure +treasure's +treasured +treasurer +treasurer's +treasurers +treasures +treasuries +treasuring +treasury +treasury's +treat +treat's +treatable +treated +treaties +treating +treatise +treatise's +treatises +treatment +treatment's +treatments +treats +treaty +treaty's +treble +treble's +trebled +trebles +trebling +tree +tree's +treed +treeing +treeless +trees +treetop +treetop's +treetops +trefoil +trefoil's +trefoils +trek +trek's +trekked +trekking +treks +trellis +trellis's +trellised +trellises +trellising +tremble +tremble's +trembled +trembles +trembling +tremendous +tremendously +tremolo +tremolo's +tremolos +tremor +tremor's +tremors +tremulous +tremulously +trench +trench's +trenchant +trenched +trenches +trenching +trend +trend's +trended +trendier +trendies +trendiest +trending +trends +trendy +trendy's +trepidation +trepidation's +trespass +trespass's +trespassed +trespasser +trespasser's +trespassers +trespasses +trespassing +tress +tress's +tresses +trestle +trestle's +trestles +triad +triad's +triads +triage +triage's +trial +trial's +trialed +trialing +trials +triangle +triangle's +triangles +triangular +triangulation +triangulation's +triathlon +triathlon's +triathlons +tribal +tribalism +tribalism's +tribe +tribe's +tribes +tribesman +tribesman's +tribesmen +tribulation +tribulation's +tribulations +tribunal +tribunal's +tribunals +tribune +tribune's +tribunes +tributaries +tributary +tributary's +tribute +tribute's +tributes +trice +trice's +triceps +triceps's +tricepses +triceratops +triceratops's +triceratopses +trick +trick's +tricked +trickery +trickery's +trickier +trickiest +trickiness +trickiness's +tricking +trickle +trickle's +trickled +trickles +trickling +tricks +trickster +trickster's +tricksters +tricky +tricolor +tricolor's +tricolors +tricycle +tricycle's +tricycles +trident +trident's +tridents +tried +triennial +triennial's +triennials +tries +trifle +trifle's +trifled +trifler +trifler's +triflers +trifles +trifling +trifocals +trifocals's +trig +trig's +trigger +trigger's +triggered +triggering +triggers +triglyceride +triglyceride's +triglycerides +trigonometric +trigonometry +trigonometry's +trike +trike's +trikes +trilateral +trilaterals +trill +trill's +trilled +trilling +trillion +trillion's +trillions +trillionth +trillionth's +trillionths +trills +trilogies +trilogy +trilogy's +trim +trim's +trimaran +trimaran's +trimarans +trimester +trimester's +trimesters +trimly +trimmed +trimmer +trimmer's +trimmers +trimmest +trimming +trimming's +trimmings +trimmings's +trimness +trimness's +trims +trinities +trinity +trinity's +trinket +trinket's +trinkets +trio +trio's +trios +trip +trip's +tripartite +tripe +tripe's +triple +triple's +tripled +triples +triplet +triplet's +triplets +triplicate +triplicate's +triplicated +triplicates +triplicating +tripling +triply +tripod +tripod's +tripods +tripos +tripped +tripping +trips +triptych +triptych's +triptychs +trisect +trisected +trisecting +trisects +trite +tritely +triteness +triteness's +triter +tritest +triumph +triumph's +triumphal +triumphant +triumphantly +triumphed +triumphing +triumphs +triumvirate +triumvirate's +triumvirates +trivet +trivet's +trivets +trivia +trivia's +trivial +trivialities +triviality +triviality's +trivialize +trivialized +trivializes +trivializing +trivially +trochee +trochee's +trochees +trod +trodden +troika +troika's +troikas +troll +troll's +trolled +trolley +trolley's +trolleys +trollies +trolling +trollop +trollop's +trollops +trolls +trolly +trolly's +trombone +trombone's +trombones +trombonist +trombonist's +trombonists +tromp +tromped +tromping +tromps +troop +troop's +trooped +trooper +trooper's +troopers +trooping +troops +troopship +troopship's +troopships +trope +trope's +tropes +trophies +trophy +trophy's +tropic +tropic's +tropical +tropics +tropics's +tropism +tropism's +tropisms +troposphere +troposphere's +tropospheres +trot +trot's +troth +troth's +trots +trotted +trotter +trotter's +trotters +trotting +troubadour +troubadour's +troubadours +trouble +trouble's +troubled +troublemaker +troublemaker's +troublemakers +troubles +troubleshoot +troubleshooted +troubleshooter +troubleshooter's +troubleshooters +troubleshooting +troubleshooting's +troubleshoots +troubleshot +troublesome +troubling +trough +trough's +troughs +trounce +trounced +trounces +trouncing +troupe +troupe's +trouped +trouper +trouper's +troupers +troupes +trouping +trouser +trouser's +trousers +trousers's +trousseau +trousseau's +trousseaus +trousseaux +trout +trout's +trouts +trowel +trowel's +troweled +troweling +trowelled +trowelling +trowels +troy +troys +truancy +truancy's +truant +truant's +truanted +truanting +truants +truce +truce's +truces +truck +truck's +trucked +trucker +trucker's +truckers +trucking +trucking's +truckle +truckle's +truckled +truckles +truckling +truckload +truckload's +truckloads +trucks +truculence +truculence's +truculent +truculently +trudge +trudge's +trudged +trudges +trudging +true +true's +trued +trueing +truer +trues +truest +truffle +truffle's +truffles +truing +truism +truism's +truisms +truly +trump +trump's +trumped +trumpery +trumpery's +trumpet +trumpet's +trumpeted +trumpeter +trumpeter's +trumpeters +trumpeting +trumpets +trumping +trumps +truncate +truncated +truncates +truncating +truncation +truncation's +truncheon +truncheon's +truncheons +trundle +trundle's +trundled +trundles +trundling +trunk +trunk's +trunking +trunks +truss +truss's +trussed +trusses +trussing +trust +trust's +trusted +trustee +trustee's +trustees +trusteeship +trusteeship's +trusteeships +trustful +trustfully +trustfulness +trustfulness's +trustier +trusties +trustiest +trusting +trusts +trustworthier +trustworthiest +trustworthiness +trustworthiness's +trustworthy +trusty +trusty's +truth +truth's +truthful +truthfully +truthfulness +truthfulness's +truths +try +try's +trying +tryout +tryout's +tryouts +tryst +tryst's +trysted +trysting +trysts +ts +tsar +tsar's +tsarina +tsarina's +tsarinas +tsars +tsunami +tsunami's +tsunamis +tub +tub's +tuba +tuba's +tubas +tubbier +tubbiest +tubby +tube +tube's +tubed +tubeless +tubeless's +tuber +tuber's +tubercle +tubercle's +tubercles +tubercular +tuberculosis +tuberculosis's +tuberculous +tuberous +tubers +tubes +tubing +tubing's +tubs +tubular +tuck +tuck's +tucked +tucker +tucker's +tuckered +tuckering +tuckers +tucking +tucks +tuft +tuft's +tufted +tufting +tufts +tug +tug's +tugboat +tugboat's +tugboats +tugged +tugging +tugs +tuition +tuition's +tulip +tulip's +tulips +tulle +tulle's +tumble +tumble's +tumbled +tumbledown +tumbler +tumbler's +tumblers +tumbles +tumbleweed +tumbleweed's +tumbleweeds +tumbling +tumbrel +tumbrel's +tumbrels +tumbril +tumbril's +tumbrils +tumid +tummies +tummy +tummy's +tumor +tumor's +tumors +tumult +tumult's +tumults +tumultuous +tun +tun's +tuna +tuna's +tunas +tundra +tundra's +tundras +tune +tune's +tuned +tuneful +tunefully +tuneless +tunelessly +tuner +tuner's +tuners +tunes +tungsten +tungsten's +tunic +tunic's +tunics +tuning +tunnel +tunnel's +tunneled +tunneling +tunnelings +tunnelled +tunnelling +tunnels +tunnies +tunny +tunny's +tuns +turban +turban's +turbans +turbid +turbine +turbine's +turbines +turbojet +turbojet's +turbojets +turboprop +turboprop's +turboprops +turbot +turbot's +turbots +turbulence +turbulence's +turbulent +turbulently +turd +turd's +turds +tureen +tureen's +tureens +turf +turf's +turfed +turfing +turfs +turgid +turgidity +turgidity's +turgidly +turkey +turkey's +turkeys +turmeric +turmeric's +turmerics +turmoil +turmoil's +turmoils +turn +turn's +turnabout +turnabout's +turnabouts +turnaround +turnaround's +turnarounds +turncoat +turncoat's +turncoats +turned +turner +turner's +turners +turning +turnip +turnip's +turnips +turnkey +turnkey's +turnkeys +turnoff +turnoff's +turnoffs +turnout +turnout's +turnouts +turnover +turnover's +turnovers +turnpike +turnpike's +turnpikes +turns +turnstile +turnstile's +turnstiles +turntable +turntable's +turntables +turpentine +turpentine's +turpitude +turpitude's +turquoise +turquoise's +turquoises +turret +turret's +turrets +turtle +turtle's +turtledove +turtledove's +turtledoves +turtleneck +turtleneck's +turtlenecks +turtles +turves +tush +tush's +tushes +tusk +tusk's +tusked +tusks +tussle +tussle's +tussled +tussles +tussling +tussock +tussock's +tussocks +tutelage +tutelage's +tutor +tutor's +tutored +tutorial +tutorial's +tutorials +tutoring +tutors +tutu +tutu's +tutus +tux +tux's +tuxedo +tuxedo's +tuxedoes +tuxedos +tuxes +twaddle +twaddle's +twaddled +twaddles +twaddling +twain +twain's +twang +twang's +twanged +twanging +twangs +tweak +tweak's +tweaked +tweaking +tweaks +twee +tweed +tweed's +tweedier +tweediest +tweeds +tweeds's +tweedy +tweet +tweet's +tweeted +tweeter +tweeter's +tweeters +tweeting +tweets +tweezers +tweezers's +twelfth +twelfth's +twelfths +twelve +twelve's +twelves +twenties +twentieth +twentieth's +twentieths +twenty +twenty's +twerp +twerp's +twerps +twice +twiddle +twiddle's +twiddled +twiddles +twiddling +twig +twig's +twigged +twiggier +twiggiest +twigging +twiggy +twigs +twilight +twilight's +twill +twill's +twilled +twin +twin's +twine +twine's +twined +twines +twinge +twinge's +twinged +twingeing +twinges +twinging +twining +twinkle +twinkle's +twinkled +twinkles +twinkling +twinkling's +twinklings +twinned +twinning +twins +twirl +twirl's +twirled +twirler +twirler's +twirlers +twirling +twirls +twist +twist's +twisted +twister +twister's +twisters +twisting +twists +twit +twit's +twitch +twitch's +twitched +twitches +twitching +twits +twitted +twitter +twitter's +twittered +twittering +twitters +twitting +two +two's +twofer +twofer's +twofers +twofold +twos +twosome +twosome's +twosomes +tycoon +tycoon's +tycoons +tying +tyke +tyke's +tykes +tympana +tympanum +tympanum's +tympanums +type +type's +typecast +typecasting +typecasts +typed +typeface +typeface's +typefaces +types +typescript +typescript's +typescripts +typeset +typesets +typesetter +typesetter's +typesetters +typesetting +typewrite +typewriter +typewriter's +typewriters +typewrites +typewriting +typewritten +typewrote +typhoid +typhoid's +typhoon +typhoon's +typhoons +typhus +typhus's +typical +typically +typified +typifies +typify +typifying +typing +typing's +typist +typist's +typists +typo +typo's +typographer +typographer's +typographers +typographic +typographical +typographically +typography +typography's +typos +tyrannical +tyrannically +tyrannies +tyrannize +tyrannized +tyrannizes +tyrannizing +tyrannosaur +tyrannosaur's +tyrannosaurs +tyrannosaurus +tyrannosaurus's +tyrannosauruses +tyrannous +tyranny +tyranny's +tyrant +tyrant's +tyrants +tyro +tyro's +tyroes +tyros +tzar +tzar's +tzarina +tzarina's +tzarinas +tzars +u +ubiquitous +ubiquitously +ubiquity +ubiquity's +udder +udder's +udders +ugh +uglier +ugliest +ugliness +ugliness's +ugly +uh +ukelele +ukelele's +ukeleles +ukulele +ukulele's +ukuleles +ulcer +ulcer's +ulcerate +ulcerated +ulcerates +ulcerating +ulceration +ulceration's +ulcerous +ulcers +ulna +ulna's +ulnae +ulnas +ulterior +ultimata +ultimate +ultimate's +ultimately +ultimatum +ultimatum's +ultimatums +ultra +ultra's +ultraconservative +ultraconservative's +ultraconservatives +ultramarine +ultramarine's +ultras +ultrasonic +ultrasonically +ultrasound +ultrasound's +ultrasounds +ultraviolet +ultraviolet's +ululate +ululated +ululates +ululating +um +umbel +umbel's +umbels +umber +umber's +umbilical +umbilici +umbilicus +umbilicus's +umbilicuses +umbrage +umbrage's +umbrella +umbrella's +umbrellas +umiak +umiak's +umiaks +umlaut +umlaut's +umlauts +ump +ump's +umped +umping +umpire +umpire's +umpired +umpires +umpiring +umps +umpteen +umpteenth +unabashed +unabated +unable +unabridged +unabridged's +unabridgeds +unaccented +unacceptability +unacceptable +unacceptably +unaccepted +unaccompanied +unaccountable +unaccountably +unaccustomed +unacknowledged +unacquainted +unadorned +unadulterated +unadvised +unaffected +unafraid +unaided +unalterable +unalterably +unaltered +unambiguous +unambiguously +unanimity +unanimity's +unanimous +unanimously +unannounced +unanswerable +unanswered +unanticipated +unappealing +unappetizing +unappreciated +unappreciative +unapproachable +unarmed +unashamed +unashamedly +unasked +unassailable +unassigned +unassisted +unassuming +unattached +unattainable +unattended +unattractive +unattributed +unauthenticated +unauthorized +unavailable +unavailing +unavoidable +unavoidably +unaware +unawares +unbalanced +unbar +unbarred +unbarring +unbars +unbearable +unbearably +unbeatable +unbeaten +unbecoming +unbeknown +unbeknownst +unbelief +unbelief's +unbelievable +unbelievably +unbeliever +unbeliever's +unbelievers +unbend +unbending +unbends +unbent +unbiased +unbiassed +unbidden +unbind +unbinding +unbinds +unblock +unblocked +unblocking +unblocks +unblushing +unbolt +unbolted +unbolting +unbolts +unborn +unbosom +unbosomed +unbosoming +unbosoms +unbound +unbounded +unbranded +unbreakable +unbridled +unbroken +unbuckle +unbuckled +unbuckles +unbuckling +unburden +unburdened +unburdening +unburdens +unbutton +unbuttoned +unbuttoning +unbuttons +uncalled +uncannier +uncanniest +uncannily +uncanny +uncaring +uncased +uncatalogued +unceasing +unceasingly +uncensored +unceremonious +unceremoniously +uncertain +uncertainly +uncertainties +uncertainty +uncertainty's +unchallenged +unchanged +unchanging +uncharacteristic +uncharacteristically +uncharitable +uncharitably +uncharted +unchecked +unchristian +uncivil +uncivilized +unclaimed +unclasp +unclasped +unclasping +unclasps +unclassified +uncle +uncle's +unclean +uncleaner +uncleanest +uncleanlier +uncleanliest +uncleanly +uncleanness +uncleanness's +unclear +unclearer +unclearest +uncles +unclothe +unclothed +unclothes +unclothing +uncluttered +uncoil +uncoiled +uncoiling +uncoils +uncollected +uncomfortable +uncomfortably +uncommitted +uncommon +uncommoner +uncommonest +uncommonly +uncommunicative +uncomplaining +uncompleted +uncomplicated +uncomplimentary +uncomprehending +uncompressed +uncompromising +uncompromisingly +unconcern +unconcern's +unconcerned +unconcernedly +unconditional +unconditionally +unconfirmed +unconnected +unconquerable +unconscionable +unconscionably +unconscious +unconscious's +unconsciously +unconsciousness +unconsciousness's +unconsidered +unconstitutional +uncontaminated +uncontested +uncontrollable +uncontrollably +uncontrolled +uncontroversial +unconventional +unconventionally +unconvinced +unconvincing +unconvincingly +uncooked +uncooperative +uncoordinated +uncork +uncorked +uncorking +uncorks +uncorrelated +uncorroborated +uncountable +uncounted +uncouple +uncoupled +uncouples +uncoupling +uncouth +uncover +uncovered +uncovering +uncovers +uncritical +unction +unction's +unctions +unctuous +unctuously +unctuousness +unctuousness's +uncultivated +uncultured +uncut +undamaged +undated +undaunted +undeceive +undeceived +undeceives +undeceiving +undecidable +undecided +undecided's +undecideds +undecipherable +undeclared +undefeated +undefended +undefinable +undefined +undelivered +undemanding +undemocratic +undemonstrative +undeniable +undeniably +undependable +under +underachieve +underachieved +underachiever +underachiever's +underachievers +underachieves +underachieving +underact +underacted +underacting +underacts +underage +underarm +underarm's +underarms +underbellies +underbelly +underbelly's +underbid +underbidding +underbids +underbrush +underbrush's +undercarriage +undercarriage's +undercarriages +undercharge +undercharge's +undercharged +undercharges +undercharging +underclass +underclass's +underclassman +underclassman's +underclassmen +underclothes +underclothes's +underclothing +underclothing's +undercoat +undercoat's +undercoated +undercoating +undercoats +undercover +undercurrent +undercurrent's +undercurrents +undercut +undercut's +undercuts +undercutting +underdeveloped +underdog +underdog's +underdogs +underdone +underemployed +underestimate +underestimate's +underestimated +underestimates +underestimating +underexpose +underexposed +underexposes +underexposing +underfed +underfeed +underfeeding +underfeeds +underflow +underfoot +underfunded +undergarment +undergarment's +undergarments +undergo +undergoes +undergoing +undergone +undergrad +undergrads +undergraduate +undergraduate's +undergraduates +underground +underground's +undergrounds +undergrowth +undergrowth's +underhand +underhanded +underhandedly +underlain +underlay +underlay's +underlays +underlie +underlies +underline +underline's +underlined +underlines +underling +underling's +underlings +underlining +underlying +undermine +undermined +undermines +undermining +undermost +underneath +underneath's +underneaths +undernourished +underpaid +underpants +underpants's +underpass +underpass's +underpasses +underpay +underpaying +underpays +underpin +underpinned +underpinning +underpinning's +underpinnings +underpins +underplay +underplayed +underplaying +underplays +underprivileged +underrate +underrated +underrates +underrating +underscore +underscore's +underscored +underscores +underscoring +undersea +undersecretaries +undersecretary +undersecretary's +undersell +underselling +undersells +undershirt +undershirt's +undershirts +undershoot +undershooting +undershoots +undershorts +undershorts's +undershot +underside +underside's +undersides +undersign +undersigned +undersigned's +undersigning +undersigns +undersize +undersized +underskirt +underskirt's +underskirts +undersold +understaffed +understand +understandable +understandably +understanding +understanding's +understandingly +understandings +understands +understate +understated +understatement +understatement's +understatements +understates +understating +understood +understudied +understudies +understudy +understudy's +understudying +undertake +undertaken +undertaker +undertaker's +undertakers +undertakes +undertaking +undertaking's +undertakings +undertone +undertone's +undertones +undertook +undertow +undertow's +undertows +underused +undervalue +undervalued +undervalues +undervaluing +underwater +underwear +underwear's +underweight +underweight's +underwent +underworld +underworld's +underworlds +underwrite +underwriter +underwriter's +underwriters +underwrites +underwriting +underwritten +underwrote +undeserved +undeservedly +undeserving +undesirability +undesirable +undesirable's +undesirables +undetectable +undetected +undetermined +undeterred +undeveloped +undid +undies +undies's +undignified +undiluted +undiminished +undisciplined +undisclosed +undiscovered +undiscriminating +undisguised +undisputed +undistinguished +undisturbed +undivided +undo +undocumented +undoes +undoing +undoing's +undoings +undone +undoubted +undoubtedly +undress +undress's +undressed +undresses +undressing +undue +undulant +undulate +undulated +undulates +undulating +undulation +undulation's +undulations +unduly +undying +unearned +unearth +unearthed +unearthing +unearthly +unearths +unease +unease's +uneasier +uneasiest +uneasily +uneasiness +uneasiness's +uneasy +uneaten +uneconomic +uneconomical +unedited +uneducated +unembarrassed +unemotional +unemployable +unemployed +unemployed's +unemployment +unemployment's +unending +unendurable +unenforceable +unenlightened +unenthusiastic +unenviable +unequal +unequaled +unequalled +unequally +unequivocal +unequivocally +unerring +unerringly +unethical +uneven +unevener +unevenest +unevenly +unevenness +unevenness's +uneventful +uneventfully +unexampled +unexceptionable +unexceptional +unexciting +unexpected +unexpectedly +unexplained +unexplored +unexpurgated +unfailing +unfailingly +unfair +unfairer +unfairest +unfairly +unfairness +unfairness's +unfaithful +unfaithfully +unfaithfulness +unfaithfulness's +unfamiliar +unfamiliarity +unfamiliarity's +unfashionable +unfasten +unfastened +unfastening +unfastens +unfathomable +unfavorable +unfavorably +unfeasible +unfeeling +unfeelingly +unfeigned +unfetter +unfettered +unfettering +unfetters +unfilled +unfinished +unfit +unfits +unfitted +unfitting +unflagging +unflappable +unflattering +unflinching +unflinchingly +unfold +unfolded +unfolding +unfolds +unforeseeable +unforeseen +unforgettable +unforgettably +unforgivable +unforgiving +unformed +unfortunate +unfortunate's +unfortunately +unfortunates +unfounded +unfrequented +unfriendlier +unfriendliest +unfriendliness +unfriendliness's +unfriendly +unfrock +unfrocked +unfrocking +unfrocks +unfulfilled +unfunny +unfurl +unfurled +unfurling +unfurls +unfurnished +ungainlier +ungainliest +ungainliness +ungainliness's +ungainly +ungentlemanly +ungodlier +ungodliest +ungodly +ungovernable +ungracious +ungrammatical +ungrateful +ungratefully +ungratefulness +ungratefulness's +ungrudging +unguarded +unguent +unguent's +unguents +ungulate +ungulate's +ungulates +unhand +unhanded +unhanding +unhands +unhappier +unhappiest +unhappily +unhappiness +unhappiness's +unhappy +unharmed +unhealthful +unhealthier +unhealthiest +unhealthy +unheard +unheeded +unhelpful +unhesitating +unhesitatingly +unhindered +unhinge +unhinged +unhinges +unhinging +unhitch +unhitched +unhitches +unhitching +unholier +unholiest +unholy +unhook +unhooked +unhooking +unhooks +unhorse +unhorsed +unhorses +unhorsing +unhurried +unhurt +unicameral +unicorn +unicorn's +unicorns +unicycle +unicycle's +unicycles +unidentifiable +unidentified +unidirectional +unification +unification's +unified +unifies +uniform +uniform's +uniformed +uniforming +uniformity +uniformity's +uniformly +uniforms +unify +unifying +unilateral +unilaterally +unimaginable +unimaginative +unimpaired +unimpeachable +unimplementable +unimplemented +unimportant +unimpressed +unimpressive +uninformative +uninformed +uninhabitable +uninhabited +uninhibited +uninitialized +uninitiated +uninjured +uninspired +uninspiring +uninstall +uninstallable +uninstalled +uninstaller +uninstaller's +uninstallers +uninstalling +uninstalls +uninsured +unintelligent +unintelligible +unintelligibly +unintended +unintentional +unintentionally +uninterested +uninteresting +uninterpreted +uninterrupted +uninvited +uninviting +union +union's +unionization +unionization's +unionize +unionized +unionizes +unionizing +unions +unique +uniquely +uniqueness +uniqueness's +uniquer +uniquest +unisex +unisex's +unison +unison's +unit +unit's +unitary +unite +united +unites +unities +uniting +units +unity +unity's +universal +universal's +universality +universality's +universally +universals +universe +universe's +universes +universities +university +university's +unjust +unjustifiable +unjustified +unjustly +unkempt +unkind +unkinder +unkindest +unkindlier +unkindliest +unkindly +unkindness +unkindness's +unknowable +unknowing +unknowingly +unknowings +unknown +unknown's +unknowns +unlabeled +unlace +unlaced +unlaces +unlacing +unlatch +unlatched +unlatches +unlatching +unlawful +unlawfully +unleaded +unleaded's +unlearn +unlearned +unlearning +unlearns +unleash +unleashed +unleashes +unleashing +unleavened +unless +unlettered +unlicensed +unlike +unlikelier +unlikeliest +unlikelihood +unlikelihood's +unlikely +unlimited +unlisted +unload +unloaded +unloading +unloads +unlock +unlocked +unlocking +unlocks +unloose +unloosed +unlooses +unloosing +unloved +unluckier +unluckiest +unluckily +unlucky +unmade +unmake +unmakes +unmaking +unman +unmanageable +unmanlier +unmanliest +unmanly +unmanned +unmannerly +unmanning +unmans +unmarked +unmarried +unmask +unmasked +unmasking +unmasks +unmatched +unmemorable +unmentionable +unmentionable's +unmentionables +unmerciful +unmercifully +unmindful +unmistakable +unmistakably +unmitigated +unmodified +unmoral +unmoved +unnamed +unnatural +unnaturally +unnecessarily +unnecessary +unneeded +unnerve +unnerved +unnerves +unnerving +unnoticeable +unnoticed +unnumbered +unobjectionable +unobservant +unobserved +unobstructed +unobtainable +unobtrusive +unobtrusively +unoccupied +unoffensive +unofficial +unofficially +unopened +unopposed +unorganized +unoriginal +unorthodox +unpack +unpacked +unpacking +unpacks +unpaid +unpainted +unpalatable +unparalleled +unpardonable +unpatriotic +unpaved +unperturbed +unpick +unpin +unpinned +unpinning +unpins +unplanned +unpleasant +unpleasantly +unpleasantness +unpleasantness's +unplug +unplugged +unplugging +unplugs +unplumbed +unpolluted +unpopular +unpopularity +unpopularity's +unprecedented +unpredictability +unpredictability's +unpredictable +unprejudiced +unpremeditated +unprepared +unpretentious +unpreventable +unprincipled +unprintable +unprivileged +unproductive +unprofessional +unprofitable +unpromising +unprompted +unpronounceable +unprotected +unproved +unproven +unprovoked +unpublished +unpunished +unqualified +unquenchable +unquestionable +unquestionably +unquestioned +unquestioning +unquestioningly +unquote +unquoted +unquotes +unquoting +unravel +unraveled +unraveling +unravelled +unravelling +unravels +unreachable +unread +unreadable +unreadier +unreadiest +unready +unreal +unrealistic +unrealistically +unrealized +unreasonable +unreasonableness +unreasonableness's +unreasonably +unreasoning +unrecognizable +unrecognized +unreconstructed +unrecorded +unrefined +unregenerate +unregistered +unregulated +unrehearsed +unrelated +unreleased +unrelenting +unrelentingly +unreliability +unreliable +unrelieved +unremarkable +unremitting +unrepeatable +unrepentant +unrepresentative +unrequited +unreserved +unreservedly +unresolved +unresponsive +unrest +unrest's +unrestrained +unrestricted +unrewarding +unripe +unriper +unripest +unrivaled +unrivalled +unroll +unrolled +unrolling +unrolls +unromantic +unruffled +unrulier +unruliest +unruliness +unruliness's +unruly +unsaddle +unsaddled +unsaddles +unsaddling +unsafe +unsafer +unsafest +unsaid +unsalted +unsanctioned +unsanitary +unsatisfactory +unsatisfied +unsatisfying +unsaturated +unsavory +unsay +unsaying +unsays +unscathed +unscheduled +unschooled +unscientific +unscramble +unscrambled +unscrambles +unscrambling +unscrew +unscrewed +unscrewing +unscrews +unscrupulous +unscrupulously +unscrupulousness +unscrupulousness's +unseal +unsealed +unsealing +unseals +unseasonable +unseasonably +unseasoned +unseat +unseated +unseating +unseats +unseeing +unseemlier +unseemliest +unseemliness +unseemliness's +unseemly +unseen +unseen's +unselfish +unselfishly +unselfishness +unselfishness's +unsent +unsentimental +unset +unsettle +unsettled +unsettles +unsettling +unshakable +unshakeable +unshaven +unsheathe +unsheathed +unsheathes +unsheathing +unsightlier +unsightliest +unsightliness +unsightliness's +unsightly +unsigned +unskilled +unskillful +unsmiling +unsnap +unsnapped +unsnapping +unsnaps +unsnarl +unsnarled +unsnarling +unsnarls +unsociable +unsold +unsolicited +unsolved +unsophisticated +unsound +unsounder +unsoundest +unsparing +unspeakable +unspeakably +unspecific +unspecified +unspoiled +unspoilt +unspoken +unsportsmanlike +unstable +unstabler +unstablest +unstated +unsteadier +unsteadiest +unsteadily +unsteadiness +unsteadiness's +unsteady +unstop +unstoppable +unstopped +unstopping +unstops +unstressed +unstructured +unstrung +unstuck +unstudied +unsubscribe +unsubscribed +unsubscribes +unsubscribing +unsubstantial +unsubstantiated +unsubtle +unsuccessful +unsuccessfully +unsuitable +unsuitably +unsuited +unsung +unsupervised +unsupportable +unsupported +unsure +unsurpassed +unsurprising +unsuspected +unsuspecting +unsweetened +unswerving +unsympathetic +untainted +untamed +untangle +untangled +untangles +untangling +untapped +untaught +untenable +untested +unthinkable +unthinking +unthinkingly +untidier +untidiest +untidiness +untidiness's +untidy +untie +untied +unties +until +untimelier +untimeliest +untimeliness +untimeliness's +untimely +untiring +untiringly +untitled +unto +untold +untouchable +untouchable's +untouchables +untouched +untoward +untrained +untreated +untried +untroubled +untrue +untruer +untruest +untrustworthy +untruth +untruth's +untruthful +untruthfully +untruths +untutored +untwist +untwisted +untwisting +untwists +untying +unusable +unused +unusual +unusually +unutterable +unutterably +unvarnished +unvarying +unveil +unveiled +unveiling +unveils +unverified +unvoiced +unwanted +unwarier +unwariest +unwariness +unwariness's +unwarranted +unwary +unwashed +unwavering +unwed +unwelcome +unwell +unwholesome +unwieldier +unwieldiest +unwieldiness +unwieldiness's +unwieldy +unwilling +unwillingly +unwillingness +unwillingness's +unwind +unwinding +unwinds +unwise +unwisely +unwiser +unwisest +unwitting +unwittingly +unwonted +unworkable +unworldly +unworthier +unworthiest +unworthiness +unworthiness's +unworthy +unwound +unwrap +unwrapped +unwrapping +unwraps +unwritten +unyielding +unzip +unzipped +unzipping +unzips +up +upbeat +upbeat's +upbeats +upbraid +upbraided +upbraiding +upbraids +upbringing +upbringing's +upbringings +upchuck +upchucked +upchucking +upchucks +upcoming +upcountry +upcountry's +update +update's +updated +updater +updates +updating +updraft +updraft's +updrafts +upend +upended +upending +upends +upfront +upgrade +upgrade's +upgraded +upgrades +upgrading +upheaval +upheaval's +upheavals +upheld +uphill +uphill's +uphills +uphold +upholding +upholds +upholster +upholstered +upholsterer +upholsterer's +upholsterers +upholstering +upholsters +upholstery +upholstery's +upkeep +upkeep's +upland +upland's +uplands +uplift +uplift's +uplifted +uplifting +upliftings +uplifts +upload +upmarket +upon +upped +upper +upper's +uppercase +uppercase's +upperclassman +upperclassman's +upperclassmen +uppercut +uppercut's +uppercuts +uppercutting +uppermost +uppers +upping +uppity +upraise +upraised +upraises +upraising +upright +upright's +uprights +uprising +uprising's +uprisings +uproar +uproar's +uproarious +uproariously +uproars +uproot +uprooted +uprooting +uproots +ups +upscale +upset +upset's +upsets +upsetting +upshot +upshot's +upshots +upside +upside's +upsides +upstage +upstaged +upstages +upstaging +upstairs +upstanding +upstart +upstart's +upstarted +upstarting +upstarts +upstate +upstate's +upstream +upsurge +upsurge's +upsurged +upsurges +upsurging +upswing +upswing's +upswings +uptake +uptake's +uptakes +uptight +uptown +uptown's +upturn +upturn's +upturned +upturning +upturns +upward +upwardly +upwards +uranium +uranium's +urban +urbane +urbaner +urbanest +urbanity +urbanity's +urbanization +urbanization's +urbanize +urbanized +urbanizes +urbanizing +urchin +urchin's +urchins +urea +urea's +urethra +urethra's +urethrae +urethras +urge +urge's +urged +urgency +urgency's +urgent +urgently +urges +urging +uric +urinal +urinal's +urinals +urinalyses +urinalysis +urinalysis's +urinary +urinate +urinated +urinates +urinating +urination +urination's +urine +urine's +urn +urn's +urns +urologist +urologist's +urologists +urology +urology's +us +usable +usage +usage's +usages +use +use's +useable +used +useful +usefully +usefulness +usefulness's +useless +uselessly +uselessness +uselessness's +user +user's +users +uses +usher +usher's +ushered +usherette +usherette's +usherettes +ushering +ushers +using +usual +usual's +usually +usurer +usurer's +usurers +usurious +usurp +usurpation +usurpation's +usurped +usurper +usurper's +usurpers +usurping +usurps +usury +usury's +utensil +utensil's +utensils +uteri +uterine +uterus +uterus's +uteruses +utilitarian +utilitarian's +utilitarianism +utilitarians +utilities +utility +utility's +utilization +utilization's +utilize +utilized +utilizes +utilizing +utmost +utmost's +utopia +utopia's +utopian +utopian's +utopians +utopias +utter +utterance +utterance's +utterances +uttered +uttering +utterly +uttermost +uttermost's +utters +uvula +uvula's +uvulae +uvular +uvular's +uvulars +uvulas +v +vacancies +vacancy +vacancy's +vacant +vacantly +vacate +vacated +vacates +vacating +vacation +vacation's +vacationed +vacationer +vacationer's +vacationers +vacationing +vacations +vaccinate +vaccinated +vaccinates +vaccinating +vaccination +vaccination's +vaccinations +vaccine +vaccine's +vaccines +vacillate +vacillated +vacillates +vacillating +vacillation +vacillation's +vacillations +vacua +vacuity +vacuity's +vacuous +vacuously +vacuum +vacuum's +vacuumed +vacuuming +vacuums +vagabond +vagabond's +vagabonded +vagabonding +vagabonds +vagaries +vagary +vagary's +vagina +vagina's +vaginae +vaginal +vaginas +vagrancy +vagrancy's +vagrant +vagrant's +vagrants +vague +vaguely +vagueness +vagueness's +vaguer +vaguest +vain +vainer +vainest +vainglorious +vainglory +vainglory's +vainly +valance +valance's +valances +vale +vale's +valedictorian +valedictorian's +valedictorians +valedictories +valedictory +valedictory's +valence +valence's +valences +valentine +valentine's +valentines +vales +valet +valet's +valeted +valeting +valets +valiant +valiantly +valid +validate +validated +validates +validating +validation +validation's +validations +validity +validity's +validly +validness +validness's +valise +valise's +valises +valley +valley's +valleys +valor +valor's +valorous +valuable +valuable's +valuables +valuation +valuation's +valuations +value +value's +valued +valueless +values +valuing +valve +valve's +valved +valves +valving +vamoose +vamoosed +vamooses +vamoosing +vamp +vamp's +vamped +vamping +vampire +vampire's +vampires +vamps +van +van's +vanadium +vanadium's +vandal +vandal's +vandalism +vandalism's +vandalize +vandalized +vandalizes +vandalizing +vandals +vane +vane's +vanes +vanguard +vanguard's +vanguards +vanilla +vanilla's +vanillas +vanish +vanished +vanishes +vanishing +vanishings +vanities +vanity +vanity's +vanned +vanning +vanquish +vanquished +vanquishes +vanquishing +vans +vantage +vantage's +vantages +vapid +vapidity +vapidity's +vapidness +vapidness's +vapor +vapor's +vaporization +vaporization's +vaporize +vaporized +vaporizer +vaporizer's +vaporizers +vaporizes +vaporizing +vaporous +vapors +variability +variability's +variable +variable's +variables +variably +variance +variance's +variances +variant +variant's +variants +variate +variation +variation's +variations +varicolored +varicose +varied +variegate +variegated +variegates +variegating +varies +varieties +variety +variety's +various +variously +varlet +varlet's +varlets +varmint +varmint's +varmints +varnish +varnish's +varnished +varnishes +varnishing +varsities +varsity +varsity's +vary +varying +vascular +vase +vase's +vasectomies +vasectomy +vasectomy's +vases +vassal +vassal's +vassalage +vassalage's +vassals +vast +vast's +vaster +vastest +vastly +vastness +vastness's +vasts +vat +vat's +vats +vatted +vatting +vaudeville +vaudeville's +vault +vault's +vaulted +vaulter +vaulter's +vaulters +vaulting +vaulting's +vaults +vaunt +vaunt's +vaunted +vaunting +vaunts +veal +veal's +vector +vector's +vectored +vectoring +vectors +veep +veep's +veeps +veer +veer's +veered +veering +veers +vegan +vegan's +vegans +vegetable +vegetable's +vegetables +vegetarian +vegetarian's +vegetarianism +vegetarianism's +vegetarians +vegetate +vegetated +vegetates +vegetating +vegetation +vegetation's +vegetative +veggie +veggie's +veggies +vehemence +vehemence's +vehement +vehemently +vehicle +vehicle's +vehicles +vehicular +veil +veil's +veiled +veiling +veils +vein +vein's +veined +veining +veins +veld +veld's +velds +veldt +veldt's +veldts +vellum +vellum's +velocities +velocity +velocity's +velour +velour's +velours +velours's +velvet +velvet's +velveteen +velveteen's +velvetier +velvetiest +velvety +venal +venality +venality's +venally +vend +vended +vender +vender's +venders +vendetta +vendetta's +vendettas +vending +vendor +vendor's +vendors +vends +veneer +veneer's +veneered +veneering +veneers +venerable +venerate +venerated +venerates +venerating +veneration +veneration's +venereal +vengeance +vengeance's +vengeful +vengefully +venial +venison +venison's +venom +venom's +venomous +venomously +venous +vent +vent's +vented +ventilate +ventilated +ventilates +ventilating +ventilation +ventilation's +ventilator +ventilator's +ventilators +venting +ventral +ventricle +ventricle's +ventricles +ventricular +ventriloquism +ventriloquism's +ventriloquist +ventriloquist's +ventriloquists +vents +venture +venture's +ventured +ventures +venturesome +venturing +venturous +venue +venue's +venues +veracious +veracity +veracity's +veranda +veranda's +verandah +verandah's +verandahs +verandas +verb +verb's +verbal +verbal's +verbalize +verbalized +verbalizes +verbalizing +verbally +verbals +verbatim +verbena +verbena's +verbenas +verbiage +verbiage's +verbose +verbosity +verbosity's +verbs +verdant +verdict +verdict's +verdicts +verdigris +verdigris's +verdigrised +verdigrises +verdigrising +verdure +verdure's +verge +verge's +verged +verges +verging +verier +veriest +verifiable +verification +verification's +verified +verifies +verify +verifying +verily +verisimilitude +verisimilitude's +veritable +veritably +verities +verity +verity's +vermicelli +vermicelli's +vermilion +vermilion's +vermillion +vermillion's +vermin +vermin's +verminous +vermouth +vermouth's +vernacular +vernacular's +vernaculars +vernal +versatile +versatility +versatility's +verse +verse's +versed +verses +versification +versification's +versified +versifies +versify +versifying +versing +version +version's +versions +versus +vertebra +vertebra's +vertebrae +vertebral +vertebras +vertebrate +vertebrate's +vertebrates +vertex +vertex's +vertexes +vertical +vertical's +vertically +verticals +vertices +vertiginous +vertigo +vertigo's +verve +verve's +very +vesicle +vesicle's +vesicles +vesper +vesper's +vespers +vessel +vessel's +vessels +vest +vest's +vested +vestibule +vestibule's +vestibules +vestige +vestige's +vestiges +vestigial +vesting +vestment +vestment's +vestments +vestries +vestry +vestry's +vests +vet +vet's +vetch +vetch's +vetches +veteran +veteran's +veterans +veterinarian +veterinarian's +veterinarians +veterinaries +veterinary +veterinary's +veto +veto's +vetoed +vetoes +vetoing +vets +vetted +vetting +vex +vexation +vexation's +vexations +vexatious +vexed +vexes +vexing +via +viability +viability's +viable +viaduct +viaduct's +viaducts +vial +vial's +vials +viand +viand's +viands +vibe +vibe's +vibes +vibes's +vibrancy +vibrancy's +vibrant +vibrantly +vibraphone +vibraphone's +vibraphones +vibrate +vibrated +vibrates +vibrating +vibration +vibration's +vibrations +vibrato +vibrato's +vibrator +vibrator's +vibrators +vibratos +viburnum +viburnum's +viburnums +vicar +vicar's +vicarage +vicarage's +vicarages +vicarious +vicariously +vicars +vice +vice's +viced +viceroy +viceroy's +viceroys +vices +vichyssoise +vichyssoise's +vicing +vicinity +vicinity's +vicious +viciously +viciousness +viciousness's +vicissitude +vicissitude's +vicissitudes +victim +victim's +victimization +victimization's +victimize +victimized +victimizes +victimizing +victims +victor +victor's +victories +victorious +victoriously +victors +victory +victory's +victual +victual's +victualed +victualing +victualled +victualling +victuals +vicuña +vicuña's +vicuñas +video +video's +videocassette +videocassette's +videocassettes +videodisc +videodisc's +videodiscs +videos +videotape +videotape's +videotaped +videotapes +videotaping +vie +vied +vies +view +view's +viewed +viewer +viewer's +viewers +viewfinder +viewfinder's +viewfinders +viewing +viewing's +viewings +viewpoint +viewpoint's +viewpoints +views +vigil +vigil's +vigilance +vigilance's +vigilant +vigilante +vigilante's +vigilantes +vigilantism +vigilantism's +vigilantly +vigils +vignette +vignette's +vignetted +vignettes +vignetting +vigor +vigor's +vigorous +vigorously +vile +vilely +vileness +vileness's +viler +vilest +vilification +vilification's +vilified +vilifies +vilify +vilifying +villa +villa's +village +village's +villager +villager's +villagers +villages +villain +villain's +villainies +villainous +villains +villainy +villainy's +villas +villein +villein's +villeins +vim +vim's +vinaigrette +vinaigrette's +vindicate +vindicated +vindicates +vindicating +vindication +vindication's +vindications +vindicator +vindicator's +vindicators +vindictive +vindictively +vindictiveness +vindictiveness's +vine +vine's +vinegar +vinegar's +vinegary +vines +vineyard +vineyard's +vineyards +vintage +vintage's +vintages +vintner +vintner's +vintners +vinyl +vinyl's +vinyls +viol +viol's +viola +viola's +violable +violas +violate +violated +violates +violating +violation +violation's +violations +violator +violator's +violators +violence +violence's +violent +violently +violet +violet's +violets +violin +violin's +violinist +violinist's +violinists +violins +violist +violist's +violists +violoncello +violoncello's +violoncellos +viols +viper +viper's +vipers +virago +virago's +viragoes +viragos +viral +vireo +vireo's +vireos +virgin +virgin's +virginal +virginal's +virginals +virginity +virginity's +virgins +virgule +virgule's +virgules +virile +virility +virility's +virology +virology's +virtual +virtually +virtue +virtue's +virtues +virtuosi +virtuosity +virtuosity's +virtuoso +virtuoso's +virtuosos +virtuous +virtuously +virtuousness +virtuousness's +virulence +virulence's +virulent +virulently +virus +virus's +viruses +visa +visa's +visaed +visage +visage's +visages +visaing +visas +viscera +visceral +viscid +viscosity +viscosity's +viscount +viscount's +viscountess +viscountess's +viscountesses +viscounts +viscous +viscus +viscus's +vise +vise's +vised +vises +visibility +visibility's +visible +visibly +vising +vision +vision's +visionaries +visionary +visionary's +visioned +visioning +visions +visit +visit's +visitation +visitation's +visitations +visited +visiting +visitor +visitor's +visitors +visits +visor +visor's +visors +vista +vista's +vistas +visual +visual's +visualization +visualization's +visualize +visualized +visualizes +visualizing +visually +visuals +vital +vitality +vitality's +vitalize +vitalized +vitalizes +vitalizing +vitally +vitals +vitals's +vitamin +vitamin's +vitamins +vitiate +vitiated +vitiates +vitiating +vitiation +vitiation's +viticulture +viticulture's +vitreous +vitriol +vitriol's +vitriolic +vituperate +vituperated +vituperates +vituperating +vituperation +vituperation's +vituperative +viva +viva's +vivace +vivacious +vivaciously +vivaciousness +vivaciousness's +vivacity +vivacity's +vivas +vivid +vivider +vividest +vividly +vividness +vividness's +vivified +vivifies +vivify +vivifying +viviparous +vivisection +vivisection's +vixen +vixen's +vixenish +vixens +vizier +vizier's +viziers +vizor +vizor's +vizors +vocabularies +vocabulary +vocabulary's +vocal +vocal's +vocalic +vocalist +vocalist's +vocalists +vocalization +vocalization's +vocalizations +vocalize +vocalized +vocalizes +vocalizing +vocally +vocals +vocation +vocation's +vocational +vocations +vocative +vocative's +vocatives +vociferate +vociferated +vociferates +vociferating +vociferation +vociferation's +vociferous +vociferously +vodka +vodka's +vogue +vogue's +vogues +voguish +voice +voice's +voiced +voiceless +voices +voicing +void +void's +voided +voiding +voids +voile +voile's +volatile +volatility +volatility's +volcanic +volcano +volcano's +volcanoes +volcanos +vole +vole's +voles +volition +volition's +volley +volley's +volleyball +volleyball's +volleyballs +volleyed +volleying +volleys +volt +volt's +voltage +voltage's +voltages +voltaic +voltmeter +voltmeter's +voltmeters +volts +volubility +volubility's +voluble +volubly +volume +volume's +volumes +voluminous +voluminously +voluntaries +voluntarily +voluntary +voluntary's +volunteer +volunteer's +volunteered +volunteering +volunteers +voluptuaries +voluptuary +voluptuary's +voluptuous +voluptuously +voluptuousness +voluptuousness's +vomit +vomit's +vomited +vomiting +vomits +voodoo +voodoo's +voodooed +voodooing +voodooism +voodooism's +voodoos +voracious +voraciously +voracity +voracity's +vortex +vortex's +vortexes +vortices +votaries +votary +votary's +vote +vote's +voted +voter +voter's +voters +votes +voting +votive +vouch +vouched +voucher +voucher's +vouchers +vouches +vouching +vouchsafe +vouchsafed +vouchsafes +vouchsafing +vow +vow's +vowed +vowel +vowel's +vowels +vowing +vows +voyage +voyage's +voyaged +voyager +voyager's +voyagers +voyages +voyaging +voyeur +voyeur's +voyeurism +voyeurism's +voyeuristic +voyeurs +vs +vulcanization +vulcanization's +vulcanize +vulcanized +vulcanizes +vulcanizing +vulgar +vulgarer +vulgarest +vulgarism +vulgarism's +vulgarisms +vulgarities +vulgarity +vulgarity's +vulgarization +vulgarization's +vulgarize +vulgarized +vulgarizes +vulgarizing +vulgarly +vulnerabilities +vulnerability +vulnerability's +vulnerable +vulnerably +vulture +vulture's +vultures +vulva +vulva's +vulvae +vulvas +vying +w +wackier +wackiest +wackiness +wackiness's +wacko +wacko's +wackos +wacky +wad +wad's +wadded +wadding +wadding's +waddle +waddle's +waddled +waddles +waddling +wade +wade's +waded +wader +wader's +waders +wades +wadi +wadi's +wading +wadis +wads +wafer +wafer's +wafers +waffle +waffle's +waffled +waffles +waffling +waft +waft's +wafted +wafting +wafts +wag +wag's +wage +wage's +waged +wager +wager's +wagered +wagering +wagers +wages +wagged +wagging +waggish +waggle +waggle's +waggled +waggles +waggling +waging +wagon +wagon's +wagoner +wagoner's +wagoners +wagons +wags +waif +waif's +waifs +wail +wail's +wailed +wailing +wails +wainscot +wainscot's +wainscoted +wainscoting +wainscoting's +wainscotings +wainscots +wainscotted +wainscotting +wainscotting's +wainscottings +waist +waist's +waistband +waistband's +waistbands +waistcoat +waistcoat's +waistcoats +waistline +waistline's +waistlines +waists +wait +wait's +waited +waiter +waiter's +waiters +waiting +waitress +waitress's +waitresses +waits +waive +waived +waiver +waiver's +waivers +waives +waiving +wake +wake's +waked +wakeful +wakefulness +wakefulness's +waken +wakened +wakening +wakens +wakes +waking +wale +wale's +waled +wales +waling +walk +walk's +walked +walker +walker's +walkers +walking +walkout +walkout's +walkouts +walks +walkway +walkway's +walkways +wall +wall's +wallabies +wallaby +wallaby's +wallboard +wallboard's +walled +wallet +wallet's +wallets +walleye +walleye's +walleyed +walleyes +wallflower +wallflower's +wallflowers +walling +wallop +wallop's +walloped +walloping +walloping's +wallopings +wallops +wallow +wallow's +wallowed +wallowing +wallows +wallpaper +wallpaper's +wallpapered +wallpapering +wallpapers +walls +walnut +walnut's +walnuts +walrus +walrus's +walruses +waltz +waltz's +waltzed +waltzes +waltzing +wampum +wampum's +wan +wand +wand's +wander +wandered +wanderer +wanderer's +wanderers +wandering +wanderlust +wanderlust's +wanderlusts +wanders +wands +wane +wane's +waned +wanes +wangle +wangle's +wangled +wangles +wangling +waning +wanly +wanna +wannabe +wannabe's +wannabes +wanner +wannest +want +want's +wanted +wanting +wanton +wanton's +wantoned +wantoning +wantonly +wantonness +wantonness's +wantons +wants +wapiti +wapiti's +wapitis +war +war's +warble +warble's +warbled +warbler +warbler's +warblers +warbles +warbling +ward +ward's +warded +warden +warden's +wardens +warder +warder's +warders +warding +wardrobe +wardrobe's +wardrobes +wardroom +wardroom's +wardrooms +wards +ware +ware's +warehouse +warehouse's +warehoused +warehouses +warehousing +wares +warfare +warfare's +warhead +warhead's +warheads +warhorse +warhorse's +warhorses +warier +wariest +warily +wariness +wariness's +warlike +warlock +warlock's +warlocks +warlord +warlord's +warlords +warm +warmed +warmer +warmer's +warmers +warmest +warmhearted +warming +warmly +warmonger +warmonger's +warmongering +warmongering's +warmongers +warms +warmth +warmth's +warn +warned +warning +warning's +warnings +warns +warp +warp's +warpath +warpath's +warpaths +warped +warping +warps +warrant +warrant's +warranted +warrantied +warranties +warranting +warrants +warranty +warranty's +warrantying +warred +warren +warren's +warrens +warring +warrior +warrior's +warriors +wars +warship +warship's +warships +wart +wart's +warthog +warthog's +warthogs +wartier +wartiest +wartime +wartime's +warts +warty +wary +was +wash +wash's +washable +washable's +washables +washbasin +washbasin's +washbasins +washboard +washboard's +washboards +washbowl +washbowl's +washbowls +washcloth +washcloth's +washcloths +washed +washer +washer's +washers +washerwoman +washerwoman's +washerwomen +washes +washing +washing's +washout +washout's +washouts +washroom +washroom's +washrooms +washstand +washstand's +washstands +washtub +washtub's +washtubs +wasn't +wasp +wasp's +waspish +wasps +wassail +wassail's +wassailed +wassailing +wassails +wastage +wastage's +waste +waste's +wastebasket +wastebasket's +wastebaskets +wasted +wasteful +wastefully +wastefulness +wastefulness's +wasteland +wasteland's +wastelands +wastepaper +wastepaper's +waster +waster's +wasters +wastes +wasting +wastrel +wastrel's +wastrels +watch +watch's +watchband +watchband's +watchbands +watchdog +watchdog's +watchdogs +watched +watcher +watcher's +watchers +watches +watchful +watchfully +watchfulness +watchfulness's +watching +watchmaker +watchmaker's +watchmakers +watchman +watchman's +watchmen +watchtower +watchtower's +watchtowers +watchword +watchword's +watchwords +water +water's +waterbed +waterbed's +waterbeds +watercolor +watercolor's +watercolors +watercourse +watercourse's +watercourses +watercraft +watercraft's +watercress +watercress's +watered +waterfall +waterfall's +waterfalls +waterfowl +waterfowl's +waterfowls +waterfront +waterfront's +waterfronts +waterier +wateriest +watering +waterline +waterline's +waterlines +waterlogged +watermark +watermark's +watermarked +watermarking +watermarks +watermelon +watermelon's +watermelons +waterpower +waterpower's +waterproof +waterproof's +waterproofed +waterproofing +waterproofing's +waterproofs +waters +waters's +watershed +watershed's +watersheds +waterside +waterside's +watersides +waterspout +waterspout's +waterspouts +watertight +waterway +waterway's +waterways +waterworks +waterworks's +watery +watt +watt's +wattage +wattage's +wattle +wattle's +wattled +wattles +wattling +watts +wave +wave's +waved +waveform +wavelength +wavelength's +wavelengths +wavelet +wavelet's +wavelets +waver +waver's +wavered +wavering +wavers +waves +wavier +waviest +waviness +waviness's +waving +wavy +wax +wax's +waxed +waxen +waxes +waxier +waxiest +waxiness +waxiness's +waxing +waxwing +waxwing's +waxwings +waxwork +waxwork's +waxworks +waxy +way +way's +wayfarer +wayfarer's +wayfarers +wayfaring +wayfaring's +wayfarings +waylaid +waylay +waylaying +waylays +ways +wayside +wayside's +waysides +wayward +waywardly +waywardness +waywardness's +we +we'd +we'll +we're +we've +weak +weaken +weakened +weakening +weakens +weaker +weakest +weakfish +weakfish's +weakfishes +weakling +weakling's +weaklings +weakly +weakness +weakness's +weaknesses +weal +weal's +weals +wealth +wealth's +wealthier +wealthiest +wealthiness +wealthiness's +wealthy +wean +weaned +weaning +weans +weapon +weapon's +weaponless +weaponry +weaponry's +weapons +wear +wear's +wearable +wearer +wearer's +wearers +wearied +wearier +wearies +weariest +wearily +weariness +weariness's +wearing +wearisome +wears +weary +wearying +weasel +weasel's +weaseled +weaseling +weasels +weather +weather's +weathercock +weathercock's +weathercocks +weathered +weathering +weathering's +weatherize +weatherized +weatherizes +weatherizing +weatherman +weatherman's +weathermen +weatherproof +weatherproofed +weatherproofing +weatherproofs +weathers +weave +weave's +weaved +weaver +weaver's +weavers +weaves +weaving +web +web's +webbed +webbing +webbing's +webmaster +webmaster's +webmasters +webmistress +webmistress's +webmistresses +webs +website +website's +websites +wed +wedded +wedder +wedding +wedding's +weddings +wedge +wedge's +wedged +wedges +wedging +wedlock +wedlock's +weds +wee +wee's +weed +weed's +weeded +weeder +weeder's +weeders +weedier +weediest +weeding +weeds +weedy +weeing +week +week's +weekday +weekday's +weekdays +weekend +weekend's +weekended +weekending +weekends +weeklies +weekly +weekly's +weeknight +weeknight's +weeknights +weeks +weep +weep's +weeper +weeper's +weepers +weepier +weepies +weepiest +weeping +weepings +weeps +weepy +weepy's +weer +wees +weest +weevil +weevil's +weevils +weft +weft's +wefts +weigh +weigh's +weighed +weighing +weighs +weight +weight's +weighted +weightier +weightiest +weightiness +weightiness's +weighting +weightless +weightlessness +weightlessness's +weightlifter +weightlifter's +weightlifters +weightlifting +weightlifting's +weights +weighty +weir +weir's +weird +weirder +weirdest +weirdly +weirdness +weirdness's +weirdo +weirdo's +weirdos +weirs +welch +welched +welches +welching +welcome +welcome's +welcomed +welcomes +welcoming +weld +weld's +welded +welder +welder's +welders +welding +welds +welfare +welfare's +welkin +welkin's +well +well's +welled +welling +wellington +wells +wellspring +wellspring's +wellsprings +welsh +welshed +welshes +welshing +welt +welt's +welted +welter +welter's +weltered +weltering +welters +welterweight +welterweight's +welterweights +welting +welts +wen +wen's +wench +wench's +wenches +wend +wended +wending +wends +wens +went +wept +were +weren't +werewolf +werewolf's +werewolves +west +west's +westbound +westerlies +westerly +westerly's +western +western's +westerner +westerner's +westerners +westernize +westernized +westernizes +westernizing +westernmost +westerns +westward +westwards +wet +wet's +wetback +wetback's +wetbacks +wetland +wetland's +wetlands +wetly +wetness +wetness's +wets +wetted +wetter +wettest +wetting +whack +whack's +whacked +whackier +whackiest +whacking +whacks +whacky +whale +whale's +whalebone +whalebone's +whaled +whaler +whaler's +whalers +whales +whaling +whaling's +wham +wham's +whammed +whammies +whamming +whammy +whammy's +whams +wharf +wharf's +wharfs +wharves +what +what's +whatchamacallit +whatchamacallit's +whatchamacallits +whatever +whatnot +whatnot's +whats +whatsoever +wheal +wheal's +wheals +wheat +wheat's +wheaten +wheedle +wheedled +wheedles +wheedling +wheel +wheel's +wheelbarrow +wheelbarrow's +wheelbarrows +wheelbase +wheelbase's +wheelbases +wheelchair +wheelchair's +wheelchairs +wheeled +wheeler +wheeling +wheels +wheelwright +wheelwright's +wheelwrights +wheeze +wheeze's +wheezed +wheezes +wheezier +wheeziest +wheezing +wheezy +whelk +whelk's +whelked +whelks +whelp +whelp's +whelped +whelping +whelps +when +when's +whence +whenever +whens +where +where's +whereabouts +whereabouts's +whereas +whereat +whereby +wherefore +wherefore's +wherefores +wherein +whereof +whereon +wheres +wheresoever +whereupon +wherever +wherewithal +wherewithal's +whet +whether +whets +whetstone +whetstone's +whetstones +whetted +whetting +whew +whey +whey's +which +whichever +whiff +whiff's +whiffed +whiffing +whiffs +while +while's +whiled +whiles +whiling +whilst +whim +whim's +whimper +whimper's +whimpered +whimpering +whimpers +whims +whimsey +whimsey's +whimseys +whimsical +whimsicality +whimsicality's +whimsically +whimsies +whimsy +whimsy's +whine +whine's +whined +whiner +whiner's +whiners +whines +whinier +whiniest +whining +whinnied +whinnies +whinny +whinny's +whinnying +whiny +whip +whip's +whipcord +whipcord's +whiplash +whiplash's +whiplashes +whipped +whippersnapper +whippersnapper's +whippersnappers +whippet +whippet's +whippets +whipping +whipping's +whippings +whippoorwill +whippoorwill's +whippoorwills +whips +whir +whir's +whirl +whirl's +whirled +whirligig +whirligig's +whirligigs +whirling +whirlpool +whirlpool's +whirlpools +whirls +whirlwind +whirlwind's +whirlwinds +whirr +whirr's +whirred +whirring +whirrs +whirs +whisk +whisk's +whisked +whisker +whisker's +whiskered +whiskers +whiskey +whiskey's +whiskeys +whiskies +whisking +whisks +whisky +whisky's +whiskys +whisper +whisper's +whispered +whispering +whispers +whist +whist's +whistle +whistle's +whistled +whistler +whistler's +whistlers +whistles +whistling +whit +whit's +white +white's +whitecap +whitecap's +whitecaps +whitefish +whitefish's +whitefishes +whiten +whitened +whitener +whitener's +whiteners +whiteness +whiteness's +whitening +whitens +whiter +whites +whitest +whitewall +whitewall's +whitewalls +whitewash +whitewash's +whitewashed +whitewashes +whitewashing +whither +whiting +whiting's +whitings +whitish +whits +whittle +whittled +whittler +whittler's +whittlers +whittles +whittling +whiz +whiz's +whizz +whizz's +whizzed +whizzes +whizzing +who +who'd +who'll +who're +who's +who've +whoa +whodunit +whodunit's +whodunits +whodunnit +whodunnit's +whodunnits +whodunnits's +whoever +whole +whole's +wholehearted +wholeheartedly +wholeness +wholeness's +wholes +wholesale +wholesale's +wholesaled +wholesaler +wholesaler's +wholesalers +wholesales +wholesaling +wholesome +wholesomeness +wholesomeness's +wholly +whom +whomever +whomsoever +whoop +whoop's +whooped +whoopee +whoopees +whooping +whoops +whoosh +whoosh's +whooshed +whooshes +whooshing +whopper +whopper's +whoppers +whopping +whore +whore's +whorehouse +whorehouse's +whorehouses +whores +whorl +whorl's +whorled +whorls +whose +whosoever +why +why's +whys +wick +wick's +wicked +wickeder +wickedest +wickedly +wickedness +wickedness's +wicker +wicker's +wickers +wickerwork +wickerwork's +wicket +wicket's +wickets +wicks +wide +widely +widen +widened +wideness +wideness's +widening +widens +wider +widespread +widest +widgeon +widgeon's +widgeons +widow +widow's +widowed +widower +widower's +widowers +widowhood +widowhood's +widowing +widows +width +width's +widths +wield +wielded +wielding +wields +wiener +wiener's +wieners +wife +wife's +wifelier +wifeliest +wifely +wig +wig's +wigeon +wigeon's +wigeons +wigged +wigging +wiggle +wiggle's +wiggled +wiggler +wiggler's +wigglers +wiggles +wigglier +wiggliest +wiggling +wiggly +wight +wight's +wights +wigs +wigwag +wigwag's +wigwagged +wigwagging +wigwags +wigwam +wigwam's +wigwams +wiki +wiki's +wikis +wild +wild's +wildcat +wildcat's +wildcats +wildcatted +wildcatting +wildebeest +wildebeest's +wildebeests +wilder +wilderness +wilderness's +wildernesses +wildest +wildfire +wildfire's +wildfires +wildflower +wildflower's +wildflowers +wildfowl +wildfowl's +wildfowls +wildlife +wildlife's +wildly +wildness +wildness's +wilds +wile +wile's +wiled +wiles +wilful +wilfully +wilfulness +wilfulness's +wilier +wiliest +wiliness +wiliness's +wiling +will +will's +willed +willful +willfully +willfulness +willfulness's +willies +willies's +willing +willingly +willingness +willingness's +willow +willow's +willowier +willowiest +willows +willowy +willpower +willpower's +wills +wilt +wilt's +wilted +wilting +wilts +wily +wimp +wimp's +wimpier +wimpiest +wimple +wimple's +wimpled +wimples +wimpling +wimps +wimpy +win +win's +wince +wince's +winced +winces +winch +winch's +winched +winches +winching +wincing +wind +wind's +windbag +windbag's +windbags +windbreak +windbreak's +windbreaker +windbreaker's +windbreakers +windbreaks +windburn +windburn's +winded +windfall +windfall's +windfalls +windier +windiest +windiness +windiness's +winding +winding's +windjammer +windjammer's +windjammers +windlass +windlass's +windlasses +windmill +windmill's +windmilled +windmilling +windmills +window +window's +windowed +windowing +windowpane +windowpane's +windowpanes +windows +windowsill +windowsill's +windowsills +windpipe +windpipe's +windpipes +winds +windscreen +windscreen's +windscreens +windshield +windshield's +windshields +windsock +windsock's +windsocks +windstorm +windstorm's +windstorms +windsurf +windsurfed +windsurfing +windsurfing's +windsurfs +windswept +windup +windup's +windups +windward +windward's +windy +wine +wine's +wined +wineglass +wineglass's +wineglasses +wineries +winery +winery's +wines +wing +wing's +winged +winger +wingers +winging +wingless +wings +wingspan +wingspan's +wingspans +wingspread +wingspread's +wingspreads +wingtip +wingtip's +wingtips +wining +wink +wink's +winked +winking +winks +winner +winner's +winners +winning +winning's +winnings +winnow +winnowed +winnowing +winnows +wino +wino's +winos +wins +winsome +winsomely +winsomer +winsomest +winter +winter's +wintered +wintergreen +wintergreen's +winterier +winteriest +wintering +winterize +winterized +winterizes +winterizing +winters +wintertime +wintertime's +wintery +wintrier +wintriest +wintry +wipe +wipe's +wiped +wiper +wiper's +wipers +wipes +wiping +wire +wire's +wired +wireless +wireless's +wirelesses +wires +wiretap +wiretap's +wiretapped +wiretapping +wiretaps +wirier +wiriest +wiriness +wiriness's +wiring +wiring's +wiry +wisdom +wisdom's +wise +wise's +wiseacre +wiseacre's +wiseacres +wisecrack +wisecrack's +wisecracked +wisecracking +wisecracks +wisely +wiser +wises +wisest +wish +wish's +wishbone +wishbone's +wishbones +wished +wisher +wisher's +wishers +wishes +wishful +wishfully +wishing +wisp +wisp's +wispier +wispiest +wisps +wispy +wist +wistaria +wistaria's +wistarias +wisteria +wisteria's +wisterias +wistful +wistfully +wistfulness +wistfulness's +wit +wit's +witch +witch's +witchcraft +witchcraft's +witched +witchery +witchery's +witches +witching +with +withal +withdraw +withdrawal +withdrawal's +withdrawals +withdrawing +withdrawn +withdraws +withdrew +wither +withered +withering +withers +withers's +withheld +withhold +withholding +withholding's +withholds +within +within's +without +withstand +withstanding +withstands +withstood +witless +witlessly +witness +witness's +witnessed +witnesses +witnessing +wits +wits's +witticism +witticism's +witticisms +wittier +wittiest +wittily +wittiness +wittiness's +witting +wittingly +witty +wive +wives +wiz +wiz's +wizard +wizard's +wizardry +wizardry's +wizards +wizened +wizes +wizzes +wobble +wobble's +wobbled +wobbles +wobblier +wobbliest +wobbling +wobbly +woe +woe's +woebegone +woeful +woefuller +woefullest +woefully +woes +wok +wok's +woke +woken +woks +wolf +wolf's +wolfed +wolfhound +wolfhound's +wolfhounds +wolfing +wolfish +wolfram +wolfram's +wolfs +wolverine +wolverine's +wolverines +wolves +woman +woman's +womanhood +womanhood's +womanish +womanize +womanized +womanizer +womanizer's +womanizers +womanizes +womanizing +womankind +womankind's +womanlier +womanliest +womanlike +womanlike's +womanliness +womanliness's +womanly +womb +womb's +wombat +wombat's +wombats +wombs +women +womenfolk +womenfolk's +womenfolks +womenfolks's +won +won's +won't +wonder +wonder's +wondered +wonderful +wonderfully +wondering +wonderland +wonderland's +wonderlands +wonderment +wonderment's +wonders +wondrous +wondrously +wont +wont's +wonted +woo +wood +wood's +woodbine +woodbine's +woodcarving +woodcarving's +woodcarvings +woodchuck +woodchuck's +woodchucks +woodcock +woodcock's +woodcocks +woodcraft +woodcraft's +woodcut +woodcut's +woodcuts +woodcutter +woodcutter's +woodcutters +woodcutting +woodcutting's +wooded +wooden +woodener +woodenest +woodenly +woodenness +woodenness's +woodier +woodies +woodiest +woodiness +woodiness's +wooding +woodland +woodland's +woodlands +woodman +woodman's +woodmen +woodpecker +woodpecker's +woodpeckers +woodpile +woodpile's +woodpiles +woods +woods's +woodshed +woodshed's +woodsheds +woodsier +woodsiest +woodsman +woodsman's +woodsmen +woodsy +woodwind +woodwind's +woodwinds +woodwork +woodwork's +woodworking +woodworking's +woodworm +woody +woody's +wooed +wooer +wooer's +wooers +woof +woof's +woofed +woofer +woofer's +woofers +woofing +woofs +wooing +wool +wool's +woolen +woolen's +woolens +woolgathering +woolgathering's +woolie +woolie's +woolier +woolies +wooliest +woollier +woollies +woolliest +woolliness +woolliness's +woolly +woolly's +wooly +wooly's +woos +woozier +wooziest +wooziness +wooziness's +woozy +word +word's +worded +wordier +wordiest +wordiness +wordiness's +wording +wording's +wordings +wordplay +wordplay's +words +wordy +wore +work +work's +workable +workaday +workaholic +workaholic's +workaholics +workbench +workbench's +workbenches +workbook +workbook's +workbooks +workday +workday's +workdays +worked +worker +worker's +workers +workfare +workfare's +workforce +workforce's +workhorse +workhorse's +workhorses +workhouse +workhouse's +workhouses +working +working's +workingman +workingman's +workingmen +workings +workings's +workload +workload's +workloads +workman +workman's +workmanlike +workmanship +workmanship's +workmen +workout +workout's +workouts +workplace +workplace's +workplaces +works +works's +worksheet +worksheet's +worksheets +workshop +workshop's +workshops +workstation +workstation's +workstations +workweek +workweek's +workweeks +world +world's +worldlier +worldliest +worldliness +worldliness's +worldly +worlds +worldwide +worm +worm's +wormed +wormhole +wormhole's +wormholes +wormier +wormiest +worming +worms +wormwood +wormwood's +wormy +worn +worried +worrier +worrier's +worriers +worries +worrisome +worry +worry's +worrying +worryings +worrywart +worrywart's +worrywarts +worse +worse's +worsen +worsened +worsening +worsens +worship +worship's +worshiped +worshiper +worshiper's +worshipers +worshipful +worshiping +worshipped +worshipper +worshipper's +worshippers +worshipping +worships +worst +worst's +worsted +worsted's +worsting +worsts +worth +worth's +worthier +worthies +worthiest +worthily +worthiness +worthiness's +worthless +worthlessness +worthlessness's +worthwhile +worthy +worthy's +wot +would +would've +wouldn't +woulds +wound +wound's +wounded +wounder +wounding +wounds +wove +woven +wow +wow's +wowed +wowing +wows +wrack +wrack's +wraith +wraith's +wraiths +wrangle +wrangle's +wrangled +wrangler +wrangler's +wranglers +wrangles +wrangling +wrap +wrap's +wraparound +wraparound's +wraparounds +wrapped +wrapper +wrapper's +wrappers +wrapping +wrapping's +wrappings +wraps +wrapt +wrath +wrath's +wrathful +wrathfully +wreak +wreaked +wreaking +wreaks +wreath +wreath's +wreathe +wreathed +wreathes +wreathing +wreaths +wreck +wreck's +wreckage +wreckage's +wrecked +wrecker +wrecker's +wreckers +wrecking +wrecks +wren +wren's +wrench +wrench's +wrenched +wrenches +wrenching +wrens +wrest +wrest's +wrested +wresting +wrestle +wrestle's +wrestled +wrestler +wrestler's +wrestlers +wrestles +wrestling +wrestling's +wrests +wretch +wretch's +wretched +wretcheder +wretchedest +wretchedly +wretchedness +wretchedness's +wretches +wrier +wriest +wriggle +wriggle's +wriggled +wriggler +wriggler's +wrigglers +wriggles +wrigglier +wriggliest +wriggling +wriggly +wright +wring +wring's +wringer +wringer's +wringers +wringing +wrings +wrinkle +wrinkle's +wrinkled +wrinkles +wrinklier +wrinklies +wrinkliest +wrinkling +wrinkly +wrinkly's +wrist +wrist's +wristband +wristband's +wristbands +wrists +wristwatch +wristwatch's +wristwatches +writ +writ's +writable +write +writer +writer's +writers +writes +writhe +writhe's +writhed +writhes +writhing +writing +writing's +writings +writs +written +wrong +wrong's +wrongdoer +wrongdoer's +wrongdoers +wrongdoing +wrongdoing's +wrongdoings +wronged +wronger +wrongest +wrongful +wrongfully +wrongfulness +wrongfulness's +wrongheaded +wrongheadedly +wrongheadedness +wrongheadedness's +wronging +wrongly +wrongness +wrongness's +wrongs +wrote +wroth +wrought +wrung +wry +wryer +wryest +wryly +wryness +wryness's +wuss +wuss's +wusses +x +xenon +xenon's +xenophobia +xenophobia's +xenophobic +xerographic +xerography +xerography's +xylem +xylem's +xylophone +xylophone's +xylophones +xylophonist +xylophonist's +xylophonists +y +y'all +yacht +yacht's +yachted +yachting +yachting's +yachts +yachtsman +yachtsman's +yachtsmen +yack +yack's +yacked +yacking +yacks +yahoo +yahoo's +yahoos +yak +yak's +yakked +yakking +yaks +yam +yam's +yammer +yammer's +yammered +yammering +yammers +yams +yank +yank's +yanked +yanking +yanks +yap +yap's +yapped +yapping +yaps +yard +yard's +yardage +yardage's +yardages +yardarm +yardarm's +yardarms +yards +yardstick +yardstick's +yardsticks +yarmulke +yarmulke's +yarmulkes +yarn +yarn's +yarns +yaw +yaw's +yawed +yawing +yawl +yawl's +yawls +yawn +yawn's +yawned +yawning +yawns +yaws +yaws's +ye +yea +yea's +yeah +yeah's +yeahs +year +year's +yearbook +yearbook's +yearbooks +yearlies +yearling +yearling's +yearlings +yearly +yearly's +yearn +yearned +yearning +yearning's +yearnings +yearns +years +yeas +yeast +yeast's +yeastier +yeastiest +yeasts +yeasty +yell +yell's +yelled +yelling +yellow +yellow's +yellowed +yellower +yellowest +yellowing +yellowish +yellows +yells +yelp +yelp's +yelped +yelping +yelps +yen +yen's +yens +yeoman +yeoman's +yeomen +yep +yep's +yeps +yes +yes's +yeses +yeshiva +yeshiva's +yeshivah +yeshivah's +yeshivahs +yeshivas +yeshivot +yeshivoth +yessed +yessing +yest +yesterday +yesterday's +yesterdays +yesteryear +yesteryear's +yet +yeti +yew +yew's +yews +yield +yield's +yielded +yielding +yieldings +yields +yip +yip's +yipped +yippee +yipping +yips +yo +yock +yock's +yocks +yodel +yodel's +yodeled +yodeler +yodeler's +yodelers +yodeling +yodelled +yodeller +yodeller's +yodellers +yodelling +yodels +yoga +yoga's +yoghourt +yoghourt's +yoghourts +yoghurt +yoghurt's +yoghurts +yogi +yogi's +yogin +yogin's +yogins +yogis +yogurt +yogurt's +yogurts +yoke +yoke's +yoked +yokel +yokel's +yokels +yokes +yoking +yolk +yolk's +yolks +yon +yonder +yore +yore's +you +you'd +you'll +you're +you's +you've +young +young's +younger +youngest +youngish +youngster +youngster's +youngsters +your +yours +yourself +yourselves +yous +youth +youth's +youthful +youthfully +youthfulness +youthfulness's +youths +yowl +yowl's +yowled +yowling +yowls +yttrium +yttrium's +yucca +yucca's +yuccas +yuck +yuck's +yucked +yuckier +yuckiest +yucking +yucks +yucky +yuk +yuk's +yukked +yukking +yuks +yule +yule's +yuletide +yuletide's +yum +yummier +yummiest +yummy +yup +yup's +yuppie +yuppie's +yuppies +yuppy +yuppy's +yups +z +zanier +zanies +zaniest +zaniness +zaniness's +zany +zany's +zap +zap's +zapped +zapping +zaps +zeal +zeal's +zealot +zealot's +zealots +zealous +zealously +zealousness +zealousness's +zebra +zebra's +zebras +zebu +zebu's +zebus +zed +zed's +zeds +zenith +zenith's +zeniths +zephyr +zephyr's +zephyrs +zeppelin +zeppelin's +zeppelins +zero +zero's +zeroed +zeroes +zeroing +zeros +zest +zest's +zestful +zestfully +zests +zeta +zigzag +zigzag's +zigzagged +zigzagging +zigzags +zilch +zilch's +zillion +zillion's +zillions +zinc +zinc's +zinced +zincing +zincked +zincking +zincs +zing +zing's +zinged +zinger +zinger's +zingers +zinging +zings +zinnia +zinnia's +zinnias +zip +zip's +zipped +zipper +zipper's +zippered +zippering +zippers +zippier +zippiest +zipping +zippy +zips +zircon +zircon's +zirconium +zirconium's +zircons +zit +zit's +zither +zither's +zithers +zits +zodiac +zodiac's +zodiacal +zodiacs +zombi +zombi's +zombie +zombie's +zombies +zombis +zonal +zone +zone's +zoned +zones +zoning +zonked +zoo +zoo's +zoological +zoologist +zoologist's +zoologists +zoology +zoology's +zoom +zoom's +zoomed +zooming +zooms +zoos +zucchini +zucchini's +zucchinis +zwieback +zwieback's +zygote +zygote's +zygotes +Ångström +éclair +éclair's +éclairs +éclat +éclat's +élan +élan's +émigré +émigré's +émigrés +épée +épée's +épées +étude +étude's +études \ No newline at end of file diff --git a/docs/img/APL_Citizens.png b/docs/img/APL_Citizens.png new file mode 100644 index 0000000000000000000000000000000000000000..fa3c0bfe2578a9e39a2d8547aeffe2760f547456 GIT binary patch literal 14732 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 \ No newline at end of file diff --git a/docs/index.md b/docs/index.md index aabdef0..ed0f714 100644 --- a/docs/index.md +++ b/docs/index.md @@ -1,25 +1,17 @@ -# APL Course -A self-study introduction to Dyalog APL with exercises. -This course consists of a series of short instructional notes interleaved with problem sets. The first few sessions are accompanied by video tutorials. - -## Status -This site is a work in progress. Currently we are transferring content from [APL Workshop](https://rikedyp.uk/APLWorkshop) while reviewing and updating it. +# APL Course - Custom Spring 2021 +Instructional notes and activities to learn Dyalog APL. !!! Note "Rendering of mathematical notation" There is a known issue with the MathJax renderer. - If you see some text which looks like + If you see some text which looks like: `\(\sum_{n=1}^N n\)` then try refreshing the page. It should look like: mathjax example rendering -## Getting Started -If you're just starting out, you can use the [TryAPL](https://tryapl.org) online interpreter. Put TryAPL on one half of your screen, and this site on the other half. - -If you need help typing APL glyphs (e.g. `×⌿⍳`) then see [the APL Wiki](https://aplwiki.com/wiki/Typing_glyphs). - -## Audience -This course assumes high-school / secondary level mathematics knowledge, and some familiarity with basic programming terminology (e.g. *function*, *variable*, *recursion*). It is not currently intended as a general introduction to programming, but more of a fast-track to getting up and running with modern APL. It is expected that most users will learn the basics here and leave the course to further their own learning +## Version information +This course targets Dyalog version 17.1 Classic, but it is understood that learners will be accessing Dyalog version 12.1 Classic as well. Occasionally there will be version warnings like this: -## Feedback -If you have any suggestions, critcisms or praise, please [create an issue on GitHub](https://github.com/Dyalog/APLCourse/issues/new). \ No newline at end of file +!!! Warning "Version Warning" + - The function **where** `⍸⍵` is not available in version 12.1. + - The glyph/symbol `⍸` is not available in Dyalog Classic, instead it is represented by `⎕U2378`. \ No newline at end of file diff --git a/docs/javascripts/config.js b/docs/javascripts/config.js index 80e81ba..5fdd8c3 100644 --- a/docs/javascripts/config.js +++ b/docs/javascripts/config.js @@ -9,4 +9,4 @@ window.MathJax = { ignoreHtmlClass: ".*|", processHtmlClass: "arithmatex" } -}; +} diff --git a/docs/style/main.css b/docs/style/main.css index c33ca9c..95560c8 100644 --- a/docs/style/main.css +++ b/docs/style/main.css @@ -31,6 +31,7 @@ pre + pre > button, pre + hr { } pre > code { padding-bottom: 1em!important; + line-height: 1.2em; } hr + pre > button { top: -0.2em!important; diff --git a/mkdocs.yml b/mkdocs.yml index ee80c6c..5f2e3c5 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -2,9 +2,14 @@ site_name: APL Course site_description: A self-study introduction to Dyalog APL docs_dir: docs/ site_url: https://dyalog.com +extra_javascript: + - javascripts/config.js + - https://polyfill.io/v3/polyfill.min.js?features=es6 + - https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js theme: name: material favicon: 'img/favicon-32.png' + language: en logo: 'img/dyalog-white.svg' features: - navigation.instant @@ -18,10 +23,6 @@ markdown_extensions: - abbr extra_css: - style/main.css -extra_javascript: - - javascripts/config.js - - https://polyfill.io/v3/polyfill.min.js?features=es6 - - https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js nav: - About: index.md - First Steps: First-steps.md @@ -30,3 +31,19 @@ nav: - The Outer Product: Outer-product.md - Shape Reshape: Shape-Reshape.md - The Array Model: Array-model.md + - Search, Sort and Select: Selecting-from-arrays.md + - Loops and Recursion: Loops.md + - Extra Assignment: Assignment.md + - Workspace Basics: Workspaces.md + - Namespaces and Other Objects: Namespaces.md + - Getting Help: Help.md + - User-defined Functions: Ufns.md + - Operators: Operators.md + - Quad Names: Quad names.md + - Error Handling and Debugging: Errors.md + - Data IO: Data.md + - Code IO: Code.md + - External Interfaces: Interfaces.md + - Historical Quirks: Quirks.md + - Interpreter Internals: Interpreter-internals.md + - Further Reading: Reading.md diff --git a/overrides/main.html b/overrides/main.html new file mode 100644 index 0000000..b4e98c4 --- /dev/null +++ b/overrides/main.html @@ -0,0 +1,17 @@ +{% extends "base.html" %} + +{% block config %} + {{ super() }} + +{% endblock %} + +{% block htmltitle %} + Lorem ipsum dolor sit amet +{% endblock %} \ No newline at end of file From 4f7ae4134ec3d7bf77bb5c04777cad3ab505731d Mon Sep 17 00:00:00 2001 From: RikedyP Date: Tue, 16 Jun 2026 12:24:11 +0100 Subject: [PATCH 2/3] remove polyfill.io #91 --- mkdocs.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/mkdocs.yml b/mkdocs.yml index 37e85f5..4a1bb64 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -12,7 +12,6 @@ markdown_extensions: - abbr extra_javascript: - javascripts/config.js - - https://polyfill.io/v3/polyfill.min.js?features=es6 - https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js theme: name: material From e20cbabc4f8b6ce97ed7f373eb563834d1236a12 Mon Sep 17 00:00:00 2001 From: RikedyP Date: Tue, 16 Jun 2026 12:24:25 +0100 Subject: [PATCH 3/3] mkdocs privacy plugin --- mkdocs.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/mkdocs.yml b/mkdocs.yml index 4a1bb64..01c3294 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -22,6 +22,10 @@ theme: - navigation.instant extra_css: - style/main.css +plugins: + - privacy + - search + nav: - About: index.md - First Steps: First-steps.md