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,1257 @@
1
+ {
2
+ "description": "Music videos broadcast on MTV's first day",
3
+ "date": "1981-08-01",
4
+ "source": "https://en.wikipedia.org/wiki/First_music_videos_aired_on_MTV",
5
+ "videos": [
6
+ {
7
+ "number": 1,
8
+ "song": "Video Killed the Radio Star",
9
+ "artist": "The Buggles",
10
+ "appearance": "1/2"
11
+ },
12
+ {
13
+ "number": 2,
14
+ "song": "You Better Run",
15
+ "artist": "Pat Benatar",
16
+ "appearance": "1/2"
17
+ },
18
+ {
19
+ "number": 3,
20
+ "song": "She Won't Dance with Me",
21
+ "artist": "Rod Stewart",
22
+ "appearance": "1/2"
23
+ },
24
+ {
25
+ "number": 4,
26
+ "song": "You Better You Bet",
27
+ "artist": "The Who",
28
+ "appearance": "1/5"
29
+ },
30
+ {
31
+ "number": 5,
32
+ "song": "Little Suzi's on the Up",
33
+ "artist": "Ph.D.",
34
+ "appearance": "1/3"
35
+ },
36
+ {
37
+ "number": 6,
38
+ "song": "We Don't Talk Anymore",
39
+ "artist": "Cliff Richard",
40
+ "appearance": "1/2"
41
+ },
42
+ {
43
+ "number": 7,
44
+ "song": "Brass in Pocket",
45
+ "artist": "The Pretenders",
46
+ "appearance": "1/2"
47
+ },
48
+ {
49
+ "number": 8,
50
+ "song": "Time Heals",
51
+ "artist": "Todd Rundgren",
52
+ "appearance": "1/3"
53
+ },
54
+ {
55
+ "number": 9,
56
+ "song": "Take It on the Run",
57
+ "artist": "REO Speedwagon",
58
+ "appearance": "1/3",
59
+ "playback_note": "Video begins but ends after a few seconds due to a technical difficulty"
60
+ },
61
+ {
62
+ "number": 10,
63
+ "song": "Rockin' the Paradise",
64
+ "artist": "Styx",
65
+ "appearance": "1/3"
66
+ },
67
+ {
68
+ "number": 11,
69
+ "song": "When Things Go Wrong",
70
+ "artist": "Robin Lane and the Chartbusters",
71
+ "appearance": "1/2"
72
+ },
73
+ {
74
+ "number": 12,
75
+ "song": "History Never Repeats",
76
+ "artist": "Split Enz",
77
+ "appearance": "1/2"
78
+ },
79
+ {
80
+ "number": 13,
81
+ "song": "Hold on Loosely",
82
+ "artist": ".38 Special",
83
+ "appearance": "1/3"
84
+ },
85
+ {
86
+ "number": 14,
87
+ "song": "Just Between You and Me",
88
+ "artist": "April Wine",
89
+ "appearance": "1/5"
90
+ },
91
+ {
92
+ "number": 15,
93
+ "song": "Sailing",
94
+ "artist": "Rod Stewart",
95
+ "appearance": "1/2"
96
+ },
97
+ {
98
+ "number": 16,
99
+ "song": "Iron Maiden",
100
+ "artist": "Iron Maiden",
101
+ "appearance": "1/2"
102
+ },
103
+ {
104
+ "number": 17,
105
+ "song": "Keep on Loving You",
106
+ "artist": "REO Speedwagon",
107
+ "appearance": "1/3"
108
+ },
109
+ {
110
+ "number": 18,
111
+ "song": "Bluer Than Blue",
112
+ "artist": "Michael Johnson",
113
+ "appearance": "1/2"
114
+ },
115
+ {
116
+ "number": 19,
117
+ "song": "Message of Love",
118
+ "artist": "The Pretenders",
119
+ "appearance": "1/4"
120
+ },
121
+ {
122
+ "number": 20,
123
+ "song": "Mr. Briefcase",
124
+ "artist": "Lee Ritenour",
125
+ "appearance": "1/2"
126
+ },
127
+ {
128
+ "number": 21,
129
+ "song": "Double Life",
130
+ "artist": "The Cars",
131
+ "appearance": "1/2"
132
+ },
133
+ {
134
+ "number": 22,
135
+ "song": "In the Air Tonight",
136
+ "artist": "Phil Collins",
137
+ "appearance": "1/5"
138
+ },
139
+ {
140
+ "number": 23,
141
+ "song": "Looking for Clues",
142
+ "artist": "Robert Palmer",
143
+ "appearance": "1/3"
144
+ },
145
+ {
146
+ "number": 24,
147
+ "song": "Too Late",
148
+ "artist": "Shoes",
149
+ "appearance": "1/1"
150
+ },
151
+ {
152
+ "number": 25,
153
+ "song": "Stop Draggin' My Heart Around",
154
+ "artist": "Stevie Nicks and Tom Petty and the Heartbreakers",
155
+ "appearance": "1/4"
156
+ },
157
+ {
158
+ "number": 26,
159
+ "song": "Da Ya Think I'm Sexy",
160
+ "artist": "Rod Stewart",
161
+ "appearance": "1/2",
162
+ "playback_note": "Screen is blank while the audio still plays; stops after 15 seconds"
163
+ },
164
+ {
165
+ "number": 27,
166
+ "song": "Surface Tension",
167
+ "artist": "Rupert Hine",
168
+ "appearance": "1/2"
169
+ },
170
+ {
171
+ "number": 28,
172
+ "song": "One Step Ahead",
173
+ "artist": "Split Enz",
174
+ "appearance": "1/3"
175
+ },
176
+ {
177
+ "number": 29,
178
+ "song": "Baker Street",
179
+ "artist": "Gerry Rafferty",
180
+ "appearance": "1/2"
181
+ },
182
+ {
183
+ "number": 30,
184
+ "song": "I'm Gonna Follow You",
185
+ "artist": "Pat Benatar",
186
+ "appearance": "1/3"
187
+ },
188
+ {
189
+ "number": 31,
190
+ "song": "Savannah Nights",
191
+ "artist": "Tom Johnson",
192
+ "appearance": "1/2"
193
+ },
194
+ {
195
+ "number": 32,
196
+ "song": "Lucille",
197
+ "artist": "Rockestra",
198
+ "appearance": "1/3"
199
+ },
200
+ {
201
+ "number": 33,
202
+ "song": "The Best of Times",
203
+ "artist": "Styx",
204
+ "appearance": "1/3"
205
+ },
206
+ {
207
+ "number": 34,
208
+ "song": "Vengeance",
209
+ "artist": "Carly Simon",
210
+ "appearance": "1/1"
211
+ },
212
+ {
213
+ "number": 35,
214
+ "song": "Wrathchild",
215
+ "artist": "Iron Maiden",
216
+ "appearance": "1/4"
217
+ },
218
+ {
219
+ "number": 36,
220
+ "song": "I Wanna Be a Lifeguard",
221
+ "artist": "Blotto",
222
+ "appearance": "1/1"
223
+ },
224
+ {
225
+ "number": 37,
226
+ "song": "Passion",
227
+ "artist": "Rod Stewart",
228
+ "appearance": "1/2"
229
+ },
230
+ {
231
+ "number": 38,
232
+ "song": "Oliver's Army",
233
+ "artist": "Elvis Costello",
234
+ "appearance": "1/2"
235
+ },
236
+ {
237
+ "number": 39,
238
+ "song": "Remote Control / Illegal",
239
+ "artist": "The Silencers",
240
+ "appearance": "1/2"
241
+ },
242
+ {
243
+ "number": 40,
244
+ "song": "Angel of the Morning",
245
+ "artist": "Juice Newton",
246
+ "appearance": "1/1"
247
+ },
248
+ {
249
+ "number": 41,
250
+ "song": "Little Sister",
251
+ "artist": "Rockpile with Robert Plant",
252
+ "appearance": "1/4"
253
+ },
254
+ {
255
+ "number": 42,
256
+ "song": "Hold On to the Night",
257
+ "artist": "Bootcamp",
258
+ "appearance": "1/2"
259
+ },
260
+ {
261
+ "number": 43,
262
+ "song": "Dreamin'",
263
+ "artist": "Cliff Richard",
264
+ "appearance": "1/2"
265
+ },
266
+ {
267
+ "number": 44,
268
+ "song": "Is It You",
269
+ "artist": "Lee Ritenour",
270
+ "appearance": "1/3"
271
+ },
272
+ {
273
+ "number": 45,
274
+ "song": "Tusk",
275
+ "artist": "Fleetwood Mac",
276
+ "appearance": "1/1"
277
+ },
278
+ {
279
+ "number": 46,
280
+ "song": "He Can't Love You",
281
+ "artist": "Michael Stanley Band",
282
+ "appearance": "1/2"
283
+ },
284
+ {
285
+ "number": 47,
286
+ "song": "Tough Guys",
287
+ "artist": "REO Speedwagon",
288
+ "appearance": "1/2"
289
+ },
290
+ {
291
+ "number": 48,
292
+ "song": "Rapture",
293
+ "artist": "Blondie",
294
+ "appearance": "1/2"
295
+ },
296
+ {
297
+ "number": 49,
298
+ "song": "Don't Let Go the Coat",
299
+ "artist": "The Who",
300
+ "appearance": "1/2"
301
+ },
302
+ {
303
+ "number": 50,
304
+ "song": "Ain't Love a Bitch",
305
+ "artist": "Rod Stewart",
306
+ "appearance": "1/1"
307
+ },
308
+ {
309
+ "number": 51,
310
+ "song": "Talk of the Town",
311
+ "artist": "The Pretenders",
312
+ "appearance": "1/3"
313
+ },
314
+ {
315
+ "number": 52,
316
+ "song": "Can't Happen Here",
317
+ "artist": "Rainbow",
318
+ "appearance": "1/3"
319
+ },
320
+ {
321
+ "number": 53,
322
+ "song": "Thank You for Being a Friend",
323
+ "artist": "Andrew Gold",
324
+ "appearance": "1/1"
325
+ },
326
+ {
327
+ "number": 54,
328
+ "song": "You Better You Bet",
329
+ "artist": "The Who",
330
+ "appearance": "2/5"
331
+ },
332
+ {
333
+ "number": 55,
334
+ "song": "Bring It All Home",
335
+ "artist": "Gerry Rafferty",
336
+ "appearance": "1/1"
337
+ },
338
+ {
339
+ "number": 56,
340
+ "song": "Sign of the Gypsy Queen",
341
+ "artist": "April Wine",
342
+ "appearance": "1/2"
343
+ },
344
+ {
345
+ "number": 57,
346
+ "song": "The Man with the Child in His Eyes",
347
+ "artist": "Kate Bush",
348
+ "appearance": "1/1"
349
+ },
350
+ {
351
+ "number": 58,
352
+ "song": "Message of Love",
353
+ "artist": "The Pretenders",
354
+ "appearance": "2/4"
355
+ },
356
+ {
357
+ "number": 59,
358
+ "song": "All Night Long",
359
+ "artist": "Rainbow",
360
+ "appearance": "1/2"
361
+ },
362
+ {
363
+ "number": 60,
364
+ "song": "Boys Keep Swinging",
365
+ "artist": "David Bowie",
366
+ "appearance": "1/2"
367
+ },
368
+ {
369
+ "number": 61,
370
+ "song": "Rat Race",
371
+ "artist": "The Specials",
372
+ "appearance": "1/2"
373
+ },
374
+ {
375
+ "number": 62,
376
+ "song": "Just Between You and Me",
377
+ "artist": "April Wine",
378
+ "appearance": "2/5"
379
+ },
380
+ {
381
+ "number": 63,
382
+ "song": "Once in a Lifetime",
383
+ "artist": "Talking Heads",
384
+ "appearance": "1/1"
385
+ },
386
+ {
387
+ "number": 64,
388
+ "song": "Victim",
389
+ "artist": "Bootcamp",
390
+ "appearance": "1/2"
391
+ },
392
+ {
393
+ "number": 65,
394
+ "song": "Tonight's the Night (Gonna Be Alright)",
395
+ "artist": "Rod Stewart",
396
+ "appearance": "1/1"
397
+ },
398
+ {
399
+ "number": 66,
400
+ "song": "Cruel to Be Kind",
401
+ "artist": "Nick Lowe",
402
+ "appearance": "1/1"
403
+ },
404
+ {
405
+ "number": 67,
406
+ "song": "A Little in Love",
407
+ "artist": "Cliff Richard",
408
+ "appearance": "1/2"
409
+ },
410
+ {
411
+ "number": 68,
412
+ "song": "Take It on the Run",
413
+ "artist": "REO Speedwagon",
414
+ "appearance": "2/3"
415
+ },
416
+ {
417
+ "number": 69,
418
+ "song": "Wild-Eyed Southern Boys",
419
+ "artist": ".38 Special",
420
+ "appearance": "1/2"
421
+ },
422
+ {
423
+ "number": 70,
424
+ "song": "Wuthering Heights",
425
+ "artist": "Kate Bush",
426
+ "appearance": "1/1"
427
+ },
428
+ {
429
+ "number": 71,
430
+ "song": "Celebrate the Bullet",
431
+ "artist": "The Selecter",
432
+ "appearance": "1/2"
433
+ },
434
+ {
435
+ "number": 72,
436
+ "song": "More Than I Can Say",
437
+ "artist": "Leo Sayer",
438
+ "appearance": "1/2"
439
+ },
440
+ {
441
+ "number": 73,
442
+ "song": "A Message to You, Rudy",
443
+ "artist": "The Specials",
444
+ "appearance": "1/1"
445
+ },
446
+ {
447
+ "number": 74,
448
+ "song": "In the Air Tonight",
449
+ "artist": "Phil Collins",
450
+ "appearance": "2/5"
451
+ },
452
+ {
453
+ "number": 75,
454
+ "song": "Heart of Glass",
455
+ "artist": "Blondie",
456
+ "appearance": "1/1"
457
+ },
458
+ {
459
+ "number": 76,
460
+ "song": "Oh God, I Wish I Was Home Tonight",
461
+ "artist": "Rod Stewart",
462
+ "appearance": "1/2"
463
+ },
464
+ {
465
+ "number": 77,
466
+ "song": "Kid",
467
+ "artist": "The Pretenders",
468
+ "appearance": "1/1"
469
+ },
470
+ {
471
+ "number": 78,
472
+ "song": "Wrathchild",
473
+ "artist": "Iron Maiden",
474
+ "appearance": "2/4"
475
+ },
476
+ {
477
+ "number": 79,
478
+ "song": "Come What May",
479
+ "artist": "Lani Hall and Herb Alpert",
480
+ "appearance": "1/2"
481
+ },
482
+ {
483
+ "number": 80,
484
+ "song": "I Got You",
485
+ "artist": "Split Enz",
486
+ "appearance": "1/1"
487
+ },
488
+ {
489
+ "number": 81,
490
+ "song": "Sister Disco",
491
+ "artist": "The Who",
492
+ "appearance": "1/2"
493
+ },
494
+ {
495
+ "number": 82,
496
+ "song": "Fashion",
497
+ "artist": "David Bowie",
498
+ "appearance": "1/2"
499
+ },
500
+ {
501
+ "number": 83,
502
+ "song": "Stop Draggin' My Heart Around",
503
+ "artist": "Stevie Nicks and Tom Petty and the Heartbreakers",
504
+ "appearance": "2/4"
505
+ },
506
+ {
507
+ "number": 84,
508
+ "song": "Love Stinks",
509
+ "artist": "The J. Geils Band",
510
+ "appearance": "1/1"
511
+ },
512
+ {
513
+ "number": 85,
514
+ "song": "Johnny & Mary",
515
+ "artist": "Robert Palmer",
516
+ "appearance": "1/2"
517
+ },
518
+ {
519
+ "number": 86,
520
+ "song": "Tomorrow Night",
521
+ "artist": "Shoes",
522
+ "appearance": "1/1"
523
+ },
524
+ {
525
+ "number": 87,
526
+ "song": "Lucille",
527
+ "artist": "Rockestra",
528
+ "appearance": "2/3"
529
+ },
530
+ {
531
+ "number": 88,
532
+ "song": "Rockin' the Paradise",
533
+ "artist": "Styx",
534
+ "appearance": "2/3"
535
+ },
536
+ {
537
+ "number": 89,
538
+ "song": "Prime Time",
539
+ "artist": "The Tubes",
540
+ "appearance": "1/1"
541
+ },
542
+ {
543
+ "number": 90,
544
+ "song": "One Step Ahead",
545
+ "artist": "Split Enz",
546
+ "appearance": "2/3"
547
+ },
548
+ {
549
+ "number": 91,
550
+ "song": "Hold on Loosely",
551
+ "artist": ".38 Special",
552
+ "appearance": "2/3"
553
+ },
554
+ {
555
+ "number": 92,
556
+ "song": "Cruel You",
557
+ "artist": "Shoes",
558
+ "appearance": "1/1"
559
+ },
560
+ {
561
+ "number": 93,
562
+ "song": "Little Sister",
563
+ "artist": "Rockpile with Robert Plant",
564
+ "appearance": "2/4"
565
+ },
566
+ {
567
+ "number": 94,
568
+ "song": "Calling All Girls",
569
+ "artist": "Hilly Michaels",
570
+ "appearance": "1/1"
571
+ },
572
+ {
573
+ "number": 95,
574
+ "song": "Keep on Loving You",
575
+ "artist": "REO Speedwagon",
576
+ "appearance": "2/3"
577
+ },
578
+ {
579
+ "number": 96,
580
+ "song": "I Was Only Joking",
581
+ "artist": "Rod Stewart",
582
+ "appearance": "1/1"
583
+ },
584
+ {
585
+ "number": 97,
586
+ "song": "You Better You Bet",
587
+ "artist": "The Who",
588
+ "appearance": "3/5"
589
+ },
590
+ {
591
+ "number": 98,
592
+ "song": "Time Heals",
593
+ "artist": "Todd Rundgren",
594
+ "appearance": "2/3"
595
+ },
596
+ {
597
+ "number": 99,
598
+ "song": "Let's Go",
599
+ "artist": "The Cars",
600
+ "appearance": "1/1"
601
+ },
602
+ {
603
+ "number": 100,
604
+ "song": "Just Between You and Me",
605
+ "artist": "April Wine",
606
+ "appearance": "3/5"
607
+ },
608
+ {
609
+ "number": 101,
610
+ "song": "Mr. Briefcase",
611
+ "artist": "Lee Ritenour",
612
+ "appearance": "2/2"
613
+ },
614
+ {
615
+ "number": 102,
616
+ "song": "Fashion",
617
+ "artist": "David Bowie",
618
+ "appearance": "2/2"
619
+ },
620
+ {
621
+ "number": 103,
622
+ "song": "I'm Gonna Follow You",
623
+ "artist": "Pat Benatar",
624
+ "appearance": "2/3"
625
+ },
626
+ {
627
+ "number": 104,
628
+ "song": "Do You Remember Rock 'n' Roll Radio?",
629
+ "artist": "The Ramones",
630
+ "appearance": "1/1"
631
+ },
632
+ {
633
+ "number": 105,
634
+ "song": "Ridin' the Storm Out",
635
+ "artist": "REO Speedwagon",
636
+ "appearance": "1/1"
637
+ },
638
+ {
639
+ "number": 106,
640
+ "song": "Looking for Clues",
641
+ "artist": "Robert Palmer",
642
+ "appearance": "2/3"
643
+ },
644
+ {
645
+ "number": 107,
646
+ "song": "Little Suzi's on the Up",
647
+ "artist": "Ph.D.",
648
+ "appearance": "2/3"
649
+ },
650
+ {
651
+ "number": 108,
652
+ "song": "Is It You",
653
+ "artist": "Lee Ritenour",
654
+ "appearance": "2/3"
655
+ },
656
+ {
657
+ "number": 109,
658
+ "song": "You're in My Heart",
659
+ "artist": "Rod Stewart",
660
+ "appearance": "1/1"
661
+ },
662
+ {
663
+ "number": 110,
664
+ "song": "Talk of the Town",
665
+ "artist": "The Pretenders",
666
+ "appearance": "2/3"
667
+ },
668
+ {
669
+ "number": 111,
670
+ "song": "The Best of Times",
671
+ "artist": "Styx",
672
+ "appearance": "2/3"
673
+ },
674
+ {
675
+ "number": 112,
676
+ "song": "So Long",
677
+ "artist": "Fischer-Z",
678
+ "appearance": "1/1"
679
+ },
680
+ {
681
+ "number": 113,
682
+ "song": "In the Air Tonight",
683
+ "artist": "Phil Collins",
684
+ "appearance": "3/5"
685
+ },
686
+ {
687
+ "number": 114,
688
+ "song": "I Don't Want To Know",
689
+ "artist": "Robin Lane and the Chartbusters",
690
+ "appearance": "1/1"
691
+ },
692
+ {
693
+ "number": 115,
694
+ "song": "Don't Let Go the Coat",
695
+ "artist": "The Who",
696
+ "appearance": "2/2"
697
+ },
698
+ {
699
+ "number": 116,
700
+ "song": "Go Back Home Again",
701
+ "artist": "Andrew Gold",
702
+ "appearance": "1/1"
703
+ },
704
+ {
705
+ "number": 117,
706
+ "song": "Message of Love",
707
+ "artist": "The Pretenders",
708
+ "appearance": "3/4"
709
+ },
710
+ {
711
+ "number": 118,
712
+ "song": "Remote Control / Too Illegal",
713
+ "artist": "The Silencers",
714
+ "appearance": "2/2"
715
+ },
716
+ {
717
+ "number": 119,
718
+ "song": "Time for Me to Fly",
719
+ "artist": "REO Speedwagon",
720
+ "appearance": "1/1"
721
+ },
722
+ {
723
+ "number": 120,
724
+ "song": "Wrathchild",
725
+ "artist": "Iron Maiden",
726
+ "appearance": "3/4"
727
+ },
728
+ {
729
+ "number": 121,
730
+ "song": "She Won't Dance with Me",
731
+ "artist": "Rod Stewart",
732
+ "appearance": "2/2"
733
+ },
734
+ {
735
+ "number": 122,
736
+ "song": "Rough Boys",
737
+ "artist": "Pete Townshend",
738
+ "appearance": "1/1"
739
+ },
740
+ {
741
+ "number": 123,
742
+ "song": "History Never Repeats",
743
+ "artist": "Split Enz",
744
+ "appearance": "2/2"
745
+ },
746
+ {
747
+ "number": 124,
748
+ "song": "Dangerous Type",
749
+ "artist": "The Cars",
750
+ "appearance": "1/1"
751
+ },
752
+ {
753
+ "number": 125,
754
+ "song": "Turn It On Again",
755
+ "artist": "Genesis",
756
+ "appearance": "1/1"
757
+ },
758
+ {
759
+ "number": 126,
760
+ "song": "Rapture",
761
+ "artist": "Blondie",
762
+ "appearance": "2/2"
763
+ },
764
+ {
765
+ "number": 127,
766
+ "song": "Stop Draggin' My Heart Around",
767
+ "artist": "Stevie Nicks and Tom Petty and the Heartbreakers",
768
+ "appearance": "3/4"
769
+ },
770
+ {
771
+ "number": 128,
772
+ "song": "Can't Happen Here",
773
+ "artist": "Rainbow",
774
+ "appearance": "2/3"
775
+ },
776
+ {
777
+ "number": 128,
778
+ "song": "We're So Close",
779
+ "artist": "Carly Simon",
780
+ "appearance": "1/1"
781
+ },
782
+ {
783
+ "number": 129,
784
+ "song": "Tough Guys",
785
+ "artist": "REO Speedwagon",
786
+ "appearance": "2/2"
787
+ },
788
+ {
789
+ "number": 130,
790
+ "song": "Passion",
791
+ "artist": "Rod Stewart",
792
+ "appearance": "2/2"
793
+ },
794
+ {
795
+ "number": 131,
796
+ "song": "Kid Blue",
797
+ "artist": "Louise Goffin",
798
+ "appearance": "1/1"
799
+ },
800
+ {
801
+ "number": 132,
802
+ "song": "Little Sister",
803
+ "artist": "Rockpile with Robert Plant",
804
+ "appearance": "3/4"
805
+ },
806
+ {
807
+ "number": 133,
808
+ "song": "Vienna",
809
+ "artist": "Ultravox",
810
+ "appearance": "1/1"
811
+ },
812
+ {
813
+ "number": 134,
814
+ "song": "Sign of the Gypsy Queen",
815
+ "artist": "April Wine",
816
+ "appearance": "2/2"
817
+ },
818
+ {
819
+ "number": 135,
820
+ "song": "(What's So Funny 'Bout) Peace, Love, and Understanding",
821
+ "artist": "Elvis Costello and the Attractions",
822
+ "appearance": "1/1"
823
+ },
824
+ {
825
+ "number": 136,
826
+ "song": "Don't Let Him Go",
827
+ "artist": "REO Speedwagon",
828
+ "appearance": "1/2"
829
+ },
830
+ {
831
+ "number": 137,
832
+ "song": "I Won't Let You Down",
833
+ "artist": "Ph.D.",
834
+ "appearance": "1/1"
835
+ },
836
+ {
837
+ "number": 138,
838
+ "song": "Holiday",
839
+ "artist": "Nazareth",
840
+ "appearance": "1/1"
841
+ },
842
+ {
843
+ "number": 139,
844
+ "song": "You Better You Bet",
845
+ "artist": "The Who",
846
+ "appearance": "4/5"
847
+ },
848
+ {
849
+ "number": 140,
850
+ "song": "All Night Long",
851
+ "artist": "Rainbow",
852
+ "appearance": "2/2"
853
+ },
854
+ {
855
+ "number": 141,
856
+ "song": "Video Killed the Radio Star",
857
+ "artist": "The Buggles",
858
+ "appearance": "2/2"
859
+ },
860
+ {
861
+ "number": 142,
862
+ "song": "You Better Run",
863
+ "artist": "Pat Benatar",
864
+ "appearance": "2/2"
865
+ },
866
+ {
867
+ "number": 143,
868
+ "song": "Surface Tension",
869
+ "artist": "Rupert Hine",
870
+ "appearance": "2/2"
871
+ },
872
+ {
873
+ "number": 144,
874
+ "song": "One Step Ahead",
875
+ "artist": "Split Enz",
876
+ "appearance": "3/3"
877
+ },
878
+ {
879
+ "number": 145,
880
+ "song": "Wild-Eyed Southern Boys",
881
+ "artist": ".38 Special",
882
+ "appearance": "2/2"
883
+ },
884
+ {
885
+ "number": 146,
886
+ "song": "In My Arms Again",
887
+ "artist": "Shoes",
888
+ "appearance": "1/1"
889
+ },
890
+ {
891
+ "number": 147,
892
+ "song": "Is It You",
893
+ "artist": "Lee Ritenour",
894
+ "appearance": "3/3"
895
+ },
896
+ {
897
+ "number": 148,
898
+ "song": "Oh God, I Wish I Was Home Tonight",
899
+ "artist": "Rod Stewart",
900
+ "appearance": "2/2"
901
+ },
902
+ {
903
+ "number": 149,
904
+ "song": "Passing Strangers",
905
+ "artist": "Ultravox",
906
+ "appearance": "1/1"
907
+ },
908
+ {
909
+ "number": 150,
910
+ "song": "Just Between You and Me",
911
+ "artist": "April Wine",
912
+ "appearance": "4/5"
913
+ },
914
+ {
915
+ "number": 150,
916
+ "song": "Turning Japanese",
917
+ "artist": "The Vapors",
918
+ "appearance": "1/1"
919
+ },
920
+ {
921
+ "number": 151,
922
+ "song": "Rockin' the Paradise",
923
+ "artist": "Styx",
924
+ "appearance": "3/3"
925
+ },
926
+ {
927
+ "number": 152,
928
+ "song": "Bluer Than Blue",
929
+ "artist": "Michael Johnson",
930
+ "appearance": "2/2"
931
+ },
932
+ {
933
+ "number": 153,
934
+ "song": "Message of Love",
935
+ "artist": "The Pretenders",
936
+ "appearance": "4/4"
937
+ },
938
+ {
939
+ "number": 154,
940
+ "song": "Rat Race",
941
+ "artist": "The Specials",
942
+ "appearance": "2/2"
943
+ },
944
+ {
945
+ "number": 155,
946
+ "song": "Roll with the Changes",
947
+ "artist": "REO Speedwagon",
948
+ "appearance": "1/1"
949
+ },
950
+ {
951
+ "number": 156,
952
+ "song": "In the Air Tonight",
953
+ "artist": "Phil Collins",
954
+ "appearance": "4/5"
955
+ },
956
+ {
957
+ "number": 157,
958
+ "song": "Hold On to the Night",
959
+ "artist": "Bootcamp",
960
+ "appearance": "2/2"
961
+ },
962
+ {
963
+ "number": 158,
964
+ "song": "Double Life",
965
+ "artist": "The Cars",
966
+ "appearance": "2/2"
967
+ },
968
+ {
969
+ "number": 159,
970
+ "song": "Take It on the Run",
971
+ "artist": "REO Speedwagon",
972
+ "appearance": "3/3"
973
+ },
974
+ {
975
+ "number": 160,
976
+ "song": "We Don't Talk Anymore",
977
+ "artist": "Cliff Richard",
978
+ "appearance": "2/2"
979
+ },
980
+ {
981
+ "number": 161,
982
+ "song": "Sister Disco",
983
+ "artist": "The Who",
984
+ "appearance": "2/2"
985
+ },
986
+ {
987
+ "number": 162,
988
+ "song": "Celebrate the Bullet",
989
+ "artist": "The Selecter",
990
+ "appearance": "2/2"
991
+ },
992
+ {
993
+ "number": 163,
994
+ "song": "More Than I Can Say",
995
+ "artist": "Leo Sayer",
996
+ "appearance": "2/2"
997
+ },
998
+ {
999
+ "number": 164,
1000
+ "song": "I Hope I Never",
1001
+ "artist": "Split Enz",
1002
+ "appearance": "1/1"
1003
+ },
1004
+ {
1005
+ "number": 165,
1006
+ "song": "Talk of the Town",
1007
+ "artist": "The Pretenders",
1008
+ "appearance": "3/3"
1009
+ },
1010
+ {
1011
+ "number": 166,
1012
+ "song": "Hold on Loosely",
1013
+ "artist": ".38 Special",
1014
+ "appearance": "3/3"
1015
+ },
1016
+ {
1017
+ "number": 167,
1018
+ "song": "Blondes Have More Fun",
1019
+ "artist": "Rod Stewart",
1020
+ "appearance": "1/1"
1021
+ },
1022
+ {
1023
+ "number": 168,
1024
+ "song": "Wrathchild",
1025
+ "artist": "Iron Maiden",
1026
+ "appearance": "4/4"
1027
+ },
1028
+ {
1029
+ "number": 169,
1030
+ "song": "Savannah Nights",
1031
+ "artist": "Tom Johnston",
1032
+ "appearance": "2/2"
1033
+ },
1034
+ {
1035
+ "number": 170,
1036
+ "song": "I'm Gonna Follow You",
1037
+ "artist": "Pat Benatar",
1038
+ "appearance": "3/3"
1039
+ },
1040
+ {
1041
+ "number": 171,
1042
+ "song": "Don't Let Him Go",
1043
+ "artist": "REO Speedwagon",
1044
+ "appearance": "2/2"
1045
+ },
1046
+ {
1047
+ "number": 172,
1048
+ "song": "Never Let Her Slip Away",
1049
+ "artist": "Andrew Gold",
1050
+ "appearance": "1/1"
1051
+ },
1052
+ {
1053
+ "number": 173,
1054
+ "song": "Time Heals",
1055
+ "artist": "Todd Rundgren",
1056
+ "appearance": "3/3"
1057
+ },
1058
+ {
1059
+ "number": 174,
1060
+ "song": "Brass in Pocket",
1061
+ "artist": "The Pretenders",
1062
+ "appearance": "2/2"
1063
+ },
1064
+ {
1065
+ "number": 175,
1066
+ "song": "Little Sister",
1067
+ "artist": "Rockpile with Robert Plant",
1068
+ "appearance": "4/4"
1069
+ },
1070
+ {
1071
+ "number": 176,
1072
+ "song": "A Little in Love",
1073
+ "artist": "Cliff Richard",
1074
+ "appearance": "2/2"
1075
+ },
1076
+ {
1077
+ "number": 177,
1078
+ "song": "Da Ya Think I'm Sexy",
1079
+ "artist": "Rod Stewart",
1080
+ "appearance": "2/2"
1081
+ },
1082
+ {
1083
+ "number": 178,
1084
+ "song": "Victim",
1085
+ "artist": "Bootcamp",
1086
+ "appearance": "2/2"
1087
+ },
1088
+ {
1089
+ "number": 179,
1090
+ "song": "Baker Street",
1091
+ "artist": "Gerry Rafferty",
1092
+ "appearance": "2/2"
1093
+ },
1094
+ {
1095
+ "number": 180,
1096
+ "song": "He Can't Love You",
1097
+ "artist": "Michael Stanley Band",
1098
+ "appearance": "2/2"
1099
+ },
1100
+ {
1101
+ "number": 181,
1102
+ "song": "Looking for Clues",
1103
+ "artist": "Robert Palmer",
1104
+ "appearance": "3/3"
1105
+ },
1106
+ {
1107
+ "number": 182,
1108
+ "song": "Stop Draggin' My Heart Around",
1109
+ "artist": "Stevie Nicks and Tom Petty and the Heartbreakers",
1110
+ "appearance": "4/4"
1111
+ },
1112
+ {
1113
+ "number": 183,
1114
+ "song": "Keep on Loving You",
1115
+ "artist": "REO Speedwagon",
1116
+ "appearance": "3/3"
1117
+ },
1118
+ {
1119
+ "number": 184,
1120
+ "song": "When Things Go Wrong",
1121
+ "artist": "Robin Lane and the Chartbusters",
1122
+ "appearance": "2/2"
1123
+ },
1124
+ {
1125
+ "number": 185,
1126
+ "song": "Little Suzi's on the Up",
1127
+ "artist": "Ph.D.",
1128
+ "appearance": "3/3"
1129
+ },
1130
+ {
1131
+ "number": 186,
1132
+ "song": "The Best of Times",
1133
+ "artist": "Styx",
1134
+ "appearance": "3/3"
1135
+ },
1136
+ {
1137
+ "number": 187,
1138
+ "song": "Sailing",
1139
+ "artist": "Rod Stewart",
1140
+ "appearance": "2/2"
1141
+ },
1142
+ {
1143
+ "number": 188,
1144
+ "song": "You Better You Bet",
1145
+ "artist": "The Who",
1146
+ "appearance": "5/5"
1147
+ },
1148
+ {
1149
+ "number": 189,
1150
+ "song": "Iron Maiden",
1151
+ "artist": "Iron Maiden",
1152
+ "appearance": "2/2"
1153
+ },
1154
+ {
1155
+ "number": 190,
1156
+ "song": "Can't Happen Here",
1157
+ "artist": "Rainbow",
1158
+ "appearance": "3/3"
1159
+ },
1160
+ {
1161
+ "number": 191,
1162
+ "song": "Oliver's Army",
1163
+ "artist": "Elvis Costello",
1164
+ "appearance": "2/2"
1165
+ },
1166
+ {
1167
+ "number": 192,
1168
+ "song": "Just Between You and Me",
1169
+ "artist": "April Wine",
1170
+ "appearance": "5/5"
1171
+ },
1172
+ {
1173
+ "number": 193,
1174
+ "song": "Come What May",
1175
+ "artist": "Lani Hall and Herb Alpert",
1176
+ "appearance": "2/2"
1177
+ },
1178
+ {
1179
+ "number": 194,
1180
+ "song": "Tattooed Love Boys",
1181
+ "artist": "The Pretenders",
1182
+ "appearance": "1/1"
1183
+ },
1184
+ {
1185
+ "number": 195,
1186
+ "song": "In the Air Tonight",
1187
+ "artist": "Phil Collins",
1188
+ "appearance": "5/5"
1189
+ },
1190
+ {
1191
+ "number": 196,
1192
+ "song": "Peter Gunn Theme/Remote Control",
1193
+ "artist": "The Silencers",
1194
+ "appearance": "1/1"
1195
+ },
1196
+ {
1197
+ "number": 197,
1198
+ "song": "Dreamin'",
1199
+ "artist": "Cliff Richard",
1200
+ "appearance": "2/2"
1201
+ },
1202
+ {
1203
+ "number": 198,
1204
+ "song": "Lucille",
1205
+ "artist": "Rockestra",
1206
+ "appearance": "3/3"
1207
+ },
1208
+ {
1209
+ "number": 199,
1210
+ "song": "Boys Keep Swinging",
1211
+ "artist": "David Bowie",
1212
+ "appearance": "2/2"
1213
+ },
1214
+ {
1215
+ "number": 200,
1216
+ "song": "Johnny & Mary",
1217
+ "artist": "Robert Palmer",
1218
+ "appearance": "2/2"
1219
+ },
1220
+ {
1221
+ "number": 201,
1222
+ "song": "Only the Strong Survive",
1223
+ "artist": "REO Speedwagon",
1224
+ "appearance": "1/1"
1225
+ },
1226
+ {
1227
+ "number": 202,
1228
+ "song": "Waiting for the Weekend",
1229
+ "artist": "The Vapors",
1230
+ "appearance": "1/1"
1231
+ },
1232
+ {
1233
+ "number": 203,
1234
+ "song": "You're Insane",
1235
+ "artist": "Rod Stewart",
1236
+ "appearance": "1/1"
1237
+ },
1238
+ {
1239
+ "number": 204,
1240
+ "song": "Kiss on My List",
1241
+ "artist": "Hall & Oates",
1242
+ "appearance": "1/1"
1243
+ },
1244
+ {
1245
+ "number": 205,
1246
+ "song": "Living in the Plastic Age",
1247
+ "artist": "The Buggles",
1248
+ "appearance": "1/1"
1249
+ },
1250
+ {
1251
+ "number": 206,
1252
+ "song": "Lonely Boy",
1253
+ "artist": "Andrew Gold",
1254
+ "appearance": "1/1"
1255
+ }
1256
+ ]
1257
+ }