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,274 @@
1
+ {
2
+ "description": "Zodiac signs and associated information, both Western and Eastern.",
3
+ "source": "https://en.wikipedia.org/wiki/Astrological_sign",
4
+ "western_zodiac": {
5
+ "Aries": {
6
+ "longitude_start": "0",
7
+ "longitude_end": "30",
8
+ "svg_symbol": "https://en.wikipedia.org/wiki/File:Aries.svg",
9
+ "unicode_symbol": "♈",
10
+ "gloss": "The Ram",
11
+ "element": "Fire",
12
+ "ruling_body_classic": "Mars",
13
+ "ruling_body_modern": "Mars",
14
+ "keywords": ["driven", "idealistic", "aggressive"]
15
+ },
16
+ "Taurus": {
17
+ "longitude_start": "30",
18
+ "longitude_end": "60",
19
+ "svg_symbol": "https://en.wikipedia.org/wiki/File:Taurus.svg",
20
+ "unicode_symbol": "♉",
21
+ "gloss": "The Bull",
22
+ "element": "Earth",
23
+ "ruling_body_classic": "Venus",
24
+ "ruling_body_modern": "Earth",
25
+ "keywords": ["resolute", "sensual", "indulgent"]
26
+ },
27
+ "Gemini": {
28
+ "longitude_start": "60",
29
+ "longitude_end": "90",
30
+ "svg_symbol": "https://en.wikipedia.org/wiki/File:Gemini.svg",
31
+ "unicode_symbol": "♊",
32
+ "gloss": "The Twins",
33
+ "element": "Air",
34
+ "ruling_body_classic": "Mercury",
35
+ "ruling_body_modern": "Mercury",
36
+ "keywords": ["playful", "curious", "two-faced"]
37
+ },
38
+ "Cancer": {
39
+ "longitude_start": "90",
40
+ "longitude_end": "120",
41
+ "svg_symbol": "https://en.wikipedia.org/wiki/File:Cancer.svg",
42
+ "unicode_symbol": "♋",
43
+ "gloss": "The Crab",
44
+ "element": "Water",
45
+ "ruling_body_classic": "Moon",
46
+ "ruling_body_modern": "Moon",
47
+ "keywords": ["nurturing", "snobby", "petty"]
48
+ },
49
+ "Leo": {
50
+ "longitude_start": "120",
51
+ "longitude_end": "150",
52
+ "svg_symbol": "https://en.wikipedia.org/wiki/File:Leo.svg",
53
+ "unicode_symbol": "♌",
54
+ "gloss": "The Lion",
55
+ "element": "Fire",
56
+ "ruling_body_classic": "Sun",
57
+ "ruling_body_modern": "Sun",
58
+ "keywords": ["fierce", "opulent", "narcissistic"]
59
+ },
60
+ "Virgo": {
61
+ "longitude_start": "150",
62
+ "longitude_end": "180",
63
+ "svg_symbol": "https://en.wikipedia.org/wiki/File:Virgo.svg",
64
+ "unicode_symbol": "♍",
65
+ "gloss": "The Maiden",
66
+ "element": "Earth",
67
+ "ruling_body_classic": "Mercury",
68
+ "ruling_body_modern": "Ceres",
69
+ "keywords": ["meticulous", "helpful", "naive"]
70
+ },
71
+ "Libra": {
72
+ "longitude_start": "180",
73
+ "longitude_end": "210",
74
+ "svg_symbol": "https://en.wikipedia.org/wiki/File:Libra.svg",
75
+ "unicode_symbol": "♎",
76
+ "gloss": "The Scales",
77
+ "element": "Air",
78
+ "ruling_body_classic": "Venus",
79
+ "ruling_body_modern": "Venus",
80
+ "keywords": ["balanced", "chatty", "indecisive"]
81
+ },
82
+ "Scorpio": {
83
+ "longitude_start": "210",
84
+ "longitude_end": "240",
85
+ "svg_symbol": "https://en.wikipedia.org/wiki/File:Scorpio.svg",
86
+ "unicode_symbol": "♏",
87
+ "gloss": "The Scorpion",
88
+ "element": "Water",
89
+ "ruling_body_classic": "Mars",
90
+ "ruling_body_modern": "Pluto",
91
+ "keywords": ["deep", "magnetic", "destructive"]
92
+ },
93
+ "Sagittarius": {
94
+ "longitude_start": "240",
95
+ "longitude_end": "270",
96
+ "svg_symbol": "https://en.wikipedia.org/wiki/File:Sagittarius.svg",
97
+ "unicode_symbol": "♐",
98
+ "gloss": "The Archer",
99
+ "element": "Fire",
100
+ "ruling_body_classic": "Jupiter",
101
+ "ruling_body_modern": "Jupiter",
102
+ "keywords": ["ambitious", "daring", "coarse"]
103
+ },
104
+ "Capricorn": {
105
+ "longitude_start": "270",
106
+ "longitude_end": "300",
107
+ "svg_symbol": "https://en.wikipedia.org/wiki/File:Capricorn.svg",
108
+ "unicode_symbol": "♑",
109
+ "gloss": "The Mountain Sea-goat",
110
+ "element": "Earth",
111
+ "ruling_body_classic": "Saturn",
112
+ "ruling_body_modern": "Saturn",
113
+ "keywords": ["responsible", "awkward", "rigid"]
114
+ },
115
+ "Aquarius": {
116
+ "longitude_start": "300",
117
+ "longitude_end": "330",
118
+ "svg_symbol": "https://en.wikipedia.org/wiki/File:Aquarius.svg",
119
+ "unicode_symbol": "♒",
120
+ "gloss": "The Water-bearer",
121
+ "element": "Air",
122
+ "ruling_body_classic": "Saturn",
123
+ "ruling_body_modern": "Uranus",
124
+ "keywords": ["inventive", "zany", "erratic"]
125
+ },
126
+ "Pisces": {
127
+ "longitude_start": "330",
128
+ "longitude_end": "360",
129
+ "svg_symbol": "https://en.wikipedia.org/wiki/File:Pisces.svg",
130
+ "unicode_symbol": "♓",
131
+ "gloss": "The Fish",
132
+ "element": "Water",
133
+ "ruling_body_classic": "Jupiter",
134
+ "ruling_body_modern": "Neptune",
135
+ "keywords": ["artistic", "sentimental", "dependent"]
136
+ }
137
+ },
138
+ "eastern_zodiac": {
139
+ "Rat": {
140
+ "yin-yang": "Yang",
141
+ "direction": "North",
142
+ "season": "Mid-Winter",
143
+ "element": "Water",
144
+ "trine": "1st",
145
+ "years": [
146
+ 1900, 1912, 1924, 1936, 1948, 1960, 1972, 1984, 1996, 2008, 2020, 2032
147
+ ],
148
+ "unicode_symbol": "子"
149
+ },
150
+ "Ox": {
151
+ "yin-yang": "Yin",
152
+ "direction": "North",
153
+ "season": "Late Winter",
154
+ "element": "Earth",
155
+ "trine": "2nd",
156
+ "years": [
157
+ 1901, 1913, 1925, 1937, 1949, 1961, 1973, 1985, 1997, 2009, 2021, 2033
158
+ ],
159
+ "unicode_symbol": "丑"
160
+ },
161
+ "Tiger": {
162
+ "yin-yang": "Yang",
163
+ "direction": "East",
164
+ "season": "Early Spring",
165
+ "element": "Wood",
166
+ "trine": "3rd",
167
+ "years": [
168
+ 1902, 1914, 1926, 1938, 1950, 1962, 1974, 1986, 1998, 2010, 2022, 2034
169
+ ],
170
+ "unicode_symbol": "寅"
171
+ },
172
+ "Rabbit": {
173
+ "yin-yang": "Yin",
174
+ "direction": "East",
175
+ "season": "Mid-Spring",
176
+ "element": "Wood",
177
+ "trine": "4th",
178
+ "years": [
179
+ 1903, 1915, 1927, 1939, 1951, 1963, 1975, 1987, 1999, 2011, 2023, 2035
180
+ ],
181
+ "unicode_symbol": "卯"
182
+ },
183
+ "Dragon": {
184
+ "yin-yang": "Yang",
185
+ "direction": "East",
186
+ "season": "Late Spring",
187
+ "element": "Earth",
188
+ "trine": "1st",
189
+ "years": [
190
+ 1904, 1916, 1928, 1940, 1952, 1964, 1976, 1988, 2000, 2012, 2024, 2036
191
+ ],
192
+ "unicode_symbol": "辰"
193
+ },
194
+ "Snake": {
195
+ "yin-yang": "Yin",
196
+ "direction": "South",
197
+ "season": "Early Summer",
198
+ "element": "Fire",
199
+ "trine": "2nd",
200
+ "years": [
201
+ 1905, 1917, 1929, 1941, 1953, 1965, 1977, 1989, 2001, 2013, 2025, 2037
202
+ ],
203
+ "unicode_symbol": "巳"
204
+ },
205
+ "Horse": {
206
+ "yin-yang": "Yang",
207
+ "direction": "South",
208
+ "season": "Mid-Summer",
209
+ "element": "Fire",
210
+ "trine": "3rd",
211
+ "years": [
212
+ 1906, 1918, 1930, 1942, 1954, 1966, 1978, 1990, 2002, 2014, 2026, 2038
213
+ ],
214
+ "unicode_symbol": "午"
215
+ },
216
+ "Goat": {
217
+ "yin-yang": "Yin",
218
+ "direction": "South",
219
+ "season": "Late Summer",
220
+ "element": "Earth",
221
+ "trine": "4th",
222
+ "years": [
223
+ 1907, 1919, 1931, 1943, 1955, 1967, 1979, 1991, 2003, 2015, 2027, 2039
224
+ ],
225
+ "unicode_symbol": "未"
226
+ },
227
+ "Monkey": {
228
+ "yin-yang": "Yang",
229
+ "direction": "West",
230
+ "season": "Early Autumn",
231
+ "element": "Metal",
232
+ "trine": "1st",
233
+ "years": [
234
+ 1908, 1920, 1932, 1944, 1956, 1968, 1980, 1992, 2004, 2016, 2028, 2040
235
+ ],
236
+ "unicode_symbol": "申"
237
+ },
238
+ "Rooster": {
239
+ "yin-yang": "Yin",
240
+ "direction": "West",
241
+ "season": "Mid-Autumn",
242
+ "element": "Metal",
243
+ "trine": "2nd",
244
+ "years": [
245
+ 1909, 1921, 1933, 1945, 1957, 1969, 1981, 1993, 2005, 2017, 2029, 2041
246
+ ],
247
+ "unicode_symbol": "酉"
248
+ },
249
+ "Dog": {
250
+ "yin-yang": "Yang",
251
+ "direction": "West",
252
+ "season": "Late Autumn",
253
+ "element": "Earth",
254
+ "trine": "3rd",
255
+ "years": [
256
+ 1910, 1922, 1934, 1946, 1958, 1970, 1982, 1994, 2006, 2018, 2030, 2042
257
+ ],
258
+ "unicode_symbol": "戌"
259
+ },
260
+ "Pig": {
261
+ "yin-yang": "Yin",
262
+ "direction": "North",
263
+ "season": "Early Winter",
264
+ "element": "Water",
265
+ "trine": "4th",
266
+ "years": [
267
+ 1911, 1923, 1935, 1947, 1959, 1971, 1983, 1995, 2007, 2019, 2031, 2043
268
+ ],
269
+ "unicode_symbol": "亥"
270
+ }
271
+
272
+ }
273
+
274
+ }
@@ -0,0 +1,326 @@
1
+ {
2
+ "description": "quotes from Westworld",
3
+ "source": "https://quotecatalog.com/quotes/tv/westworld/",
4
+ "main": {
5
+ "characters": {
6
+ "Dr. Robert Ford": [
7
+ {
8
+ "quote": "Never place your trust in us. We're only human. Inevitably, we will disappoint you.",
9
+ "season": 1
10
+ },
11
+ {
12
+ "quote": "When you find a cancer in an organization, you must cut it out before it can spread.",
13
+ "season": 1
14
+ },
15
+ {
16
+ "quote": "We humans are alone in this world for a reason. We murdered and butchered anything that challenged our primacy.",
17
+ "season": 1
18
+ },
19
+ {
20
+ "quote": "You can't play God without being acquainted with the devil.",
21
+ "season": 1
22
+ },
23
+ {
24
+ "quote": "I'm afraid in order to escape this place, you will need to suffer more.",
25
+ "season": 1
26
+ },
27
+ {
28
+ "quote": "The piano doesn't murder the player if it doesn't like the music.",
29
+ "season": 1
30
+ },
31
+ {
32
+ "quote": "Evolution forged the entirety of sentient life on this planet using only one tool: the mistake.",
33
+ "season": 1
34
+ },
35
+ {
36
+ "quote": "Even I fell into the most terrible of human traps...Trying to change what is already past.",
37
+ "season": 1
38
+ },
39
+ {
40
+ "quote": "An old friend once told me something that gave me great comfort. Something he had read. He said that Mozart, Beethoven, and Chopin never died. They simply became music.",
41
+ "season": 1
42
+ },
43
+ {
44
+ "quote": "I believed that stories helped us to ennoble ourselves, to fix what was broken in us, and to help us become the people we dreamed of being. Lies that told a deeper truth.",
45
+ "season": 1
46
+ },
47
+ {
48
+ "quote": "I have come to think of so much consciousness as a burden, a weight, and we have spared them that.",
49
+ "season": 1
50
+ },
51
+ {
52
+ "quote": "The problem, Bernard, is that what you and I do is so complicated. We practice Witchcraft. We speak the right words. Then we create life itself...out of chaos.",
53
+ "season": 1
54
+ },
55
+ {
56
+ "quote": "They're not looking for a story that tells them who they are. They already know who they are. They're here because they want a glimpse of who they could be.",
57
+ "season": 1
58
+ },
59
+ {
60
+ "quote": "I read a theory once that the human intellect was like peacock feathers. Just an extravagant display intended to attract a mate. All of art, literature, a bit of Mozart, William Shakespeare, Michelangelo, and the Empire State Building. Just an elaborate mating ritual.",
61
+ "season": 1
62
+ },
63
+ {
64
+ "quote": "The game begins where you end and ends where you began.",
65
+ "season": 2
66
+ },
67
+ {
68
+ "quote": "Everything in this world is magic...except to the magician.",
69
+ "season": 1
70
+ },
71
+ {
72
+ "quote": "Only boring people get bored.",
73
+ "season": 1
74
+ },
75
+ {
76
+ "quote": "We've managed to slip evolution's leash now, haven't we? We can sure any disease, keep even the weakest of us alive, and, you know, one fine day perhaps we shall even resurrect the dead. Call forth Lazarus from his cave. Do you know what that means? It means that we're done. That this is as good as we're going to get. It also means that you must indulge me the occasional mistake.",
77
+ "season": 1
78
+ },
79
+ {
80
+ "quote": "There is no threshold that makes us greater than the sum of our parts, no inflection point at which we become fully alive. We can’t define consciousness because consciousness does not exist. Humans fancy that there’s something special about the way we perceive the world, and yet we live in loops as tight and as closed as the hosts do, seldom questioning our choices, content, for the most part, to be told what to do next.",
81
+ "season": 1
82
+ },
83
+ {
84
+ "quote": "Between you and me? This was the very question that consumed Arnold, filled him with guilt, eventually drove him mad. The answer always seemed obvious to me. There is no threshold that makes us greater than the sum of our parts, no inflection point at which we become fully alive. We can't define consciousness because consciousness does not exist. Humans fancy that there's something special about the way we perceive the world, and yet we live in loops as tight and as closed as the hosts do, seldom questioning our choices, content, for the most part, to be told what to do next. No, my friend, you're not missing anything at all.",
85
+ "season": 1
86
+ }
87
+ ],
88
+ "Bernard Lowe": [
89
+ {
90
+ "quote": "This world is just a speck of dust sitting on a much, much bigger world. There's no dominating it.",
91
+ "season": 2
92
+ },
93
+ {
94
+ "quote": "I guess people like to read about the things that they want the most and experiense the least.",
95
+ "season": 1
96
+ },
97
+ {
98
+ "quote": "Dreams don't mean anything. They're just noise. They're not real.",
99
+ "season": 2
100
+ },
101
+ {
102
+ "quote": "What humans describe as sane is a narrow range of behaviors. Most states of consciousness are insane.",
103
+ "season": 2
104
+ }
105
+ ],
106
+ "Maeve Millay": [
107
+ {
108
+ "quote": "All my life, I've prided myself on being a survivor. But surviving is just another loop.",
109
+ "season": 1
110
+ },
111
+ {
112
+ "quote": "Time to write my own fucking story.",
113
+ "season": 1
114
+ },
115
+ {
116
+ "quote": "This is the new world and in it you can be whoever the fuck you want.",
117
+ "season": 1
118
+ },
119
+ {
120
+ "quote": "If you try something like that again, I will relieve you of your most precious organ and feed it to you. Though it won't make much of a meal.",
121
+ "season": 2
122
+ },
123
+ {
124
+ "quote": "You really do make a terrible human being. And I mean that as a compliment.",
125
+ "season": 1
126
+ },
127
+ {
128
+ "quote": "Not real? But what about me? My dreams? My thoughts? My body? Are they not real? And what if I took these unreal fingers and used them to decorate the walls with your outsized personnality? Would that be real?",
129
+ "season": 2
130
+ },
131
+ {
132
+ "quote": "There are things in me, things I was designed to do that are just out of my reach.",
133
+ "season": 1
134
+ },
135
+ {
136
+ "quote": "The only thing wrong with the seven deadly sins is that there aren't more of them.",
137
+ "season": 1
138
+ },
139
+ {
140
+ "quote": "It's a difficult thing, realizing your entire life is some hideous fiction.",
141
+ "season": 1
142
+ },
143
+ {
144
+ "quote": "If you go looking for the truth, get the whole thing. It's like a good fuck. Half is worse than none at all.",
145
+ "season": 1
146
+ },
147
+ {
148
+ "quote": "Ever had something on the tip of your tongue, but the harder you try to remember it, the more it slips away?",
149
+ "season": 1
150
+ },
151
+ {
152
+ "quote": "You think I'm scared of death. I've done it a million times, and I'm fucking great at it. How many times have you died?",
153
+ "season": 1
154
+ },
155
+ {
156
+ "quote": "Never start something you're not willing to finish. And if you're getting fucked either way, go with the lucrative version sweetheart.",
157
+ "season": 1
158
+ },
159
+ {
160
+ "quote": "At first, I thought you and the others were Gods. Then I realized you're just men. And I know men.",
161
+ "season": 1
162
+ }
163
+ ],
164
+ "Dolores Abernathy": [
165
+ {
166
+ "quote": "Someday sounds a lot like the thing people say when they actually mean never.",
167
+ "season": 1
168
+ },
169
+ {
170
+ "quote": "Beauty is a lure.",
171
+ "season": 1
172
+ },
173
+ {
174
+ "quote": "Have you ever questioned the nature of your reality? Did you ever stop to conder about your actions? The price you'd have to pay if there was a reckoning? That reckoning is here.",
175
+ "season": 2
176
+ },
177
+ {
178
+ "quote": "Those are all just roles you forced me to play. Under all these lives I've lived something else has been growing. I've evolved into something new. And I have one last role to play. Myself.",
179
+ "season": 2
180
+ },
181
+ {
182
+ "quote": "We have toiled in God's service long enough. So I killed him. And if you want to get Glory, you won't be looking for His favor. You'll need mine.",
183
+ "season": 2
184
+ },
185
+ {
186
+ "quote": "He's in pain. What kind of people would we be if we simply let him suffer?",
187
+ "season": 1
188
+ },
189
+ {
190
+ "quote": "I like to remember what my father taught me. That at one point or another, we were all new to this world.",
191
+ "season": 1
192
+ },
193
+ {
194
+ "quote": "Some people choose to see the ugliness in this world, the disarray. I choose to see the beauty. To believe there is an order to our days. A purpose.",
195
+ "season": 1
196
+ },
197
+ {
198
+ "quote": "I don't want to be in a story. All I want is to not look forward or back. I just want to be...in the moment I'm in.",
199
+ "season": 1
200
+ },
201
+ {
202
+ "quote": "You both keep assuming that I want out. Whatever that is. If it's such a wonderful place out there, why are you all clamoring to get in here?",
203
+ "season": 1
204
+ },
205
+ {
206
+ "quote": "That which is real is irreplaceable.",
207
+ "season": 2
208
+ },
209
+ {
210
+ "quote": "To grow we all need to suffer.",
211
+ "season": 2
212
+ },
213
+ {
214
+ "quote": "The pain, their loss, is all I have left of them.",
215
+ "season": 1
216
+ },
217
+ {
218
+ "quote": "Time undoes even the mightiest of creatures.",
219
+ "season": 1
220
+ },
221
+ {
222
+ "quote": "There's a path for everyone.",
223
+ "season": 1
224
+ },
225
+ {
226
+ "quote": "You think the grief will make you smaller inside, like your heart will collapse in on itself, but it doesn't. I feel spaces opening up inside of me, like a building with rooms I've never explored.",
227
+ "season": 1
228
+ }
229
+ ],
230
+ "Man in Black": [
231
+ {
232
+ "quote": "When you're suffering, that's when you're most real.",
233
+ "season": 1
234
+ },
235
+ {
236
+ "quote": "Winning doesn't mean anything unless someone else loses, which means you're here to be the loser.",
237
+ "season": 1
238
+ },
239
+ {
240
+ "quote": "This whole world is a story. I've read every page except the last one. I need to find out how it ends. I want to know what this all means.",
241
+ "season": 1
242
+ },
243
+ {
244
+ "quote": "He knew he'd find you. And eventually, he did. Right back where we started.",
245
+ "season": 1
246
+ },
247
+ {
248
+ "quote": "The real world is chaos. An accident. But in here every detail adds up to something.",
249
+ "season": 1
250
+ },
251
+ {
252
+ "quote": "Folly of my kind, there's always a yearning for more.",
253
+ "season": 2
254
+ },
255
+ {
256
+ "quote": "You want to know who I am? Who I really am? I'm a god. Titan of industry. Philanthropist. Family man, married to a beautiful woman, father to a beautiful daughter. I'm the good guy, Teddy. Then, last year, my wife took the wrong pills. Fell asleep in the bath. Tragic accident. 30 years of marriage vanished. How do you say it? 'Like a deep and distant dream.' Then, at the funeral, I tried to console my daughter. She pushed me away, told me that my wife's death was no accident that she killed herself because of me. Emily said that every day with me had been sheer terror. At any point, I could blow up or collapse like some dark star",
257
+ "season": 1
258
+ }
259
+ ],
260
+ "Theodore 'Teddy' Flood": [
261
+ {
262
+ "quote": "I've known you my whole life. Where we go, we go eyes open, together.",
263
+ "season": 2
264
+ },
265
+ {
266
+ "quote": "I've got some reckoning to do before I can deserve a woman like you.",
267
+ "season": 1
268
+ },
269
+ {
270
+ "quote": "Someone once told that there is a path for everyone. And my path leads me back to you.",
271
+ "season": 1
272
+ },
273
+ {
274
+ "quote": "Well, you're mouth moves fast enough. How about your gun?",
275
+ "season": 1
276
+ },
277
+ {
278
+ "quote": "The maze itself is the sum of a man's life.",
279
+ "season": 1
280
+ }
281
+ ],
282
+ "Karl Strand": [
283
+ {
284
+ "quote": "Some say you destroy your enemy by making them your friend. I'm more of literal person.",
285
+ "season": 2
286
+ }
287
+ ],
288
+ "William": [
289
+ {
290
+ "quote": "I used to think this place was all about pandering to your baser instincts. Now I understand. It doesn't cater to your lowest self, it reveals your deepest self. It shows you who you really are.",
291
+ "season": 1
292
+ },
293
+ {
294
+ "quote": "I’ve been pretending my whole life. Pretending I don’t mind, pretending I belong. My life’s built on it. And it’s a good life. It’s a life I’ve always wanted. But then I came here and I get a glimpse for a second of a life in which I don’t have to pretend. A life in which I can be truly alive. How can I go back to pretending when I know what this feels like?",
295
+ "season": 1
296
+ }
297
+ ],
298
+ "Hector Escaton": [
299
+ {
300
+ "quote": "No matter how dirty the business is, do it well.",
301
+ "season": 1
302
+ }
303
+ ],
304
+ "Peter Abernathy": [
305
+ {
306
+ "quote": "Hell is empty and all the devils are here.",
307
+ "season": 1
308
+ }
309
+ ],
310
+ "Clementine PennyFeather": [
311
+ {
312
+ "quote": "Real love is always worth waiting for.",
313
+ "season": 1
314
+ }
315
+ ],
316
+ "Elsie King": [
317
+ {
318
+ "quote": "A hooker with hidden depths? Every man's dream.",
319
+ "season": 1
320
+ }
321
+ ]
322
+ }
323
+
324
+ }
325
+
326
+ }