twitter_cldr 3.6.0 → 4.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (1258) hide show
  1. checksums.yaml +4 -4
  2. data/Gemfile +2 -1
  3. data/History.txt +7 -0
  4. data/README.md +133 -6
  5. data/Rakefile +23 -4
  6. data/lib/twitter_cldr.rb +3 -0
  7. data/lib/twitter_cldr/collation.rb +1 -2
  8. data/lib/twitter_cldr/collation/collator.rb +9 -1
  9. data/lib/twitter_cldr/collation/trie_builder.rb +2 -2
  10. data/lib/twitter_cldr/collation/trie_with_fallback.rb +2 -2
  11. data/lib/twitter_cldr/localized.rb +2 -2
  12. data/lib/twitter_cldr/localized/localized_date.rb +3 -15
  13. data/lib/twitter_cldr/localized/localized_string.rb +26 -5
  14. data/lib/twitter_cldr/normalization.rb +1 -1
  15. data/lib/twitter_cldr/resources.rb +2 -0
  16. data/lib/twitter_cldr/resources/hyphenation_importer.rb +115 -0
  17. data/lib/twitter_cldr/resources/loader.rb +17 -5
  18. data/lib/twitter_cldr/resources/locales_resources_importer.rb +3 -2
  19. data/lib/twitter_cldr/resources/properties/indic_positional_category_property_importer.rb +1 -1
  20. data/lib/twitter_cldr/resources/properties/properties_importer.rb +2 -2
  21. data/lib/twitter_cldr/resources/rbnf_test_importer.rb +15 -9
  22. data/lib/twitter_cldr/resources/transform_test_importer.rb +137 -0
  23. data/lib/twitter_cldr/segmentation/break_iterator.rb +1 -1
  24. data/lib/twitter_cldr/shared.rb +1 -0
  25. data/lib/twitter_cldr/shared/hyphenator.rb +188 -0
  26. data/lib/twitter_cldr/shared/likely_subtags.rb +18 -2
  27. data/lib/twitter_cldr/shared/locale.rb +20 -10
  28. data/lib/twitter_cldr/transforms.rb +24 -0
  29. data/lib/twitter_cldr/transforms/comment_rule.rb +30 -0
  30. data/lib/twitter_cldr/transforms/conversion_rule_set.rb +155 -0
  31. data/lib/twitter_cldr/transforms/conversions.rb +16 -0
  32. data/lib/twitter_cldr/transforms/conversions/conversion_rule.rb +131 -0
  33. data/lib/twitter_cldr/transforms/conversions/parser.rb +113 -0
  34. data/lib/twitter_cldr/transforms/conversions/side.rb +117 -0
  35. data/lib/twitter_cldr/transforms/cursor.rb +39 -0
  36. data/lib/twitter_cldr/transforms/filters.rb +16 -0
  37. data/lib/twitter_cldr/transforms/filters/filter_rule.rb +29 -0
  38. data/lib/twitter_cldr/transforms/filters/null_filter.rb +26 -0
  39. data/lib/twitter_cldr/transforms/filters/regex_filter.rb +74 -0
  40. data/lib/twitter_cldr/transforms/rule.rb +121 -0
  41. data/lib/twitter_cldr/transforms/rule_match.rb +37 -0
  42. data/lib/twitter_cldr/transforms/rule_set.rb +95 -0
  43. data/lib/twitter_cldr/transforms/tokenizer.rb +41 -0
  44. data/lib/twitter_cldr/transforms/transform_id.rb +164 -0
  45. data/lib/twitter_cldr/transforms/transformer.rb +220 -0
  46. data/lib/twitter_cldr/transforms/transforms.rb +21 -0
  47. data/lib/twitter_cldr/transforms/transforms/break_internal_transform.rb +20 -0
  48. data/lib/twitter_cldr/transforms/transforms/casing_transform.rb +76 -0
  49. data/lib/twitter_cldr/transforms/transforms/named_transform.rb +45 -0
  50. data/lib/twitter_cldr/transforms/transforms/normalization_transform.rb +57 -0
  51. data/lib/twitter_cldr/transforms/transforms/null_transform.rb +30 -0
  52. data/lib/twitter_cldr/transforms/transforms/parser.rb +129 -0
  53. data/lib/twitter_cldr/transforms/transforms/transform_pair.rb +47 -0
  54. data/lib/twitter_cldr/transforms/transforms/transform_rule.rb +92 -0
  55. data/lib/twitter_cldr/transforms/transliterator.rb +62 -0
  56. data/lib/twitter_cldr/transforms/variable_rule.rb +77 -0
  57. data/lib/twitter_cldr/utils.rb +1 -0
  58. data/lib/twitter_cldr/utils/regexp_ast.rb +1 -0
  59. data/lib/twitter_cldr/utils/regexp_sampler.rb +4 -0
  60. data/lib/twitter_cldr/utils/script_detector.rb +4 -0
  61. data/lib/twitter_cldr/{collation → utils}/trie.rb +7 -2
  62. data/lib/twitter_cldr/version.rb +1 -1
  63. data/lib/twitter_cldr/versions.rb +3 -3
  64. data/resources/collation/tries/af.dump +0 -0
  65. data/resources/collation/tries/ar.dump +0 -0
  66. data/resources/collation/tries/be.dump +0 -0
  67. data/resources/collation/tries/bg.dump +0 -0
  68. data/resources/collation/tries/bn.dump +0 -0
  69. data/resources/collation/tries/ca.dump +0 -0
  70. data/resources/collation/tries/cs.dump +0 -0
  71. data/resources/collation/tries/cy.dump +0 -0
  72. data/resources/collation/tries/da.dump +0 -0
  73. data/resources/collation/tries/de-CH.dump +0 -0
  74. data/resources/collation/tries/de.dump +0 -0
  75. data/resources/collation/tries/default.dump +0 -0
  76. data/resources/collation/tries/el.dump +0 -0
  77. data/resources/collation/tries/en-150.dump +0 -0
  78. data/resources/collation/tries/en-AU.dump +0 -0
  79. data/resources/collation/tries/en-CA.dump +0 -0
  80. data/resources/collation/tries/en-GB.dump +0 -0
  81. data/resources/collation/tries/en-IE.dump +0 -0
  82. data/resources/collation/tries/en-SG.dump +0 -0
  83. data/resources/collation/tries/en-ZA.dump +0 -0
  84. data/resources/collation/tries/en.dump +0 -0
  85. data/resources/collation/tries/es-419.dump +0 -0
  86. data/resources/collation/tries/es-CO.dump +0 -0
  87. data/resources/collation/tries/es-MX.dump +0 -0
  88. data/resources/collation/tries/es-US.dump +0 -0
  89. data/resources/collation/tries/es.dump +0 -0
  90. data/resources/collation/tries/eu.dump +0 -0
  91. data/resources/collation/tries/fa.dump +0 -0
  92. data/resources/collation/tries/fi.dump +0 -0
  93. data/resources/collation/tries/fil.dump +0 -0
  94. data/resources/collation/tries/fr-BE.dump +0 -0
  95. data/resources/collation/tries/fr-CA.dump +0 -0
  96. data/resources/collation/tries/fr-CH.dump +0 -0
  97. data/resources/collation/tries/fr.dump +0 -0
  98. data/resources/collation/tries/ga.dump +0 -0
  99. data/resources/collation/tries/gl.dump +0 -0
  100. data/resources/collation/tries/gu.dump +0 -0
  101. data/resources/collation/tries/he.dump +0 -0
  102. data/resources/collation/tries/hi.dump +0 -0
  103. data/resources/collation/tries/hr.dump +0 -0
  104. data/resources/collation/tries/hu.dump +0 -0
  105. data/resources/collation/tries/id.dump +0 -0
  106. data/resources/collation/tries/is.dump +0 -0
  107. data/resources/collation/tries/it-CH.dump +0 -0
  108. data/resources/collation/tries/it.dump +0 -0
  109. data/resources/collation/tries/ja.dump +0 -0
  110. data/resources/collation/tries/kn.dump +0 -0
  111. data/resources/collation/tries/ko.dump +0 -0
  112. data/resources/collation/tries/lv.dump +0 -0
  113. data/resources/collation/tries/mr.dump +0 -0
  114. data/resources/collation/tries/ms.dump +0 -0
  115. data/resources/collation/tries/nb.dump +0 -0
  116. data/resources/collation/tries/nl.dump +0 -0
  117. data/resources/collation/tries/pl.dump +0 -0
  118. data/resources/collation/tries/pt.dump +0 -0
  119. data/resources/collation/tries/ro.dump +0 -0
  120. data/resources/collation/tries/ru.dump +0 -0
  121. data/resources/collation/tries/sk.dump +0 -0
  122. data/resources/collation/tries/sq.dump +0 -0
  123. data/resources/collation/tries/sr.dump +0 -0
  124. data/resources/collation/tries/sv.dump +0 -0
  125. data/resources/collation/tries/ta.dump +0 -0
  126. data/resources/collation/tries/th.dump +0 -0
  127. data/resources/collation/tries/tr.dump +0 -0
  128. data/resources/collation/tries/uk.dump +0 -0
  129. data/resources/collation/tries/ur.dump +0 -0
  130. data/resources/collation/tries/vi.dump +0 -0
  131. data/resources/collation/tries/zh-Hant.dump +0 -0
  132. data/resources/collation/tries/zh.dump +0 -0
  133. data/resources/locales/af/calendars.yml +86 -44
  134. data/resources/locales/af/fields.yml +55 -26
  135. data/resources/locales/af/languages.yml +13 -4
  136. data/resources/locales/af/numbers.yml +49 -0
  137. data/resources/locales/af/territories.yml +12 -13
  138. data/resources/locales/af/units.yml +71 -6
  139. data/resources/locales/ar/calendars.yml +59 -4
  140. data/resources/locales/ar/fields.yml +276 -262
  141. data/resources/locales/ar/languages.yml +65 -41
  142. data/resources/locales/ar/lists.yml +8 -8
  143. data/resources/locales/ar/numbers.yml +135 -38
  144. data/resources/locales/ar/plurals.yml +3 -4
  145. data/resources/locales/ar/rbnf.yml +322 -0
  146. data/resources/locales/ar/territories.yml +15 -16
  147. data/resources/locales/ar/units.yml +380 -247
  148. data/resources/locales/be/calendars.yml +103 -29
  149. data/resources/locales/be/fields.yml +416 -1
  150. data/resources/locales/be/languages.yml +130 -10
  151. data/resources/locales/be/lists.yml +18 -3
  152. data/resources/locales/be/numbers.yml +200 -16
  153. data/resources/locales/be/plural_rules.yml +2 -1
  154. data/resources/locales/be/plurals.yml +9 -8
  155. data/resources/locales/be/territories.yml +23 -13
  156. data/resources/locales/be/units.yml +1212 -127
  157. data/resources/locales/bg/calendars.yml +65 -23
  158. data/resources/locales/bg/fields.yml +50 -2
  159. data/resources/locales/bg/languages.yml +13 -16
  160. data/resources/locales/bg/numbers.yml +51 -2
  161. data/resources/locales/bg/territories.yml +8 -9
  162. data/resources/locales/bg/units.yml +72 -7
  163. data/resources/locales/bn/calendars.yml +72 -23
  164. data/resources/locales/bn/fields.yml +37 -1
  165. data/resources/locales/bn/languages.yml +28 -22
  166. data/resources/locales/bn/numbers.yml +49 -0
  167. data/resources/locales/bn/plurals.yml +2 -2
  168. data/resources/locales/bn/territories.yml +6 -7
  169. data/resources/locales/bn/units.yml +108 -43
  170. data/resources/locales/ca/calendars.yml +87 -28
  171. data/resources/locales/ca/fields.yml +58 -10
  172. data/resources/locales/ca/languages.yml +61 -10
  173. data/resources/locales/ca/numbers.yml +49 -0
  174. data/resources/locales/ca/plurals.yml +2 -2
  175. data/resources/locales/ca/territories.yml +16 -17
  176. data/resources/locales/ca/units.yml +79 -12
  177. data/resources/locales/cs/calendars.yml +74 -19
  178. data/resources/locales/cs/fields.yml +48 -12
  179. data/resources/locales/cs/languages.yml +8 -3
  180. data/resources/locales/cs/numbers.yml +73 -0
  181. data/resources/locales/cs/plurals.yml +3 -3
  182. data/resources/locales/cs/territories.yml +1 -2
  183. data/resources/locales/cs/units.yml +129 -15
  184. data/resources/locales/cy/calendars.yml +47 -22
  185. data/resources/locales/cy/fields.yml +390 -52
  186. data/resources/locales/cy/languages.yml +83 -8
  187. data/resources/locales/cy/lists.yml +6 -1
  188. data/resources/locales/cy/numbers.yml +99 -2
  189. data/resources/locales/cy/territories.yml +4 -5
  190. data/resources/locales/cy/units.yml +1401 -71
  191. data/resources/locales/da/calendars.yml +67 -20
  192. data/resources/locales/da/fields.yml +59 -11
  193. data/resources/locales/da/languages.yml +10 -4
  194. data/resources/locales/da/numbers.yml +55 -6
  195. data/resources/locales/da/plurals.yml +2 -2
  196. data/resources/locales/da/rbnf.yml +353 -46
  197. data/resources/locales/da/territories.yml +8 -9
  198. data/resources/locales/da/units.yml +84 -16
  199. data/resources/locales/de-CH/calendars.yml +59 -15
  200. data/resources/locales/de-CH/fields.yml +36 -0
  201. data/resources/locales/de-CH/languages.yml +27 -23
  202. data/resources/locales/de-CH/numbers.yml +62 -13
  203. data/resources/locales/de-CH/plurals.yml +2 -2
  204. data/resources/locales/de-CH/rbnf.yml +532 -1
  205. data/resources/locales/de-CH/territories.yml +7 -8
  206. data/resources/locales/de-CH/units.yml +85 -16
  207. data/resources/locales/de/calendars.yml +59 -15
  208. data/resources/locales/de/fields.yml +36 -0
  209. data/resources/locales/de/languages.yml +27 -23
  210. data/resources/locales/de/numbers.yml +61 -12
  211. data/resources/locales/de/plurals.yml +2 -2
  212. data/resources/locales/de/territories.yml +8 -9
  213. data/resources/locales/de/units.yml +85 -16
  214. data/resources/locales/el/calendars.yml +54 -19
  215. data/resources/locales/el/fields.yml +69 -49
  216. data/resources/locales/el/languages.yml +12 -6
  217. data/resources/locales/el/lists.yml +6 -6
  218. data/resources/locales/el/numbers.yml +49 -0
  219. data/resources/locales/el/territories.yml +2 -3
  220. data/resources/locales/el/units.yml +81 -16
  221. data/resources/locales/en-150/calendars.yml +64 -26
  222. data/resources/locales/en-150/fields.yml +19 -12
  223. data/resources/locales/en-150/languages.yml +13 -8
  224. data/resources/locales/en-150/numbers.yml +49 -0
  225. data/resources/locales/en-150/plurals.yml +5 -5
  226. data/resources/locales/en-150/territories.yml +2 -3
  227. data/resources/locales/en-150/units.yml +125 -14
  228. data/resources/locales/en-AU/calendars.yml +117 -73
  229. data/resources/locales/en-AU/fields.yml +26 -19
  230. data/resources/locales/en-AU/languages.yml +13 -8
  231. data/resources/locales/en-AU/lists.yml +2 -2
  232. data/resources/locales/en-AU/numbers.yml +50 -1
  233. data/resources/locales/en-AU/plurals.yml +5 -5
  234. data/resources/locales/en-AU/territories.yml +6 -7
  235. data/resources/locales/en-AU/units.yml +171 -57
  236. data/resources/locales/en-CA/calendars.yml +58 -19
  237. data/resources/locales/en-CA/fields.yml +19 -12
  238. data/resources/locales/en-CA/languages.yml +13 -8
  239. data/resources/locales/en-CA/numbers.yml +49 -0
  240. data/resources/locales/en-CA/plurals.yml +5 -5
  241. data/resources/locales/en-CA/territories.yml +2 -3
  242. data/resources/locales/en-CA/units.yml +125 -14
  243. data/resources/locales/en-GB/calendars.yml +77 -40
  244. data/resources/locales/en-GB/fields.yml +77 -85
  245. data/resources/locales/en-GB/languages.yml +12 -7
  246. data/resources/locales/en-GB/lists.yml +1 -1
  247. data/resources/locales/en-GB/numbers.yml +49 -0
  248. data/resources/locales/en-GB/plurals.yml +5 -5
  249. data/resources/locales/en-GB/territories.yml +14 -15
  250. data/resources/locales/en-GB/units.yml +186 -75
  251. data/resources/locales/en-IE/calendars.yml +55 -17
  252. data/resources/locales/en-IE/fields.yml +19 -12
  253. data/resources/locales/en-IE/languages.yml +13 -8
  254. data/resources/locales/en-IE/numbers.yml +49 -0
  255. data/resources/locales/en-IE/plurals.yml +5 -5
  256. data/resources/locales/en-IE/territories.yml +2 -3
  257. data/resources/locales/en-IE/units.yml +126 -15
  258. data/resources/locales/en-SG/calendars.yml +52 -14
  259. data/resources/locales/en-SG/fields.yml +19 -12
  260. data/resources/locales/en-SG/languages.yml +13 -8
  261. data/resources/locales/en-SG/numbers.yml +49 -0
  262. data/resources/locales/en-SG/plurals.yml +5 -5
  263. data/resources/locales/en-SG/territories.yml +2 -3
  264. data/resources/locales/en-SG/units.yml +125 -14
  265. data/resources/locales/en-ZA/calendars.yml +54 -16
  266. data/resources/locales/en-ZA/fields.yml +19 -12
  267. data/resources/locales/en-ZA/languages.yml +13 -8
  268. data/resources/locales/en-ZA/numbers.yml +49 -0
  269. data/resources/locales/en-ZA/plurals.yml +5 -5
  270. data/resources/locales/en-ZA/territories.yml +2 -3
  271. data/resources/locales/en-ZA/units.yml +125 -14
  272. data/resources/locales/en/calendars.yml +51 -13
  273. data/resources/locales/en/fields.yml +19 -12
  274. data/resources/locales/en/languages.yml +13 -8
  275. data/resources/locales/en/numbers.yml +49 -0
  276. data/resources/locales/en/plurals.yml +5 -5
  277. data/resources/locales/en/rbnf.yml +37 -1
  278. data/resources/locales/en/territories.yml +2 -3
  279. data/resources/locales/en/units.yml +125 -14
  280. data/resources/locales/es-419/calendars.yml +159 -108
  281. data/resources/locales/es-419/fields.yml +122 -94
  282. data/resources/locales/es-419/languages.yml +22 -17
  283. data/resources/locales/es-419/lists.yml +4 -4
  284. data/resources/locales/es-419/numbers.yml +49 -0
  285. data/resources/locales/es-419/rbnf.yml +62 -1
  286. data/resources/locales/es-419/territories.yml +5 -6
  287. data/resources/locales/es-419/units.yml +193 -128
  288. data/resources/locales/es-CO/calendars.yml +128 -77
  289. data/resources/locales/es-CO/fields.yml +40 -12
  290. data/resources/locales/es-CO/languages.yml +22 -17
  291. data/resources/locales/es-CO/lists.yml +4 -4
  292. data/resources/locales/es-CO/numbers.yml +75 -26
  293. data/resources/locales/es-CO/territories.yml +5 -6
  294. data/resources/locales/es-CO/units.yml +167 -102
  295. data/resources/locales/es-MX/calendars.yml +119 -69
  296. data/resources/locales/es-MX/fields.yml +40 -12
  297. data/resources/locales/es-MX/languages.yml +26 -21
  298. data/resources/locales/es-MX/lists.yml +4 -4
  299. data/resources/locales/es-MX/numbers.yml +67 -18
  300. data/resources/locales/es-MX/territories.yml +8 -9
  301. data/resources/locales/es-MX/units.yml +160 -95
  302. data/resources/locales/es-US/calendars.yml +127 -77
  303. data/resources/locales/es-US/fields.yml +40 -12
  304. data/resources/locales/es-US/languages.yml +22 -17
  305. data/resources/locales/es-US/lists.yml +4 -4
  306. data/resources/locales/es-US/numbers.yml +73 -24
  307. data/resources/locales/es-US/territories.yml +5 -6
  308. data/resources/locales/es-US/units.yml +167 -102
  309. data/resources/locales/es/calendars.yml +124 -74
  310. data/resources/locales/es/fields.yml +40 -12
  311. data/resources/locales/es/languages.yml +22 -17
  312. data/resources/locales/es/lists.yml +4 -4
  313. data/resources/locales/es/numbers.yml +73 -24
  314. data/resources/locales/es/rbnf.yml +29 -14
  315. data/resources/locales/es/territories.yml +5 -6
  316. data/resources/locales/es/units.yml +171 -106
  317. data/resources/locales/eu/calendars.yml +18 -3
  318. data/resources/locales/eu/fields.yml +8 -0
  319. data/resources/locales/eu/languages.yml +1 -1
  320. data/resources/locales/eu/numbers.yml +49 -0
  321. data/resources/locales/eu/territories.yml +5 -6
  322. data/resources/locales/eu/units.yml +36 -6
  323. data/resources/locales/fa/calendars.yml +57 -14
  324. data/resources/locales/fa/fields.yml +64 -12
  325. data/resources/locales/fa/languages.yml +29 -17
  326. data/resources/locales/fa/numbers.yml +81 -32
  327. data/resources/locales/fa/plurals.yml +2 -2
  328. data/resources/locales/fa/territories.yml +11 -12
  329. data/resources/locales/fa/units.yml +144 -66
  330. data/resources/locales/fi/calendars.yml +55 -4
  331. data/resources/locales/fi/fields.yml +56 -4
  332. data/resources/locales/fi/languages.yml +8 -4
  333. data/resources/locales/fi/numbers.yml +49 -0
  334. data/resources/locales/fi/plurals.yml +2 -2
  335. data/resources/locales/fi/rbnf.yml +3649 -29
  336. data/resources/locales/fi/territories.yml +1 -2
  337. data/resources/locales/fi/units.yml +98 -12
  338. data/resources/locales/fil/calendars.yml +113 -60
  339. data/resources/locales/fil/fields.yml +78 -30
  340. data/resources/locales/fil/languages.yml +24 -12
  341. data/resources/locales/fil/lists.yml +4 -4
  342. data/resources/locales/fil/numbers.yml +61 -12
  343. data/resources/locales/fil/plurals.yml +4 -4
  344. data/resources/locales/fil/territories.yml +3 -4
  345. data/resources/locales/fil/units.yml +203 -138
  346. data/resources/locales/fr-BE/calendars.yml +103 -73
  347. data/resources/locales/fr-BE/fields.yml +32 -20
  348. data/resources/locales/fr-BE/languages.yml +12 -6
  349. data/resources/locales/fr-BE/numbers.yml +51 -2
  350. data/resources/locales/fr-BE/territories.yml +5 -6
  351. data/resources/locales/fr-BE/units.yml +100 -26
  352. data/resources/locales/fr-CA/calendars.yml +56 -26
  353. data/resources/locales/fr-CA/fields.yml +54 -42
  354. data/resources/locales/fr-CA/languages.yml +23 -17
  355. data/resources/locales/fr-CA/numbers.yml +54 -5
  356. data/resources/locales/fr-CA/territories.yml +4 -5
  357. data/resources/locales/fr-CA/units.yml +93 -19
  358. data/resources/locales/fr-CH/calendars.yml +103 -73
  359. data/resources/locales/fr-CH/fields.yml +32 -20
  360. data/resources/locales/fr-CH/languages.yml +12 -6
  361. data/resources/locales/fr-CH/numbers.yml +52 -3
  362. data/resources/locales/fr-CH/territories.yml +5 -6
  363. data/resources/locales/fr-CH/units.yml +100 -26
  364. data/resources/locales/fr/calendars.yml +103 -73
  365. data/resources/locales/fr/fields.yml +32 -20
  366. data/resources/locales/fr/languages.yml +12 -6
  367. data/resources/locales/fr/numbers.yml +51 -2
  368. data/resources/locales/fr/territories.yml +5 -6
  369. data/resources/locales/fr/units.yml +100 -26
  370. data/resources/locales/ga/calendars.yml +19 -4
  371. data/resources/locales/ga/fields.yml +82 -28
  372. data/resources/locales/ga/languages.yml +4 -3
  373. data/resources/locales/ga/numbers.yml +85 -0
  374. data/resources/locales/ga/plural_rules.yml +2 -1
  375. data/resources/locales/ga/plurals.yml +7 -5
  376. data/resources/locales/ga/territories.yml +0 -1
  377. data/resources/locales/ga/units.yml +140 -24
  378. data/resources/locales/gl/calendars.yml +60 -13
  379. data/resources/locales/gl/fields.yml +29 -0
  380. data/resources/locales/gl/languages.yml +42 -34
  381. data/resources/locales/gl/numbers.yml +50 -1
  382. data/resources/locales/gl/plurals.yml +2 -2
  383. data/resources/locales/gl/territories.yml +4 -5
  384. data/resources/locales/gl/units.yml +89 -24
  385. data/resources/locales/gu/calendars.yml +68 -25
  386. data/resources/locales/gu/fields.yml +55 -19
  387. data/resources/locales/gu/languages.yml +12 -7
  388. data/resources/locales/gu/lists.yml +8 -4
  389. data/resources/locales/gu/numbers.yml +97 -24
  390. data/resources/locales/gu/plurals.yml +2 -2
  391. data/resources/locales/gu/territories.yml +24 -25
  392. data/resources/locales/gu/units.yml +71 -6
  393. data/resources/locales/he/calendars.yml +42 -18
  394. data/resources/locales/he/languages.yml +9 -3
  395. data/resources/locales/he/numbers.yml +97 -24
  396. data/resources/locales/he/plurals.yml +3 -4
  397. data/resources/locales/he/rbnf.yml +4 -1
  398. data/resources/locales/he/territories.yml +7 -8
  399. data/resources/locales/he/units.yml +263 -164
  400. data/resources/locales/hi/calendars.yml +39 -3
  401. data/resources/locales/hi/fields.yml +12 -0
  402. data/resources/locales/hi/languages.yml +11 -5
  403. data/resources/locales/hi/numbers.yml +49 -0
  404. data/resources/locales/hi/plurals.yml +2 -2
  405. data/resources/locales/hi/territories.yml +0 -1
  406. data/resources/locales/hi/units.yml +75 -10
  407. data/resources/locales/hr/calendars.yml +46 -27
  408. data/resources/locales/hr/fields.yml +59 -11
  409. data/resources/locales/hr/languages.yml +8 -1
  410. data/resources/locales/hr/numbers.yml +61 -0
  411. data/resources/locales/hr/plurals.yml +4 -7
  412. data/resources/locales/hr/territories.yml +0 -1
  413. data/resources/locales/hr/units.yml +95 -13
  414. data/resources/locales/hu/calendars.yml +63 -2
  415. data/resources/locales/hu/fields.yml +48 -0
  416. data/resources/locales/hu/languages.yml +7 -1
  417. data/resources/locales/hu/numbers.yml +49 -0
  418. data/resources/locales/hu/territories.yml +3 -4
  419. data/resources/locales/hu/units.yml +73 -8
  420. data/resources/locales/id/calendars.yml +52 -2
  421. data/resources/locales/id/fields.yml +6 -6
  422. data/resources/locales/id/languages.yml +18 -21
  423. data/resources/locales/id/numbers.yml +37 -0
  424. data/resources/locales/id/rbnf.yml +4 -1
  425. data/resources/locales/id/territories.yml +2 -3
  426. data/resources/locales/id/units.yml +52 -4
  427. data/resources/locales/is/calendars.yml +53 -11
  428. data/resources/locales/is/fields.yml +61 -13
  429. data/resources/locales/is/languages.yml +10 -4
  430. data/resources/locales/is/numbers.yml +49 -0
  431. data/resources/locales/is/plurals.yml +2 -2
  432. data/resources/locales/is/territories.yml +4 -5
  433. data/resources/locales/is/units.yml +78 -12
  434. data/resources/locales/it-CH/calendars.yml +81 -31
  435. data/resources/locales/it-CH/fields.yml +22 -10
  436. data/resources/locales/it-CH/languages.yml +9 -5
  437. data/resources/locales/it-CH/lists.yml +4 -4
  438. data/resources/locales/it-CH/numbers.yml +61 -12
  439. data/resources/locales/it-CH/plurals.yml +2 -2
  440. data/resources/locales/it-CH/territories.yml +27 -28
  441. data/resources/locales/it-CH/units.yml +161 -96
  442. data/resources/locales/it/calendars.yml +67 -17
  443. data/resources/locales/it/fields.yml +22 -10
  444. data/resources/locales/it/languages.yml +9 -5
  445. data/resources/locales/it/lists.yml +4 -4
  446. data/resources/locales/it/numbers.yml +61 -12
  447. data/resources/locales/it/plurals.yml +2 -2
  448. data/resources/locales/it/rbnf.yml +3 -15
  449. data/resources/locales/it/territories.yml +27 -28
  450. data/resources/locales/it/units.yml +161 -96
  451. data/resources/locales/ja/calendars.yml +59 -2
  452. data/resources/locales/ja/fields.yml +36 -0
  453. data/resources/locales/ja/languages.yml +9 -6
  454. data/resources/locales/ja/numbers.yml +40 -3
  455. data/resources/locales/ja/territories.yml +1 -2
  456. data/resources/locales/ja/units.yml +57 -9
  457. data/resources/locales/kn/calendars.yml +56 -15
  458. data/resources/locales/kn/fields.yml +49 -1
  459. data/resources/locales/kn/languages.yml +6 -1
  460. data/resources/locales/kn/lists.yml +8 -4
  461. data/resources/locales/kn/numbers.yml +97 -24
  462. data/resources/locales/kn/plurals.yml +2 -2
  463. data/resources/locales/kn/territories.yml +0 -1
  464. data/resources/locales/kn/units.yml +83 -18
  465. data/resources/locales/ko/calendars.yml +61 -4
  466. data/resources/locales/ko/languages.yml +14 -21
  467. data/resources/locales/ko/numbers.yml +39 -2
  468. data/resources/locales/ko/territories.yml +29 -30
  469. data/resources/locales/ko/units.yml +58 -10
  470. data/resources/locales/lv/calendars.yml +58 -10
  471. data/resources/locales/lv/fields.yml +8 -8
  472. data/resources/locales/lv/languages.yml +8 -1
  473. data/resources/locales/lv/numbers.yml +62 -1
  474. data/resources/locales/lv/plurals.yml +4 -6
  475. data/resources/locales/lv/territories.yml +0 -1
  476. data/resources/locales/lv/units.yml +86 -8
  477. data/resources/locales/mr/calendars.yml +70 -11
  478. data/resources/locales/mr/fields.yml +97 -61
  479. data/resources/locales/mr/languages.yml +9 -3
  480. data/resources/locales/mr/lists.yml +8 -4
  481. data/resources/locales/mr/numbers.yml +97 -24
  482. data/resources/locales/mr/plurals.yml +2 -2
  483. data/resources/locales/mr/territories.yml +4 -5
  484. data/resources/locales/mr/units.yml +71 -6
  485. data/resources/locales/ms/calendars.yml +47 -6
  486. data/resources/locales/ms/fields.yml +48 -0
  487. data/resources/locales/ms/languages.yml +12 -4
  488. data/resources/locales/ms/numbers.yml +37 -0
  489. data/resources/locales/ms/rbnf.yml +2 -2
  490. data/resources/locales/ms/territories.yml +2 -3
  491. data/resources/locales/ms/units.yml +54 -6
  492. data/resources/locales/nb/calendars.yml +83 -38
  493. data/resources/locales/nb/fields.yml +89 -55
  494. data/resources/locales/nb/languages.yml +105 -8
  495. data/resources/locales/nb/numbers.yml +50 -1
  496. data/resources/locales/nb/rbnf.yml +762 -22
  497. data/resources/locales/nb/territories.yml +2 -3
  498. data/resources/locales/nb/units.yml +92 -19
  499. data/resources/locales/nl/calendars.yml +88 -52
  500. data/resources/locales/nl/fields.yml +62 -10
  501. data/resources/locales/nl/languages.yml +12 -9
  502. data/resources/locales/nl/lists.yml +1 -1
  503. data/resources/locales/nl/numbers.yml +50 -1
  504. data/resources/locales/nl/plurals.yml +2 -2
  505. data/resources/locales/nl/territories.yml +2 -3
  506. data/resources/locales/nl/units.yml +101 -30
  507. data/resources/locales/pl/calendars.yml +70 -31
  508. data/resources/locales/pl/fields.yml +12 -0
  509. data/resources/locales/pl/languages.yml +8 -5
  510. data/resources/locales/pl/numbers.yml +73 -0
  511. data/resources/locales/pl/plurals.yml +4 -8
  512. data/resources/locales/pl/rbnf.yml +965 -50
  513. data/resources/locales/pl/territories.yml +3 -4
  514. data/resources/locales/pl/units.yml +109 -10
  515. data/resources/locales/pt/calendars.yml +65 -23
  516. data/resources/locales/pt/fields.yml +76 -76
  517. data/resources/locales/pt/languages.yml +20 -13
  518. data/resources/locales/pt/numbers.yml +49 -0
  519. data/resources/locales/pt/plurals.yml +2 -2
  520. data/resources/locales/pt/rbnf.yml +1 -1
  521. data/resources/locales/pt/territories.yml +4 -5
  522. data/resources/locales/pt/units.yml +75 -10
  523. data/resources/locales/ro/calendars.yml +90 -50
  524. data/resources/locales/ro/fields.yml +15 -3
  525. data/resources/locales/ro/languages.yml +10 -4
  526. data/resources/locales/ro/numbers.yml +62 -1
  527. data/resources/locales/ro/plurals.yml +3 -4
  528. data/resources/locales/ro/territories.yml +4 -5
  529. data/resources/locales/ro/units.yml +100 -18
  530. data/resources/locales/ru/calendars.yml +88 -41
  531. data/resources/locales/ru/fields.yml +24 -12
  532. data/resources/locales/ru/languages.yml +13 -6
  533. data/resources/locales/ru/lists.yml +7 -7
  534. data/resources/locales/ru/numbers.yml +73 -0
  535. data/resources/locales/ru/plurals.yml +4 -8
  536. data/resources/locales/ru/rbnf.yml +3916 -8
  537. data/resources/locales/ru/territories.yml +6 -7
  538. data/resources/locales/ru/units.yml +127 -28
  539. data/resources/locales/sk/calendars.yml +97 -42
  540. data/resources/locales/sk/fields.yml +30 -18
  541. data/resources/locales/sk/languages.yml +20 -14
  542. data/resources/locales/sk/lists.yml +1 -1
  543. data/resources/locales/sk/numbers.yml +99 -26
  544. data/resources/locales/sk/plurals.yml +3 -3
  545. data/resources/locales/sk/territories.yml +1 -2
  546. data/resources/locales/sk/units.yml +114 -15
  547. data/resources/locales/sq/calendars.yml +66 -11
  548. data/resources/locales/sq/fields.yml +49 -49
  549. data/resources/locales/sq/languages.yml +48 -39
  550. data/resources/locales/sq/numbers.yml +49 -0
  551. data/resources/locales/sq/plurals.yml +2 -2
  552. data/resources/locales/sq/territories.yml +25 -25
  553. data/resources/locales/sq/units.yml +112 -47
  554. data/resources/locales/sr/calendars.yml +70 -21
  555. data/resources/locales/sr/fields.yml +26 -14
  556. data/resources/locales/sr/languages.yml +12 -6
  557. data/resources/locales/sr/numbers.yml +62 -1
  558. data/resources/locales/sr/plurals.yml +4 -7
  559. data/resources/locales/sr/territories.yml +2 -3
  560. data/resources/locales/sr/units.yml +99 -17
  561. data/resources/locales/sv/calendars.yml +110 -71
  562. data/resources/locales/sv/fields.yml +69 -21
  563. data/resources/locales/sv/languages.yml +35 -5
  564. data/resources/locales/sv/numbers.yml +51 -2
  565. data/resources/locales/sv/plurals.yml +4 -4
  566. data/resources/locales/sv/territories.yml +0 -1
  567. data/resources/locales/sv/units.yml +95 -9
  568. data/resources/locales/ta/calendars.yml +112 -47
  569. data/resources/locales/ta/fields.yml +145 -97
  570. data/resources/locales/ta/languages.yml +30 -26
  571. data/resources/locales/ta/numbers.yml +49 -0
  572. data/resources/locales/ta/territories.yml +31 -32
  573. data/resources/locales/ta/units.yml +90 -25
  574. data/resources/locales/th/calendars.yml +66 -6
  575. data/resources/locales/th/fields.yml +36 -0
  576. data/resources/locales/th/languages.yml +10 -3
  577. data/resources/locales/th/numbers.yml +37 -0
  578. data/resources/locales/th/rbnf.yml +2 -2
  579. data/resources/locales/th/territories.yml +0 -1
  580. data/resources/locales/th/units.yml +54 -6
  581. data/resources/locales/tr/calendars.yml +63 -2
  582. data/resources/locales/tr/fields.yml +28 -0
  583. data/resources/locales/tr/languages.yml +9 -4
  584. data/resources/locales/tr/numbers.yml +49 -0
  585. data/resources/locales/tr/rbnf.yml +9 -28
  586. data/resources/locales/tr/territories.yml +1 -2
  587. data/resources/locales/tr/units.yml +81 -16
  588. data/resources/locales/uk/calendars.yml +93 -61
  589. data/resources/locales/uk/fields.yml +44 -12
  590. data/resources/locales/uk/languages.yml +27 -6
  591. data/resources/locales/uk/numbers.yml +86 -13
  592. data/resources/locales/uk/plurals.yml +6 -10
  593. data/resources/locales/uk/territories.yml +3 -4
  594. data/resources/locales/uk/units.yml +122 -23
  595. data/resources/locales/ur/calendars.yml +58 -9
  596. data/resources/locales/ur/fields.yml +51 -19
  597. data/resources/locales/ur/languages.yml +23 -13
  598. data/resources/locales/ur/numbers.yml +49 -0
  599. data/resources/locales/ur/plurals.yml +2 -2
  600. data/resources/locales/ur/territories.yml +8 -9
  601. data/resources/locales/ur/units.yml +76 -11
  602. data/resources/locales/vi/calendars.yml +72 -23
  603. data/resources/locales/vi/fields.yml +65 -29
  604. data/resources/locales/vi/languages.yml +42 -3
  605. data/resources/locales/vi/numbers.yml +38 -1
  606. data/resources/locales/vi/territories.yml +7 -8
  607. data/resources/locales/vi/units.yml +58 -10
  608. data/resources/locales/zh-Hant/calendars.yml +64 -21
  609. data/resources/locales/zh-Hant/fields.yml +12 -0
  610. data/resources/locales/zh-Hant/languages.yml +13 -8
  611. data/resources/locales/zh-Hant/lists.yml +8 -8
  612. data/resources/locales/zh-Hant/numbers.yml +50 -13
  613. data/resources/locales/zh-Hant/territories.yml +11 -12
  614. data/resources/locales/zh-Hant/units.yml +204 -156
  615. data/resources/locales/zh/calendars.yml +69 -26
  616. data/resources/locales/zh/languages.yml +8 -1
  617. data/resources/locales/zh/numbers.yml +40 -3
  618. data/resources/locales/zh/territories.yml +2 -3
  619. data/resources/locales/zh/units.yml +71 -23
  620. data/resources/shared/aliases.yml +31 -0
  621. data/resources/shared/hyphenation/af-ZA.yml +3343 -0
  622. data/resources/shared/hyphenation/bg-BG.yml +5963 -0
  623. data/resources/shared/hyphenation/ca.yml +2310 -0
  624. data/resources/shared/hyphenation/cs-CZ.yml +3639 -0
  625. data/resources/shared/hyphenation/da-DK.yml +1148 -0
  626. data/resources/shared/hyphenation/de-AT.yml +11392 -0
  627. data/resources/shared/hyphenation/de-CH.yml +11392 -0
  628. data/resources/shared/hyphenation/de-DE.yml +11392 -0
  629. data/resources/shared/hyphenation/el-GR.yml +581 -0
  630. data/resources/shared/hyphenation/en-GB.yml +14064 -0
  631. data/resources/shared/hyphenation/en-US.yml +11132 -0
  632. data/resources/shared/hyphenation/es.yml +867 -0
  633. data/resources/shared/hyphenation/et-EE.yml +3694 -0
  634. data/resources/shared/hyphenation/fr.yml +2844 -0
  635. data/resources/shared/hyphenation/gl.yml +292 -0
  636. data/resources/shared/hyphenation/hr-HR.yml +1599 -0
  637. data/resources/shared/hyphenation/hu-HU.yml +96292 -0
  638. data/resources/shared/hyphenation/is.yml +7697 -0
  639. data/resources/shared/hyphenation/it-IT.yml +401 -0
  640. data/resources/shared/hyphenation/lt.yml +1549 -0
  641. data/resources/shared/hyphenation/lv-LV.yml +11902 -0
  642. data/resources/shared/hyphenation/nb-NO.yml +27144 -0
  643. data/resources/shared/hyphenation/nl-NL.yml +16259 -0
  644. data/resources/shared/hyphenation/nn-NO.yml +27144 -0
  645. data/resources/shared/hyphenation/pl-PL.yml +4826 -0
  646. data/resources/shared/hyphenation/pt-BR.yml +1249 -0
  647. data/resources/shared/hyphenation/pt-PT.yml +310 -0
  648. data/resources/shared/hyphenation/ro-RO.yml +5206 -0
  649. data/resources/shared/hyphenation/ru-RU.yml +3877 -0
  650. data/resources/shared/hyphenation/sk-SK.yml +2470 -0
  651. data/resources/shared/hyphenation/sl-SI.yml +1415 -0
  652. data/resources/shared/hyphenation/sr-Latn.yml +3414 -0
  653. data/resources/shared/hyphenation/sr.yml +3367 -0
  654. data/resources/shared/hyphenation/sv.yml +14956 -0
  655. data/resources/shared/hyphenation/te-IN.yml +75 -0
  656. data/resources/shared/hyphenation/uk-UA.yml +1656 -0
  657. data/resources/shared/hyphenation/zu-ZA.yml +133 -0
  658. data/resources/shared/language_codes_table.dump +0 -0
  659. data/resources/shared/likely_subtags.yml +61 -16
  660. data/resources/shared/numbering_systems.yml +45 -0
  661. data/resources/shared/postal_codes.yml +318 -309
  662. data/resources/shared/rbnf_root.yml +613 -273
  663. data/resources/shared/segments/segments_root.yml +4 -1
  664. data/resources/shared/territories_containment.yml +3 -3
  665. data/resources/shared/transforms/Amharic-Latin-BGN.yml +336 -0
  666. data/resources/shared/transforms/Amharic-Latin.yml +335 -0
  667. data/resources/shared/transforms/Any-Accents.yml +52 -0
  668. data/resources/shared/transforms/Any-Publishing.yml +22 -0
  669. data/resources/shared/transforms/Arabic-Latin-BGN.yml +122 -0
  670. data/resources/shared/transforms/Arabic-Latin.yml +109 -0
  671. data/resources/shared/transforms/Armenian-Latin-BGN.yml +133 -0
  672. data/resources/shared/transforms/Armenian-Latin.yml +132 -0
  673. data/resources/shared/transforms/Azerbaijani-Latin-BGN.yml +93 -0
  674. data/resources/shared/transforms/Azerbaijani-Latin.yml +92 -0
  675. data/resources/shared/transforms/Belarusian-Latin-BGN.yml +108 -0
  676. data/resources/shared/transforms/Belarusian-Latin.yml +107 -0
  677. data/resources/shared/transforms/Bengali-Devanagari.yml +13 -0
  678. data/resources/shared/transforms/Bengali-Gujarati.yml +13 -0
  679. data/resources/shared/transforms/Bengali-Gurmukhi.yml +13 -0
  680. data/resources/shared/transforms/Bengali-InterIndic.yml +100 -0
  681. data/resources/shared/transforms/Bengali-Kannada.yml +13 -0
  682. data/resources/shared/transforms/Bengali-Latin.yml +13 -0
  683. data/resources/shared/transforms/Bengali-Malayalam.yml +13 -0
  684. data/resources/shared/transforms/Bengali-Oriya.yml +13 -0
  685. data/resources/shared/transforms/Bengali-Tamil.yml +13 -0
  686. data/resources/shared/transforms/Bengali-Telugu.yml +13 -0
  687. data/resources/shared/transforms/Bulgarian-Latin-BGN.yml +99 -0
  688. data/resources/shared/transforms/Bulgarian-Latin.yml +98 -0
  689. data/resources/shared/transforms/Cyrillic-Latin.yml +128 -0
  690. data/resources/shared/transforms/Devanagari-Bengali.yml +13 -0
  691. data/resources/shared/transforms/Devanagari-Gujarati.yml +13 -0
  692. data/resources/shared/transforms/Devanagari-Gurmukhi.yml +13 -0
  693. data/resources/shared/transforms/Devanagari-InterIndic.yml +114 -0
  694. data/resources/shared/transforms/Devanagari-Kannada.yml +13 -0
  695. data/resources/shared/transforms/Devanagari-Latin.yml +13 -0
  696. data/resources/shared/transforms/Devanagari-Malayalam.yml +13 -0
  697. data/resources/shared/transforms/Devanagari-Oriya.yml +13 -0
  698. data/resources/shared/transforms/Devanagari-Tamil.yml +13 -0
  699. data/resources/shared/transforms/Devanagari-Telugu.yml +13 -0
  700. data/resources/shared/transforms/Fullwidth-Halfwidth.yml +260 -0
  701. data/resources/shared/transforms/Georgian-Latin-BGN.yml +44 -0
  702. data/resources/shared/transforms/Georgian-Latin.yml +43 -0
  703. data/resources/shared/transforms/Greek-Latin-BGN.yml +208 -0
  704. data/resources/shared/transforms/Greek-Latin-UNGEGN.yml +160 -0
  705. data/resources/shared/transforms/Greek-Latin.yml +206 -0
  706. data/resources/shared/transforms/Gujarati-Bengali.yml +13 -0
  707. data/resources/shared/transforms/Gujarati-Devanagari.yml +13 -0
  708. data/resources/shared/transforms/Gujarati-Gurmukhi.yml +13 -0
  709. data/resources/shared/transforms/Gujarati-InterIndic.yml +91 -0
  710. data/resources/shared/transforms/Gujarati-Kannada.yml +13 -0
  711. data/resources/shared/transforms/Gujarati-Latin.yml +13 -0
  712. data/resources/shared/transforms/Gujarati-Malayalam.yml +13 -0
  713. data/resources/shared/transforms/Gujarati-Oriya.yml +13 -0
  714. data/resources/shared/transforms/Gujarati-Tamil.yml +13 -0
  715. data/resources/shared/transforms/Gujarati-Telugu.yml +13 -0
  716. data/resources/shared/transforms/Gurmukhi-Bengali.yml +13 -0
  717. data/resources/shared/transforms/Gurmukhi-Devanagari.yml +13 -0
  718. data/resources/shared/transforms/Gurmukhi-Gujarati.yml +13 -0
  719. data/resources/shared/transforms/Gurmukhi-InterIndic.yml +84 -0
  720. data/resources/shared/transforms/Gurmukhi-Kannada.yml +13 -0
  721. data/resources/shared/transforms/Gurmukhi-Latin.yml +13 -0
  722. data/resources/shared/transforms/Gurmukhi-Malayalam.yml +13 -0
  723. data/resources/shared/transforms/Gurmukhi-Oriya.yml +13 -0
  724. data/resources/shared/transforms/Gurmukhi-Tamil.yml +13 -0
  725. data/resources/shared/transforms/Gurmukhi-Telugu.yml +13 -0
  726. data/resources/shared/transforms/Han-Latin-Names.yml +53 -0
  727. data/resources/shared/transforms/Han-Latin.yml +1606 -0
  728. data/resources/shared/transforms/Han-Spacedhan.yml +17 -0
  729. data/resources/shared/transforms/Hangul-Latin.yml +12 -0
  730. data/resources/shared/transforms/Hebrew-Latin-BGN.yml +62 -0
  731. data/resources/shared/transforms/Hebrew-Latin.yml +72 -0
  732. data/resources/shared/transforms/Hiragana-Katakana.yml +114 -0
  733. data/resources/shared/transforms/Hiragana-Latin.yml +15 -0
  734. data/resources/shared/transforms/IPA-XSampa.yml +176 -0
  735. data/resources/shared/transforms/InterIndic-Bengali.yml +137 -0
  736. data/resources/shared/transforms/InterIndic-Devanagari.yml +149 -0
  737. data/resources/shared/transforms/InterIndic-Gujarati.yml +137 -0
  738. data/resources/shared/transforms/InterIndic-Gurmukhi.yml +141 -0
  739. data/resources/shared/transforms/InterIndic-Kannada.yml +139 -0
  740. data/resources/shared/transforms/InterIndic-Latin.yml +461 -0
  741. data/resources/shared/transforms/InterIndic-Malayalam.yml +139 -0
  742. data/resources/shared/transforms/InterIndic-Oriya.yml +137 -0
  743. data/resources/shared/transforms/InterIndic-Tamil.yml +138 -0
  744. data/resources/shared/transforms/InterIndic-Telugu.yml +138 -0
  745. data/resources/shared/transforms/Jamo-Latin.yml +12 -0
  746. data/resources/shared/transforms/JapaneseKana-Latin.yml +309 -0
  747. data/resources/shared/transforms/Kannada-Bengali.yml +13 -0
  748. data/resources/shared/transforms/Kannada-Devanagari.yml +13 -0
  749. data/resources/shared/transforms/Kannada-Gujarati.yml +13 -0
  750. data/resources/shared/transforms/Kannada-Gurmukhi.yml +13 -0
  751. data/resources/shared/transforms/Kannada-InterIndic.yml +91 -0
  752. data/resources/shared/transforms/Kannada-Latin.yml +13 -0
  753. data/resources/shared/transforms/Kannada-Malayalam.yml +13 -0
  754. data/resources/shared/transforms/Kannada-Oriya.yml +13 -0
  755. data/resources/shared/transforms/Kannada-Tamil.yml +13 -0
  756. data/resources/shared/transforms/Kannada-Telugu.yml +13 -0
  757. data/resources/shared/transforms/Katakana-Latin-BGN.yml +310 -0
  758. data/resources/shared/transforms/Katakana-Latin.yml +309 -0
  759. data/resources/shared/transforms/Kazakh-Latin-BGN.yml +136 -0
  760. data/resources/shared/transforms/Kazakh-Latin.yml +135 -0
  761. data/resources/shared/transforms/Kirghiz-Latin-BGN.yml +107 -0
  762. data/resources/shared/transforms/Kirghiz-Latin.yml +106 -0
  763. data/resources/shared/transforms/Korean-Latin-BGN.yml +282 -0
  764. data/resources/shared/transforms/Korean-Latin.yml +281 -0
  765. data/resources/shared/transforms/Latin-ASCII.yml +694 -0
  766. data/resources/shared/transforms/Latin-Armenian.yml +90 -0
  767. data/resources/shared/transforms/Latin-Bengali.yml +14 -0
  768. data/resources/shared/transforms/Latin-Bopomofo.yml +1451 -0
  769. data/resources/shared/transforms/Latin-CanadianAboriginal.yml +190 -0
  770. data/resources/shared/transforms/Latin-ConjoiningJamo.yml +263 -0
  771. data/resources/shared/transforms/Latin-Devanagari.yml +14 -0
  772. data/resources/shared/transforms/Latin-Ethiopic.yml +278 -0
  773. data/resources/shared/transforms/Latin-Gujarati.yml +14 -0
  774. data/resources/shared/transforms/Latin-Gurmukhi.yml +14 -0
  775. data/resources/shared/transforms/Latin-Hangul.yml +13 -0
  776. data/resources/shared/transforms/Latin-InterIndic.yml +341 -0
  777. data/resources/shared/transforms/Latin-Jamo.yml +13 -0
  778. data/resources/shared/transforms/Latin-Kannada.yml +14 -0
  779. data/resources/shared/transforms/Latin-Katakana.yml +274 -0
  780. data/resources/shared/transforms/Latin-Malayalam.yml +14 -0
  781. data/resources/shared/transforms/Latin-NumericPinyin.yml +21 -0
  782. data/resources/shared/transforms/Latin-Oriya.yml +14 -0
  783. data/resources/shared/transforms/Latin-Tamil.yml +14 -0
  784. data/resources/shared/transforms/Latin-Telugu.yml +14 -0
  785. data/resources/shared/transforms/Latin-Thaana.yml +439 -0
  786. data/resources/shared/transforms/Latin-Thai.yml +13 -0
  787. data/resources/shared/transforms/Macedonian-Latin-BGN.yml +89 -0
  788. data/resources/shared/transforms/Macedonian-Latin.yml +88 -0
  789. data/resources/shared/transforms/Malayalam-Bengali.yml +13 -0
  790. data/resources/shared/transforms/Malayalam-Devanagari.yml +13 -0
  791. data/resources/shared/transforms/Malayalam-Gujarati.yml +13 -0
  792. data/resources/shared/transforms/Malayalam-Gurmukhi.yml +13 -0
  793. data/resources/shared/transforms/Malayalam-InterIndic.yml +83 -0
  794. data/resources/shared/transforms/Malayalam-Kannada.yml +13 -0
  795. data/resources/shared/transforms/Malayalam-Latin.yml +13 -0
  796. data/resources/shared/transforms/Malayalam-Oriya.yml +13 -0
  797. data/resources/shared/transforms/Malayalam-Tamil.yml +13 -0
  798. data/resources/shared/transforms/Malayalam-Telugu.yml +13 -0
  799. data/resources/shared/transforms/Maldivian-Latin-BGN.yml +77 -0
  800. data/resources/shared/transforms/Maldivian-Latin.yml +76 -0
  801. data/resources/shared/transforms/Mongolian-Latin-BGN.yml +101 -0
  802. data/resources/shared/transforms/Mongolian-Latin.yml +100 -0
  803. data/resources/shared/transforms/Oriya-Bengali.yml +13 -0
  804. data/resources/shared/transforms/Oriya-Devanagari.yml +13 -0
  805. data/resources/shared/transforms/Oriya-Gujarati.yml +13 -0
  806. data/resources/shared/transforms/Oriya-Gurmukhi.yml +13 -0
  807. data/resources/shared/transforms/Oriya-InterIndic.yml +89 -0
  808. data/resources/shared/transforms/Oriya-Kannada.yml +13 -0
  809. data/resources/shared/transforms/Oriya-Latin.yml +13 -0
  810. data/resources/shared/transforms/Oriya-Malayalam.yml +13 -0
  811. data/resources/shared/transforms/Oriya-Tamil.yml +13 -0
  812. data/resources/shared/transforms/Oriya-Telugu.yml +13 -0
  813. data/resources/shared/transforms/Pashto-Latin-BGN.yml +151 -0
  814. data/resources/shared/transforms/Pashto-Latin.yml +150 -0
  815. data/resources/shared/transforms/Persian-Latin-BGN.yml +123 -0
  816. data/resources/shared/transforms/Persian-Latin.yml +122 -0
  817. data/resources/shared/transforms/Pinyin-NumericPinyin.yml +13 -0
  818. data/resources/shared/transforms/Russian-Latin-BGN.yml +113 -0
  819. data/resources/shared/transforms/Russian-Latin.yml +112 -0
  820. data/resources/shared/transforms/Serbian-Latin-BGN.yml +81 -0
  821. data/resources/shared/transforms/Serbian-Latin.yml +80 -0
  822. data/resources/shared/transforms/Simplified-Traditional.yml +3988 -0
  823. data/resources/shared/transforms/Syriac-Latin.yml +55 -0
  824. data/resources/shared/transforms/Tamil-Bengali.yml +13 -0
  825. data/resources/shared/transforms/Tamil-Devanagari.yml +13 -0
  826. data/resources/shared/transforms/Tamil-Gujarati.yml +13 -0
  827. data/resources/shared/transforms/Tamil-Gurmukhi.yml +13 -0
  828. data/resources/shared/transforms/Tamil-InterIndic.yml +72 -0
  829. data/resources/shared/transforms/Tamil-Kannada.yml +13 -0
  830. data/resources/shared/transforms/Tamil-Latin.yml +13 -0
  831. data/resources/shared/transforms/Tamil-Malayalam.yml +13 -0
  832. data/resources/shared/transforms/Tamil-Oriya.yml +13 -0
  833. data/resources/shared/transforms/Tamil-Telugu.yml +13 -0
  834. data/resources/shared/transforms/Telugu-Bengali.yml +13 -0
  835. data/resources/shared/transforms/Telugu-Devanagari.yml +13 -0
  836. data/resources/shared/transforms/Telugu-Gujarati.yml +13 -0
  837. data/resources/shared/transforms/Telugu-Gurmukhi.yml +13 -0
  838. data/resources/shared/transforms/Telugu-InterIndic.yml +89 -0
  839. data/resources/shared/transforms/Telugu-Kannada.yml +13 -0
  840. data/resources/shared/transforms/Telugu-Latin.yml +13 -0
  841. data/resources/shared/transforms/Telugu-Malayalam.yml +13 -0
  842. data/resources/shared/transforms/Telugu-Oriya.yml +13 -0
  843. data/resources/shared/transforms/Telugu-Tamil.yml +13 -0
  844. data/resources/shared/transforms/Thai-Latin.yml +15 -0
  845. data/resources/shared/transforms/Thai-ThaiLogical.yml +15 -0
  846. data/resources/shared/transforms/Thai-ThaiSemi.yml +10 -0
  847. data/resources/shared/transforms/ThaiLogical-Latin.yml +119 -0
  848. data/resources/shared/transforms/Turkmen-Latin-BGN.yml +122 -0
  849. data/resources/shared/transforms/Turkmen-Latin.yml +121 -0
  850. data/resources/shared/transforms/Ukrainian-Latin-BGN.yml +115 -0
  851. data/resources/shared/transforms/Ukrainian-Latin.yml +114 -0
  852. data/resources/shared/transforms/Uzbek-Latin-BGN.yml +117 -0
  853. data/resources/shared/transforms/Uzbek-Latin.yml +116 -0
  854. data/resources/shared/transforms/az-Lower.yml +12 -0
  855. data/resources/shared/transforms/az-Title.yml +13 -0
  856. data/resources/shared/transforms/az-Upper.yml +10 -0
  857. data/resources/shared/transforms/ch-ch_FONIPA.yml +71 -0
  858. data/resources/shared/transforms/cs-cs_FONIPA.yml +62 -0
  859. data/resources/shared/transforms/cs-ja.yml +10 -0
  860. data/resources/shared/transforms/cs-ko.yml +10 -0
  861. data/resources/shared/transforms/cs_FONIPA-ja.yml +201 -0
  862. data/resources/shared/transforms/cs_FONIPA-ko.yml +88 -0
  863. data/resources/shared/transforms/dsb-dsb_FONIPA.yml +73 -0
  864. data/resources/shared/transforms/el-Lower.yml +13 -0
  865. data/resources/shared/transforms/el-Title.yml +14 -0
  866. data/resources/shared/transforms/el-Upper.yml +13 -0
  867. data/resources/shared/transforms/es-am.yml +10 -0
  868. data/resources/shared/transforms/es-es_FONIPA.yml +81 -0
  869. data/resources/shared/transforms/es-ja.yml +10 -0
  870. data/resources/shared/transforms/es-zh.yml +10 -0
  871. data/resources/shared/transforms/es_419-ja.yml +11 -0
  872. data/resources/shared/transforms/es_419-zh.yml +11 -0
  873. data/resources/shared/transforms/es_FONIPA-am.yml +167 -0
  874. data/resources/shared/transforms/es_FONIPA-es_419_FONIPA.yml +10 -0
  875. data/resources/shared/transforms/es_FONIPA-ja.yml +145 -0
  876. data/resources/shared/transforms/es_FONIPA-zh.yml +497 -0
  877. data/resources/shared/transforms/it-am.yml +198 -0
  878. data/resources/shared/transforms/it-ja.yml +185 -0
  879. data/resources/shared/transforms/ja_Latn-ko.yml +92 -0
  880. data/resources/shared/transforms/ja_Latn-ru.yml +63 -0
  881. data/resources/shared/transforms/la-la_FONIPA.yml +81 -0
  882. data/resources/shared/transforms/lt-Lower.yml +17 -0
  883. data/resources/shared/transforms/lt-Title.yml +19 -0
  884. data/resources/shared/transforms/lt-Upper.yml +12 -0
  885. data/resources/shared/transforms/nl-Title.yml +10 -0
  886. data/resources/shared/transforms/pl-ja.yml +10 -0
  887. data/resources/shared/transforms/pl-pl_FONIPA.yml +98 -0
  888. data/resources/shared/transforms/pl_FONIPA-ja.yml +218 -0
  889. data/resources/shared/transforms/ro-ja.yml +10 -0
  890. data/resources/shared/transforms/ro-ro_FONIPA.yml +88 -0
  891. data/resources/shared/transforms/ro_FONIPA-ja.yml +157 -0
  892. data/resources/shared/transforms/ru-ja.yml +441 -0
  893. data/resources/shared/transforms/ru-zh.yml +975 -0
  894. data/resources/shared/transforms/sk-ja.yml +10 -0
  895. data/resources/shared/transforms/sk-sk_FONIPA.yml +74 -0
  896. data/resources/shared/transforms/sk_FONIPA-ja.yml +190 -0
  897. data/resources/shared/transforms/tlh-tlh_FONIPA.yml +54 -0
  898. data/resources/shared/transforms/tr-Lower.yml +12 -0
  899. data/resources/shared/transforms/tr-Title.yml +13 -0
  900. data/resources/shared/transforms/tr-Upper.yml +10 -0
  901. data/resources/shared/transforms/uz_Cyrl-uz_Latn.yml +102 -0
  902. data/resources/shared/transforms/yo-yo_BJ.yml +16 -0
  903. data/resources/shared/transforms/zh_Latn_PINYIN-ru.yml +120 -0
  904. data/resources/unicode_data/blocks.yml +168 -0
  905. data/resources/unicode_data/blocks/ancient_greek_numbers.yml +32 -0
  906. data/resources/unicode_data/blocks/ancient_symbols.yml +16 -0
  907. data/resources/unicode_data/blocks/arabic.yml +16 -0
  908. data/resources/unicode_data/blocks/arabic_extended_a.yml +176 -0
  909. data/resources/unicode_data/blocks/arabic_presentation_forms_a.yml +2 -2
  910. data/resources/unicode_data/blocks/armenian.yml +32 -0
  911. data/resources/unicode_data/blocks/bengali.yml +16 -0
  912. data/resources/unicode_data/blocks/brahmi.yml +16 -0
  913. data/resources/unicode_data/blocks/cherokee.yml +281 -169
  914. data/resources/unicode_data/blocks/cjk_unified_ideographs.yml +2 -2
  915. data/resources/unicode_data/blocks/combining_diacritical_marks_supplement.yml +240 -0
  916. data/resources/unicode_data/blocks/combining_half_marks.yml +144 -0
  917. data/resources/unicode_data/blocks/cuneiform.yml +688 -0
  918. data/resources/unicode_data/blocks/cuneiform_numbers_and_punctuation.yml +208 -0
  919. data/resources/unicode_data/blocks/currency_symbols.yml +64 -0
  920. data/resources/unicode_data/blocks/cyrillic_extended_b.yml +112 -0
  921. data/resources/unicode_data/blocks/cyrillic_supplement.yml +128 -0
  922. data/resources/unicode_data/blocks/devanagari.yml +16 -0
  923. data/resources/unicode_data/blocks/devanagari_extended.yml +32 -0
  924. data/resources/unicode_data/blocks/dingbats.yml +16 -0
  925. data/resources/unicode_data/blocks/emoticons.yml +64 -0
  926. data/resources/unicode_data/blocks/enclosed_alphanumeric_supplement.yml +32 -0
  927. data/resources/unicode_data/blocks/greek_and_coptic.yml +18 -2
  928. data/resources/unicode_data/blocks/gujarati.yml +16 -0
  929. data/resources/unicode_data/blocks/ipa_extensions.yml +12 -12
  930. data/resources/unicode_data/blocks/kannada.yml +16 -0
  931. data/resources/unicode_data/blocks/latin_extended_d.yml +400 -0
  932. data/resources/unicode_data/blocks/limbu.yml +32 -0
  933. data/resources/unicode_data/blocks/malayalam.yml +32 -0
  934. data/resources/unicode_data/blocks/meroitic_cursive.yml +1024 -0
  935. data/resources/unicode_data/blocks/miscellaneous_symbols_and_arrows.yml +1904 -0
  936. data/resources/unicode_data/blocks/miscellaneous_symbols_and_pictographs.yml +4816 -1088
  937. data/resources/unicode_data/blocks/miscellaneous_technical.yml +112 -0
  938. data/resources/unicode_data/blocks/musical_symbols.yml +176 -0
  939. data/resources/unicode_data/blocks/myanmar_extended_a.yml +64 -0
  940. data/resources/unicode_data/blocks/new_tai_lue.yml +19 -19
  941. data/resources/unicode_data/blocks/number_forms.yml +32 -0
  942. data/resources/unicode_data/blocks/old_italic.yml +16 -0
  943. data/resources/unicode_data/blocks/playing_cards.yml +368 -0
  944. data/resources/unicode_data/blocks/runic.yml +128 -0
  945. data/resources/unicode_data/blocks/sharada.yml +176 -0
  946. data/resources/unicode_data/blocks/sinhala.yml +160 -0
  947. data/resources/unicode_data/blocks/sundanese.yml +4 -4
  948. data/resources/unicode_data/blocks/supplemental_punctuation.yml +112 -0
  949. data/resources/unicode_data/blocks/telugu.yml +48 -0
  950. data/resources/unicode_data/blocks/transport_and_map_symbols.yml +448 -0
  951. data/resources/unicode_data/blocks/vedic_extensions.yml +32 -0
  952. data/resources/unicode_data/casefolding.yml +760 -0
  953. data/resources/unicode_data/properties/Age/7.0/value.dump +0 -0
  954. data/resources/unicode_data/properties/Age/8.0/value.dump +0 -0
  955. data/resources/unicode_data/properties/Bidi_Paired_Bracket_Type/Close/value.dump +62 -0
  956. data/resources/unicode_data/properties/Bidi_Paired_Bracket_Type/Open/value.dump +66 -0
  957. data/resources/unicode_data/properties/Block/Ahom/value.dump +0 -0
  958. data/resources/unicode_data/properties/Block/Anatolian Hieroglyphs/value.dump +0 -0
  959. data/resources/unicode_data/properties/Block/Bassa Vah/value.dump +3 -0
  960. data/resources/unicode_data/properties/Block/CJK Unified Ideographs Extension E/value.dump +3 -0
  961. data/resources/unicode_data/properties/Block/Caucasian Albanian/value.dump +3 -0
  962. data/resources/unicode_data/properties/Block/Cherokee Supplement/value.dump +3 -0
  963. data/resources/unicode_data/properties/Block/Combining Diacritical Marks Extended/value.dump +3 -0
  964. data/resources/unicode_data/properties/Block/Coptic Epact Numbers/value.dump +3 -0
  965. data/resources/unicode_data/properties/Block/Duployan/value.dump +0 -0
  966. data/resources/unicode_data/properties/Block/Early Dynastic Cuneiform/value.dump +3 -0
  967. data/resources/unicode_data/properties/Block/Elbasan/value.dump +0 -0
  968. data/resources/unicode_data/properties/Block/Geometric Shapes Extended/value.dump +3 -0
  969. data/resources/unicode_data/properties/Block/Grantha/value.dump +0 -0
  970. data/resources/unicode_data/properties/Block/Hatran/value.dump +3 -0
  971. data/resources/unicode_data/properties/Block/Khojki/value.dump +0 -0
  972. data/resources/unicode_data/properties/Block/Khudawadi/value.dump +3 -0
  973. data/resources/unicode_data/properties/Block/Latin Extended-E/value.dump +3 -0
  974. data/resources/unicode_data/properties/Block/Linear A/value.dump +0 -0
  975. data/resources/unicode_data/properties/Block/Mahajani/value.dump +3 -0
  976. data/resources/unicode_data/properties/Block/Manichaean/value.dump +5 -0
  977. data/resources/unicode_data/properties/Block/Mende Kikakui/value.dump +0 -0
  978. data/resources/unicode_data/properties/Block/Modi/value.dump +0 -0
  979. data/resources/unicode_data/properties/Block/Mro/value.dump +3 -0
  980. data/resources/unicode_data/properties/Block/Multani/value.dump +3 -0
  981. data/resources/unicode_data/properties/Block/Myanmar Extended-B/value.dump +3 -0
  982. data/resources/unicode_data/properties/Block/Nabataean/value.dump +3 -0
  983. data/resources/unicode_data/properties/Block/Old Hungarian/value.dump +3 -0
  984. data/resources/unicode_data/properties/Block/Old North Arabian/value.dump +5 -0
  985. data/resources/unicode_data/properties/Block/Old Permic/value.dump +3 -0
  986. data/resources/unicode_data/properties/Block/Ornamental Dingbats/value.dump +3 -0
  987. data/resources/unicode_data/properties/Block/Pahawh Hmong/value.dump +0 -0
  988. data/resources/unicode_data/properties/Block/Palmyrene/value.dump +3 -0
  989. data/resources/unicode_data/properties/Block/Pau Cin Hau/value.dump +3 -0
  990. data/resources/unicode_data/properties/Block/Psalter Pahlavi/value.dump +3 -0
  991. data/resources/unicode_data/properties/Block/Shorthand Format Controls/value.dump +3 -0
  992. data/resources/unicode_data/properties/Block/Siddham/value.dump +3 -0
  993. data/resources/unicode_data/properties/Block/Sinhala Archaic Numbers/value.dump +3 -0
  994. data/resources/unicode_data/properties/Block/Supplemental Arrows-C/value.dump +0 -0
  995. Pictographs/value.dump +0 -0
  996. data/resources/unicode_data/properties/Block/Sutton SignWriting/value.dump +0 -0
  997. data/resources/unicode_data/properties/Block/Tirhuta/value.dump +3 -0
  998. data/resources/unicode_data/properties/Block/Warang Citi/value.dump +3 -0
  999. data/resources/unicode_data/properties/Indic_Syllabic_Category/Brahmi_Joining_Number/value.dump +3 -0
  1000. data/resources/unicode_data/properties/Indic_Syllabic_Category/Cantillation_Mark/value.dump +10 -0
  1001. data/resources/unicode_data/properties/Indic_Syllabic_Category/Consonant_Killer/value.dump +4 -0
  1002. data/resources/unicode_data/properties/Indic_Syllabic_Category/Consonant_Preceding_Repha/value.dump +3 -0
  1003. data/resources/unicode_data/properties/Indic_Syllabic_Category/Consonant_Prefixed/value.dump +3 -0
  1004. data/resources/unicode_data/properties/Indic_Syllabic_Category/Consonant_Succeeding_Repha/value.dump +6 -0
  1005. data/resources/unicode_data/properties/Indic_Syllabic_Category/Consonant_With_Stacker/value.dump +4 -0
  1006. data/resources/unicode_data/properties/Indic_Syllabic_Category/Gemination_Mark/value.dump +6 -0
  1007. data/resources/unicode_data/properties/Indic_Syllabic_Category/Invisible_Stacker/value.dump +11 -0
  1008. data/resources/unicode_data/properties/Indic_Syllabic_Category/Joiner/value.dump +3 -0
  1009. data/resources/unicode_data/properties/Indic_Syllabic_Category/Non_Joiner/value.dump +3 -0
  1010. data/resources/unicode_data/properties/Indic_Syllabic_Category/Number/value.dump +0 -0
  1011. data/resources/unicode_data/properties/Indic_Syllabic_Category/Number_Joiner/value.dump +3 -0
  1012. data/resources/unicode_data/properties/Indic_Syllabic_Category/Pure_Killer/value.dump +17 -0
  1013. data/resources/unicode_data/properties/Indic_Syllabic_Category/Syllable_Modifier/value.dump +15 -0
  1014. data/resources/unicode_data/properties/Joining_Group/AIN/value.dump +8 -0
  1015. data/resources/unicode_data/properties/Joining_Group/ALAPH/value.dump +3 -0
  1016. data/resources/unicode_data/properties/Joining_Group/ALEF/value.dump +8 -0
  1017. data/resources/unicode_data/properties/Joining_Group/BEH/value.dump +8 -0
  1018. data/resources/unicode_data/properties/Joining_Group/BETH/value.dump +4 -0
  1019. data/resources/unicode_data/properties/Joining_Group/BURUSHASKI YEH BARREE/value.dump +3 -0
  1020. data/resources/unicode_data/properties/Joining_Group/DAL/value.dump +8 -0
  1021. data/resources/unicode_data/properties/Joining_Group/DALATH RISH/value.dump +5 -0
  1022. data/resources/unicode_data/properties/Joining_Group/E/value.dump +3 -0
  1023. data/resources/unicode_data/properties/Joining_Group/FARSI YEH/value.dump +6 -0
  1024. data/resources/unicode_data/properties/Joining_Group/FE/value.dump +3 -0
  1025. data/resources/unicode_data/properties/Joining_Group/FEH/value.dump +6 -0
  1026. data/resources/unicode_data/properties/Joining_Group/FINAL SEMKATH/value.dump +3 -0
  1027. data/resources/unicode_data/properties/Joining_Group/GAF/value.dump +8 -0
  1028. data/resources/unicode_data/properties/Joining_Group/GAMAL/value.dump +4 -0
  1029. data/resources/unicode_data/properties/Joining_Group/HAH/value.dump +10 -0
  1030. data/resources/unicode_data/properties/Joining_Group/HE/value.dump +3 -0
  1031. data/resources/unicode_data/properties/Joining_Group/HEH GOAL/value.dump +3 -0
  1032. data/resources/unicode_data/properties/Joining_Group/HEH/value.dump +3 -0
  1033. data/resources/unicode_data/properties/Joining_Group/HETH/value.dump +3 -0
  1034. data/resources/unicode_data/properties/Joining_Group/KAF/value.dump +6 -0
  1035. data/resources/unicode_data/properties/Joining_Group/KAPH/value.dump +3 -0
  1036. data/resources/unicode_data/properties/Joining_Group/KHAPH/value.dump +3 -0
  1037. data/resources/unicode_data/properties/Joining_Group/KNOTTED HEH/value.dump +4 -0
  1038. data/resources/unicode_data/properties/Joining_Group/LAM/value.dump +6 -0
  1039. data/resources/unicode_data/properties/Joining_Group/LAMADH/value.dump +3 -0
  1040. data/resources/unicode_data/properties/Joining_Group/MANICHAEAN ALEPH/value.dump +5 -0
  1041. data/resources/unicode_data/properties/Joining_Group/MANICHAEAN AYIN/value.dump +5 -0
  1042. data/resources/unicode_data/properties/Joining_Group/MANICHAEAN BETH/value.dump +5 -0
  1043. data/resources/unicode_data/properties/Joining_Group/MANICHAEAN DALETH/value.dump +5 -0
  1044. data/resources/unicode_data/properties/Joining_Group/MANICHAEAN DHAMEDH/value.dump +5 -0
  1045. data/resources/unicode_data/properties/Joining_Group/MANICHAEAN FIVE/value.dump +5 -0
  1046. data/resources/unicode_data/properties/Joining_Group/MANICHAEAN GIMEL/value.dump +5 -0
  1047. data/resources/unicode_data/properties/Joining_Group/MANICHAEAN HETH/value.dump +5 -0
  1048. data/resources/unicode_data/properties/Joining_Group/MANICHAEAN HUNDRED/value.dump +5 -0
  1049. data/resources/unicode_data/properties/Joining_Group/MANICHAEAN KAPH/value.dump +5 -0
  1050. data/resources/unicode_data/properties/Joining_Group/MANICHAEAN LAMEDH/value.dump +5 -0
  1051. data/resources/unicode_data/properties/Joining_Group/MANICHAEAN MEM/value.dump +5 -0
  1052. data/resources/unicode_data/properties/Joining_Group/MANICHAEAN NUN/value.dump +5 -0
  1053. data/resources/unicode_data/properties/Joining_Group/MANICHAEAN ONE/value.dump +5 -0
  1054. data/resources/unicode_data/properties/Joining_Group/MANICHAEAN PE/value.dump +5 -0
  1055. data/resources/unicode_data/properties/Joining_Group/MANICHAEAN QOPH/value.dump +5 -0
  1056. data/resources/unicode_data/properties/Joining_Group/MANICHAEAN RESH/value.dump +5 -0
  1057. data/resources/unicode_data/properties/Joining_Group/MANICHAEAN SADHE/value.dump +5 -0
  1058. data/resources/unicode_data/properties/Joining_Group/MANICHAEAN SAMEKH/value.dump +5 -0
  1059. data/resources/unicode_data/properties/Joining_Group/MANICHAEAN TAW/value.dump +5 -0
  1060. data/resources/unicode_data/properties/Joining_Group/MANICHAEAN TEN/value.dump +5 -0
  1061. data/resources/unicode_data/properties/Joining_Group/MANICHAEAN TETH/value.dump +5 -0
  1062. data/resources/unicode_data/properties/Joining_Group/MANICHAEAN THAMEDH/value.dump +5 -0
  1063. data/resources/unicode_data/properties/Joining_Group/MANICHAEAN TWENTY/value.dump +5 -0
  1064. data/resources/unicode_data/properties/Joining_Group/MANICHAEAN WAW/value.dump +5 -0
  1065. data/resources/unicode_data/properties/Joining_Group/MANICHAEAN YODH/value.dump +5 -0
  1066. data/resources/unicode_data/properties/Joining_Group/MANICHAEAN ZAYIN/value.dump +5 -0
  1067. data/resources/unicode_data/properties/Joining_Group/MEEM/value.dump +5 -0
  1068. data/resources/unicode_data/properties/Joining_Group/MIM/value.dump +3 -0
  1069. data/resources/unicode_data/properties/Joining_Group/NOON/value.dump +5 -0
  1070. data/resources/unicode_data/properties/Joining_Group/NUN/value.dump +3 -0
  1071. data/resources/unicode_data/properties/Joining_Group/NYA/value.dump +3 -0
  1072. data/resources/unicode_data/properties/Joining_Group/No_Joining_Group/value.dump +0 -0
  1073. data/resources/unicode_data/properties/Joining_Group/PE/value.dump +3 -0
  1074. data/resources/unicode_data/properties/Joining_Group/QAF/value.dump +6 -0
  1075. data/resources/unicode_data/properties/Joining_Group/QAPH/value.dump +3 -0
  1076. data/resources/unicode_data/properties/Joining_Group/REH/value.dump +10 -0
  1077. data/resources/unicode_data/properties/Joining_Group/REVERSED PE/value.dump +3 -0
  1078. data/resources/unicode_data/properties/Joining_Group/ROHINGYA YEH/value.dump +3 -0
  1079. data/resources/unicode_data/properties/Joining_Group/SAD/value.dump +6 -0
  1080. data/resources/unicode_data/properties/Joining_Group/SADHE/value.dump +3 -0
  1081. data/resources/unicode_data/properties/Joining_Group/SEEN/value.dump +9 -0
  1082. data/resources/unicode_data/properties/Joining_Group/SEMKATH/value.dump +3 -0
  1083. data/resources/unicode_data/properties/Joining_Group/SHIN/value.dump +3 -0
  1084. data/resources/unicode_data/properties/Joining_Group/STRAIGHT WAW/value.dump +3 -0
  1085. data/resources/unicode_data/properties/Joining_Group/SWASH KAF/value.dump +3 -0
  1086. data/resources/unicode_data/properties/Joining_Group/SYRIAC WAW/value.dump +3 -0
  1087. data/resources/unicode_data/properties/Joining_Group/TAH/value.dump +5 -0
  1088. data/resources/unicode_data/properties/Joining_Group/TAW/value.dump +3 -0
  1089. data/resources/unicode_data/properties/Joining_Group/TEH MARBUTA GOAL/value.dump +3 -0
  1090. data/resources/unicode_data/properties/Joining_Group/TEH MARBUTA/value.dump +5 -0
  1091. data/resources/unicode_data/properties/Joining_Group/TETH/value.dump +3 -0
  1092. data/resources/unicode_data/properties/Joining_Group/WAW/value.dump +9 -0
  1093. data/resources/unicode_data/properties/Joining_Group/YEH BARREE/value.dump +3 -0
  1094. data/resources/unicode_data/properties/Joining_Group/YEH WITH TAIL/value.dump +3 -0
  1095. data/resources/unicode_data/properties/Joining_Group/YEH/value.dump +9 -0
  1096. data/resources/unicode_data/properties/Joining_Group/YUDH HE/value.dump +3 -0
  1097. data/resources/unicode_data/properties/Joining_Group/YUDH/value.dump +3 -0
  1098. data/resources/unicode_data/properties/Joining_Group/ZAIN/value.dump +3 -0
  1099. data/resources/unicode_data/properties/Joining_Group/ZHAIN/value.dump +3 -0
  1100. data/resources/unicode_data/properties/Joining_Type/Dual_Joining/value.dump +65 -0
  1101. data/resources/unicode_data/properties/Joining_Type/Join_Causing/value.dump +8 -0
  1102. data/resources/unicode_data/properties/Joining_Type/Left_Joining/value.dump +9 -0
  1103. data/resources/unicode_data/properties/Joining_Type/Non_Joining/value.dump +0 -0
  1104. data/resources/unicode_data/properties/Joining_Type/Right_Joining/value.dump +68 -0
  1105. data/resources/unicode_data/properties/Script/Ahom/value.dump +0 -0
  1106. data/resources/unicode_data/properties/Script/Anatolian_Hieroglyphs/value.dump +0 -0
  1107. data/resources/unicode_data/properties/Script/Bassa_Vah/value.dump +4 -0
  1108. data/resources/unicode_data/properties/Script/Caucasian_Albanian/value.dump +4 -0
  1109. data/resources/unicode_data/properties/Script/Duployan/value.dump +0 -0
  1110. data/resources/unicode_data/properties/Script/Elbasan/value.dump +0 -0
  1111. data/resources/unicode_data/properties/Script/Grantha/value.dump +0 -0
  1112. data/resources/unicode_data/properties/Script/Hatran/value.dump +5 -0
  1113. data/resources/unicode_data/properties/Script/Khojki/value.dump +0 -0
  1114. data/resources/unicode_data/properties/Script/Khudawadi/value.dump +4 -0
  1115. data/resources/unicode_data/properties/Script/Linear_A/value.dump +0 -0
  1116. data/resources/unicode_data/properties/Script/Mahajani/value.dump +3 -0
  1117. data/resources/unicode_data/properties/Script/Manichaean/value.dump +8 -0
  1118. data/resources/unicode_data/properties/Script/Mende_Kikakui/value.dump +0 -0
  1119. data/resources/unicode_data/properties/Script/Modi/value.dump +0 -0
  1120. data/resources/unicode_data/properties/Script/Mro/value.dump +5 -0
  1121. data/resources/unicode_data/properties/Script/Multani/value.dump +8 -0
  1122. data/resources/unicode_data/properties/Script/Nabataean/value.dump +4 -0
  1123. data/resources/unicode_data/properties/Script/Old_Hungarian/value.dump +5 -0
  1124. data/resources/unicode_data/properties/Script/Old_North_Arabian/value.dump +5 -0
  1125. data/resources/unicode_data/properties/Script/Old_Permic/value.dump +3 -0
  1126. data/resources/unicode_data/properties/Script/Pahawh_Hmong/value.dump +0 -0
  1127. data/resources/unicode_data/properties/Script/Palmyrene/value.dump +3 -0
  1128. data/resources/unicode_data/properties/Script/Pau_Cin_Hau/value.dump +3 -0
  1129. data/resources/unicode_data/properties/Script/Psalter_Pahlavi/value.dump +5 -0
  1130. data/resources/unicode_data/properties/Script/Siddham/value.dump +4 -0
  1131. data/resources/unicode_data/properties/Script/SignWriting/value.dump +0 -0
  1132. data/resources/unicode_data/properties/Script/Tirhuta/value.dump +4 -0
  1133. data/resources/unicode_data/properties/Script/Warang_Citi/value.dump +4 -0
  1134. data/resources/unicode_data/properties/Script_Extensions/Copt/value.dump +3 -0
  1135. data/resources/unicode_data/properties/Script_Extensions/Dupl/value.dump +3 -0
  1136. data/resources/unicode_data/properties/Script_Extensions/Glag/value.dump +4 -0
  1137. data/resources/unicode_data/properties/Script_Extensions/Gran/value.dump +12 -0
  1138. data/resources/unicode_data/properties/Script_Extensions/Kali/value.dump +3 -0
  1139. data/resources/unicode_data/properties/Script_Extensions/Khoj/value.dump +4 -0
  1140. data/resources/unicode_data/properties/Script_Extensions/Knda/value.dump +6 -0
  1141. data/resources/unicode_data/properties/Script_Extensions/Limb/value.dump +3 -0
  1142. data/resources/unicode_data/properties/Script_Extensions/Mahj/value.dump +4 -0
  1143. data/resources/unicode_data/properties/Script_Extensions/Mani/value.dump +3 -0
  1144. data/resources/unicode_data/properties/Script_Extensions/Mlym/value.dump +5 -0
  1145. data/resources/unicode_data/properties/Script_Extensions/Modi/value.dump +3 -0
  1146. data/resources/unicode_data/properties/Script_Extensions/Mult/value.dump +4 -0
  1147. data/resources/unicode_data/properties/Script_Extensions/Perm/value.dump +3 -0
  1148. data/resources/unicode_data/properties/Script_Extensions/Phlp/value.dump +3 -0
  1149. data/resources/unicode_data/properties/Script_Extensions/Shrd/value.dump +8 -0
  1150. data/resources/unicode_data/properties/Script_Extensions/Sind/value.dump +4 -0
  1151. data/resources/unicode_data/properties/Script_Extensions/Sinh/value.dump +3 -0
  1152. data/resources/unicode_data/properties/Script_Extensions/Taml/value.dump +9 -0
  1153. data/resources/unicode_data/properties/Script_Extensions/Telu/value.dump +5 -0
  1154. data/resources/unicode_data/properties/Script_Extensions/Tirh/value.dump +4 -0
  1155. data/resources/unicode_data/property_aliases.yml +9 -3
  1156. data/resources/unicode_data/property_value_aliases.yml +34 -0
  1157. data/spec/collation/collator_spec.rb +53 -32
  1158. data/spec/collation/trie_builder_spec.rb +2 -2
  1159. data/spec/collation/trie_dumps_spec.rb +2 -2
  1160. data/spec/collation/trie_loader_spec.rb +3 -3
  1161. data/spec/collation/trie_with_fallback_spec.rb +1 -1
  1162. data/spec/data_readers/additional_date_format_selector_spec.rb +1 -1
  1163. data/spec/data_readers/timespan_data_reader_spec.rb +4 -4
  1164. data/spec/formatters/list_formatter_spec.rb +1 -1
  1165. data/spec/formatters/numbers/abbreviated/long_decimal_formatter_spec.rb +4 -4
  1166. data/spec/formatters/numbers/abbreviated/short_decimal_formatter_spec.rb +0 -2
  1167. data/spec/formatters/numbers/decimal_formatter_spec.rb +1 -1
  1168. data/spec/formatters/numbers/rbnf/locales/af/rbnf_test.yml +14 -14
  1169. data/spec/formatters/numbers/rbnf/locales/ar/rbnf_test.yml +248 -14
  1170. data/spec/formatters/numbers/rbnf/locales/be/rbnf_test.yml +14 -14
  1171. data/spec/formatters/numbers/rbnf/locales/bg/rbnf_test.yml +14 -14
  1172. data/spec/formatters/numbers/rbnf/locales/bn/rbnf_test.yml +488 -488
  1173. data/spec/formatters/numbers/rbnf/locales/ca/rbnf_test.yml +28 -28
  1174. data/spec/formatters/numbers/rbnf/locales/cs/rbnf_test.yml +14 -14
  1175. data/spec/formatters/numbers/rbnf/locales/cy/rbnf_test.yml +14 -14
  1176. data/spec/formatters/numbers/rbnf/locales/da/rbnf_test.yml +307 -307
  1177. data/spec/formatters/numbers/rbnf/locales/de-CH/rbnf_test.yml +146 -146
  1178. data/spec/formatters/numbers/rbnf/locales/de/rbnf_test.yml +14 -14
  1179. data/spec/formatters/numbers/rbnf/locales/el/rbnf_test.yml +14 -14
  1180. data/spec/formatters/numbers/rbnf/locales/en-150/rbnf_test.yml +28 -28
  1181. data/spec/formatters/numbers/rbnf/locales/en-AU/rbnf_test.yml +28 -28
  1182. data/spec/formatters/numbers/rbnf/locales/en-CA/rbnf_test.yml +28 -28
  1183. data/spec/formatters/numbers/rbnf/locales/en-GB/rbnf_test.yml +28 -28
  1184. data/spec/formatters/numbers/rbnf/locales/en-IE/rbnf_test.yml +28 -28
  1185. data/spec/formatters/numbers/rbnf/locales/en-SG/rbnf_test.yml +28 -28
  1186. data/spec/formatters/numbers/rbnf/locales/en-ZA/rbnf_test.yml +28 -28
  1187. data/spec/formatters/numbers/rbnf/locales/en/rbnf_test.yml +28 -28
  1188. data/spec/formatters/numbers/rbnf/locales/es-419/rbnf_test.yml +488 -488
  1189. data/spec/formatters/numbers/rbnf/locales/es-CO/rbnf_test.yml +488 -488
  1190. data/spec/formatters/numbers/rbnf/locales/es-MX/rbnf_test.yml +488 -488
  1191. data/spec/formatters/numbers/rbnf/locales/es-US/rbnf_test.yml +488 -488
  1192. data/spec/formatters/numbers/rbnf/locales/es/rbnf_test.yml +488 -488
  1193. data/spec/formatters/numbers/rbnf/locales/eu/rbnf_test.yml +488 -488
  1194. data/spec/formatters/numbers/rbnf/locales/fa/rbnf_test.yml +14 -14
  1195. data/spec/formatters/numbers/rbnf/locales/fi/rbnf_test.yml +5067 -387
  1196. data/spec/formatters/numbers/rbnf/locales/fil/rbnf_test.yml +14 -14
  1197. data/spec/formatters/numbers/rbnf/locales/fr-BE/rbnf_test.yml +28 -28
  1198. data/spec/formatters/numbers/rbnf/locales/fr-CA/rbnf_test.yml +28 -28
  1199. data/spec/formatters/numbers/rbnf/locales/fr-CH/rbnf_test.yml +28 -28
  1200. data/spec/formatters/numbers/rbnf/locales/fr/rbnf_test.yml +28 -28
  1201. data/spec/formatters/numbers/rbnf/locales/ga/rbnf_test.yml +95 -95
  1202. data/spec/formatters/numbers/rbnf/locales/gl/rbnf_test.yml +488 -488
  1203. data/spec/formatters/numbers/rbnf/locales/gu/rbnf_test.yml +1634 -1283
  1204. data/spec/formatters/numbers/rbnf/locales/he/rbnf_test.yml +120 -120
  1205. data/spec/formatters/numbers/rbnf/locales/hi/rbnf_test.yml +28 -28
  1206. data/spec/formatters/numbers/rbnf/locales/hr/rbnf_test.yml +14 -14
  1207. data/spec/formatters/numbers/rbnf/locales/hu/rbnf_test.yml +14 -14
  1208. data/spec/formatters/numbers/rbnf/locales/id/rbnf_test.yml +35 -35
  1209. data/spec/formatters/numbers/rbnf/locales/is/rbnf_test.yml +14 -14
  1210. data/spec/formatters/numbers/rbnf/locales/it-CH/rbnf_test.yml +28 -28
  1211. data/spec/formatters/numbers/rbnf/locales/it/rbnf_test.yml +28 -28
  1212. data/spec/formatters/numbers/rbnf/locales/ja/rbnf_test.yml +7 -7
  1213. data/spec/formatters/numbers/rbnf/locales/kn/rbnf_test.yml +1634 -1283
  1214. data/spec/formatters/numbers/rbnf/locales/ko/rbnf_test.yml +14 -14
  1215. data/spec/formatters/numbers/rbnf/locales/lv/rbnf_test.yml +14 -14
  1216. data/spec/formatters/numbers/rbnf/locales/mr/rbnf_test.yml +1634 -1283
  1217. data/spec/formatters/numbers/rbnf/locales/ms/rbnf_test.yml +35 -35
  1218. data/spec/formatters/numbers/rbnf/locales/nb/rbnf_test.yml +950 -599
  1219. data/spec/formatters/numbers/rbnf/locales/nl/rbnf_test.yml +14 -14
  1220. data/spec/formatters/numbers/rbnf/locales/pl/rbnf_test.yml +2152 -46
  1221. data/spec/formatters/numbers/rbnf/locales/pt/rbnf_test.yml +28 -28
  1222. data/spec/formatters/numbers/rbnf/locales/ro/rbnf_test.yml +14 -14
  1223. data/spec/formatters/numbers/rbnf/locales/ru/rbnf_test.yml +5265 -52
  1224. data/spec/formatters/numbers/rbnf/locales/sk/rbnf_test.yml +14 -14
  1225. data/spec/formatters/numbers/rbnf/locales/sq/rbnf_test.yml +14 -14
  1226. data/spec/formatters/numbers/rbnf/locales/sr/rbnf_test.yml +14 -14
  1227. data/spec/formatters/numbers/rbnf/locales/sv/rbnf_test.yml +42 -42
  1228. data/spec/formatters/numbers/rbnf/locales/ta/rbnf_test.yml +14 -14
  1229. data/spec/formatters/numbers/rbnf/locales/th/rbnf_test.yml +123 -123
  1230. data/spec/formatters/numbers/rbnf/locales/tr/rbnf_test.yml +134 -134
  1231. data/spec/formatters/numbers/rbnf/locales/uk/rbnf_test.yml +14 -14
  1232. data/spec/formatters/numbers/rbnf/locales/ur/rbnf_test.yml +488 -488
  1233. data/spec/formatters/numbers/rbnf/locales/vi/rbnf_test.yml +14 -14
  1234. data/spec/formatters/numbers/rbnf/locales/zh-Hant/rbnf_test.yml +7 -7
  1235. data/spec/formatters/numbers/rbnf/locales/zh/rbnf_test.yml +7 -7
  1236. data/spec/localized/localized_date_spec.rb +11 -2
  1237. data/spec/localized/localized_datetime_spec.rb +1 -1
  1238. data/spec/localized/localized_string_spec.rb +9 -1
  1239. data/spec/localized/localized_symbol_spec.rb +4 -4
  1240. data/spec/resources/loader_spec.rb +1 -1
  1241. data/spec/segmentation/break_iterator_spec.rb +9 -9
  1242. data/spec/shared/hunspell/base.hyph +4543 -0
  1243. data/spec/shared/hunspell/base.pat +5536 -0
  1244. data/spec/shared/hunspell/base.word +4543 -0
  1245. data/spec/shared/hyphenator_spec.rb +103 -0
  1246. data/spec/shared/likely_subtags_spec.rb +5 -0
  1247. data/spec/shared/locale_spec.rb +34 -2
  1248. data/spec/shared/postal_code_generator_spec.rb +8 -9
  1249. data/spec/shared/postal_codes_spec.rb +9 -8
  1250. data/spec/shared/unit_spec.rb +1 -1
  1251. data/spec/transforms/rule_set_spec.rb +35 -0
  1252. data/spec/transforms/test_data.yml +820 -0
  1253. data/spec/transforms/transform_id_spec.rb +146 -0
  1254. data/spec/transforms/transformer_spec.rb +113 -0
  1255. data/spec/transforms/transliterator_spec.rb +35 -0
  1256. data/spec/utils/script_detector_spec.rb +12 -3
  1257. data/spec/{collation → utils}/trie_spec.rb +2 -2
  1258. metadata +524 -5
