mnemorandom 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (358) hide show
  1. checksums.yaml +7 -0
  2. data/CHANGELOG.md +5 -0
  3. data/CODE_OF_CONDUCT.md +70 -0
  4. data/Gemfile +12 -0
  5. data/Gemfile.lock +49 -0
  6. data/LICENSE.txt +21 -0
  7. data/README.md +43 -0
  8. data/Rakefile +12 -0
  9. data/bin/console +15 -0
  10. data/bin/setup +8 -0
  11. data/lib/mnemorandom/version.rb +5 -0
  12. data/lib/mnemorandom.rb +30 -0
  13. data/vendor/git/corpora.git/.editorconfig +16 -0
  14. data/vendor/git/corpora.git/.github/workflows/test.yml +39 -0
  15. data/vendor/git/corpora.git/.gitignore +4 -0
  16. data/vendor/git/corpora.git/.travis.yml +17 -0
  17. data/vendor/git/corpora.git/Gruntfile.js +23 -0
  18. data/vendor/git/corpora.git/README.md +46 -0
  19. data/vendor/git/corpora.git/data/animals/ant_anatomy.json +107 -0
  20. data/vendor/git/corpora.git/data/animals/birds_antarctica.json +106 -0
  21. data/vendor/git/corpora.git/data/animals/birds_north_america.json +1448 -0
  22. data/vendor/git/corpora.git/data/animals/cats.json +100 -0
  23. data/vendor/git/corpora.git/data/animals/cephalopod_anatomy.json +281 -0
  24. data/vendor/git/corpora.git/data/animals/collateral_adjectives.json +1103 -0
  25. data/vendor/git/corpora.git/data/animals/common.json +139 -0
  26. data/vendor/git/corpora.git/data/animals/dinosaurs.json +1455 -0
  27. data/vendor/git/corpora.git/data/animals/dog_names.json +1005 -0
  28. data/vendor/git/corpora.git/data/animals/dogs-en-de.json +1814 -0
  29. data/vendor/git/corpora.git/data/animals/dogs.json +459 -0
  30. data/vendor/git/corpora.git/data/animals/donkeys.json +174 -0
  31. data/vendor/git/corpora.git/data/animals/horses.json +349 -0
  32. data/vendor/git/corpora.git/data/animals/ponies.json +175 -0
  33. data/vendor/git/corpora.git/data/animals/rabbits.json +55 -0
  34. data/vendor/git/corpora.git/data/archetypes/artifact.json +53 -0
  35. data/vendor/git/corpora.git/data/archetypes/character.json +257 -0
  36. data/vendor/git/corpora.git/data/archetypes/event.json +107 -0
  37. data/vendor/git/corpora.git/data/archetypes/setting.json +179 -0
  38. data/vendor/git/corpora.git/data/architecture/passages.json +35 -0
  39. data/vendor/git/corpora.git/data/architecture/rooms.json +113 -0
  40. data/vendor/git/corpora.git/data/art/isms.json +146 -0
  41. data/vendor/git/corpora.git/data/books/academic_subjects.json +261 -0
  42. data/vendor/git/corpora.git/data/books/bestsellers.json +258 -0
  43. data/vendor/git/corpora.git/data/colors/crayola.json +485 -0
  44. data/vendor/git/corpora.git/data/colors/dulux.json +42242 -0
  45. data/vendor/git/corpora.git/data/colors/fictional.json +47 -0
  46. data/vendor/git/corpora.git/data/colors/google_material_colors.json +294 -0
  47. data/vendor/git/corpora.git/data/colors/paints.json +4005 -0
  48. data/vendor/git/corpora.git/data/colors/palettes.json +1403 -0
  49. data/vendor/git/corpora.git/data/colors/web_colors.json +565 -0
  50. data/vendor/git/corpora.git/data/colors/wikipedia.json +4070 -0
  51. data/vendor/git/corpora.git/data/colors/xkcd.json +4749 -0
  52. data/vendor/git/corpora.git/data/corporations/cars.json +71 -0
  53. data/vendor/git/corpora.git/data/corporations/charities.json +105 -0
  54. data/vendor/git/corpora.git/data/corporations/djia.json +125 -0
  55. data/vendor/git/corpora.git/data/corporations/fortune500.json +506 -0
  56. data/vendor/git/corpora.git/data/corporations/industries.json +155 -0
  57. data/vendor/git/corpora.git/data/corporations/nasdaq.json +409 -0
  58. data/vendor/git/corpora.git/data/corporations/newspapers.json +107 -0
  59. data/vendor/git/corpora.git/data/divination/hexagrams.json +261 -0
  60. data/vendor/git/corpora.git/data/divination/tarot_interpretations.json +2593 -0
  61. data/vendor/git/corpora.git/data/divination/zodiac.json +274 -0
  62. data/vendor/git/corpora.git/data/film-tv/Westworld_quotes.json +326 -0
  63. data/vendor/git/corpora.git/data/film-tv/extended-netflix-categories.json +605 -0
  64. data/vendor/git/corpora.git/data/film-tv/game-of-thrones-houses.json +277 -0
  65. data/vendor/git/corpora.git/data/film-tv/iab_categories.json +1571 -0
  66. data/vendor/git/corpora.git/data/film-tv/look-around-you-shakespeare.json +28 -0
  67. data/vendor/git/corpora.git/data/film-tv/netflix-categories.json +216 -0
  68. data/vendor/git/corpora.git/data/film-tv/popular-movies.json +263 -0
  69. data/vendor/git/corpora.git/data/film-tv/tv_shows.json +1005 -0
  70. data/vendor/git/corpora.git/data/foods/apple_cultivars.json +1005 -0
  71. data/vendor/git/corpora.git/data/foods/bad_beers.json +104 -0
  72. data/vendor/git/corpora.git/data/foods/beer_categories.json +631 -0
  73. data/vendor/git/corpora.git/data/foods/beer_styles.json +144 -0
  74. data/vendor/git/corpora.git/data/foods/breads_and_pastries.json +62 -0
  75. data/vendor/git/corpora.git/data/foods/combine.json +96 -0
  76. data/vendor/git/corpora.git/data/foods/condiments.json +104 -0
  77. data/vendor/git/corpora.git/data/foods/curds.json +1969 -0
  78. data/vendor/git/corpora.git/data/foods/fruits.json +85 -0
  79. data/vendor/git/corpora.git/data/foods/herbs_n_spices.json +202 -0
  80. data/vendor/git/corpora.git/data/foods/hot_peppers.json +69 -0
  81. data/vendor/git/corpora.git/data/foods/iba_cocktails.json +82 -0
  82. data/vendor/git/corpora.git/data/foods/menuItems.json +1005 -0
  83. data/vendor/git/corpora.git/data/foods/pizzaToppings.json +30 -0
  84. data/vendor/git/corpora.git/data/foods/sandwiches.json +855 -0
  85. data/vendor/git/corpora.git/data/foods/sausages.json +208 -0
  86. data/vendor/git/corpora.git/data/foods/scotch_whiskey.json +82 -0
  87. data/vendor/git/corpora.git/data/foods/tea.json +533 -0
  88. data/vendor/git/corpora.git/data/foods/vegetable_cooking_times.json +310 -0
  89. data/vendor/git/corpora.git/data/foods/vegetables.json +125 -0
  90. data/vendor/git/corpora.git/data/foods/verbs.json +287 -0
  91. data/vendor/git/corpora.git/data/foods/wine_descriptions.json +108 -0
  92. data/vendor/git/corpora.git/data/games/League_of_legends_champion_names.json +150 -0
  93. data/vendor/git/corpora.git/data/games/bannedGames/argentina/bannedList.json +9 -0
  94. data/vendor/git/corpora.git/data/games/bannedGames/brazil/bannedList.json +53 -0
  95. data/vendor/git/corpora.git/data/games/bannedGames/china/bannedList.json +25 -0
  96. data/vendor/git/corpora.git/data/games/bannedGames/denmark/bannedList.json +9 -0
  97. data/vendor/git/corpora.git/data/games/bannedGames/germany/bannedList.json +457 -0
  98. data/vendor/git/corpora.git/data/games/bannedGames/saudi_arabia/bannedList.json +69 -0
  99. data/vendor/git/corpora.git/data/games/board_games.json +218 -0
  100. data/vendor/git/corpora.git/data/games/cluedo.json +65 -0
  101. data/vendor/git/corpora.git/data/games/dark_souls_iii_messages.json +367 -0
  102. data/vendor/git/corpora.git/data/games/jeopardy_questions.json +9005 -0
  103. data/vendor/git/corpora.git/data/games/pokemon.json +20684 -0
  104. data/vendor/git/corpora.git/data/games/rpg/rpg_designers.json +202 -0
  105. data/vendor/git/corpora.git/data/games/rpg/rpg_games.json +859 -0
  106. data/vendor/git/corpora.git/data/games/rpg/rpg_settings.json +103 -0
  107. data/vendor/git/corpora.git/data/games/scrabble.json +33 -0
  108. data/vendor/git/corpora.git/data/games/street_fighter_ii.json +73 -0
  109. data/vendor/git/corpora.git/data/games/trivial_pursuit.json +29 -0
  110. data/vendor/git/corpora.git/data/games/wrestling_moves.json +284 -0
  111. data/vendor/git/corpora.git/data/games/zelda.json +372 -0
  112. data/vendor/git/corpora.git/data/geography/anthropogenic_features.json +143 -0
  113. data/vendor/git/corpora.git/data/geography/canada_provinces_and_territories.json +16 -0
  114. data/vendor/git/corpora.git/data/geography/canadian_municipalities.json +606 -0
  115. data/vendor/git/corpora.git/data/geography/countries.json +203 -0
  116. data/vendor/git/corpora.git/data/geography/countries_with_capitals.json +202 -0
  117. data/vendor/git/corpora.git/data/geography/english_towns_cities.json +997 -0
  118. data/vendor/git/corpora.git/data/geography/environmental_hazards.json +76 -0
  119. data/vendor/git/corpora.git/data/geography/geographic_features.json +514 -0
  120. data/vendor/git/corpora.git/data/geography/japanese_prefectures.json +99 -0
  121. data/vendor/git/corpora.git/data/geography/london_underground_stations.json +1352 -0
  122. data/vendor/git/corpora.git/data/geography/nationalities.json +232 -0
  123. data/vendor/git/corpora.git/data/geography/norwegian_cities.json +370 -0
  124. data/vendor/git/corpora.git/data/geography/nyc_neighborhood_zips.json +395 -0
  125. data/vendor/git/corpora.git/data/geography/oceans.json +305 -0
  126. data/vendor/git/corpora.git/data/geography/rivers.json +1101 -0
  127. data/vendor/git/corpora.git/data/geography/sf_neighborhoods.json +455 -0
  128. data/vendor/git/corpora.git/data/geography/us_airport_codes.json +373 -0
  129. data/vendor/git/corpora.git/data/geography/us_cities.json +5006 -0
  130. data/vendor/git/corpora.git/data/geography/us_counties.json +2979 -0
  131. data/vendor/git/corpora.git/data/geography/us_metropolitan_areas.json +4488 -0
  132. data/vendor/git/corpora.git/data/geography/us_state_capitals.json +205 -0
  133. data/vendor/git/corpora.git/data/geography/venues.json +3656 -0
  134. data/vendor/git/corpora.git/data/geography/winds.json +117 -0
  135. data/vendor/git/corpora.git/data/governments/governmentForms.json +28 -0
  136. data/vendor/git/corpora.git/data/governments/mass-surveillance-project-names.json +215 -0
  137. data/vendor/git/corpora.git/data/governments/nsa_projects.json +213 -0
  138. data/vendor/git/corpora.git/data/governments/uk_political_parties.json +623 -0
  139. data/vendor/git/corpora.git/data/governments/us_federal_agencies.json +128 -0
  140. data/vendor/git/corpora.git/data/governments/us_mil_operations.json +3613 -0
  141. data/vendor/git/corpora.git/data/humans/2016_us_presidential_candidates.json +7329 -0
  142. data/vendor/git/corpora.git/data/humans/atus_activities.json +4617 -0
  143. data/vendor/git/corpora.git/data/humans/authors.json +506 -0
  144. data/vendor/git/corpora.git/data/humans/bodyParts.json +46 -0
  145. data/vendor/git/corpora.git/data/humans/britishActors.json +705 -0
  146. data/vendor/git/corpora.git/data/humans/celebrities.json +998 -0
  147. data/vendor/git/corpora.git/data/humans/descriptions.json +398 -0
  148. data/vendor/git/corpora.git/data/humans/englishHonorifics.json +226 -0
  149. data/vendor/git/corpora.git/data/humans/familyRelations.json +77 -0
  150. data/vendor/git/corpora.git/data/humans/famousDuos.json +194 -0
  151. data/vendor/git/corpora.git/data/humans/firstNames.json +400 -0
  152. data/vendor/git/corpora.git/data/humans/genders.json +82 -0
  153. data/vendor/git/corpora.git/data/humans/human_universals.json +374 -0
  154. data/vendor/git/corpora.git/data/humans/lastNames.json +205 -0
  155. data/vendor/git/corpora.git/data/humans/moods.json +771 -0
  156. data/vendor/git/corpora.git/data/humans/norwayFirstNamesBoys.json +822 -0
  157. data/vendor/git/corpora.git/data/humans/norwayFirstNamesGirls.json +929 -0
  158. data/vendor/git/corpora.git/data/humans/norwayLastNames.json +1003 -0
  159. data/vendor/git/corpora.git/data/humans/occupations.json +976 -0
  160. data/vendor/git/corpora.git/data/humans/prefixes.json +88 -0
  161. data/vendor/git/corpora.git/data/humans/richpeople.json +305 -0
  162. data/vendor/git/corpora.git/data/humans/scientists.json +333 -0
  163. data/vendor/git/corpora.git/data/humans/spanishFirstNames.json +460 -0
  164. data/vendor/git/corpora.git/data/humans/spanishLastNames.json +108 -0
  165. data/vendor/git/corpora.git/data/humans/spinalTapDrummers.json +93 -0
  166. data/vendor/git/corpora.git/data/humans/suffixes.json +50 -0
  167. data/vendor/git/corpora.git/data/humans/thirdPersonPronouns.json +9749 -0
  168. data/vendor/git/corpora.git/data/humans/tolkienCharacterNames.json +600 -0
  169. data/vendor/git/corpora.git/data/humans/us_presidents.json +2743 -0
  170. data/vendor/git/corpora.git/data/humans/wrestlers.json +99 -0
  171. data/vendor/git/corpora.git/data/instructions/burroughsinstructionset.json +216 -0
  172. data/vendor/git/corpora.git/data/instructions/laundry_care.json +149 -0
  173. data/vendor/git/corpora.git/data/materials/abridged-body-fluids.json +34 -0
  174. data/vendor/git/corpora.git/data/materials/building-materials.json +50 -0
  175. data/vendor/git/corpora.git/data/materials/carbon-allotropes.json +19 -0
  176. data/vendor/git/corpora.git/data/materials/decorative-stones.json +99 -0
  177. data/vendor/git/corpora.git/data/materials/fabrics.json +211 -0
  178. data/vendor/git/corpora.git/data/materials/fibers.json +33 -0
  179. data/vendor/git/corpora.git/data/materials/fictional-materials.json +170 -0
  180. data/vendor/git/corpora.git/data/materials/gemstones.json +357 -0
  181. data/vendor/git/corpora.git/data/materials/layperson-metals.json +23 -0
  182. data/vendor/git/corpora.git/data/materials/metals.json +97 -0
  183. data/vendor/git/corpora.git/data/materials/natural-materials.json +15 -0
  184. data/vendor/git/corpora.git/data/materials/packaging.json +32 -0
  185. data/vendor/git/corpora.git/data/materials/plastic-brands.json +9 -0
  186. data/vendor/git/corpora.git/data/materials/sculpture-materials.json +49 -0
  187. data/vendor/git/corpora.git/data/materials/technical-fabrics.json +16 -0
  188. data/vendor/git/corpora.git/data/mathematics/fibonnaciSequence.json +1492 -0
  189. data/vendor/git/corpora.git/data/mathematics/primes.json +1015 -0
  190. data/vendor/git/corpora.git/data/mathematics/primes_binary.json +1005 -0
  191. data/vendor/git/corpora.git/data/mathematics/trigonometry.json +24 -0
  192. data/vendor/git/corpora.git/data/medicine/cancer.json +1007 -0
  193. data/vendor/git/corpora.git/data/medicine/diagnoses.json +1006 -0
  194. data/vendor/git/corpora.git/data/medicine/diseases.json +1007 -0
  195. data/vendor/git/corpora.git/data/medicine/drugNameStems.json +470 -0
  196. data/vendor/git/corpora.git/data/medicine/drugs.json +1006 -0
  197. data/vendor/git/corpora.git/data/medicine/hospitals.json +963 -0
  198. data/vendor/git/corpora.git/data/medicine/infectious_diseases.json +122 -0
  199. data/vendor/git/corpora.git/data/medicine/symptoms.json +551 -0
  200. data/vendor/git/corpora.git/data/music/a_list_of_guitar_manufacturers.json +722 -0
  201. data/vendor/git/corpora.git/data/music/bands_that_have_opened_for_tool.json +37 -0
  202. data/vendor/git/corpora.git/data/music/female_classical_guitarists.json +260 -0
  203. data/vendor/git/corpora.git/data/music/genres.json +375 -0
  204. data/vendor/git/corpora.git/data/music/hamilton_musical_obcrecording_actors_characters.json +63 -0
  205. data/vendor/git/corpora.git/data/music/instruments.json +60 -0
  206. data/vendor/git/corpora.git/data/music/media-formats.json +62 -0
  207. data/vendor/git/corpora.git/data/music/mtv_day_one.json +1257 -0
  208. data/vendor/git/corpora.git/data/music/rock_hall_of_fame.json +891 -0
  209. data/vendor/git/corpora.git/data/music/xxl_freshman.json +17 -0
  210. data/vendor/git/corpora.git/data/mythology/egyptian_gods.json +279 -0
  211. data/vendor/git/corpora.git/data/mythology/greek_gods.json +36 -0
  212. data/vendor/git/corpora.git/data/mythology/greek_monsters.json +29 -0
  213. data/vendor/git/corpora.git/data/mythology/greek_myths_master.json +98 -0
  214. data/vendor/git/corpora.git/data/mythology/greek_titans.json +38 -0
  215. data/vendor/git/corpora.git/data/mythology/hebrew_god.json +69 -0
  216. data/vendor/git/corpora.git/data/mythology/lovecraft.json +100 -0
  217. data/vendor/git/corpora.git/data/mythology/monsters.json +91 -0
  218. data/vendor/git/corpora.git/data/mythology/norse_gods.json +75 -0
  219. data/vendor/git/corpora.git/data/mythology/roman_deities.json +30 -0
  220. data/vendor/git/corpora.git/data/objects/clothing.json +95 -0
  221. data/vendor/git/corpora.git/data/objects/corpora_winners.json +32 -0
  222. data/vendor/git/corpora.git/data/objects/objects.json +452 -0
  223. data/vendor/git/corpora.git/data/objects/premodern_weapons.json +55 -0
  224. data/vendor/git/corpora.git/data/plants/cannabis.json +426 -0
  225. data/vendor/git/corpora.git/data/plants/flowers.json +67 -0
  226. data/vendor/git/corpora.git/data/plants/plants.json +2526 -0
  227. data/vendor/git/corpora.git/data/psychology/personality_test.json +305 -0
  228. data/vendor/git/corpora.git/data/religion/christian_saints.json +6982 -0
  229. data/vendor/git/corpora.git/data/religion/fictional_religions.json +267 -0
  230. data/vendor/git/corpora.git/data/religion/parody_religions.json +20 -0
  231. data/vendor/git/corpora.git/data/religion/religions.json +880 -0
  232. data/vendor/git/corpora.git/data/science/elements.json +2835 -0
  233. data/vendor/git/corpora.git/data/science/hail_size.json +85 -0
  234. data/vendor/git/corpora.git/data/science/meteorology.json +659 -0
  235. data/vendor/git/corpora.git/data/science/minor_planets.json +1005 -0
  236. data/vendor/git/corpora.git/data/science/planets.json +241 -0
  237. data/vendor/git/corpora.git/data/science/pregnancy.json +220 -0
  238. data/vendor/git/corpora.git/data/science/toxic_chemicals.json +385 -0
  239. data/vendor/git/corpora.git/data/science/weather_conditions.json +269 -0
  240. data/vendor/git/corpora.git/data/societies_and_groups/animal_welfare.json +408 -0
  241. data/vendor/git/corpora.git/data/societies_and_groups/designated_terrorist_groups/australia.json +24 -0
  242. data/vendor/git/corpora.git/data/societies_and_groups/designated_terrorist_groups/canada.json +54 -0
  243. data/vendor/git/corpora.git/data/societies_and_groups/designated_terrorist_groups/china.json +6 -0
  244. data/vendor/git/corpora.git/data/societies_and_groups/designated_terrorist_groups/egypt.json +9 -0
  245. data/vendor/git/corpora.git/data/societies_and_groups/designated_terrorist_groups/european_union.json +31 -0
  246. data/vendor/git/corpora.git/data/societies_and_groups/designated_terrorist_groups/india.json +35 -0
  247. data/vendor/git/corpora.git/data/societies_and_groups/designated_terrorist_groups/iran.json +7 -0
  248. data/vendor/git/corpora.git/data/societies_and_groups/designated_terrorist_groups/israel.json +13 -0
  249. data/vendor/git/corpora.git/data/societies_and_groups/designated_terrorist_groups/kazakhstan.json +11 -0
  250. data/vendor/git/corpora.git/data/societies_and_groups/designated_terrorist_groups/russia.json +23 -0
  251. data/vendor/git/corpora.git/data/societies_and_groups/designated_terrorist_groups/saudi_arabia.json +9 -0
  252. data/vendor/git/corpora.git/data/societies_and_groups/designated_terrorist_groups/tunisia.json +3 -0
  253. data/vendor/git/corpora.git/data/societies_and_groups/designated_terrorist_groups/turkey.json +15 -0
  254. data/vendor/git/corpora.git/data/societies_and_groups/designated_terrorist_groups/ukraine.json +4 -0
  255. data/vendor/git/corpora.git/data/societies_and_groups/designated_terrorist_groups/united_arab_emirates.json +31 -0
  256. data/vendor/git/corpora.git/data/societies_and_groups/designated_terrorist_groups/united_kingdom.json +82 -0
  257. data/vendor/git/corpora.git/data/societies_and_groups/designated_terrorist_groups/united_nations.json +37 -0
  258. data/vendor/git/corpora.git/data/societies_and_groups/designated_terrorist_groups/united_states.json +73 -0
  259. data/vendor/git/corpora.git/data/societies_and_groups/fraternities/coeducational_fraternities.json +107 -0
  260. data/vendor/git/corpora.git/data/societies_and_groups/fraternities/defunct.json +107 -0
  261. data/vendor/git/corpora.git/data/societies_and_groups/fraternities/fraternities.json +884 -0
  262. data/vendor/git/corpora.git/data/societies_and_groups/fraternities/professional.json +574 -0
  263. data/vendor/git/corpora.git/data/societies_and_groups/fraternities/service.json +90 -0
  264. data/vendor/git/corpora.git/data/societies_and_groups/fraternities/sororities.json +674 -0
  265. data/vendor/git/corpora.git/data/societies_and_groups/semi_secret.json +146 -0
  266. data/vendor/git/corpora.git/data/sports/football/epl_teams.json +145 -0
  267. data/vendor/git/corpora.git/data/sports/football/laliga_teams.json +125 -0
  268. data/vendor/git/corpora.git/data/sports/football/serieA.json +104 -0
  269. data/vendor/git/corpora.git/data/sports/mlb_teams.json +245 -0
  270. data/vendor/git/corpora.git/data/sports/nba_mvps.json +254 -0
  271. data/vendor/git/corpora.git/data/sports/nba_teams.json +244 -0
  272. data/vendor/git/corpora.git/data/sports/nfl_teams.json +261 -0
  273. data/vendor/git/corpora.git/data/sports/nhl_teams.json +244 -0
  274. data/vendor/git/corpora.git/data/sports/olympics.json +572 -0
  275. data/vendor/git/corpora.git/data/sports/sports.json +972 -0
  276. data/vendor/git/corpora.git/data/technology/appliances.json +112 -0
  277. data/vendor/git/corpora.git/data/technology/computer_sciences.json +203 -0
  278. data/vendor/git/corpora.git/data/technology/fireworks.json +45 -0
  279. data/vendor/git/corpora.git/data/technology/guns_n_rifles.json +65 -0
  280. data/vendor/git/corpora.git/data/technology/knots.json +217 -0
  281. data/vendor/git/corpora.git/data/technology/lisp.json +70 -0
  282. data/vendor/git/corpora.git/data/technology/new_technologies.json +534 -0
  283. data/vendor/git/corpora.git/data/technology/photo_sharing_websites.json +42 -0
  284. data/vendor/git/corpora.git/data/technology/programming_languages.json +707 -0
  285. data/vendor/git/corpora.git/data/technology/programming_languages_popular.json +38 -0
  286. data/vendor/git/corpora.git/data/technology/social_networking_websites.json +217 -0
  287. data/vendor/git/corpora.git/data/technology/video_hosting_websites.json +98 -0
  288. data/vendor/git/corpora.git/data/transportation/commercial-aircraft.json +242 -0
  289. data/vendor/git/corpora.git/data/transportation/launchVehicleList.json +549 -0
  290. data/vendor/git/corpora.git/data/travel/lcc.json +378 -0
  291. data/vendor/git/corpora.git/data/words/adjs.json +965 -0
  292. data/vendor/git/corpora.git/data/words/adverbs.json +330 -0
  293. data/vendor/git/corpora.git/data/words/closed_pairs.json +203 -0
  294. data/vendor/git/corpora.git/data/words/common.json +986 -0
  295. data/vendor/git/corpora.git/data/words/compounds.json +13380 -0
  296. data/vendor/git/corpora.git/data/words/crash_blossoms.json +68 -0
  297. data/vendor/git/corpora.git/data/words/eggcorns.json +183 -0
  298. data/vendor/git/corpora.git/data/words/emoji/codePage437.json +261 -0
  299. data/vendor/git/corpora.git/data/words/emoji/cute_kaomoji.json +36 -0
  300. data/vendor/git/corpora.git/data/words/emoji/emoji.json +869 -0
  301. data/vendor/git/corpora.git/data/words/encouraging_words.json +53 -0
  302. data/vendor/git/corpora.git/data/words/ergative_verbs.json +286 -0
  303. data/vendor/git/corpora.git/data/words/expletives.json +615 -0
  304. data/vendor/git/corpora.git/data/words/harvard_sentences.json +728 -0
  305. data/vendor/git/corpora.git/data/words/infinitive_verbs.json +635 -0
  306. data/vendor/git/corpora.git/data/words/interjections.json +223 -0
  307. data/vendor/git/corpora.git/data/words/literature/infinitejest.json +155 -0
  308. data/vendor/git/corpora.git/data/words/literature/lovecraft_words.json +61 -0
  309. data/vendor/git/corpora.git/data/words/literature/mr_men_little_miss.json +94 -0
  310. data/vendor/git/corpora.git/data/words/literature/shakespeare_phrases.json +161 -0
  311. data/vendor/git/corpora.git/data/words/literature/shakespeare_sonnets.json +2929 -0
  312. data/vendor/git/corpora.git/data/words/literature/shakespeare_words.json +324 -0
  313. data/vendor/git/corpora.git/data/words/literature/technology_quotes.json +79 -0
  314. data/vendor/git/corpora.git/data/words/nouns.json +997 -0
  315. data/vendor/git/corpora.git/data/words/oprah_quotes.json +47 -0
  316. data/vendor/git/corpora.git/data/words/personal_nouns.json +9314 -0
  317. data/vendor/git/corpora.git/data/words/personal_pronouns.json +61 -0
  318. data/vendor/git/corpora.git/data/words/possessive_pronouns.json +43 -0
  319. data/vendor/git/corpora.git/data/words/prefix_root_suffix.json +3688 -0
  320. data/vendor/git/corpora.git/data/words/prepositions.json +135 -0
  321. data/vendor/git/corpora.git/data/words/proverbs.json +533 -0
  322. data/vendor/git/corpora.git/data/words/resume_action_words.json +142 -0
  323. data/vendor/git/corpora.git/data/words/rhymeless_words.json +125 -0
  324. data/vendor/git/corpora.git/data/words/spells.json +460 -0
  325. data/vendor/git/corpora.git/data/words/state_verbs.json +25 -0
  326. data/vendor/git/corpora.git/data/words/states_of_drunkenness.json +39 -0
  327. data/vendor/git/corpora.git/data/words/stopwords/ar.json +169 -0
  328. data/vendor/git/corpora.git/data/words/stopwords/bg.json +265 -0
  329. data/vendor/git/corpora.git/data/words/stopwords/cs.json +412 -0
  330. data/vendor/git/corpora.git/data/words/stopwords/da.json +70 -0
  331. data/vendor/git/corpora.git/data/words/stopwords/de.json +599 -0
  332. data/vendor/git/corpora.git/data/words/stopwords/en.json +862 -0
  333. data/vendor/git/corpora.git/data/words/stopwords/es.json +450 -0
  334. data/vendor/git/corpora.git/data/words/stopwords/fi.json +754 -0
  335. data/vendor/git/corpora.git/data/words/stopwords/fr.json +501 -0
  336. data/vendor/git/corpora.git/data/words/stopwords/gr.json +159 -0
  337. data/vendor/git/corpora.git/data/words/stopwords/it.json +439 -0
  338. data/vendor/git/corpora.git/data/words/stopwords/jp.json +50 -0
  339. data/vendor/git/corpora.git/data/words/stopwords/lv.json +171 -0
  340. data/vendor/git/corpora.git/data/words/stopwords/nl.json +275 -0
  341. data/vendor/git/corpora.git/data/words/stopwords/no.json +125 -0
  342. data/vendor/git/corpora.git/data/words/stopwords/pl.json +281 -0
  343. data/vendor/git/corpora.git/data/words/stopwords/pt.json +449 -0
  344. data/vendor/git/corpora.git/data/words/stopwords/ru.json +428 -0
  345. data/vendor/git/corpora.git/data/words/stopwords/sk.json +185 -0
  346. data/vendor/git/corpora.git/data/words/stopwords/sv.json +393 -0
  347. data/vendor/git/corpora.git/data/words/stopwords/tr.json +236 -0
  348. data/vendor/git/corpora.git/data/words/strange_words.json +65 -0
  349. data/vendor/git/corpora.git/data/words/ultraconserved.json +1673 -0
  350. data/vendor/git/corpora.git/data/words/units_of_time.json +32 -0
  351. data/vendor/git/corpora.git/data/words/us_president_quotes.json +202 -0
  352. data/vendor/git/corpora.git/data/words/verbs.json +2537 -0
  353. data/vendor/git/corpora.git/data/words/verbs_with_conjugations.json +13313 -0
  354. data/vendor/git/corpora.git/data/words/word_clues/clues_five.json +10296 -0
  355. data/vendor/git/corpora.git/data/words/word_clues/clues_four.json +6329 -0
  356. data/vendor/git/corpora.git/data/words/word_clues/clues_six.json +10909 -0
  357. data/vendor/git/corpora.git/package.json +23 -0
  358. metadata +403 -0
