summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFrederick Yin <fkfd@fkfd.me>2022-04-17 22:46:35 +0800
committerFrederick Yin <fkfd@fkfd.me>2022-04-17 22:46:35 +0800
commit4927baaf18b4c415b0a6b5266596afc4576fa731 (patch)
tree384936b365db3daa0738d67bd3af2f5f31452b80
parent8cf7e9d524db6c7bbb88327d1376a9455f74152f (diff)
Add original dataset & python scripts
-rw-r--r--data/albums.py21
-rw-r--r--data/dedupe.py46
-rw-r--r--data/mkjson.py33
-rw-r--r--data/one_song_words.py27
-rw-r--r--data/words_that_only_appear_in_one_song1029
5 files changed, 1156 insertions, 0 deletions
diff --git a/data/albums.py b/data/albums.py
new file mode 100644
index 0000000..add3ae9
--- /dev/null
+++ b/data/albums.py
@@ -0,0 +1,21 @@
+import os
+import json
+
+ALBUMS = [
+ "Twenty One Pilots",
+ "Regional at Best",
+ "Vessel",
+ "Blurryface",
+ "Trench",
+ "Scaled And Icy",
+]
+
+albums = {}
+
+for album in ALBUMS:
+ tracks = [fn.replace(".txt", "") for fn in os.listdir(album)]
+ albums[album] = {"cover": "img/.jpg", "tracks": tracks}
+
+with open("albums.json", "w") as f:
+ json.dump(albums, f, indent=2)
+ f.close()
diff --git a/data/dedupe.py b/data/dedupe.py
new file mode 100644
index 0000000..1ba21ac
--- /dev/null
+++ b/data/dedupe.py
@@ -0,0 +1,46 @@
+import os
+import re
+
+tracks = [fn.replace(".txt", "") for fn in os.listdir("all")]
+lyrics = {}
+
+for track in tracks:
+ f = open(f"all/{track}.txt")
+ lyrics[track] = set(
+ [
+ word.strip(",.?!'\"():").replace("'s", "").replace("'d", "").lower()
+ for word in f.read().split()
+ ]
+ )
+ f.close()
+
+rf = open("list")
+
+for line in rf.read().splitlines():
+ track, word = tuple(line.split("\t"))
+ other_tracks = [t for t in tracks if t != track]
+ # there might be false positives, e.g. even <-> evening, to <-> toes
+ variations = [
+ word + "s",
+ word + "es",
+ word + "d",
+ word + "ed",
+ word + "ing",
+ re.sub("s$", "", word),
+ re.sub("es$", "", word),
+ re.sub("d$", "", word),
+ re.sub("ed$", "", word),
+ re.sub("ing$", "", word),
+ ]
+ dupe = False
+ for other_track in other_tracks:
+ if dupe:
+ break
+
+ for var in variations:
+ if var in lyrics[other_track]:
+ print(f"{word} ({track}), {var} ({other_track})")
+ dupe = True
+ break
+
+rf.close()
diff --git a/data/mkjson.py b/data/mkjson.py
new file mode 100644
index 0000000..4c48e69
--- /dev/null
+++ b/data/mkjson.py
@@ -0,0 +1,33 @@
+import json
+import re
+import os
+
+lyrics = {}
+
+for fn in os.listdir("all"):
+ f = open(f"all/{fn}")
+ # keep a list of every different line in this track
+ lyrics[fn.replace(".txt", "")] = set(f.read().splitlines())
+ f.close()
+
+f = open("list")
+words = f.read().splitlines()
+f.close()
+
+output = []
+
+for w in words:
+ track, word = tuple(w.split("\t"))
+ # look for word (case insensitive) in lyrics[track]
+ lines = [line for line in lyrics[track] if re.search(r"\b" + word + r"\b", line, re.I)]
+ output.append(
+ {
+ "track": track,
+ "word": word,
+ "lines": lines,
+ }
+ )
+
+with open("words.json", "w") as f:
+ json.dump(output, f)
+ f.close()
diff --git a/data/one_song_words.py b/data/one_song_words.py
new file mode 100644
index 0000000..3b74065
--- /dev/null
+++ b/data/one_song_words.py
@@ -0,0 +1,27 @@
+import os
+
+# list all tracks
+tracks = [fn.replace(".txt", "") for fn in os.listdir("all") if fn.endswith(".txt")]
+lyrics = {}
+
+for track in tracks:
+ f = open(f"all/{track}.txt")
+ # find every discrete word, deduped and normalized with best effort
+ lyrics[track] = set(
+ [
+ word.strip(",.?!'\"():").replace("'s", "").replace("'d", "").lower()
+ for word in f.read().split()
+ ]
+ )
+ f.close()
+
+rf = open("results", "w")
+
+for track in tracks:
+ other_tracks = [t for t in tracks if t != track]
+ for word in lyrics[track]:
+ # if word does not appear in any other track
+ if not any([(word in lyrics[o]) for o in other_tracks]):
+ rf.write(f"{track}\t{word}\n")
+
+rf.close()
diff --git a/data/words_that_only_appear_in_one_song b/data/words_that_only_appear_in_one_song
new file mode 100644
index 0000000..ea15368
--- /dev/null
+++ b/data/words_that_only_appear_in_one_song
@@ -0,0 +1,1029 @@
+Legend classic
+Legend lunch
+Legend visit
+Legend legend
+Legend masters
+Legend mixes
+Chlorine medical
+Chlorine venom
+Chlorine vibrations
+Chlorine pocket
+Chlorine speed
+Chlorine despise
+Chlorine confined
+Chlorine papermaker
+Chlorine incorrect
+Chlorine slide
+Chlorine chemical
+Chlorine chlorine
+Chlorine poisonous
+Chlorine invincible
+Chlorine formation
+Chlorine weathered
+Chlorine sippin
+Chlorine dependent
+Chlorine seat
+Chlorine carnation
+Chlorine decay
+Chlorine escape
+Chlorine coat
+Trapdoor alter
+Trapdoor favor
+Trapdoor early
+Trapdoor blatant
+Trapdoor faster
+Trapdoor trapdoor
+Cut My Lip contusions
+Cut My Lip rim
+Cut My Lip bruised
+Cut My Lip anyway
+Cut My Lip rust
+Holding On To You surrounding
+Holding On To You exactly
+Holding On To You noose
+Holding On To You introspective
+Holding On To You flesh
+Holding On To You belong
+Holding On To You rock
+Holding On To You unfolds
+Holding On To You mountain
+Holding On To You swat
+Holding On To You entertain
+Holding On To You kaleidoscope
+Holding On To You leash
+Holding On To You uncrossed
+Holding On To You bump
+Holding On To You speakers
+Holding On To You surroundings
+Holding On To You shotty
+Holding On To You gifted
+Holding On To You ignite
+Holding On To You obey
+Holding On To You undotted
+Holding On To You left-side
+March To The Sea heaven
+March To The Sea chant
+March To The Sea counterpart
+March To The Sea emotionless
+March To The Sea march
+March To The Sea spaceship
+March To The Sea seal
+March To The Sea pier
+March To The Sea focused
+March To The Sea raindrop
+March To The Sea marchers
+Formidable met
+Formidable reverse
+Formidable surprises
+Formidable loyalty
+Formidable thirteen
+Formidable everywhere
+Formidable cynical
+Formidable worried
+Formidable fast-forward
+Formidable clinical
+Formidable formidable
+Heathens sitting
+Heathens outsiders
+Heathens bust
+Heathens grenades
+Heathens freakshow
+Heathens psychopath
+Heathens docked
+Heathens weird
+Heathens mention
+Heathens newcomers
+Heathens issues
+Heathens heathens
+Heathens sudden
+Heathens intentions
+Tear In My Heart armor
+Tear In My Heart cement
+Tear In My Heart carver
+Tear In My Heart government
+Tear In My Heart butcher
+Tear In My Heart taxes
+Fall Away conscience
+Fall Away submission
+Fall Away commission
+Fall Away delay
+Fall Away vision
+Fall Away ambition
+Fall Away sentence
+Fall Away aim
+Fall Away obtain
+Fall Away precious
+Fall Away newer
+Fall Away selfish
+Fall Away repentance
+Fall Away toll
+Fall Away destiny
+Redecorate schedule
+Redecorate inventory
+Redecorate inebriated
+Redecorate sedated
+Redecorate snapshots
+Redecorate haunted
+Redecorate blankets
+Redecorate reflection
+Redecorate isolated
+Redecorate dents
+Redecorate directive
+Redecorate inline
+Redecorate redecorate
+Redecorate decisions
+Redecorate mostly
+Redecorate ripped
+Redecorate perspective
+Redecorate traditional
+Redecorate wonderful
+Redecorate tidy
+Redecorate flat
+Redecorate decorates
+Redecorate permission
+Redecorate chronologically
+Redecorate bells
+Redecorate whistles
+Redecorate display
+Redecorate trapped
+Redecorate scaled
+Redecorate big
+Air Catcher selfishly
+Air Catcher catcher
+Air Catcher cord
+Air Catcher safe
+Air Catcher stolen
+Air Catcher lacked
+Air Catcher safely
+Air Catcher guide
+Air Catcher contest
+Air Catcher tools
+Air Catcher parachutes
+Goner goner
+Goner beaten
+Goner weak
+Goner inside-out
+Goner slip
+Goner known
+Cancer soggy
+Cancer kiss
+Cancer aunt
+Cancer sisters
+Cancer abandoned
+Cancer baby
+Cancer chemo
+Cancer chapped
+Cancer marie
+Cancer marry
+Cancer awful
+Cancer agony
+Forest squint
+Forest white
+Forest poisoned
+Forest page
+Forest terrified
+Forest kingdom
+Forest stomach
+Forest swing
+Forest quickly
+Forest forest
+Forest supposed
+Forest eyelashes
+Forest hoisted
+Forest torn
+Forest situation
+Forest food
+Time To Say Goodbye appear
+Time To Say Goodbye splendor
+Time To Say Goodbye strength
+Time To Say Goodbye bricks
+Time To Say Goodbye whisper
+Time To Say Goodbye render
+Time To Say Goodbye split
+Time To Say Goodbye tower
+Time To Say Goodbye elsewhere
+Time To Say Goodbye muffled
+Time To Say Goodbye hollowed
+Time To Say Goodbye counterfeit
+Never Take It taught
+Never Take It weaponize
+Never Take It profit
+Never Take It teeth
+Never Take It educate
+Never Take It restitution
+Never Take It treatment
+Never Take It confusion
+Never Take It quotations
+Never Take It seek
+Never Take It guitar
+Never Take It facility
+Never Take It tube
+Never Take It advice
+House Of Gold gold
+House Of Gold upside
+House Of Gold buy
+House Of Gold happily
+House Of Gold bum
+Addict With A Pen forth
+Addict With A Pen fact
+Addict With A Pen dramatic
+Addict With A Pen addict
+Addict With A Pen palm
+Addict With A Pen strain
+Addict With A Pen filed
+Addict With A Pen spineless
+Addict With A Pen specialize
+Addict With A Pen tightly
+Addict With A Pen trial
+Addict With A Pen addicted
+Migraine lumber-down
+Migraine gotta
+Migraine mental
+Migraine ruthless
+Migraine violence
+Migraine gardens
+Migraine freeze
+Migraine crazed
+Migraine headache
+Migraine psyche
+Migraine suicide
+Migraine suspended
+Migraine represented
+Migraine defenseless
+Migraine feasting
+Migraine block
+Migraine letters
+Migraine eyelids
+Migraine examinant
+Migraine ship-wrecked
+Migraine undertone
+Migraine difficult
+Migraine hopeful
+Migraine clock
+Migraine suspense
+Migraine drizzle
+Migraine migraine
+Migraine slight
+Migraine sundays
+Migraine portrait
+Migraine tidal
+Migraine waging
+Migraine pardon
+Migraine thunderstorms
+Migraine assemble
+Migraine chin
+Migraine Pandora
+Migraine non-violent
+Migraine green
+Migraine such
+Migraine contents
+Migraine forehead
+Semi-Automatic survival
+Semi-Automatic silver
+Semi-Automatic schizophrenic
+Semi-Automatic double-sided
+Semi-Automatic hills
+Semi-Automatic semi-automatic
+Semi-Automatic warm
+Semi-Automatic horrors
+Semi-Automatic climbing
+Semi-Automatic prayer
+Semi-Automatic smaller
+Stressed Out candle
+Stressed Out young
+Stressed Out ship
+Stressed Out latter
+Stressed Out insecure
+Stressed Out rocket
+Stressed Out tree-house
+Stressed Out roam
+Stressed Out student
+Stressed Out Blurryface
+Stressed Out identify
+Stressed Out homegrown
+Stressed Out loans
+Stressed Out outer
+Stressed Out creek
+Stressed Out stressed
+Ride fun
+Ride literally
+Ride easy
+Ride fantasize
+Kitchen Sink catastrophe
+Kitchen Sink paste
+Kitchen Sink example
+Kitchen Sink prime
+Kitchen Sink defeating
+Kitchen Sink stand-up
+Kitchen Sink empathy
+Kitchen Sink wordless
+Kitchen Sink frenemies
+Kitchen Sink momentum
+Kitchen Sink winning
+Kitchen Sink momentary
+Kitchen Sink sinning
+Kitchen Sink bending
+Kitchen Sink kitchen
+Kitchen Sink gains
+Kitchen Sink behaviour
+Kitchen Sink memories
+Kitchen Sink nonsense
+Kitchen Sink pointless
+Kitchen Sink neither
+Kitchen Sink brink
+Kitchen Sink extinction
+Kitchen Sink screwed
+Kitchen Sink re-beginning
+Kitchen Sink mending
+Kitchen Sink artistic
+Kitchen Sink rhythm
+Kitchen Sink gambling
+Kitchen Sink badder
+Kitchen Sink sink
+Anathema veins
+Anathema led
+Anathema multiply
+Anathema goodnight
+Anathema pillowcase
+Anathema skull
+Anathema taken
+Guns For Hands invested
+Guns For Hands interested
+Guns For Hands trade
+Guns For Hands solution
+Guns For Hands forewarn
+Guns For Hands condition
+Guns For Hands parents
+Guns For Hands safety
+Guns For Hands ammunition
+Guns For Hands mutant
+Guns For Hands upsets
+Guns For Hands interest
+Guns For Hands disorder
+Guns For Hands shines
+Guns For Hands confused
+Guns For Hands fist
+Guns For Hands thumbs
+Guns For Hands fused
+Guns For Hands obviously
+Guns For Hands suggest
+Trees cowardly
+Trees silent
+The Hype hype
+The Hype exterior
+The Hype dissipate
+The Hype paralyzed
+The Hype thick
+The Hype interior
+The Hype sanitize
+Levitate seventh
+Levitate doorways
+Levitate fabric
+Levitate sever
+Levitate ledges
+Levitate habits
+Levitate rising
+Levitate graffiti
+Levitate wooden
+Levitate dominate
+Levitate smirking
+Levitate overexposure
+Levitate poacher
+Levitate compensates
+Levitate compensation
+Levitate fire-breathe
+Levitate danger
+Levitate worst
+Levitate well-lit
+Levitate grade
+Levitate levitate
+Levitate wedges
+Levitate cowards
+Lane Boy constant
+Lane Boy hazmat
+Lane Boy lane
+Lane Boy exists
+Lane Boy cavalry
+Lane Boy hood
+Lane Boy vanity
+Lane Boy creativity
+Lane Boy heartless
+Lane Boy highway
+Lane Boy flawless
+Lane Boy zack
+Lane Boy tempo
+Lane Boy morality
+Lane Boy confrontation
+Lane Boy salary
+Lane Boy industry
+Lane Boy regardless
+Lovely lovely
+Lovely treason
+Lovely cobwebs
+Lovely setting
+Lovely stale
+Lovely difference
+Lovely version
+Lovely luckily
+Lovely sail
+Lovely signals
+Lovely unwind
+Isle Of Flightless Birds patiently
+Isle Of Flightless Birds flightless
+Isle Of Flightless Birds taunts
+Isle Of Flightless Birds frustrating
+Isle Of Flightless Birds mold
+Isle Of Flightless Birds wings
+Isle Of Flightless Birds degrading
+Isle Of Flightless Birds comfortability
+Isle Of Flightless Birds weeping
+Isle Of Flightless Birds isle
+Isle Of Flightless Birds climax
+Isle Of Flightless Birds winding
+Isle Of Flightless Birds wasting
+Isle Of Flightless Birds evening
+Isle Of Flightless Birds birth
+Isle Of Flightless Birds routine
+Isle Of Flightless Birds plummet
+Isle Of Flightless Birds fading
+Smithereens slick
+Smithereens notes
+Smithereens calm
+Smithereens 153
+Smithereens thrill
+Smithereens girl
+Smithereens weigh
+Smithereens smithereens
+Smithereens describe
+Smithereens conflict
+Smithereens six
+Glowing Eyes kindly
+Glowing Eyes enter
+Glowing Eyes fantasies
+Glowing Eyes romantic
+Glowing Eyes idle
+Glowing Eyes fans
+Glowing Eyes grid
+Glowing Eyes creatures
+Glowing Eyes depression
+Glowing Eyes rather
+Choker co-sign
+Choker stronger
+Choker withstand
+Choker upon
+Choker silhouette
+Choker volunteers
+Choker circumstance
+Choker less
+Choker sign
+Choker fibers
+Choker rearview
+Choker eventually
+Choker splinter
+Choker sweet
+Choker demands
+Choker middleman
+Choker secondhand
+Choker romance
+Choker dry
+Choker self-sabotage
+Choker choker
+Choker forever
+Level Of Concern level
+Level Of Concern bunker
+Level Of Concern quarantine
+Level Of Concern michael
+Level Of Concern Julie
+Clear dig
+Clear impostor
+Clear subliminally
+Clear fostered
+Clear introspection
+Clear clever
+Clear sincere
+Clear reflect
+Clear shot
+Clear deeper
+Clear infection
+Clear chivalry
+Clear crystal
+Clear general
+Clear microphone
+Clear cleverly
+Clear enemy
+Clear greater
+Clear energy
+The Run And Go cerebral
+The Run And Go accusations
+The Run And Go trouble
+The Run And Go struggle
+The Run And Go siege
+The Run And Go thunder
+The Run And Go one-way
+The Run And Go several
+Message Man obsessing
+Message Man minutes
+Message Man present
+Message Man triplets
+Message Man message
+Message Man episode
+Message Man flip
+Message Man motivation
+Message Man release
+Message Man promote
+Message Man worse
+Message Man poetry
+Message Man impressed
+Message Man loser
+Message Man discretion
+Message Man losers
+Message Man rears
+No Chances switchblade
+No Chances location
+No Chances notorious
+No Chances grind
+No Chances flamethrower
+No Chances spent
+No Chances bodies
+No Chances squared
+No Chances planted
+No Chances terms
+No Chances agreement
+No Chances grip
+No Chances arrive
+No Chances octagon
+No Chances feng-shui
+No Chances surveillances
+Doubt system
+Doubt temperature
+Doubt anxiety
+Doubt gnawing
+Doubt insisted
+Doubt image
+Doubt immaturity
+Doubt markings
+Doubt uncertainty
+Doubt claw
+A Car, A Torch, A Death jar
+A Car, A Torch, A Death torch
+A Car, A Torch, A Death porch
+A Car, A Torch, A Death buckled
+A Car, A Torch, A Death makeshift
+A Car, A Torch, A Death envy
+A Car, A Torch, A Death piled
+Hometown tilts
+Hometown hometown
+Hometown traditions
+Hometown power
+Hometown quietly
+Hometown served
+Slowtown slowtown
+Slowtown trampolines
+Slowtown socks
+Slowtown spokes
+Slowtown laws
+Slowtown traffic
+Slowtown Pokémon
+Slowtown cards
+Slowtown holographics
+Slowtown bike
+Slowtown engine
+Slowtown neighboring
+Slowtown risks
+Slowtown toes
+Before You Start Your Day glitter
+Before You Start Your Day slits
+Saturday tide
+Saturday fishbowl
+Saturday sense
+Saturday footing
+Saturday monday
+Saturday medicate
+Saturday exaggerate
+Saturday afternoon
+Saturday saturday
+Saturday wednesday
+Bandito created
+Bandito contained
+Bandito sahlo
+Bandito heatless
+Bandito discovered
+Bandito recently
+Bandito nicknames
+Bandito relative
+Bandito bandito
+Bandito softest
+Bandito folina
+Bandito uninspire
+Bandito rival
+Bounce Man knocking
+Bounce Man phone
+Bounce Man reply
+Bounce Man nightly
+Bounce Man crossed
+Bounce Man voicemail
+Bounce Man Mexico
+Bounce Man soldiers
+Bounce Man lady
+Bounce Man pedigree
+Bounce Man went
+Bounce Man state
+Bounce Man amenities
+We Don't Believe What's On T.V. fail
+We Don't Believe What's On T.V. dreamer
+We Don't Believe What's On T.V. T.V.
+We Don't Believe What's On T.V. stick
+Ruby ruby
+Ruby royalty
+Ruby pure
+Ruby arrival
+Ruby shade
+Ruby pink
+Ruby capture
+Shy Away manifest
+Shy Away shed
+Shy Away cycle
+Shy Away modesty
+Shy Away shy
+Shy Away recognize
+Oh Ms Believer sleeper
+Oh Ms Believer muffs
+Oh Ms Believer Ms
+Oh Ms Believer slower
+Oh Ms Believer believer
+Oh Ms Believer foreign
+Oh Ms Believer weeper
+Oh Ms Believer rooftops
+Oh Ms Believer cater
+Oh Ms Believer winter
+Neon Gravestones boost
+Neon Gravestones celebration
+Neon Gravestones grandparents
+Neon Gravestones reputation
+Neon Gravestones stigma
+Neon Gravestones bang
+Neon Gravestones earlier
+Neon Gravestones celebrated
+Neon Gravestones host
+Neon Gravestones action
+Neon Gravestones extra
+Neon Gravestones glorify
+Neon Gravestones fairness
+Neon Gravestones tempted
+Neon Gravestones mourn
+Neon Gravestones succession
+Neon Gravestones respects
+Neon Gravestones awareness
+Neon Gravestones bottom
+Neon Gravestones fraction
+Neon Gravestones banner
+Neon Gravestones streams
+Neon Gravestones teach
+Neon Gravestones engraving
+Neon Gravestones discussion
+Neon Gravestones point
+Neon Gravestones wits
+Neon Gravestones treat
+Neon Gravestones loss
+Neon Gravestones asylum
+Neon Gravestones paved
+Neon Gravestones hang
+Neon Gravestones swap
+Neon Gravestones dedicated
+Neon Gravestones lesson
+Neon Gravestones age
+Neon Gravestones path
+Neon Gravestones optional
+Neon Gravestones communicating
+Neon Gravestones praise
+Neon Gravestones gravestones
+Neon Gravestones scares
+Neon Gravestones aggression
+Neon Gravestones resonate
+Neon Gravestones refusing
+Neon Gravestones assisted
+Neon Gravestones glorified
+Neon Gravestones convenient
+Neon Gravestones lenient
+Neon Gravestones opinion
+Neon Gravestones highest
+Be Concerned inch
+Be Concerned damaged
+Be Concerned fully
+Be Concerned testifying
+Be Concerned empty-handed
+Be Concerned Jonah
+Be Concerned granted
+Be Concerned pearl
+Be Concerned devote
+Be Concerned policy
+Be Concerned dearly
+Be Concerned huh
+Be Concerned requires
+Be Concerned manage
+Be Concerned merely
+Be Concerned swine
+Be Concerned loaded
+Be Concerned motivate
+Be Concerned earned
+Be Concerned gullible
+Be Concerned bridges
+Be Concerned pry
+Be Concerned relate
+Be Concerned defy
+Be Concerned worthwhile
+Mulberry Street pills
+Mulberry Street Mulberry
+Mulberry Street relies
+Mulberry Street synthetic
+Mulberry Street strings
+Mulberry Street sunny
+Mulberry Street prescribe
+Mulberry Street distance
+Mulberry Street parade
+Mulberry Street sidewalk
+Mulberry Street bliss
+Mulberry Street edge
+Johnny Boy deserves
+Johnny Boy frowns
+Johnny Boy blame
+Johnny Boy qualified
+Johnny Boy deflect
+Johnny Boy medal
+Johnny Boy prize
+Johnny Boy Johnny
+Johnny Boy fix
+Johnny Boy shame
+Johnny Boy joy
+Polarize splitting
+Polarize none
+Polarize halo
+Polarize fuego
+Polarize adversary
+Polarize domingo
+Polarize separating
+Polarize stairs
+Polarize polarize
+Screen conversate
+Screen broken
+Screen cool
+Screen screen
+Screen excuse
+Screen motives
+Screen vertical
+Screen slomo
+Screen locomotive
+The Outside cogs
+The Outside renaissance
+The Outside charge
+The Outside beast
+The Outside prehistoric
+The Outside fumes
+The Outside club
+The Outside meteoric
+The Outside nodding
+The Outside clinging
+The Outside touch
+The Outside efficiency
+The Outside swimming
+The Outside meteor
+The Outside pond
+The Outside megatron
+The Outside megalodon
+The Outside fuel
+The Pantaloon nine
+The Pantaloon glide
+The Pantaloon pantaloon
+The Pantaloon hustle
+The Pantaloon nightmares
+The Pantaloon fertilize
+The Pantaloon feeble
+The Pantaloon grandpa
+The Pantaloon moth
+The Pantaloon fairgrounds
+The Pantaloon frights
+The Pantaloon tiny
+The Pantaloon ate
+Jumpsuit weight
+Jumpsuit foe
+Jumpsuit dusting
+Jumpsuit roll
+Jumpsuit youth
+Good Day slowly
+Good Day child
+Good Day sued
+Good Day style
+Good Day shoot-em-up
+Good Day movies
+Good Day buzz
+Good Day job
+Good Day low-key
+Good Day sunshine
+Good Day mom
+Good Day saturation
+Good Day vacation
+Good Day homie
+Christmas Saves The Year grander
+Christmas Saves The Year cheap
+Christmas Saves The Year cheer
+Christmas Saves The Year '92
+Christmas Saves The Year assured
+Christmas Saves The Year shelf
+Christmas Saves The Year Christmas
+Christmas Saves The Year ashes
+Christmas Saves The Year wayside
+Christmas Saves The Year photo
+Pet Cheetah cheetah
+Pet Cheetah exercise
+Pet Cheetah nepotistic
+Pet Cheetah trained
+Pet Cheetah quicker
+Pet Cheetah Jason
+Pet Cheetah roof
+Pet Cheetah perched
+Pet Cheetah pet
+Pet Cheetah mindset
+Pet Cheetah Statham
+Pet Cheetah tip-toeing
+Pet Cheetah delete
+Pet Cheetah bathed
+Pet Cheetah possess
+Pet Cheetah studio
+Car Radio ponder
+Car Radio consists
+Car Radio stole
+Car Radio deflate
+Car Radio choose
+Car Radio wheel
+Car Radio terrifying
+Car Radio steering
+Car Radio consistence
+Car Radio lungs
+Car Radio battling
+Car Radio human
+Car Radio often
+Car Radio desire
+Car Radio existence
+Car Radio distraction
+Car Radio ought
+Car Radio exhale
+Fairly Local emotional
+Fairly Local yesterday
+Fairly Local local
+Fairly Local funeral
+Fairly Local core
+Fairly Local proud
+Fairly Local bulletproof
+Fairly Local black
+Friend, Please spiders
+Friend, Please remove
+Friend, Please crawled
+Friend, Please exterminate
+Friend, Please sway
+Ode To Sleep whore
+Ode To Sleep forged
+Ode To Sleep number
+Ode To Sleep await
+Ode To Sleep insignificant
+Ode To Sleep forgiveness
+Ode To Sleep amount
+Ode To Sleep handy
+Ode To Sleep knees
+Ode To Sleep MVP
+Ode To Sleep repeatedly
+Ode To Sleep threaten
+Ode To Sleep harpoon
+Ode To Sleep denied
+Ode To Sleep anticipate
+Ode To Sleep dandy
+Ode To Sleep landing
+Ode To Sleep receding
+Ode To Sleep eve
+Ode To Sleep arms
+Ode To Sleep portrays
+Fake You Out form-fitted
+Fake You Out sick
+Fake You Out spewing
+Fake You Out otherwise
+Fake You Out brewing
+Fake You Out fusing
+Fake You Out convince
+Fake You Out explaining
+Fake You Out cell
+Fake You Out closest
+Fake You Out committed
+Taxi Cab passenger
+Taxi Cab fingernails
+Taxi Cab fate
+Taxi Cab unpack
+Taxi Cab hearse
+Taxi Cab cab
+Taxi Cab driver
+Taxi Cab contrived
+Taxi Cab strip
+Taxi Cab breathless
+Taxi Cab taxi
+Taxi Cab plain
+Taxi Cab spot
+Taxi Cab steal
+My Blood driveway
+My Blood shred
+My Blood jump
+My Blood grown
+My Blood bomb
+My Blood den
+The Judge hideaway
+The Judge imperfections
+The Judge leader
+The Judge wow
+The Judge hot
+The Judge devil
+The Judge bout
+The Judge hell
+The Judge drought
+The Judge cranked
+The Judge judge
+The Judge soaked
+The Judge declared
+The Judge bulbs
+The Judge soft
+The Judge darker
+The Judge directions
+The Judge pro
+The Judge fourth
+The Judge revel
+Heavydirtysoul attempt
+Heavydirtysoul misty-eyed
+Heavydirtysoul rabbit
+Heavydirtysoul rapping
+Heavydirtysoul hip-hop
+Heavydirtysoul limp
+Heavydirtysoul dog
+Heavydirtysoul zombies
+Heavydirtysoul heavydirtysoul
+Heavydirtysoul infestation
+Heavydirtysoul choke
+Heavydirtysoul hunch
+Heavydirtysoul figure
+Heavydirtysoul shout
+Heavydirtysoul guess
+Heavydirtysoul gangsters
+Nico And The Niners mob
+Nico And The Niners stores
+Nico And The Niners niners
+Nico And The Niners dema
+Nico And The Niners lower
+Nico And The Niners razorblades
+Nico And The Niners lighter
+Nico And The Niners concert
+Nico And The Niners diversion
+Nico And The Niners east
+Nico And The Niners sponsor
+Nico And The Niners horse
+Nico And The Niners rent
+Nico And The Niners careless
+Not Today transform
+Not Today piano
+Not Today willing
+Not Today noise
+Not Today curtains
+Not Today happy
+Not Today contradiction
+Not Today tore
+Implicit Demand For Proof perplexed
+Implicit Demand For Proof ahead
+Implicit Demand For Proof lightning
+Implicit Demand For Proof strike
+Implicit Demand For Proof liar
+Morph invades
+Morph hounded
+Morph Nicolas
+Morph scientific
+Morph belief
+Morph symphony
+Morph tormentors
+Morph solemn
+Morph possible
+Morph sword
+Morph ergo
+Morph transmitting
+Morph purely
+Morph spies
+Morph mode
+Morph mechanism
+Morph Bourbaki
+Morph miracle
+Morph mock
+Morph anybody
+Morph morph
+Morph infinity
+Morph zeroes
+Morph remains
+Morph sorrow
+Leave The City details
+Leave The City glorious
+Leave The City hastily
+Leave The City pace
+Leave The City singed
+Leave The City tending
+Leave The City embers