@@ -0,0 +1,4543 @@
1
+ aarhus
2
+ abase
3
+ abate
4
+ abbeys
5
+ abby
6
+ abducts
7
+ aberrations
8
+ abhorrer
9
+ abilities
10
+ abjuring
11
+ ablest
12
+ abodes
13
+ abolitionist
14
+ abortion
15
+ about
16
+ abram
17
+ abridged
18
+ abruptly
19
+ absconds
20
+ absently
21
+ absolved
22
+ absorption
23
+ abstinence
24
+ abstractor
25
+ abundance
26
+ abuts
27
+ abyssinian
28
+ acapulco
29
+ accelerator
30
+ accentuated
31
+ accepted
32
+ accessibility
33
+ accidental
34
+ acclimated
35
+ accommodating
36
+ accompanying
37
+ accomplishments
38
+ accords
39
+ accountant
40
+ accretion
41
+ acculturation
42
+ accuracy
43
+ accused
44
+ aces
45
+ achieve
46
+ acid
47
+ acknowledgeable
48
+ acme
49
+ acoustics
50
+ acquiescent
51
+ acquisitive
52
+ acres
53
+ acropolis
54
+ actinometers
55
+ activators
56
+ actors
57
+ actuarial
58
+ acute
59
+ adagios
60
+ adaptation
61
+ adapts
62
+ addicting
63
+ additions
64
+ addresser
65
+ adducing
66
+ aden
67
+ adherents
68
+ adiabatically
69
+ adjoining
70
+ adjudging
71
+ adjured
72
+ adjustment
73
+ administer
74
+ administratively
75
+ admire
76
+ admissions
77
+ admixed
78
+ admonitions
79
+ adopted
80
+ adore
81
+ adrian
82
+ adsorbs
83
+ adulterer
84
+ adumbrating
85
+ advantageous
86
+ adventurers
87
+ adversely
88
+ advertises
89
+ advisees
90
+ advocacy
91
+ aerate
92
+ aerobacter
93
+ aerosols
94
+ affairs
95
+ affections
96
+ affiliating
97
+ affirmed
98
+ affliction
99
+ affords
100
+ afghans
101
+ aforethought
102
+ africanizes
103
+ afterimage
104
+ afterward
105
+ age
106
+ ager
107
+ agglutinated
108
+ aggravation
109
+ aggressive
110
+ agile
111
+ agitator
112
+ agonies
113
+ agreeably
114
+ agriculturally
115
+ aide
116
+ ailing
117
+ aims
118
+ airdrops
119
+ airfoil
120
+ airline
121
+ airplanes
122
+ airtight
123
+ akin
124
+ alamo
125
+ alas
126
+ albatross
127
+ albums
128
+ alcoholism
129
+ aldrich
130
+ alerting
131
+ alexandria
132
+ alga
133
+ algerian
134
+ algorithms
135
+ alicia
136
+ aligned
137
+ alistair
138
+ allan
139
+ alleges
140
+ allegory
141
+ allergic
142
+ alleyway
143
+ alliteration
144
+ allocator
145
+ allots
146
+ allowing
147
+ allurement
148
+ almaden
149
+ alnico
150
+ aloofness
151
+ alphabetized
152
+ alsatian
153
+ alterations
154
+ alternates
155
+ althaea
156
+ altruistically
157
+ alveolar
158
+ amalgamate
159
+ amass
160
+ amaze
161
+ amazons
162
+ ambiguous
163
+ ambled
164
+ ambushed
165
+ amend
166
+ america
167
+ americans
168
+ amide
169
+ ammonia
170
+ among
171
+ amortized
172
+ amour
173
+ amphibians
174
+ amplifiers
175
+ amputated
176
+ amusement
177
+ anabaptist
178
+ anagram
179
+ analogue
180
+ analyticities
181
+ anaphoric
182
+ anastomoses
183
+ anatomy
184
+ anchorite
185
+ andalusia
186
+ andover
187
+ anecdote
188
+ anesthetic
189
+ angeleno
190
+ angered
191
+ anglia
192
+ angola
193
+ angular
194
+ animated
195
+ animism
196
+ anita
197
+ annapolis
198
+ annihilated
199
+ annotation
200
+ annoy
201
+ annually
202
+ annuls
203
+ anodes
204
+ anomalously
205
+ anselm
206
+ ant
207
+ antagonizes
208
+ antedate
209
+ anthologies
210
+ anthropomorphically
211
+ anticipates
212
+ antidotes
213
+ antimony
214
+ antiquate
215
+ antisemitism
216
+ antithetical
217
+ antonio
218
+ anxious
219
+ anyway
220
+ apathy
221
+ aphasia
222
+ apiary
223
+ apocryphal
224
+ apologist
225
+ apostolic
226
+ appall
227
+ apparently
228
+ appear
229
+ appeasement
230
+ appended
231
+ appertains
232
+ applauds
233
+ applicable
234
+ applier
235
+ appointer
236
+ apportioning
237
+ appraisers
238
+ appreciation
239
+ apprehensively
240
+ approach
241
+ appropriate
242
+ approval
243
+ approximated
244
+ april
245
+ aptly
246
+ aquifer
247
+ arabians
248
+ aramco
249
+ arbitrating
250
+ arcades
251
+ archaism
252
+ archeologist
253
+ archimedes
254
+ architectures
255
+ arcing
256
+ ardently
257
+ arequipa
258
+ argos
259
+ argument
260
+ aridity
261
+ aristocrat
262
+ arithmetize
263
+ arm
264
+ armchairs
265
+ arming
266
+ armpits
267
+ arousal
268
+ arrack
269
+ arrangement
270
+ arrears
271
+ arrhenius
272
+ arrogate
273
+ arroyo
274
+ arterial
275
+ arthritis
276
+ articulately
277
+ artifact
278
+ artillerist
279
+ arts
280
+ ascendant
281
+ ascent
282
+ ascot
283
+ ashamedly
284
+ ashtray
285
+ asiatics
286
+ asking
287
+ aspersions
288
+ aspiration
289
+ ass
290
+ assassinated
291
+ assay
292
+ assemblies
293
+ asserter
294
+ assess
295
+ assiduity
296
+ assigning
297
+ assist
298
+ associate
299
+ associator
300
+ assuaged
301
+ assure
302
+ assyrianize
303
+ asteroid
304
+ astonishingly
305
+ astride
306
+ astronomically
307
+ asymmetric
308
+ asynchronously
309
+ atheism
310
+ athletes
311
+ atlas
312
+ atomization
313
+ atonement
314
+ atrophies
315
+ attaching
316
+ attain
317
+ attempt
318
+ attendants
319
+ attentionality
320
+ attenuator
321
+ attired
322
+ attracted
323
+ attributable
324
+ attune
325
+ auburn
326
+ audibly
327
+ audiometer
328
+ auditions
329
+ auger
330
+ august
331
+ aural
332
+ auscultated
333
+ austerely
334
+ austrianize
335
+ authenticator
336
+ authorities
337
+ authors
338
+ autocorrelate
339
+ autodecrements
340
+ autoindex
341
+ automaton
342
+ autopilot
343
+ autumnal
344
+ availer
345
+ avaricious
346
+ avenues
347
+ avers
348
+ avian
349
+ avionic
350
+ avoidable
351
+ avow
352
+ awakened
353
+ awards
354
+ awfulness
355
+ awry
356
+ axiological
357
+ axioms
358
+ ayes
359
+ azure
360
+ babelizes
361
+ babying
362
+ bacchus
363
+ backbend
364
+ backfill
365
+ backorder
366
+ backscatters
367
+ backstitch
368
+ backtracks
369
+ backyard
370
+ badger
371
+ baffle
372
+ baggage
373
+ bagrodia
374
+ bailiff
375
+ baits
376
+ bakes
377
+ balancers
378
+ baldwin
379
+ balkanization
380
+ balks
381
+ baller
382
+ balloon
383
+ ballplayer
384
+ balsam
385
+ bamboo
386
+ bandage
387
+ bandpass
388
+ bane
389
+ bangui
390
+ bank
391
+ bankrupts
392
+ bans
393
+ baptism
394
+ baptized
395
+ barbarism
396
+ barbells
397
+ bards
398
+ barest
399
+ barhop
400
+ barks
401
+ barnhard
402
+ barometers
403
+ barr
404
+ barren
405
+ barron
406
+ barter
407
+ basalt
408
+ baseless
409
+ bash
410
+ basics
411
+ basketball
412
+ bassinets
413
+ batavia
414
+ bather
415
+ bathtub
416
+ batted
417
+ batting
418
+ battlements
419
+ baudelaire
420
+ bawling
421
+ bayonet
422
+ be
423
+ beaded
424
+ beaker
425
+ beanbag
426
+ bearded
427
+ beast
428
+ beatification
429
+ beau
430
+ beautified
431
+ beavers
432
+ becker
433
+ becomingly
434
+ bedder
435
+ bedpost
436
+ bedspread
437
+ beecham
438
+ beefy
439
+ beethoven
440
+ befell
441
+ befoul
442
+ befuddles
443
+ beggary
444
+ begotten
445
+ beguiling
446
+ behaviorism
447
+ behold
448
+ being
449
+ belay
450
+ belfry
451
+ believable
452
+ belittles
453
+ belles
454
+ belligerents
455
+ bells
456
+ belong
457
+ belting
458
+ bemoans
459
+ bendable
460
+ benedictions
461
+ beneficiary
462
+ bengal
463
+ bent
464
+ bequeath
465
+ berating
466
+ beresford
467
+ beribboned
468
+ berliners
469
+ bernardine
470
+ bernoulli
471
+ bertie
472
+ besets
473
+ besmirched
474
+ bespoke
475
+ besting
476
+ bet
477
+ betrayed
478
+ bette
479
+ between
480
+ bewail
481
+ bewilderment
482
+ bianco
483
+ bibles
484
+ bicarbonate
485
+ biconvex
486
+ bidder
487
+ biennial
488
+ bigger
489
+ biharmonic
490
+ bilabial
491
+ bilk
492
+ billet
493
+ billings
494
+ bimetallism
495
+ bind
496
+ binghamton
497
+ biochemistry
498
+ biologically
499
+ biopsy
500
+ bipeds
501
+ birdbaths
502
+ birminghamize
503
+ births
504
+ bisectors
505
+ bisques
506
+ bites
507
+ bitterly
508
+ bivalves
509
+ blabbermouths
510
+ blackburn
511
+ blackfoots
512
+ blackmailed
513
+ blacks
514
+ blaine
515
+ blamers
516
+ bland
517
+ blanketers
518
+ blares
519
+ blasphemousness
520
+ blatz
521
+ bleachers
522
+ bleating
523
+ blemishes
524
+ blessings
525
+ blindfold
526
+ blinked
527
+ blissfully
528
+ blizzard
529
+ bloch
530
+ blockers
531
+ blond
532
+ bloodiest
533
+ bloom
534
+ blossoms
535
+ blowfish
536
+ bludgeons
537
+ blueprint
538
+ bluish
539
+ blunted
540
+ blurring
541
+ blushing
542
+ boarded
543
+ boaster
544
+ boathouse
545
+ boatswain
546
+ bobbsey
547
+ bodenheim
548
+ bodybuilding
549
+ bogart
550
+ bogus
551
+ boilers
552
+ boldface
553
+ bolshevist
554
+ bolton
555
+ bombastic
556
+ bonanzas
557
+ bondsman
558
+ bonham
559
+ bontempo
560
+ bookcases
561
+ bookkeepers
562
+ bookstore
563
+ booms
564
+ booster
565
+ bootle
566
+ bootstrapping
567
+ borden
568
+ borealis
569
+ born
570
+ borrowers
571
+ bosses
572
+ botanist
573
+ bother
574
+ bottler
575
+ botulism
576
+ bounce
577
+ bounden
578
+ bouquet
579
+ boutique
580
+ bowdlerizing
581
+ bowl
582
+ bowstring
583
+ boxing
584
+ boyfriend
585
+ braced
586
+ bradbury
587
+ bragger
588
+ braille
589
+ brainstorm
590
+ brakes
591
+ branchings
592
+ brandishing
593
+ brashly
594
+ braun
595
+ braving
596
+ braying
597
+ brazil
598
+ bread
599
+ breadwinners
600
+ breakfast
601
+ breakthrough
602
+ breastworks
603
+ breathlessly
604
+ breeding
605
+ brennan
606
+ brevet
607
+ brewery
608
+ bribers
609
+ bricklayers
610
+ bridge
611
+ bridgework
612
+ briefed
613
+ brig
614
+ brighten
615
+ brighton
616
+ brimming
617
+ brings
618
+ bristle
619
+ britisher
620
+ broaches
621
+ broadcasts
622
+ broadly
623
+ broglie
624
+ brokenness
625
+ bronchial
626
+ brooch
627
+ brookfield
628
+ broth
629
+ browbeat
630
+ brownian
631
+ bruce
632
+ brunette
633
+ brushing
634
+ brutalized
635
+ bryce
636
+ buchwald
637
+ buckler
638
+ bucky
639
+ buddies
640
+ budgeters
641
+ buff
642
+ buffetings
643
+ bugger
644
+ bugs
645
+ built
646
+ bulging
647
+ bulldoze
648
+ bullfrog
649
+ bullying
650
+ bumbling
651
+ bumptious
652
+ bundle
653
+ bungler
654
+ bunkhouse
655
+ bunted
656
+ buoys
657
+ bureaucracy
658
+ burgher
659
+ burglarproofing
660
+ burke
661
+ burn
662
+ burnings
663
+ burntness
664
+ burrowing
665
+ bursty
666
+ busch
667
+ bushwhacked
668
+ businesslike
669
+ bustards
670
+ butchered
671
+ buttercup
672
+ butternut
673
+ buttonholes
674
+ butyrate
675
+ buzzard
676
+ bye
677
+ bypassing
678
+ bystander
679
+ byzantinizes
680
+ cabinet
681
+ cache
682
+ cactus
683
+ caesarize
684
+ cager
685
+ cajole
686
+ calais
687
+ calculate
688
+ calculus
689
+ calgary
690
+ calico
691
+ callaghan
692
+ calloused
693
+ calmingly
694
+ caltech
695
+ calypso
696
+ camembert
697
+ camino
698
+ campaigning
699
+ camps
700
+ canadianize
701
+ canceled
702
+ candidacy
703
+ candler
704
+ canine
705
+ cannery
706
+ cannon
707
+ canonical
708
+ canopy
709
+ canto
710
+ canvassed
711
+ capable
712
+ capacitors
713
+ capita
714
+ capitalizers
715
+ capping
716
+ capstone
717
+ captivates
718
+ capturer
719
+ caravans
720
+ carbondale
721
+ carbonizing
722
+ cardboard
723
+ cardiology
724
+ carefully
725
+ caressing
726
+ caricature
727
+ carlsbad
728
+ carnation
729
+ caroline
730
+ carpenters
731
+ carriages
732
+ carruthers
733
+ carter
734
+ carton
735
+ carve
736
+ cascades
737
+ cashed
738
+ casings
739
+ cassette
740
+ castes
741
+ casts
742
+ catalina
743
+ catapult
744
+ catches
745
+ categorizes
746
+ cathedral
747
+ catholicisms
748
+ cattle
749
+ cauldrons
750
+ causer
751
+ cautioner
752
+ cavalierness
753
+ cavernous
754
+ cawing
755
+ cecil
756
+ celanese
757
+ celerity
758
+ cellist
759
+ celticizes
760
+ censoring
761
+ centaur
762
+ centimeter
763
+ centralized
764
+ centroid
765
+ cerebral
766
+ certainties
767
+ certifies
768
+ cezanne
769
+ chaffey
770
+ chairing
771
+ chalices
772
+ challenging
773
+ champaign
774
+ chancellor
775
+ changeability
776
+ channeled
777
+ chanter
778
+ chapel
779
+ chapter
780
+ characterize
781
+ chargeable
782
+ charitable
783
+ charlotte
784
+ chars
785
+ chartings
786
+ chasing
787
+ chastisers
788
+ chattel
789
+ chauffeured
790
+ cheaply
791
+ checkbook
792
+ checkout
793
+ cheekbone
794
+ cheeriness
795
+ cheeses
796
+ chemise
797
+ cherishes
798
+ cheryl
799
+ chests
800
+ cheyennes
801
+ chicanos
802
+ chides
803
+ childhood
804
+ chill
805
+ chime
806
+ chinas
807
+ chinning
808
+ chiropractor
809
+ chit
810
+ chloroplasts
811
+ choir
812
+ choose
813
+ chopping
814
+ choreograph
815
+ chou
816
+ christenson
817
+ christianizing
818
+ christoph
819
+ chronicle
820
+ chronology
821
+ chuckles
822
+ churchgoing
823
+ churn
824
+ ciceronianize
825
+ cinderella
826
+ ciphertexts
827
+ circuitously
828
+ circulating
829
+ circumnavigates
830
+ circumstanced
831
+ circuses
832
+ cities
833
+ civet
834
+ civilized
835
+ claimed
836
+ clambers
837
+ clams
838
+ clapboard
839
+ clarifications
840
+ clash
841
+ classes
842
+ classifiers
843
+ clattered
844
+ claustrophobia
845
+ cleaned
846
+ cleansed
847
+ clearer
848
+ cleaved
849
+ clemente
850
+ clerked
851
+ cliches
852
+ cliffs
853
+ climb
854
+ clincher
855
+ clink
856
+ clippers
857
+ cloaks
858
+ clockings
859
+ clogs
860
+ closeness
861
+ closing
862
+ clothing
863
+ clouding
864
+ clowns
865
+ clucks
866
+ clumsy
867
+ clutching
868
+ coaches
869
+ coalition
870
+ coastal
871
+ coating
872
+ coaxing
873
+ cobweb
874
+ cockpit
875
+ cocoon
876
+ codes
877
+ codifies
878
+ coefficient
879
+ coexist
880
+ coffer
881
+ cogitated
882
+ cogs
883
+ cohering
884
+ coils
885
+ coinciding
886
+ colder
887
+ colicky
888
+ collaborator
889
+ collared
890
+ collecting
891
+ colleges
892
+ collins
893
+ colombia
894
+ colonies
895
+ colons
896
+ colorless
897
+ columnize
898
+ combated
899
+ combinator
900
+ combings
901
+ comedic
902
+ cometary
903
+ comforting
904
+ comma
905
+ commandment
906
+ commemorative
907
+ commended
908
+ commenting
909
+ commissioners
910
+ committeemen
911
+ commonalities
912
+ commonwealth
913
+ communicated
914
+ communists
915
+ commuting
916
+ compactors
917
+ comparably
918
+ comparison
919
+ compassion
920
+ compelling
921
+ compensatory
922
+ competitions
923
+ compilers
924
+ complaint
925
+ completed
926
+ complexities
927
+ complications
928
+ complimenting
929
+ composedly
930
+ compost
931
+ comprehensibility
932
+ compression
933
+ compromisers
934
+ compulsory
935
+ computed
936
+ comradely
937
+ concatenation
938
+ concede
939
+ conceived
940
+ concentrators
941
+ conceptualized
942
+ concerted
943
+ conciseness
944
+ concoct
945
+ concretes
946
+ concurring
947
+ condemns
948
+ conditional
949
+ condoned
950
+ conduction
951
+ confectionery
952
+ conferred
953
+ confessions
954
+ confidential
955
+ configure
956
+ confining
957
+ confiscates
958
+ confocal
959
+ confounding
960
+ confucian
961
+ confusion
962
+ congo
963
+ congregating
964
+ congresswomen
965
+ conjoined
966
+ conjuncture
967
+ connected
968
+ connector
969
+ connors
970
+ conquered
971
+ conrail
972
+ consecrate
973
+ consenting
974
+ conservation
975
+ conserved
976
+ considered
977
+ consistent
978
+ consolers
979
+ consonants
980
+ conspirator
981
+ constant
982
+ constituent
983
+ constitutions
984
+ constructed
985
+ constructs
986
+ consultant
987
+ consumed
988
+ consumptions
989
+ contain
990
+ contaminated
991
+ contemplative
992
+ contender
993
+ contentment
994
+ context
995
+ continents
996
+ continuations
997
+ contortions
998
+ contracting
999
+ contradicting
1000
+ contraptions
1001
+ contribute
1002
+ contrite
1003
+ controllability
1004
+ controversy
1005
+ convened
1006
+ conventionally
1007
+ conversantly
1008
+ conversion
1009
+ convex
1010
+ convict
1011
+ convinces
1012
+ convoys
1013
+ cooked
1014
+ coolers
1015
+ coon
1016
+ cooperations
1017
+ coordinates
1018
+ copeland
1019
+ copings
1020
+ coprocessor
1021
+ coquette
1022
+ cords
1023
+ corinthian
1024
+ corks
1025
+ cornered
1026
+ corns
1027
+ coronary
1028
+ corporately
1029
+ correct
1030
+ correctness
1031
+ correspond
1032
+ corridors
1033
+ corroborative
1034
+ corruption
1035
+ corvallis
1036
+ cosmopolitan
1037
+ costs
1038
+ cots
1039
+ cotyledon
1040
+ coughs
1041
+ councilwoman
1042
+ counselors
1043
+ counteracting
1044
+ counterfeited
1045
+ counterpart
1046
+ countersunk
1047
+ countrywide
1048
+ couplings
1049
+ courser
1050
+ courtesies
1051
+ courtrooms
1052
+ covenant
1053
+ coverlet
1054
+ covetousness
1055
+ cower
1056
+ cowl
1057
+ coypu
1058
+ crackers
1059
+ cradles
1060
+ craftsperson
1061
+ cramps
1062
+ crank
1063
+ cranny
1064
+ crater
1065
+ crawford
1066
+ craze
1067
+ creaked
1068
+ creams
1069
+ creation
1070
+ credence
1071
+ creditor
1072
+ creeks
1073
+ cremates
1074
+ crescents
1075
+ cretin
1076
+ cricket
1077
+ criminal
1078
+ cripple
1079
+ crisscross
1080
+ criticizes
1081
+ croaks
1082
+ crocus
1083
+ cropper
1084
+ crosser
1085
+ crosstalk
1086
+ crowd
1087
+ crowning
1088
+ crucifixion
1089
+ cruel
1090
+ cruising
1091
+ crumpled
1092
+ crusade
1093
+ crushes
1094
+ crux
1095
+ cryptic
1096
+ crystallize
1097
+ cubans
1098
+ cucumbers
1099
+ cufflink
1100
+ culminate
1101
+ cultivable
1102
+ cultural
1103
+ cummings
1104
+ cupboard
1105
+ curb
1106
+ curing
1107
+ curlers
1108
+ current
1109
+ currying
1110
+ cursory
1111
+ curtly
1112
+ curving
1113
+ custer
1114
+ customizable
1115
+ cut
1116
+ cuts
1117
+ cyanamid
1118
+ cyclically
1119
+ cygnus
1120
+ cypress
1121
+ cytoplasm
1122
+ dabbles
1123
+ dadaistic
1124
+ dahl
1125
+ dairy
1126
+ dali
1127
+ damages
1128
+ damns
1129
+ damsel
1130
+ dancing
1131
+ dangle
1132
+ danize
1133
+ dare
1134
+ darken
1135
+ darn
1136
+ darted
1137
+ darwinizes
1138
+ database
1139
+ dates
1140
+ daunted
1141
+ davy
1142
+ daydreams
1143
+ dazzled
1144
+ deaden
1145
+ deaf
1146
+ dealings
1147
+ deanna
1148
+ death
1149
+ debater
1150
+ debilitates
1151
+ debtor
1152
+ debutante
1153
+ decay
1154
+ deceit
1155
+ decelerate
1156
+ decent
1157
+ decidability
1158
+ decimate
1159
+ decision
1160
+ decks
1161
+ declarer
1162
+ decliners
1163
+ decodings
1164
+ decomposition
1165
+ decorative
1166
+ decreases
1167
+ decrements
1168
+ dedicated
1169
+ deduct
1170
+ deeding
1171
+ deep
1172
+ deere
1173
+ defeats
1174
+ defendant
1175
+ defenestrating
1176
+ deferments
1177
+ deficiencies
1178
+ define
1179
+ definitions
1180
+ deformation
1181
+ defy
1182
+ degradation
1183
+ deify
1184
+ dejected
1185
+ delaying
1186
+ deleter
1187
+ deliberated
1188
+ delicacies
1189
+ delightful
1190
+ delimiting
1191
+ delirious
1192
+ deliveries
1193
+ delphic
1194
+ deluged
1195
+ demand
1196
+ demeter
1197
+ demodulate
1198
+ demons
1199
+ demonstrator
1200
+ demultiplex
1201
+ denebola
1202
+ denigrates
1203
+ denominators
1204
+ denoting
1205
+ densest
1206
+ dentists
1207
+ denying
1208
+ departure
1209
+ dependent
1210
+ depleted
1211
+ deploy
1212
+ depose
1213
+ depositors
1214
+ depreciated
1215
+ deprivations
1216
+ dequeued
1217
+ deregulate
1218
+ derive
1219
+ descend
1220
+ descents
1221
+ descriptively
1222
+ deserters
1223
+ deservings
1224
+ designator
1225
+ desire
1226
+ desolate
1227
+ despatched
1228
+ despite
1229
+ destabilize
1230
+ destroyed
1231
+ destructiveness
1232
+ detacher
1233
+ detained
1234
+ detective
1235
+ deteriorated
1236
+ determination
1237
+ deterministic
1238
+ detractor
1239
+ devastate
1240
+ development
1241
+ deviation
1242
+ devised
1243
+ devotedly
1244
+ devours
1245
+ dexedrine
1246
+ diagnose
1247
+ diagonals
1248
+ dial
1249
+ dialogue
1250
+ diamond
1251
+ diarrhea
1252
+ dickinson
1253
+ dictatorial
1254
+ diddle
1255
+ dies
1256
+ dietrich
1257
+ differentials
1258
+ differers
1259
+ diffusely
1260
+ digest
1261
+ diggings
1262
+ digits
1263
+ digressing
1264
+ dilapidate
1265
+ diligence
1266
+ dilution
1267
+ dimensions
1268
+ dimmed
1269
+ dine
1270
+ dining
1271
+ diogenes
1272
+ diphthong
1273
+ dipper
1274
+ direction
1275
+ directorate
1276
+ dirt
1277
+ disable
1278
+ disaffection
1279
+ disallowing
1280
+ disappearances
1281
+ disapprove
1282
+ disassembles
1283
+ disbands
1284
+ discarding
1285
+ discerns
1286
+ disciplines
1287
+ disclosure
1288
+ disconnects
1289
+ discord
1290
+ discouraging
1291
+ discovery
1292
+ discretion
1293
+ discuss
1294
+ disease
1295
+ disfigure
1296
+ disgruntle
1297
+ disgustingly
1298
+ dishonestly
1299
+ dishwater
1300
+ disjoint
1301
+ disk
1302
+ dislocates
1303
+ dismaying
1304
+ dismissers
1305
+ disobedient
1306
+ disown
1307
+ dispatched
1308
+ dispensary
1309
+ dispersed
1310
+ displacing
1311
+ displeasing
1312
+ disposition
1313
+ disputer
1314
+ disquieting
1315
+ disruption
1316
+ dissemble
1317
+ dissenter
1318
+ dissimilarities
1319
+ dissociating
1320
+ distaff
1321
+ distastes
1322
+ distilling
1323
+ distinguish
1324
+ distorts
1325
+ distresses
1326
+ distributivity
1327
+ disturbed
1328
+ ditty
1329
+ divergence
1330
+ diversifies
1331
+ diverting
1332
+ dividend
1333
+ divining
1334
+ divisors
1335
+ dixieland
1336
+ doberman
1337
+ doctoral
1338
+ documentaries
1339
+ dodecahedra
1340
+ doe
1341
+ doghouse
1342
+ dolan
1343
+ dollies
1344
+ domenico
1345
+ domicile
1346
+ domineering
1347
+ donahue
1348
+ donkey
1349
+ dooley
1350
+ doorman
1351
+ dopers
1352
+ doric
1353
+ dortmund
1354
+ doted
1355
+ doubleheader
1356
+ doubt
1357
+ doubts
1358
+ doves
1359
+ downey
1360
+ downloading
1361
+ downstairs
1362
+ doyle
1363
+ draconian
1364
+ drafty
1365
+ dragooned
1366
+ dram
1367
+ drape
1368
+ draughts
1369
+ drawings
1370
+ dreaded
1371
+ dreamers
1372
+ dregs
1373
+ dressing
1374
+ dries
1375
+ driller
1376
+ drip
1377
+ driveway
1378
+ droop
1379
+ droppers
1380
+ droves
1381
+ drudgery
1382
+ drummers
1383
+ drunkly
1384
+ duality
1385
+ dubuque
1386
+ ducts
1387
+ dug
1388
+ dullness
1389
+ dumbly
1390
+ dunbar
1391
+ dungeons
1392
+ duplicable
1393
+ dupont
1394
+ duration
1395
+ durward
1396
+ duster
1397
+ dutchman
1398
+ dwarfed
1399
+ dwelt
1400
+ dyeing
1401
+ dynamism
1402
+ dysentery
1403
+ ear
1404
+ earmarked
1405
+ earnestness
1406
+ earth
1407
+ earthquakes
1408
+ eases
1409
+ easterner
1410
+ easy
1411
+ eaves
1412
+ eben
1413
+ echoed
1414
+ ecology
1415
+ economize
1416
+ ecuador
1417
+ edenizes
1418
+ edict
1419
+ edition
1420
+ edmonton
1421
+ educating
1422
+ edwards
1423
+ effecting
1424
+ efficacy
1425
+ effortlessness
1426
+ eggshell
1427
+ egyptianize
1428
+ eigenstate
1429
+ eighthes
1430
+ eisner
1431
+ ejecting
1432
+ elaborately
1433
+ elapses
1434
+ elderly
1435
+ elections
1436
+ electrically
1437
+ electrocute
1438
+ electroencephalography
1439
+ electronics
1440
+ elemental
1441
+ elevation
1442
+ elicited
1443
+ eliminating
1444
+ elite
1445
+ ella
1446
+ ellipsoids
1447
+ elmhurst
1448
+ else
1449
+ elucidation
1450
+ ely
1451
+ emancipate
1452
+ embarrass
1453
+ embeds
1454
+ embodied
1455
+ embracing
1456
+ emerald
1457
+ emeritus
1458
+ emil
1459
+ emits
1460
+ emotionally
1461
+ emphasizing
1462
+ employable
1463
+ emporium
1464
+ emptily
1465
+ emulator
1466
+ enacted
1467
+ encamping
1468
+ enchanter
1469
+ encircled
1470
+ encoder
1471
+ encounter
1472
+ encouragingly
1473
+ encumbered
1474
+ endangers
1475
+ endemic
1476
+ endorse
1477
+ endows
1478
+ enduringly
1479
+ enfeeble
1480
+ enfranchise
1481
+ engels
1482
+ engines
1483
+ englishmen
1484
+ engulf
1485
+ enjoin
1486
+ enjoys
1487
+ enlightened
1488
+ enlivens
1489
+ enormity
1490
+ enquirer
1491
+ enriches
1492
+ ensembles
1493
+ ensnaring
1494
+ ensures
1495
+ enterprise
1496
+ entertainment
1497
+ enticed
1498
+ entitle
1499
+ entreat
1500
+ entrepreneurs
1501
+ enumerated
1502
+ enveloped
1503
+ environ
1504
+ envisioned
1505
+ ephemeral
1506
+ epicurizes
1507
+ episcopalian
1508
+ epitaphs
1509
+ epochs
1510
+ equalize
1511
+ equates
1512
+ equilibrate
1513
+ equips
1514
+ equivocally
1515
+ erased
1516
+ ere
1517
+ ergo
1518
+ erlang
1519
+ erode
1520
+ erratum
1521
+ errs
1522
+ escalates
1523
+ escapes
1524
+ escorts
1525
+ especially
1526
+ esquires
1527
+ essentially
1528
+ estates
1529
+ estimated
1530
+ eternal
1531
+ ethernets
1532
+ etruria
1533
+ eulerian
1534
+ eurasia
1535
+ europeanized
1536
+ evade
1537
+ evaluative
1538
+ evaporation
1539
+ evenhandedness
1540
+ events
1541
+ everglades
1542
+ everything
1543
+ evidences
1544
+ evinces
1545
+ evolve
1546
+ exacerbated
1547
+ exactions
1548
+ exaggerations
1549
+ examined
1550
+ exasperates
1551
+ exceeded
1552
+ excellently
1553
+ exceptions
1554
+ exchangeable
1555
+ excision
1556
+ excitingly
1557
+ exclamatory
1558
+ exclusiveness
1559
+ excreting
1560
+ excused
1561
+ executional
1562
+ exemplified
1563
+ exempts
1564
+ exertion
1565
+ exhaustedly
1566
+ exhibitions
1567
+ exile
1568
+ existentialist
1569
+ exorbitant
1570
+ expanders
1571
+ expect
1572
+ expects
1573
+ expeditious
1574
+ expenditure
1575
+ experiencing
1576
+ experiments
1577
+ expires
1578
+ explanations
1579
+ exploit
1580
+ explorations
1581
+ explosive
1582
+ exponentiating
1583
+ exports
1584
+ exposure
1585
+ expressibility
1586
+ expulsion
1587
+ extemporaneous
1588
+ extensive
1589
+ exterminate
1590
+ extinguished
1591
+ extract
1592
+ extraneous
1593
+ extrapolation
1594
+ extremely
1595
+ exult
1596
+ eyeglasses
1597
+ eyesight
1598
+ fables
1599
+ facade
1600
+ facile
1601
+ facsimile
1602
+ factories
1603
+ faculty
1604
+ fagin
1605
+ failsoft
1606
+ faintness
1607
+ fairing
1608
+ faithful
1609
+ fakes
1610
+ fallacious
1611
+ falmouth
1612
+ falsifying
1613
+ familiar
1614
+ families
1615
+ fanaticism
1616
+ fanciness
1617
+ fanning
1618
+ farad
1619
+ farewells
1620
+ farmers
1621
+ farrell
1622
+ fascination
1623
+ fasted
1624
+ fastidious
1625
+ fate
1626
+ fathomed
1627
+ fatten
1628
+ faulkner
1629
+ fauna
1630
+ favoring
1631
+ fayette
1632
+ fearlessly
1633
+ feat
1634
+ featherweight
1635
+ fed
1636
+ feebleness
1637
+ feeds
1638
+ feet
1639
+ feline
1640
+ fellowships
1641
+ feminism
1642
+ fencing
1643
+ fermentation
1644
+ ferociously
1645
+ fertile
1646
+ fervent
1647
+ festivity
1648
+ fettered
1649
+ feverish
1650
+ fiat
1651
+ fibrously
1652
+ fiddled
1653
+ fief
1654
+ fiendish
1655
+ fifteenth
1656
+ fighting
1657
+ fiji
1658
+ files
1659
+ filled
1660
+ filming
1661
+ filthy
1662
+ finals
1663
+ finder
1664
+ fines
1665
+ fingerprint
1666
+ finishes
1667
+ finnish
1668
+ fireboat
1669
+ firemen
1670
+ firewall
1671
+ firming
1672
+ fiscally
1673
+ fishes
1674
+ fissured
1675
+ fitly
1676
+ fitzpatrick
1677
+ fixation
1678
+ fixture
1679
+ flagged
1680
+ flak
1681
+ flamer
1682
+ flanking
1683
+ flash
1684
+ flask
1685
+ flattered
1686
+ flaunting
1687
+ flawlessly
1688
+ fledglings
1689
+ fleetly
1690
+ flemishing
1691
+ flew
1692
+ flicking
1693
+ flinches
1694
+ flirt
1695
+ floated
1696
+ flood
1697
+ floors
1698
+ florentine
1699
+ flossing
1700
+ flourished
1701
+ floweriness
1702
+ fluctuate
1703
+ fluffier
1704
+ fluoresce
1705
+ fluting
1706
+ flying
1707
+ focal
1708
+ foes
1709
+ fogy
1710
+ folders
1711
+ folksy
1712
+ folsom
1713
+ font
1714
+ fooled
1715
+ football
1716
+ footing
1717
+ forage
1718
+ forbes
1719
+ forcer
1720
+ forearms
1721
+ forefathers
1722
+ foreign
1723
+ foreseeable
1724
+ forestalls
1725
+ forever
1726
+ forge
1727
+ forgettable
1728
+ forgiving
1729
+ forlornly
1730
+ formalized
1731
+ formatively
1732
+ formicas
1733
+ formulated
1734
+ forsaken
1735
+ forthwith
1736
+ fortiori
1737
+ fortuitously
1738
+ forwarder
1739
+ fought
1740
+ foundation
1741
+ founds
1742
+ foursome
1743
+ foxes
1744
+ fragile
1745
+ fragrantly
1746
+ framing
1747
+ francie
1748
+ francoise
1749
+ franking
1750
+ fraser
1751
+ fray
1752
+ freckle
1753
+ frederico
1754
+ freeing
1755
+ frees
1756
+ freezing
1757
+ frenchizes
1758
+ frequented
1759
+ freshened
1760
+ freshness
1761
+ freudianism
1762
+ friction
1763
+ friendlier
1764
+ friezes
1765
+ frightful
1766
+ frisia
1767
+ frivolity
1768
+ from
1769
+ fronts
1770
+ frothing
1771
+ fruehauf
1772
+ fruits
1773
+ fuchsia
1774
+ fujitsu
1775
+ full
1776
+ fumbling
1777
+ functionally
1778
+ fundamentally
1779
+ fungal
1780
+ funnier
1781
+ furlong
1782
+ furniture
1783
+ furthermore
1784
+ fuses
1785
+ futuristic
1786
+ gabled
1787
+ gadgetry
1788
+ gaging
1789
+ gaines
1790
+ galactic
1791
+ galaxy
1792
+ gallantly
1793
+ gallon
1794
+ gallstone
1795
+ gambled
1796
+ games
1797
+ gangplank
1798
+ gaped
1799
+ garbed
1800
+ gardner
1801
+ garlanded
1802
+ garrisoned
1803
+ gaseous
1804
+ gaspee
1805
+ gastric
1806
+ gathered
1807
+ gauche
1808
+ gaunt
1809
+ gawky
1810
+ gaze
1811
+ gearing
1812
+ gelatin
1813
+ gemma
1814
+ generality
1815
+ generals
1816
+ generic
1817
+ genetic
1818
+ genre
1819
+ gentler
1820
+ geodesic
1821
+ geological
1822
+ geophysical
1823
+ geraldine
1824
+ germane
1825
+ germinates
1826
+ gestapo
1827
+ getting
1828
+ ghosted
1829
+ gibraltar
1830
+ gig
1831
+ giggle
1832
+ gilds
1833
+ gilt
1834
+ ginghams
1835
+ gipsy
1836
+ girlish
1837
+ giver
1838
+ gladdest
1839
+ glance
1840
+ glaring
1841
+ glazed
1842
+ gleaner
1843
+ glenda
1844
+ glimmer
1845
+ glints
1846
+ gloat
1847
+ gloria
1848
+ glorying
1849
+ glove
1850
+ glowing
1851
+ glynn
1852
+ gnu
1853
+ goats
1854
+ goblins
1855
+ godmother
1856
+ goethe
1857
+ goldenly
1858
+ goldstine
1859
+ gondola
1860
+ goode
1861
+ goodyear
1862
+ goren
1863
+ gorton
1864
+ got
1865
+ gothicizing
1866
+ gouging
1867
+ government
1868
+ grab
1869
+ gracefully
1870
+ gradations
1871
+ gradual
1872
+ graft
1873
+ grained
1874
+ grams
1875
+ grandfather
1876
+ grandpa
1877
+ grant
1878
+ granulates
1879
+ graphical
1880
+ graspable
1881
+ grassiest
1882
+ gratification
1883
+ gratuitously
1884
+ graves
1885
+ grayed
1886
+ grease
1887
+ grecianize
1888
+ greeks
1889
+ greenfeld
1890
+ greens
1891
+ greeter
1892
+ grenades
1893
+ greyest
1894
+ grievances
1895
+ griffith
1896
+ grimes
1897
+ grinds
1898
+ gripped
1899
+ gritty
1900
+ grocers
1901
+ grooved
1902
+ grossest
1903
+ groton
1904
+ group
1905
+ grovels
1906
+ growling
1907
+ grubs
1908
+ grumbling
1909
+ guano
1910
+ guardedly
1911
+ gubernatorial
1912
+ guest
1913
+ guideline
1914
+ guiltier
1915
+ guises
1916
+ gullah
1917
+ gumming
1918
+ gunner
1919
+ gurgle
1920
+ gustafson
1921
+ guts
1922
+ guyer
1923
+ gymnastics
1924
+ haas
1925
+ habitual
1926
+ hacks
1927
+ hag
1928
+ hail
1929
+ hairier
1930
+ hale
1931
+ hallmark
1932
+ halpern
1933
+ halve
1934
+ hamburgers
1935
+ hammering
1936
+ hampshire
1937
+ handbooks
1938
+ handicap
1939
+ handkerchiefs
1940
+ handshake
1941
+ handy
1942
+ hangman
1943
+ hannah
1944
+ hansel
1945
+ haplessly
1946
+ happily
1947
+ harbinger
1948
+ harder
1949
+ hardships
1950
+ harken
1951
+ harmfulness
1952
+ harmoniously
1953
+ harnessing
1954
+ harriman
1955
+ harry
1956
+ harvardize
1957
+ harveys
1958
+ hassle
1959
+ hat
1960
+ hatefully
1961
+ hattie
1962
+ hauler
1963
+ hausa
1964
+ havoc
1965
+ hawthorne
1966
+ haywood
1967
+ head
1968
+ headlands
1969
+ headroom
1970
+ heals
1971
+ healy
1972
+ hearings
1973
+ heartily
1974
+ heater
1975
+ heaved
1976
+ heaviness
1977
+ hebrides
1978
+ hedgehog
1979
+ heeds
1980
+ hegelianizes
1981
+ heights
1982
+ heiresses
1983
+ helicopter
1984
+ hellenized
1985
+ helmet
1986
+ helpfully
1987
+ hem
1988
+ hemp
1989
+ hendrick
1990
+ henrietta
1991
+ heralds
1992
+ herder
1993
+ hereford
1994
+ hereunder
1995
+ hermit
1996
+ heroically
1997
+ herring
1998
+ hertzog
1999
+ hesperus
2000
+ heterogenous
2001
+ heuser
2002
+ hexagon
2003
+ hibernate
2004
+ hidden
2005
+ hierarchic
2006
+ highfield
2007
+ highnesses
2008
+ hikes
2009
+ hillcrest
2010
+ hilt
2011
+ hindered
2012
+ hindustan
2013
+ hinting
2014
+ hired
2015
+ his
2016
+ histograms
2017
+ hitch
2018
+ hither
2019
+ hitting
2020
+ hoarseness
2021
+ hobby
2022
+ hoe
2023
+ hoists
2024
+ holds
2025
+ hollandaise
2026
+ hollowness
2027
+ holocaust
2028
+ homage
2029
+ homeomorphism
2030
+ homespun
2031
+ homing
2032
+ homosexual
2033
+ honesty
2034
+ honeymooning
2035
+ honoraries
2036
+ hoodlum
2037
+ hooker
2038
+ hoosierize
2039
+ hooves
2040
+ hopelessness
2041
+ horace
2042
+ horn
2043
+ horrible
2044
+ horrors
2045
+ horseshoer
2046
+ hospitalize
2047
+ hostesses
2048
+ hotly
2049
+ hounding
2050
+ houseflies
2051
+ housetop
2052
+ hover
2053
+ howled
2054
+ hubert
2055
+ huey
2056
+ hugo
2057
+ humanities
2058
+ humbling
2059
+ humidifiers
2060
+ humiliation
2061
+ humorers
2062
+ humpty
2063
+ hung
2064
+ hungry
2065
+ huntley
2066
+ hurling
2067
+ hurrying
2068
+ husbands
2069
+ husks
2070
+ hutchins
2071
+ hyde
2072
+ hygiene
2073
+ hyphenate
2074
+ hypotheses
2075
+ hysterical
2076
+ ibsen
2077
+ icicle
2078
+ icosahedron
2079
+ idealize
2080
+ identical
2081
+ identify
2082
+ idiosyncrasy
2083
+ idles
2084
+ ignite
2085
+ ignores
2086
+ illegality
2087
+ illogical
2088
+ illusions
2089
+ illustrative
2090
+ imagen
2091
+ imagine
2092
+ imbrium
2093
+ immaterial
2094
+ immensely
2095
+ immigrating
2096
+ immovability
2097
+ impacted
2098
+ impale
2099
+ impatiently
2100
+ impedes
2101
+ impenetrable
2102
+ imperfectly
2103
+ impermanent
2104
+ impersonations
2105
+ impinges
2106
+ implementable
2107
+ implicants
2108
+ implied
2109
+ important
2110
+ imposes
2111
+ impotence
2112
+ impractically
2113
+ impressible
2114
+ impressment
2115
+ imprisonments
2116
+ improvement
2117
+ improvisers
2118
+ impulsion
2119
+ inaccessible
2120
+ inadequate
2121
+ inane
2122
+ inaudible
2123
+ inca
2124
+ incas
2125
+ incessantly
2126
+ incidentally
2127
+ inciting
2128
+ incloses
2129
+ inclusiveness
2130
+ incomparable
2131
+ incompletely
2132
+ incongruity
2133
+ inconsistent
2134
+ inconvenient
2135
+ incorrectness
2136
+ incredulous
2137
+ incubate
2138
+ incurable
2139
+ indecisive
2140
+ indent
2141
+ indescribable
2142
+ indexing
2143
+ indication
2144
+ indifference
2145
+ indignation
2146
+ indirectly
2147
+ indistinct
2148
+ individually
2149
+ indoctrinating
2150
+ indubitable
2151
+ inductances
2152
+ inducts
2153
+ industrialist
2154
+ industry
2155
+ inelegant
2156
+ inertly
2157
+ inexact
2158
+ inexplicable
2159
+ infantry
2160
+ infection
2161
+ inferior
2162
+ infertile
2163
+ infinite
2164
+ infirmary
2165
+ inflated
2166
+ inflicting
2167
+ inform
2168
+ informatively
2169
+ infrequently
2170
+ infuriating
2171
+ ingeniousness
2172
+ ingratiate
2173
+ inhabited
2174
+ inherently
2175
+ inheritress
2176
+ inhibitor
2177
+ inimical
2178
+ initialized
2179
+ initiating
2180
+ injection
2181
+ injured
2182
+ inker
2183
+ inlet
2184
+ inner
2185
+ innocuousness
2186
+ inoculate
2187
+ inquire
2188
+ inquisitive
2189
+ inscribed
2190
+ insecurely
2191
+ insertion
2192
+ insidiousness
2193
+ insinuated
2194
+ insistently
2195
+ insomnia
2196
+ inspiration
2197
+ installation
2198
+ instances
2199
+ instantiations
2200
+ instill
2201
+ institutes
2202
+ instruct
2203
+ instructs
2204
+ instruments
2205
+ insulation
2206
+ insurance
2207
+ insurrection
2208
+ integrand
2209
+ intellect
2210
+ intelligible
2211
+ intensification
2212
+ intensively
2213
+ inter
2214
+ intercept
2215
+ interchanged
2216
+ intercommunicates
2217
+ intercourse
2218
+ interested
2219
+ interfered
2220
+ intergroup
2221
+ interleaved
2222
+ interminable
2223
+ intermodule
2224
+ internationality
2225
+ interpersonal
2226
+ interposed
2227
+ interpreting
2228
+ interrelations
2229
+ interrupt
2230
+ intersecting
2231
+ interstate
2232
+ intervening
2233
+ interwoven
2234
+ intimation
2235
+ intolerance
2236
+ intractability
2237
+ intraoffice
2238
+ intrigued
2239
+ introductions
2240
+ intruder
2241
+ intubation
2242
+ invaders
2243
+ invalidities
2244
+ invariants
2245
+ inventively
2246
+ inverses
2247
+ inverting
2248
+ investigative
2249
+ inveterate
2250
+ invites
2251
+ invoked
2252
+ involves
2253
+ ionians
2254
+ ira
2255
+ irately
2256
+ irishman
2257
+ ironic
2258
+ irrational
2259
+ irregular
2260
+ irrepressible
2261
+ irreversibility
2262
+ irritable
2263
+ irving
2264
+ isfahan
2265
+ island
2266
+ isolated
2267
+ isomorphisms
2268
+ issuance
2269
+ it
2270
+ italicize
2271
+ itemizations
2272
+ iteration
2273
+ ito
2274
+ izvestia
2275
+ jackets
2276
+ jacky
2277
+ jacobus
2278
+ jailer
2279
+ jamaican
2280
+ janet
2281
+ janus
2282
+ jargon
2283
+ jauntiness
2284
+ jay
2285
+ jeanne
2286
+ jeffersonian
2287
+ jennifer
2288
+ jeremy
2289
+ jeroboam
2290
+ jest
2291
+ jesuitizing
2292
+ jeweled
2293
+ jews
2294
+ jingled
2295
+ joaquin
2296
+ joes
2297
+ john
2298
+ joiner
2299
+ jokers
2300
+ jolts
2301
+ jordan
2302
+ josephus
2303
+ jotting
2304
+ journals
2305
+ jousting
2306
+ joyous
2307
+ judaica
2308
+ judge
2309
+ judith
2310
+ jugoslavia
2311
+ julie
2312
+ jump
2313
+ junctures
2314
+ juniper
2315
+ juras
2316
+ jury
2317
+ justifiers
2318
+ jutland
2319
+ kaddish
2320
+ kamikazes
2321
+ kant
2322
+ karp
2323
+ katowice
2324
+ keeling
2325
+ keepers
2326
+ kemp
2327
+ kenney
2328
+ kepler
2329
+ kerouac
2330
+ key
2331
+ keypad
2332
+ khrushchevs
2333
+ kidde
2334
+ kidney
2335
+ kilimanjaro
2336
+ kills
2337
+ kilojoule
2338
+ kimono
2339
+ kindling
2340
+ kingpin
2341
+ kinnickinnic
2342
+ kirchoff
2343
+ kisses
2344
+ kiting
2345
+ klein
2346
+ knapsacks
2347
+ kneel
2348
+ knickerbockers
2349
+ knights
2350
+ knocked
2351
+ knots
2352
+ knowledge
2353
+ knuckles
2354
+ kodachrome
2355
+ korea
2356
+ krakatoa
2357
+ kronecker
2358
+ kurd
2359
+ labeling
2360
+ laborer
2361
+ labyrinths
2362
+ lacerta
2363
+ lacks
2364
+ ladies
2365
+ lagoon
2366
+ laidlaw
2367
+ lamarck
2368
+ lament
2369
+ lamp
2370
+ lanced
2371
+ landings
2372
+ lands
2373
+ lange
2374
+ languish
2375
+ laos
2376
+ lapse
2377
+ largely
2378
+ larson
2379
+ lashing
2380
+ laszlo
2381
+ later
2382
+ latinity
2383
+ latitudes
2384
+ laudable
2385
+ laughlin
2386
+ laundered
2387
+ laurels
2388
+ lavender
2389
+ lawfully
2390
+ lawsuit
2391
+ layers
2392
+ lazarus
2393
+ leaded
2394
+ leafed
2395
+ leaguers
2396
+ leander
2397
+ leaping
2398
+ leary
2399
+ leathern
2400
+ leaving
2401
+ lectures
2402
+ leeds
2403
+ leftists
2404
+ legalization
2405
+ leger
2406
+ legislated
2407
+ legitimate
2408
+ leila
2409
+ lemon
2410
+ lends
2411
+ leniency
2412
+ lens
2413
+ leonardo
2414
+ lesbian
2415
+ lesson
2416
+ letter
2417
+ levee
2418
+ levelly
2419
+ levin
2420
+ lewdly
2421
+ lexington
2422
+ libelous
2423
+ liberated
2424
+ libido
2425
+ license
2426
+ lick
2427
+ lied
2428
+ lifeboat
2429
+ lifetime
2430
+ ligget
2431
+ lighthearted
2432
+ like
2433
+ likeness
2434
+ lilian
2435
+ liman
2436
+ limit
2437
+ limits
2438
+ lind
2439
+ lindy
2440
+ linearly
2441
+ lingerie
2442
+ lining
2443
+ linnaeus
2444
+ lioness
2445
+ liquid
2446
+ lise
2447
+ listened
2448
+ listings
2449
+ literalness
2450
+ lithuania
2451
+ littering
2452
+ live
2453
+ livers
2454
+ lizzie
2455
+ loaf
2456
+ loathing
2457
+ lobster
2458
+ locally
2459
+ locator
2460
+ lockian
2461
+ lockwood
2462
+ lodges
2463
+ logarithm
2464
+ logically
2465
+ logs
2466
+ loiters
2467
+ londonization
2468
+ loners
2469
+ longings
2470
+ lookers
2471
+ looms
2472
+ looseleaf
2473
+ loosing
2474
+ lords
2475
+ lorry
2476
+ lossiest
2477
+ lotus
2478
+ louisa
2479
+ lourdes
2480
+ lovelace
2481
+ loves
2482
+ lowest
2483
+ loyally
2484
+ lucerne
2485
+ luckier
2486
+ ludicrous
2487
+ luke
2488
+ luminously
2489
+ lunch
2490
+ lunged
2491
+ luring
2492
+ lust
2493
+ luther
2494
+ luxuriantly
2495
+ lyle
2496
+ lynx
2497
+ mac
2498
+ macdonald
2499
+ maces
2500
+ machinery
2501
+ mackey
2502
+ macromolecule
2503
+ madden
2504
+ madhya
2505
+ madsen
2506
+ magellanic
2507
+ magill
2508
+ magnetizable
2509
+ magnify
2510
+ maguire
2511
+ maids
2512
+ mailman
2513
+ mainframes
2514
+ maintained
2515
+ majesty
2516
+ maker
2517
+ malady
2518
+ malcolm
2519
+ malformed
2520
+ maliciousness
2521
+ malone
2522
+ malton
2523
+ manage
2524
+ managing
2525
+ mandatory
2526
+ manger
2527
+ manhole
2528
+ manicuring
2529
+ manila
2530
+ manipulative
2531
+ mann
2532
+ manors
2533
+ mantissa
2534
+ manufactured
2535
+ mao
2536
+ maps
2537
+ marched
2538
+ mardis
2539
+ margo
2540
+ marinade
2541
+ maritime
2542
+ marketability
2543
+ markings
2544
+ marmalade
2545
+ marriott
2546
+ marshaling
2547
+ martial
2548
+ martyr
2549
+ marvels
2550
+ mascara
2551
+ maskable
2552
+ masonite
2553
+ massacred
2554
+ mast
2555
+ masterpiece
2556
+ masturbation
2557
+ matchless
2558
+ materializing
2559
+ mathematically
2560
+ matings
2561
+ matrix
2562
+ mattered
2563
+ matured
2564
+ mauricio
2565
+ maxima
2566
+ maxims
2567
+ maybe
2568
+ mayoral
2569
+ mccabe
2570
+ mccluskey
2571
+ mcdonnell
2572
+ mcgovern
2573
+ mckee
2574
+ mclean
2575
+ mcpherson
2576
+ mealtime
2577
+ meaningful
2578
+ meant
2579
+ measurements
2580
+ mechanically
2581
+ medal
2582
+ medfield
2583
+ mediations
2584
+ medicine
2585
+ meditating
2586
+ mediums
2587
+ meeting
2588
+ megahertz
2589
+ meister
2590
+ melcher
2591
+ melodies
2592
+ melpomene
2593
+ membership
2594
+ memoranda
2595
+ memorizes
2596
+ menagerie
2597
+ mendelizes
2598
+ mennonite
2599
+ mentalities
2600
+ mentor
2601
+ mercenariness
2602
+ mercilessly
2603
+ merged
2604
+ meritorious
2605
+ merrill
2606
+ mesh
2607
+ messenger
2608
+ messy
2609
+ metallization
2610
+ metaphysical
2611
+ meteoritic
2612
+ methodically
2613
+ methods
2614
+ metro
2615
+ mews
2616
+ mica
2617
+ mick
2618
+ microbicide
2619
+ microeconomics
2620
+ micron
2621
+ microprocessing
2622
+ microscope
2623
+ microvaxes
2624
+ middleman
2625
+ midnight
2626
+ midstream
2627
+ midwinter
2628
+ migrate
2629
+ mikoyan
2630
+ mileage
2631
+ milk
2632
+ mill
2633
+ millikan
2634
+ millionth
2635
+ millstones
2636
+ miltonized
2637
+ minaret
2638
+ mindfully
2639
+ mineral
2640
+ mini
2641
+ minima
2642
+ minimizes
2643
+ ministries
2644
+ minor
2645
+ minstrels
2646
+ minute
2647
+ miracle
2648
+ miriam
2649
+ miscarriage
2650
+ misconception
2651
+ miserably
2652
+ misgivings
2653
+ misled
2654
+ misplacing
2655
+ missing
2656
+ missoula
2657
+ mistake
2658
+ mistletoe
2659
+ misunderstand
2660
+ mitch
2661
+ mitres
2662
+ mixtures
2663
+ moats
2664
+ mocked
2665
+ modally
2666
+ moderated
2667
+ modernizer
2668
+ modicum
2669
+ modifying
2670
+ modularizing
2671
+ module
2672
+ moghul
2673
+ moines
2674
+ moldavia
2675
+ moles
2676
+ mollusk
2677
+ momentarily
2678
+ monaco
2679
+ monday
2680
+ mongolian
2681
+ monkeyed
2682
+ monocotyledon
2683
+ monolithic
2684
+ monostable
2685
+ monroe
2686
+ montague
2687
+ montgomery
2688
+ monument
2689
+ mooned
2690
+ moor
2691
+ moped
2692
+ morass
2693
+ morehouse
2694
+ morn
2695
+ morphological
2696
+ morsels
2697
+ mortgage
2698
+ mosaic
2699
+ mosque
2700
+ motels
2701
+ motherland
2702
+ motionlessness
2703
+ motley
2704
+ motorized
2705
+ mound
2706
+ mountainously
2707
+ mourners
2708
+ mousy
2709
+ movable
2710
+ moving
2711
+ muck
2712
+ muddled
2713
+ muffin
2714
+ mugs
2715
+ mullah
2716
+ multicomputer
2717
+ multiple
2718
+ multiplicand
2719
+ multiplies
2720
+ multistage
2721
+ mumbles
2722
+ mundane
2723
+ munitions
2724
+ murdering
2725
+ murmurs
2726
+ muscovy
2727
+ mushroomed
2728
+ musicians
2729
+ muskrat
2730
+ mussorgsky
2731
+ mutability
2732
+ mutations
2733
+ mutilating
2734
+ mutters
2735
+ mycenaean
2736
+ mysterious
2737
+ mythologies
2738
+ nagasaki
2739
+ nair
2740
+ nakedness
2741
+ names
2742
+ nanook
2743
+ napkin
2744
+ narcotic
2745
+ narrowest
2746
+ nash
2747
+ natal
2748
+ nationalities
2749
+ nations
2750
+ naturalist
2751
+ naughtiness
2752
+ navel
2753
+ navona
2754
+ neanderthal
2755
+ nears
2756
+ nebula
2757
+ necessitation
2758
+ neckties
2759
+ needled
2760
+ needy
2761
+ negatives
2762
+ negligible
2763
+ negroid
2764
+ neighboring
2765
+ neoclassic
2766
+ nero
2767
+ nesting
2768
+ nets
2769
+ neural
2770
+ neutral
2771
+ neva
2772
+ newburyport
2773
+ newman
2774
+ newsman
2775
+ next
2776
+ nibelung
2777
+ nicholls
2778
+ nickname
2779
+ nielson
2780
+ nightfall
2781
+ nihilism
2782
+ nimbler
2783
+ nineties
2784
+ nipponizes
2785
+ nobility
2786
+ nocturnally
2787
+ noel
2788
+ nolan
2789
+ nominee
2790
+ nonconservative
2791
+ nondeterminism
2792
+ nongovernmental
2793
+ nonlinearity
2794
+ nonorthogonal
2795
+ nonsegmented
2796
+ nonterminals
2797
+ nook
2798
+ nordhoff
2799
+ normalization
2800
+ normanizations
2801
+ north
2802
+ northernly
2803
+ norwalk
2804
+ nostradamus
2805
+ notarizes
2806
+ note
2807
+ noticeable
2808
+ notifies
2809
+ nottingham
2810
+ novak
2811
+ novices
2812
+ nuances
2813
+ nuclide
2814
+ nullary
2815
+ number
2816
+ numerable
2817
+ numismatic
2818
+ nursing
2819
+ nutritious
2820
+ nyquist
2821
+ oases
2822
+ obedient
2823
+ obfuscate
2824
+ objectively
2825
+ obliged
2826
+ obliterating
2827
+ obscene
2828
+ observable
2829
+ observers
2830
+ obsoletes
2831
+ obstruction
2832
+ obviated
2833
+ occasional
2834
+ occidentalize
2835
+ occlusions
2836
+ occupied
2837
+ occurs
2838
+ octagonal
2839
+ octets
2840
+ oddly
2841
+ odious
2842
+ o'dwyer
2843
+ offended
2844
+ offer
2845
+ officer
2846
+ officiously
2847
+ oft
2848
+ oilcloth
2849
+ ojibwa
2850
+ oldenburg
2851
+ oleomargarine
2852
+ olivia
2853
+ olympus
2854
+ ominousness
2855
+ omnipresent
2856
+ o'neill
2857
+ onlooker
2858
+ onus
2859
+ opaquely
2860
+ openings
2861
+ operate
2862
+ operator
2863
+ oppenheimer
2864
+ oppose
2865
+ oppressed
2866
+ opthalmic
2867
+ optimist
2868
+ optimizing
2869
+ opts
2870
+ oranges
2871
+ orbital
2872
+ orchestral
2873
+ order
2874
+ ordinarily
2875
+ ores
2876
+ organization
2877
+ organs
2878
+ orientalized
2879
+ orifices
2880
+ origination
2881
+ orleans
2882
+ ornate
2883
+ orr
2884
+ orville
2885
+ oscillates
2886
+ o'shea
2887
+ osteopath
2888
+ othello
2889
+ otto
2890
+ ounces
2891
+ outburst
2892
+ outdoor
2893
+ outgrowing
2894
+ outlawing
2895
+ outlive
2896
+ outperforms
2897
+ outrages
2898
+ outstanding
2899
+ outvoting
2900
+ outwitting
2901
+ overboard
2902
+ overcrowds
2903
+ overestimates
2904
+ overhangs
2905
+ overjoyed
2906
+ overload
2907
+ overnighter
2908
+ overproduction
2909
+ overrunning
2910
+ overshadowing
2911
+ oversized
2912
+ overtake
2913
+ overtly
2914
+ overuse
2915
+ overworking
2916
+ owen
2917
+ ownership
2918
+ oxidized
2919
+ ozzie
2920
+ pacification
2921
+ packaged
2922
+ packers
2923
+ padding
2924
+ pageant
2925
+ paginating
2926
+ painful
2927
+ painting
2928
+ pajamas
2929
+ pale
2930
+ palestine
2931
+ palliative
2932
+ palomar
2933
+ panacea
2934
+ pandemic
2935
+ panels
2936
+ panned
2937
+ pantheist
2938
+ panty
2939
+ paperers
2940
+ par
2941
+ parades
2942
+ paragon
2943
+ parallel
2944
+ parallels
2945
+ parameterize
2946
+ paramus
2947
+ paraphrases
2948
+ parcel
2949
+ pardoned
2950
+ parentheses
2951
+ pares
2952
+ parisian
2953
+ parkers
2954
+ parlay
2955
+ parody
2956
+ parrots
2957
+ parsifal
2958
+ partakes
2959
+ participant
2960
+ particular
2961
+ partitioned
2962
+ partridges
2963
+ passageway
2964
+ passion
2965
+ passport
2966
+ pasteur
2967
+ pasture
2968
+ patchy
2969
+ patents
2970
+ pathogenesis
2971
+ patients
2972
+ patricians
2973
+ patrolling
2974
+ patrons
2975
+ patterning
2976
+ paula
2977
+ paulus
2978
+ pavement
2979
+ pawn
2980
+ payer
2981
+ payoffs
2982
+ peacefully
2983
+ peaks
2984
+ pearl
2985
+ peat
2986
+ peculiar
2987
+ pedant
2988
+ pediatrician
2989
+ peeling
2990
+ peering
2991
+ peking
2992
+ pembroke
2993
+ pence
2994
+ pends
2995
+ penetration
2996
+ peninsulas
2997
+ pennsylvania
2998
+ pentagon
2999
+ peopled
3000
+ peppery
3001
+ perceived
3002
+ percents
3003
+ perchance
3004
+ perennially
3005
+ perfectness
3006
+ performs
3007
+ perihelion
3008
+ periodically
3009
+ perishable
3010
+ perkins
3011
+ permeating
3012
+ permit
3013
+ pernicious
3014
+ perpetration
3015
+ perpetuation
3016
+ persecuting
3017
+ perseveres
3018
+ persist
3019
+ personal
3020
+ personified
3021
+ perspiration
3022
+ persuasions
3023
+ perturb
3024
+ peruses
3025
+ pervasive
3026
+ pester
3027
+ peters
3028
+ petri
3029
+ petting
3030
+ phaedra
3031
+ phaser
3032
+ phenomenological
3033
+ philco
3034
+ philistinizes
3035
+ philosophies
3036
+ phoenicia
3037
+ phoning
3038
+ phosphorus
3039
+ photogenic
3040
+ photos
3041
+ phyla
3042
+ physicist
3043
+ pi
3044
+ pick
3045
+ picketing
3046
+ pickman
3047
+ picojoule
3048
+ picturing
3049
+ piedfort
3050
+ pies
3051
+ piggybacked
3052
+ pigtail
3053
+ pilferage
3054
+ pillar
3055
+ pilots
3056
+ pincushion
3057
+ pining
3058
+ pinnacle
3059
+ pinscher
3060
+ pioneers
3061
+ pipelining
3062
+ pirate
3063
+ pistols
3064
+ pitching
3065
+ pithiness
3066
+ pitiless
3067
+ pituitary
3068
+ pixels
3069
+ placement
3070
+ plagiarist
3071
+ plainfield
3072
+ plaintiveness
3073
+ planeload
3074
+ planets
3075
+ planoconcave
3076
+ plantings
3077
+ plasticity
3078
+ plates
3079
+ platoon
3080
+ playboy
3081
+ playing
3082
+ playwrights
3083
+ pleasant
3084
+ pleat
3085
+ plenary
3086
+ pliant
3087
+ plots
3088
+ plows
3089
+ pluggable
3090
+ plume
3091
+ plundered
3092
+ plunging
3093
+ plutonium
3094
+ pocahontas
3095
+ pod
3096
+ poetical
3097
+ poincare
3098
+ pointy
3099
+ poisons
3100
+ polaris
3101
+ police
3102
+ polish
3103
+ politer
3104
+ polka
3105
+ polluted
3106
+ polymer
3107
+ pomerania
3108
+ pompousness
3109
+ ponds
3110
+ pool
3111
+ pop
3112
+ popping
3113
+ popularized
3114
+ populous
3115
+ pores
3116
+ port
3117
+ portending
3118
+ portico
3119
+ portray
3120
+ posed
3121
+ position
3122
+ posits
3123
+ possessive
3124
+ possums
3125
+ posteriori
3126
+ postmasters
3127
+ postscript
3128
+ pot
3129
+ potentates
3130
+ potion
3131
+ pottery
3132
+ pounces
3133
+ pourer
3134
+ poverty
3135
+ powerful
3136
+ practicable
3137
+ practitioners
3138
+ praise
3139
+ prancer
3140
+ prayer
3141
+ preallocated
3142
+ precariously
3143
+ precedents
3144
+ preciously
3145
+ precipitation
3146
+ precludes
3147
+ preconception
3148
+ predating
3149
+ predetermination
3150
+ predication
3151
+ predictive
3152
+ predominately
3153
+ preemptive
3154
+ prefacing
3155
+ prefers
3156
+ preinitializes
3157
+ preliminary
3158
+ premise
3159
+ preoccupied
3160
+ prepared
3161
+ preposterously
3162
+ prerogatives
3163
+ prescriptions
3164
+ presentations
3165
+ preserved
3166
+ presidential
3167
+ pressings
3168
+ preston
3169
+ presumptuousness
3170
+ pretending
3171
+ pretexts
3172
+ prevailing
3173
+ preventing
3174
+ previously
3175
+ pricers
3176
+ prides
3177
+ primarily
3178
+ priming
3179
+ princesses
3180
+ principles
3181
+ prior
3182
+ prisoners
3183
+ privations
3184
+ prizes
3185
+ probate
3186
+ probings
3187
+ procedure
3188
+ processing
3189
+ proclamation
3190
+ procreate
3191
+ procurer
3192
+ produce
3193
+ productive
3194
+ profession
3195
+ proffered
3196
+ profitability
3197
+ profound
3198
+ program
3199
+ progresses
3200
+ prohibitions
3201
+ projections
3202
+ proletariat
3203
+ prolong
3204
+ prominent
3205
+ promoter
3206
+ promptest
3207
+ promulgation
3208
+ pronouncement
3209
+ proofs
3210
+ propane
3211
+ properly
3212
+ prophesy
3213
+ proportionately
3214
+ proposer
3215
+ propounded
3216
+ prorate
3217
+ prosecutes
3218
+ prosodic
3219
+ prospector
3220
+ prostate
3221
+ protecting
3222
+ protege
3223
+ protestations
3224
+ protons
3225
+ protozoan
3226
+ prouder
3227
+ provenance
3228
+ providence
3229
+ provision
3230
+ provokes
3231
+ proximal
3232
+ pruned
3233
+ prussianize
3234
+ pseudoinstruction
3235
+ psychiatrist
3236
+ psychologically
3237
+ psychosomatic
3238
+ pub
3239
+ publicly
3240
+ puckered
3241
+ puffed
3242
+ puller
3243
+ pulls
3244
+ pulse
3245
+ pumpkin
3246
+ punctually
3247
+ punishable
3248
+ punt
3249
+ puppeteer
3250
+ purchases
3251
+ purges
3252
+ purina
3253
+ purpler
3254
+ purposed
3255
+ purse
3256
+ pursuing
3257
+ pushdown
3258
+ putnam
3259
+ puzzlement
3260
+ pyongyang
3261
+ pythagoreanizes
3262
+ quadrangle
3263
+ quadrennial
3264
+ quagmires
3265
+ quakeress
3266
+ qualified
3267
+ qualm
3268
+ quantifiers
3269
+ quantize
3270
+ quarreled
3271
+ quartering
3272
+ quasar
3273
+ quavering
3274
+ queerer
3275
+ queried
3276
+ questionable
3277
+ questions
3278
+ quibble
3279
+ quicklime
3280
+ quieting
3281
+ quince
3282
+ quit
3283
+ quivers
3284
+ quonset
3285
+ quotient
3286
+ rabin
3287
+ rachmaninoff
3288
+ racketeers
3289
+ radiance
3290
+ radiators
3291
+ radiography
3292
+ rae
3293
+ rages
3294
+ raider
3295
+ railroaded
3296
+ rainbow
3297
+ rains
3298
+ rake
3299
+ ralston
3300
+ ramifications
3301
+ rams
3302
+ rand
3303
+ randy
3304
+ rangy
3305
+ rankings
3306
+ ransomer
3307
+ rap
3308
+ rapids
3309
+ rapturous
3310
+ rascally
3311
+ rasping
3312
+ ratfor
3313
+ ration
3314
+ rationalizes
3315
+ rattler
3316
+ ravager
3317
+ ravens
3318
+ rawlins
3319
+ rays
3320
+ reach
3321
+ reacted
3322
+ reactivation
3323
+ reader
3324
+ readjusted
3325
+ realigned
3326
+ realizable
3327
+ realm
3328
+ reaped
3329
+ rear
3330
+ rearrest
3331
+ reasonings
3332
+ reassigned
3333
+ reawakened
3334
+ rebellions
3335
+ rebooting
3336
+ rebuffed
3337
+ rebutted
3338
+ recalibrated
3339
+ recapitulates
3340
+ receded
3341
+ receives
3342
+ receptive
3343
+ recife
3344
+ reciprocating
3345
+ recitations
3346
+ reckoned
3347
+ reclaiming
3348
+ reclining
3349
+ recognize
3350
+ recollect
3351
+ recommend
3352
+ recompiles
3353
+ reconciliation
3354
+ reconnect
3355
+ reconstituted
3356
+ recorder
3357
+ recover
3358
+ recreating
3359
+ recta
3360
+ recur
3361
+ recursing
3362
+ red
3363
+ redeclared
3364
+ redefined
3365
+ redevelopment
3366
+ redisplayed
3367
+ redness
3368
+ redressing
3369
+ reducibly
3370
+ reeds
3371
+ reelects
3372
+ reenforcement
3373
+ reestablishing
3374
+ reexamining
3375
+ references
3376
+ referral
3377
+ refine
3378
+ reflecting
3379
+ reflexes
3380
+ reformatory
3381
+ reformulated
3382
+ refrained
3383
+ refreshment
3384
+ refugee
3385
+ refuted
3386
+ regally
3387
+ regenerating
3388
+ regimentation
3389
+ regis
3390
+ regressed
3391
+ regrettable
3392
+ regularly
3393
+ regulators
3394
+ rehearsing
3395
+ reimbursable
3396
+ reined
3397
+ reinhold
3398
+ reinstated
3399
+ reintroduces
3400
+ reiteration
3401
+ rejoiced
3402
+ relabeled
3403
+ relating
3404
+ relatives
3405
+ relaxes
3406
+ relegate
3407
+ relents
3408
+ relic
3409
+ relieving
3410
+ relinquishing
3411
+ reloader
3412
+ reluctance
3413
+ remains
3414
+ remedied
3415
+ remind
3416
+ reminiscently
3417
+ remodels
3418
+ remotely
3419
+ removing
3420
+ renames
3421
+ rendezvous
3422
+ renewable
3423
+ renouncing
3424
+ rented
3425
+ reopen
3426
+ reorganize
3427
+ repairman
3428
+ repaying
3429
+ repeatedly
3430
+ repentance
3431
+ repetitious
3432
+ replaceable
3433
+ replays
3434
+ replicate
3435
+ report
3436
+ reposing
3437
+ representably
3438
+ representing
3439
+ reprieved
3440
+ reproach
3441
+ reproducibilities
3442
+ reprograms
3443
+ republics
3444
+ repulses
3445
+ reputed
3446
+ required
3447
+ requisitions
3448
+ rescind
3449
+ researchers
3450
+ resemblances
3451
+ resentment
3452
+ reservoir
3453
+ resident
3454
+ resignation
3455
+ resistance
3456
+ resistors
3457
+ resolver
3458
+ resorting
3459
+ respect
3460
+ respective
3461
+ responded
3462
+ responsible
3463
+ restarts
3464
+ restful
3465
+ restorations
3466
+ restrainers
3467
+ restrictive
3468
+ resultant
3469
+ resuming
3470
+ resurrectors
3471
+ retailing
3472
+ retaliatory
3473
+ retentiveness
3474
+ retina
3475
+ retiring
3476
+ retracting
3477
+ retransmission
3478
+ retribution
3479
+ retriever
3480
+ retrospection
3481
+ retype
3482
+ reuniting
3483
+ revamping
3484
+ reveler
3485
+ revere
3486
+ reverifies
3487
+ reverses
3488
+ reviewer
3489
+ reviser
3490
+ revival
3491
+ revoked
3492
+ revolution
3493
+ revolvers
3494
+ rewinding
3495
+ rewriting
3496
+ rhesus
3497
+ rhode
3498
+ rhyming
3499
+ ribbons
3500
+ richard
3501
+ richmond
3502
+ rico
3503
+ ride
3504
+ ridiculed
3505
+ rifle
3506
+ rigging
3507
+ rightfulness
3508
+ rigor
3509
+ rims
3510
+ ringings
3511
+ riordan
3512
+ ripely
3513
+ rippling
3514
+ risk
3515
+ ritually
3516
+ river
3517
+ rivulet
3518
+ roadsters
3519
+ roaring
3520
+ robberies
3521
+ roberta
3522
+ robinsonville
3523
+ rochester
3524
+ rocket
3525
+ rockwell
3526
+ rods
3527
+ roll
3528
+ romance
3529
+ romanizes
3530
+ romper
3531
+ roofing
3532
+ rooming
3533
+ root
3534
+ roping
3535
+ rosebush
3536
+ rosetta
3537
+ rot
3538
+ rotations
3539
+ rotund
3540
+ roughness
3541
+ rounding
3542
+ roused
3543
+ routes
3544
+ roving
3545
+ rowley
3546
+ royalty
3547
+ rubbing
3548
+ rubles
3549
+ rudeness
3550
+ ruffian
3551
+ ruggedness
3552
+ rule
3553
+ rumanians
3554
+ rummy
3555
+ runaway
3556
+ runoff
3557
+ rupturing
3558
+ russell
3559
+ rustic
3560
+ rustlers
3561
+ ruthlessness
3562
+ sabbathize
3563
+ sachs
3564
+ sacrifice
3565
+ sacrosanct
3566
+ saddles
3567
+ safari
3568
+ safes
3569
+ sagebrush
3570
+ said
3571
+ sails
3572
+ salable
3573
+ salerno
3574
+ saline
3575
+ sally
3576
+ salters
3577
+ salutations
3578
+ salvages
3579
+ same
3580
+ sampling
3581
+ sanatorium
3582
+ sanctioning
3583
+ sandburg
3584
+ sandra
3585
+ sanest
3586
+ sanskrit
3587
+ sapling
3588
+ saran
3589
+ sari
3590
+ satchel
3591
+ satires
3592
+ satisfy
3593
+ saturnalia
3594
+ saud
3595
+ savaged
3596
+ saver
3597
+ savored
3598
+ sawfish
3599
+ saxonize
3600
+ sayings
3601
+ scala
3602
+ scaling
3603
+ scampers
3604
+ scanners
3605
+ scapegoat
3606
+ scared
3607
+ scatter
3608
+ scenic
3609
+ schantz
3610
+ schelling
3611
+ schemers
3612
+ schmitt
3613
+ scholastic
3614
+ schoolhouses
3615
+ schroeder
3616
+ schuylkill
3617
+ scissor
3618
+ scoffs
3619
+ scope
3620
+ scoreboard
3621
+ scorner
3622
+ scotchgard
3623
+ scottsdale
3624
+ scouted
3625
+ scrambled
3626
+ scrapes
3627
+ scratching
3628
+ screamers
3629
+ screenings
3630
+ scribbled
3631
+ scripts
3632
+ scrumptious
3633
+ scuffle
3634
+ sculptured
3635
+ scythe
3636
+ seagate
3637
+ seam
3638
+ seaquarium
3639
+ searchlight
3640
+ seasonable
3641
+ seat
3642
+ seceded
3643
+ secondary
3644
+ secretarial
3645
+ secretive
3646
+ sections
3647
+ securings
3648
+ sedition
3649
+ see
3650
+ seedy
3651
+ seeming
3652
+ seer
3653
+ segmentations
3654
+ segundo
3655
+ seizures
3656
+ selectman
3657
+ selfishly
3658
+ sells
3659
+ semantics
3660
+ semiconductor
3661
+ semipermanently
3662
+ senate
3663
+ seneca
3664
+ sense
3665
+ sensing
3666
+ sensual
3667
+ sentimentally
3668
+ separately
3669
+ sept
3670
+ sequencers
3671
+ sequentially
3672
+ serene
3673
+ serializable
3674
+ serif
3675
+ serra
3676
+ service
3677
+ servings
3678
+ sets
3679
+ settler
3680
+ seventeens
3681
+ severance
3682
+ severs
3683
+ sex
3684
+ sexual
3685
+ shackled
3686
+ shadiness
3687
+ shaffer
3688
+ shakers
3689
+ shale
3690
+ shameful
3691
+ shanghaied
3692
+ shapeless
3693
+ shard
3694
+ shares
3695
+ sharpening
3696
+ shattering
3697
+ shawano
3698
+ shearing
3699
+ sheds
3700
+ sheets
3701
+ shelley
3702
+ shelves
3703
+ sheridan
3704
+ shied
3705
+ shiftier
3706
+ shilling
3707
+ shiner
3708
+ shintoizes
3709
+ shipper
3710
+ shirk
3711
+ shiver
3712
+ shocker
3713
+ shoehorn
3714
+ shooter
3715
+ shoppers
3716
+ shortage
3717
+ shortens
3718
+ shorts
3719
+ shouldered
3720
+ shoved
3721
+ showed
3722
+ shows
3723
+ shrewd
3724
+ shrilled
3725
+ shrinking
3726
+ shrugs
3727
+ shuffled
3728
+ shutoff
3729
+ shuttles
3730
+ siberia
3731
+ sicken
3732
+ sideband
3733
+ sides
3734
+ sidings
3735
+ sierra
3736
+ sighed
3737
+ sigma
3738
+ signature
3739
+ signification
3740
+ sikkim
3741
+ silent
3742
+ silken
3743
+ sills
3744
+ silverman
3745
+ simile
3746
+ simon
3747
+ simplicities
3748
+ simplistic
3749
+ simulation
3750
+ sinbad
3751
+ sinews
3752
+ singed
3753
+ singlet
3754
+ singularly
3755
+ sinner
3756
+ sioux
3757
+ sirens
3758
+ sisyphus
3759
+ sittings
3760
+ siva
3761
+ sixties
3762
+ skate
3763
+ skeptical
3764
+ sketchpad
3765
+ skidding
3766
+ skillfulness
3767
+ skims
3768
+ skipped
3769
+ skirmishes
3770
+ skulked
3771
+ sky
3772
+ skyrockets
3773
+ slacks
3774
+ slang
3775
+ slash
3776
+ slaughter
3777
+ slavic
3778
+ slavonicizes
3779
+ sledgehammer
3780
+ sleepless
3781
+ sleighs
3782
+ sliced
3783
+ slide
3784
+ slightly
3785
+ slings
3786
+ slips
3787
+ slogans
3788
+ sloppiness
3789
+ slotting
3790
+ slower
3791
+ sluggishness
3792
+ slums
3793
+ smacked
3794
+ smalltime
3795
+ smasher
3796
+ smell
3797
+ smiles
3798
+ smithsonian
3799
+ smoked
3800
+ smoldered
3801
+ smoothing
3802
+ smug
3803
+ smythe
3804
+ snap
3805
+ snapshots
3806
+ snatched
3807
+ sneakiest
3808
+ sneers
3809
+ sniffs
3810
+ snodgrass
3811
+ snorkel
3812
+ snowbelt
3813
+ snows
3814
+ snuffs
3815
+ soak
3816
+ soared
3817
+ sobers
3818
+ socialists
3819
+ sociological
3820
+ socks
3821
+ sofas
3822
+ softly
3823
+ sojourn
3824
+ soldier
3825
+ solenoid
3826
+ solid
3827
+ solids
3828
+ solos
3829
+ solvent
3830
+ somber
3831
+ somerset
3832
+ son
3833
+ sonny
3834
+ soothe
3835
+ sophistication
3836
+ sordid
3837
+ sorest
3838
+ sorrows
3839
+ soul
3840
+ soundness
3841
+ soured
3842
+ southbound
3843
+ southland
3844
+ soviets
3845
+ spacer
3846
+ spaded
3847
+ spaniardization
3848
+ spanked
3849
+ spare
3850
+ sparked
3851
+ sparsely
3852
+ spat
3853
+ spawned
3854
+ speakers
3855
+ specialists
3856
+ specialty
3857
+ specified
3858
+ speckle
3859
+ spectators
3860
+ spectrography
3861
+ speculates
3862
+ speechless
3863
+ speeds
3864
+ spellings
3865
+ spent
3866
+ spica
3867
+ spies
3868
+ spilt
3869
+ spinner
3870
+ spirally
3871
+ spirituals
3872
+ spiting
3873
+ spleen
3874
+ splicing
3875
+ splits
3876
+ spoiling
3877
+ sponged
3878
+ sponsorship
3879
+ spoolers
3880
+ spores
3881
+ sportswriter
3882
+ spotter
3883
+ sprague
3884
+ spraying
3885
+ sprees
3886
+ springiness
3887
+ sprint
3888
+ sprouted
3889
+ spurn
3890
+ sputtered
3891
+ squadrons
3892
+ squarer
3893
+ squatting
3894
+ squeaky
3895
+ squeezing
3896
+ squirmed
3897
+ stab
3898
+ stabilizes
3899
+ stacked
3900
+ staffing
3901
+ stagers
3902
+ stags
3903
+ staircases
3904
+ stalemate
3905
+ stalling
3906
+ stammer
3907
+ stampeding
3908
+ standard
3909
+ standings
3910
+ stans
3911
+ star
3912
+ stargate
3913
+ starring
3914
+ startles
3915
+ state
3916
+ statewide
3917
+ stationmaster
3918
+ statues
3919
+ statutorily
3920
+ staves
3921
+ steadier
3922
+ stealer
3923
+ steamer
3924
+ steele
3925
+ steeper
3926
+ steered
3927
+ stem
3928
+ stenographer
3929
+ stepmother
3930
+ stereoscopic
3931
+ sterilizer
3932
+ stethoscope
3933
+ stew
3934
+ stickier
3935
+ stiffens
3936
+ stigma
3937
+ stillest
3938
+ stimulate
3939
+ stinging
3940
+ stipends
3941
+ stirrer
3942
+ stitching
3943
+ stockholder
3944
+ stodgy
3945
+ stomacher
3946
+ stood
3947
+ stopgap
3948
+ storage
3949
+ storeyed
3950
+ stormiest
3951
+ stouter
3952
+ strafe
3953
+ straightened
3954
+ strained
3955
+ stranding
3956
+ strangler
3957
+ stratagem
3958
+ stratifies
3959
+ strawberry
3960
+ streamer
3961
+ streetcar
3962
+ strengths
3963
+ stretched
3964
+ strict
3965
+ strife
3966
+ stringed
3967
+ stringy
3968
+ striptease
3969
+ strode
3970
+ strolling
3971
+ strontium
3972
+ struggle
3973
+ stuart
3974
+ stucco
3975
+ studious
3976
+ stuffs
3977
+ stun
3978
+ stupid
3979
+ sturm
3980
+ styli
3981
+ styx
3982
+ subcomponents
3983
+ subdirectory
3984
+ subdues
3985
+ subgraph
3986
+ subjective
3987
+ sublime
3988
+ submerges
3989
+ submode
3990
+ subordinate
3991
+ subprogram
3992
+ subschema
3993
+ subscripting
3994
+ subsequent
3995
+ subsidies
3996
+ subsistent
3997
+ substantially
3998
+ substation
3999
+ substrate
4000
+ subsystem
4001
+ subtleness
4002
+ subtraction
4003
+ subunits
4004
+ subverting
4005
+ successful
4006
+ succinctness
4007
+ suckers
4008
+ sudden
4009
+ sufferance
4010
+ sufficiency
4011
+ suffocated
4012
+ sugarings
4013
+ suggests
4014
+ suitably
4015
+ suits
4016
+ sulks
4017
+ sultan
4018
+ summands
4019
+ summation
4020
+ summon
4021
+ sumter
4022
+ sunder
4023
+ sunken
4024
+ sunshine
4025
+ supercomputers
4026
+ supergroups
4027
+ superior
4028
+ supernatural
4029
+ supersede
4030
+ supervise
4031
+ suppers
4032
+ supplementing
4033
+ support
4034
+ suppose
4035
+ suppressing
4036
+ surely
4037
+ surge
4038
+ surly
4039
+ surpass
4040
+ surprisingly
4041
+ surround
4042
+ surveyors
4043
+ sus
4044
+ suspended
4045
+ suspicions
4046
+ sutherland
4047
+ swab
4048
+ swallowing
4049
+ swan
4050
+ swaps
4051
+ swat
4052
+ sweat
4053
+ swedes
4054
+ sweepstakes
4055
+ sweetest
4056
+ swellings
4057
+ swifter
4058
+ swimsuit
4059
+ swipe
4060
+ switchboards
4061
+ swivel
4062
+ swords
4063
+ sykes
4064
+ sylvia
4065
+ symbolize
4066
+ symmetry
4067
+ sympathy
4068
+ synagogue
4069
+ synchronizes
4070
+ syndication
4071
+ synonymously
4072
+ synthesize
4073
+ syrian
4074
+ systematically
4075
+ tabernacle
4076
+ tablespoonful
4077
+ tabulate
4078
+ tacit
4079
+ tactic
4080
+ tail
4081
+ taipei
4082
+ tale
4083
+ talker
4084
+ tallchief
4085
+ talmudizations
4086
+ taming
4087
+ tanaka
4088
+ tangle
4089
+ tantalizing
4090
+ taos
4091
+ tapestry
4092
+ tar
4093
+ tariffs
4094
+ tasked
4095
+ tastefully
4096
+ tattered
4097
+ taunts
4098
+ taverns
4099
+ taxicabs
4100
+ taylor
4101
+ teaches
4102
+ tearful
4103
+ teaspoonful
4104
+ technique
4105
+ tedious
4106
+ teenaged
4107
+ tegucigalpa
4108
+ telegraph
4109
+ teleologically
4110
+ telephony
4111
+ televise
4112
+ teller
4113
+ temperance
4114
+ tempestuous
4115
+ temporaries
4116
+ temptingly
4117
+ tendency
4118
+ tenex
4119
+ tense
4120
+ tent
4121
+ tenure
4122
+ terminating
4123
+ termwise
4124
+ terre
4125
+ terrify
4126
+ terrorize
4127
+ testable
4128
+ testifiers
4129
+ tex
4130
+ textile
4131
+ thailand
4132
+ thankless
4133
+ thaw
4134
+ theatrically
4135
+ theme
4136
+ theology
4137
+ theorization
4138
+ therapies
4139
+ thereof
4140
+ thermometer
4141
+ thessaly
4142
+ thickly
4143
+ thimbles
4144
+ thinking
4145
+ thirsted
4146
+ thistle
4147
+ thorns
4148
+ those
4149
+ thousand
4150
+ thread
4151
+ threatens
4152
+ thrift
4153
+ thrived
4154
+ throne
4155
+ throughout
4156
+ thrusters
4157
+ thumbed
4158
+ thunderer
4159
+ thus
4160
+ tiburon
4161
+ tickles
4162
+ tidied
4163
+ tier
4164
+ tighteners
4165
+ tilde
4166
+ tillich
4167
+ timbered
4168
+ timeouts
4169
+ timetables
4170
+ timonizes
4171
+ tingling
4172
+ tinkled
4173
+ tint
4174
+ tipperary
4175
+ tirelessly
4176
+ titan
4177
+ titter
4178
+ toasts
4179
+ togetherness
4180
+ toilets
4181
+ tolerable
4182
+ toleration
4183
+ tomatoes
4184
+ ton
4185
+ tonic
4186
+ tool
4187
+ toothpaste
4188
+ topmost
4189
+ topsy
4190
+ tormenting
4191
+ torrent
4192
+ torturing
4193
+ tossed
4194
+ totallers
4195
+ touchable
4196
+ tough
4197
+ tourist
4198
+ toweling
4199
+ towns
4200
+ toys
4201
+ tracked
4202
+ tractor
4203
+ trader
4204
+ trafficked
4205
+ trailed
4206
+ trainer
4207
+ tramp
4208
+ trances
4209
+ transceivers
4210
+ transcribers
4211
+ transferal
4212
+ transformable
4213
+ transgressed
4214
+ transistorized
4215
+ transitively
4216
+ translation
4217
+ transmittal
4218
+ transparent
4219
+ transponder
4220
+ transpose
4221
+ trapezoidal
4222
+ trauma
4223
+ traversal
4224
+ trays
4225
+ treasure
4226
+ treating
4227
+ treetop
4228
+ tremor
4229
+ trespassed
4230
+ triangles
4231
+ tribunals
4232
+ tricked
4233
+ tricky
4234
+ triggered
4235
+ trilled
4236
+ trimming
4237
+ tripled
4238
+ triumphal
4239
+ trivially
4240
+ troopers
4241
+ trotsky
4242
+ troubleshoots
4243
+ trowels
4244
+ trucking
4245
+ truest
4246
+ trumped
4247
+ trunk
4248
+ trustingly
4249
+ try
4250
+ tubs
4251
+ tuft
4252
+ tumbled
4253
+ tunable
4254
+ tunisia
4255
+ turbulent
4256
+ turkize
4257
+ turning
4258
+ turtle
4259
+ tutankhamen
4260
+ tuttle
4261
+ twenty
4262
+ twiner
4263
+ twirling
4264
+ twitching
4265
+ tyler
4266
+ typewriters
4267
+ typing
4268
+ tyranny
4269
+ ugh
4270
+ ulcers
4271
+ umbrage
4272
+ unacceptably
4273
+ unaided
4274
+ unanimous
4275
+ unattainability
4276
+ unaware
4277
+ unblocked
4278
+ uncancelled
4279
+ unchanging
4280
+ unclosed
4281
+ unconditional
4282
+ uncontrollable
4283
+ uncountable
4284
+ undecidable
4285
+ underbrush
4286
+ underflows
4287
+ underlies
4288
+ undermine
4289
+ underplays
4290
+ understandings
4291
+ undertakings
4292
+ underwrites
4293
+ undirected
4294
+ undone
4295
+ uneasy
4296
+ unequaled
4297
+ uneventful
4298
+ unfairness
4299
+ unfit
4300
+ unformatted
4301
+ ungratefully
4302
+ unharmed
4303
+ unidirectionality
4304
+ uniformity
4305
+ unindented
4306
+ uninterrupted
4307
+ unions
4308
+ unitarian
4309
+ unity
4310
+ universities
4311
+ unkindness
4312
+ unleashed
4313
+ unlinking
4314
+ unlucky
4315
+ unmerciful
4316
+ unnecessarily
4317
+ unobtainable
4318
+ unpaid
4319
+ unprecedented
4320
+ unprovable
4321
+ unraveling
4322
+ unrecognized
4323
+ unrestrained
4324
+ unsafely
4325
+ unselected
4326
+ unskilled
4327
+ unsteady
4328
+ unsynchronized
4329
+ untie
4330
+ untoward
4331
+ unused
4332
+ unwholesome
4333
+ unwinds
4334
+ unwrap
4335
+ updater
4336
+ upholder
4337
+ upland
4338
+ uprightly
4339
+ upsets
4340
+ upturns
4341
+ urge
4342
+ urinates
4343
+ ursuline
4344
+ usages
4345
+ usenix
4346
+ usually
4347
+ utilization
4348
+ utopianizes
4349
+ utters
4350
+ vacation
4351
+ vacuumed
4352
+ vagrantly
4353
+ valence
4354
+ valiant
4355
+ validness
4356
+ valuably
4357
+ valves
4358
+ vandenberg
4359
+ vanished
4360
+ vanquishing
4361
+ variably
4362
+ varies
4363
+ varying
4364
+ vastly
4365
+ vaudois
4366
+ vax
4367
+ veering
4368
+ vegetated
4369
+ vehicular
4370
+ velasquez
4371
+ venetian
4372
+ venomous
4373
+ ventricles
4374
+ venus
4375
+ verbalized
4376
+ verdure
4377
+ verifier
4378
+ vern
4379
+ versatile
4380
+ vertebrates
4381
+ vested
4382
+ veterinary
4383
+ via
4384
+ vibrations
4385
+ viciousness
4386
+ victimizers
4387
+ victories
4388
+ vidal
4389
+ vier
4390
+ viewing
4391
+ vignettes
4392
+ vilification
4393
+ villages
4394
+ vinci
4395
+ vineyard
4396
+ violator
4397
+ violins
4398
+ virgo
4399
+ virus
4400
+ visible
4401
+ visited
4402
+ visualize
4403
+ vitally
4404
+ vladimir
4405
+ vocations
4406
+ voided
4407
+ volition
4408
+ voltages
4409
+ volunteering
4410
+ voted
4411
+ vouching
4412
+ voyaged
4413
+ vulgarly
4414
+ waco
4415
+ waffles
4416
+ wagnerian
4417
+ wailing
4418
+ waiter
4419
+ waives
4420
+ waking
4421
+ walgreen
4422
+ wallenstein
4423
+ walls
4424
+ waltham
4425
+ wandered
4426
+ waning
4427
+ wants
4428
+ ward
4429
+ warehousing
4430
+ warmer
4431
+ warning
4432
+ warranted
4433
+ warsaw
4434
+ washburn
4435
+ wasps
4436
+ watch
4437
+ watchman
4438
+ watering
4439
+ watery
4440
+ wausau
4441
+ wavelength
4442
+ waxers
4443
+ we
4444
+ weaknesses
4445
+ wear
4446
+ wearisomely
4447
+ weatherford
4448
+ webs
4449
+ wedlock
4450
+ weekly
4451
+ weidman
4452
+ weights
4453
+ weissmuller
4454
+ welder
4455
+ wellesley
4456
+ wenches
4457
+ wesleyan
4458
+ westhampton
4459
+ wet
4460
+ whacked
4461
+ wharves
4462
+ wheel
4463
+ whelp
4464
+ wherever
4465
+ whims
4466
+ whippany
4467
+ whirling
4468
+ whiskers
4469
+ whistled
4470
+ whitehorse
4471
+ whitens
4472
+ whitlock
4473
+ whittling
4474
+ wholeness
4475
+ whoop
4476
+ wichita
4477
+ widen
4478
+ widowed
4479
+ wielding
4480
+ wilbur
4481
+ wile
4482
+ wilkinson
4483
+ william
4484
+ willis
4485
+ wilshire
4486
+ wince
4487
+ winding
4488
+ winehead
4489
+ wining
4490
+ winnie
4491
+ winsett
4492
+ wiped
4493
+ wiretappers
4494
+ wised
4495
+ wishful
4496
+ witches
4497
+ withdrew
4498
+ withholds
4499
+ witnessing
4500
+ woefully
4501
+ womanhood
4502
+ wonderfulness
4503
+ woo
4504
+ wooden
4505
+ woodstock
4506
+ woofer
4507
+ woonsocket
4508
+ words
4509
+ workbooks
4510
+ workman
4511
+ worldliness
4512
+ worrier
4513
+ worshiper
4514
+ worthless
4515
+ wounding
4516
+ wrapper
4517
+ wreathes
4518
+ wrenched
4519
+ wretch
4520
+ wring
4521
+ writ
4522
+ writing
4523
+ wrote
4524
+ wyner
4525
+ xeroxed
4526
+ yamaha
4527
+ yard
4528
+ yawner
4529
+ years
4530
+ yellowed
4531
+ yelped
4532
+ yesterdays
4533
+ yoknapatawpha
4534
+ yorkshire
4535
+ youngsters
4536
+ youthfulness
4537
+ yukon
4538
+ zeal
4539
+ zen
4540
+ zeus
4541
+ zionism
4542
+ zoned
4543
+ zoroaster