@@ -0,0 +1,623 @@
1
+ {
2
+ "description": "A list of uk political parties.",
3
+ "source": "http://www.electoralcommission.org.uk/ export on 8th May 2015",
4
+ "parties": [
5
+ "100% Registration Campaign",
6
+ "1001 Campaign",
7
+ "2015 Constitutionalists UK",
8
+ "21st Century Conservative Democrats",
9
+ "21st Century Democracy",
10
+ "38 Degrees",
11
+ "A Bee C",
12
+ "A Better Way to Govern",
13
+ "Aberavon Yes for Wales",
14
+ "Abolish Magna Carta",
15
+ "Action To Save St.John's Hospital",
16
+ "Al-Zebabist Nation of Ooog",
17
+ "All People's Party",
18
+ "All Scotland Pensioners Party",
19
+ "Alliance - Alliance Party of Northern Ireland",
20
+ "Alliance EPP: European People’s Party UK",
21
+ "Alliance For Green Socialism",
22
+ "Alliance for London",
23
+ "Alliance for Workers' Liberty",
24
+ "Alter Change - Politics. Only Different",
25
+ "Alternative Party",
26
+ "Amnesty International United Kingdom Section",
27
+ "Animal Welfare Party",
28
+ "Apni Party",
29
+ "Apolitical Democrats",
30
+ "Arfon Ie dros Gymru (Arfon Yes for Wales)",
31
+ "Arthritis Research UK",
32
+ "Ashford Independent",
33
+ "Ashtead Independents",
34
+ "Association of Teachers & Lecturers",
35
+ "Avaaz Campaigns UK",
36
+ "Barnsley Independent Group",
37
+ "Beer",
38
+ "Better Together 2012 Ltd",
39
+ "Better With Scotland",
40
+ "Billingham Independents Association",
41
+ "Binfield Independent Conservatives",
42
+ "BollingtonFirst",
43
+ "Bournemouth Independent Alliance",
44
+ "Brentwood First",
45
+ "Bridgend & Ogmore Yes Campaign",
46
+ "Bristol First",
47
+ "Britain First",
48
+ "Britain Yearly Meeting of the Religious Society of Friends (Quakers)",
49
+ "Britannica",
50
+ "British Commonwealth Party",
51
+ "British Constitution Party",
52
+ "British Democratic Party",
53
+ "British Independents",
54
+ "British Institute of Human Rights",
55
+ "British Medical Association",
56
+ "British National Party",
57
+ "British Unicorn Party",
58
+ "Business for Scotland Ltd",
59
+ "Calverton First Independents Party",
60
+ "Cambridge Socialists",
61
+ "Campaign For an Independent Britain",
62
+ "Campaign for Nuclear Disarmament",
63
+ "Campaign for the NHS Reinstatement Bill 2015",
64
+ "Campaign",
65
+ "Cannabis is Safer than Alcohol",
66
+ "Canvey Island Independent Party",
67
+ "Cardiff North Party",
68
+ "Cardiff Says Yes (Caerdydd yn dweud Ie)",
69
+ "Castle Independents",
70
+ "CCFON Ltd",
71
+ "Centre Democrats",
72
+ "Centre for Labour & Social Studies (CLASS)",
73
+ "Centreground Party",
74
+ "Chigwell Residents",
75
+ "Children of the Atom",
76
+ "Christian Democrat Party for a Consensus",
77
+ "Christian Democratic Party",
78
+ "Christian Movement for Great Britain",
79
+ "Christian Party \"Proclaiming Christ's Lordship\"",
80
+ "Christian Peoples Alliance",
81
+ "Christians for Independence",
82
+ "Church of the Militant Elvis",
83
+ "Citizens First",
84
+ "City Independents",
85
+ "Class War",
86
+ "Co-operative Party",
87
+ "Common Decency",
88
+ "Common Good",
89
+ "Common Sense Party",
90
+ "Communication Workers Union (CWU)",
91
+ "Communication Workers Union",
92
+ "Communist League Election Campaign",
93
+ "Communist Party of Britain",
94
+ "Communities Against the Cuts",
95
+ "Communities United Party",
96
+ "Community Action Party",
97
+ "Community Campaign (Hart)",
98
+ "Community Candidate Party",
99
+ "Community First",
100
+ "Community Partnership (Northern Ireland)",
101
+ "Community Representatives Party",
102
+ "Consensus",
103
+ "Conservative and Unionist Party",
104
+ "Conservative Muslim Forum",
105
+ "Conservative Party",
106
+ "Conservative Support Ltd",
107
+ "Conservative Yes",
108
+ "County Durham Council Supporters Club",
109
+ "Crewe West End First",
110
+ "Cumbria Broadband Rural and Community Projects Limited",
111
+ "Cymru Yfory",
112
+ "Deep Earth Ecosphere Preservation Alliance",
113
+ "Democracy First",
114
+ "Democratic Independence Party",
115
+ "Democratic Reform Party",
116
+ "Democratic Republican Party",
117
+ "Democratic Unionist Party - D.U.P.",
118
+ "Derwentside Independents",
119
+ "Devizes Guardians",
120
+ "Digital Democracy",
121
+ "Direct Democracy (Communist) Party",
122
+ "District First",
123
+ "Doncaster First Independents Group",
124
+ "Dunmow First",
125
+ "East Cleveland Independent",
126
+ "East Devon Alliance",
127
+ "East Lindsey Independent Group",
128
+ "East Wycombe Independent Party",
129
+ "Edinburgh Residents Party",
130
+ "Educational Institute of Scotland",
131
+ "Electoral Reform Society Limited",
132
+ "Elm Park Residents' Association",
133
+ "English Democrats Party",
134
+ "English Democrats",
135
+ "English Independence Party",
136
+ "English National Party",
137
+ "English Parliamentary Party",
138
+ "English People's Party",
139
+ "Equal and Just Society",
140
+ "Equal Parenting Alliance",
141
+ "Equitable Members Action Group Ltd",
142
+ "Esher Residents Association",
143
+ "Eston Independent Party",
144
+ "Europeans Party",
145
+ "Everyone's Party",
146
+ "Ewell Court Residents' Association",
147
+ "Fabian Society",
148
+ "Fancy Dress Party",
149
+ "Farming 4 Yes",
150
+ "Farnham Residents",
151
+ "Fermanagh Against Fracking",
152
+ "Fianna Fáil - The Republican Party",
153
+ "Fire Brigades Union",
154
+ "First For Kirkby",
155
+ "For Russia",
156
+ "Forces Pension Society",
157
+ "Formby Residents Action Group",
158
+ "Free Public Transport Party",
159
+ "Free United Kingdom Party",
160
+ "Friends of Northumberland County (FONC)",
161
+ "Fulham Group",
162
+ "Fylde Ratepayers",
163
+ "Generation Yes",
164
+ "Get Snouts Out The Trough",
165
+ "Gift Economy Party",
166
+ "Give Me Back Elmo",
167
+ "Glasgow First",
168
+ "Global Dialogue",
169
+ "GMB",
170
+ "Grand Orange Lodge of Scotland",
171
+ "Green Party",
172
+ "Guildford Greenbelt Group",
173
+ "Hackney First",
174
+ "Hadley & Leegomery Residents Association",
175
+ "Halstead Residents' Association",
176
+ "Handforth 'Ratepayers' Association (Independent)",
177
+ "Hanworth & Birch Hill Residents",
178
+ "Harlow Independent Party",
179
+ "Harmony Party",
180
+ "Harold Wood Hill Park Residents Association",
181
+ "Hartlepool Independents - Putting Hartlepool First",
182
+ "Havering Residents Association",
183
+ "Hawkwell Residents",
184
+ "Healthier Hertford",
185
+ "Heath & Birchgrove Independents",
186
+ "Henley Residents Group",
187
+ "Henley Together",
188
+ "Hersham Village Society",
189
+ "Hextable Independent",
190
+ "Hinchley Wood Residents Association",
191
+ "Hoi Polloi",
192
+ "Hong Kong Independence Party",
193
+ "Hope Not Hate Educational Ltd",
194
+ "Hope Not Hate Ltd",
195
+ "Hornchurch Residents Association",
196
+ "Hucknall First Community Forum",
197
+ "Hull Red Labour",
198
+ "Humanity",
199
+ "Hykeham Independents",
200
+ "Hyperlipidaemia Education & Atherosclerosis Research Trust UK",
201
+ "Ie dros Gymru Cyfyngedig (Yes for Wales Ltd)",
202
+ "Ie Ynys Mon",
203
+ "Independence from Europe",
204
+ "Independent Democrats",
205
+ "Independent Diplomat Commission",
206
+ "Independent Green Voice",
207
+ "Independent Group of Councillors",
208
+ "Independent Kidderminster Hospital and Health Concern",
209
+ "Independent Labour Group",
210
+ "Independent Loughton Residents Association",
211
+ "Independent Save Withybush Save Lives",
212
+ "Independent Schools Council",
213
+ "Independent Sovereign Democratic Britain",
214
+ "Independent Voice-Community Focus",
215
+ "Independent Working Class Association",
216
+ "Independents @ Swansea",
217
+ "Independents at Mendip",
218
+ "Independents for Arlesey",
219
+ "Independents for Bristol",
220
+ "Independents for Frome",
221
+ "Independents of North Yorkshire",
222
+ "Ingleby Barwick Independent Society",
223
+ "Interactive Democracy",
224
+ "Internet Democrats",
225
+ "Irish Republican Socialist Party",
226
+ "Islam Zinda Baad Platform",
227
+ "It's Our County (Herefordshire)",
228
+ "iXDemocracy",
229
+ "Jubilee Party",
230
+ "Justice For Men & Boys",
231
+ "Justice Party",
232
+ "Kaizen Liberal Utilitarian Democrats",
233
+ "Keep It Real Party",
234
+ "Keep Our St Helier Hospital Party",
235
+ "Kitten Independence Party",
236
+ "Labour for Independence",
237
+ "Labour No to AV",
238
+ "Labour Party of Northern Ireland",
239
+ "Labour Party",
240
+ "Labour Yes",
241
+ "Land Party",
242
+ "League Against Cruel Sports",
243
+ "Left Unity",
244
+ "Left-of-Centre Coalition Campaign",
245
+ "Let's Stay Together",
246
+ "Lewisham People Before Profit",
247
+ "Liberal Democrats",
248
+ "Libertarian Party",
249
+ "Liberty GB",
250
+ "Life",
251
+ "Lincolnshire Independents Lincolnshire First",
252
+ "Llais Gwynedd - The Voice of Gwynedd",
253
+ "Llandaff North Independents",
254
+ "Llantwit First Independents",
255
+ "Local Voice",
256
+ "London First",
257
+ "Lush Ltd",
258
+ "Macclesfield First",
259
+ "Magna Carta Conservation Party Great Britain",
260
+ "Mainstream",
261
+ "Make Willesden Green",
262
+ "Mansfield Independent Forum",
263
+ "Manston Airport Independent Party",
264
+ "March 3 is \"Vote No Day\"",
265
+ "Marylebone Residents",
266
+ "Mass1 Netgen Ltd",
267
+ "Matriarchal Party United Kingdom Great Britain",
268
+ "Mebyon Kernow - The Party for Cornwall",
269
+ "Mercian Party",
270
+ "Meritocracy Pàrtaidh na h-Alba",
271
+ "Merthyr Independents",
272
+ "Merton Park Ward Independent Residents",
273
+ "Mexborough First",
274
+ "Middlewich First",
275
+ "Mitcham Independent Party",
276
+ "Monmouthshire Says Yes",
277
+ "Moorlands Democratic Alliance",
278
+ "Morecambe Bay Independents",
279
+ "Morley Borough Independents",
280
+ "Motorcycle Alliance",
281
+ "Motorists",
282
+ "Movement for Active Democracy (M.A.D.)",
283
+ "Movement for Change Ltd",
284
+ "Mr Alan Edward Rayner",
285
+ "Mr Alistair McConnachie",
286
+ "Mr Angus MacDonald",
287
+ "Mr Dave Stephens",
288
+ "Mr David Alwyn ap Huw Humphreys",
289
+ "Mr Ghill Donald",
290
+ "Mr Graham McArthur",
291
+ "Mr Graham Wason",
292
+ "Mr Mark William Beech",
293
+ "Mr Matthew Brown",
294
+ "Mr Mike Rigby",
295
+ "Mr Richard Wayne Jenkins",
296
+ "Mr Stuart Long",
297
+ "Mr Tommy Sheppard",
298
+ "Mr Tony George Stevenson",
299
+ "Mrs Sarah-Louise Bailey-Kelly",
300
+ "Nantwich Independent Party",
301
+ "NASUWT The Teachers' Union",
302
+ "National Collective (Artists and Creatives for Independence Limited)",
303
+ "National Flood Prevention Party",
304
+ "National Front",
305
+ "National Health Action Party",
306
+ "National Liberal Party - True Liberalism",
307
+ "National Republican And Democratic Party",
308
+ "National Union of Rail",
309
+ "National Union of Students",
310
+ "National Union of Teachers",
311
+ "Nationwide Reform Party",
312
+ "Neath Says Yes",
313
+ "Neston Action",
314
+ "Network for Animals Ltd",
315
+ "New Dawn",
316
+ "New England Party",
317
+ "New Independent Centralists",
318
+ "New Parliament Party",
319
+ "Newcastle upon Tyne Community First Party",
320
+ "Newclear Outline (NO)",
321
+ "NI21",
322
+ "No Bedroom Tax - No Welfare Cuts",
323
+ "No Borders Campaign",
324
+ "No Campaign Limited",
325
+ "No to AV",
326
+ "Nork Residents' Association",
327
+ "North East Cheshire Independents",
328
+ "North East No Campaign",
329
+ "North East Says No Ltd",
330
+ "North Somerset First Independents",
331
+ "Northampton - Save Our Public Services",
332
+ "Northchurch Residents Association",
333
+ "Northwood Hills Community Champions",
334
+ "Nottinghamshire Independents",
335
+ "Official Monster Raving Loony Party",
336
+ "Old Swan Against the Cuts",
337
+ "Old Windsor Residents Association",
338
+ "One Norbiton",
339
+ "Open Liskeard",
340
+ "Orkney Manifesto Group",
341
+ "Our West Lancashire",
342
+ "Oxfordshire Independent Party",
343
+ "Party for a United Thanet",
344
+ "Party of Dissent",
345
+ "Patria",
346
+ "Patriotic Socialist Party",
347
+ "Peasedown 1st",
348
+ "People Against Bureaucracy Group",
349
+ "People Before Profit Alliance",
350
+ "People First - Gwerin Gyntaf",
351
+ "People First Party",
352
+ "People Social Freedom Party",
353
+ "People's Administration",
354
+ "People's Democratic Party",
355
+ "Pettits Residents Association",
356
+ "Pirate Party UK",
357
+ "Plaid Cymru - The Party of Wales",
358
+ "Plaid Glyndwr",
359
+ "Polegate Independent",
360
+ "Polegate Residents' Association",
361
+ "Political Animal Lobby Ltd",
362
+ "Population Party UK",
363
+ "Populist Party",
364
+ "Port Talbot Residents Association",
365
+ "Power To The People",
366
+ "Privatise for Prosperity",
367
+ "Pro Liberty",
368
+ "Progress Ltd",
369
+ "Progressive Party",
370
+ "Progressive Unionist Party of Northern Ireland",
371
+ "Proletarian",
372
+ "Protestant Coalition",
373
+ "Putting Croydon First!",
374
+ "Radcliffe Independence Party",
375
+ "Radical Independence Campaign",
376
+ "Rainham Resident's Association",
377
+ "Real Democracy Party",
378
+ "Rebooting Democracy",
379
+ "Red Flag - Anti-Corruption",
380
+ "Reduce VAT in Sport",
381
+ "Reform 2000 Party",
382
+ "Reform",
383
+ "Representative Democracy Party",
384
+ "Republican Network For Unity",
385
+ "Residents and Motorists of Great Britain",
386
+ "Residents Associations of Epsom and Ewell",
387
+ "Residents for Uttlesford",
388
+ "Residents' Association of Cuddington",
389
+ "Residents' Association of London",
390
+ "Restoration Party",
391
+ "Restore the Family For Children's Sake",
392
+ "Revolutionary Communist Party Britain (Marxist-Leninist)",
393
+ "Rhondda Says Yes (Rhondda yn dweud Ie)",
394
+ "Richmondshire Independents",
395
+ "Rochdale First Party",
396
+ "Rochford District Residents",
397
+ "Romsley Together",
398
+ "RSPCA Campaigns Ltd",
399
+ "Runnymede Independent Residents' Group",
400
+ "Rural Oxfordshire Action Rally - ROAR",
401
+ "Sandown Independents",
402
+ "Save Hartlepool Hospital",
403
+ "Say Yes! To A Fair Society!",
404
+ "Scotland Against Crooked Lawyers",
405
+ "Scotland In Union",
406
+ "Scottish Campaign for Nuclear Disarmament",
407
+ "Scottish Democratic Alliance",
408
+ "Scottish Green Party",
409
+ "Scottish Independence Convention",
410
+ "Scottish Jacobite Party",
411
+ "Scottish Libertarian Party",
412
+ "Scottish National Party (SNP)",
413
+ "Scottish Socialist Party",
414
+ "Scottish Unionist Party",
415
+ "Scottish Voice",
416
+ "SDLP (Social Democratic & Labour Party)",
417
+ "Selston Parish Independents",
418
+ "Senior Citizens Party",
419
+ "Sinn Féin",
420
+ "Social Democratic Party",
421
+ "Socialist Alliance",
422
+ "Socialist Alternative",
423
+ "Socialist Equality Party",
424
+ "Socialist Labour Party",
425
+ "Socialist Party (Northern Ireland)",
426
+ "Socialist People's Party",
427
+ "Solidarity - Scotland's Socialist Movement",
428
+ "Solihull and Meriden Residents Association",
429
+ "Something New",
430
+ "South East Northumberland Unitary Council",
431
+ "South Tyneside Progressives",
432
+ "South Woodham Ferrers Independents",
433
+ "Space Navies Party",
434
+ "Spelthorne Independent Party",
435
+ "Spennymoor Independents",
436
+ "Spirit of Independence",
437
+ "St. George's Hill Independents",
438
+ "Staffordshire Independent Group",
439
+ "Stamford Group of Independents",
440
+ "Stand Up To UKIP",
441
+ "Stand",
442
+ "Stapleford Alliance",
443
+ "Stirlingshire For No Thanks",
444
+ "Stone Independents",
445
+ "Stoneleigh and Auriol Residents' Association",
446
+ "Stonewall Equality Ltd",
447
+ "Stratford First",
448
+ "Suffolk Together",
449
+ "Support Stafford Group",
450
+ "Supporters of Rural Northumberland",
451
+ "Sutton on Sea First",
452
+ "Swanscombe and Greenhithe Residents Association",
453
+ "Tattenhams Residents' Association",
454
+ "Tendring First",
455
+ "Tewkesbury Independents",
456
+ "Thames Ditton / Weston Green Residents' Association",
457
+ "Thanet Stand Up to UKIP",
458
+ "The 30-50 Coalition",
459
+ "The Above and Beyond Party",
460
+ "The Animal Protection Party",
461
+ "The Awakened Nation",
462
+ "The Beverley Party",
463
+ "The Birthday Party",
464
+ "The Blue Party",
465
+ "The Borders Party",
466
+ "The British Empire Party",
467
+ "The British Voice",
468
+ "The Campaign for British Influence in Europe Limited",
469
+ "The Campaign to End All Animal Experiments",
470
+ "The Chase Independent Party",
471
+ "The Citizens Party of Halton",
472
+ "The Commonwealth Liberation Party",
473
+ "The Community (London Borough of Hounslow)",
474
+ "The Community Group",
475
+ "The Conservative and Unionist Party",
476
+ "The Cornish Democrats",
477
+ "The Cornish Nationalist Party",
478
+ "The Cromwell Republican Commonwealth Party",
479
+ "The Democratic Party",
480
+ "The Democratic Realist Party",
481
+ "The Eccentric Party of Great Britain",
482
+ "The Entertainment Party",
483
+ "The European Citizens Party",
484
+ "The Evolution Party",
485
+ "The Fair Party",
486
+ "The Free Democratic Party",
487
+ "The Free Energy Party UK",
488
+ "The Globelization Liberation Dream Party",
489
+ "The Grumpy Old Men Political Party",
490
+ "The Hacked Off Campaign",
491
+ "The Holland-on-Sea Residents' Association",
492
+ "The Homeland Party",
493
+ "The House Party - Homes For Londoners",
494
+ "The Independent Party For East Staffordshire",
495
+ "The Independent Political Alliance Party",
496
+ "The Independent Socialist Party",
497
+ "The Independents Alliance",
498
+ "The Just Political Party",
499
+ "The Justice & Anti-Corruption Party",
500
+ "The Labour Party",
501
+ "The Liberal Party",
502
+ "The Ligali Party",
503
+ "The Local Party",
504
+ "The Magna Carta Party",
505
+ "The Molesey Residents Association",
506
+ "The Money Free Party",
507
+ "The Monmouth Party",
508
+ "The Nationwide Party",
509
+ "The New Society of Worth",
510
+ "The North East Party",
511
+ "The Northern Party",
512
+ "The Party for Poole People Ltd.",
513
+ "THE PARTY PARTY",
514
+ "The Peace Party - Non-violence",
515
+ "The People's Representative",
516
+ "The Peoples Party For Better Government",
517
+ "The Pilgrim Party",
518
+ "The Pluralist Party",
519
+ "The Preferendum Society",
520
+ "The Principles of Politics Party",
521
+ "The Priority Party",
522
+ "The Protest Party",
523
+ "The Radical Party",
524
+ "The Realists' Party",
525
+ "The Referendum Party",
526
+ "The Republican Socialist Party",
527
+ "The Residents' Association of Barnet",
528
+ "The Respect Party",
529
+ "The Roman Party. Ave",
530
+ "The Salvation Army",
531
+ "The Say No Party",
532
+ "The Scottish Research Society",
533
+ "The Sensible Party",
534
+ "The Socialist Party of Great Britain",
535
+ "The Southport Party",
536
+ "The Sustainable Population Party",
537
+ "The True English (Poetry) Party",
538
+ "The U(niversal) Party",
539
+ "The UK Progressive Democracy Party",
540
+ "The United Democratic Party",
541
+ "The United in Europe Party",
542
+ "The Walton Society",
543
+ "The Whig Party",
544
+ "The Woodland Trust",
545
+ "The Workers Party",
546
+ "The Yorkshire Party",
547
+ "Thornaby Independent Association",
548
+ "TLC - The Local Community - Shepton Mallet",
549
+ "Torfaen says \"Yes\"",
550
+ "Trade Union Congress",
551
+ "Trade Unionist and Socialist Coalition",
552
+ "Traditional Unionist Voice - TUV",
553
+ "True Brits",
554
+ "True Democracy Party",
555
+ "True Wales",
556
+ "Truly Independent English Party",
557
+ "Ubuntu Party",
558
+ "UK Community Issues",
559
+ "UK Independence Party (UK I P)",
560
+ "UK Independence Party (UKIP)",
561
+ "UK Meritocracy Party",
562
+ "UK Yorkshire Socialist Alliance Party",
563
+ "Ulster Unionist Party",
564
+ "Union of Shop",
565
+ "UNISON: The Public Service Union",
566
+ "UNISON",
567
+ "Unite the Union",
568
+ "United Kingdom Independence Party",
569
+ "United Kingdom People Quality Life Party",
570
+ "Unity For Peace And Socialism",
571
+ "Unlock Democracy",
572
+ "Upminster and Cranham Residents Association",
573
+ "Valley Independents",
574
+ "Valour",
575
+ "Vapers In Power",
576
+ "Veritas",
577
+ "Village Voice",
578
+ "Vivamus",
579
+ "Vote for Policies Ltd",
580
+ "Vote Roehampton",
581
+ "Vote-OK",
582
+ "Voter Consultancy Ltd",
583
+ "Vox Pop",
584
+ "Wales TUC Cymru",
585
+ "War Veteran's Pro-Traditional Family Party",
586
+ "We Are The Reality Party",
587
+ "We Demand A Referendum Now",
588
+ "Wealthy Nation",
589
+ "Wells Independents",
590
+ "Welwyn Garden City Party",
591
+ "Wessex Regionalists",
592
+ "West Ewell and Ruxley Residents Association",
593
+ "West Suffolk Independents",
594
+ "Weybridge Independents",
595
+ "WFS2014 Ltd",
596
+ "White Rose GB",
597
+ "Whitnash Residents Association",
598
+ "Whitwell Resident's Association",
599
+ "Wigan Borough Green Socialists",
600
+ "Wigan Independent Network",
601
+ "Wigan Independents",
602
+ "Willingdon Residents' Association",
603
+ "Wings Over Scotland",
604
+ "Women for Independence",
605
+ "Workers Revolutionary Party",
606
+ "Working Families Party",
607
+ "World Peace Through Song",
608
+ "Wythall Residents' Association",
609
+ "Yarm Independent Association",
610
+ "Yarm Residents Association",
611
+ "Yes 2 Europe",
612
+ "Yes for Wales Swansea (Ie Dros Gymru Abertawe)",
613
+ "Yes in May 2011 Ltd",
614
+ "Yes Scotland Limited",
615
+ "Yes4theNorthEast",
616
+ "Ymgyrch Ie yng Ngheredigion (Yes Campaign in Ceredigion)",
617
+ "Yorkshire First",
618
+ "Young People's Party YPP",
619
+ "Your Decision",
620
+ "Yourvoice",
621
+ "Zero Tolerance Policing ex Chief"
622
+ ]
623
+ }