Taylor Swift (Soon-to-be Kelce)

Proposal

library(tidyverse)

Dataset

A brief description of your dataset including its provenance, dimensions, etc. as well as the reason why you chose this dataset. Make sure to load the data and use inline code for some of this information.

#loading in the data


taylor_album_songs <- readr::read_csv('data/taylor_album_songs.csv', show_col_types = FALSE)
taylor_all_songs <- readr::read_csv('data/taylor_all_songs.csv', show_col_types = FALSE)
taylor_albums <- readr::read_csv('data/taylor_albums.csv', show_col_types = FALSE)
  • The data we are using comes from Genius and the Spotify API. The creator of this package is W. Jake Thompson. The contents of this data are focused on the audio characteristics and the lyrics of the songs. The Spotify API gives songs a variety of audio scores based on the vibe of the song.
  • There are three csv files in this data set: taylor_album_songs.csv, taylor_all_songs.csv, taylor_albums.csv
    • The first two are very similar. They both include the following variables: album_name, ep, album_release, track_number, track_name, artist, featuring, bonus_track, promotional_release, single_release, track_release, danceability, energy, key, loudness, mode, speechiness, acousticness, instrumentalness, liveness, valence, tempo, time_signature, duration_ms, explicit, key_name, mode_name, key_mode, lyrics.
    • The only difference from these two ( taylor_album_songs.csv and taylor_all_songs.csv) is that the latter includes all of her songs, not just songs that came off of her official studio albums. Specifically, taylor_album_songs excludes singles released separately from an album, and also excludes the original releases of albums that now have a Taylor-owned alternative in support of artists wanting to own their own music.
    • The taylor_album_songs dataset includes 194 rows and 29 columns.
    • The taylor_all_songs dataset includes 274 rows and 29 columns.
    • The taylor_albums dataset includes 14 rows and 5 columns.
  • The taylor_albums.csv includes the variables: album_name, ep, album_release, metacritic_score, user_score.
    • We do not have any current plans to use this portion of data set.
  • We chose this data set because we love Taylor Swift and Travis Kelce! But more seriously, when we looked at the data, we noticed it there was a wide variety of types of variables and very rich data. We saw it there was enough data to complete the project and think we can create something in line with our interests and also some interesting findings!

Questions

The two questions you want to answer.

  1. How do Taylor Swift’s single releases differ from the songs on the full albums?
    • Variable: single_release Type: Double Description: date of single release
    • Variable: danceability Type: Double Description: Spotify danceability score. A value of 0.0 is least danceable and 1.0 is most danceable.
    • Variable: energy Type: Double Description: Spotify energy score. Energy is a measure from 0.0 to 1.0 and represents a perceptual measure of intensity and activity.
    • Variable: tempo Type: Double Description: The overall estimated tempo of a track in beats per minute (BPM). In musical terminology, tempo is the speed or pace of a given piece and derives directly from the average beat duration.
    • Variable: album_release Type: Double Description: Album release date
    • Variable: track_number Type: Integer Description: Track Number
  2. How have Taylor Swift’s songs changed over time?
    • Variable: album_release Type: Double Description: Album release date
    • Variable: track_number Type: Integer Description: Track Number
    • Variable: track_release Type: Double Description: Date of track release
    • Variable: metacritic_score Type: Integer Description: Metacritic Score
    • Variable: user_score Type: Double Description: User Score
    • Variable: acousticness Type: Double Description: Spotify acousticness score. A confidence measure from 0.0 to 1.0 of whether the track is acoustic. 1.0 represents high confidence the track is acoustic.
    • Variable: lyrics Type: list Description: Track lyrics. These values are all NA. To get the lyrics in nested tibbles, install.packages(“taylor”) and use the source data.

Analysis plan

A plan for answering each of the questions including the variables involved, variables to be created (if any), external data to be merged in (if any).

  • For the first question, we plan on comparing different numerical characteristics of the singles, such as danceability and energy, from the single releases, to the average of these values from all of the songs on that album as a whole. There are many different visualizations from the many different variables as part of this dataset. One initial idea we have is to use a geom_bar to compare the values by song, and highlighting any difference with the songs released as singles. The exact variables that will be used are

    • Variable: single_release Type: Double Description: date of single release
    • Variable: danceability Type: Double Description: Spotify danceability score. A value of 0.0 is least danceable and 1.0 is most danceable.
    • Variable: energy Type: Double Description: Spotify energy score. Energy is a measure from 0.0 to 1.0 and represents a perceptual measure of intensity and activity.
    • Variable: tempo Type: Double Description: The overall estimated tempo of a track in beats per minute (BPM). In musical terminology, tempo is the speed or pace of a given piece and derives directly from the average beat duration.
    • Variable: album_release Type: Date Description: Album release date
    • Variable: track_number Type: Integer Description: Track Number
  • For the second question, we again could compare how her songs have changed over time by looking at the different numerical characteristics of the songs to see how her style has changed. We could look at specifically acoustic songs to see if she has been making more or less acoustic songs over time. We can look at the metacritic scores of the albums over time to see if she has been scored higher the longer she has been popular. We also might be able to visualize what individual words she has used more or less over time, such as the words “love”, “hate” or anything in between. One initial idea we have in terms of visualizing this is to use geom_line with time on the x axis and the score variable (ex. acousticness) on the y-axis to visualize the change overtime. The exact variables that will be used are

    • Variable: album_release Type: Double Description: Album release date
    • Variable: track_number Type: Integer Description: Track Number
    • Variable: track_release Type: Double Description: Date of track release
    • Variable: metacritic_score Type: Integer Description: Metacritic Score
    • Variable: user_score Type: Double Description: User Score
    • Variable: acousticness Type: Double Description: Spotify acousticness score. A confidence measure from 0.0 to 1.0 of whether the track is acoustic. 1.0 represents high confidence the track is acoustic.
    • Variable: lyrics Type: list Description: Track lyrics. These values are all NA. To get the lyrics in nested tibbles, install.packages(“taylor”) and use the source data.
#install.packages("taylor")
library(taylor)

Attaching package: 'taylor'
The following objects are masked _by_ '.GlobalEnv':

    taylor_album_songs, taylor_albums, taylor_all_songs
taylor_lyrics <- taylor::taylor_all_songs$lyrics
taylor_lyrics
[[1]]
# A tibble: 55 Ă— 4
    line lyric                                            element element_artist
   <int> <chr>                                            <chr>   <chr>         
 1     1 "He said the way my blue eyes shined"            Verse 1 Taylor Swift  
 2     2 "Put those Georgia stars to shame that night"    Verse 1 Taylor Swift  
 3     3 "I said, \"That's a lie\""                       Verse 1 Taylor Swift  
 4     4 "Just a boy in a Chevy truck"                    Verse 1 Taylor Swift  
 5     5 "That had a tendency of gettin' stuck"           Verse 1 Taylor Swift  
 6     6 "On backroads at night"                          Verse 1 Taylor Swift  
 7     7 "And I was right there beside him all summer lo… Verse 1 Taylor Swift  
 8     8 "And then the time we woke up to find that summ… Verse 1 Taylor Swift  
 9     9 "But when you think Tim McGraw"                  Chorus  Taylor Swift  
10    10 "I hope you think my favorite song"              Chorus  Taylor Swift  
# â„ą 45 more rows

[[2]]
# A tibble: 33 Ă— 4
    line lyric                                            element element_artist
   <int> <chr>                                            <chr>   <chr>         
 1     1 State the obvious, I didn't get my perfect fant… Verse 1 Taylor Swift  
 2     2 I realize you love yourself more than you could… Verse 1 Taylor Swift  
 3     3 So go and tell your friends that I'm obsessive … Verse 1 Taylor Swift  
 4     4 That's fine, you won't mind if I say             Verse 1 Taylor Swift  
 5     5 By the way                                       Verse 1 Taylor Swift  
 6     6 I hate that stupid old pickup truck you never l… Chorus  Taylor Swift  
 7     7 You're a redneck heartbreak who's really bad at… Chorus  Taylor Swift  
 8     8 So watch me strike a match on all my wasted time Chorus  Taylor Swift  
 9     9 As far as I'm concerned, you're just another pi… Chorus  Taylor Swift  
10    10 There's no time for tears                        Verse 2 Taylor Swift  
# â„ą 23 more rows

[[3]]
# A tibble: 36 Ă— 4
    line lyric                                            element element_artist
   <int> <chr>                                            <chr>   <chr>         
 1     1 Drew looks at me                                 Verse 1 Taylor Swift  
 2     2 I fake a smile so he won't see                   Verse 1 Taylor Swift  
 3     3 That I want and I'm needing                      Verse 1 Taylor Swift  
 4     4 Everything that we should be                     Verse 1 Taylor Swift  
 5     5 I'll bet she's beautiful, that girl he talks ab… Pre-Ch… Taylor Swift  
 6     6 And she's got everything that I have to live wi… Pre-Ch… Taylor Swift  
 7     7 Drew talks to me                                 Verse 2 Taylor Swift  
 8     8 I laugh 'cause it's so damn funny                Verse 2 Taylor Swift  
 9     9 That I can't even see                            Verse 2 Taylor Swift  
10    10 Anyone when he's with me                         Verse 2 Taylor Swift  
# â„ą 26 more rows

[[4]]
# A tibble: 27 Ă— 4
    line lyric                                            element element_artist
   <int> <chr>                                            <chr>   <chr>         
 1     1 I don't know what I want, so don't ask me        Verse 1 Taylor Swift  
 2     2 Cause I'm still trying to figure it out          Verse 1 Taylor Swift  
 3     3 Don't know what's down this road, I'm just walk… Verse 1 Taylor Swift  
 4     4 Trying to see through the rain coming down       Verse 1 Taylor Swift  
 5     5 Even though I'm not the only one                 Verse 1 Taylor Swift  
 6     6 Who feels the way I do                           Verse 1 Taylor Swift  
 7     7 I'm alone, on my own, and that's all I know      Chorus  Taylor Swift  
 8     8 I'll be strong, I'll be wrong, oh but life goes… Chorus  Taylor Swift  
 9     9 Oh, I'm just a girl, trying to find a place in … Chorus  Taylor Swift  
10    10 Got the radio on, my old blue jeans              Verse 2 Taylor Swift  
# â„ą 17 more rows

[[5]]
# A tibble: 24 Ă— 4
    line lyric                                            element element_artist
   <int> <chr>                                            <chr>   <chr>         
 1     1 You have a way of coming easily to me            Verse 1 Taylor Swift  
 2     2 And when you take, you take the very best of me  Verse 1 Taylor Swift  
 3     3 So I start a fight cause I need to feel somethi… Verse 1 Taylor Swift  
 4     4 And you do what you want 'cause I'm not what yo… Verse 1 Taylor Swift  
 5     5 Oh, what a shame, what a rainy ending given to … Chorus  Taylor Swift  
 6     6 Just walk away, ain't no use defending words th… Chorus  Taylor Swift  
 7     7 And now that I'm sitting here thinking it throu… Chorus  Taylor Swift  
 8     8 I've never been anywhere cold as you             Chorus  Taylor Swift  
 9     9 You put up walls and paint them all a shade of … Verse 2 Taylor Swift  
10    10 And I stood there loving you and wished them al… Verse 2 Taylor Swift  
# â„ą 14 more rows

[[6]]
# A tibble: 37 Ă— 4
    line lyric                                         element element_artist
   <int> <chr>                                         <chr>   <chr>         
 1     1 I didn't know what I would find               Verse 1 Taylor Swift  
 2     2 When I went looking for a reason, I know      Verse 1 Taylor Swift  
 3     3 I didn't read between the lines               Verse 1 Taylor Swift  
 4     4 And, baby, I've got nowhere to go             Verse 1 Taylor Swift  
 5     5 I tried to take the road less traveled by     Verse 1 Taylor Swift  
 6     6 But nothing seems to work the first few times Verse 1 Taylor Swift  
 7     7 Am I right?                                   Verse 1 Taylor Swift  
 8     8 So how can I ever try to be better?           Chorus  Taylor Swift  
 9     9 Nobody ever lets me in                        Chorus  Taylor Swift  
10    10 I can still see you, this ain't the best view Chorus  Taylor Swift  
# â„ą 27 more rows

[[7]]
# A tibble: 36 Ă— 4
    line lyric                                           element element_artist
   <int> <chr>                                           <chr>   <chr>         
 1     1 Seems the only one who doesn't see your beauty  Verse 1 Taylor Swift  
 2     2 Is the face in the mirror looking back at you   Verse 1 Taylor Swift  
 3     3 You walk around here thinking you're not pretty Verse 1 Taylor Swift  
 4     4 But that's not true, 'cause I know you          Verse 1 Taylor Swift  
 5     5 Hold on, baby, you're losing it                 Chorus  Taylor Swift  
 6     6 The water's high, you're jumping into it        Chorus  Taylor Swift  
 7     7 And letting go and no one knows                 Chorus  Taylor Swift  
 8     8 That you cry, but you don't tell anyone         Chorus  Taylor Swift  
 9     9 That you might not be the golden one            Chorus  Taylor Swift  
10    10 And you're tied together with a smile           Chorus  Taylor Swift  
# â„ą 26 more rows

[[8]]
# A tibble: 51 Ă— 4
    line lyric                                            element element_artist
   <int> <chr>                                            <chr>   <chr>         
 1     1 "Corey's eyes are like a jungle"                 Verse 1 Taylor Swift  
 2     2 "He smiles, it's like the radio"                 Verse 1 Taylor Swift  
 3     3 "He whispers songs into my window in words that… Verse 1 Taylor Swift  
 4     4 "These pretty girls on every corner"             Verse 1 Taylor Swift  
 5     5 "They watch him as he's walking home, saying, \… Verse 1 Taylor Swift  
 6     6 "Will you ever know?"                            Verse 1 Taylor Swift  
 7     7 "You're beautiful"                               Chorus  Taylor Swift  
 8     8 "Every little piece, love"                       Chorus  Taylor Swift  
 9     9 "And don't you know"                             Chorus  Taylor Swift  
10    10 "You're really gonna be someone"                 Chorus  Taylor Swift  
# â„ą 41 more rows

[[9]]
# A tibble: 44 Ă— 4
    line lyric                                            element element_artist
   <int> <chr>                                            <chr>   <chr>         
 1     1 "It's strange to think the songs we used to sin… Verse 1 Taylor Swift  
 2     2 "The smiles, the flowers, everything is gone"    Verse 1 Taylor Swift  
 3     3 "Yesterday I found out about you"                Verse 1 Taylor Swift  
 4     4 "Even now just looking at you: feels wrong"      Verse 1 Taylor Swift  
 5     5 "You say that you'd take it all back, given one… Pre-Ch… Taylor Swift  
 6     6 "It was a moment of weakness and you said, \"Ye… Pre-Ch… Taylor Swift  
 7     7 "You should've said, \"No\""                     Chorus  Taylor Swift  
 8     8 "You should've gone home"                        Chorus  Taylor Swift  
 9     9 "You should've thought twice 'fore you let it a… Chorus  Taylor Swift  
10    10 "You should've known that word, 'bout what you … Chorus  Taylor Swift  
# â„ą 34 more rows

[[10]]
# A tibble: 38 Ă— 4
    line lyric                                            element element_artist
   <int> <chr>                                            <chr>   <chr>         
 1     1 "She said, I was seven and you were nine"        Verse 1 Taylor Swift  
 2     2 "I looked at you like the stars that shined"     Verse 1 Taylor Swift  
 3     3 "In the sky, the pretty lights"                  Verse 1 Taylor Swift  
 4     4 "And our daddies used to joke about the two of … Verse 1 Taylor Swift  
 5     5 "Growing up and falling in love and our mamas s… Verse 1 Taylor Swift  
 6     6 "And rolled their eyes and said, \"Oh my, my, m… Verse 1 Taylor Swift  
 7     7 "Take me back to the house in the backyard tree" Chorus… Taylor Swift  
 8     8 "Said you'd beat me up, you were bigger than me" Chorus… Taylor Swift  
 9     9 "You never did, you never did"                   Chorus… Taylor Swift  
10    10 "Take me back when our world was one block wide" Chorus… Taylor Swift  
# â„ą 28 more rows

[[11]]
# A tibble: 51 Ă— 4
    line lyric                                            element element_artist
   <int> <chr>                                            <chr>   <chr>         
 1     1 "I was ridin' shotgun with my hair undone"       Verse 1 Taylor Swift  
 2     2 "In the front seat of his car"                   Verse 1 Taylor Swift  
 3     3 "He's got a one-hand feel on the steering wheel" Verse 1 Taylor Swift  
 4     4 "The other on my heart"                          Verse 1 Taylor Swift  
 5     5 "I look around, turn the radio down"             Verse 1 Taylor Swift  
 6     6 "He says, \"Baby, is something wrong?\""         Verse 1 Taylor Swift  
 7     7 "I say, \"Nothin', I was just thinkin'"          Verse 1 Taylor Swift  
 8     8 "How we don't have a song\""                     Verse 1 Taylor Swift  
 9     9 "And he says"                                    Verse 1 Taylor Swift  
10    10 "Our song is the slamming screen door"           Chorus  Taylor Swift  
# â„ą 41 more rows

[[12]]
# A tibble: 43 Ă— 4
    line lyric                                         element    element_artist
   <int> <chr>                                         <chr>      <chr>         
 1     1 Friday night beneath the stars                Verse 1    Taylor Swift  
 2     2 In a field behind your yard                   Verse 1    Taylor Swift  
 3     3 You and I are painting pictures in the sky    Verse 1    Taylor Swift  
 4     4 And sometimes we don't say a thing            Verse 1    Taylor Swift  
 5     5 Just listen to the crickets sing              Verse 1    Taylor Swift  
 6     6 Everything I need is right here by my side    Verse 1    Taylor Swift  
 7     7 And I know everything about you               Pre-Chorus Taylor Swift  
 8     8 I don't wanna live without you                Pre-Chorus Taylor Swift  
 9     9 I'm only up when you're not down              Chorus     Taylor Swift  
10    10 Don't wanna fly if you're still on the ground Chorus     Taylor Swift  
# â„ą 33 more rows

[[13]]
# A tibble: 48 Ă— 4
    line lyric                                            element element_artist
   <int> <chr>                                            <chr>   <chr>         
 1     1 She can't see the way your eyes                  Verse 1 Taylor Swift  
 2     2 Light up when you smile                          Verse 1 Taylor Swift  
 3     3 She'll never notice how you stop and stare       Verse 1 Taylor Swift  
 4     4 Whenever she walks by                            Verse 1 Taylor Swift  
 5     5 And you can't see me wanting you the way you wa… Pre-Ch… Taylor Swift  
 6     6 But you are everything to me                     Pre-Ch… Taylor Swift  
 7     7 And I just wanna show you                        Chorus  Taylor Swift  
 8     8 She don't even know you                          Chorus  Taylor Swift  
 9     9 She's never gonna love you like I want to        Chorus  Taylor Swift  
10    10 And you just see right through me                Chorus  Taylor Swift  
# â„ą 38 more rows

[[14]]
# A tibble: 24 Ă— 4
    line lyric                                            element element_artist
   <int> <chr>                                            <chr>   <chr>         
 1     1 Why would you wanna break a perfectly good hear… Chorus  Taylor Swift  
 2     2 Why would you wanna take our love and tear it a… Chorus  Taylor Swift  
 3     3 Why would you wanna make the very first scar?    Chorus  Taylor Swift  
 4     4 Why would you wanna break a perfectly good hear… Chorus  Taylor Swift  
 5     5 Maybe I should've seen the signs                 Verse   Taylor Swift  
 6     6 Should've read the writing on the wall           Verse   Taylor Swift  
 7     7 And realized by the distance in your eyes that … Verse   Taylor Swift  
 8     8 No matter what you say, I still can't believe    Verse   Taylor Swift  
 9     9 That you would walk away                         Verse   Taylor Swift  
10    10 It don't make sense to me, but                   Verse   Taylor Swift  
# â„ą 14 more rows

[[15]]
# A tibble: 44 Ă— 4
    line lyric                             element      element_artist
   <int> <chr>                             <chr>        <chr>         
 1     1 Drew looks at me                  Verse 1      Taylor Swift  
 2     2 I fake a smile so he won't see    Verse 1      Taylor Swift  
 3     3 What I want and I need            Verse 1      Taylor Swift  
 4     4 And everything that we should be  Verse 1      Taylor Swift  
 5     5 I'll bet she's beautiful          Pre-Chorus 1 Taylor Swift  
 6     6 That girl he talks about          Pre-Chorus 1 Taylor Swift  
 7     7 And she's got everything          Pre-Chorus 1 Taylor Swift  
 8     8 That I have to live without       Pre-Chorus 1 Taylor Swift  
 9     9 Drew talks to me                  Verse 2      Taylor Swift  
10    10 I laugh 'cause it's just so funny Verse 2      Taylor Swift  
# â„ą 34 more rows

[[16]]
# A tibble: 39 Ă— 4
    line lyric                                            element element_artist
   <int> <chr>                                            <chr>   <chr>         
 1     1 There's something 'bout the way                  Verse 1 Taylor Swift  
 2     2 The street looks when it's just rained           Verse 1 Taylor Swift  
 3     3 There's a glow off the pavement, you walk me to… Verse 1 Taylor Swift  
 4     4 And you know I wanna ask you to dance right the… Verse 1 Taylor Swift  
 5     5 In the middle of the parking lot, yeah           Verse 1 Taylor Swift  
 6     6 Oh, yeah                                         Verse 1 Taylor Swift  
 7     7 We're driving down the road, I wonder if you kn… Verse 2 Taylor Swift  
 8     8 I'm trying so hard not to get caught up now      Verse 2 Taylor Swift  
 9     9 But you're just so cool, run your hands through… Verse 2 Taylor Swift  
10    10 Absentmindedly making me want you                Verse 2 Taylor Swift  
# â„ą 29 more rows

[[17]]
# A tibble: 50 Ă— 4
    line lyric                                            element element_artist
   <int> <chr>                                            <chr>   <chr>         
 1     1 "You take a deep breath and you walk through th… Verse 1 Taylor Swift  
 2     2 "It's the mornin' of your very first day"        Verse 1 Taylor Swift  
 3     3 "You say hi to your friends you ain't seen in a… Verse 1 Taylor Swift  
 4     4 "Try and stay out of everybody's way"            Verse 1 Taylor Swift  
 5     5 "It's your freshman year and you're gonna be he… Verse 1 Taylor Swift  
 6     6 "For the next four years in this town"           Verse 1 Taylor Swift  
 7     7 "Hopin' one of those senior boys will wink at y… Verse 1 Taylor Swift  
 8     8 "\"You know, I haven't seen you around before\"" Verse 1 Taylor Swift  
 9     9 "'Cause when you're fifteen and somebody tells … Chorus  Taylor Swift  
10    10 "You're gonna believe them"                      Chorus  Taylor Swift  
# â„ą 40 more rows

[[18]]
# A tibble: 48 Ă— 4
    line lyric                                            element element_artist
   <int> <chr>                                            <chr>   <chr>         
 1     1 "We were both young when I first saw you"        Verse 1 Taylor Swift  
 2     2 "I close my eyes, and the flashback starts"      Verse 1 Taylor Swift  
 3     3 "I'm standing there"                             Verse 1 Taylor Swift  
 4     4 "On a balcony in summer air"                     Verse 1 Taylor Swift  
 5     5 "See the lights, see the party, the ball gowns"  Verse 1 Taylor Swift  
 6     6 "See you make your way through the crowd"        Verse 1 Taylor Swift  
 7     7 "And say, \"Hello\""                             Verse 1 Taylor Swift  
 8     8 "Little did I know"                              Verse 1 Taylor Swift  
 9     9 "That you were Romeo, you were throwing pebbles" Pre-Ch… Taylor Swift  
10    10 "And my daddy said, \"Stay away from Juliet\""   Pre-Ch… Taylor Swift  
# â„ą 38 more rows

[[19]]
# A tibble: 50 Ă— 4
    line lyric                                            element element_artist
   <int> <chr>                                            <chr>   <chr>         
 1     1 Mmm-mm, mm-mm                                    Intro   Taylor Swift  
 2     2 Mmm-mm, mm-mm                                    Intro   Taylor Swift  
 3     3 Mmm-mm, mm-mm, yeah                              Intro   Taylor Swift  
 4     4 Hey Stephen, I know looks can be deceiving       Verse 1 Taylor Swift  
 5     5 But I know I saw a light in you                  Verse 1 Taylor Swift  
 6     6 And as we walked we were talking                 Verse 1 Taylor Swift  
 7     7 I didn't say half the things I wanted to         Verse 1 Taylor Swift  
 8     8 Of all the girls tossing rocks at your window    Verse 1 Taylor Swift  
 9     9 I'll be the one waiting there even when it's co… Verse 1 Taylor Swift  
10    10 Hey Stephen, boy, you might have me believing    Verse 1 Taylor Swift  
# â„ą 40 more rows

[[20]]
# A tibble: 39 Ă— 4
    line lyric                                            element element_artist
   <int> <chr>                                            <chr>   <chr>         
 1     1 Say you're sorry, that face of an angel          Verse 1 Taylor Swift  
 2     2 Comes out just when you need it to               Verse 1 Taylor Swift  
 3     3 As I paced back and forth all this time          Verse 1 Taylor Swift  
 4     4 'Cause I honestly believed in you                Verse 1 Taylor Swift  
 5     5 Holdin' on, the days drag on                     Verse 1 Taylor Swift  
 6     6 Stupid girl, I shoulda known, I shoulda known    Verse 1 Taylor Swift  
 7     7 That I'm not a princess, this ain't a fairytale  Chorus  Taylor Swift  
 8     8 I'm not the one you'll sweep off her feet, lead… Chorus  Taylor Swift  
 9     9 This ain't Hollywood, this is a small town       Chorus  Taylor Swift  
10    10 I was a dreamer before you went and let me down  Chorus  Taylor Swift  
# â„ą 29 more rows

[[21]]
# A tibble: 49 Ă— 4
    line lyric                                            element element_artist
   <int> <chr>                                            <chr>   <chr>         
 1     1 You're on the phone with your girlfriend, she's… Verse 1 Taylor Swift  
 2     2 She's going off about something that you said    Verse 1 Taylor Swift  
 3     3 'Cause she doesn't get your humor like I do      Verse 1 Taylor Swift  
 4     4 I'm in the room, it's a typical Tuesday night    Verse 1 Taylor Swift  
 5     5 I'm listening to the kind of music she doesn't … Verse 1 Taylor Swift  
 6     6 And she'll never know your story like I do       Verse 1 Taylor Swift  
 7     7 But she wears short skirts, I wear T-shirts      Pre-Ch… Taylor Swift  
 8     8 She's Cheer Captain and I'm on the bleachers     Pre-Ch… Taylor Swift  
 9     9 Dreaming about the day when you wake up and find Pre-Ch… Taylor Swift  
10    10 That what you're looking for has been here the … Pre-Ch… Taylor Swift  
# â„ą 39 more rows

[[22]]
# A tibble: 35 Ă— 4
    line lyric                                            element element_artist
   <int> <chr>                                            <chr>   <chr>         
 1     1 I see your face in my mind as I drive away       Verse 1 Taylor Swift  
 2     2 'Cause none of us thought it was gonna end that… Verse 1 Taylor Swift  
 3     3 People are people and sometimes we change our m… Verse 1 Taylor Swift  
 4     4 But it's killing me to see you go after all thi… Verse 1 Taylor Swift  
 5     5 Music starts playing like the end of a sad movie Verse 2 Taylor Swift  
 6     6 It's the kind of ending you don't really wanna … Verse 2 Taylor Swift  
 7     7 'Cause it's tragedy and it'll only bring you do… Verse 2 Taylor Swift  
 8     8 Now I don't know what to be without you around   Verse 2 Taylor Swift  
 9     9 And we know it's never simple, never easy        Pre-Ch… Taylor Swift  
10    10 Never a clean break, no one here to save me      Pre-Ch… Taylor Swift  
# â„ą 25 more rows

[[23]]
# A tibble: 45 Ă— 4
    line lyric                                            element element_artist
   <int> <chr>                                            <chr>   <chr>         
 1     1 I took a chance, I took a shot                   Verse 1 Taylor Swift  
 2     2 And you might think I'm bulletproof, but I'm not Verse 1 Taylor Swift  
 3     3 You took a swing, I took it hard                 Verse 1 Taylor Swift  
 4     4 And down here from the ground I see who you are  Verse 1 Taylor Swift  
 5     5 I'm sick and tired of your attitude              Chorus  Taylor Swift  
 6     6 I'm feeling like I don't know you                Chorus  Taylor Swift  
 7     7 You tell me that you love me, then cut me down   Chorus  Taylor Swift  
 8     8 And I need you like a heartbeat                  Chorus  Taylor Swift  
 9     9 But you know you got a mean streak               Chorus  Taylor Swift  
10    10 That makes me run for cover when you're around   Chorus  Taylor Swift  
# â„ą 35 more rows

[[24]]
# A tibble: 37 Ă— 4
    line lyric                                            element element_artist
   <int> <chr>                                            <chr>   <chr>         
 1     1 All this time I was wasting hoping you would co… Verse 1 Taylor Swift  
 2     2 I've been giving out chances every time and all… Verse 1 Taylor Swift  
 3     3 And it's taken me this long, baby, but I've fig… Verse 1 Taylor Swift  
 4     4 And you're thinking we'll be fine again, but no… Verse 1 Taylor Swift  
 5     5 You don't have to call anymore                   Chorus  Taylor Swift  
 6     6 I won't pick up the phone                        Chorus  Taylor Swift  
 7     7 This is the last straw                           Chorus  Taylor Swift  
 8     8 Don't wanna hurt anymore                         Chorus  Taylor Swift  
 9     9 And you can tell me that you're sorry            Chorus  Taylor Swift  
10    10 But I don't believe you, baby, like I did before Chorus  Taylor Swift  
# â„ą 27 more rows

[[25]]
# A tibble: 48 Ă— 4
    line lyric                                            element element_artist
   <int> <chr>                                            <chr>   <chr>         
 1     1 He is sensible and so incredible                 Verse 1 Taylor Swift  
 2     2 And all my single friends are jealous            Verse 1 Taylor Swift  
 3     3 He says everything I need to hear and it's like  Verse 1 Taylor Swift  
 4     4 I couldn't ask for anything better               Verse 1 Taylor Swift  
 5     5 He opens up my door and I get into his car       Verse 1 Taylor Swift  
 6     6 And he says you look beautiful tonight           Verse 1 Taylor Swift  
 7     7 And I feel perfectly fine                        Verse 1 Taylor Swift  
 8     8 But I miss screaming and fighting and kissing i… Chorus  Taylor Swift  
 9     9 And it's 2AM and I'm cursing your name           Chorus  Taylor Swift  
10    10 You're so in love that you act insane            Chorus  Taylor Swift  
# â„ą 38 more rows

[[26]]
# A tibble: 53 Ă— 4
    line lyric                                            element element_artist
   <int> <chr>                                            <chr>   <chr>         
 1     1 Once upon a time                                 Verse 1 Taylor Swift  
 2     2 I believe it was a Tuesday when I caught your e… Verse 1 Taylor Swift  
 3     3 And we caught onto something                     Verse 1 Taylor Swift  
 4     4 I hold onto the night                            Verse 1 Taylor Swift  
 5     5 You looked me in the eye and told me you loved … Verse 1 Taylor Swift  
 6     6 Were you just kidding?                           Verse 1 Taylor Swift  
 7     7 'Cause it seems to me                            Verse 1 Taylor Swift  
 8     8 This thing is breaking down, we almost never sp… Verse 1 Taylor Swift  
 9     9 I don't feel welcome anymore                     Verse 1 Taylor Swift  
10    10 Baby, what happened? Please tell me              Verse 1 Taylor Swift  
# â„ą 43 more rows

[[27]]
# A tibble: 34 Ă— 4
    line lyric                                            element element_artist
   <int> <chr>                                            <chr>   <chr>         
 1     1 I'm five years old, it's getting cold, I've got… Verse 1 Taylor Swift  
 2     2 I hear your laugh and look up smiling at you, I… Verse 1 Taylor Swift  
 3     3 Past the pumpkin patch and the tractor rides     Verse 1 Taylor Swift  
 4     4 Look now, the sky is gold                        Verse 1 Taylor Swift  
 5     5 I hug your legs and fall asleep on the way home  Verse 1 Taylor Swift  
 6     6 I don't know why all the trees change in the fa… Chorus  Taylor Swift  
 7     7 But I know you're not scared of anything at all  Chorus  Taylor Swift  
 8     8 Don't know if Snow White's house is near or far… Chorus  Taylor Swift  
 9     9 But I know I had the best day with you today     Chorus  Taylor Swift  
10    10 I'm thirteen now                                 Verse 2 Taylor Swift  
# â„ą 24 more rows

[[28]]
# A tibble: 37 Ă— 4
    line lyric                                            element element_artist
   <int> <chr>                                            <chr>   <chr>         
 1     1 And it's a sad picture, the final blow hits you  Verse 1 Taylor Swift  
 2     2 Somebody else gets what you wanted again and     Verse 1 Taylor Swift  
 3     3 You know it's all the same, another time and pl… Verse 1 Taylor Swift  
 4     4 Repeating history and you're getting sick of it  Verse 1 Taylor Swift  
 5     5 But I believe in whatever you do                 Verse 1 Taylor Swift  
 6     6 And I'll do anything to see it through           Verse 1 Taylor Swift  
 7     7 Because these things will change                 Chorus  Taylor Swift  
 8     8 Can you feel it now?                             Chorus  Taylor Swift  
 9     9 These walls that they put up to hold us back wi… Chorus  Taylor Swift  
10    10 This revolution, the time will come              Chorus  Taylor Swift  
# â„ą 27 more rows

[[29]]
# A tibble: 58 Ă— 4
    line lyric                                        element    element_artist
   <int> <chr>                                        <chr>      <chr>         
 1     1 I like the way you sound in the morning      Verse 1    Taylor Swift  
 2     2 We're on the phone and without a warning     Verse 1    Taylor Swift  
 3     3 I realize your laugh is the best sound       Verse 1    Taylor Swift  
 4     4 I have ever heard                            Verse 1    Taylor Swift  
 5     5 I like the way I can't keep my focus         Verse 1    Taylor Swift  
 6     6 I watch you talk, you didn't notice          Verse 1    Taylor Swift  
 7     7 I hear the words but all I can think is      Verse 1    Taylor Swift  
 8     8 We should be together                        Verse 1    Taylor Swift  
 9     9 Every time you smile, I smile                Pre-Chorus Taylor Swift  
10    10 And every time you shine, I'll shine for you Pre-Chorus Taylor Swift  
# â„ą 48 more rows

[[30]]
# A tibble: 43 Ă— 4
    line lyric                                            element element_artist
   <int> <chr>                                            <chr>   <chr>         
 1     1 Untouchable like a distant diamond sky           Verse 1 Taylor Swift  
 2     2 I'm reaching out and I just can't tell you why   Verse 1 Taylor Swift  
 3     3 I'm caught up in you, I'm caught up in you       Verse 1 Taylor Swift  
 4     4 Untouchable, burning brighter than the sun       Pre-Ch… Taylor Swift  
 5     5 And when you're close, I feel like coming undone Pre-Ch… Taylor Swift  
 6     6 In the middle of the night when I'm in this dre… Chorus  Taylor Swift  
 7     7 It's like a million little stars spelling out y… Chorus  Taylor Swift  
 8     8 You got to come on, come on, say that we'll be … Chorus  Taylor Swift  
 9     9 Come on, come on, little taste of heaven         Chorus  Taylor Swift  
10    10 It's half full and I won't wait here all day     Verse 2 Taylor Swift  
# â„ą 33 more rows

[[31]]
# A tibble: 55 Ă— 4
    line lyric                                            element element_artist
   <int> <chr>                                            <chr>   <chr>         
 1     1 Once upon a time                                 Verse 1 Taylor Swift  
 2     2 I believe it was a Tuesday when I caught your e… Verse 1 Taylor Swift  
 3     3 We caught onto something                         Verse 1 Taylor Swift  
 4     4 I hold onto the night                            Verse 1 Taylor Swift  
 5     5 You looked me in the eye and told me you loved … Verse 1 Taylor Swift  
 6     6 Were you just kidding?                           Verse 1 Taylor Swift  
 7     7 'Cause it seems to me                            Verse 1 Taylor Swift  
 8     8 This thing is breaking down, we almost never sp… Verse 1 Taylor Swift  
 9     9 I don't feel welcome anymore                     Verse 1 Taylor Swift  
10    10 Baby, what happened? Please tell me              Verse 1 Taylor Swift  
# â„ą 45 more rows

[[32]]
# A tibble: 30 Ă— 4
    line lyric                                           element  element_artist
   <int> <chr>                                           <chr>    <chr>         
 1     1 I could go back to every laugh                  Verse 1  Taylor Swift  
 2     2 But I don't wanna go there anymore              Verse 1  Taylor Swift  
 3     3 And I know all the steps up to your door        Verse 1  Taylor Swift  
 4     4 But I don't wanna go there anymore              Verse 1  Taylor Swift  
 5     5 Talk to the wind, talk to the sky               Pre-Cho… Taylor Swift  
 6     6 Talk to the man with the reasons why            Pre-Cho… Taylor Swift  
 7     7 And let me know what you find                   Pre-Cho… Taylor Swift  
 8     8 I'll leave my window open                       Chorus   Taylor Swift  
 9     9 'Cause I'm too tired at night to call your name Chorus   Taylor Swift  
10    10 Just know I'm right here hoping                 Chorus   Taylor Swift  
# â„ą 20 more rows

[[33]]
# A tibble: 36 Ă— 4
    line lyric                                            element element_artist
   <int> <chr>                                            <chr>   <chr>         
 1     1 This is wrong but I can't help but feel like     Verse 1 Taylor Swift  
 2     2 There ain't nothing more right babe              Verse 1 Taylor Swift  
 3     3 Misty morning comes again and I can't            Verse 1 Taylor Swift  
 4     4 Help but wish I could see your face              Verse 1 Taylor Swift  
 5     5 And I knew from the first note played            Verse 1 Taylor Swift  
 6     6 I'd be breaking all my rules to see you          Verse 1 Taylor Swift  
 7     7 You smile that beautiful smile and all the girl… Verse 1 Taylor Swift  
 8     8 Scream your name                                 Verse 1 Taylor Swift  
 9     9 So dim that spotlight, tell me things like       Chorus  Taylor Swift  
10    10 I can't take my eyes off of you                  Chorus  Taylor Swift  
# â„ą 26 more rows

[[34]]
# A tibble: 50 Ă— 4
    line lyric                                            element element_artist
   <int> <chr>                                            <chr>   <chr>         
 1     1 "In the heat of the fight I walked away"         Verse 1 Taylor Swift  
 2     2 "Ignoring words that you were saying"            Verse 1 Taylor Swift  
 3     3 "Trying to make me stay"                         Verse 1 Taylor Swift  
 4     4 "I said, \"This time I've had enough\""          Verse 1 Taylor Swift  
 5     5 "And you've called a hundred times"              Verse 1 Taylor Swift  
 6     6 "But I'm not picking up"                         Verse 1 Taylor Swift  
 7     7 "'Cause I'm so mad I might tell you that it's o… Pre-Ch… Taylor Swift  
 8     8 "But if you look a little closer"                Pre-Ch… Taylor Swift  
 9     9 "I said, \"Leave,\" but all I really want is yo… Chorus  Taylor Swift  
10    10 "To stand outside my window throwing pebbles"    Chorus  Taylor Swift  
# â„ą 40 more rows

[[35]]
# A tibble: 39 Ă— 4
    line lyric                                            element element_artist
   <int> <chr>                                            <chr>   <chr>         
 1     1 There's something 'bout the way                  Verse 1 Taylor Swift  
 2     2 The street looks when it's just rained           Verse 1 Taylor Swift  
 3     3 There's a glow off the pavement, you walk me to… Verse 1 Taylor Swift  
 4     4 And you know I wanna ask you to dance right the… Verse 1 Taylor Swift  
 5     5 In the middle of the parking lot, yeah           Verse 1 Taylor Swift  
 6     6 Oh, yeah                                         Verse 1 Taylor Swift  
 7     7 We're driving down the road, I wonder if you kn… Verse 2 Taylor Swift  
 8     8 I'm trying so hard not to get caught up now      Verse 2 Taylor Swift  
 9     9 But you're just so cool, run your hands through… Verse 2 Taylor Swift  
10    10 Absent-mindedly making me want you               Verse 2 Taylor Swift  
# â„ą 29 more rows

[[36]]
# A tibble: 50 Ă— 4
    line lyric                                            element element_artist
   <int> <chr>                                            <chr>   <chr>         
 1     1 "You take a deep breath and you walk through th… Verse 1 Taylor Swift  
 2     2 "It's the mornin' of your very first day"        Verse 1 Taylor Swift  
 3     3 "You say hi to your friends you ain't seen in a… Verse 1 Taylor Swift  
 4     4 "Try and stay out of everybody's way"            Verse 1 Taylor Swift  
 5     5 "It's your freshman year and you're gonna be he… Verse 1 Taylor Swift  
 6     6 "For the next four years in this town"           Verse 1 Taylor Swift  
 7     7 "Hopin' one of those senior boys will wink at y… Verse 1 Taylor Swift  
 8     8 "\"You know, I haven't seen you around before\"" Verse 1 Taylor Swift  
 9     9 "'Cause when you're fifteen and somebody tells … Chorus  Taylor Swift  
10    10 "You're gonna believe them"                      Chorus  Taylor Swift  
# â„ą 40 more rows

[[37]]
# A tibble: 48 Ă— 4
    line lyric                                            element element_artist
   <int> <chr>                                            <chr>   <chr>         
 1     1 "We were both young when I first saw you"        Verse 1 Taylor Swift  
 2     2 "I close my eyes and the flashback starts"       Verse 1 Taylor Swift  
 3     3 "I'm standing there"                             Verse 1 Taylor Swift  
 4     4 "On a balcony in summer air"                     Verse 1 Taylor Swift  
 5     5 "See the lights, see the party, the ball gowns"  Verse 1 Taylor Swift  
 6     6 "See you make your way through the crowd"        Verse 1 Taylor Swift  
 7     7 "And say, \"Hello\""                             Verse 1 Taylor Swift  
 8     8 "Little did I know"                              Verse 1 Taylor Swift  
 9     9 "That you were Romeo, you were throwing pebbles" Pre-Ch… Taylor Swift  
10    10 "And my daddy said, \"Stay away from Juliet\""   Pre-Ch… Taylor Swift  
# â„ą 38 more rows

[[38]]
# A tibble: 54 Ă— 4
    line lyric                                            element element_artist
   <int> <chr>                                            <chr>   <chr>         
 1     1 Mmm-mm, mm-mm                                    Intro   Taylor Swift  
 2     2 Mmm-mm, mm-mm                                    Intro   Taylor Swift  
 3     3 Mmm-mm, mm-mm, yeah                              Intro   Taylor Swift  
 4     4 Hey Stephen, I know looks can be deceiving       Verse 1 Taylor Swift  
 5     5 But I know I saw a light in you                  Verse 1 Taylor Swift  
 6     6 And as we walked we were talking                 Verse 1 Taylor Swift  
 7     7 I didn't say half the things I wanted to         Verse 1 Taylor Swift  
 8     8 Of all the girls tossing rocks at your window    Verse 1 Taylor Swift  
 9     9 I'll be the one waiting there even when it's co… Verse 1 Taylor Swift  
10    10 Hey Stephen, boy, you might have me believing    Verse 1 Taylor Swift  
# â„ą 44 more rows

[[39]]
# A tibble: 39 Ă— 4
    line lyric                                            element element_artist
   <int> <chr>                                            <chr>   <chr>         
 1     1 Say you're sorry, that face of an angel          Verse 1 Taylor Swift  
 2     2 Comes out just when you need it to               Verse 1 Taylor Swift  
 3     3 As I paced back and forth all this time          Verse 1 Taylor Swift  
 4     4 'Cause I honestly believed in you                Verse 1 Taylor Swift  
 5     5 Holdin' on, the days drag on                     Verse 1 Taylor Swift  
 6     6 Stupid girl, I shoulda known, I shoulda known    Verse 1 Taylor Swift  
 7     7 That I'm not a princess, this ain't a fairytale  Chorus  Taylor Swift  
 8     8 I'm not the one you'll sweep off her feet, lead… Chorus  Taylor Swift  
 9     9 This ain't Hollywood, this is a small town       Chorus  Taylor Swift  
10    10 I was a dreamer before you went and let me down  Chorus  Taylor Swift  
# â„ą 29 more rows

[[40]]
# A tibble: 49 Ă— 4
    line lyric                                            element element_artist
   <int> <chr>                                            <chr>   <chr>         
 1     1 You're on the phone with your girlfriend, she's… Verse 1 Taylor Swift  
 2     2 She's going off about something that you said    Verse 1 Taylor Swift  
 3     3 'Cause she doesn't get your humor like I do      Verse 1 Taylor Swift  
 4     4 I'm in my room, it's a typical Tuesday night     Verse 1 Taylor Swift  
 5     5 I'm listening to the kind of music she doesn't … Verse 1 Taylor Swift  
 6     6 And she'll never know your story like I do       Verse 1 Taylor Swift  
 7     7 'Cause she wears short skirts, I wear T-shirts   Pre-Ch… Taylor Swift  
 8     8 She's Cheer Captain and I'm on the bleachers     Pre-Ch… Taylor Swift  
 9     9 Dreaming 'bout the day when you wake up and find Pre-Ch… Taylor Swift  
10    10 That what you're looking for has been here the … Pre-Ch… Taylor Swift  
# â„ą 39 more rows

[[41]]
# A tibble: 38 Ă— 4
    line lyric                                            element element_artist
   <int> <chr>                                            <chr>   <chr>         
 1     1 I see your face in my mind as I drive away       Verse 1 Taylor Swift  
 2     2 'Cause none of us thought it was gonna end that… Verse 1 Taylor Swift  
 3     3 People are people and sometimes we change our m… Verse 1 Taylor Swift  
 4     4 But it's killing me to see you go after all thi… Verse 1 Taylor Swift  
 5     5 Mm-mm, mm-mm-mm-mm                               Break   Taylor Swift  
 6     6 Mm-mm, mm-mm-mm-mm                               Break   Taylor Swift  
 7     7 The music starts playing like the end of a sad … Verse 2 Taylor Swift  
 8     8 It's the kind of ending you don't really wanna … Verse 2 Taylor Swift  
 9     9 'Cause it's tragedy and it'll only bring you do… Verse 2 Taylor Swift  
10    10 Now I don't know what to be without you around   Verse 2 Taylor Swift  
# â„ą 28 more rows

[[42]]
# A tibble: 46 Ă— 4
    line lyric                                            element element_artist
   <int> <chr>                                            <chr>   <chr>         
 1     1 I took a chance, I took a shot                   Verse 1 Taylor Swift  
 2     2 And you might think I'm bulletproof, but I'm not Verse 1 Taylor Swift  
 3     3 You took a swing, I took it hard                 Verse 1 Taylor Swift  
 4     4 And down here from the ground, I see who you are Verse 1 Taylor Swift  
 5     5 I'm sick and tired of your attitude              Chorus  Taylor Swift  
 6     6 I'm feeling like I don't know you                Chorus  Taylor Swift  
 7     7 You tell me that you love me, then cut me down   Chorus  Taylor Swift  
 8     8 And I need you like a heartbeat                  Chorus  Taylor Swift  
 9     9 But you know you got a mean streak               Chorus  Taylor Swift  
10    10 Makes me run for cover when you're around        Chorus  Taylor Swift  
# â„ą 36 more rows

[[43]]
# A tibble: 44 Ă— 4
    line lyric                                            element element_artist
   <int> <chr>                                            <chr>   <chr>         
 1     1 All this time I was wasting hoping you would co… Verse 1 Taylor Swift  
 2     2 I've been giving out chances every time and all… Verse 1 Taylor Swift  
 3     3 And it's taken me this long, baby, but I've fig… Verse 1 Taylor Swift  
 4     4 And you're thinking we'll be fine again, but no… Verse 1 Taylor Swift  
 5     5 You don't have to call anymore                   Chorus  Taylor Swift  
 6     6 I won't pick up the phone                        Chorus  Taylor Swift  
 7     7 This is the last straw                           Chorus  Taylor Swift  
 8     8 Don't wanna hurt anymore                         Chorus  Taylor Swift  
 9     9 And you can tell me that you're sorry            Chorus  Taylor Swift  
10    10 But I don't believe you, baby, like I did before Chorus  Taylor Swift  
# â„ą 34 more rows

[[44]]
# A tibble: 50 Ă— 4
    line lyric                                            element element_artist
   <int> <chr>                                            <chr>   <chr>         
 1     1 "He is sensible and so incredible"               Verse 1 Taylor Swift  
 2     2 "And all my single friends are jealous"          Verse 1 Taylor Swift  
 3     3 "He says everything I need to hear and it's lik… Verse 1 Taylor Swift  
 4     4 "I couldn't ask for anything better"             Verse 1 Taylor Swift  
 5     5 "He opens up my door and I get into his car"     Verse 1 Taylor Swift  
 6     6 "And he says, \"You look beautiful tonight\""    Verse 1 Taylor Swift  
 7     7 "And I feel perfectly fine"                      Verse 1 Taylor Swift  
 8     8 "But I miss screaming and fighting and kissing … Chorus  Taylor Swift  
 9     9 "And it's 2AM and I'm cursing your name"         Chorus  Taylor Swift  
10    10 "You're so in love that you act insane"          Chorus  Taylor Swift  
# â„ą 40 more rows

[[45]]
# A tibble: 53 Ă— 4
    line lyric                                            element element_artist
   <int> <chr>                                            <chr>   <chr>         
 1     1 Once upon a time                                 Verse 1 Taylor Swift  
 2     2 I believe it was a Tuesday when I caught your e… Verse 1 Taylor Swift  
 3     3 And we caught onto something                     Verse 1 Taylor Swift  
 4     4 I hold onto the night                            Verse 1 Taylor Swift  
 5     5 You looked me in the eye and told me you loved … Verse 1 Taylor Swift  
 6     6 Were you just kidding?                           Verse 1 Taylor Swift  
 7     7 'Cause it seems to me                            Verse 1 Taylor Swift  
 8     8 This thing is breaking down, we almost never sp… Verse 1 Taylor Swift  
 9     9 I don't feel welcome anymore                     Verse 1 Taylor Swift  
10    10 Baby, what happened? Please tell me              Verse 1 Taylor Swift  
# â„ą 43 more rows

[[46]]
# A tibble: 34 Ă— 4
    line lyric                                            element element_artist
   <int> <chr>                                            <chr>   <chr>         
 1     1 I'm five years old, it's getting cold, I've got… Verse 1 Taylor Swift  
 2     2 I hear your laugh and look up smiling at you, I… Verse 1 Taylor Swift  
 3     3 Past the pumpkin patch and the tractor rides     Verse 1 Taylor Swift  
 4     4 Look now, the sky is gold                        Verse 1 Taylor Swift  
 5     5 I hug your legs and fall asleep on the way home  Verse 1 Taylor Swift  
 6     6 I don't know why all the trees change in the fa… Chorus  Taylor Swift  
 7     7 But I know you're not scared of anything at all  Chorus  Taylor Swift  
 8     8 Don't know if Snow White's house is near or far… Chorus  Taylor Swift  
 9     9 But I know I had the best day with you today     Chorus  Taylor Swift  
10    10 I'm thirteen now                                 Verse 2 Taylor Swift  
# â„ą 24 more rows

[[47]]
# A tibble: 37 Ă— 4
    line lyric                                            element element_artist
   <int> <chr>                                            <chr>   <chr>         
 1     1 Well, it's a sad picture, the final blow hits y… Verse 1 Taylor Swift  
 2     2 Somebody else gets what you wanted again and     Verse 1 Taylor Swift  
 3     3 You know it's all the same, another time and pl… Verse 1 Taylor Swift  
 4     4 Repeating history and you're getting sick of it  Verse 1 Taylor Swift  
 5     5 But I believe in whatever you do                 Verse 1 Taylor Swift  
 6     6 And I'll do anything to see it through           Verse 1 Taylor Swift  
 7     7 Because these things will change                 Chorus  Taylor Swift  
 8     8 Can you feel it now?                             Chorus  Taylor Swift  
 9     9 These walls that they put up to hold us back wi… Chorus  Taylor Swift  
10    10 This revolution, the time will come              Chorus  Taylor Swift  
# â„ą 27 more rows

[[48]]
# A tibble: 58 Ă— 4
    line lyric                                        element    element_artist
   <int> <chr>                                        <chr>      <chr>         
 1     1 I like the way you sound in the morning      Verse 1    Taylor Swift  
 2     2 We're on the phone and without a warning     Verse 1    Taylor Swift  
 3     3 I realize your laugh is the best sound       Verse 1    Taylor Swift  
 4     4 I have ever heard                            Verse 1    Taylor Swift  
 5     5 I like the way I can't keep my focus         Verse 1    Taylor Swift  
 6     6 I watch you talk, you didn't notice          Verse 1    Taylor Swift  
 7     7 I hear the words but all I can think is      Verse 1    Taylor Swift  
 8     8 We should be together                        Verse 1    Taylor Swift  
 9     9 Every time you smile, I smile                Pre-Chorus Taylor Swift  
10    10 And every time you shine, I'll shine for you Pre-Chorus Taylor Swift  
# â„ą 48 more rows

[[49]]
# A tibble: 45 Ă— 4
    line lyric                                            element element_artist
   <int> <chr>                                            <chr>   <chr>         
 1     1 Untouchable like a distant diamond sky           Verse 1 Taylor Swift  
 2     2 I'm reaching out and I just can't tell you why   Verse 1 Taylor Swift  
 3     3 I'm caught up in you, I'm caught up in you       Verse 1 Taylor Swift  
 4     4 Untouchable, burning brighter than the sun       Pre-Ch… Taylor Swift  
 5     5 And when you're close, I feel like coming undone Pre-Ch… Taylor Swift  
 6     6 In the middle of the night when I'm in this dre… Chorus  Taylor Swift  
 7     7 It's like a million little stars spelling out y… Chorus  Taylor Swift  
 8     8 You got to come on, come on, say that we'll be … Chorus  Taylor Swift  
 9     9 Come on, come on, little taste of heaven         Chorus  Taylor Swift  
10    10 It's half full and I won't wait here all day     Verse 2 Taylor Swift  
# â„ą 35 more rows

[[50]]
# A tibble: 58 Ă— 4
    line lyric                                            element element_artist
   <int> <chr>                                            <chr>   <chr>         
 1     1 Once upon a time                                 Verse 1 Taylor Swift  
 2     2 I believe it was a Tuesday when I caught your e… Verse 1 Taylor Swift  
 3     3 And we caught onto something                     Verse 1 Taylor Swift  
 4     4 I hold on to the night                           Verse 1 Taylor Swift  
 5     5 You looked me in the eye and told me you loved … Verse 1 Taylor Swift  
 6     6 Were you just kidding?                           Verse 1 Taylor Swift  
 7     7 'Cause it seems to me                            Verse 1 Taylor Swift  
 8     8 This thing is breaking down, we almost never sp… Verse 1 Taylor Swift  
 9     9 I don't feel welcome anymore                     Verse 1 Taylor Swift  
10    10 What happened? Please, tell me                   Verse 1 Taylor Swift  
# â„ą 48 more rows

[[51]]
# A tibble: 30 Ă— 4
    line lyric                                           element  element_artist
   <int> <chr>                                           <chr>    <chr>         
 1     1 I could go back to every laugh                  Verse 1  Taylor Swift  
 2     2 But I don't wanna go there anymore              Verse 1  Taylor Swift  
 3     3 And I know all the steps up to your door        Verse 1  Taylor Swift  
 4     4 But I don't wanna go there anymore              Verse 1  Taylor Swift  
 5     5 Talk to the wind, talk to the sky               Pre-Cho… Taylor Swift  
 6     6 Talk to the man with the reasons why            Pre-Cho… Taylor Swift  
 7     7 And let me know what you find                   Pre-Cho… Taylor Swift  
 8     8 I'll leave my window open                       Chorus   Taylor Swift  
 9     9 'Cause I'm too tired at night to call your name Chorus   Taylor Swift  
10    10 Just know I'm right here hoping                 Chorus   Taylor Swift  
# â„ą 20 more rows

[[52]]
# A tibble: 37 Ă— 4
    line lyric                                            element element_artist
   <int> <chr>                                            <chr>   <chr>         
 1     1 This is wrong but I can't help but feel like     Verse 1 Taylor Swift  
 2     2 There ain't nothing more right babe              Verse 1 Taylor Swift  
 3     3 Misty morning comes again and I can't            Verse 1 Taylor Swift  
 4     4 Help but wish I could see your face              Verse 1 Taylor Swift  
 5     5 And I knew from the first note played            Verse 1 Taylor Swift  
 6     6 I'd be breaking all my rules to see you          Verse 1 Taylor Swift  
 7     7 You smile that beautiful smile and all the girl… Verse 1 Taylor Swift  
 8     8 Scream your name                                 Verse 1 Taylor Swift  
 9     9 So dim that spotlight, tell me things like       Chorus  Taylor Swift  
10    10 I can't keep my eyes off of you                  Chorus  Taylor Swift  
# â„ą 27 more rows

[[53]]
# A tibble: 47 Ă— 4
    line lyric                                            element element_artist
   <int> <chr>                                            <chr>   <chr>         
 1     1 "In the heat of the fight I walked away"         Verse 1 Taylor Swift  
 2     2 "Ignorin' words that you were sayin'"            Verse 1 Taylor Swift  
 3     3 "Tryna make me stay"                             Verse 1 Taylor Swift  
 4     4 "I said, \"This time I've had enough\""          Verse 1 Taylor Swift  
 5     5 "And you've called a hundred times"              Verse 1 Taylor Swift  
 6     6 "But I'm not picking up"                         Verse 1 Taylor Swift  
 7     7 "'Cause I'm so mad I might tell you that it's o… Pre-Ch… Taylor Swift  
 8     8 "But if you look a little closer"                Pre-Ch… Taylor Swift  
 9     9 "I said, \"Leave,\" but all I really want is yo… Chorus  Taylor Swift  
10    10 "To stand outside my window throwin' pebbles"    Chorus  Taylor Swift  
# â„ą 37 more rows

[[54]]
# A tibble: 58 Ă— 4
    line lyric                                            element element_artist
   <int> <chr>                                            <chr>   <chr>         
 1     1 Today was a fairytale                            Verse 1 Taylor Swift  
 2     2 You were the prince                              Verse 1 Taylor Swift  
 3     3 I used to be a damsel in distress                Verse 1 Taylor Swift  
 4     4 You took me by the hand and you picked me up at… Verse 1 Taylor Swift  
 5     5 Today was a fairytale                            Verse 1 Taylor Swift  
 6     6 Today was a fairytale                            Verse 1 Taylor Swift  
 7     7 Today was a fairytale                            Verse 1 Taylor Swift  
 8     8 I wore a dress                                   Verse 1 Taylor Swift  
 9     9 You wore a dark gray t-shirt                     Verse 1 Taylor Swift  
10    10 You told me I was pretty when I looked like a m… Verse 1 Taylor Swift  
# â„ą 48 more rows

[[55]]
# A tibble: 37 Ă— 4
    line lyric                                            element element_artist
   <int> <chr>                                            <chr>   <chr>         
 1     1 Once the last drop of rain has dried off the pa… Verse 1 Taylor Swift  
 2     2 Shouldn't I find a stain, but I never do         Verse 1 Taylor Swift  
 3     3 The way the tires turn stones on old county roa… Verse 1 Taylor Swift  
 4     4 They leave 'em muddy underneath, reminds me of … Verse 1 Taylor Swift  
 5     5 You find graffiti on the walls of old bathroom … Verse 1 Taylor Swift  
 6     6 You know, you can scratch it right off, it's ho… Verse 1 Taylor Swift  
 7     7 But like the dollar in your pocket, it's been s… Verse 1 Taylor Swift  
 8     8 You can't change where it's been, reminds me of… Verse 1 Taylor Swift  
 9     9 I lived, and I learned, had you, got burned      Chorus  Taylor Swift  
10    10 Held out, and held on                            Chorus  Taylor Swift  
# â„ą 27 more rows

[[56]]
# A tibble: 57 Ă— 4
    line lyric                                            element element_artist
   <int> <chr>                                            <chr>   <chr>         
 1     1 "Mr. \"Perfect face\""                           Verse 1 Taylor Swift  
 2     2 "Mr. \"Here to stay\""                           Verse 1 Taylor Swift  
 3     3 "Mr. \"Looked me in the eye and told me you wou… Verse 1 Taylor Swift  
 4     4 "Everything was right"                           Verse 1 Taylor Swift  
 5     5 "Mr. \"I've been waitin' for you all my life\""  Verse 1 Taylor Swift  
 6     6 "Mr. \"Every single day until the end, I will b… Verse 1 Taylor Swift  
 7     7 "But that was when I got to know Mr. \"Change o… Pre-Ch… Taylor Swift  
 8     8 "Mr. \"Leaves me all alone,\" I fall apart"      Pre-Ch… Taylor Swift  
 9     9 "It takes everything in me just to get up each … Pre-Ch… Taylor Swift  
10    10 "But it's wonderful to see that you're okay"     Pre-Ch… Taylor Swift  
# â„ą 47 more rows

[[57]]
# A tibble: 34 Ă— 4
    line lyric                                            element element_artist
   <int> <chr>                                            <chr>   <chr>         
 1     1 We used to walk along the streets                Verse 1 Taylor Swift  
 2     2 When the porch lights were shining bright        Verse 1 Taylor Swift  
 3     3 Before I had somewhere to be                     Verse 1 Taylor Swift  
 4     4 Back when we had all night and we were happy     Verse 1 Taylor Swift  
 5     5 I do recall a good while back, we snuck into th… Verse 1 Taylor Swift  
 6     6 You threw your arms around my neck, back when I… Verse 1 Taylor Swift  
 7     7 And we were happy                                Verse 1 Taylor Swift  
 8     8 When it was good, baby, it was good, baby        Chorus  Taylor Swift  
 9     9 We showed 'em all up                             Chorus  Taylor Swift  
10    10 No one could touch the way we laughed in the da… Chorus  Taylor Swift  
# â„ą 24 more rows

[[58]]
# A tibble: 48 Ă— 4
    line lyric                                            element element_artist
   <int> <chr>                                            <chr>   <chr>         
 1     1 "You said, \"I know\""                           Verse 1 Taylor Swift  
 2     2 "When I said, \"I need some time, need some spa… Verse 1 Taylor Swift  
 3     3 "To think about all of this\""                   Verse 1 Taylor Swift  
 4     4 "You watched me go"                              Verse 1 Taylor Swift  
 5     5 "And I knew my"                                  Verse 1 Taylor Swift  
 6     6 "Words were hard to hear"                        Verse 1 Taylor Swift  
 7     7 "And harder to ever take back"                   Verse 1 Taylor Swift  
 8     8 "And I said, \"When can I-I-I come back?\""      Verse 1 Taylor Swift  
 9     9 "And you said that's when"                       Chorus  Taylor Swift  
10    10 "When I wake up in the morning"                  Chorus  Taylor Swift  
# â„ą 38 more rows

[[59]]
# A tibble: 35 Ă— 4
    line lyric                                           element element_artist
   <int> <chr>                                           <chr>   <chr>         
 1     1 Hey, I knew I'd run into you somewhere          Verse 1 Taylor Swift  
 2     2 It's been a while, I didn't mean to stare       Verse 1 Taylor Swift  
 3     3 I heard she's nothin' like me                   Verse 1 Taylor Swift  
 4     4 I'm sure she'll make you happy                  Verse 1 Taylor Swift  
 5     5 But don't you, don't you                        Chorus  Taylor Swift  
 6     6 Smile at me and ask me how I've been            Chorus  Taylor Swift  
 7     7 Don't you say you've                            Chorus  Taylor Swift  
 8     8 Missed me if you don't want me again            Chorus  Taylor Swift  
 9     9 You don't know how much I feel I love you still Chorus  Taylor Swift  
10    10 So why don't you, don't you?                    Chorus  Taylor Swift  
# â„ą 25 more rows

[[60]]
# A tibble: 45 Ă— 4
    line lyric                                            element element_artist
   <int> <chr>                                            <chr>   <chr>         
 1     1 It wasn't just like a movie                      Verse 1 Taylor Swift  
 2     2 The rain didn't soak through my clothes, down t… Verse 1 Taylor Swift  
 3     3 I'm drivin' away and I, I guess you could say    Verse 1 Taylor Swift  
 4     4 This is the last time I'll drive this way again  Verse 1 Taylor Swift  
 5     5 Lost in the gray and I try to grab at the fray   Verse 1 Taylor Swift  
 6     6 'Cause I, I still love you but I can't           Verse 1 Taylor Swift  
 7     7 Bye bye to everything I thought was on my side   Chorus  Taylor Swift  
 8     8 Bye bye baby                                     Chorus  Taylor Swift  
 9     9 I want you back but it's come down to nothing    Chorus  Taylor Swift  
10    10 And all I have is your sympathy                  Chorus  Taylor Swift  
# â„ą 35 more rows

[[61]]
# A tibble: 50 Ă— 4
    line lyric                                            element element_artist
   <int> <chr>                                            <chr>   <chr>         
 1     1 "You were in college, working part-time, waitin… Verse 1 Taylor Swift  
 2     2 "Left a small town and never looked back"        Verse 1 Taylor Swift  
 3     3 "I was a flight risk, with a fear of falling"    Verse 1 Taylor Swift  
 4     4 "Wondering why we bother with love, if it never… Verse 1 Taylor Swift  
 5     5 "I say, \"Can you believe it?\""                 Pre-Ch… Taylor Swift  
 6     6 "As we're lying on the couch"                    Pre-Ch… Taylor Swift  
 7     7 "The moment, I could see it"                     Pre-Ch… Taylor Swift  
 8     8 "Yes, yes, I can see it now"                     Pre-Ch… Taylor Swift  
 9     9 "Do you remember, we were sitting there, by the… Chorus  Taylor Swift  
10    10 "You put your arm around me for the first time"  Chorus  Taylor Swift  
# â„ą 40 more rows

[[62]]
# A tibble: 49 Ă— 4
    line lyric                                        element element_artist
   <int> <chr>                                        <chr>   <chr>         
 1     1 The way you move is like a full on rainstorm Verse 1 Taylor Swift  
 2     2 And I'm a house of cards                     Verse 1 Taylor Swift  
 3     3 You're the kind of reckless                  Verse 1 Taylor Swift  
 4     4 That should send me running                  Verse 1 Taylor Swift  
 5     5 But I kinda know that I won't get far        Verse 1 Taylor Swift  
 6     6 And you stood there in front of me           Verse 1 Taylor Swift  
 7     7 Just close enough to touch                   Verse 1 Taylor Swift  
 8     8 Close enough to hope you couldn't see        Verse 1 Taylor Swift  
 9     9 What I was thinking of                       Verse 1 Taylor Swift  
10    10 Drop everything now                          Chorus  Taylor Swift  
# â„ą 39 more rows

[[63]]
# A tibble: 50 Ă— 4
    line lyric                                           element  element_artist
   <int> <chr>                                           <chr>    <chr>         
 1     1 I'm so glad you made time to see me             Verse 1  Taylor Swift  
 2     2 How's life? Tell me, how's your family?         Verse 1  Taylor Swift  
 3     3 I haven't seen them in a while                  Verse 1  Taylor Swift  
 4     4 You've been good, busier than ever              Verse 1  Taylor Swift  
 5     5 We small talk, work and the weather             Verse 1  Taylor Swift  
 6     6 Your guard is up and I know why                 Verse 1  Taylor Swift  
 7     7 Because the last time you saw me                Pre-Cho… Taylor Swift  
 8     8 Is still burned in the back of your mind        Pre-Cho… Taylor Swift  
 9     9 You gave me roses, and I left them there to die Pre-Cho… Taylor Swift  
10    10 So this is me swallowing my pride               Chorus   Taylor Swift  
# â„ą 40 more rows

[[64]]
# A tibble: 71 Ă— 4
    line lyric                                 element element_artist
   <int> <chr>                                 <chr>   <chr>         
 1     1 I am not the kind of girl             Intro   Taylor Swift  
 2     2 Who should be rudely barging in       Intro   Taylor Swift  
 3     3 On a white veil occasion              Intro   Taylor Swift  
 4     4 But you are not the kind of boy       Intro   Taylor Swift  
 5     5 Who should be marrying the wrong girl Intro   Taylor Swift  
 6     6 I sneak in and see your friends       Verse 1 Taylor Swift  
 7     7 And her snotty little family          Verse 1 Taylor Swift  
 8     8 All dressed in pastel                 Verse 1 Taylor Swift  
 9     9 And she is yelling at a bridesmaid    Verse 1 Taylor Swift  
10    10 Somewhere back inside a room          Verse 1 Taylor Swift  
# â„ą 61 more rows

[[65]]
# A tibble: 53 Ă— 4
    line lyric                                         element element_artist
   <int> <chr>                                         <chr>   <chr>         
 1     1 Long were the nights when                     Verse 1 Taylor Swift  
 2     2 My days once revolved around you              Verse 1 Taylor Swift  
 3     3 Counting my footsteps                         Verse 1 Taylor Swift  
 4     4 Praying the floor won't fall through... again Verse 1 Taylor Swift  
 5     5 My mother accused me of losing my mind        Verse 1 Taylor Swift  
 6     6 But I swore I was fine                        Verse 1 Taylor Swift  
 7     7 You paint me a blue sky                       Verse 1 Taylor Swift  
 8     8 Then go back and turn it to rain              Verse 1 Taylor Swift  
 9     9 And I lived in your chess game                Verse 1 Taylor Swift  
10    10 But you changed the rules everyday            Verse 1 Taylor Swift  
# â„ą 43 more rows

[[66]]
# A tibble: 55 Ă— 4
    line lyric                                           element  element_artist
   <int> <chr>                                           <chr>    <chr>         
 1     1 You, with your words like knives                Verse 1  Taylor Swift  
 2     2 And swords and weapons that you use against me  Verse 1  Taylor Swift  
 3     3 You have knocked me off my feet again           Verse 1  Taylor Swift  
 4     4 Got me feeling like I'm nothing                 Verse 1  Taylor Swift  
 5     5 You, with your voice like nails on a chalkboard Verse 1  Taylor Swift  
 6     6 Calling me out when I'm wounded                 Verse 1  Taylor Swift  
 7     7 You, picking on the weaker man                  Verse 1  Taylor Swift  
 8     8 Well, you can take me down                      Pre-Cho… Taylor Swift  
 9     9 With just one single blow                       Pre-Cho… Taylor Swift  
10    10 But you don't know what you don't know          Pre-Cho… Taylor Swift  
# â„ą 45 more rows

[[67]]
# A tibble: 57 Ă— 4
    line lyric                                            element element_artist
   <int> <chr>                                            <chr>   <chr>         
 1     1 I used to think one day, we'd tell the story of… Verse 1 Taylor Swift  
 2     2 How we met, and the sparks flew instantly        Verse 1 Taylor Swift  
 3     3 And people would say, they're the lucky ones     Verse 1 Taylor Swift  
 4     4 I used to know my place was a spot next to you   Verse 1 Taylor Swift  
 5     5 Now I'm searching the room for an empty seat     Verse 1 Taylor Swift  
 6     6 'Cause lately, I don't even know what page you'… Verse 1 Taylor Swift  
 7     7 Oh, a simple complication                        Pre-Ch… Taylor Swift  
 8     8 Miscommunications lead to fallout                Pre-Ch… Taylor Swift  
 9     9 So many things that I wish you knew              Pre-Ch… Taylor Swift  
10    10 So many walls up, I can't break through          Pre-Ch… Taylor Swift  
# â„ą 47 more rows

[[68]]
# A tibble: 51 Ă— 4
    line lyric                                            element element_artist
   <int> <chr>                                            <chr>   <chr>         
 1     1 Your little hand's wrapped around my finger      Verse 1 Taylor Swift  
 2     2 And it's so quiet in the world tonight           Verse 1 Taylor Swift  
 3     3 Your little eyelids flutter cause you're dreami… Verse 1 Taylor Swift  
 4     4 So I tuck you in, turn on your favorite night l… Verse 1 Taylor Swift  
 5     5 To you everything's funny, you got nothing to r… Verse 1 Taylor Swift  
 6     6 I'd give all I have, honey                       Verse 1 Taylor Swift  
 7     7 If you could stay like that                      Verse 1 Taylor Swift  
 8     8 Oh darling, don't you ever grow up               Chorus  Taylor Swift  
 9     9 Don't you ever grow up, just stay this little    Chorus  Taylor Swift  
10    10 Oh darling, don't you ever grow up               Chorus  Taylor Swift  
# â„ą 41 more rows

[[69]]
# A tibble: 75 Ă— 4
    line lyric                                            element element_artist
   <int> <chr>                                            <chr>   <chr>         
 1     1 "There I was again tonight"                      Verse 1 Taylor Swift  
 2     2 "Forcing laughter, faking smiles"                Verse 1 Taylor Swift  
 3     3 "Same old tired, lonely place"                   Verse 1 Taylor Swift  
 4     4 "Walls of insincerity, shifting eyes and vacanc… Verse 1 Taylor Swift  
 5     5 "Vanished when I saw your face"                  Verse 1 Taylor Swift  
 6     6 "All I can say is, it was enchanting to meet yo… Verse 1 Taylor Swift  
 7     7 "Your eyes whispered, \"Have we met?\""          Verse 2 Taylor Swift  
 8     8 "'Cross the room your silhouette"                Verse 2 Taylor Swift  
 9     9 "Starts to make its way to me"                   Verse 2 Taylor Swift  
10    10 "The playful conversation starts"                Verse 2 Taylor Swift  
# â„ą 65 more rows

[[70]]
# A tibble: 58 Ă— 4
    line lyric                                            element element_artist
   <int> <chr>                                            <chr>   <chr>         
 1     1 "Now go stand in the corner and think about wha… Intro   Taylor Swift  
 2     2 "Ha, time for a little revenge"                  Intro   Taylor Swift  
 3     3 "The story starts when it was hot and it was su… Verse 1 Taylor Swift  
 4     4 "I had it all, I had him right there where I wa… Verse 1 Taylor Swift  
 5     5 "She came along, got him alone and let's hear t… Verse 1 Taylor Swift  
 6     6 "She took him faster than you can say \"Sabotag… Verse 1 Taylor Swift  
 7     7 "I never saw it coming, wouldn't have suspected… Verse 1 Taylor Swift  
 8     8 "I underestimated just who I was dealing with"   Verse 1 Taylor Swift  
 9     9 "She had to know the pain was beating on me lik… Verse 1 Taylor Swift  
10    10 "She underestimated just who she was stealing f… Verse 1 Taylor Swift  
# â„ą 48 more rows

[[71]]
# A tibble: 45 Ă— 4
    line lyric                                            element element_artist
   <int> <chr>                                            <chr>   <chr>         
 1     1 I guess you really did it this time              Verse 1 Taylor Swift  
 2     2 Left yourself in your war path                   Verse 1 Taylor Swift  
 3     3 Lost your balance on a tightrope                 Verse 1 Taylor Swift  
 4     4 Lost your mind trying to get it back             Verse 1 Taylor Swift  
 5     5 Wasn't it easier in your lunchbox days?          Pre-Ch… Taylor Swift  
 6     6 Always a bigger bed to crawl into                Pre-Ch… Taylor Swift  
 7     7 Wasn't it beautiful when you believed in everyt… Pre-Ch… Taylor Swift  
 8     8 And everybody believed in you?                   Pre-Ch… Taylor Swift  
 9     9 It's alright, just wait and see                  Chorus  Taylor Swift  
10    10 Your string of lights is still bright to me      Chorus  Taylor Swift  
# â„ą 35 more rows

[[72]]
# A tibble: 51 Ă— 4
    line lyric                                            element element_artist
   <int> <chr>                                            <chr>   <chr>         
 1     1 You and I walk a fragile line                    Verse 1 Taylor Swift  
 2     2 I have known it all this time                    Verse 1 Taylor Swift  
 3     3 But I never thought I'd live to see it break     Verse 1 Taylor Swift  
 4     4 It's getting dark and it's all too quiet         Verse 1 Taylor Swift  
 5     5 And I can't trust anything now                   Verse 1 Taylor Swift  
 6     6 And it's coming over you like it's all a big mi… Verse 1 Taylor Swift  
 7     7 Whoa, holding my breath                          Pre-Ch… Taylor Swift  
 8     8 Won't lose you again                             Pre-Ch… Taylor Swift  
 9     9 Something's made your eyes go cold               Pre-Ch… Taylor Swift  
10    10 Come on, come on, don't leave me like this       Chorus  Taylor Swift  
# â„ą 41 more rows

[[73]]
# A tibble: 59 Ă— 4
    line lyric                                  element element_artist
   <int> <chr>                                  <chr>   <chr>         
 1     1 I still remember the look on your face Verse 1 Taylor Swift  
 2     2 Lit through the darkness at 1:58       Verse 1 Taylor Swift  
 3     3 The words that you whispered           Verse 1 Taylor Swift  
 4     4 For just us to know                    Verse 1 Taylor Swift  
 5     5 You told me you loved me               Verse 1 Taylor Swift  
 6     6 So why did you go away?                Verse 1 Taylor Swift  
 7     7 Away                                   Verse 1 Taylor Swift  
 8     8 I do recall now the smell of the rain  Verse 2 Taylor Swift  
 9     9 Fresh on the pavement                  Verse 2 Taylor Swift  
10    10 I ran off the plane                    Verse 2 Taylor Swift  
# â„ą 49 more rows

[[74]]
# A tibble: 63 Ă— 4
    line lyric                                            element element_artist
   <int> <chr>                                            <chr>   <chr>         
 1     1 I said, remember this moment, in the back of my… Verse 1 Taylor Swift  
 2     2 The time we stood with our shaking hands         Verse 1 Taylor Swift  
 3     3 The crowds in stands went wild                   Verse 1 Taylor Swift  
 4     4 We were the kings and the queens                 Verse 1 Taylor Swift  
 5     5 And they read off our names                      Verse 1 Taylor Swift  
 6     6 The night you danced like you knew our lives     Verse 1 Taylor Swift  
 7     7 Would never be the same                          Verse 1 Taylor Swift  
 8     8 You held your head like a hero                   Verse 1 Taylor Swift  
 9     9 On a history book page                           Verse 1 Taylor Swift  
10    10 It was the end of a decade                       Verse 1 Taylor Swift  
# â„ą 53 more rows

[[75]]
# A tibble: 41 Ă— 4
    line lyric                                            element element_artist
   <int> <chr>                                            <chr>   <chr>         
 1     1 Elevator buttons and morning air                 Verse 1 Taylor Swift  
 2     2 Strangers' silence makes me want to take the st… Verse 1 Taylor Swift  
 3     3 If you were here, we'd laugh about their vacant… Verse 1 Taylor Swift  
 4     4 But right now, my time is theirs                 Verse 1 Taylor Swift  
 5     5 Seems like there's always someone who disapprov… Verse 1 Taylor Swift  
 6     6 They'll judge it like they know about me and you Verse 1 Taylor Swift  
 7     7 And the verdict comes from those with nothing e… Verse 1 Taylor Swift  
 8     8 The jury's out, but my choice is you             Verse 1 Taylor Swift  
 9     9 So don't you worry your pretty little mind       Chorus  Taylor Swift  
10    10 People throw rocks at things that shine          Chorus  Taylor Swift  
# â„ą 31 more rows

[[76]]
# A tibble: 50 Ă— 4
    line lyric                                        element element_artist
   <int> <chr>                                        <chr>   <chr>         
 1     1 Last night, I heard my own heart beating     Verse 1 Taylor Swift  
 2     2 Sounded like footsteps on my stairs          Verse 1 Taylor Swift  
 3     3 Six months gone and I'm still reaching       Verse 1 Taylor Swift  
 4     4 Even though I know you're not there          Verse 1 Taylor Swift  
 5     5 I was playing back a thousand memories, baby Verse 1 Taylor Swift  
 6     6 Thinkin' 'bout everything we've been through Verse 1 Taylor Swift  
 7     7 Maybe I've been going back too much lately   Verse 1 Taylor Swift  
 8     8 When time stood still and I had you          Verse 1 Taylor Swift  
 9     9 Come back, come back, come back to me like   Chorus  Taylor Swift  
10    10 You would, you would if this was a movie     Chorus  Taylor Swift  
# â„ą 40 more rows

[[77]]
# A tibble: 55 Ă— 4
    line lyric                                            element element_artist
   <int> <chr>                                            <chr>   <chr>         
 1     1 "Tall, dark, and superman"                       Verse 1 Taylor Swift  
 2     2 "He puts papers in his briefcase and drives awa… Verse 1 Taylor Swift  
 3     3 "To save the world or go to work"                Verse 1 Taylor Swift  
 4     4 "It's the same thing to me"                      Verse 1 Taylor Swift  
 5     5 "He's got his mother's eyes, his father's ambit… Verse 1 Taylor Swift  
 6     6 "I wonder if he knows how much that I miss him"  Verse 1 Taylor Swift  
 7     7 "I hang on every word you say, yay"              Verse 1 Taylor Swift  
 8     8 "And you smile and say, \"How are you?\""        Verse 1 Taylor Swift  
 9     9 "I say, \"Just fine\""                           Verse 1 Taylor Swift  
10    10 "I always forget to tell you, I love you"        Verse 1 Taylor Swift  
# â„ą 45 more rows

[[78]]
# A tibble: 50 Ă— 4
    line lyric                                            element element_artist
   <int> <chr>                                            <chr>   <chr>         
 1     1 "Ah-ah, ah-ah"                                   Intro   Taylor Swift  
 2     2 "Ah-ah, ah-ah"                                   Intro   Taylor Swift  
 3     3 "You were in college working part-time, waitin'… Verse 1 Taylor Swift  
 4     4 "Left a small town, never looked back"           Verse 1 Taylor Swift  
 5     5 "I was a flight risk with a fear of falling"     Verse 1 Taylor Swift  
 6     6 "Wonderin' why we bother with love if it never … Verse 1 Taylor Swift  
 7     7 "I say, \"Can you believe it?\""                 Pre-Ch… Taylor Swift  
 8     8 "As we're lyin' on the couch"                    Pre-Ch… Taylor Swift  
 9     9 "The moment I could see it"                      Pre-Ch… Taylor Swift  
10    10 "Yes, yes, I can see it now"                     Pre-Ch… Taylor Swift  
# â„ą 40 more rows

[[79]]
# A tibble: 38 Ă— 4
    line lyric                                            element element_artist
   <int> <chr>                                            <chr>   <chr>         
 1     1 The way you move is like a full on rainstorm     Verse 1 Taylor Swift  
 2     2 And I'm a house of cards                         Verse 1 Taylor Swift  
 3     3 You're the kind of reckless that should send me… Verse 1 Taylor Swift  
 4     4 But I kinda know that I won't get far            Verse 1 Taylor Swift  
 5     5 And you stood there in front of me, just close … Verse 1 Taylor Swift  
 6     6 Close enough to hope you couldn't see what I wa… Verse 1 Taylor Swift  
 7     7 Drop everything now, meet me in the pouring rain Chorus  Taylor Swift  
 8     8 Kiss me on the sidewalk, take away the pain      Chorus  Taylor Swift  
 9     9 'Cause I see sparks fly whenever you smile       Chorus  Taylor Swift  
10    10 Get me with those green eyes, baby, as the ligh… Chorus  Taylor Swift  
# â„ą 28 more rows

[[80]]
# A tibble: 50 Ă— 4
    line lyric                                          element   element_artist
   <int> <chr>                                          <chr>     <chr>         
 1     1 I'm so glad you made time to see me            Verse 1   Taylor Swift  
 2     2 How's life? Tell me, how's your family?        Verse 1   Taylor Swift  
 3     3 I haven't seen them in a while                 Verse 1   Taylor Swift  
 4     4 You've been good, busier than ever             Verse 1   Taylor Swift  
 5     5 We small talk, work and the weather            Verse 1   Taylor Swift  
 6     6 Your guard is up and I know why                Verse 1   Taylor Swift  
 7     7 Because the last time you saw me               Pre-Chor… Taylor Swift  
 8     8 Is still burned in the back of your mind       Pre-Chor… Taylor Swift  
 9     9 You gave me roses and I left them there to die Pre-Chor… Taylor Swift  
10    10 So, this is me swallowing my pride             Chorus    Taylor Swift  
# â„ą 40 more rows

[[81]]
# A tibble: 61 Ă— 4
    line lyric                                            element element_artist
   <int> <chr>                                            <chr>   <chr>         
 1     1 I am not the kind of girl                        Verse 1 Taylor Swift  
 2     2 Who should be rudely bargin' in on a white veil… Verse 1 Taylor Swift  
 3     3 But you are not the kind of boy                  Verse 1 Taylor Swift  
 4     4 Who should be marrying the wrong girl            Verse 1 Taylor Swift  
 5     5 I sneak in and see your friends                  Verse 1 Taylor Swift  
 6     6 And her snotty little family all dressed in pas… Verse 1 Taylor Swift  
 7     7 And she is yelling at a bridesmaid               Verse 1 Taylor Swift  
 8     8 Somewhere back inside a room                     Verse 1 Taylor Swift  
 9     9 Wearin' a gown shaped like a pastry              Verse 1 Taylor Swift  
10    10 This is surely not what you thought it would be  Pre-Ch… Taylor Swift  
# â„ą 51 more rows

[[82]]
# A tibble: 50 Ă— 4
    line lyric                                      element element_artist
   <int> <chr>                                      <chr>   <chr>         
 1     1 Long were the nights                       Verse 1 Taylor Swift  
 2     2 When my days once revolved around you      Verse 1 Taylor Swift  
 3     3 Counting my footsteps                      Verse 1 Taylor Swift  
 4     4 Prayin' the floor won't fall through again Verse 1 Taylor Swift  
 5     5 And my mother accused me of losin' my mind Verse 1 Taylor Swift  
 6     6 But I swore I was fine                     Verse 1 Taylor Swift  
 7     7 You paint me a blue sky                    Verse 1 Taylor Swift  
 8     8 Then go back to turn it to rain            Verse 1 Taylor Swift  
 9     9 And I lived in your chess game             Verse 1 Taylor Swift  
10    10 But you change the rules every day         Verse 1 Taylor Swift  
# â„ą 40 more rows

[[83]]
# A tibble: 55 Ă— 4
    line lyric                                           element  element_artist
   <int> <chr>                                           <chr>    <chr>         
 1     1 You, with your words like knives                Verse 1  Taylor Swift  
 2     2 And swords and weapons that you use against me  Verse 1  Taylor Swift  
 3     3 You have knocked me off my feet again           Verse 1  Taylor Swift  
 4     4 Got me feelin' like a nothing                   Verse 1  Taylor Swift  
 5     5 You, with your voice like nails on a chalkboard Verse 1  Taylor Swift  
 6     6 Calling me out when I'm wounded                 Verse 1  Taylor Swift  
 7     7 You, pickin' on the weaker man                  Verse 1  Taylor Swift  
 8     8 Well, you can take me down                      Pre-Cho… Taylor Swift  
 9     9 With just one single blow                       Pre-Cho… Taylor Swift  
10    10 But you don't know what you don't know          Pre-Cho… Taylor Swift  
# â„ą 45 more rows

[[84]]
# A tibble: 57 Ă— 4
    line lyric                                            element element_artist
   <int> <chr>                                            <chr>   <chr>         
 1     1 "I used to think one day we'd tell the story of… Verse 1 Taylor Swift  
 2     2 "How we met and the sparks flew instantly"       Verse 1 Taylor Swift  
 3     3 "And people would say, \"They're the lucky ones… Verse 1 Taylor Swift  
 4     4 "I used to know my place was the spot next to y… Verse 1 Taylor Swift  
 5     5 "Now I'm searchin' the room for an empty seat"   Verse 1 Taylor Swift  
 6     6 "'Cause lately I don't even know what page you'… Verse 1 Taylor Swift  
 7     7 "Oh, a simple complication"                      Pre-Ch… Taylor Swift  
 8     8 "Miscommunications lead to fallout"              Pre-Ch… Taylor Swift  
 9     9 "So many things that I wish you knew"            Pre-Ch… Taylor Swift  
10    10 "So many walls up, I can't break through"        Pre-Ch… Taylor Swift  
# â„ą 47 more rows

[[85]]
# A tibble: 60 Ă— 4
    line lyric                                            element element_artist
   <int> <chr>                                            <chr>   <chr>         
 1     1 Your little hand's wrapped around my finger      Verse 1 Taylor Swift  
 2     2 And it's so quiet in the world tonight           Verse 1 Taylor Swift  
 3     3 Your little eyelids flutter 'cause you're dream… Verse 1 Taylor Swift  
 4     4 So I tuck you in, turn on your favourite nightl… Verse 1 Taylor Swift  
 5     5 To you, everything's funny                       Pre-Ch… Taylor Swift  
 6     6 You got nothing to regret                        Pre-Ch… Taylor Swift  
 7     7 I'd give all I have, honey                       Pre-Ch… Taylor Swift  
 8     8 If you could stay like that                      Pre-Ch… Taylor Swift  
 9     9 Oh, darling, don't you ever grow up              Chorus  Taylor Swift  
10    10 Don't you ever grow up, just stay this little    Chorus  Taylor Swift  
# â„ą 50 more rows

[[86]]
# A tibble: 58 Ă— 4
    line lyric                                            element element_artist
   <int> <chr>                                            <chr>   <chr>         
 1     1 "There I was again tonight"                      Verse 1 Taylor Swift  
 2     2 "Forcing laughter, faking smiles"                Verse 1 Taylor Swift  
 3     3 "Same old tired, lonely place"                   Verse 1 Taylor Swift  
 4     4 "Walls of insincerity"                           Verse 1 Taylor Swift  
 5     5 "Shifting eyes and vacancy"                      Verse 1 Taylor Swift  
 6     6 "Vanished when I saw your face"                  Verse 1 Taylor Swift  
 7     7 "All I can say is it was enchanting to meet you" Verse 1 Taylor Swift  
 8     8 "Your eyes whispered, \"Have we met?\""          Verse 2 Taylor Swift  
 9     9 "Across the room, your silhouette"               Verse 2 Taylor Swift  
10    10 "Starts to make its way to me"                   Verse 2 Taylor Swift  
# â„ą 48 more rows

[[87]]
# A tibble: 58 Ă— 4
    line lyric                                            element element_artist
   <int> <chr>                                            <chr>   <chr>         
 1     1 "Now go stand in the corner and think about wha… Intro   Taylor Swift  
 2     2 "Haha, time for a little revenge"                Intro   Taylor Swift  
 3     3 "The story starts when it was hot and it was su… Verse 1 Taylor Swift  
 4     4 "I had it all, I had him right there where I wa… Verse 1 Taylor Swift  
 5     5 "She came along, got him alone, and let's hear … Verse 1 Taylor Swift  
 6     6 "She took him faster than you can say \"Sabotag… Verse 1 Taylor Swift  
 7     7 "I never saw it coming, wouldn't have suspected… Verse 1 Taylor Swift  
 8     8 "I underestimated just who I was dealing with (… Verse 1 Taylor Swift  
 9     9 "She had to know the pain was beating on me lik… Verse 1 Taylor Swift  
10    10 "She underestimated just who she was stealin' f… Verse 1 Taylor Swift  
# â„ą 48 more rows

[[88]]
# A tibble: 48 Ă— 4
    line lyric                                            element element_artist
   <int> <chr>                                            <chr>   <chr>         
 1     1 I guess you really did it this time              Verse 1 Taylor Swift  
 2     2 Left yourself in your war path                   Verse 1 Taylor Swift  
 3     3 Lost your balance on a tightrope                 Verse 1 Taylor Swift  
 4     4 Lost your mind tryin' to get it back             Verse 1 Taylor Swift  
 5     5 Wasn't it easier in your lunchbox days?          Pre-Ch… Taylor Swift  
 6     6 Always a bigger bed to crawl into                Pre-Ch… Taylor Swift  
 7     7 Wasn't it beautiful when you believed in everyt… Pre-Ch… Taylor Swift  
 8     8 And everybody believed in you?                   Pre-Ch… Taylor Swift  
 9     9 It's alright, just wait and see                  Chorus  Taylor Swift  
10    10 Your string of lights are still bright to me, oh Chorus  Taylor Swift  
# â„ą 38 more rows

[[89]]
# A tibble: 51 Ă— 4
    line lyric                                            element element_artist
   <int> <chr>                                            <chr>   <chr>         
 1     1 You and I walk a fragile line                    Verse 1 Taylor Swift  
 2     2 I have known it all this time                    Verse 1 Taylor Swift  
 3     3 But I never thought I'd live to see it break     Verse 1 Taylor Swift  
 4     4 It's getting dark and it's all so quiet          Verse 1 Taylor Swift  
 5     5 And I can't trust anything now                   Verse 1 Taylor Swift  
 6     6 And it's coming over you like it's all a big mi… Verse 1 Taylor Swift  
 7     7 Oh, holding my breath                            Pre-Ch… Taylor Swift  
 8     8 Won't lose you again                             Pre-Ch… Taylor Swift  
 9     9 Something's made your eyes go cold               Pre-Ch… Taylor Swift  
10    10 Come on, come on, don't leave me like this       Chorus  Taylor Swift  
# â„ą 41 more rows

[[90]]
# A tibble: 50 Ă— 4
    line lyric                                            element element_artist
   <int> <chr>                                            <chr>   <chr>         
 1     1 I still remember the look on your face           Verse 1 Taylor Swift  
 2     2 Lit through the darkness at 1:58                 Verse 1 Taylor Swift  
 3     3 The words that you whispered for just us to know Verse 1 Taylor Swift  
 4     4 You told me you loved me, so why did you go awa… Verse 1 Taylor Swift  
 5     5 Away                                             Verse 1 Taylor Swift  
 6     6 I do recall now, the smell of the rain           Verse 2 Taylor Swift  
 7     7 Fresh on the pavement, I ran off the plane       Verse 2 Taylor Swift  
 8     8 That July ninth, the beat of your heart          Verse 2 Taylor Swift  
 9     9 It jumps through your shirt, I can still feel y… Verse 2 Taylor Swift  
10    10 But now I'll go                                  Pre-Ch… Taylor Swift  
# â„ą 40 more rows

[[91]]
# A tibble: 60 Ă— 4
    line lyric                                            element element_artist
   <int> <chr>                                            <chr>   <chr>         
 1     1 "I said, \"Remember this moment\""               Verse 1 Taylor Swift  
 2     2 "In the back of my mind"                         Verse 1 Taylor Swift  
 3     3 "The time we stood with our shaking hands"       Verse 1 Taylor Swift  
 4     4 "The crowds in stands went wild"                 Verse 1 Taylor Swift  
 5     5 "We were the kings and the queens"               Verse 1 Taylor Swift  
 6     6 "And they read off our names"                    Verse 1 Taylor Swift  
 7     7 "The night you danced like you knew our lives w… Verse 1 Taylor Swift  
 8     8 "Never be the same"                              Verse 1 Taylor Swift  
 9     9 "You held your head like a hero on a history bo… Verse 1 Taylor Swift  
10    10 "It was the end of a decade"                     Verse 1 Taylor Swift  
# â„ą 50 more rows

[[92]]
# A tibble: 39 Ă— 4
    line lyric                                            element element_artist
   <int> <chr>                                            <chr>   <chr>         
 1     1 Elevator buttons and morning air                 Verse 1 Taylor Swift  
 2     2 Strangers' silence makes me want to take the st… Verse 1 Taylor Swift  
 3     3 If you were here, we'd laugh about their vacant… Verse 1 Taylor Swift  
 4     4 But right now, my time is theirs                 Verse 1 Taylor Swift  
 5     5 Seems like there's always someone who disapprov… Verse 1 Taylor Swift  
 6     6 They'll judge it like they know about me and you Verse 1 Taylor Swift  
 7     7 And the verdict comes from those with nothing e… Verse 1 Taylor Swift  
 8     8 The jury's out, but my choice is you             Verse 1 Taylor Swift  
 9     9 So don't you worry your pretty little mind       Chorus  Taylor Swift  
10    10 People throw rocks at things that shine          Chorus  Taylor Swift  
# â„ą 29 more rows

[[93]]
# A tibble: 55 Ă— 4
    line lyric                                            element element_artist
   <int> <chr>                                            <chr>   <chr>         
 1     1 "Tall, dark, and superman"                       Verse 1 Taylor Swift  
 2     2 "He puts papers in his briefcase and drives awa… Verse 1 Taylor Swift  
 3     3 "To save the world or go to work"                Verse 1 Taylor Swift  
 4     4 "It's the same thing to me"                      Verse 1 Taylor Swift  
 5     5 "He's got his mother's eyes, his father's ambit… Verse 1 Taylor Swift  
 6     6 "I wonder if he knows how much that I miss him"  Verse 1 Taylor Swift  
 7     7 "I hang on every word you say, yay"              Verse 1 Taylor Swift  
 8     8 "And you smile and say, \"How are you?\""        Verse 1 Taylor Swift  
 9     9 "And I'll say, \"Just fine\""                    Verse 1 Taylor Swift  
10    10 "I always forget to tell you, \"I love you\""    Verse 1 Taylor Swift  
# â„ą 45 more rows

[[94]]
# A tibble: 36 Ă— 4
    line lyric                                            element element_artist
   <int> <chr>                                            <chr>   <chr>         
 1     1 Just breathe, just relax, it'll be okay          Verse 1 Taylor Swift  
 2     2 Just an hour 'til your car's in the driveway     Verse 1 Taylor Swift  
 3     3 Just the first time ever hangin' out with you t… Verse 1 Taylor Swift  
 4     4 I've got my money on things goin' badly          Verse 1 Taylor Swift  
 5     5 Got a history of stories ending sadly            Verse 1 Taylor Swift  
 6     6 Still hoping that the fire won't burn me         Verse 1 Taylor Swift  
 7     7 Just one time, just one time                     Verse 1 Taylor Swift  
 8     8 All I know is this could either break my heart … Chorus  Taylor Swift  
 9     9 Got a feelin' your electric touch could fill th… Chorus  Taylor Swift  
10    10 And I want you now, wanna need you forever       Chorus  Taylor Swift  
# â„ą 26 more rows

[[95]]
# A tibble: 40 Ă— 4
    line lyric                                            element element_artist
   <int> <chr>                                            <chr>   <chr>         
 1     1 When Emma falls in love, she paces the floor     Verse 1 Taylor Swift  
 2     2 Closes the blinds and locks the door             Verse 1 Taylor Swift  
 3     3 When Emma falls in love, she calls up her mom    Verse 1 Taylor Swift  
 4     4 Jokes about the ways that this one could go wro… Verse 1 Taylor Swift  
 5     5 She waits and takes her time                     Verse 1 Taylor Swift  
 6     6 'Cause Little Miss Sunshine always thinks it's … Verse 1 Taylor Swift  
 7     7 When Emma falls in love, I know                  Verse 1 Taylor Swift  
 8     8 That boy will never be the same                  Verse 1 Taylor Swift  
 9     9 'Cause she's the kind of book that you can't pu… Chorus  Taylor Swift  
10    10 Like if Cleopatra grew up in a small town        Chorus  Taylor Swift  
# â„ą 30 more rows

[[96]]
# A tibble: 49 Ă— 4
    line lyric                                            element element_artist
   <int> <chr>                                            <chr>   <chr>         
 1     1 Uh-uh, uh, uh                                    Intro   Taylor Swift  
 2     2 You brush past me in the hallway                 Verse 1 Taylor Swift  
 3     3 And you don't think I, I, I can see ya, do ya?   Verse 1 Taylor Swift  
 4     4 I've been watchin' you for ages                  Verse 1 Taylor Swift  
 5     5 And I spend my time tryin' not to feel it        Verse 1 Taylor Swift  
 6     6 But what would you do if I went to touch you no… Pre-Ch… Taylor Swift  
 7     7 What would you do if they never found us out?    Pre-Ch… Taylor Swift  
 8     8 What would you do if we never made a sound?      Pre-Ch… Taylor Swift  
 9     9 'Cause I can see you waitin' down the hall from… Chorus  Taylor Swift  
10    10 And I could see you up against the wall with me  Chorus  Taylor Swift  
# â„ą 39 more rows

[[97]]
# A tibble: 39 Ă— 4
    line lyric                                            element element_artist
   <int> <chr>                                            <chr>   <chr>         
 1     1 (Once, I had an empire)                          Intro   Taylor Swift  
 2     2 (Once, I had an empire)                          Intro   Taylor Swift  
 3     3 (Once, I had an empire)                          Intro   Taylor Swift  
 4     4 Once, I had an empire in a golden age            Verse 1 Taylor Swift  
 5     5 I was held up so high, I used to be great        Verse 1 Taylor Swift  
 6     6 They used to cheer when they saw my face         Verse 1 Taylor Swift  
 7     7 Now, I fear I have fallen from grace             Verse 1 Taylor Swift  
 8     8 And I feel like my castle's crumbling down       Chorus  Taylor Swift  
 9     9 And I watch all my bridges burn to the ground    Chorus  Taylor Swift  
10    10 And you don't want to know me, I will just let … Chorus  Taylor Swift  
# â„ą 29 more rows

[[98]]
# A tibble: 61 Ă— 4
    line lyric                                            element element_artist
   <int> <chr>                                            <chr>   <chr>         
 1     1 "My cards are on the table, yours are in your h… Verse 1 Taylor Swift  
 2     2 "Chances are, tonight, you've already got plans" Verse 1 Taylor Swift  
 3     3 "And chances are I will talk myself to sleep ag… Verse 1 Taylor Swift  
 4     4 "You give me just enough attention to keep my h… Verse 1 Taylor Swift  
 5     5 "Wishful thoughts forget to mention when someth… Verse 1 Taylor Swift  
 6     6 "And I will block out these voices of reason in… Verse 1 Taylor Swift  
 7     7 "And the voices say, \"You are not the exceptio… Pre-Ch… Taylor Swift  
 8     8 "You will never learn your lesson\""             Pre-Ch… Taylor Swift  
 9     9 "Foolish one"                                    Chorus  Taylor Swift  
10    10 "Stop checkin' your mailbox for confessions of … Chorus  Taylor Swift  
# â„ą 51 more rows

[[99]]
# A tibble: 66 Ă— 4
    line lyric                                            element element_artist
   <int> <chr>                                            <chr>   <chr>         
 1     1 "Down the block, there's an antique shop"        Verse 1 Taylor Swift  
 2     2 "And something in my head said, \"Stop,\" so I … Verse 1 Taylor Swift  
 3     3 "On the counter was a cardboard box"             Verse 1 Taylor Swift  
 4     4 "And the sign said, \"Photos: twenty-five cents… Verse 1 Taylor Swift  
 5     5 "Black and white, saw a '30s bride"              Verse 1 Taylor Swift  
 6     6 "And school lovers laughin' on the porch of the… Verse 1 Taylor Swift  
 7     7 "The kinda love that you only find once in a li… Verse 1 Taylor Swift  
 8     8 "The kind you don't put down"                    Verse 1 Taylor Swift  
 9     9 "And that's when I called you and it's so hard … Verse 1 Taylor Swift  
10    10 "But in those photos, I saw us instead"          Verse 1 Taylor Swift  
# â„ą 56 more rows

[[100]]
# A tibble: 48 Ă— 4
    line lyric                                       element element_artist
   <int> <chr>                                       <chr>   <chr>         
 1     1 I'm walking fast through the traffic lights Verse 1 Taylor Swift  
 2     2 Busy streets and busy lives                 Verse 1 Taylor Swift  
 3     3 And all we know is touch and go             Verse 1 Taylor Swift  
 4     4 We are alone with our changing minds        Verse 1 Taylor Swift  
 5     5 We fall in love 'til it hurts or bleeds     Verse 1 Taylor Swift  
 6     6 Or fades in time                            Verse 1 Taylor Swift  
 7     7 And I never (Never)                         Chorus  Taylor Swift  
 8     8 Saw you coming                              Chorus  Taylor Swift  
 9     9 And I'll never (Never)                      Chorus  Taylor Swift  
10    10 Be the same                                 Chorus  Taylor Swift  
# â„ą 38 more rows

[[101]]
# A tibble: 55 Ă— 4
    line lyric                                            element element_artist
   <int> <chr>                                            <chr>   <chr>         
 1     1 Loving him is like                               Verse 1 Taylor Swift  
 2     2 Driving a new Maserati down a dead-end street    Verse 1 Taylor Swift  
 3     3 Faster than the wind, passionate as sin          Verse 1 Taylor Swift  
 4     4 Ending so suddenly                               Verse 1 Taylor Swift  
 5     5 Loving him is like tryin' to change your mind    Verse 1 Taylor Swift  
 6     6 Once you're already flying through the free fall Verse 1 Taylor Swift  
 7     7 Like the colors in autumn, so bright             Verse 1 Taylor Swift  
 8     8 Just before they lose it all                     Verse 1 Taylor Swift  
 9     9 Losing him was blue like I'd never known         Chorus  Taylor Swift  
10    10 Missing him was dark gray, all alone             Chorus  Taylor Swift  
# â„ą 45 more rows

[[102]]
# A tibble: 46 Ă— 4
    line lyric                         element element_artist
   <int> <chr>                         <chr>   <chr>         
 1     1 Put your lips close to mine   Verse 1 Taylor Swift  
 2     2 As long as they don't touch   Verse 1 Taylor Swift  
 3     3 Out of focus, eye to eye      Verse 1 Taylor Swift  
 4     4 'Til the gravity's too much   Verse 1 Taylor Swift  
 5     5 And I'll do anything you say  Verse 1 Taylor Swift  
 6     6 If you say it with your hands Verse 1 Taylor Swift  
 7     7 And I'd be smart to walk away Verse 1 Taylor Swift  
 8     8 But you're quicksand          Verse 1 Taylor Swift  
 9     9 This slope is treacherous     Chorus  Taylor Swift  
10    10 This path is reckless         Chorus  Taylor Swift  
# â„ą 36 more rows

[[103]]
# A tibble: 61 Ă— 4
    line lyric                                            element element_artist
   <int> <chr>                                            <chr>   <chr>         
 1     1 Once upon a time, a few mistakes ago             Verse 1 Taylor Swift  
 2     2 I was in your sights, you got me alone           Verse 1 Taylor Swift  
 3     3 You found me, you found me, you found me         Verse 1 Taylor Swift  
 4     4 I guess you didn't care, and I guess I liked th… Verse 1 Taylor Swift  
 5     5 And when I fell hard, you took a step back       Verse 1 Taylor Swift  
 6     6 Without me, without me, without me               Verse 1 Taylor Swift  
 7     7 And he's long gone when he's next to me          Pre-Ch… Taylor Swift  
 8     8 And I realize the blame is on me                 Pre-Ch… Taylor Swift  
 9     9 'Cause I knew you were trouble when you walked … Chorus  Taylor Swift  
10    10 So shame on me now                               Chorus  Taylor Swift  
# â„ą 51 more rows

[[104]]
# A tibble: 58 Ă— 4
    line lyric                                            element element_artist
   <int> <chr>                                            <chr>   <chr>         
 1     1 I walked through the door with you, the air was… Intro   Taylor Swift  
 2     2 But something 'bout it felt like home somehow    Intro   Taylor Swift  
 3     3 And I left my scarf there at your sister's house Intro   Taylor Swift  
 4     4 And you've still got it in your drawer, even now Intro   Taylor Swift  
 5     5 Oh, your sweet disposition and my wide-eyed gaze Verse 1 Taylor Swift  
 6     6 We're singing in the car, getting lost upstate   Verse 1 Taylor Swift  
 7     7 Autumn leaves falling down like pieces into pla… Verse 1 Taylor Swift  
 8     8 And I can picture it after all these days        Verse 1 Taylor Swift  
 9     9 And I know it's long gone and                    Pre-Ch… Taylor Swift  
10    10 That magic's not here no more                    Pre-Ch… Taylor Swift  
# â„ą 48 more rows

[[105]]
# A tibble: 62 Ă— 4
    line lyric                                            element element_artist
   <int> <chr>                                            <chr>   <chr>         
 1     1 It feels like a perfect night                    Verse 1 Taylor Swift  
 2     2 To dress up like hipsters                        Verse 1 Taylor Swift  
 3     3 And make fun of our exes, uh-uh, uh-uh           Verse 1 Taylor Swift  
 4     4 It feels like a perfect night                    Verse 1 Taylor Swift  
 5     5 For breakfast at midnight                        Verse 1 Taylor Swift  
 6     6 To fall in love with strangers, uh-uh, uh-uh     Verse 1 Taylor Swift  
 7     7 Yeah                                             Pre-Ch… Taylor Swift  
 8     8 We're happy, free, confused, and lonely at the … Pre-Ch… Taylor Swift  
 9     9 It's miserable and magical, oh, yeah             Pre-Ch… Taylor Swift  
10    10 Tonight's the night when we forget about the de… Pre-Ch… Taylor Swift  
# â„ą 52 more rows

[[106]]
# A tibble: 35 Ă— 4
    line lyric                                            element element_artist
   <int> <chr>                                            <chr>   <chr>         
 1     1 I bet this time of night, you're still up        Verse 1 Taylor Swift  
 2     2 I bet you're tired from a long hard week         Verse 1 Taylor Swift  
 3     3 I bet you're sittin' in your chair by the window Verse 1 Taylor Swift  
 4     4 Looking out at the city, and I bet               Verse 1 Taylor Swift  
 5     5 Sometimes you wonder 'bout me                    Verse 1 Taylor Swift  
 6     6 And I just wanna tell you                        Chorus  Taylor Swift  
 7     7 It takes everything in me not to call you        Chorus  Taylor Swift  
 8     8 And I wish I could run to you                    Chorus  Taylor Swift  
 9     9 And I hope you know that                         Chorus  Taylor Swift  
10    10 Every time I don't, I almost do, I almost do     Chorus  Taylor Swift  
# â„ą 25 more rows

[[107]]
# A tibble: 52 Ă— 4
    line lyric                                            element element_artist
   <int> <chr>                                            <chr>   <chr>         
 1     1 "I remember when we broke up the first time"     Verse 1 Taylor Swift  
 2     2 "Saying, \"This is it, I've had enough,\" 'caus… Verse 1 Taylor Swift  
 3     3 "We hadn't seen each other in a month"           Verse 1 Taylor Swift  
 4     4 "When you said you needed space (What?)"         Verse 1 Taylor Swift  
 5     5 "Then you come around again and say"             Verse 1 Taylor Swift  
 6     6 "\"Baby, I miss you and I swear I'm gonna chang… Verse 1 Taylor Swift  
 7     7 "Remember how that lasted for a day?"            Verse 1 Taylor Swift  
 8     8 "I say, \"I hate you,\" we break up, you call m… Verse 1 Taylor Swift  
 9     9 "Ooh-ooh-ooh-ooh-ooh"                            Pre-Ch… Taylor Swift  
10    10 "We called it off again last night, but"         Pre-Ch… Taylor Swift  
# â„ą 42 more rows

[[108]]
# A tibble: 41 Ă— 4
    line lyric                                            element element_artist
   <int> <chr>                                            <chr>   <chr>         
 1     1 "I'm pretty sure we almost broke up last night"  Verse 1 Taylor Swift  
 2     2 "I threw my phone across the room, at you"       Verse 1 Taylor Swift  
 3     3 "I was expecting some dramatic turn away"        Verse 1 Taylor Swift  
 4     4 "But you stayed"                                 Verse 1 Taylor Swift  
 5     5 "This morning, I said we should talk about it"   Verse 1 Taylor Swift  
 6     6 "'Cause I read you should never leave a fight u… Verse 1 Taylor Swift  
 7     7 "That's when you came in wearing a football hel… Verse 1 Taylor Swift  
 8     8 "And said, \"Okay, let's talk\""                 Verse 1 Taylor Swift  
 9     9 "And I said"                                     Verse 1 Taylor Swift  
10    10 "Stay, stay, stay"                               Chorus  Taylor Swift  
# â„ą 31 more rows

[[109]]
# A tibble: 58 Ă— 4
    line lyric                            element    element_artist
   <int> <chr>                            <chr>      <chr>         
 1     1 Find myself at your door         Verse 1    Taylor Swift  
 2     2 Just like all those times before Verse 1    Taylor Swift  
 3     3 I'm not sure how I got there     Verse 1    Taylor Swift  
 4     4 All roads they lead me here      Verse 1    Taylor Swift  
 5     5 I imagine you are home           Verse 1    Taylor Swift  
 6     6 In your room, all alone          Verse 1    Taylor Swift  
 7     7 And you open your eyes into mine Verse 1    Taylor Swift  
 8     8 And everything feels better      Verse 1    Taylor Swift  
 9     9 And right before your eyes       Pre-Chorus Taylor Swift  
10    10 I'm breaking, no past            Pre-Chorus Taylor Swift  
# â„ą 48 more rows

[[110]]
# A tibble: 44 Ă— 4
    line lyric                                            element element_artist
   <int> <chr>                                            <chr>   <chr>         
 1     1 I was reminiscing just the other day             Verse 1 Taylor Swift  
 2     2 While having coffee all alone, and Lord, it too… Verse 1 Taylor Swift  
 3     3 Back to a first-glance feeling on New York time  Verse 1 Taylor Swift  
 4     4 Back when you fit in my poems like a perfect rh… Verse 1 Taylor Swift  
 5     5 Took off faster than a green light, go           Verse 1 Taylor Swift  
 6     6 Hey, you skip the conversation when you already… Verse 1 Taylor Swift  
 7     7 I left a note on the door with a joke we'd made  Verse 1 Taylor Swift  
 8     8 And that was the first day                       Verse 1 Taylor Swift  
 9     9 And darling, it was good                         Chorus  Taylor Swift  
10    10 Never looking down                               Chorus  Taylor Swift  
# â„ą 34 more rows

[[111]]
# A tibble: 23 Ă— 4
    line lyric                                            element element_artist
   <int> <chr>                                            <chr>   <chr>         
 1     1 Long handwritten note, deep in your pocket       Verse 1 Taylor Swift  
 2     2 Words, how little they mean, when you're a litt… Verse 1 Taylor Swift  
 3     3 I stood right by the tracks, your face in a loc… Verse 1 Taylor Swift  
 4     4 Good girls, hopeful they'll be and long they wi… Verse 1 Taylor Swift  
 5     5 We had a beautiful magic love affair             Chorus  Taylor Swift  
 6     6 What a sad, beautiful, tragic love affair        Chorus  Taylor Swift  
 7     7 In dreams, I meet you in warm conversation       Verse 2 Taylor Swift  
 8     8 We both wake in lonely beds, different cities    Verse 2 Taylor Swift  
 9     9 And time is taking its sweet time erasing you    Verse 2 Taylor Swift  
10    10 And you've got your demons                       Verse 2 Taylor Swift  
# â„ą 13 more rows

[[112]]
# A tibble: 39 Ă— 4
    line lyric                                            element element_artist
   <int> <chr>                                            <chr>   <chr>         
 1     1 New to town with a made up name                  Verse 1 Taylor Swift  
 2     2 In the angel's city, chasing fortune and fame    Verse 1 Taylor Swift  
 3     3 And the camera flashes make it look like a dream Verse 1 Taylor Swift  
 4     4 You had it figured out since you were in school  Verse 1 Taylor Swift  
 5     5 Everybody loves pretty, everybody loves cool     Verse 1 Taylor Swift  
 6     6 So overnight, you look like a sixties queen      Verse 1 Taylor Swift  
 7     7 Another name goes up in lights                   Pre-Ch… Taylor Swift  
 8     8 Like diamonds in the sky                         Pre-Ch… Taylor Swift  
 9     9 And they'll tell you now, you're the lucky one   Chorus… Taylor Swift  
10    10 Yeah, they'll tell you now, you're the lucky one Chorus… Taylor Swift  
# â„ą 29 more rows

[[113]]
# A tibble: 66 Ă— 4
    line lyric                                       element    element_artist
   <int> <chr>                                       <chr>      <chr>         
 1     1 (You good to go?)                           Intro      Taylor Swift  
 2     2 All I knew this morning when I woke         Verse 1    Taylor Swift  
 3     3 Is I know something now                     Verse 1    Taylor Swift  
 4     4 Know something now I didn't before          Verse 1    Taylor Swift  
 5     5 And all I've seen since 18 hours ago        Verse 1    Taylor Swift  
 6     6 Is green eyes and freckles and your smile   Verse 1    Taylor Swift  
 7     7 In the back of my mind, making me feel like Verse 1    Taylor Swift  
 8     8 I just wanna know you better                Pre-Chorus Taylor Swift  
 9     9 Know you better, know you better now        Pre-Chorus Taylor Swift  
10    10 I just wanna know you better                Pre-Chorus Taylor Swift  
# â„ą 56 more rows

[[114]]
# A tibble: 47 Ă— 4
    line lyric                                            element element_artist
   <int> <chr>                                            <chr>   <chr>         
 1     1 "I said, \"Oh, my, what a marvelous tune\""      Chorus  Taylor Swift  
 2     2 "It was the best night, never would forget how … Chorus  Taylor Swift  
 3     3 "The whole place was dressed to the nines"       Chorus  Taylor Swift  
 4     4 "And we were dancing, dancing"                   Chorus  Taylor Swift  
 5     5 "Like we're made of starlight"                   Chorus  Taylor Swift  
 6     6 "Like we're made of starlight"                   Chorus  Taylor Swift  
 7     7 "I met Bobby on the boardwalk, summer of '45"    Verse 1 Taylor Swift  
 8     8 "Picked me up, late one night at the window"     Verse 1 Taylor Swift  
 9     9 "We were 17 and crazy, running wild, wild"       Verse 1 Taylor Swift  
10    10 "Can't remember what song it was playing when w… Verse 1 Taylor Swift  
# â„ą 37 more rows

[[115]]
# A tibble: 35 Ă— 4
    line lyric                                            element element_artist
   <int> <chr>                                            <chr>   <chr>         
 1     1 Took a deep breath in the mirror                 Verse 1 Taylor Swift  
 2     2 He didn't like it when I wore high heels, but I… Verse 1 Taylor Swift  
 3     3 Turn the lock and put my headphones on           Verse 1 Taylor Swift  
 4     4 He always said he didn't get this song but I do… Verse 1 Taylor Swift  
 5     5 Walked in, expecting you'd be late               Verse 1 Taylor Swift  
 6     6 But you got here early and you stand and wave    Verse 1 Taylor Swift  
 7     7 I walk to you                                    Verse 1 Taylor Swift  
 8     8 You pull my chair out and help me in             Verse 1 Taylor Swift  
 9     9 And you don't know how nice that is, but I do    Verse 1 Taylor Swift  
10    10 And you throw your head back laughing like a li… Chorus  Taylor Swift  
# â„ą 25 more rows

[[116]]
# A tibble: 62 Ă— 4
    line lyric                                            element element_artist
   <int> <chr>                                            <chr>   <chr>         
 1     1 "You should've been there"                       Verse 1 Taylor Swift  
 2     2 "Should've burst through the door"               Verse 1 Taylor Swift  
 3     3 "With that \"Baby, I'm right here\" smile"       Verse 1 Taylor Swift  
 4     4 "And it would've felt like"                      Verse 1 Taylor Swift  
 5     5 "A million little shining stars had just aligne… Verse 1 Taylor Swift  
 6     6 "And I would've been so happy"                   Verse 1 Taylor Swift  
 7     7 "Christmas lights glisten"                       Verse 2 Taylor Swift  
 8     8 "I've got my eye on the door"                    Verse 2 Taylor Swift  
 9     9 "Just waiting for you to walk in"                Verse 2 Taylor Swift  
10    10 "But the time is ticking"                        Verse 2 Taylor Swift  
# â„ą 52 more rows

[[117]]
# A tibble: 46 Ă— 4
    line lyric                                        element     element_artist
   <int> <chr>                                        <chr>       <chr>         
 1     1 You said it in a simple way                  Verse 1     Taylor Swift  
 2     2 4 AM, the second day                         Verse 1     Taylor Swift  
 3     3 How strange that I don't know you at all     Verse 1     Taylor Swift  
 4     4 Stumbled through the long goodbye            Verse 1     Taylor Swift  
 5     5 One last kiss, then catch your flight        Verse 1     Taylor Swift  
 6     6 Right when I was just about to fall          Verse 1     Taylor Swift  
 7     7 I told myself, don't get attached            Pre-Chorus… Taylor Swift  
 8     8 But in my mind, I play it back               Pre-Chorus… Taylor Swift  
 9     9 Spinning faster than the plane that took you Pre-Chorus… Taylor Swift  
10    10 And this is when the feeling sinks in        Chorus      Taylor Swift  
# â„ą 36 more rows

[[118]]
# A tibble: 56 Ă— 4
    line lyric                                            element element_artist
   <int> <chr>                                            <chr>   <chr>         
 1     1 Don't look at me, you got a girl at home         Intro   Taylor Swift  
 2     2 And everybody knows that, everybody knows that,… Intro   Taylor Swift  
 3     3 Don't look at me, you got a girl at home         Intro   Taylor Swift  
 4     4 And everybody knows that                         Intro   Taylor Swift  
 5     5 I don't even know her                            Verse 1 Taylor Swift  
 6     6 But I feel a responsibility to do what's upstan… Verse 1 Taylor Swift  
 7     7 It's kinda like a code, yeah                     Verse 1 Taylor Swift  
 8     8 And you've been getting closer and closer        Verse 1 Taylor Swift  
 9     9 And crossing so many lines                       Verse 1 Taylor Swift  
10    10 And it would be a fine proposition               Pre-Ch… Taylor Swift  
# â„ą 46 more rows

[[119]]
# A tibble: 51 Ă— 4
    line lyric                         element element_artist
   <int> <chr>                         <chr>   <chr>         
 1     1 Put your lips close to mine   Verse 1 Taylor Swift  
 2     2 As long as they don't touch   Verse 1 Taylor Swift  
 3     3 Out of focus, eye to eye      Verse 1 Taylor Swift  
 4     4 Till the gravity's too much   Verse 1 Taylor Swift  
 5     5 And I'll do anything you say  Verse 1 Taylor Swift  
 6     6 If you say it with your hands Verse 1 Taylor Swift  
 7     7 And I'd be smart to walk away Verse 1 Taylor Swift  
 8     8 But you're quicksand          Verse 1 Taylor Swift  
 9     9 This slope is treacherous     Chorus  Taylor Swift  
10    10 This path is reckless         Chorus  Taylor Swift  
# â„ą 41 more rows

[[120]]
# A tibble: 42 Ă— 4
    line lyric                                            element element_artist
   <int> <chr>                                            <chr>   <chr>         
 1     1 Loving him is like                               Verse 1 Taylor Swift  
 2     2 Driving a new Maserati down a dead end street    Verse 1 Taylor Swift  
 3     3 Faster than the wind, passionate as sin, ending… Verse 1 Taylor Swift  
 4     4 Loving him is like                               Verse 1 Taylor Swift  
 5     5 Trying to change your mind once you're already … Verse 1 Taylor Swift  
 6     6 Like the colors in autumn                        Verse 1 Taylor Swift  
 7     7 So bright, just before they lose it all          Verse 1 Taylor Swift  
 8     8 Losing him was blue like I'd never known         Chorus  Taylor Swift  
 9     9 Missing him was dark grey, all alone             Chorus  Taylor Swift  
10    10 Forgetting him was like trying to know somebody… Chorus  Taylor Swift  
# â„ą 32 more rows

[[121]]
# A tibble: 36 Ă— 4
    line lyric                                            element element_artist
   <int> <chr>                                            <chr>   <chr>         
 1     1 I'm walking fast through the traffic lights      Verse 1 Taylor Swift  
 2     2 Busy streets and busy lives                      Verse 1 Taylor Swift  
 3     3 And all we know is touch and go                  Verse 1 Taylor Swift  
 4     4 We are alone with our changing minds             Verse 1 Taylor Swift  
 5     5 We fall in love till it hurts or bleeds, or fad… Verse 1 Taylor Swift  
 6     6 And I never saw you coming                       Chorus  Taylor Swift  
 7     7 And I'll never be the same                       Chorus  Taylor Swift  
 8     8 You come around and the armor falls              Verse 2 Taylor Swift  
 9     9 Pierce the room like a cannon ball               Verse 2 Taylor Swift  
10    10 Now all we know, is don't let go                 Verse 2 Taylor Swift  
# â„ą 26 more rows

[[122]]
# A tibble: 45 Ă— 4
    line lyric                                       element element_artist
   <int> <chr>                                       <chr>   <chr>         
 1     1 I'm walkin' fast through the traffic lights Verse 1 Taylor Swift  
 2     2 Busy streets and busy lives                 Verse 1 Taylor Swift  
 3     3 And all we know, is touch and go            Verse 1 Taylor Swift  
 4     4 We are alone with our changin' minds        Verse 1 Taylor Swift  
 5     5 We fall in love 'til it hurts or bleeds     Verse 1 Taylor Swift  
 6     6 Or fades in time                            Verse 1 Taylor Swift  
 7     7 And I never (I never)                       Chorus  Taylor Swift  
 8     8 Saw you comin'                              Chorus  Taylor Swift  
 9     9 And I'll never (I'll never)                 Chorus  Taylor Swift  
10    10 Be the same                                 Chorus  Taylor Swift  
# â„ą 35 more rows

[[123]]
# A tibble: 58 Ă— 4
    line lyric                                            element element_artist
   <int> <chr>                                            <chr>   <chr>         
 1     1 Loving him is like driving a new Maserati down … Verse 1 Taylor Swift  
 2     2 Faster than the wind, passionate as sin, ending… Verse 1 Taylor Swift  
 3     3 Loving him is like trying to change your mind o… Verse 1 Taylor Swift  
 4     4 Like the colors in autumn, so bright, just befo… Verse 1 Taylor Swift  
 5     5 Losing him was blue like I'd never known         Chorus  Taylor Swift  
 6     6 Missing him was dark gray, all alone             Chorus  Taylor Swift  
 7     7 Forgetting him was like trying to know somebody… Chorus  Taylor Swift  
 8     8 But loving him was red                           Chorus  Taylor Swift  
 9     9 (Red, red, red)                                  Post-C… Taylor Swift  
10    10 (Red, red, red)                                  Post-C… Taylor Swift  
# â„ą 48 more rows

[[124]]
# A tibble: 46 Ă— 4
    line lyric                         element element_artist
   <int> <chr>                         <chr>   <chr>         
 1     1 Put your lips close to mine   Verse 1 Taylor Swift  
 2     2 As long as they don't touch   Verse 1 Taylor Swift  
 3     3 Out of focus, eye to eye      Verse 1 Taylor Swift  
 4     4 'Til the gravity's too much   Verse 1 Taylor Swift  
 5     5 And I'll do anything you say  Verse 1 Taylor Swift  
 6     6 If you say it with your hands Verse 1 Taylor Swift  
 7     7 And I'd be smart to walk away Verse 1 Taylor Swift  
 8     8 But you're quicksand          Verse 1 Taylor Swift  
 9     9 This slope is treacherous     Chorus  Taylor Swift  
10    10 This path is reckless         Chorus  Taylor Swift  
# â„ą 36 more rows

[[125]]
# A tibble: 61 Ă— 4
    line lyric                                            element element_artist
   <int> <chr>                                            <chr>   <chr>         
 1     1 Once upon a time, a few mistakes ago             Verse 1 Taylor Swift  
 2     2 I was in your sights, you got me alone           Verse 1 Taylor Swift  
 3     3 You found me, you found me, you found me         Verse 1 Taylor Swift  
 4     4 I guess you didn't care, and I guess I liked th… Verse 1 Taylor Swift  
 5     5 And when I fell hard, you took a step back       Verse 1 Taylor Swift  
 6     6 Without me, without me, without me               Verse 1 Taylor Swift  
 7     7 And he's long gone when he's next to me          Pre-Ch… Taylor Swift  
 8     8 And I realize the blame is on me                 Pre-Ch… Taylor Swift  
 9     9 'Cause I knew you were trouble when you walked … Chorus  Taylor Swift  
10    10 So shame on me now                               Chorus  Taylor Swift  
# â„ą 51 more rows

[[126]]
# A tibble: 58 Ă— 4
    line lyric                                            element element_artist
   <int> <chr>                                            <chr>   <chr>         
 1     1 I walked through the door with you, the air was… Intro   Taylor Swift  
 2     2 But something 'bout it felt like home somehow    Intro   Taylor Swift  
 3     3 And I left my scarf there at your sister's house Intro   Taylor Swift  
 4     4 And you've still got it in your drawer, even now Intro   Taylor Swift  
 5     5 Oh, your sweet disposition and my wide-eyed gaze Verse 1 Taylor Swift  
 6     6 We're singing in the car, getting lost upstate   Verse 1 Taylor Swift  
 7     7 Autumn leaves falling down like pieces into pla… Verse 1 Taylor Swift  
 8     8 And I can picture it after all these days        Verse 1 Taylor Swift  
 9     9 And I know it's long gone and                    Pre-Ch… Taylor Swift  
10    10 That magic's not here no more                    Pre-Ch… Taylor Swift  
# â„ą 48 more rows

[[127]]
# A tibble: 80 Ă— 4
    line lyric                                            element element_artist
   <int> <chr>                                            <chr>   <chr>         
 1     1 It feels like a perfect night                    Verse 1 Taylor Swift  
 2     2 To dress up like hipsters                        Verse 1 Taylor Swift  
 3     3 And make fun of our exes                         Verse 1 Taylor Swift  
 4     4 Uh-uh, uh-uh                                     Verse 1 Taylor Swift  
 5     5 It feels like a perfect night                    Verse 1 Taylor Swift  
 6     6 For breakfast at midnight                        Verse 1 Taylor Swift  
 7     7 To fall in love with strangers                   Verse 1 Taylor Swift  
 8     8 Uh-uh, uh-uh                                     Verse 1 Taylor Swift  
 9     9 Yeah                                             Pre-Ch… Taylor Swift  
10    10 We're happy, free, confused, and lonely at the … Pre-Ch… Taylor Swift  
# â„ą 70 more rows

[[128]]
# A tibble: 35 Ă— 4
    line lyric                                            element element_artist
   <int> <chr>                                            <chr>   <chr>         
 1     1 I bet this time of night, you're still up        Verse 1 Taylor Swift  
 2     2 I bet you're tired from a long hard week         Verse 1 Taylor Swift  
 3     3 I bet you're sittin' in your chair by the window Verse 1 Taylor Swift  
 4     4 Looking out at the city, and I bet               Verse 1 Taylor Swift  
 5     5 Sometimes you wonder 'bout me                    Verse 1 Taylor Swift  
 6     6 And I just wanna tell you                        Chorus  Taylor Swift  
 7     7 It takes everything in me not to call you        Chorus  Taylor Swift  
 8     8 And I wish I could run to you                    Chorus  Taylor Swift  
 9     9 And I hope you know that                         Chorus  Taylor Swift  
10    10 Every time I don't, I almost do, I almost do     Chorus  Taylor Swift  
# â„ą 25 more rows

[[129]]
# A tibble: 52 Ă— 4
    line lyric                                            element element_artist
   <int> <chr>                                            <chr>   <chr>         
 1     1 "I remember when we broke up the first time"     Verse 1 Taylor Swift  
 2     2 "Saying, \"This is it, I've had enough,\" 'caus… Verse 1 Taylor Swift  
 3     3 "We hadn't seen each other in a month"           Verse 1 Taylor Swift  
 4     4 "When you said you needed space (What?)"         Verse 1 Taylor Swift  
 5     5 "Then you come around again and say"             Verse 1 Taylor Swift  
 6     6 "\"Baby, I miss you and I swear I'm gonna chang… Verse 1 Taylor Swift  
 7     7 "Remember how that lasted for a day?"            Verse 1 Taylor Swift  
 8     8 "I say, \"I hate you,\" we break up, you call m… Verse 1 Taylor Swift  
 9     9 "Ooh-ooh-ooh-ooh-ooh"                            Pre-Ch… Taylor Swift  
10    10 "We called it off again last night, but"         Pre-Ch… Taylor Swift  
# â„ą 42 more rows

[[130]]
# A tibble: 41 Ă— 4
    line lyric                                            element element_artist
   <int> <chr>                                            <chr>   <chr>         
 1     1 "I'm pretty sure we almost broke up last night"  Verse 1 Taylor Swift  
 2     2 "I threw my phone across the room, at you"       Verse 1 Taylor Swift  
 3     3 "I was expecting some dramatic turn away"        Verse 1 Taylor Swift  
 4     4 "But you stayed"                                 Verse 1 Taylor Swift  
 5     5 "This morning, I said we should talk about it"   Verse 1 Taylor Swift  
 6     6 "'Cause I read you should never leave a fight u… Verse 1 Taylor Swift  
 7     7 "That's when you came in wearing a football hel… Verse 1 Taylor Swift  
 8     8 "And said, \"Okay, let's talk\""                 Verse 1 Taylor Swift  
 9     9 "And I said"                                     Verse 1 Taylor Swift  
10    10 "Stay, stay, stay"                               Chorus  Taylor Swift  
# â„ą 31 more rows

[[131]]
# A tibble: 58 Ă— 4
    line lyric                            element    element_artist
   <int> <chr>                            <chr>      <chr>         
 1     1 Find myself at your door         Verse 1    Taylor Swift  
 2     2 Just like all those times before Verse 1    Taylor Swift  
 3     3 I'm not sure how I got there     Verse 1    Taylor Swift  
 4     4 All roads they lead me here      Verse 1    Taylor Swift  
 5     5 I imagine you are home           Verse 1    Taylor Swift  
 6     6 In your room, all alone          Verse 1    Taylor Swift  
 7     7 And you open your eyes into mine Verse 1    Taylor Swift  
 8     8 And everything feels better      Verse 1    Taylor Swift  
 9     9 And right before your eyes       Pre-Chorus Taylor Swift  
10    10 I'm breaking, no past            Pre-Chorus Taylor Swift  
# â„ą 48 more rows

[[132]]
# A tibble: 45 Ă— 4
    line lyric                                            element element_artist
   <int> <chr>                                            <chr>   <chr>         
 1     1 I was reminiscing just the other day             Verse 1 Taylor Swift  
 2     2 While having coffee all alone                    Verse 1 Taylor Swift  
 3     3 And Lord it took me away                         Verse 1 Taylor Swift  
 4     4 Back to a first-glance feeling on New York time  Verse 1 Taylor Swift  
 5     5 Back when you fit my poems like a perfect rhyme  Verse 1 Taylor Swift  
 6     6 Took off faster than a green light, go           Verse 1 Taylor Swift  
 7     7 Yeah you skip the conversation when you already… Verse 1 Taylor Swift  
 8     8 I left a note on the door with a joke we'd made  Verse 1 Taylor Swift  
 9     9 And that was the first day                       Verse 1 Taylor Swift  
10    10 And darling it was good                          Chorus  Taylor Swift  
# â„ą 35 more rows

[[133]]
# A tibble: 23 Ă— 4
    line lyric                                            element element_artist
   <int> <chr>                                            <chr>   <chr>         
 1     1 Long handwritten note, deep in your pocket       Verse 1 Taylor Swift  
 2     2 Words, how little they mean, when you're a litt… Verse 1 Taylor Swift  
 3     3 I stood right by the tracks, your face in a loc… Verse 1 Taylor Swift  
 4     4 Good girls, hopeful they'll be and long they wi… Verse 1 Taylor Swift  
 5     5 We had a beautiful magic love there              Chorus  Taylor Swift  
 6     6 What a sad, beautiful, tragic love affair        Chorus  Taylor Swift  
 7     7 In dreams, I meet you in warm conversation       Verse 2 Taylor Swift  
 8     8 And we both wake in lonely beds, different citi… Verse 2 Taylor Swift  
 9     9 And time is taking its sweet time erasing you    Verse 2 Taylor Swift  
10    10 And you've got your demons                       Verse 2 Taylor Swift  
# â„ą 13 more rows

[[134]]
# A tibble: 40 Ă— 4
    line lyric                                            element element_artist
   <int> <chr>                                            <chr>   <chr>         
 1     1 New to town with a made-up name                  Verse 1 Taylor Swift  
 2     2 In the angel's city, chasing fortune and fame    Verse 1 Taylor Swift  
 3     3 And the camera flashes make it look like a dream Verse 1 Taylor Swift  
 4     4 You had it figured out since you were in school  Verse 1 Taylor Swift  
 5     5 Everybody loves pretty, everybody loves cool     Verse 1 Taylor Swift  
 6     6 So overnight, you look like a sixties queen      Verse 1 Taylor Swift  
 7     7 Another name goes up in lights                   Pre-Ch… Taylor Swift  
 8     8 Like diamonds in the sky                         Pre-Ch… Taylor Swift  
 9     9 And they'll tell you now, you're the lucky one   Chorus  Taylor Swift  
10    10 Yeah, they'll tell you now, you're the lucky one Chorus  Taylor Swift  
# â„ą 30 more rows

[[135]]
# A tibble: 66 Ă— 4
    line lyric                                       element    element_artist
   <int> <chr>                                       <chr>      <chr>         
 1     1 (You good to go?)                           Intro      Taylor Swift  
 2     2 All I knew this morning when I woke         Verse 1    Taylor Swift  
 3     3 Is I know something now                     Verse 1    Taylor Swift  
 4     4 Know something now I didn't before          Verse 1    Taylor Swift  
 5     5 And all I've seen since 18 hours ago        Verse 1    Taylor Swift  
 6     6 Is green eyes and freckles and your smile   Verse 1    Taylor Swift  
 7     7 In the back of my mind, making me feel like Verse 1    Taylor Swift  
 8     8 I just wanna know you better                Pre-Chorus Taylor Swift  
 9     9 Know you better, know you better now        Pre-Chorus Taylor Swift  
10    10 I just wanna know you better                Pre-Chorus Taylor Swift  
# â„ą 56 more rows

[[136]]
# A tibble: 50 Ă— 4
    line lyric                                            element element_artist
   <int> <chr>                                            <chr>   <chr>         
 1     1 "I said, \"Oh my, what a marvelous tune\""       Chorus  Taylor Swift  
 2     2 "It was the best night"                          Chorus  Taylor Swift  
 3     3 "Never would forget how he moved"                Chorus  Taylor Swift  
 4     4 "The whole place was dressed to the nines"       Chorus  Taylor Swift  
 5     5 "And we were dancing, dancing"                   Chorus  Taylor Swift  
 6     6 "Like we're made of starlight"                   Chorus  Taylor Swift  
 7     7 "Like we're made of starlight"                   Chorus  Taylor Swift  
 8     8 "I met Bobby on the boardwalk, summer of '45"    Verse 1 Taylor Swift  
 9     9 "Picks me up late one night"                     Verse 1 Taylor Swift  
10    10 "Out the window, we were seventeen and crazy, r… Verse 1 Taylor Swift  
# â„ą 40 more rows

[[137]]
# A tibble: 35 Ă— 4
    line lyric                                            element element_artist
   <int> <chr>                                            <chr>   <chr>         
 1     1 Took a deep breath in the mirror                 Verse 1 Taylor Swift  
 2     2 He didn't like it when I wore high heels, but I… Verse 1 Taylor Swift  
 3     3 Turn the lock and put my headphones on           Verse 1 Taylor Swift  
 4     4 He always said he didn't get this song, but I d… Verse 1 Taylor Swift  
 5     5 Walked in, expecting you'd be late               Verse 1 Taylor Swift  
 6     6 But you got here early and you stand and wave    Verse 1 Taylor Swift  
 7     7 I walk to you                                    Verse 1 Taylor Swift  
 8     8 You pull my chair out and help me in             Verse 1 Taylor Swift  
 9     9 And you don't know how nice that is, but I do    Verse 1 Taylor Swift  
10    10 And you throw your head back laughing like a li… Chorus  Taylor Swift  
# â„ą 25 more rows

[[138]]
# A tibble: 62 Ă— 4
    line lyric                                            element element_artist
   <int> <chr>                                            <chr>   <chr>         
 1     1 "You should've been there"                       Verse 1 Taylor Swift  
 2     2 "Should've burst through the door"               Verse 1 Taylor Swift  
 3     3 "With that \"Baby, I'm right here\" smile"       Verse 1 Taylor Swift  
 4     4 "And it would've felt like"                      Verse 1 Taylor Swift  
 5     5 "A million little shining stars had just aligne… Verse 1 Taylor Swift  
 6     6 "And I would've been so happy"                   Verse 1 Taylor Swift  
 7     7 "Christmas lights glisten"                       Verse 2 Taylor Swift  
 8     8 "I've got my eye on the door"                    Verse 2 Taylor Swift  
 9     9 "Just waiting for you to walk in"                Verse 2 Taylor Swift  
10    10 "But the time is ticking"                        Verse 2 Taylor Swift  
# â„ą 52 more rows

[[139]]
# A tibble: 46 Ă— 4
    line lyric                                        element    element_artist
   <int> <chr>                                        <chr>      <chr>         
 1     1 You said it in a simple way                  Verse 1    Taylor Swift  
 2     2 4 AM, the second day                         Verse 1    Taylor Swift  
 3     3 How strange that I don't know you at all     Verse 1    Taylor Swift  
 4     4 Stumbled through the long goodbye            Verse 1    Taylor Swift  
 5     5 One last kiss, then catch your flight        Verse 1    Taylor Swift  
 6     6 Right when I was just about to fall          Verse 1    Taylor Swift  
 7     7 I told myself, don't get attached            Pre-Chorus Taylor Swift  
 8     8 But in my mind, I play it back               Pre-Chorus Taylor Swift  
 9     9 Spinning faster than the plane that took you Pre-Chorus Taylor Swift  
10    10 And this is when the feeling sinks in        Chorus     Taylor Swift  
# â„ą 36 more rows

[[140]]
# A tibble: 56 Ă— 4
    line lyric                                            element element_artist
   <int> <chr>                                            <chr>   <chr>         
 1     1 Don't look at me, you got a girl at home         Intro   Taylor Swift  
 2     2 And everybody knows that, everybody knows that,… Intro   Taylor Swift  
 3     3 Don't look at me, you got a girl at home         Intro   Taylor Swift  
 4     4 And everybody knows that                         Intro   Taylor Swift  
 5     5 I don't even know her                            Verse 1 Taylor Swift  
 6     6 But I feel a responsibility                      Verse 1 Taylor Swift  
 7     7 To do what's upstanding and right                Verse 1 Taylor Swift  
 8     8 It's kinda like a code, yeah                     Verse 1 Taylor Swift  
 9     9 And you've been getting closer and closer        Verse 1 Taylor Swift  
10    10 And crossing so many lines                       Verse 1 Taylor Swift  
# â„ą 46 more rows

[[141]]
# A tibble: 44 Ă— 4
    line lyric                                       element element_artist
   <int> <chr>                                       <chr>   <chr>         
 1     1 I'm walking fast through the traffic lights Verse 1 Taylor Swift  
 2     2 Busy streets and busy lives                 Verse 1 Taylor Swift  
 3     3 And all we know is touch and go             Verse 1 Taylor Swift  
 4     4 We are alone with our changing minds        Verse 1 Taylor Swift  
 5     5 We fall in love 'til it hurts or bleeds     Verse 1 Taylor Swift  
 6     6 Or fades in time                            Verse 1 Taylor Swift  
 7     7 And I never                                 Chorus  Taylor Swift  
 8     8 Saw you comin'                              Chorus  Taylor Swift  
 9     9 And I'll never                              Chorus  Taylor Swift  
10    10 Be the same                                 Chorus  Taylor Swift  
# â„ą 34 more rows

[[142]]
# A tibble: 40 Ă— 4
    line lyric                                            element element_artist
   <int> <chr>                                            <chr>   <chr>         
 1     1 I remember your bare feet, down the hallway      Verse 1 Taylor Swift  
 2     2 I remember your little laugh                     Verse 1 Taylor Swift  
 3     3 Race cars on the kitchen floor, plastic dinosau… Verse 1 Taylor Swift  
 4     4 I love you to the moon and back                  Verse 1 Taylor Swift  
 5     5 I remember your blue eyes looking into mine      Verse 1 Taylor Swift  
 6     6 Like we had our own secret club                  Verse 1 Taylor Swift  
 7     7 I remember you dancing before bedtime            Verse 1 Taylor Swift  
 8     8 Then jumping on me, waking me up                 Verse 1 Taylor Swift  
 9     9 I can still feel you hold my hand, little man    Verse 1 Taylor Swift  
10    10 And even the moment I knew                       Verse 1 Taylor Swift  
# â„ą 30 more rows

[[143]]
# A tibble: 54 Ă— 4
    line lyric                                            element element_artist
   <int> <chr>                                            <chr>   <chr>         
 1     1 "I know I'm probably better off on my own"       Verse 1 Taylor Swift  
 2     2 "Than lovin' a man who didn't know what he had … Verse 1 Taylor Swift  
 3     3 "And I see the permanent damage you did to me"   Verse 1 Taylor Swift  
 4     4 "Never again, I just wish I could forget when i… Verse 1 Taylor Swift  
 5     5 "I wish it wasn't 4 AM, standing in the mirror"  Pre-Ch… Taylor Swift  
 6     6 "Saying to myself, \"You know you had to do it\… Pre-Ch… Taylor Swift  
 7     7 "I know the bravest thing I ever did was run"    Pre-Ch… Taylor Swift  
 8     8 "Sometimes, in the middle of the night, I can f… Chorus  Taylor Swift  
 9     9 "But I just miss you, and I just wish you were … Chorus  Taylor Swift  
10    10 "And I know why we had to say goodbye like the … Chorus  Taylor Swift  
# â„ą 44 more rows

[[144]]
# A tibble: 45 Ă— 4
    line lyric                                            element element_artist
   <int> <chr>                                            <chr>   <chr>         
 1     1 "They tell you while you're young"               Verse 1 Taylor Swift  
 2     2 "\"Girls, go out and have your fun\""            Verse 1 Taylor Swift  
 3     3 "Then they hunt and slay the ones who actually … Verse 1 Taylor Swift  
 4     4 "Criticize the way you fly"                      Verse 1 Taylor Swift  
 5     5 "When you're soaring through the sky"            Verse 1 Taylor Swift  
 6     6 "Shoot you down and then they sigh"              Verse 1 Taylor Swift  
 7     7 "And say, \"She looks like she's been through i… Verse 1 Taylor Swift  
 8     8 "Lord, what will become of me"                   Verse 1 Taylor Swift  
 9     9 "Once I've lost my novelty?"                     Verse 1 Taylor Swift  
10    10 "I've had too much to drink tonight"             Chorus  Taylor Swift  
# â„ą 35 more rows

[[145]]
# A tibble: 43 Ă— 4
    line lyric                                            element element_artist
   <int> <chr>                                            <chr>   <chr>         
 1     1 "What about your promises, promises?"            Intro   Taylor Swift  
 2     2 "What about your promises, promises, promises? … Intro   Taylor Swift  
 3     3 "What a shame"                                   Verse 1 Taylor Swift  
 4     4 "Didn't wanna be the one that got away, yeah"    Verse 1 Taylor Swift  
 5     5 "Big mistake, you broke the sweetest promise"    Verse 1 Taylor Swift  
 6     6 "That you never should have made"                Verse 1 Taylor Swift  
 7     7 "I'm here on the kitchen floor"                  Pre-Ch… Taylor Swift  
 8     8 "You call, but I won't hear it"                  Pre-Ch… Taylor Swift  
 9     9 "You said, \"No one else\""                      Pre-Ch… Taylor Swift  
10    10 "How could you do this, babe? (What about your … Pre-Ch… Taylor Swift  
# â„ą 33 more rows

[[146]]
# A tibble: 44 Ă— 4
    line lyric                                            element element_artist
   <int> <chr>                                            <chr>   <chr>         
 1     1 I know that you like me                          Verse 1 Taylor Swift  
 2     2 And it's kinda frightening standin' here waitin… Verse 1 Taylor Swift  
 3     3 And I became hypnotized by freckles and bright … Verse 1 Taylor Swift  
 4     4 But now you're so far away and I'm down          Pre-Ch… Taylor Swift  
 5     5 Feelin' like a face in the crowd                 Pre-Ch… Taylor Swift  
 6     6 I'm reachin' for you, terrified                  Pre-Ch… Taylor Swift  
 7     7 'Cause you could be the one that I love          Chorus  Taylor Swift  
 8     8 I could be the one that you dream of             Chorus  Taylor Swift  
 9     9 A message in a bottle is all I can do            Chorus  Taylor Swift  
10    10 Standin' here, hopin' it gets to you             Chorus  Taylor Swift  
# â„ą 34 more rows

[[147]]
# A tibble: 49 Ă— 4
    line lyric                                            element element_artist
   <int> <chr>                                            <chr>   <chr>         
 1     1 3 AM and I'm still awake, I'll bet you're just … Verse 1 Taylor Swift  
 2     2 Fast asleep in your city that's better than mine Verse 1 Taylor Swift  
 3     3 And the girl in your bed has a fine pedigree     Verse 1 Taylor Swift  
 4     4 And I'll bet your friends tell you she's better… Verse 1 Taylor Swift  
 5     5 Well, I tried to fit in with your upper-crust c… Verse 2 Taylor Swift  
 6     6 Yeah, they let me sit in back when we were in l… Verse 2 Taylor Swift  
 7     7 Oh, they sit around talkin' about the meaning o… Verse 2 Taylor Swift  
 8     8 And the book that just saved 'em that I hadn't … Verse 2 Taylor Swift  
 9     9 But now that we're done and it's over            Chorus  Taylor Swift  
10    10 I bet you couldn't believe                       Chorus  Taylor Swift  
# â„ą 39 more rows

[[148]]
# A tibble: 51 Ă— 4
    line lyric                                            element element_artist
   <int> <chr>                                            <chr>   <chr>         
 1     1 "He says he doesn't believe anything much he he… Verse 1 Taylor Swift  
 2     2 "He says, \"Why fall in love, just so you can w… Verse 1 Taylor Swift  
 3     3 "He spends most of his nights wishing it was ho… Verse 1 Taylor Swift  
 4     4 "He spends most of his flights getting pulled d… Verse 1 Taylor Swift  
 5     5 "I call, just checking up on him"                Verse 1 Taylor Swift  
 6     6 "He's up, 3 AM, pacing"                          Verse 1 Taylor Swift  
 7     7 "He says, \"It's not just a phase I'm in\""      Verse 1 Taylor Swift  
 8     8 "My voice comes out begging"                     Verse 1 Taylor Swift  
 9     9 "All this time I didn't know"                    Chorus  Taylor Swift  
10    10 "You were breaking down"                         Chorus  Taylor Swift  
# â„ą 41 more rows

[[149]]
# A tibble: 50 Ă— 4
    line lyric                                            element element_artist
   <int> <chr>                                            <chr>   <chr>         
 1     1 "One, two, three, four"                          Intro   Taylor Swift  
 2     2 "Give me the keys, I'll bring the car back arou… Verse 1 Taylor Swift  
 3     3 "We shouldn't be in this town"                   Verse 1 Taylor Swift  
 4     4 "And my so-called friends, they don't know"      Verse 1 Taylor Swift  
 5     5 "I'd drive away before I let you go"             Verse 1 Taylor Swift  
 6     6 "So give me a reason and don't say no, no"       Verse 1 Taylor Swift  
 7     7 "There's a chain 'round your throat, piece of p… Verse 1 Taylor Swift  
 8     8 "\"I'll wait for you\""                          Verse 1 Taylor Swift  
 9     9 "There's a key on the chain, there's a picture … Verse 1 Taylor Swift  
10    10 "Take it with you"                               Verse 1 Taylor Swift  
# â„ą 40 more rows

[[150]]
# A tibble: 63 Ă— 4
    line lyric                                       element element_artist
   <int> <chr>                                       <chr>   <chr>         
 1     1 I wish I could fly                          Chorus  Taylor Swift  
 2     2 I'd pick you up and we'd go back in time    Chorus  Taylor Swift  
 3     3 I'd write this in the sky                   Chorus  Taylor Swift  
 4     4 I miss you like it was the very first night Chorus  Taylor Swift  
 5     5 And so it goes                              Verse 1 Taylor Swift  
 6     6 Every weekend the same party                Verse 1 Taylor Swift  
 7     7 I never go alone                            Verse 1 Taylor Swift  
 8     8 And I don't seem broken hearted             Verse 1 Taylor Swift  
 9     9 My friends all say they know                Verse 1 Taylor Swift  
10    10 Everything I'm going through                Verse 1 Taylor Swift  
# â„ą 53 more rows

[[151]]
# A tibble: 111 Ă— 4
    line lyric                                            element element_artist
   <int> <chr>                                            <chr>   <chr>         
 1     1 I walked through the door with you, the air was… Verse 1 Taylor Swift  
 2     2 But something 'bout it felt like home somehow    Verse 1 Taylor Swift  
 3     3 And I left my scarf there at your sister's house Verse 1 Taylor Swift  
 4     4 And you've still got it in your drawer, even now Verse 1 Taylor Swift  
 5     5 Oh, your sweet disposition and my wide-eyed gaze Verse 1 Taylor Swift  
 6     6 We're singing in the car, getting lost upstate   Verse 1 Taylor Swift  
 7     7 Autumn leaves falling down like pieces into pla… Verse 1 Taylor Swift  
 8     8 And I can picture it after all these days        Verse 1 Taylor Swift  
 9     9 And I know it's long gone and                    Pre-Ch… Taylor Swift  
10    10 That magic's not here no more                    Pre-Ch… Taylor Swift  
# â„ą 101 more rows

[[152]]
# A tibble: 44 Ă— 4
    line lyric                                            element element_artist
   <int> <chr>                                            <chr>   <chr>         
 1     1 Walking through a crowd, the village is aglow    Verse 1 Taylor Swift  
 2     2 Kaleidoscope of loud heartbeats under coats      Verse 1 Taylor Swift  
 3     3 Everybody here wanted something more             Verse 1 Taylor Swift  
 4     4 Searching for a sound we hadn't heard before     Verse 1 Taylor Swift  
 5     5 And it said                                      Verse 1 Taylor Swift  
 6     6 Welcome to New York, it's been waiting for you   Chorus  Taylor Swift  
 7     7 Welcome to New York, welcome to New York         Chorus  Taylor Swift  
 8     8 Welcome to New York, it's been waiting for you   Chorus  Taylor Swift  
 9     9 Welcome to New York, welcome to New York         Chorus  Taylor Swift  
10    10 It's a new soundtrack, I could dance to this be… Chorus  Taylor Swift  
# â„ą 34 more rows

[[153]]
# A tibble: 84 Ă— 4
    line lyric                                element element_artist
   <int> <chr>                                <chr>   <chr>         
 1     1 "Nice to meet you, where you been?"  Verse 1 Taylor Swift  
 2     2 "I could show you incredible things" Verse 1 Taylor Swift  
 3     3 "Magic, madness, heaven, sin"        Verse 1 Taylor Swift  
 4     4 "Saw you there, and I thought"       Verse 1 Taylor Swift  
 5     5 "\"Oh my God, look at that face"     Verse 1 Taylor Swift  
 6     6 "You look like my next mistake"      Verse 1 Taylor Swift  
 7     7 "Love's a game, wanna play?\""       Verse 1 Taylor Swift  
 8     8 "Ayy"                                Verse 1 Taylor Swift  
 9     9 "New money, suit and tie"            Verse 2 Taylor Swift  
10    10 "I can read you like a magazine"     Verse 2 Taylor Swift  
# â„ą 74 more rows

[[154]]
# A tibble: 48 Ă— 4
    line lyric                                            element element_artist
   <int> <chr>                                            <chr>   <chr>         
 1     1 Midnight                                         Verse 1 Taylor Swift  
 2     2 You come and pick me up, no headlights           Verse 1 Taylor Swift  
 3     3 A long drive                                     Verse 1 Taylor Swift  
 4     4 Could end in burning flames or paradise          Verse 1 Taylor Swift  
 5     5 Fade into view, oh                               Verse 1 Taylor Swift  
 6     6 It's been a while since I have even heard from … Verse 1 Taylor Swift  
 7     7 (Heard from you)                                 Verse 1 Taylor Swift  
 8     8 And I should just tell you to leave, 'cause I    Verse 1 Taylor Swift  
 9     9 Know exactly where it leads, but I               Verse 1 Taylor Swift  
10    10 Watch us go 'round and 'round each time          Verse 1 Taylor Swift  
# â„ą 38 more rows

[[155]]
# A tibble: 70 Ă— 4
    line lyric                                            element element_artist
   <int> <chr>                                            <chr>   <chr>         
 1     1 Looking at it now                                Verse 1 Taylor Swift  
 2     2 It all seems so simple                           Verse 1 Taylor Swift  
 3     3 We were lying on your couch                      Verse 1 Taylor Swift  
 4     4 I remember                                       Verse 1 Taylor Swift  
 5     5 You took a Polaroid of us                        Verse 1 Taylor Swift  
 6     6 Then discovered (Then discovered)                Verse 1 Taylor Swift  
 7     7 The rest of the world was black and white        Verse 1 Taylor Swift  
 8     8 But we were in screaming color                   Verse 1 Taylor Swift  
 9     9 And I remember thinking                          Verse 1 Taylor Swift  
10    10 Are we out of the woods yet? Are we out of the … Chorus  Taylor Swift  
# â„ą 60 more rows

[[156]]
# A tibble: 67 Ă— 4
    line lyric                                element element_artist
   <int> <chr>                                <chr>   <chr>         
 1     1 (Hey, hey, hey)                      Intro   Taylor Swift  
 2     2 (Hey, hey, hey)                      Intro   Taylor Swift  
 3     3 (Hey, hey, hey)                      Intro   Taylor Swift  
 4     4 (Hey, hey, hey)                      Intro   Taylor Swift  
 5     5 People like you always want back     Verse 1 Taylor Swift  
 6     6 The love they gave away              Verse 1 Taylor Swift  
 7     7 And people like me wanna believe you Verse 1 Taylor Swift  
 8     8 When you say you've changed          Verse 1 Taylor Swift  
 9     9 The more I think about it now        Verse 1 Taylor Swift  
10    10 The less I know                      Verse 1 Taylor Swift  
# â„ą 57 more rows

[[157]]
# A tibble: 77 Ă— 4
    line lyric                                    element    element_artist
   <int> <chr>                                    <chr>      <chr>         
 1     1 I stay out too late                      Verse 1    Taylor Swift  
 2     2 Got nothing in my brain                  Verse 1    Taylor Swift  
 3     3 That's what people say, mmm-mmm          Verse 1    Taylor Swift  
 4     4 That's what people say, mmm-mmm          Verse 1    Taylor Swift  
 5     5 I go on too many dates                   Verse 1    Taylor Swift  
 6     6 But I can't make them stay               Verse 1    Taylor Swift  
 7     7 At least that's what people say, mmm-mmm Verse 1    Taylor Swift  
 8     8 That's what people say, mmm-mmm          Verse 1    Taylor Swift  
 9     9 But I keep cruisin'                      Pre-Chorus Taylor Swift  
10    10 Can't stop, won't stop movin'            Pre-Chorus Taylor Swift  
# â„ą 67 more rows

[[158]]
# A tibble: 77 Ă— 4
    line lyric                                            element element_artist
   <int> <chr>                                            <chr>   <chr>         
 1     1 It's 2AM in your car                             Verse 1 Taylor Swift  
 2     2 Windows down, you pass my street, the memories … Verse 1 Taylor Swift  
 3     3 You say it's in the past, you drive straight ah… Verse 1 Taylor Swift  
 4     4 You're thinking that I hate you now              Verse 1 Taylor Swift  
 5     5 'Cause you still don't know what I never said    Verse 1 Taylor Swift  
 6     6 I wish you would come back                       Chorus… Taylor Swift  
 7     7 Wish I never hung up the phone like I did, I     Chorus… Taylor Swift  
 8     8 Wish you knew that                               Chorus… Taylor Swift  
 9     9 I'd never forget you as long as I live, and I    Chorus… Taylor Swift  
10    10 Wish you were right here, right now, it's all g… Chorus… Taylor Swift  
# â„ą 67 more rows

[[159]]
# A tibble: 70 Ă— 4
    line lyric                                      element element_artist
   <int> <chr>                                      <chr>   <chr>         
 1     1 'Cause baby, now we've got bad blood       Chorus  Taylor Swift  
 2     2 You know it used to be mad love            Chorus  Taylor Swift  
 3     3 So take a look what you've done            Chorus  Taylor Swift  
 4     4 'Cause baby, now we've got bad blood, hey! Chorus  Taylor Swift  
 5     5 Now we've got problems                     Chorus  Taylor Swift  
 6     6 And I don't think we can solve 'em         Chorus  Taylor Swift  
 7     7 You made a really deep cut                 Chorus  Taylor Swift  
 8     8 And baby, now we've got bad blood, hey!    Chorus  Taylor Swift  
 9     9 Did you have to do this?                   Verse 1 Taylor Swift  
10    10 I was thinking that you could be trusted   Verse 1 Taylor Swift  
# â„ą 60 more rows

[[160]]
# A tibble: 64 Ă— 4
    line lyric                                            element element_artist
   <int> <chr>                                            <chr>   <chr>         
 1     1 "He said, \"Let's get out of this town"          Verse 1 Taylor Swift  
 2     2 "Drive out of this city, away from the crowds\"" Verse 1 Taylor Swift  
 3     3 "I thought, \"Heaven can't help me now\""        Verse 1 Taylor Swift  
 4     4 "Nothing lasts forever"                          Verse 1 Taylor Swift  
 5     5 "But this is gonna take me down"                 Verse 1 Taylor Swift  
 6     6 "He's so tall and handsome as hell"              Pre-Ch… Taylor Swift  
 7     7 "He's so bad, but he does it so well"            Pre-Ch… Taylor Swift  
 8     8 "I can see the end as it begins"                 Pre-Ch… Taylor Swift  
 9     9 "My one condition is"                            Pre-Ch… Taylor Swift  
10    10 "Say you'll remember me"                         Chorus  Taylor Swift  
# â„ą 54 more rows

[[161]]
# A tibble: 60 Ă— 4
    line lyric                                            element element_artist
   <int> <chr>                                            <chr>   <chr>         
 1     1 "Oh, oh, oh"                                     Intro   Taylor Swift  
 2     2 "Oh, oh, oh"                                     Intro   Taylor Swift  
 3     3 "Oh-oh, oh-oh"                                   Intro   Taylor Swift  
 4     4 "Stand there like a ghost"                       Verse 1 Taylor Swift  
 5     5 "Shaking from the rain, rain"                    Verse 1 Taylor Swift  
 6     6 "She'll open up the door and say, \"Are you ins… Verse 1 Taylor Swift  
 7     7 "Say it's been a long six months"                Verse 1 Taylor Swift  
 8     8 "And you were too afraid to tell her what you w… Verse 1 Taylor Swift  
 9     9 "And that's how it works"                        Pre-Ch… Taylor Swift  
10    10 "That's how you get the girl"                    Pre-Ch… Taylor Swift  
# â„ą 50 more rows

[[162]]
# A tibble: 51 Ă— 4
    line lyric                                            element element_artist
   <int> <chr>                                            <chr>   <chr>         
 1     1 Clear blue water                                 Verse 1 Taylor Swift  
 2     2 High tide came and brought you in                Verse 1 Taylor Swift  
 3     3 And I could go on and on, on and on and I will   Verse 1 Taylor Swift  
 4     4 Skies grew darker                                Verse 1 Taylor Swift  
 5     5 Currents swept you out again                     Verse 1 Taylor Swift  
 6     6 And you were just gone and gone, gone and gone   Verse 1 Taylor Swift  
 7     7 In silent screams and wildest dreams             Pre-Ch… Taylor Swift  
 8     8 I never dreamed of this                          Pre-Ch… Taylor Swift  
 9     9 This love is good, this love is bad              Chorus… Taylor Swift  
10    10 This love is alive back from the dead, oh-oh, oh Chorus… Taylor Swift  
# â„ą 41 more rows

[[163]]
# A tibble: 39 Ă— 4
    line lyric                                            element element_artist
   <int> <chr>                                            <chr>   <chr>         
 1     1 I, I, I, I, I, I, I, I-I                         Intro   Taylor Swift  
 2     2 I, I, I, I, I, I, I, I-I                         Intro   Taylor Swift  
 3     3 I, I, I, I, I, I, I, I-I (I, I, I, I)            Intro   Taylor Swift  
 4     4 You stand with your hand on my waistline         Verse 1 Taylor Swift  
 5     5 It's a scene and we're out here in plain sight   Verse 1 Taylor Swift  
 6     6 I can hear them whisper as we pass by            Verse 1 Taylor Swift  
 7     7 It's a bad sign, bad sign                        Verse 1 Taylor Swift  
 8     8 Something happens when everybody finds out       Verse 1 Taylor Swift  
 9     9 See the vultures circling, dark clouds           Verse 1 Taylor Swift  
10    10 Love's a fragile little flame, it could burn out Verse 1 Taylor Swift  
# â„ą 29 more rows

[[164]]
# A tibble: 52 Ă— 4
    line lyric                                            element element_artist
   <int> <chr>                                            <chr>   <chr>         
 1     1 The drought was the very worst (Oh-oh, oh-oh)    Verse 1 Taylor Swift  
 2     2 When the flowers that we'd grown together died … Verse 1 Taylor Swift  
 3     3 It was months and months of back and forth (Oh-… Verse 1 Taylor Swift  
 4     4 You're still all over me                         Verse 1 Taylor Swift  
 5     5 Like a wine-stained dress I can't wear anymore   Verse 1 Taylor Swift  
 6     6 Hung my head as I lost the war                   Pre-Ch… Taylor Swift  
 7     7 And the sky turned black like a perfect storm    Pre-Ch… Taylor Swift  
 8     8 Rain came pouring down                           Chorus  Taylor Swift  
 9     9 When I was drowning, that's when I could finall… Chorus  Taylor Swift  
10    10 And by morning                                   Chorus  Taylor Swift  
# â„ą 42 more rows

[[165]]
# A tibble: 79 Ă— 4
    line lyric                                            element element_artist
   <int> <chr>                                            <chr>   <chr>         
 1     1 Flashing lights and we                           Verse 1 Taylor Swift  
 2     2 Took a wrong turn and we                         Verse 1 Taylor Swift  
 3     3 Fell down a rabbit hole                          Verse 1 Taylor Swift  
 4     4 You held on tight to me                          Verse 1 Taylor Swift  
 5     5 'Cause nothing's as it seems                     Verse 1 Taylor Swift  
 6     6 And spinning out of control                      Verse 1 Taylor Swift  
 7     7 Didn't they tell us don't rush into things?      Pre-Ch… Taylor Swift  
 8     8 Didn't you flash your green eyes at me?          Pre-Ch… Taylor Swift  
 9     9 Haven't you heard what becomes of curious minds? Pre-Ch… Taylor Swift  
10    10 Ooh, didn't it all seem new and exciting?        Pre-Ch… Taylor Swift  
# â„ą 69 more rows

[[166]]
# A tibble: 53 Ă— 4
    line lyric                                       element element_artist
   <int> <chr>                                       <chr>   <chr>         
 1     1 "One look, dark room"                       Verse 1 Taylor Swift  
 2     2 "Meant just for you"                        Verse 1 Taylor Swift  
 3     3 "Time moved too fast, you play it back"     Verse 1 Taylor Swift  
 4     4 "Buttons on a coat, lighthearted joke"      Verse 1 Taylor Swift  
 5     5 "No proof, not much, but you saw enough"    Verse 1 Taylor Swift  
 6     6 "Small talk, he drives"                     Verse 1 Taylor Swift  
 7     7 "Coffee at midnight"                        Verse 1 Taylor Swift  
 8     8 "The light reflects the chain on your neck" Verse 1 Taylor Swift  
 9     9 "He says, \"Look up\""                      Verse 1 Taylor Swift  
10    10 "And your shoulders brush"                  Verse 1 Taylor Swift  
# â„ą 43 more rows

[[167]]
# A tibble: 68 Ă— 4
    line lyric                                            element element_artist
   <int> <chr>                                            <chr>   <chr>         
 1     1 We're all bored, we're all so tired of everythi… Verse 1 Taylor Swift  
 2     2 We wait for trains that just aren't coming       Verse 1 Taylor Swift  
 3     3 We show off our different scarlet letters        Verse 1 Taylor Swift  
 4     4 Trust me, mine is better                         Verse 1 Taylor Swift  
 5     5 We're so young, but we're on the road to ruin    Verse 1 Taylor Swift  
 6     6 We play dumb, but we know exactly what we're do… Verse 1 Taylor Swift  
 7     7 We cry tears of mascara in the bathroom          Verse 1 Taylor Swift  
 8     8 Honey, life is just a classroom                  Verse 1 Taylor Swift  
 9     9 (Ah, ah, ah, ah, ah, ah)                         Verse 1 Taylor Swift  
10    10 'Cause baby, I could build a castle              Chorus  Taylor Swift  
# â„ą 58 more rows

[[168]]
# A tibble: 40 Ă— 4
    line lyric                                            element element_artist
   <int> <chr>                                            <chr>   <chr>         
 1     1 Walkin' through a crowd, the village is aglow    Verse 1 Taylor Swift  
 2     2 Kaleidoscope of loud heartbeats under coats      Verse 1 Taylor Swift  
 3     3 Everybody here wanted somethin' more             Verse 1 Taylor Swift  
 4     4 Searchin' for a sound we hadn't heard before     Verse 1 Taylor Swift  
 5     5 And it said                                      Verse 1 Taylor Swift  
 6     6 Welcome to New York, it's been waitin' for you   Chorus  Taylor Swift  
 7     7 Welcome to New York, welcome to New York         Chorus  Taylor Swift  
 8     8 Welcome to New York, it's been waitin' for you   Chorus  Taylor Swift  
 9     9 Welcome to New York, welcome to New York         Chorus  Taylor Swift  
10    10 It's a new soundtrack, I could dance to this be… Chorus  Taylor Swift  
# â„ą 30 more rows

[[169]]
# A tibble: 82 Ă— 4
    line lyric                                element element_artist
   <int> <chr>                                <chr>   <chr>         
 1     1 "Nice to meet you, where you been?"  Verse 1 Taylor Swift  
 2     2 "I could show you incredible things" Verse 1 Taylor Swift  
 3     3 "Magic, madness, heaven, sin"        Verse 1 Taylor Swift  
 4     4 "Saw you there and I thought"        Verse 1 Taylor Swift  
 5     5 "\"Oh, my God, look at that face"    Verse 1 Taylor Swift  
 6     6 "You look like my next mistake"      Verse 1 Taylor Swift  
 7     7 "Love's a game, wanna play?\" Ayy"   Verse 1 Taylor Swift  
 8     8 "New money, suit and tie"            Verse 1 Taylor Swift  
 9     9 "I can read you like a magazine"     Verse 1 Taylor Swift  
10    10 "Ain't it funny? Rumors fly"         Verse 1 Taylor Swift  
# â„ą 72 more rows

[[170]]
# A tibble: 44 Ă— 4
    line lyric                                            element element_artist
   <int> <chr>                                            <chr>   <chr>         
 1     1 Midnight                                         Verse 1 Taylor Swift  
 2     2 You come and pick me up, no headlights           Verse 1 Taylor Swift  
 3     3 Long drive                                       Verse 1 Taylor Swift  
 4     4 Could end in burnin' flames or paradise          Verse 1 Taylor Swift  
 5     5 Fade into view, oh                               Verse 1 Taylor Swift  
 6     6 It's been a while since I have even heard from … Verse 1 Taylor Swift  
 7     7 (Heard from you)                                 Verse 1 Taylor Swift  
 8     8 I should just tell you to leave 'cause I         Pre-Ch… Taylor Swift  
 9     9 Know exactly where it leads, but I               Pre-Ch… Taylor Swift  
10    10 Watch us go 'round and 'round each time          Pre-Ch… Taylor Swift  
# â„ą 34 more rows

[[171]]
# A tibble: 69 Ă— 4
    line lyric                                            element element_artist
   <int> <chr>                                            <chr>   <chr>         
 1     1 Looking at it now                                Verse 1 Taylor Swift  
 2     2 It all seems so simple                           Verse 1 Taylor Swift  
 3     3 We were lying on your couch                      Verse 1 Taylor Swift  
 4     4 I remember                                       Verse 1 Taylor Swift  
 5     5 You took a Polaroid of us                        Verse 1 Taylor Swift  
 6     6 Then discovered (Then discovered)                Verse 1 Taylor Swift  
 7     7 The rest of the world was black and white        Verse 1 Taylor Swift  
 8     8 But we were in screaming color                   Verse 1 Taylor Swift  
 9     9 And I remember thinkin'                          Verse 1 Taylor Swift  
10    10 Are we out of the woods yet? Are we out of the … Chorus  Taylor Swift  
# â„ą 59 more rows

[[172]]
# A tibble: 62 Ă— 4
    line lyric                                element element_artist
   <int> <chr>                                <chr>   <chr>         
 1     1 (Hey, hey, hey)                      Intro   Taylor Swift  
 2     2 (Hey, hey, hey)                      Intro   Taylor Swift  
 3     3 (Hey, hey, hey)                      Intro   Taylor Swift  
 4     4 (Hey, hey, hey)                      Intro   Taylor Swift  
 5     5 People like you always want back     Verse 1 Taylor Swift  
 6     6 The love they gave away              Verse 1 Taylor Swift  
 7     7 And people like me wanna believe you Verse 1 Taylor Swift  
 8     8 When you say you've changed          Verse 1 Taylor Swift  
 9     9 The more I think about it now        Verse 1 Taylor Swift  
10    10 The less I know                      Verse 1 Taylor Swift  
# â„ą 52 more rows

[[173]]
# A tibble: 70 Ă— 4
    line lyric                                   element    element_artist
   <int> <chr>                                   <chr>      <chr>         
 1     1 I stay out too late                     Verse 1    Taylor Swift  
 2     2 Got nothin' in my brain                 Verse 1    Taylor Swift  
 3     3 That's what people say, mm-mm           Verse 1    Taylor Swift  
 4     4 That's what people say, mm-mm           Verse 1    Taylor Swift  
 5     5 I go on too many dates (Haha)           Verse 1    Taylor Swift  
 6     6 But I can't make them stay              Verse 1    Taylor Swift  
 7     7 At least, that's what people say, mm-mm Verse 1    Taylor Swift  
 8     8 That's what people say, mm-mm           Verse 1    Taylor Swift  
 9     9 But I keep cruisin'                     Pre-Chorus Taylor Swift  
10    10 Can't stop, won't stop movin'           Pre-Chorus Taylor Swift  
# â„ą 60 more rows

[[174]]
# A tibble: 76 Ă— 4
    line lyric                                            element element_artist
   <int> <chr>                                            <chr>   <chr>         
 1     1 "It's 2 AM in your car"                          Verse 1 Taylor Swift  
 2     2 "Windows down, you pass my street, the memories… Verse 1 Taylor Swift  
 3     3 "You say, \"It's in the past,\" you drive strai… Verse 1 Taylor Swift  
 4     4 "You're thinkin' that I hate you now"            Verse 1 Taylor Swift  
 5     5 "'Cause you still don't know what I never said"  Verse 1 Taylor Swift  
 6     6 "I wish you would come back"                     Chorus  Taylor Swift  
 7     7 "Wish I never hung up the phone like I did, I"   Chorus  Taylor Swift  
 8     8 "Wish you knew that"                             Chorus  Taylor Swift  
 9     9 "I'll never forget you as long as I live and I"  Chorus  Taylor Swift  
10    10 "Wish you were right here, right now, it's all … Chorus  Taylor Swift  
# â„ą 66 more rows

[[175]]
# A tibble: 69 Ă— 4
    line lyric                                    element element_artist
   <int> <chr>                                    <chr>   <chr>         
 1     1 'Cause, baby, now we got bad blood       Chorus  Taylor Swift  
 2     2 You know it used to be mad love          Chorus  Taylor Swift  
 3     3 So take a look what you've done          Chorus  Taylor Swift  
 4     4 'Cause, baby, now we got bad blood, hey  Chorus  Taylor Swift  
 5     5 Now we got problems                      Chorus  Taylor Swift  
 6     6 And I don't think we can solve them      Chorus  Taylor Swift  
 7     7 You made a really deep cut               Chorus  Taylor Swift  
 8     8 And, baby, now we got bad blood, hey     Chorus  Taylor Swift  
 9     9 Did you have to do this?                 Verse 1 Taylor Swift  
10    10 I was thinking that you could be trusted Verse 1 Taylor Swift  
# â„ą 59 more rows

[[176]]
# A tibble: 64 Ă— 4
    line lyric                                           element  element_artist
   <int> <chr>                                           <chr>    <chr>         
 1     1 "He said, \"Let's get out of this town"         Verse 1  Taylor Swift  
 2     2 "Drive out of the city, away from the crowds\"" Verse 1  Taylor Swift  
 3     3 "I thought, \"Heaven can't help me now\""       Verse 1  Taylor Swift  
 4     4 "Nothing lasts forever"                         Verse 1  Taylor Swift  
 5     5 "But this is gonna take me down"                Verse 1  Taylor Swift  
 6     6 "He's so tall and handsome as hell"             Pre-Cho… Taylor Swift  
 7     7 "He's so bad, but he does it so well"           Pre-Cho… Taylor Swift  
 8     8 "I can see the end as it begins"                Pre-Cho… Taylor Swift  
 9     9 "My one condition is"                           Pre-Cho… Taylor Swift  
10    10 "Say you'll remember me"                        Chorus   Taylor Swift  
# â„ą 54 more rows

[[177]]
# A tibble: 54 Ă— 4
    line lyric                                            element element_artist
   <int> <chr>                                            <chr>   <chr>         
 1     1 "Oh, oh, oh"                                     Intro   Taylor Swift  
 2     2 "Oh, oh, oh"                                     Intro   Taylor Swift  
 3     3 "Oh-oh, oh-oh"                                   Intro   Taylor Swift  
 4     4 "Stand there like a ghost, shakin' from the rai… Verse 1 Taylor Swift  
 5     5 "She'll open up the door and say, \"Are you ins… Verse 1 Taylor Swift  
 6     6 "Say, \"It's been a long six months\""           Verse 1 Taylor Swift  
 7     7 "And you were too afraid to tell her what you w… Verse 1 Taylor Swift  
 8     8 "And that's how it works"                        Pre-Ch… Taylor Swift  
 9     9 "That's how you get the girl"                    Pre-Ch… Taylor Swift  
10    10 "And then, you say"                              Pre-Ch… Taylor Swift  
# â„ą 44 more rows

[[178]]
# A tibble: 49 Ă— 4
    line lyric                                           element  element_artist
   <int> <chr>                                           <chr>    <chr>         
 1     1 Clear blue water                                Verse 1  Taylor Swift  
 2     2 High tide came and brought you in               Verse 1  Taylor Swift  
 3     3 And I could go on and on, on and on, and I will Verse 1  Taylor Swift  
 4     4 Skies grew darker                               Verse 1  Taylor Swift  
 5     5 Currents swept you out again                    Verse 1  Taylor Swift  
 6     6 And you were just gone and gone, gone and gone  Verse 1  Taylor Swift  
 7     7 In silent screams, in wildest dreams            Pre-Cho… Taylor Swift  
 8     8 I never dreamed of this                         Pre-Cho… Taylor Swift  
 9     9 This love is good, this love is bad             Chorus   Taylor Swift  
10    10 This love is alive back from the dead, oh       Chorus   Taylor Swift  
# â„ą 39 more rows

[[179]]
# A tibble: 39 Ă— 4
    line lyric                                            element element_artist
   <int> <chr>                                            <chr>   <chr>         
 1     1 I-I-I-I, I-I-I-I                                 Intro   Taylor Swift  
 2     2 I-I-I-I, I-I-I-I                                 Intro   Taylor Swift  
 3     3 I-I-I-I, I-I-I-I, I-I (I, I)                     Intro   Taylor Swift  
 4     4 You stand with your hand on my waistline         Verse 1 Taylor Swift  
 5     5 It's a scene and we're out here in plain sight   Verse 1 Taylor Swift  
 6     6 I can hear them whisper as we pass by            Verse 1 Taylor Swift  
 7     7 It's a bad sign, bad sign                        Verse 1 Taylor Swift  
 8     8 Somethin' happens when everybody finds out       Verse 1 Taylor Swift  
 9     9 See the vultures circlin', dark clouds           Verse 1 Taylor Swift  
10    10 Love's a fragile little flame, it could burn out Verse 1 Taylor Swift  
# â„ą 29 more rows

[[180]]
# A tibble: 42 Ă— 4
    line lyric                                            element element_artist
   <int> <chr>                                            <chr>   <chr>         
 1     1 The drought was the very worst, ah-ah, ah-ah     Verse 1 Taylor Swift  
 2     2 When the flowers that we'd grown together died … Verse 1 Taylor Swift  
 3     3 It was months and months of back and forth, ah-… Verse 1 Taylor Swift  
 4     4 You're still all over me like a wine-stained dr… Verse 1 Taylor Swift  
 5     5 Hung my head as I lost the war                   Pre-Ch… Taylor Swift  
 6     6 And the sky turned black like a perfect storm    Pre-Ch… Taylor Swift  
 7     7 The rain came pouring down                       Chorus  Taylor Swift  
 8     8 When I was drownin', that's when I could finall… Chorus  Taylor Swift  
 9     9 And by mornin', gone was any trace of you        Chorus  Taylor Swift  
10    10 I think I am finally clean                       Chorus  Taylor Swift  
# â„ą 32 more rows

[[181]]
# A tibble: 56 Ă— 4
    line lyric                                            element element_artist
   <int> <chr>                                            <chr>   <chr>         
 1     1 "Flashin' lights"                                Verse 1 Taylor Swift  
 2     2 "And we took a wrong turn"                       Verse 1 Taylor Swift  
 3     3 "And we fell down a rabbit hole"                 Verse 1 Taylor Swift  
 4     4 "You held on tight to me"                        Verse 1 Taylor Swift  
 5     5 "'Cause nothing's as it seems"                   Verse 1 Taylor Swift  
 6     6 "And spinning out of control"                    Verse 1 Taylor Swift  
 7     7 "Didn't they tell us, \"Don't rush into things\… Pre-Ch… Taylor Swift  
 8     8 "Didn't you flash your green eyes at me?"        Pre-Ch… Taylor Swift  
 9     9 "Haven't you heard what becomes of curious mind… Pre-Ch… Taylor Swift  
10    10 "Ooh, didn't it all seem new and excitin'?"      Pre-Ch… Taylor Swift  
# â„ą 46 more rows

[[182]]
# A tibble: 42 Ă— 4
    line lyric                                            element element_artist
   <int> <chr>                                            <chr>   <chr>         
 1     1 "One look, dark room, meant just for you"        Verse 1 Taylor Swift  
 2     2 "Time moved too fast, you play it back"          Verse 1 Taylor Swift  
 3     3 "Buttons on a coat, lighthearted joke"           Verse 1 Taylor Swift  
 4     4 "No proof, not much, but you saw enough"         Verse 1 Taylor Swift  
 5     5 "Small talk, he drives, coffee at midnight"      Verse 1 Taylor Swift  
 6     6 "The light reflects the chain on your neck"      Verse 1 Taylor Swift  
 7     7 "He says, \"Look up\" and your shoulders brush"  Verse 1 Taylor Swift  
 8     8 "No proof, one touch, but you felt enough"       Verse 1 Taylor Swift  
 9     9 "You can hear it in the silence (Silence), sile… Chorus  Taylor Swift  
10    10 "You can feel it on the way home (Way home), wa… Chorus  Taylor Swift  
# â„ą 32 more rows

[[183]]
# A tibble: 58 Ă— 4
    line lyric                                            element element_artist
   <int> <chr>                                            <chr>   <chr>         
 1     1 We're all bored, we're all so tired of everythi… Verse 1 Taylor Swift  
 2     2 We wait for trains that just aren't comin'       Verse 1 Taylor Swift  
 3     3 We show off our different scarlet letters        Verse 1 Taylor Swift  
 4     4 Trust me, mine is better                         Verse 1 Taylor Swift  
 5     5 We're so young, but we're on the road to ruin    Verse 1 Taylor Swift  
 6     6 We play dumb, but we know exactly what we're do… Verse 1 Taylor Swift  
 7     7 We cry tears of mascara in the bathroom          Verse 1 Taylor Swift  
 8     8 Honey, life is just a classroom                  Verse 1 Taylor Swift  
 9     9 Ah-ah-ah-ah-ah-ah                                Verse 1 Taylor Swift  
10    10 'Cause baby, I could build a castle              Chorus  Taylor Swift  
# â„ą 48 more rows

[[184]]
# A tibble: 47 Ă— 4
    line lyric                                     element    element_artist
   <int> <chr>                                     <chr>      <chr>         
 1     1 Flamingo pink, Sunrise Boulevard          Verse 1    Taylor Swift  
 2     2 Clink, clink, being this young is art     Verse 1    Taylor Swift  
 3     3 Aquamarine, moonlit swimmin' pool         Verse 1    Taylor Swift  
 4     4 What if all I need is you?                Verse 1    Taylor Swift  
 5     5 Got love-struck, went straight to my head Pre-Chorus Taylor Swift  
 6     6 Got lovesick all over my bed              Pre-Chorus Taylor Swift  
 7     7 Love to think you'll never forget         Pre-Chorus Taylor Swift  
 8     8 Handprints in wet cement                  Pre-Chorus Taylor Swift  
 9     9 Adorned with smoke on my clothes          Pre-Chorus Taylor Swift  
10    10 Lovelorn and nobody knows                 Pre-Chorus Taylor Swift  
# â„ą 37 more rows

[[185]]
# A tibble: 62 Ă— 4
    line lyric                                    element element_artist
   <int> <chr>                                    <chr>   <chr>         
 1     1 I've known it from the very start        Verse 1 Taylor Swift  
 2     2 We're a shot in the darkest dark         Verse 1 Taylor Swift  
 3     3 Oh no, oh no, I'm unarmed                Verse 1 Taylor Swift  
 4     4 The waiting is a sadness                 Verse 1 Taylor Swift  
 5     5 Fading into madness                      Verse 1 Taylor Swift  
 6     6 Oh no, oh no, it won't stop              Verse 1 Taylor Swift  
 7     7 I'm standin' on a tightrope alone        Refrain Taylor Swift  
 8     8 I hold my breath a little bit longer     Refrain Taylor Swift  
 9     9 Halfway out the door, but it won't close Refrain Taylor Swift  
10    10 I'm holdin' out hope for you to          Refrain Taylor Swift  
# â„ą 52 more rows

[[186]]
# A tibble: 36 Ă— 4
    line lyric                               element element_artist
   <int> <chr>                               <chr>   <chr>         
 1     1 You went to a party                 Verse 1 Taylor Swift  
 2     2 I heard from everybody              Verse 1 Taylor Swift  
 3     3 You part the crowd like the Red Sea Verse 1 Taylor Swift  
 4     4 Don't even get me started           Verse 1 Taylor Swift  
 5     5 Did you get anxious though          Verse 1 Taylor Swift  
 6     6 On the way home?                    Verse 1 Taylor Swift  
 7     7 I guess I'll never ever know        Verse 1 Taylor Swift  
 8     8 Now that we don't talk              Verse 1 Taylor Swift  
 9     9 You grew your hair long             Verse 2 Taylor Swift  
10    10 You got new icons                   Verse 2 Taylor Swift  
# â„ą 26 more rows

[[187]]
# A tibble: 37 Ă— 4
    line lyric                                            element element_artist
   <int> <chr>                                            <chr>   <chr>         
 1     1 You had people who called you on unmarked numbe… Verse 1 Taylor Swift  
 2     2 In my peripheral vision                          Verse 1 Taylor Swift  
 3     3 I let it slide like a hose on a slippery plasti… Verse 1 Taylor Swift  
 4     4 All was quickly forgiven                         Verse 1 Taylor Swift  
 5     5 You were so magnetic, it was almost obnoxious    Verse 1 Taylor Swift  
 6     6 Flush with the currency of cool                  Verse 1 Taylor Swift  
 7     7 I was always turnin' out my empty pockets        Verse 1 Taylor Swift  
 8     8 And when it came to you                          Verse 1 Taylor Swift  
 9     9 I didn't come here to make friends               Chorus  Taylor Swift  
10    10 We were born to be suburban legends              Chorus  Taylor Swift  
# â„ą 27 more rows

[[188]]
# A tibble: 59 Ă— 4
    line lyric                                            element element_artist
   <int> <chr>                                            <chr>   <chr>         
 1     1 (Is it? Is it? Is it? Is it? Is it?)             Intro   Taylor Swift  
 2     2 Once the flight had flown (Uh-huh)               Verse 1 Taylor Swift  
 3     3 With the wilt of the rose (Uh-huh)               Verse 1 Taylor Swift  
 4     4 I slept all alone (Uh-huh)                       Verse 1 Taylor Swift  
 5     5 You still wouldn't go                            Verse 1 Taylor Swift  
 6     6 Let's fast forward to three hundred takeout cof… Pre-Ch… Taylor Swift  
 7     7 I see your profile and your smile on unsuspecti… Pre-Ch… Taylor Swift  
 8     8 You dream of my mouth before it called you a ly… Pre-Ch… Taylor Swift  
 9     9 You search in every maiden's bed for somethin' … Pre-Ch… Taylor Swift  
10    10 Was it over when she laid down on your couch?    Chorus  Taylor Swift  
# â„ą 49 more rows

[[189]]
# A tibble: 66 Ă— 4
    line lyric                                            element element_artist
   <int> <chr>                                            <chr>   <chr>         
 1     1 'Cause, baby, now we've got bad blood            Intro   Taylor Swift  
 2     2 You know it used to be mad love (Uh)             Intro   Taylor Swift  
 3     3 So take a look what you've done (Uh)             Intro   Taylor Swift  
 4     4 'Cause, baby, now we've got bad blood (Uh), hey… Intro   Taylor Swift  
 5     5 I can't take it back, look where I'm at (Uh)     Verse 1 Taylor Swift  
 6     6 We was OG like D.O.C., remember that? (Remember… Verse 1 Taylor Swift  
 7     7 My TLC was quite OD, ID my facts (ID my)         Verse 1 Taylor Swift  
 8     8 Now POV of you and me, similar Iraq              Verse 1 Taylor Swift  
 9     9 I don't hate you, but I hate to critique, overr… Verse 1 Taylor Swift  
10    10 These beats of a dark heart, use basslines to r… Verse 1 Taylor Swift  
# â„ą 56 more rows

[[190]]
# A tibble: 56 Ă— 4
    line lyric                                            element element_artist
   <int> <chr>                                            <chr>   <chr>         
 1     1 "Hit the ground, hit the ground, hit the ground… Verse 1 Taylor Swift  
 2     2 "Only sound, only sound that you hear is, \"No\… Verse 1 Taylor Swift  
 3     3 "You never saw it comin', slipped when you star… Verse 1 Taylor Swift  
 4     4 "And now you've come undone, and I, I, I, I"     Verse 1 Taylor Swift  
 5     5 "Seen you fall, seen you crawl on your knees, e… Pre-Ch… Taylor Swift  
 6     6 "Seen you lost in a crowd, seen your colors fad… Pre-Ch… Taylor Swift  
 7     7 "Wish I could make it better, someday you won't… Pre-Ch… Taylor Swift  
 8     8 "This pain you thought would last forever and e… Pre-Ch… Taylor Swift  
 9     9 "There you'll stand, ten feet tall"              Chorus  Taylor Swift  
10    10 "I will say, \"I knew it all along\""            Chorus  Taylor Swift  
# â„ą 46 more rows

[[191]]
# A tibble: 59 Ă— 4
    line lyric                                            element element_artist
   <int> <chr>                                            <chr>   <chr>         
 1     1 Knew he was a killer first time that I saw him   Verse 1 Taylor Swift  
 2     2 Wondered how many girls he had loved and left h… Verse 1 Taylor Swift  
 3     3 But if he's a ghost, then I can be a phantom     Verse 1 Taylor Swift  
 4     4 Holdin' him for ransom, some                     Verse 1 Taylor Swift  
 5     5 Some boys are tryin' too hard, he don't try at … Verse 1 Taylor Swift  
 6     6 Younger than my exes, but he act like such a ma… Verse 1 Taylor Swift  
 7     7 I see nothing better, I keep him forever         Verse 1 Taylor Swift  
 8     8 Like a vendetta-ta                               Verse 1 Taylor Swift  
 9     9 I, I, I see how this is gon' go                  Pre-Ch… Taylor Swift  
10    10 Touch me and you'll never be alone               Pre-Ch… Taylor Swift  
# â„ą 49 more rows

[[192]]
# A tibble: 80 Ă— 4
    line lyric                                            element element_artist
   <int> <chr>                                            <chr>   <chr>         
 1     1 I wanna be your end game                         Chorus  Taylor Swift  
 2     2 I wanna be your first string                     Chorus  Taylor Swift  
 3     3 I wanna be your A-Team (Whoa, whoa, whoa)        Chorus  Taylor Swift  
 4     4 I wanna be your end game, end game               Chorus  Taylor Swift  
 5     5 Big reputation, big reputation                   Post-C… Taylor Swift  
 6     6 Ooh, you and me, we got big reputations, ah      Post-C… Taylor Swift  
 7     7 And you heard about me, ooh                      Post-C… Taylor Swift  
 8     8 I got some big enemies (Yeah)                    Post-C… Taylor Swift  
 9     9 Big reputation, big reputation                   Post-C… Taylor Swift  
10    10 Ooh, you and me would be a big conversation, ah… Post-C… Taylor Swift  
# â„ą 70 more rows

[[193]]
# A tibble: 67 Ă— 4
    line lyric                                            element element_artist
   <int> <chr>                                            <chr>   <chr>         
 1     1 I never trust a narcissist, but they love me     Verse 1 Taylor Swift  
 2     2 So I play 'em like a violin                      Verse 1 Taylor Swift  
 3     3 And I make it look oh-so-easy                    Verse 1 Taylor Swift  
 4     4 'Cause for every lie I tell them, they tell me … Verse 1 Taylor Swift  
 5     5 This is how the world works                      Verse 1 Taylor Swift  
 6     6 Now all he thinks about is me                    Verse 1 Taylor Swift  
 7     7 I can feel the flames on my skin                 Pre-Ch… Taylor Swift  
 8     8 Crimson red paint on my lips                     Pre-Ch… Taylor Swift  
 9     9 If a man talks shit, then I owe him nothing      Pre-Ch… Taylor Swift  
10    10 I don't regret it one bit, 'cause he had it com… Pre-Ch… Taylor Swift  
# â„ą 57 more rows

[[194]]
# A tibble: 63 Ă— 4
    line lyric                                   element element_artist
   <int> <chr>                                   <chr>   <chr>         
 1     1 Don't blame me, love made me crazy      Chorus  Taylor Swift  
 2     2 If it doesn't, you ain't doin' it right Chorus  Taylor Swift  
 3     3 Lord, save me, my drug is my baby       Chorus  Taylor Swift  
 4     4 I'll be usin' for the rest of my life   Chorus  Taylor Swift  
 5     5 I've been breakin' hearts a long time   Verse 1 Taylor Swift  
 6     6 And toyin' with them older guys         Verse 1 Taylor Swift  
 7     7 Just playthings for me to use           Verse 1 Taylor Swift  
 8     8 Something happened for the first time   Verse 1 Taylor Swift  
 9     9 In the darkest little paradise          Verse 1 Taylor Swift  
10    10 Shakin', pacin', I just need you        Verse 1 Taylor Swift  
# â„ą 53 more rows

[[195]]
# A tibble: 80 Ă— 4
    line lyric                                      element element_artist
   <int> <chr>                                      <chr>   <chr>         
 1     1 This ain't for the best                    Intro   Taylor Swift  
 2     2 My reputation's never been worse, so       Intro   Taylor Swift  
 3     3 You must like me for me...                 Intro   Taylor Swift  
 4     4 We can't make                              Intro   Taylor Swift  
 5     5 Any promises now, can we, babe?            Intro   Taylor Swift  
 6     6 But you can make me a drink                Intro   Taylor Swift  
 7     7 Dive bar on the East Side, where you at?   Verse 1 Taylor Swift  
 8     8 Phone lights up my nightstand in the black Verse 1 Taylor Swift  
 9     9 Come here, you can meet me in the back     Verse 1 Taylor Swift  
10    10 Dark jeans and your Nikes, look at you     Verse 1 Taylor Swift  
# â„ą 70 more rows

[[196]]
# A tibble: 73 Ă— 4
    line lyric                                            element element_artist
   <int> <chr>                                            <chr>   <chr>         
 1     1 I don't like your little games                   Verse 1 Taylor Swift  
 2     2 Don't like your tilted stage                     Verse 1 Taylor Swift  
 3     3 The role you made me play                        Verse 1 Taylor Swift  
 4     4 Of the fool, no, I don't like you                Verse 1 Taylor Swift  
 5     5 I don't like your perfect crime                  Verse 1 Taylor Swift  
 6     6 How you laugh when you lie                       Verse 1 Taylor Swift  
 7     7 You said the gun was mine                        Verse 1 Taylor Swift  
 8     8 Isn't cool, no, I don't like you (Oh)            Verse 1 Taylor Swift  
 9     9 But I got smarter, I got harder in the nick of … Pre-Ch… Taylor Swift  
10    10 Honey, I rose up from the dead, I do it all the… Pre-Ch… Taylor Swift  
# â„ą 63 more rows

[[197]]
# A tibble: 70 Ă— 4
    line lyric                                     element    element_artist
   <int> <chr>                                     <chr>      <chr>         
 1     1 See you in the dark                       Verse 1    Taylor Swift  
 2     2 All eyes on you, my magician              Verse 1    Taylor Swift  
 3     3 All eyes on us                            Verse 1    Taylor Swift  
 4     4 You make everyone disappear, and          Verse 1    Taylor Swift  
 5     5 Cut me into pieces                        Verse 1    Taylor Swift  
 6     6 Gold cage, hostage to my feelings         Verse 1    Taylor Swift  
 7     7 Back against the wall                     Verse 1    Taylor Swift  
 8     8 Trippin', trip-trippin' when you're gone  Verse 1    Taylor Swift  
 9     9 'Cause we break down a little             Pre-Chorus Taylor Swift  
10    10 But when you get me alone, it's so simple Pre-Chorus Taylor Swift  
# â„ą 60 more rows

[[198]]
# A tibble: 56 Ă— 4
    line lyric                                            element element_artist
   <int> <chr>                                            <chr>   <chr>         
 1     1 Gorgeous                                         Intro   Taylor Swift  
 2     2 You should take it as a compliment               Verse 1 Taylor Swift  
 3     3 That I got drunk and made fun of the way you ta… Verse 1 Taylor Swift  
 4     4 You should think about the consequence           Verse 1 Taylor Swift  
 5     5 Of your magnetic field being a little too strong Verse 1 Taylor Swift  
 6     6 And I got a boyfriend, he's older than us        Verse 1 Taylor Swift  
 7     7 He's in the club doin' I don't know what         Verse 1 Taylor Swift  
 8     8 You're so cool, it makes me hate you so much     Verse 1 Taylor Swift  
 9     9 (I hate you so much)                             Verse 1 Taylor Swift  
10    10 Whisky on ice, Sunset and Vine                   Pre-Ch… Taylor Swift  
# â„ą 46 more rows

[[199]]
# A tibble: 75 Ă— 4
    line lyric                                           element  element_artist
   <int> <chr>                                           <chr>    <chr>         
 1     1 "No, nothing good starts in a getaway car"      Intro    Taylor Swift  
 2     2 "It was the best of times, the worst of crimes" Verse 1  Taylor Swift  
 3     3 "I struck a match and blew your mind"           Verse 1  Taylor Swift  
 4     4 "But I didn't mean it"                          Verse 1  Taylor Swift  
 5     5 "And you didn't see it"                         Verse 1  Taylor Swift  
 6     6 "The ties were black, the lies were white"      Verse 1  Taylor Swift  
 7     7 "In shades of gray in candlelight"              Verse 1  Taylor Swift  
 8     8 "I wanted to leave him"                         Verse 1  Taylor Swift  
 9     9 "I needed a reason"                             Verse 1  Taylor Swift  
10    10 "\"X\" marks the spot where we fell apart"      Pre-Cho… Taylor Swift  
# â„ą 65 more rows

[[200]]
# A tibble: 59 Ă— 4
    line lyric                                            element element_artist
   <int> <chr>                                            <chr>   <chr>         
 1     1 "I'm perfectly fine, I live on my own"           Verse 1 Taylor Swift  
 2     2 "I made up my mind, I'm better off bein' alone"  Verse 1 Taylor Swift  
 3     3 "We met a few weeks ago"                         Verse 1 Taylor Swift  
 4     4 "Now you try on callin' me \"Baby\" like tryin'… Verse 1 Taylor Swift  
 5     5 "Salute to me, I'm your American queen"          Pre-Ch… Taylor Swift  
 6     6 "And you move to me like I'm a Motown beat"      Pre-Ch… Taylor Swift  
 7     7 "And we rule the kingdom inside my room"         Pre-Ch… Taylor Swift  
 8     8 "'Cause all the boys and their expensive cars"   Pre-Ch… Taylor Swift  
 9     9 "With their Range Rovers and their Jaguars"      Pre-Ch… Taylor Swift  
10    10 "Never took me quite where you do"               Pre-Ch… Taylor Swift  
# â„ą 49 more rows

[[201]]
# A tibble: 66 Ă— 4
    line lyric                                            element element_artist
   <int> <chr>                                            <chr>   <chr>         
 1     1 I, I loved you in secret                         Verse 1 Taylor Swift  
 2     2 First sight, yeah, we love without reason        Verse 1 Taylor Swift  
 3     3 Oh, twenty-five years old                        Verse 1 Taylor Swift  
 4     4 Oh, how were you to know? And                    Verse 1 Taylor Swift  
 5     5 My, my love had been frozen                      Verse 1 Taylor Swift  
 6     6 Deep blue, but you painted me golden             Verse 1 Taylor Swift  
 7     7 Oh, and you held me close                        Verse 1 Taylor Swift  
 8     8 Oh, how was I to know? I-                        Verse 1 Taylor Swift  
 9     9 Could've spent forever with your hands in my po… Pre-Ch… Taylor Swift  
10    10 Picture of your face in an invisible locket      Pre-Ch… Taylor Swift  
# â„ą 56 more rows

[[202]]
# A tibble: 67 Ă— 4
    line lyric                                            element element_artist
   <int> <chr>                                            <chr>   <chr>         
 1     1 Our secret moments in a crowded room             Verse 1 Taylor Swift  
 2     2 They got no idea about me and you                Verse 1 Taylor Swift  
 3     3 There is an indentation in the shape of you      Verse 1 Taylor Swift  
 4     4 Made your mark on me, a golden tattoo            Verse 1 Taylor Swift  
 5     5 All of this silence and patience, pining and an… Pre-Ch… Taylor Swift  
 6     6 My hands are shaking from holding back from you  Pre-Ch… Taylor Swift  
 7     7 Ha, ah, ah                                       Pre-Ch… Taylor Swift  
 8     8 All of this silence and patience, pining and de… Pre-Ch… Taylor Swift  
 9     9 My hands are shaking from all this               Pre-Ch… Taylor Swift  
10    10 Ah, ha, ha, ha-ah                                Pre-Ch… Taylor Swift  
# â„ą 57 more rows

[[203]]
# A tibble: 52 Ă— 4
    line lyric                                          element   element_artist
   <int> <chr>                                          <chr>     <chr>         
 1     1 It was so nice throwing big parties            Verse 1   Taylor Swift  
 2     2 Jump into the pool from the balcony            Verse 1   Taylor Swift  
 3     3 Everyone swimming in a champagne sea           Verse 1   Taylor Swift  
 4     4 And there are no rules when you show up here   Verse 1   Taylor Swift  
 5     5 Bass beat rattling the chandelier              Verse 1   Taylor Swift  
 6     6 Feeling so Gatsby for that whole year          Verse 1   Taylor Swift  
 7     7 So why'd you have to rain on my parade?        Pre-Chor… Taylor Swift  
 8     8 I'm shaking my head and locking the gates      Pre-Chor… Taylor Swift  
 9     9 This is why we can't have nice things, darling Chorus    Taylor Swift  
10    10 Because you break them                         Chorus    Taylor Swift  
# â„ą 42 more rows

[[204]]
# A tibble: 73 Ă— 4
    line lyric                                 element element_artist
   <int> <chr>                                 <chr>   <chr>         
 1     1 My castle crumbled overnight          Verse 1 Taylor Swift  
 2     2 I brought a knife to a gunfight       Verse 1 Taylor Swift  
 3     3 They took the crown, but it's alright Verse 1 Taylor Swift  
 4     4 All the liars are calling me one      Verse 1 Taylor Swift  
 5     5 Nobody's heard from me for months     Verse 1 Taylor Swift  
 6     6 I'm doin' better than I ever was      Verse 1 Taylor Swift  
 7     7 'Cause                                Verse 1 Taylor Swift  
 8     8 My baby's fit like a daydream         Chorus  Taylor Swift  
 9     9 Walking with his head down            Chorus  Taylor Swift  
10    10 I'm the one he's walking to           Chorus  Taylor Swift  
# â„ą 63 more rows

[[205]]
# A tibble: 44 Ă— 4
    line lyric                                            element element_artist
   <int> <chr>                                            <chr>   <chr>         
 1     1 There's glitter on the floor after the party     Verse 1 Taylor Swift  
 2     2 Girls carrying their shoes down in the lobby     Verse 1 Taylor Swift  
 3     3 Candle wax and Polaroids on the hardwood floor   Verse 1 Taylor Swift  
 4     4 You and me from the night before, but            Verse 1 Taylor Swift  
 5     5 Don't read the last page                         Chorus  Taylor Swift  
 6     6 But I stay when you're lost and I'm scared and … Chorus  Taylor Swift  
 7     7 I want your midnights                            Chorus  Taylor Swift  
 8     8 But I'll be cleaning up bottles with you on New… Chorus  Taylor Swift  
 9     9 You squeeze my hand three times in the back of … Verse 2 Taylor Swift  
10    10 I can tell that it's gonna be a long road        Verse 2 Taylor Swift  
# â„ą 34 more rows

[[206]]
# A tibble: 45 Ă— 4
    line lyric                                         element    element_artist
   <int> <chr>                                         <chr>      <chr>         
 1     1 How many days did I spend thinking            Verse 1    Taylor Swift  
 2     2 'Bout how you did me wrong, wrong, wrong?     Verse 1    Taylor Swift  
 3     3 Lived in the shade you were throwing          Verse 1    Taylor Swift  
 4     4 'Til all of my sunshine was gone, gone, gone  Verse 1    Taylor Swift  
 5     5 And I couldn't get away from ya               Verse 1    Taylor Swift  
 6     6 In my feelings more than Drake, so yeah       Verse 1    Taylor Swift  
 7     7 Your name on my lips, tongue-tied             Verse 1    Taylor Swift  
 8     8 Free rent, living in my mind                  Verse 1    Taylor Swift  
 9     9 But then something happened one magical night Pre-Chorus Taylor Swift  
10    10 I forgot that you existed                     Chorus     Taylor Swift  
# â„ą 35 more rows

[[207]]
# A tibble: 62 Ă— 4
    line lyric                                            element element_artist
   <int> <chr>                                            <chr>   <chr>         
 1     1 (Yeah, yeah, yeah, yeah)                         Intro   Taylor Swift  
 2     2 Fever dream high in the quiet of the night       Verse 1 Taylor Swift  
 3     3 You know that I caught it (Oh yeah, you're righ… Verse 1 Taylor Swift  
 4     4 Bad, bad boy, shiny toy with a price             Verse 1 Taylor Swift  
 5     5 You know that I bought it (Oh yeah, you're righ… Verse 1 Taylor Swift  
 6     6 Killing me slow, out the window                  Pre-Ch… Taylor Swift  
 7     7 I'm always waiting for you to be waiting below   Pre-Ch… Taylor Swift  
 8     8 Devils roll the dice, angels roll their eyes     Pre-Ch… Taylor Swift  
 9     9 What doesn't kill me makes me want you more      Pre-Ch… Taylor Swift  
10    10 And it's new, the shape of your body             Chorus  Taylor Swift  
# â„ą 52 more rows

[[208]]
# A tibble: 33 Ă— 4
    line lyric                                            element element_artist
   <int> <chr>                                            <chr>   <chr>         
 1     1 We could leave the Christmas lights up 'til Jan… Verse 1 Taylor Swift  
 2     2 And this is our place, we make the rules         Verse 1 Taylor Swift  
 3     3 And there's a dazzling haze, a mysterious way a… Verse 1 Taylor Swift  
 4     4 Have I known you twenty seconds or twenty years? Verse 1 Taylor Swift  
 5     5 Can I go where you go?                           Chorus  Taylor Swift  
 6     6 Can we always be this close?                     Chorus  Taylor Swift  
 7     7 Forever and ever, ah                             Chorus  Taylor Swift  
 8     8 Take me out, and take me home                    Chorus  Taylor Swift  
 9     9 You're my, my, my, my lover                      Chorus  Taylor Swift  
10    10 We could let our friends crash in the living ro… Verse 2 Taylor Swift  
# â„ą 23 more rows

[[209]]
# A tibble: 48 Ă— 4
    line lyric                                            element element_artist
   <int> <chr>                                            <chr>   <chr>         
 1     1 I would be complex, I would be cool              Verse 1 Taylor Swift  
 2     2 They'd say I played the field before I found so… Verse 1 Taylor Swift  
 3     3 And that would be okay for me to do              Verse 1 Taylor Swift  
 4     4 Every conquest I had made would make me more of… Verse 1 Taylor Swift  
 5     5 I'd be a fearless leader                         Pre-Ch… Taylor Swift  
 6     6 I'd be an alpha type                             Pre-Ch… Taylor Swift  
 7     7 When everyone believes ya                        Pre-Ch… Taylor Swift  
 8     8 What's that like?                                Pre-Ch… Taylor Swift  
 9     9 I'm so sick of running as fast as I can          Chorus  Taylor Swift  
10    10 Wondering if I'd get there quicker if I was a m… Chorus  Taylor Swift  
# â„ą 38 more rows

[[210]]
# A tibble: 45 Ă— 4
    line lyric                                            element element_artist
   <int> <chr>                                            <chr>   <chr>         
 1     1 Combat, I'm ready for combat                     Verse 1 Taylor Swift  
 2     2 I say I don't want that, but what if I do?       Verse 1 Taylor Swift  
 3     3 'Cause cruelty wins in the movies                Verse 1 Taylor Swift  
 4     4 I've got a hundred thrown-out speeches I almost… Verse 1 Taylor Swift  
 5     5 Easy they come, easy they go                     Pre-Ch… Taylor Swift  
 6     6 I jump from the train, I ride off alone          Pre-Ch… Taylor Swift  
 7     7 I never grew up, it's getting so old             Pre-Ch… Taylor Swift  
 8     8 Help me hold on to you                           Pre-Ch… Taylor Swift  
 9     9 I've been the archer, I've been the prey         Chorus  Taylor Swift  
10    10 Who could ever leave me, darling                 Chorus  Taylor Swift  
# â„ą 35 more rows

[[211]]
# A tibble: 65 Ă— 4
    line lyric                                        element    element_artist
   <int> <chr>                                        <chr>      <chr>         
 1     1 I think he knows                             Verse 1    Taylor Swift  
 2     2 His footprints on the sidewalk               Verse 1    Taylor Swift  
 3     3 Lead to where I can't stop                   Verse 1    Taylor Swift  
 4     4 Go there every night                         Verse 1    Taylor Swift  
 5     5 I think he knows                             Verse 1    Taylor Swift  
 6     6 His hands around a cold glass                Verse 1    Taylor Swift  
 7     7 Make me wanna know that                      Verse 1    Taylor Swift  
 8     8 Body like it's mine                          Verse 1    Taylor Swift  
 9     9 He got that boyish look that I like in a man Pre-Chorus Taylor Swift  
10    10 I am an architect, I'm drawing up the plans  Pre-Chorus Taylor Swift  
# â„ą 55 more rows

[[212]]
# A tibble: 62 Ă— 4
    line lyric                                            element element_artist
   <int> <chr>                                            <chr>   <chr>         
 1     1 You know I adore you, I'm crazier for you        Verse 1 Taylor Swift  
 2     2 Than I was at 16, lost in a film scene           Verse 1 Taylor Swift  
 3     3 Waving homecoming queens, marching band playing  Verse 1 Taylor Swift  
 4     4 I'm lost in the lights                           Verse 1 Taylor Swift  
 5     5 American glory faded before me                   Verse 1 Taylor Swift  
 6     6 Now I'm feeling hopeless, ripped up my prom dre… Verse 1 Taylor Swift  
 7     7 Running through rose thorns, I saw the scoreboa… Verse 1 Taylor Swift  
 8     8 And ran for my life (Ah)                         Verse 1 Taylor Swift  
 9     9 No cameras catch my pageant smile                Pre-Ch… Taylor Swift  
10    10 I counted days, I counted miles                  Pre-Ch… Taylor Swift  
# â„ą 52 more rows

[[213]]
# A tibble: 65 Ă— 4
    line lyric                                            element element_artist
   <int> <chr>                                            <chr>   <chr>         
 1     1 The moon is high                                 Verse 1 Taylor Swift  
 2     2 Like your friends were the night that we first … Verse 1 Taylor Swift  
 3     3 Went home and tried to stalk you on the internet Verse 1 Taylor Swift  
 4     4 Now I've read all of the books beside your bed   Verse 1 Taylor Swift  
 5     5 The wine is cold                                 Verse 1 Taylor Swift  
 6     6 Like the shoulder that I gave you in the street  Verse 1 Taylor Swift  
 7     7 Cat and mouse for a month or two or three        Verse 1 Taylor Swift  
 8     8 Now I wake up in the night and watch you breathe Verse 1 Taylor Swift  
 9     9 (Ayy)                                            Pre-Ch… Taylor Swift  
10    10 Kiss me once 'cause you know I had a long night… Pre-Ch… Taylor Swift  
# â„ą 55 more rows

[[214]]
# A tibble: 53 Ă— 4
    line lyric                                            element element_artist
   <int> <chr>                                            <chr>   <chr>         
 1     1 "We were in the backseat"                        Verse 1 Taylor Swift  
 2     2 "Drunk on something stronger than the drinks in… Verse 1 Taylor Swift  
 3     3 "\"I rent a place on Cornelia Street\""          Verse 1 Taylor Swift  
 4     4 "I say casually in the car"                      Verse 1 Taylor Swift  
 5     5 "We were a fresh page on the desk"               Verse 1 Taylor Swift  
 6     6 "Filling in the blanks as we go"                 Verse 1 Taylor Swift  
 7     7 "As if the street lights pointed in an arrow he… Verse 1 Taylor Swift  
 8     8 "Leading us home"                                Verse 1 Taylor Swift  
 9     9 "And I hope I never lose you, hope it never end… Chorus  Taylor Swift  
10    10 "I'd never walk Cornelia Street again"           Chorus  Taylor Swift  
# â„ą 43 more rows

[[215]]
# A tibble: 60 Ă— 4
    line lyric                                      element element_artist
   <int> <chr>                                      <chr>   <chr>         
 1     1 My, my, my, my                             Intro   Taylor Swift  
 2     2 My, my, my, my                             Intro   Taylor Swift  
 3     3 My, my, my, my                             Intro   Taylor Swift  
 4     4 My, my, my, my                             Intro   Taylor Swift  
 5     5 My, my, my, my                             Intro   Taylor Swift  
 6     6 My, my, my, my                             Intro   Taylor Swift  
 7     7 My, my, my, my                             Intro   Taylor Swift  
 8     8 My, my, my, my                             Intro   Taylor Swift  
 9     9 Saying goodbye is death by a thousand cuts Chorus  Taylor Swift  
10    10 Flashbacks waking me up                    Chorus  Taylor Swift  
# â„ą 50 more rows

[[216]]
# A tibble: 58 Ă— 4
    line lyric                                            element element_artist
   <int> <chr>                                            <chr>   <chr>         
 1     1 We can go driving in, on my scooter              Intro   Taylor Swift  
 2     2 Uh, you know, just 'round London                 Intro   Taylor Swift  
 3     3 Oh, I'd...                                       Intro   Taylor Swift  
 4     4 I love my hometown as much as Motown, I love So… Verse 1 Taylor Swift  
 5     5 And you know I love Springsteen, faded blue jea… Verse 1 Taylor Swift  
 6     6 But something happened, I heard him laughing     Verse 1 Taylor Swift  
 7     7 I saw the dimples first and then I heard the ac… Verse 1 Taylor Swift  
 8     8 They say home is where the heart is              Verse 1 Taylor Swift  
 9     9 But that's not where mine lives                  Verse 1 Taylor Swift  
10    10 You know I love a London boy                     Chorus  Taylor Swift  
# â„ą 48 more rows

[[217]]
# A tibble: 46 Ă— 4
    line lyric                                            element element_artist
   <int> <chr>                                            <chr>   <chr>         
 1     1 The buttons of my coat were tangled in my hair   Verse 1 Taylor Swift  
 2     2 In doctor's office lighting, I didn't tell you … Verse 1 Taylor Swift  
 3     3 That was the first time we were there            Verse 1 Taylor Swift  
 4     4 Holy orange bottles, each night, I pray to you   Verse 1 Taylor Swift  
 5     5 Desperate people find faith, so now I pray to J… Verse 1 Taylor Swift  
 6     6 And I say to you...                              Verse 1 Taylor Swift  
 7     7 Ooh-ah                                           Chorus  Taylor Swift  
 8     8 Soon, you'll get better                          Chorus  Taylor Swift  
 9     9 Ooh-ah                                           Chorus  Taylor Swift  
10    10 Soon, you'll get better                          Chorus  Taylor Swift  
# â„ą 36 more rows

[[218]]
# A tibble: 50 Ă— 4
    line lyric                                            element element_artist
   <int> <chr>                                            <chr>   <chr>         
 1     1 We were crazy to think                           Verse 1 Taylor Swift  
 2     2 Crazy to think that this could work              Verse 1 Taylor Swift  
 3     3 Remember how I said I'd die for you?             Verse 1 Taylor Swift  
 4     4 We were stupid to jump                           Verse 1 Taylor Swift  
 5     5 In the ocean separating us                       Verse 1 Taylor Swift  
 6     6 Remember how I'd fly to you?                     Verse 1 Taylor Swift  
 7     7 And I can't talk to you when you're like this    Pre-Ch… Taylor Swift  
 8     8 Staring out the window like I'm not your favori… Pre-Ch… Taylor Swift  
 9     9 I'm New York City                                Pre-Ch… Taylor Swift  
10    10 I still do it for you, babe                      Pre-Ch… Taylor Swift  
# â„ą 40 more rows

[[219]]
# A tibble: 40 Ă— 4
    line lyric                                            element element_artist
   <int> <chr>                                            <chr>   <chr>         
 1     1 "You are somebody that I don't know"             Verse 1 Taylor Swift  
 2     2 "But you're takin' shots at me like it's PatrĂłn" Verse 1 Taylor Swift  
 3     3 "And I'm just like, damn, it's 7 AM"             Verse 1 Taylor Swift  
 4     4 "Say it in the street, that's a knock-out"       Verse 1 Taylor Swift  
 5     5 "But you say it in a Tweet, that's a cop-out"    Verse 1 Taylor Swift  
 6     6 "And I'm just like, \"Hey, are you okay?\""      Verse 1 Taylor Swift  
 7     7 "And I ain't tryna mess with your self-expressi… Pre-Ch… Taylor Swift  
 8     8 "But I've learned a lesson that stressin' and o… Pre-Ch… Taylor Swift  
 9     9 "And snakes and stones never broke my bones"     Pre-Ch… Taylor Swift  
10    10 "So oh-oh, oh-oh, oh-oh, oh-oh, oh-oh"           Chorus  Taylor Swift  
# â„ą 30 more rows

[[220]]
# A tibble: 48 Ă— 4
    line lyric                                            element element_artist
   <int> <chr>                                            <chr>   <chr>         
 1     1 I blew things out of proportion, now you're blue Verse 1 Taylor Swift  
 2     2 Put you in jail for something you didn't do      Verse 1 Taylor Swift  
 3     3 I pinned your hands behind your back, oh         Verse 1 Taylor Swift  
 4     4 Thought I had reason to attack, but no           Verse 1 Taylor Swift  
 5     5 Fighting with a true love is boxing with no glo… Pre-Ch… Taylor Swift  
 6     6 Chemistry 'til it blows up, 'til there's no us   Pre-Ch… Taylor Swift  
 7     7 Why'd I have to break what I love so much?       Pre-Ch… Taylor Swift  
 8     8 It's on your face, and I'm to blame, I need to … Pre-Ch… Taylor Swift  
 9     9 Hey, it's all me, in my head                     Chorus  Taylor Swift  
10    10 I'm the one who burned us down                   Chorus  Taylor Swift  
# â„ą 38 more rows

[[221]]
# A tibble: 64 Ă— 4
    line lyric                                            element element_artist
   <int> <chr>                                            <chr>   <chr>         
 1     1 I promise that you'll never find another like me Intro   Taylor Swift  
 2     2 I know that I'm a handful, baby, uh              Verse 1 Taylor Swift  
 3     3 I know I never think before I jump               Verse 1 Taylor Swift  
 4     4 And you're the kind of guy the ladies want       Verse 1 Taylor Swift  
 5     5 (And there's a lot of cool chicks out there)     Verse 1 Taylor Swift  
 6     6 I know that I went psycho on the phone           Verse 1 Taylor Swift  
 7     7 I never leave well enough alone                  Verse 1 Taylor Swift  
 8     8 And trouble's gonna follow where I go            Verse 1 Taylor Swift  
 9     9 (And there's a lot of cool chicks out there)     Verse 1 Taylor Swift  
10    10 But one of these things is not like the others   Pre-Ch… Taylor Swift  
# â„ą 54 more rows

[[222]]
# A tibble: 28 Ă— 4
    line lyric                                       element element_artist
   <int> <chr>                                       <chr>   <chr>         
 1     1 "Ooh"                                       Intro   Taylor Swift  
 2     2 "Ooh"                                       Intro   Taylor Swift  
 3     3 "School bell rings, walk me home"           Verse 1 Taylor Swift  
 4     4 "Sidewalk chalk covered in snow"            Verse 1 Taylor Swift  
 5     5 "Lost my gloves, you give me one"           Verse 1 Taylor Swift  
 6     6 "\"Wanna hang out?\" Yeah, sounds like fun" Verse 1 Taylor Swift  
 7     7 "Video games, you pass me a note"           Verse 1 Taylor Swift  
 8     8 "Sleeping in tents"                         Verse 1 Taylor Swift  
 9     9 "It's nice to have a friend (Ooh)"          Chorus  Taylor Swift  
10    10 "It's nice to have a friend (Ooh)"          Chorus  Taylor Swift  
# â„ą 18 more rows

[[223]]
# A tibble: 59 Ă— 4
    line lyric                                            element element_artist
   <int> <chr>                                            <chr>   <chr>         
 1     1 My love was as cruel as the cities I lived in    Verse 1 Taylor Swift  
 2     2 Everyone looked worse in the light               Verse 1 Taylor Swift  
 3     3 There are so many lines that I've crossed unfor… Verse 1 Taylor Swift  
 4     4 I'll tell you the truth, but never goodbye       Verse 1 Taylor Swift  
 5     5 I don't wanna look at anything else now that I … Chorus  Taylor Swift  
 6     6 I don't wanna think of anything else now that I… Chorus  Taylor Swift  
 7     7 I've been sleeping so long in a 20-year dark ni… Chorus  Taylor Swift  
 8     8 And now I see daylight, I only see daylight      Chorus  Taylor Swift  
 9     9 Luck of the draw only draws the unlucky          Verse 2 Taylor Swift  
10    10 And so I became the butt of the joke             Verse 2 Taylor Swift  
# â„ą 49 more rows

[[224]]
# A tibble: 47 Ă— 4
    line lyric                                            element element_artist
   <int> <chr>                                            <chr>   <chr>         
 1     1 "I'm doing good, I'm on some new shit"           Verse 1 Taylor Swift  
 2     2 "Been saying \"yes\" instead of \"no\""          Verse 1 Taylor Swift  
 3     3 "I thought I saw you at the bus stop, I didn't … Verse 1 Taylor Swift  
 4     4 "I hit the ground running each night"            Verse 1 Taylor Swift  
 5     5 "I hit the Sunday matinée"                       Verse 1 Taylor Swift  
 6     6 "You know the greatest films of all time were n… Verse 1 Taylor Swift  
 7     7 "I guess you never know, never know"             Pre-Ch… Taylor Swift  
 8     8 "And if you wanted me, you really should've sho… Pre-Ch… Taylor Swift  
 9     9 "And if you never bleed, you're never gonna gro… Pre-Ch… Taylor Swift  
10    10 "And it's alright now"                           Pre-Ch… Taylor Swift  
# â„ą 37 more rows

[[225]]
# A tibble: 56 Ă— 4
    line lyric                                            element element_artist
   <int> <chr>                                            <chr>   <chr>         
 1     1 Vintage tee, brand new phone                     Verse 1 Taylor Swift  
 2     2 High heels on cobblestones                       Verse 1 Taylor Swift  
 3     3 When you are young, they assume you know nothing Verse 1 Taylor Swift  
 4     4 Sequin smile, black lipstick                     Verse 1 Taylor Swift  
 5     5 Sensual politics                                 Verse 1 Taylor Swift  
 6     6 When you are young, they assume you know nothing Verse 1 Taylor Swift  
 7     7 But I knew you                                   Chorus  Taylor Swift  
 8     8 Dancin' in your Levi's                           Chorus  Taylor Swift  
 9     9 Drunk under a streetlight, I                     Chorus  Taylor Swift  
10    10 I knew you                                       Chorus  Taylor Swift  
# â„ą 46 more rows

[[226]]
# A tibble: 40 Ă— 4
    line lyric                                            element element_artist
   <int> <chr>                                            <chr>   <chr>         
 1     1 "Rebekah rode up on the afternoon train, it was… Verse 1 Taylor Swift  
 2     2 "Her saltbox house on the coast took her mind o… Verse 1 Taylor Swift  
 3     3 "Bill was the heir to the Standard Oil name and… Verse 1 Taylor Swift  
 4     4 "And the town said, \"How did a middle-class di… Verse 1 Taylor Swift  
 5     5 "The wedding was charming, if a little gauche"   Verse 1 Taylor Swift  
 6     6 "There's only so far new money goes"             Verse 1 Taylor Swift  
 7     7 "They picked out a home and called it \"Holiday… Verse 1 Taylor Swift  
 8     8 "Their parties were tasteful, if a little loud"  Verse 1 Taylor Swift  
 9     9 "The doctor had told him to settle down"         Verse 1 Taylor Swift  
10    10 "It must have been her fault his heart gave out" Verse 1 Taylor Swift  
# â„ą 30 more rows

[[227]]
# A tibble: 61 Ă— 4
    line lyric                                      element element_artist
   <int> <chr>                                      <chr>   <chr>         
 1     1 I can see you standing, honey              Verse 1 Taylor Swift  
 2     2 With his arms around your body             Verse 1 Taylor Swift  
 3     3 Laughin', but the joke's not funny at all  Verse 1 Taylor Swift  
 4     4 And it took you five whole minutes         Verse 1 Taylor Swift  
 5     5 To pack us up and leave me with it         Verse 1 Taylor Swift  
 6     6 Holdin' all this love out here in the hall Verse 1 Taylor Swift  
 7     7 I think I've seen this film before         Chorus  Taylor Swift  
 8     8 And I didn't like the ending               Chorus  Taylor Swift  
 9     9 You're not my homeland anymore             Chorus  Taylor Swift  
10    10 So what am I defending now?                Chorus  Taylor Swift  
# â„ą 51 more rows

[[228]]
# A tibble: 37 Ă— 4
    line lyric                                            element element_artist
   <int> <chr>                                            <chr>   <chr>         
 1     1 We gather here, we line up, weepin' in a sunlit… Verse 1 Taylor Swift  
 2     2 And if I'm on fire, you'll be made of ashes, too Verse 1 Taylor Swift  
 3     3 Even on my worst day, did I deserve, babe        Verse 1 Taylor Swift  
 4     4 All the hell you gave me?                        Verse 1 Taylor Swift  
 5     5 'Cause I loved you, I swear I loved you          Verse 1 Taylor Swift  
 6     6 'Til my dying day                                Verse 1 Taylor Swift  
 7     7 I didn't have it in myself to go with grace      Chorus  Taylor Swift  
 8     8 And you're the hero flying around, saving face   Chorus  Taylor Swift  
 9     9 And if I'm dead to you, why are you at the wake? Chorus  Taylor Swift  
10    10 Cursing my name, wishing I stayed                Chorus  Taylor Swift  
# â„ą 27 more rows

[[229]]
# A tibble: 39 Ă— 4
    line lyric                                           element element_artist
   <int> <chr>                                           <chr>   <chr>         
 1     1 I want you to know                              Verse 1 Taylor Swift  
 2     2 I'm a mirrorball                                Verse 1 Taylor Swift  
 3     3 I'll show you every version of yourself tonight Verse 1 Taylor Swift  
 4     4 I'll get you out on the floor                   Verse 1 Taylor Swift  
 5     5 Shimmering beautiful                            Verse 1 Taylor Swift  
 6     6 And when I break, it's in a million pieces      Verse 1 Taylor Swift  
 7     7 Hush, when no one is around, my dear            Chorus  Taylor Swift  
 8     8 You'll find me on my tallest tiptoes            Chorus  Taylor Swift  
 9     9 Spinning in my highest heels, love              Chorus  Taylor Swift  
10    10 Shining just for you                            Chorus  Taylor Swift  
# â„ą 29 more rows

[[230]]
# A tibble: 37 Ă— 4
    line lyric                                 element element_artist
   <int> <chr>                                 <chr>   <chr>         
 1     1 Please picture me in the trees        Verse 1 Taylor Swift  
 2     2 I hit my peak at seven                Verse 1 Taylor Swift  
 3     3 Feet in the swing over the creek      Verse 1 Taylor Swift  
 4     4 I was too scared to jump in           Verse 1 Taylor Swift  
 5     5 But I, I was high in the sky          Verse 1 Taylor Swift  
 6     6 With Pennsylvania under me            Verse 1 Taylor Swift  
 7     7 Are there still beautiful things?     Verse 1 Taylor Swift  
 8     8 Sweet tea in the summer               Chorus  Taylor Swift  
 9     9 Cross your heart, won't tell no other Chorus  Taylor Swift  
10    10 And though I can't recall your face   Chorus  Taylor Swift  
# â„ą 27 more rows

[[231]]
# A tibble: 51 Ă— 4
    line lyric                                       element element_artist
   <int> <chr>                                       <chr>   <chr>         
 1     1 "Salt air, and the rust on your door"       Verse 1 Taylor Swift  
 2     2 "I never needed anything more"              Verse 1 Taylor Swift  
 3     3 "Whispers of \"Are you sure?\""             Verse 1 Taylor Swift  
 4     4 "\"Never have I ever before\""              Verse 1 Taylor Swift  
 5     5 "But I can see us lost in the memory"       Chorus  Taylor Swift  
 6     6 "August slipped away into a moment in time" Chorus  Taylor Swift  
 7     7 "'Cause it was never mine"                  Chorus  Taylor Swift  
 8     8 "And I can see us twisted in bedsheets"     Chorus  Taylor Swift  
 9     9 "August sipped away like a bottle of wine"  Chorus  Taylor Swift  
10    10 "'Cause you were never mine"                Chorus  Taylor Swift  
# â„ą 41 more rows

[[232]]
# A tibble: 28 Ă— 4
    line lyric                                            element element_artist
   <int> <chr>                                            <chr>   <chr>         
 1     1 I've been having a hard time adjusting           Verse 1 Taylor Swift  
 2     2 I had the shiniest wheels, now they're rusting   Verse 1 Taylor Swift  
 3     3 I didn't know if you'd care if I came back       Verse 1 Taylor Swift  
 4     4 I have a lot of regrets about that               Verse 1 Taylor Swift  
 5     5 Pulled the car off the road to the lookout       Verse 1 Taylor Swift  
 6     6 Could've followed my fears all the way down      Verse 1 Taylor Swift  
 7     7 And maybe I don't quite know what to say         Verse 1 Taylor Swift  
 8     8 But I'm here in your doorway                     Verse 1 Taylor Swift  
 9     9 I just wanted you to know that this is me trying Chorus  Taylor Swift  
10    10 I just wanted you to know that this is me trying Chorus  Taylor Swift  
# â„ą 18 more rows

[[233]]
# A tibble: 36 Ă— 4
    line lyric                                       element element_artist
   <int> <chr>                                       <chr>   <chr>         
 1     1 Make sure nobody sees you leave             Verse 1 Taylor Swift  
 2     2 Hood over your head, keep your eyes down    Verse 1 Taylor Swift  
 3     3 Tell your friends you're out for a run      Verse 1 Taylor Swift  
 4     4 You'll be flushed when you return           Verse 1 Taylor Swift  
 5     5 Take the road less traveled by              Verse 1 Taylor Swift  
 6     6 Tell yourself you can always stop           Verse 1 Taylor Swift  
 7     7 What started in beautiful rooms             Verse 1 Taylor Swift  
 8     8 Ends with meetings in parking lots          Verse 1 Taylor Swift  
 9     9 And that's the thing about illicit affairs  Chorus  Taylor Swift  
10    10 And clandestine meetings and longing stares Chorus  Taylor Swift  
# â„ą 26 more rows

[[234]]
# A tibble: 54 Ă— 4
    line lyric                                       element element_artist
   <int> <chr>                                       <chr>   <chr>         
 1     1 Green was the color of the grass            Verse 1 Taylor Swift  
 2     2 Where I used to read at Centennial Park     Verse 1 Taylor Swift  
 3     3 I used to think I would meet somebody there Verse 1 Taylor Swift  
 4     4 Teal was the color of your shirt            Verse 1 Taylor Swift  
 5     5 When you were sixteen at the yogurt shop    Verse 1 Taylor Swift  
 6     6 You used to work at to make a little money  Verse 1 Taylor Swift  
 7     7 Time, curious time                          Chorus  Taylor Swift  
 8     8 Gave me no compasses, gave me no signs      Chorus  Taylor Swift  
 9     9 Were there clues I didn't see?              Chorus  Taylor Swift  
10    10 And isn't it just so pretty to think        Chorus  Taylor Swift  
# â„ą 44 more rows

[[235]]
# A tibble: 45 Ă— 4
    line lyric                                            element element_artist
   <int> <chr>                                            <chr>   <chr>         
 1     1 "What did you think I'd say to that?"            Verse 1 Taylor Swift  
 2     2 "Does a scorpion sting when fighting back?"      Verse 1 Taylor Swift  
 3     3 "They strike to kill, and you know I will"       Verse 1 Taylor Swift  
 4     4 "You know I will"                                Verse 1 Taylor Swift  
 5     5 "What do you sing on your drive home?"           Verse 1 Taylor Swift  
 6     6 "Do you see my face in the neighbor's lawn?"     Verse 1 Taylor Swift  
 7     7 "Does she smile?"                                Verse 1 Taylor Swift  
 8     8 "Or does she mouth, \"Fuck you forever\"?"       Verse 1 Taylor Swift  
 9     9 "Every time you call me crazy, I get more crazy" Pre-Ch… Taylor Swift  
10    10 "What about that?"                               Pre-Ch… Taylor Swift  
# â„ą 35 more rows

[[236]]
# A tibble: 24 Ă— 4
    line lyric                                            element element_artist
   <int> <chr>                                            <chr>   <chr>         
 1     1 "Keep your helmet, keep your life, son"          Verse 1 Taylor Swift  
 2     2 "Just a flesh wound, here's your rifle"          Verse 1 Taylor Swift  
 3     3 "Crawling up the beaches now"                    Verse 1 Taylor Swift  
 4     4 "\"Sir, I think he's bleeding out\""             Verse 1 Taylor Swift  
 5     5 "And some things you just can't speak about"     Verse 1 Taylor Swift  
 6     6 "With you I serve, with you I fall down, down"   Chorus  Taylor Swift  
 7     7 "Watch you breathe in, watch you breathing out,… Chorus  Taylor Swift  
 8     8 "Something med school did not cover"             Verse 2 Taylor Swift  
 9     9 "Someone's daughter, someone's mother"           Verse 2 Taylor Swift  
10    10 "Holds your hand through plastic now"            Verse 2 Taylor Swift  
# â„ą 14 more rows

[[237]]
# A tibble: 67 Ă— 4
    line lyric                                         element    element_artist
   <int> <chr>                                         <chr>      <chr>         
 1     1 Betty, I won't make assumptions               Verse 1    Taylor Swift  
 2     2 About why you switched your homeroom, but     Verse 1    Taylor Swift  
 3     3 I think it's 'cause of me                     Verse 1    Taylor Swift  
 4     4 Betty, one time I was riding on my skateboard Verse 1    Taylor Swift  
 5     5 When I passed your house                      Verse 1    Taylor Swift  
 6     6 It's like I couldn't breathe                  Verse 1    Taylor Swift  
 7     7 You heard the rumors from Inez                Pre-Chorus Taylor Swift  
 8     8 You can't believe a word she says             Pre-Chorus Taylor Swift  
 9     9 Most times, but this time it was true         Pre-Chorus Taylor Swift  
10    10 The worst thing that I ever did               Pre-Chorus Taylor Swift  
# â„ą 57 more rows

[[238]]
# A tibble: 33 Ă— 4
    line lyric                                            element element_artist
   <int> <chr>                                            <chr>   <chr>         
 1     1 Our coming-of-age has come and gone              Verse 1 Taylor Swift  
 2     2 Suddenly this summer, it's clear                 Verse 1 Taylor Swift  
 3     3 I never had the courage of my convictions        Verse 1 Taylor Swift  
 4     4 As long as danger is near                        Verse 1 Taylor Swift  
 5     5 And it's just around the corner, darlin'         Verse 1 Taylor Swift  
 6     6 'Cause it lives in me                            Verse 1 Taylor Swift  
 7     7 No, I could never give you peace                 Verse 1 Taylor Swift  
 8     8 But I'm a fire and I'll keep your brittle heart… Chorus  Taylor Swift  
 9     9 If your cascade, ocean wave blues come           Chorus  Taylor Swift  
10    10 All these people think love's for show           Chorus  Taylor Swift  
# â„ą 23 more rows

[[239]]
# A tibble: 38 Ă— 4
    line lyric                                            element element_artist
   <int> <chr>                                            <chr>   <chr>         
 1     1 "My only one"                                    Verse 1 Taylor Swift  
 2     2 "My smoking gun"                                 Verse 1 Taylor Swift  
 3     3 "My eclipsed sun"                                Verse 1 Taylor Swift  
 4     4 "This has broken me down"                        Verse 1 Taylor Swift  
 5     5 "My twisted knife"                               Verse 1 Taylor Swift  
 6     6 "My sleepless night"                             Verse 1 Taylor Swift  
 7     7 "My winless fight"                               Verse 1 Taylor Swift  
 8     8 "This has frozen my ground"                      Verse 1 Taylor Swift  
 9     9 "Stood on the cliffside screaming, \"Give me a … Chorus  Taylor Swift  
10    10 "Your faithless love's the only hoax I believe … Chorus  Taylor Swift  
# â„ą 28 more rows

[[240]]
# A tibble: 28 Ă— 4
    line lyric                                            element element_artist
   <int> <chr>                                            <chr>   <chr>         
 1     1 Is it romantic how all my elegies eulogize me?   Verse 1 Taylor Swift  
 2     2 I'm not cut out for all these cynical clones     Verse 1 Taylor Swift  
 3     3 These hunters with cell phones                   Verse 1 Taylor Swift  
 4     4 Take me to the Lakes where all the poets went t… Chorus  Taylor Swift  
 5     5 I don't belong and, my beloved, neither do you   Chorus  Taylor Swift  
 6     6 Those Windermere peaks look like a perfect plac… Chorus  Taylor Swift  
 7     7 I'm setting off, but not without my muse         Chorus  Taylor Swift  
 8     8 What should be over burrowed under my skin       Verse 2 Taylor Swift  
 9     9 In heart-stopping waves of hurt                  Verse 2 Taylor Swift  
10    10 I've come too far to watch some namedropping sl… Verse 2 Taylor Swift  
# â„ą 18 more rows

[[241]]
# A tibble: 55 Ă— 4
    line lyric                                            element element_artist
   <int> <chr>                                            <chr>   <chr>         
 1     1 I'm like the water when your ship rolled in tha… Verse 1 Taylor Swift  
 2     2 Rough on the surface, but you cut through like … Verse 1 Taylor Swift  
 3     3 And if it was an open-shut case                  Verse 1 Taylor Swift  
 4     4 I never would've known from that look on your f… Verse 1 Taylor Swift  
 5     5 Lost in your current like a priceless wine       Verse 1 Taylor Swift  
 6     6 The more that you say, the less I know           Chorus  Taylor Swift  
 7     7 Wherever you stray, I follow                     Chorus  Taylor Swift  
 8     8 I'm begging for you to take my hand              Chorus  Taylor Swift  
 9     9 Wreck my plans, that's my man                    Chorus  Taylor Swift  
10    10 Life was a willow and it bent right to your wind Verse 2 Taylor Swift  
# â„ą 45 more rows

[[242]]
# A tibble: 50 Ă— 4
    line lyric                                     element element_artist
   <int> <chr>                                     <chr>   <chr>         
 1     1 You booked the night train for a reason   Verse 1 Taylor Swift  
 2     2 So you could sit there in this hurt       Verse 1 Taylor Swift  
 3     3 Bustling crowds or silent sleepers        Verse 1 Taylor Swift  
 4     4 You're not sure which is worse            Verse 1 Taylor Swift  
 5     5 Because I dropped your hand while dancing Chorus  Taylor Swift  
 6     6 Left you out there standing               Chorus  Taylor Swift  
 7     7 Crestfallen on the landing                Chorus  Taylor Swift  
 8     8 Champagne problems                        Chorus  Taylor Swift  
 9     9 Your mom's ring in your pocket            Chorus  Taylor Swift  
10    10 My picture in your wallet                 Chorus  Taylor Swift  
# â„ą 40 more rows

[[243]]
# A tibble: 42 Ă— 4
    line lyric                                            element element_artist
   <int> <chr>                                            <chr>   <chr>         
 1     1 Gleaming, twinkling                              Intro   Taylor Swift  
 2     2 Eyes like sinking ships on waters                Intro   Taylor Swift  
 3     3 So inviting, I almost jump in                    Intro   Taylor Swift  
 4     4 But I don't like a gold rush, gold rush          Chorus  Taylor Swift  
 5     5 I don't like anticipatin' my face in a red flush Chorus  Taylor Swift  
 6     6 I don't like that anyone would die to feel your… Chorus  Taylor Swift  
 7     7 Everybody wants you                              Chorus  Taylor Swift  
 8     8 Everybody wonders what it would be like to love… Chorus  Taylor Swift  
 9     9 Walk past, quick brush                           Chorus  Taylor Swift  
10    10 I don't like slow motion, double vision in rose… Chorus  Taylor Swift  
# â„ą 32 more rows

[[244]]
# A tibble: 52 Ă— 4
    line lyric                                            element element_artist
   <int> <chr>                                            <chr>   <chr>         
 1     1 "If I wanted to know who you were hanging with"  Verse 1 Taylor Swift  
 2     2 "While I was gone, I would've asked you"         Verse 1 Taylor Swift  
 3     3 "It's the kind of cold, fogs up windshield glas… Verse 1 Taylor Swift  
 4     4 "But I felt it when I passed you"                Verse 1 Taylor Swift  
 5     5 "There's an ache in you, put there by the ache … Verse 1 Taylor Swift  
 6     6 "But if it's all the same to you"                Verse 1 Taylor Swift  
 7     7 "It's the same to me"                            Verse 1 Taylor Swift  
 8     8 "So we could call it even"                       Chorus  Taylor Swift  
 9     9 "You could call me \"babe\" for the weekend"     Chorus  Taylor Swift  
10    10 " 'Tis the damn season, write this down"         Chorus  Taylor Swift  
# â„ą 42 more rows

[[245]]
# A tibble: 41 Ă— 4
    line lyric                                            element element_artist
   <int> <chr>                                            <chr>   <chr>         
 1     1 I sit and watch you reading with your head low   Verse 1 Taylor Swift  
 2     2 I wake and watch you breathing with your eyes c… Verse 1 Taylor Swift  
 3     3 I sit and watch you                              Verse 1 Taylor Swift  
 4     4 I notice everything you do or don't do           Verse 1 Taylor Swift  
 5     5 You're so much older and wiser, and I            Verse 1 Taylor Swift  
 6     6 I wait by the door like I'm just a kid           Chorus… Taylor Swift  
 7     7 Use my best colors for your portrait             Chorus… Taylor Swift  
 8     8 Lay the table with the fancy shit                Chorus… Taylor Swift  
 9     9 And watch you tolerate it                        Chorus… Taylor Swift  
10    10 If it's all in my head, tell me now              Chorus… Taylor Swift  
# â„ą 31 more rows

[[246]]
# A tibble: 51 Ă— 4
    line lyric                                            element element_artist
   <int> <chr>                                            <chr>   <chr>         
 1     1 "He did it"                                      Intro   Taylor Swift  
 2     2 "He did it"                                      Intro   Taylor Swift  
 3     3 "Este's a friend of mine"                        Verse 1 Taylor Swift  
 4     4 "We meet up every Tuesday night for dinner and … Verse 1 Taylor Swift  
 5     5 "Este's been losin' sleep"                       Verse 1 Taylor Swift  
 6     6 "Her husband's actin' different, and it smells … Verse 1 Taylor Swift  
 7     7 "She says, \"That ain't my Merlot on his mouth"  Verse 1 Taylor Swift  
 8     8 "That ain't my jewelry on our joint account\""   Verse 1 Taylor Swift  
 9     9 "No, there ain't no doubt"                       Verse 1 Taylor Swift  
10    10 "I think I'm gonna call him out"                 Verse 1 Taylor Swift  
# â„ą 41 more rows

[[247]]
# A tibble: 63 Ă— 4
    line lyric                                            element element_artist
   <int> <chr>                                            <chr>   <chr>         
 1     1 Honey, when I'm above the trees                  Verse 1 Taylor Swift  
 2     2 I see this for what it is                        Verse 1 Taylor Swift  
 3     3 But now I'm right down in it, all the years I'v… Verse 1 Taylor Swift  
 4     4 Is just shit we're dividin' up                   Verse 1 Taylor Swift  
 5     5 Showed you all of my hiding spots                Verse 1 Taylor Swift  
 6     6 I was dancing when the music stopped             Verse 1 Taylor Swift  
 7     7 And in the disbelief, I can't face reinvention   Verse 1 Taylor Swift  
 8     8 I haven't met the new me yet                     Verse 1 Taylor Swift  
 9     9 There'll be happiness after you                  Chorus  Taylor Swift  
10    10 But there was happiness because of you           Chorus  Taylor Swift  
# â„ą 53 more rows

[[248]]
# A tibble: 33 Ă— 4
    line lyric                                            element element_artist
   <int> <chr>                                            <chr>   <chr>         
 1     1 Hey, Dorothea, do you ever stop and think about… Verse 1 Taylor Swift  
 2     2 When we were younger down in the park            Verse 1 Taylor Swift  
 3     3 Honey, making a lark of the misery               Verse 1 Taylor Swift  
 4     4 You got shiny friends since you left town        Verse 1 Taylor Swift  
 5     5 A tiny screen's the only place I see you now     Verse 1 Taylor Swift  
 6     6 And I got nothing but well wishes for ya         Verse 1 Taylor Swift  
 7     7 Ooh, this place is the same as it ever was       Pre-Ch… Taylor Swift  
 8     8 Ooh, but you won't like it that way              Pre-Ch… Taylor Swift  
 9     9 It's never too late to come back to my side      Chorus  Taylor Swift  
10    10 The stars in your eyes shined brighter in Tupelo Chorus  Taylor Swift  
# â„ą 23 more rows

[[249]]
# A tibble: 61 Ă— 4
    line lyric                                          element   element_artist
   <int> <chr>                                          <chr>     <chr>         
 1     1 Break my soul in two looking for you           Verse 1   Taylor Swift  
 2     2 But you're right here                          Verse 1   Taylor Swift  
 3     3 If I can't relate to you anymore               Verse 1   Taylor Swift  
 4     4 Then who am I related to?                      Verse 1   Taylor Swift  
 5     5 And if this is the long haul                   Verse 1   Taylor Swift  
 6     6 How'd we get here so soon?                     Verse 1   Taylor Swift  
 7     7 Did I close my fist around something delicate? Verse 1   Taylor Swift  
 8     8 Did I shatter you?                             Verse 1   Taylor Swift  
 9     9 And I'm sitting on a bench in Coney Island     Pre-Chor… Taylor Swift  
10    10 Wondering where did my baby go?                Pre-Chor… Taylor Swift  
# â„ą 51 more rows

[[250]]
# A tibble: 64 Ă— 4
    line lyric                                         element    element_artist
   <int> <chr>                                         <chr>      <chr>         
 1     1 How's one to know?                            Verse 1    Taylor Swift  
 2     2 I'd meet you where the spirit meets the bones Verse 1    Taylor Swift  
 3     3 In a faith-forgotten land                     Verse 1    Taylor Swift  
 4     4 In from the snow                              Verse 1    Taylor Swift  
 5     5 Your touch brought forth an incandescent glow Verse 1    Taylor Swift  
 6     6 Tarnished but so grand                        Verse 1    Taylor Swift  
 7     7 And the old widow goes to the stone every day Pre-Chorus Taylor Swift  
 8     8 But I don't, I just sit here and wait         Pre-Chorus Taylor Swift  
 9     9 Grieving for the living                       Pre-Chorus Taylor Swift  
10    10 Oh, goddamn                                   Chorus     Taylor Swift  
# â„ą 54 more rows

[[251]]
# A tibble: 60 Ă— 4
    line lyric                                         element element_artist
   <int> <chr>                                         <chr>   <chr>         
 1     1 "And the tennis court was covered up"         Verse 1 Taylor Swift  
 2     2 "With some tent-like thing"                   Verse 1 Taylor Swift  
 3     3 "And you asked me to dance"                   Verse 1 Taylor Swift  
 4     4 "But I said, \"Dancin' is a dangerous game\"" Verse 1 Taylor Swift  
 5     5 "Oh, I thought"                               Verse 2 Taylor Swift  
 6     6 "This is gonna be one of those things"        Verse 2 Taylor Swift  
 7     7 "Now I know"                                  Verse 2 Taylor Swift  
 8     8 "I'm never gonna love again"                  Verse 2 Taylor Swift  
 9     9 "I've got some tricks up my sleeve"           Chorus  Taylor Swift  
10    10 "Takes one to know one"                       Chorus  Taylor Swift  
# â„ą 50 more rows

[[252]]
# A tibble: 69 Ă— 4
    line lyric                                            element element_artist
   <int> <chr>                                            <chr>   <chr>         
 1     1 Fatefully                                        Verse 1 Taylor Swift  
 2     2 I tried to pick my battles 'til the battle pick… Verse 1 Taylor Swift  
 3     3 Misery                                           Verse 1 Taylor Swift  
 4     4 Like the war of words I shouted in my sleep      Verse 1 Taylor Swift  
 5     5 And you passed right by                          Verse 1 Taylor Swift  
 6     6 I was in the alley, surrounded on all sides      Verse 1 Taylor Swift  
 7     7 The knife cuts both ways                         Verse 1 Taylor Swift  
 8     8 If the shoe fits, walk in it 'til your high hee… Verse 1 Taylor Swift  
 9     9 And I fell from the pedestal                     Chorus  Taylor Swift  
10    10 Right down the rabbit hole                       Chorus  Taylor Swift  
# â„ą 59 more rows

[[253]]
# A tibble: 56 Ă— 4
    line lyric                                element    element_artist
   <int> <chr>                                <chr>      <chr>         
 1     1 Never be so kind                     Verse 1    Taylor Swift  
 2     2 You forget to be clever              Verse 1    Taylor Swift  
 3     3 Never be so clever                   Verse 1    Taylor Swift  
 4     4 You forget to be kind                Verse 1    Taylor Swift  
 5     5 And if I didn't know better          Pre-Chorus Taylor Swift  
 6     6 I'd think you were talking to me now Pre-Chorus Taylor Swift  
 7     7 If I didn't know better              Pre-Chorus Taylor Swift  
 8     8 I'd think you were still around      Pre-Chorus Taylor Swift  
 9     9 What died didn't stay dead           Chorus     Taylor Swift  
10    10 What died didn't stay dead           Chorus     Taylor Swift  
# â„ą 46 more rows

[[254]]
# A tibble: 39 Ă— 4
    line lyric                                     element element_artist
   <int> <chr>                                     <chr>   <chr>         
 1     1 It's been a long time                     Verse 1 Taylor Swift  
 2     2 And seeing the shape of your name         Verse 1 Taylor Swift  
 3     3 Still spells out pain                     Verse 1 Taylor Swift  
 4     4 It wasn't right                           Verse 1 Taylor Swift  
 5     5 The way it all went down                  Verse 1 Taylor Swift  
 6     6 Looks like you know that now              Verse 1 Taylor Swift  
 7     7 Yes, I got your letter                    Chorus  Taylor Swift  
 8     8 Yes, I'm doing better                     Chorus  Taylor Swift  
 9     9 It cut deep to know ya, right to the bone Chorus  Taylor Swift  
10    10 Yes, I got your letter                    Chorus  Taylor Swift  
# â„ą 29 more rows

[[255]]
# A tibble: 60 Ă— 4
    line lyric                                        element element_artist
   <int> <chr>                                        <chr>   <chr>         
 1     1 Gray November                                Verse 1 Taylor Swift  
 2     2 I've been down since July                    Verse 1 Taylor Swift  
 3     3 Motion capture                               Verse 1 Taylor Swift  
 4     4 Put me in a bad light                        Verse 1 Taylor Swift  
 5     5 I replay my footsteps on each stepping stone Verse 1 Taylor Swift  
 6     6 Trying to find the one where I went wrong    Verse 1 Taylor Swift  
 7     7 Writing letters                              Verse 1 Taylor Swift  
 8     8 Addressed to the fire                        Verse 1 Taylor Swift  
 9     9 And I was catching my breath                 Chorus  Taylor Swift  
10    10 Staring out an open window                   Chorus  Taylor Swift  
# â„ą 50 more rows

[[256]]
# A tibble: 59 Ă— 4
    line lyric                                       element    element_artist
   <int> <chr>                                       <chr>      <chr>         
 1     1 Friends break up, friends get married       Verse 1    Taylor Swift  
 2     2 Strangers get born, strangers get buried    Verse 1    Taylor Swift  
 3     3 Trends change, rumors fly through new skies Verse 1    Taylor Swift  
 4     4 But I'm right where you left me             Verse 1    Taylor Swift  
 5     5 Matches burn after the other                Verse 1    Taylor Swift  
 6     6 Pages turn and stick to each other          Verse 1    Taylor Swift  
 7     7 Wages earned and lessons learned            Verse 1    Taylor Swift  
 8     8 But I, I'm right where you left me          Verse 1    Taylor Swift  
 9     9 Help, I'm still at the restaurant           Pre-Chorus Taylor Swift  
10    10 Still sitting in a corner I haunt           Pre-Chorus Taylor Swift  
# â„ą 49 more rows

[[257]]
# A tibble: 54 Ă— 4
    line lyric                                            element element_artist
   <int> <chr>                                            <chr>   <chr>         
 1     1 When the dinner is cold and the chatter gets old Verse 1 Taylor Swift  
 2     2 You ask for the tab                              Verse 1 Taylor Swift  
 3     3 Or that moment again, he's insisting that frien… Verse 1 Taylor Swift  
 4     4 Look at each other like that                     Verse 1 Taylor Swift  
 5     5 When the words of a sister come back in whispers Verse 1 Taylor Swift  
 6     6 That prove she was not in fact what she seemed   Verse 1 Taylor Swift  
 7     7 Not a twin from your dreams                      Verse 1 Taylor Swift  
 8     8 She's a crook who was caught                     Verse 1 Taylor Swift  
 9     9 That old familiar body ache                      Chorus  Taylor Swift  
10    10 The snaps from the same little breaks in your s… Chorus  Taylor Swift  
# â„ą 44 more rows

[[258]]
# A tibble: 47 Ă— 4
    line lyric                                       element    element_artist
   <int> <chr>                                       <chr>      <chr>         
 1     1 Meet me at midnight                         Intro      Taylor Swift  
 2     2 Staring at the ceiling with you             Verse 1    Taylor Swift  
 3     3 Oh, you don't ever say too much             Verse 1    Taylor Swift  
 4     4 And you don't really read into              Verse 1    Taylor Swift  
 5     5 My melancholia                              Verse 1    Taylor Swift  
 6     6 I been under scrutiny (Yeah, oh, yeah)      Pre-Chorus Taylor Swift  
 7     7 You handled it beautifully (Yeah, oh, yeah) Pre-Chorus Taylor Swift  
 8     8 All this shit is new to me (Yeah, oh, yeah) Pre-Chorus Taylor Swift  
 9     9 I feel the lavender haze creeping up on me  Chorus     Taylor Swift  
10    10 Surreal                                     Chorus     Taylor Swift  
# â„ą 37 more rows

[[259]]
# A tibble: 55 Ă— 4
    line lyric                                            element element_artist
   <int> <chr>                                            <chr>   <chr>         
 1     1 "When the morning came"                          Verse 1 Taylor Swift  
 2     2 "We were cleaning incense off your vinyl shelf"  Verse 1 Taylor Swift  
 3     3 "'Cause we lost track of time again"             Verse 1 Taylor Swift  
 4     4 "Laughing with my feet in your lap"              Verse 1 Taylor Swift  
 5     5 "Like you were my closest friend"                Verse 1 Taylor Swift  
 6     6 "\"How'd we end up on the floor, anyway?\" You … Verse 1 Taylor Swift  
 7     7 "\"Your roommate's cheap-ass screw-top rosé, th… Verse 1 Taylor Swift  
 8     8 "I see you every day now"                        Verse 1 Taylor Swift  
 9     9 "And I chose you"                                Chorus  Taylor Swift  
10    10 "The one I was dancing with"                     Chorus  Taylor Swift  
# â„ą 45 more rows

[[260]]
# A tibble: 49 Ă— 4
    line lyric                                            element element_artist
   <int> <chr>                                            <chr>   <chr>         
 1     1 I have this thing where I get older, but just n… Verse 1 Taylor Swift  
 2     2 Midnights become my afternoons                   Verse 1 Taylor Swift  
 3     3 When my depression works the graveyard shift, a… Verse 1 Taylor Swift  
 4     4 I've ghosted stand there in the room             Verse 1 Taylor Swift  
 5     5 I should not be left to my own devices           Pre-Ch… Taylor Swift  
 6     6 They come with prices and vices                  Pre-Ch… Taylor Swift  
 7     7 I end up in crisis                               Pre-Ch… Taylor Swift  
 8     8 (Tale as old as time)                            Pre-Ch… Taylor Swift  
 9     9 I wake up screaming from dreaming                Pre-Ch… Taylor Swift  
10    10 One day, I'll watch as you're leaving            Pre-Ch… Taylor Swift  
# â„ą 39 more rows

[[261]]
# A tibble: 69 Ă— 4
    line lyric                                      element element_artist
   <int> <chr>                                      <chr>   <chr>         
 1     1 One night, a few moons ago                 Verse 1 Taylor Swift  
 2     2 I saw flecks of what could've been lights  Verse 1 Taylor Swift  
 3     3 But it might just have been you            Verse 1 Taylor Swift  
 4     4 Passing by unbeknownst to me               Verse 1 Taylor Swift  
 5     5 Life is emotionally abusive                Verse 1 Taylor Swift  
 6     6 And time can't stop me quite like you did  Verse 1 Taylor Swift  
 7     7 And my flight was awful, thanks for asking Verse 1 Taylor Swift  
 8     8 I'm unglued, thanks to you                 Verse 1 Taylor Swift  
 9     9 And it's like snow at the beach            Chorus  Taylor Swift  
10    10 Weird, but fucking beautiful               Chorus  Taylor Swift  
# â„ą 59 more rows

[[262]]
# A tibble: 43 Ă— 4
    line lyric                                            element element_artist
   <int> <chr>                                            <chr>   <chr>         
 1     1 Summer went away, still, the yearning stays      Verse 1 Taylor Swift  
 2     2 I play it cool with the best of them             Verse 1 Taylor Swift  
 3     3 I wait patiently, he's gonna notice me           Verse 1 Taylor Swift  
 4     4 It's okay, we're the best of friends             Verse 1 Taylor Swift  
 5     5 Anyway                                           Verse 1 Taylor Swift  
 6     6 I hear it in your voice, you're smoking with yo… Verse 1 Taylor Swift  
 7     7 I touch my phone as if it's your face            Verse 1 Taylor Swift  
 8     8 I didn't choose this town, I dream of getting o… Verse 1 Taylor Swift  
 9     9 There's just one who could make me stay          Verse 1 Taylor Swift  
10    10 All my days                                      Verse 1 Taylor Swift  
# â„ą 33 more rows

[[263]]
# A tibble: 44 Ă— 4
    line lyric                                        element element_artist
   <int> <chr>                                        <chr>   <chr>         
 1     1 Rain                                         Intro   Taylor Swift  
 2     2 He wanted it comfortable, I wanted that pain Intro   Taylor Swift  
 3     3 He wanted a bride, I was making my own name  Intro   Taylor Swift  
 4     4 Chasing that fame, he stayed the same        Intro   Taylor Swift  
 5     5 All of me changed like midnight              Intro   Taylor Swift  
 6     6 My town was a wasteland                      Verse 1 Taylor Swift  
 7     7 Full of cages, full of fences                Verse 1 Taylor Swift  
 8     8 Pageant queens and big pretenders            Verse 1 Taylor Swift  
 9     9 But for some, it was paradise                Verse 1 Taylor Swift  
10    10 My boy was a montage                         Verse 1 Taylor Swift  
# â„ą 34 more rows

[[264]]
# A tibble: 58 Ă— 4
    line lyric                             element element_artist
   <int> <chr>                             <chr>   <chr>         
 1     1 I remember                        Intro   Taylor Swift  
 2     2 Good girl, sad boy                Verse 1 Taylor Swift  
 3     3 Big city, wrong choices           Verse 1 Taylor Swift  
 4     4 We had one thing goin' on         Verse 1 Taylor Swift  
 5     5 I swear that it was somethin'     Verse 1 Taylor Swift  
 6     6 'Cause I don't remember who I was Verse 1 Taylor Swift  
 7     7 Before you painted all my nights  Verse 1 Taylor Swift  
 8     8 A color I've searched for since   Verse 1 Taylor Swift  
 9     9 But one thing after another       Verse 1 Taylor Swift  
10    10 Fuckin' situations, circumstances Verse 1 Taylor Swift  
# â„ą 48 more rows

[[265]]
# A tibble: 38 Ă— 4
    line lyric                                            element element_artist
   <int> <chr>                                            <chr>   <chr>         
 1     1 Draw the cat eye, sharp enough to kill a man     Verse 1 Taylor Swift  
 2     2 You did some bad things, but I'm the worst of t… Verse 1 Taylor Swift  
 3     3 Sometimes I wonder which one'll be your last lie Verse 1 Taylor Swift  
 4     4 They say looks can kill and I might try          Verse 1 Taylor Swift  
 5     5 I don't dress for women                          Verse 1 Taylor Swift  
 6     6 I don't dress for men                            Verse 1 Taylor Swift  
 7     7 Lately I've been dressin' for revenge            Verse 1 Taylor Swift  
 8     8 I don't start shit, but I can tell you how it e… Chorus  Taylor Swift  
 9     9 Don't get sad, get even                          Chorus  Taylor Swift  
10    10 So on the weekends                               Chorus  Taylor Swift  
# â„ą 28 more rows

[[266]]
# A tibble: 64 Ă— 4
    line lyric                                            element element_artist
   <int> <chr>                                            <chr>   <chr>         
 1     1 "Baby love, I think I've been a little too kind" Verse 1 Taylor Swift  
 2     2 "Didn't notice you walkin' all over my peace of… Verse 1 Taylor Swift  
 3     3 "In the shoes I gave you as a present"           Verse 1 Taylor Swift  
 4     4 "Puttin' someone first only works when you're i… Verse 1 Taylor Swift  
 5     5 "And by the way, I'm goin' out tonight"          Verse 1 Taylor Swift  
 6     6 "Best believe I'm still bejeweled"               Chorus  Taylor Swift  
 7     7 "When I walk in the room"                        Chorus  Taylor Swift  
 8     8 "I can still make the whole place shimmer"       Chorus  Taylor Swift  
 9     9 "And when I meet the band"                       Chorus  Taylor Swift  
10    10 "They ask, \"Do you have a man?\""               Chorus  Taylor Swift  
# â„ą 54 more rows

[[267]]
# A tibble: 39 Ă— 4
    line lyric                                            element element_artist
   <int> <chr>                                            <chr>   <chr>         
 1     1 "\"It only hurts this much right now\""          Verse 1 Taylor Swift  
 2     2 "Was what I was thinkin' the whole time"         Verse 1 Taylor Swift  
 3     3 "Breathe in, breathe through, breathe deep, bre… Verse 1 Taylor Swift  
 4     4 "I'll be gettin' over you my whole life"         Verse 1 Taylor Swift  
 5     5 "You know how scared I am of elevators"          Pre-Ch… Taylor Swift  
 6     6 "Never trust it if it rises fast"                Pre-Ch… Taylor Swift  
 7     7 "It can't last"                                  Pre-Ch… Taylor Swift  
 8     8 "Uh-oh, I'm fallin' in love"                     Chorus  Taylor Swift  
 9     9 "Oh no, I'm fallin' in love again"               Chorus  Taylor Swift  
10    10 "Oh, I'm fallin' in love"                        Chorus  Taylor Swift  
# â„ą 29 more rows

[[268]]
# A tibble: 60 Ă— 4
    line lyric                                     element    element_artist
   <int> <chr>                                     <chr>      <chr>         
 1     1 You're talking shit for the hell of it    Verse 1    Taylor Swift  
 2     2 Addicted to betrayal, but you're relevant Verse 1    Taylor Swift  
 3     3 You're terrified to look down             Verse 1    Taylor Swift  
 4     4 'Cause if you dare, you'll see the glare  Verse 1    Taylor Swift  
 5     5 Of everyone you burned just to get there  Verse 1    Taylor Swift  
 6     6 It's coming back around                   Verse 1    Taylor Swift  
 7     7 And I keep my side of the street clean    Pre-Chorus Taylor Swift  
 8     8 You wouldn't know what I mean             Pre-Chorus Taylor Swift  
 9     9 'Cause karma is my boyfriend              Chorus     Taylor Swift  
10    10 Karma is a god                            Chorus     Taylor Swift  
# â„ą 50 more rows

[[269]]
# A tibble: 45 Ă— 4
    line lyric                                            element element_artist
   <int> <chr>                                            <chr>   <chr>         
 1     1 I spy with my little tired eye                   Verse 1 Taylor Swift  
 2     2 Tiny as a firefly, a pebble                      Verse 1 Taylor Swift  
 3     3 That we picked up last July                      Verse 1 Taylor Swift  
 4     4 Down deep inside your pocket                     Verse 1 Taylor Swift  
 5     5 We almost forgot it                              Verse 1 Taylor Swift  
 6     6 Does it ever miss Wicklow sometimes?             Verse 1 Taylor Swift  
 7     7 Ooh, ooh                                         Verse 1 Taylor Swift  
 8     8 They said the end is coming                      Chorus  Taylor Swift  
 9     9 Everyone's up to something                       Chorus  Taylor Swift  
10    10 I found myself a-running home to your sweet not… Chorus  Taylor Swift  
# â„ą 35 more rows

[[270]]
# A tibble: 53 Ă— 4
    line lyric                                         element    element_artist
   <int> <chr>                                         <chr>      <chr>         
 1     1 Once upon a time, the planets and the fates   Verse 1    Taylor Swift  
 2     2 And all the stars aligned                     Verse 1    Taylor Swift  
 3     3 You and I ended up in the same room           Verse 1    Taylor Swift  
 4     4 At the same time                              Verse 1    Taylor Swift  
 5     5 And the touch of a hand lit the fuse          Pre-Chorus Taylor Swift  
 6     6 Of a chain reaction of countermoves           Pre-Chorus Taylor Swift  
 7     7 To assess the equation of you                 Pre-Chorus Taylor Swift  
 8     8 Checkmate, I couldn't lose                    Pre-Chorus Taylor Swift  
 9     9 What if I told you none of it was accidental? Chorus     Taylor Swift  
10    10 And the first night that you saw me           Chorus     Taylor Swift  
# â„ą 43 more rows

[[271]]
# A tibble: 56 Ă— 4
    line lyric                                            element element_artist
   <int> <chr>                                            <chr>   <chr>         
 1     1 My knuckles were bruised like violets            Verse 1 Taylor Swift  
 2     2 Sucker punching walls, cursed you as I sleep ta… Verse 1 Taylor Swift  
 3     3 Spineless in my tomb of silence                  Verse 1 Taylor Swift  
 4     4 Tore your banners down, took the battle undergr… Verse 1 Taylor Swift  
 5     5 And maybe it was ego swinging                    Verse 1 Taylor Swift  
 6     6 Maybe, it was her                                Verse 1 Taylor Swift  
 7     7 Flashes of the battle come back to me in a blur  Verse 1 Taylor Swift  
 8     8 All that blood shed, crimson clover              Chorus  Taylor Swift  
 9     9 Uh-huh, sweet dream was over                     Chorus  Taylor Swift  
10    10 My hand was the one you reached for              Chorus  Taylor Swift  
# â„ą 46 more rows

[[272]]
# A tibble: 39 Ă— 4
    line lyric                                            element element_artist
   <int> <chr>                                            <chr>   <chr>         
 1     1 No words appear before me in the aftermath       Verse 1 Taylor Swift  
 2     2 Salt streams out my eyes and into my ears        Verse 1 Taylor Swift  
 3     3 Every single thing I touch becomes sick with sa… Verse 1 Taylor Swift  
 4     4 'Cause it's all over now, all out to sea         Verse 1 Taylor Swift  
 5     5 Goodbye, goodbye, goodbye                        Chorus  Taylor Swift  
 6     6 You were bigger than the whole sky               Chorus  Taylor Swift  
 7     7 You were more than just a short time             Chorus  Taylor Swift  
 8     8 And I've got a lot to pine about                 Chorus  Taylor Swift  
 9     9 I've got a lot to live without                   Chorus  Taylor Swift  
10    10 I'm never gonna meet                             Chorus  Taylor Swift  
# â„ą 29 more rows

[[273]]
# A tibble: 54 Ă— 4
    line lyric                                            element element_artist
   <int> <chr>                                            <chr>   <chr>         
 1     1 Your ex friend's sister                          Verse 1 Taylor Swift  
 2     2 Met someone at a club and he kissed her          Verse 1 Taylor Swift  
 3     3 Turns out it was that guy you hooked up with ag… Verse 1 Taylor Swift  
 4     4 Some wannabe Z lister                            Verse 1 Taylor Swift  
 5     5 And all the outfits were terrible                Verse 1 Taylor Swift  
 6     6 2003, unbearable                                 Verse 1 Taylor Swift  
 7     7 Did you see the photos?                          Verse 1 Taylor Swift  
 8     8 No, I didn't, but thanks, though                 Verse 1 Taylor Swift  
 9     9 I'm so in love that I might stop breathing       Pre-Ch… Taylor Swift  
10    10 Drew a map on your bedroom ceiling               Pre-Ch… Taylor Swift  
# â„ą 44 more rows

[[274]]
# A tibble: 61 Ă— 4
    line lyric                                   element element_artist
   <int> <chr>                                   <chr>   <chr>         
 1     1 Lock broken, slur spoken                Verse 1 Taylor Swift  
 2     2 Wound open, game token                  Verse 1 Taylor Swift  
 3     3 I didn't know you were keeping count    Verse 1 Taylor Swift  
 4     4 Rain soaking, blind hoping              Verse 1 Taylor Swift  
 5     5 You said I was freeloading              Verse 1 Taylor Swift  
 6     6 I didn't know you were keeping count    Verse 1 Taylor Swift  
 7     7 High infidelity                         Chorus  Taylor Swift  
 8     8 Put on your records and regret me       Chorus  Taylor Swift  
 9     9 I bent the truth too far tonight        Chorus  Taylor Swift  
10    10 I was dancing around, dancing around it Chorus  Taylor Swift  
# â„ą 51 more rows

[[275]]
# A tibble: 32 Ă— 4
    line lyric                                            element element_artist
   <int> <chr>                                            <chr>   <chr>         
 1     1 We were supposed to be just friends              Verse 1 Taylor Swift  
 2     2 You don't live in my part of town but maybe I'l… Verse 1 Taylor Swift  
 3     3 Depending on what kind of mood and situationshi… Verse 1 Taylor Swift  
 4     4 And what's in my system                          Verse 1 Taylor Swift  
 5     5 I think there's been a glitch, ah-yeah           Chorus  Taylor Swift  
 6     6 Five seconds later, I'm fastenin' myself to you… Chorus  Taylor Swift  
 7     7 And I'm not even sorry, nights are so starry, b… Chorus  Taylor Swift  
 8     8 It must be counterfeit                           Chorus  Taylor Swift  
 9     9 I think there's been a glitch, uh-yeah           Chorus  Taylor Swift  
10    10 Uh-huh, uh                                       Chorus  Taylor Swift  
# â„ą 22 more rows

[[276]]
# A tibble: 64 Ă— 4
    line lyric                                            element element_artist
   <int> <chr>                                            <chr>   <chr>         
 1     1 If you would've blinked then I would've looked … Verse 1 Taylor Swift  
 2     2 If you tasted poison you could've spit me out a… Verse 1 Taylor Swift  
 3     3 And if I was some paint, did it splatter on a p… Verse 1 Taylor Swift  
 4     4 And if I was a child did it matter if you got t… Verse 1 Taylor Swift  
 5     5 Ooh, ooh, ooh                                    Pre-Ch… Taylor Swift  
 6     6 All I used to do was pray                        Pre-Ch… Taylor Swift  
 7     7 Would've, could've, should've                    Pre-Ch… Taylor Swift  
 8     8 If you never looked my way                       Pre-Ch… Taylor Swift  
 9     9 I would've stayed on my knees                    Pre-Ch… Taylor Swift  
10    10 And I damn sure would've never danced with the … Chorus  Taylor Swift  
# â„ą 54 more rows

[[277]]
# A tibble: 38 Ă— 4
    line lyric                                            element element_artist
   <int> <chr>                                            <chr>   <chr>         
 1     1 Dear reader, if it feels like a trap             Verse 1 Taylor Swift  
 2     2 You're already in one                            Verse 1 Taylor Swift  
 3     3 Dear reader, get out your map                    Verse 1 Taylor Swift  
 4     4 Pick somewhere and just run                      Verse 1 Taylor Swift  
 5     5 Dear reader, burn all the files                  Verse 1 Taylor Swift  
 6     6 Desert all your past lives                       Verse 1 Taylor Swift  
 7     7 And if you don't recognize yourself              Verse 1 Taylor Swift  
 8     8 That means you did it right                      Verse 1 Taylor Swift  
 9     9 Never take advice from someone who's falling ap… Chorus  Taylor Swift  
10    10 Never take advice from someone who's falling ap… Chorus  Taylor Swift  
# â„ą 28 more rows

[[278]]
# A tibble: 56 Ă— 4
    line lyric                                   element element_artist
   <int> <chr>                                   <chr>   <chr>         
 1     1 I washed my hands of us at the club     Verse 1 Taylor Swift  
 2     2 You made a mess of me                   Verse 1 Taylor Swift  
 3     3 I pictured you with other girls in love Verse 1 Taylor Swift  
 4     4 Then threw up on the street             Verse 1 Taylor Swift  
 5     5 Like waiting for a bus that never shows Verse 1 Taylor Swift  
 6     6 You just start walking on               Verse 1 Taylor Swift  
 7     7 They say that if it's right, you know   Verse 1 Taylor Swift  
 8     8 Each bar plays our song                 Verse 1 Taylor Swift  
 9     9 Nothing has ever felt so wrong          Verse 1 Taylor Swift  
10    10 Oh my, love is a lie                    Chorus  Taylor Swift  
# â„ą 46 more rows

[[279]]
# A tibble: 43 Ă— 4
    line lyric                                            element element_artist
   <int> <chr>                                            <chr>   <chr>         
 1     1 Summer went away, still, the yearning stays      Verse 1 Taylor Swift  
 2     2 I play it cool with the best of them             Verse 1 Taylor Swift  
 3     3 I wait patiently, he's gonna notice me           Verse 1 Taylor Swift  
 4     4 It's okay, we're the best of friends             Verse 1 Taylor Swift  
 5     5 Anyway                                           Verse 1 Taylor Swift  
 6     6 I hear it in your voice, you're smoking with yo… Verse 1 Taylor Swift  
 7     7 I touch my phone as if it's your face            Verse 1 Taylor Swift  
 8     8 I didn't choose this town, I dream of getting o… Verse 1 Taylor Swift  
 9     9 There's just one who could make me stay          Verse 1 Taylor Swift  
10    10 All my days                                      Verse 1 Taylor Swift  
# â„ą 33 more rows

[[280]]
# A tibble: 45 Ă— 4
    line lyric                                            element element_artist
   <int> <chr>                                            <chr>   <chr>         
 1     1 I spy with my little tired eye                   Verse 1 Taylor Swift  
 2     2 Tiny as a firefly, a pebble                      Verse 1 Taylor Swift  
 3     3 That we picked up last July                      Verse 1 Taylor Swift  
 4     4 Down deep inside your pocket                     Verse 1 Taylor Swift  
 5     5 We almost forgot it                              Verse 1 Taylor Swift  
 6     6 Does it ever miss Wicklow sometimes?             Verse 1 Taylor Swift  
 7     7 Ooh, ooh                                         Verse 1 Taylor Swift  
 8     8 They said the end is coming                      Chorus  Taylor Swift  
 9     9 Everyone's up to something                       Chorus  Taylor Swift  
10    10 I found myself a-running home to your sweet not… Chorus  Taylor Swift  
# â„ą 35 more rows

[[281]]
# A tibble: 64 Ă— 4
    line lyric                                      element element_artist
   <int> <chr>                                      <chr>   <chr>         
 1     1 One night, a few moons ago                 Verse 1 Taylor Swift  
 2     2 I saw flecks of what could've been lights  Verse 1 Taylor Swift  
 3     3 But it might just have been you            Verse 1 Taylor Swift  
 4     4 Passing by unbeknownst to me               Verse 1 Taylor Swift  
 5     5 Life is emotionally abusive                Verse 1 Taylor Swift  
 6     6 And time can't stop me quite like you did  Verse 1 Taylor Swift  
 7     7 And my flight was awful, thanks for asking Verse 1 Taylor Swift  
 8     8 I'm unglued, thanks to you                 Verse 1 Taylor Swift  
 9     9 And it's like snow at the beach            Chorus  Taylor Swift  
10    10 Weird, but fuckin' beautiful               Chorus  Taylor Swift  
# â„ą 54 more rows

[[282]]
# A tibble: 65 Ă— 4
    line lyric                                     element    element_artist
   <int> <chr>                                     <chr>      <chr>         
 1     1 Karma is that girl, like (Grrah)          Intro      Taylor Swift  
 2     2 You're talking shit for the hell of it    Verse 1    Taylor Swift  
 3     3 Addicted to betrayal, but you're relevant Verse 1    Taylor Swift  
 4     4 You're terrified to look down             Verse 1    Taylor Swift  
 5     5 'Cause if you dare, you'll see the glare  Verse 1    Taylor Swift  
 6     6 Of everyone you burned just to get there  Verse 1    Taylor Swift  
 7     7 It's comin' back around                   Verse 1    Taylor Swift  
 8     8 And I keep my side of the street clean    Pre-Chorus Taylor Swift  
 9     9 You wouldn't know what I mean             Pre-Chorus Taylor Swift  
10    10 'Cause karma is my boyfriend              Chorus     Taylor Swift  
# â„ą 55 more rows

[[283]]
# A tibble: 52 Ă— 4
    line lyric                                            element element_artist
   <int> <chr>                                            <chr>   <chr>         
 1     1 "You say, \"I don't understand\" and I say, \"I… Verse 1 Taylor Swift  
 2     2 "We thought a cure would come through in time, … Verse 1 Taylor Swift  
 3     3 "Remember lookin' at this room, we loved it 'ca… Verse 1 Taylor Swift  
 4     4 "Now, I just sit in the dark and wonder if it's… Verse 1 Taylor Swift  
 5     5 "Do I throw out everything we built or keep it?" Pre-Ch… Taylor Swift  
 6     6 "I'm getting tired even for a phoenix"           Pre-Ch… Taylor Swift  
 7     7 "Always risin' from the ashes"                   Pre-Ch… Taylor Swift  
 8     8 "Mendin' all her gashes"                         Pre-Ch… Taylor Swift  
 9     9 "You might just have dealt the final blow"       Pre-Ch… Taylor Swift  
10    10 "Stop, you're losing me"                         Chorus  Taylor Swift  
# â„ą 42 more rows

[[284]]
# A tibble: 44 Ă— 4
    line lyric                                            element element_artist
   <int> <chr>                                            <chr>   <chr>         
 1     1 Last Christmas I gave you my heart               Chorus  Taylor Swift  
 2     2 But the very next day, you gave it away          Chorus  Taylor Swift  
 3     3 This year, to save me from tears                 Chorus  Taylor Swift  
 4     4 I will give it to someone special                Chorus  Taylor Swift  
 5     5 Once bitten and twice shied                      Verse 1 Taylor Swift  
 6     6 I keep my distance but you still catch my eye    Verse 1 Taylor Swift  
 7     7 Tell me baby                                     Verse 1 Taylor Swift  
 8     8 Do you recognize me                              Verse 1 Taylor Swift  
 9     9 Well, it has been a year, it does not surprise … Verse 1 Taylor Swift  
10    10 Merry Christmas, I wrapped it up and sent it     Verse 1 Taylor Swift  
# â„ą 34 more rows

[[285]]
# A tibble: 27 Ă— 4
    line lyric                                            element element_artist
   <int> <chr>                                            <chr>   <chr>         
 1     1 Please take down the mistletoe                   Verse 1 Taylor Swift  
 2     2 'Cause I don't want to think about that right n… Verse 1 Taylor Swift  
 3     3 'Cause everything I want is miles away           Verse 1 Taylor Swift  
 4     4 In a snow covered little town                    Verse 1 Taylor Swift  
 5     5 My momma's in the kitchen, worrying about me     Verse 1 Taylor Swift  
 6     6 Season's greetings, hope you're well             Verse 1 Taylor Swift  
 7     7 Well I'm doing alright                           Verse 1 Taylor Swift  
 8     8 If you were wondering                            Verse 1 Taylor Swift  
 9     9 Lately I can never tell                          Verse 1 Taylor Swift  
10    10 I know this shouldn't be a lonely time           Chorus  Taylor Swift  
# â„ą 17 more rows

[[286]]
# A tibble: 24 Ă— 4
    line lyric                                           element element_artist
   <int> <chr>                                           <chr>   <chr>         
 1     1 Santa baby, slip a sable under the tree, for me Chorus  Taylor Swift  
 2     2 I have been an awful good girl, Santa baby      Chorus  Taylor Swift  
 3     3 So hurry down the chimney tonight               Chorus  Taylor Swift  
 4     4 Santa baby, a '54 convertible, too, light blue  Chorus  Taylor Swift  
 5     5 Well I will wait up for you, dear, Santa baby   Chorus  Taylor Swift  
 6     6 So hurry down the chimney tonight, yeah         Chorus  Taylor Swift  
 7     7 Think of all the fun I have missed              Verse 1 Taylor Swift  
 8     8 Think of all the boys I have not kissed         Verse 1 Taylor Swift  
 9     9 Next year I could be just as good               Verse 1 Taylor Swift  
10    10 If you check off my Christmas list              Verse 1 Taylor Swift  
# â„ą 14 more rows

[[287]]
# A tibble: 23 Ă— 4
    line lyric                             element element_artist
   <int> <chr>                             <chr>   <chr>         
 1     1 Silent night, holy night          Verse 1 Taylor Swift  
 2     2 All is calm and all is bright     Verse 1 Taylor Swift  
 3     3 Round yon virgin mother and child Verse 1 Taylor Swift  
 4     4 Holy infant so tender and mild    Verse 1 Taylor Swift  
 5     5 Sleep in heavenly peace           Verse 1 Taylor Swift  
 6     6 Sleep in heavenly peace           Verse 1 Taylor Swift  
 7     7 Silent night, holy night          Verse 2 Taylor Swift  
 8     8 Shepherds quake at the sight      Verse 2 Taylor Swift  
 9     9 Glories stream from Heaven afar   Verse 2 Taylor Swift  
10    10 Heavenly hosts sing Hallelujah    Verse 2 Taylor Swift  
# â„ą 13 more rows

[[288]]
# A tibble: 43 Ă— 4
    line lyric                                            element element_artist
   <int> <chr>                                            <chr>   <chr>         
 1     1 What if ribbons and bows didn't mean a thing?    Verse 1 Taylor Swift  
 2     2 Would the song still survive without five golde… Verse 1 Taylor Swift  
 3     3 Would you still wanna kiss without mistletoe?    Verse 1 Taylor Swift  
 4     4 What would happen if God never let it snow?      Verse 1 Taylor Swift  
 5     5 What would happen if Christmas carols told a li… Verse 1 Taylor Swift  
 6     6 Tell me, what would you find?                    Verse 1 Taylor Swift  
 7     7 You'd see that today holds something special     Chorus  Taylor Swift  
 8     8 Something holy, not superficial                  Chorus  Taylor Swift  
 9     9 So here's to the birthday boy who saved our liv… Chorus  Taylor Swift  
10    10 It's something we all try to ignore              Chorus  Taylor Swift  
# â„ą 33 more rows

[[289]]
# A tibble: 14 Ă— 4
    line lyric                                           element element_artist
   <int> <chr>                                           <chr>   <chr>         
 1     1 I'm dreaming of a white Christmas               Verse 1 Taylor Swift  
 2     2 Just like the ones I used to know               Verse 1 Taylor Swift  
 3     3 Where the tree tops glisten and children listen Verse 1 Taylor Swift  
 4     4 To hear sleigh bells in the snow                Verse 1 Taylor Swift  
 5     5 I'm dreaming of a white Christmas               Verse 2 Taylor Swift  
 6     6 With every Christmas card I write               Verse 2 Taylor Swift  
 7     7 May your days be merry and bright               Verse 2 Taylor Swift  
 8     8 And may all your Christmases be white           Verse 2 Taylor Swift  
 9     9 I'm dreaming of a white Christmas               Verse 3 Taylor Swift  
10    10 Just like the ones I used to know               Verse 3 Taylor Swift  
11    11 So may your days be merry and bright            Verse 3 Taylor Swift  
12    12 And may all your Christmases be white           Verse 3 Taylor Swift  
13    13 May your days be merry and bright               Outro   Taylor Swift  
14    14 And may all your Christmases be white           Outro   Taylor Swift  

[[290]]
# A tibble: 31 Ă— 4
    line lyric                                        element     element_artist
   <int> <chr>                                        <chr>       <chr>         
 1     1 Your beautiful eyes                          Verse 1     Taylor Swift  
 2     2 Stare right into my eyes                     Verse 1     Taylor Swift  
 3     3 And sometimes I think of you late at night   Verse 1     Taylor Swift  
 4     4 I don't know why, I                          Verse 1     Taylor Swift  
 5     5 I wanna be somewhere where you are           Pre-Chorus… Taylor Swift  
 6     6 I wanna be where                             Pre-Chorus… Taylor Swift  
 7     7 You're here, your eyes are looking into mine Chorus      Taylor Swift  
 8     8 So baby, make me fly                         Chorus      Taylor Swift  
 9     9 My heart has never felt this way before      Chorus      Taylor Swift  
10    10 I'm looking through your                     Chorus      Taylor Swift  
# â„ą 21 more rows

[[291]]
# A tibble: 39 Ă— 4
    line lyric                                            element element_artist
   <int> <chr>                                            <chr>   <chr>         
 1     1 "It's strange to think"                          Verse 1 Taylor Swift  
 2     2 "The songs we used to sing"                      Verse 1 Taylor Swift  
 3     3 "The smiles, the flowers, everything is gone"    Verse 1 Taylor Swift  
 4     4 "Yesterday I found out about you"                Verse 1 Taylor Swift  
 5     5 "Even now just looking at you feels wrong"       Verse 1 Taylor Swift  
 6     6 "You say that you'd take it all back, given one… Pre-Ch… Taylor Swift  
 7     7 "It was a moment of weakness and you said \"yes… Pre-Ch… Taylor Swift  
 8     8 "You should've said no, you should've gone home" Chorus  Taylor Swift  
 9     9 "You should've thought twice 'fore you let it a… Chorus  Taylor Swift  
10    10 "You should have known the word 'bout what you … Chorus  Taylor Swift  
# â„ą 29 more rows

[[292]]
# A tibble: 36 Ă— 4
    line lyric                                            element element_artist
   <int> <chr>                                            <chr>   <chr>         
 1     1 Drew looks at me                                 Verse 1 Taylor Swift  
 2     2 I fake a smile so he won't see                   Verse 1 Taylor Swift  
 3     3 That I want and I'm needing                      Verse 1 Taylor Swift  
 4     4 Everything that we should be                     Verse 1 Taylor Swift  
 5     5 I'll bet she's beautiful, that girl he talks ab… Pre-Ch… Taylor Swift  
 6     6 And she's got everything that I have to live wi… Pre-Ch… Taylor Swift  
 7     7 Drew talks to me                                 Verse 2 Taylor Swift  
 8     8 I laugh 'cause it's just so funny                Verse 2 Taylor Swift  
 9     9 That I can't even see                            Verse 2 Taylor Swift  
10    10 Anyone when he's with me                         Verse 2 Taylor Swift  
# â„ą 26 more rows

[[293]]
# A tibble: 33 Ă— 4
    line lyric                                            element element_artist
   <int> <chr>                                            <chr>   <chr>         
 1     1 State the obvious, I didn't get my perfect fant… Verse 1 Taylor Swift  
 2     2 I realize you love yourself more than you could… Verse 1 Taylor Swift  
 3     3 So go and tell your friends that I'm obsessive … Verse 1 Taylor Swift  
 4     4 That's fine you won't mind if I say              Verse 1 Taylor Swift  
 5     5 By the way                                       Verse 1 Taylor Swift  
 6     6 I hate that stupid old pickup truck you never l… Chorus  Taylor Swift  
 7     7 You're a redneck heartbreak who's really bad at… Chorus  Taylor Swift  
 8     8 So watch me strike a match on all my wasted time Chorus  Taylor Swift  
 9     9 As far as I'm concerned you're just another pic… Chorus  Taylor Swift  
10    10 There's no time for tears                        Verse 2 Taylor Swift  
# â„ą 23 more rows

[[294]]
# A tibble: 43 Ă— 4
    line lyric                                         element    element_artist
   <int> <chr>                                         <chr>      <chr>         
 1     1 Friday night beneath the stars                Verse 1    Taylor Swift  
 2     2 In a field behind your yard                   Verse 1    Taylor Swift  
 3     3 You and I are painting pictures in the sky    Verse 1    Taylor Swift  
 4     4 And sometimes we don't say a thing            Verse 1    Taylor Swift  
 5     5 Just listen to the crickets sing              Verse 1    Taylor Swift  
 6     6 Everything I need is right here by my side    Verse 1    Taylor Swift  
 7     7 And I know everything about you               Pre-Chorus Taylor Swift  
 8     8 I don't wanna live without you                Pre-Chorus Taylor Swift  
 9     9 I'm only up when you're not down              Chorus     Taylor Swift  
10    10 Don't wanna fly if you're still on the ground Chorus     Taylor Swift  
# â„ą 33 more rows

[[295]]
# A tibble: 50 Ă— 4
    line lyric                                   element      element_artist
   <int> <chr>                                   <chr>        <chr>         
 1     1 Wish I had concentrated                 Verse 1      Taylor Swift  
 2     2 They said love was complicated          Verse 1      Taylor Swift  
 3     3 But it's something I just fell into     Verse 1      Taylor Swift  
 4     4 And it was overrated                    Verse 1      Taylor Swift  
 5     5 But just look what I've created         Verse 1      Taylor Swift  
 6     6 I came out alive but I'm black and blue Verse 1      Taylor Swift  
 7     7 Before you ask me if I'm alright        Pre-Chorus 1 Taylor Swift  
 8     8 Think about what I                      Pre-Chorus 1 Taylor Swift  
 9     9 Had to do, yeah                         Pre-Chorus 1 Taylor Swift  
10    10 Wake up and smell the breakup           Chorus       Taylor Swift  
# â„ą 40 more rows

[[296]]
# A tibble: 50 Ă— 4
    line lyric                                  element    element_artist
   <int> <chr>                                  <chr>      <chr>         
 1     1 When you think of all the late nights  Verse 1    Taylor Swift  
 2     2 Lame fights over the phone             Verse 1    Taylor Swift  
 3     3 Wake up in the mornin' with someone    Verse 1    Taylor Swift  
 4     4 But feelin' alone                      Verse 1    Taylor Swift  
 5     5 A heart is drawn around your name      Refrain    Taylor Swift  
 6     6 In someone's handwriting, not mine     Refrain    Taylor Swift  
 7     7 We're sneakin' out into town           Refrain    Taylor Swift  
 8     8 Holdin' hands, just killin' time       Refrain    Taylor Swift  
 9     9 Your past and mine are parallel lines  Pre-Chorus Taylor Swift  
10    10 Stars all aligned and they intertwined Pre-Chorus Taylor Swift  
# â„ą 40 more rows

[[297]]
# A tibble: 33 Ă— 4
    line lyric                                            element element_artist
   <int> <chr>                                            <chr>   <chr>         
 1     1 Well, she was an American girl                   Verse 1 Taylor Swift  
 2     2 Raised on promises                               Verse 1 Taylor Swift  
 3     3 She couldn't help thinking that there was a lit… Verse 1 Taylor Swift  
 4     4 Somewhere else                                   Verse 1 Taylor Swift  
 5     5 After all it was a great big world               Verse 1 Taylor Swift  
 6     6 With lots of places to run to                    Verse 1 Taylor Swift  
 7     7 And if she had to die trying                     Verse 1 Taylor Swift  
 8     8 She had one little promise she was going to keep Verse 1 Taylor Swift  
 9     9 Oh yeah, all right                               Chorus  Taylor Swift  
10    10 Take it easy baby                                Chorus  Taylor Swift  
# â„ą 23 more rows

[[298]]
# A tibble: 68 Ă— 4
    line lyric                                            element element_artist
   <int> <chr>                                            <chr>   <chr>         
 1     1 'Cause, baby, now we've got bad blood            Intro   Taylor Swift  
 2     2 You know it used to be mad love (Uh)             Intro   Taylor Swift  
 3     3 So take a look what you've done (Uh)             Intro   Taylor Swift  
 4     4 'Cause, baby, now we've got bad blood (Uh), hey… Intro   Taylor Swift  
 5     5 I can't take it back, look where I'm at (Uh)     Verse 1 Taylor Swift  
 6     6 We was OG like D.O.C., remember that? (Remember… Verse 1 Taylor Swift  
 7     7 My TLC was quite OD, ID my facts (ID my)         Verse 1 Taylor Swift  
 8     8 Now POV of you and me, similar Iraq              Verse 1 Taylor Swift  
 9     9 I don't hate you, but I hate to critique, overr… Verse 1 Taylor Swift  
10    10 These beats of a dark heart, use basslines to r… Verse 1 Taylor Swift  
# â„ą 58 more rows

[[299]]
# A tibble: 37 Ă— 4
    line lyric                                            element element_artist
   <int> <chr>                                            <chr>   <chr>         
 1     1 Follow me home if you dare to                    Verse 1 Taylor Swift  
 2     2 I wouldn't know where to lead you                Verse 1 Taylor Swift  
 3     3 Should I take chances when no one took chances … Verse 1 Taylor Swift  
 4     4 So I watch from the dark, wait for my life to s… Verse 1 Taylor Swift  
 5     5 With no beauty in my memory                      Verse 1 Taylor Swift  
 6     6 All that I wanted was to be wanted               Chorus  Taylor Swift  
 7     7 Too young to wander London streets, alone and h… Chorus  Taylor Swift  
 8     8 Born into nothing                                Chorus  Taylor Swift  
 9     9 At least you have something, something to cling… Chorus  Taylor Swift  
10    10 Visions of dazzling rooms I'll never get let in… Chorus  Taylor Swift  
# â„ą 27 more rows

[[300]]
# A tibble: 37 Ă— 4
    line lyric                                        element    element_artist
   <int> <chr>                                        <chr>      <chr>         
 1     1 Oh, Carolina creeks running through my veins Verse 1    Taylor Swift  
 2     2 Lost I was born, lonesome I came             Verse 1    Taylor Swift  
 3     3 Lonesome I'll always stay                    Verse 1    Taylor Swift  
 4     4 Carolina knows why, for years, I roam        Verse 1    Taylor Swift  
 5     5 Free as these birds, light as whispers       Verse 1    Taylor Swift  
 6     6 Carolina knows                               Verse 1    Taylor Swift  
 7     7 And you didn't see me here                   Pre-Chorus Taylor Swift  
 8     8 No, they never did see me here               Pre-Chorus Taylor Swift  
 9     9 And she's in my dreams                       Pre-Chorus Taylor Swift  
10    10 Into the mist, into the clouds               Chorus     Taylor Swift  
# â„ą 27 more rows

[[301]]
# A tibble: 55 Ă— 4
    line lyric                                      element element_artist
   <int> <chr>                                      <chr>   <chr>         
 1     1 My winter nights are taken up by static    Intro   Taylor Swift  
 2     2 Stress and holiday shopping traffic        Intro   Taylor Swift  
 3     3 But I close my eyes and I'm somewhere else Intro   Taylor Swift  
 4     4 Just like magic                            Intro   Taylor Swift  
 5     5 In my heart is a Christmas tree farm       Verse 1 Taylor Swift  
 6     6 Where the people would come                Verse 1 Taylor Swift  
 7     7 To dance under sparkling lights            Verse 1 Taylor Swift  
 8     8 Bundled up in their mittens and coats      Verse 1 Taylor Swift  
 9     9 And the cider would flow                   Verse 1 Taylor Swift  
10    10 And I just wanna be there tonight          Verse 1 Taylor Swift  
# â„ą 45 more rows

[[302]]
# A tibble: 35 Ă— 4
    line lyric                                         element element_artist
   <int> <chr>                                         <chr>   <chr>         
 1     1 I'd never gone with the wind                  Verse 1 Taylor Swift  
 2     2 Just let it flow                              Verse 1 Taylor Swift  
 3     3 Let it take me where it wants to go           Verse 1 Taylor Swift  
 4     4 'Til you open the door                        Verse 1 Taylor Swift  
 5     5 There's so much more                          Verse 1 Taylor Swift  
 6     6 I'd never seen it before                      Verse 1 Taylor Swift  
 7     7 I was trying to fly                           Verse 1 Taylor Swift  
 8     8 But I couldn't find wings                     Verse 1 Taylor Swift  
 9     9 But you came along and you changed everything Verse 1 Taylor Swift  
10    10 You lift my feet off the ground               Chorus  Taylor Swift  
# â„ą 25 more rows

[[303]]
# A tibble: 53 Ă— 4
    line lyric                                  element element_artist
   <int> <chr>                                  <chr>   <chr>         
 1     1 Everybody's waiting                    Intro   Taylor Swift  
 2     2 Everybody's watching                   Intro   Taylor Swift  
 3     3 Even when you're sleeping              Intro   Taylor Swift  
 4     4 Keep your eyes open                    Intro   Taylor Swift  
 5     5 The tricky thing                       Verse 1 Taylor Swift  
 6     6 Is yesterday, we were just children    Verse 1 Taylor Swift  
 7     7 Playing soldiers, just pretending      Verse 1 Taylor Swift  
 8     8 Dreaming dreams with happy endings     Verse 1 Taylor Swift  
 9     9 In backyards                           Verse 1 Taylor Swift  
10    10 Winnin' battles with our wooden swords Verse 1 Taylor Swift  
# â„ą 43 more rows

[[304]]
# A tibble: 53 Ă— 4
    line lyric                                            element element_artist
   <int> <chr>                                            <chr>   <chr>         
 1     1 Everybody's waiting                              Chorus  Taylor Swift  
 2     2 Everybody's watching                             Chorus  Taylor Swift  
 3     3 Even when you're sleeping                        Chorus  Taylor Swift  
 4     4 Keep your ey-eyes open                           Chorus  Taylor Swift  
 5     5 The tricky thing                                 Verse 1 Taylor Swift  
 6     6 Is yesterday we were just children               Verse 1 Taylor Swift  
 7     7 Playing soldiers                                 Verse 1 Taylor Swift  
 8     8 Just pretending                                  Verse 1 Taylor Swift  
 9     9 Dreaming dreams with happy endings               Verse 1 Taylor Swift  
10    10 In backyards, winning battles with our wooden s… Verse 1 Taylor Swift  
# â„ą 43 more rows

[[305]]
# A tibble: 39 Ă— 4
    line lyric                                            element element_artist
   <int> <chr>                                            <chr>   <chr>         
 1     1 Been sitting eyes wide open behind these four w… Verse 1 Taylor Swift  
 2     2 It's just a cruel existence like it's no point … Verse 1 Taylor Swift  
 3     3 Baby, baby, I feel crazy                         Pre-Ch… Taylor Swift  
 4     4 Up all night, all night and every day            Pre-Ch… Taylor Swift  
 5     5 Give me something, oh, but you say nothing       Pre-Ch… Taylor Swift  
 6     6 What is happening to me?                         Pre-Ch… Taylor Swift  
 7     7 I don't wanna live forever, 'cause I know I'll … Chorus  Taylor Swift  
 8     8 And I don't wanna fit wherever                   Chorus  Taylor Swift  
 9     9 I just wanna keep calling your name until you c… Chorus  Taylor Swift  
10    10 I just wanna keep calling your name until you c… Chorus  Taylor Swift  
# â„ą 29 more rows

[[306]]
# A tibble: 51 Ă— 4
    line lyric                                        element element_artist
   <int> <chr>                                        <chr>   <chr>         
 1     1 Last night, I heard my own heart beatin'     Verse 1 Taylor Swift  
 2     2 Sounded like footsteps on my stairs          Verse 1 Taylor Swift  
 3     3 Six months gone and I'm still reachin'       Verse 1 Taylor Swift  
 4     4 Even though I know you're not there          Verse 1 Taylor Swift  
 5     5 I was playin' back a thousand memories, baby Verse 1 Taylor Swift  
 6     6 Thinkin' 'bout everything we've been through Verse 1 Taylor Swift  
 7     7 Maybe I've been going back too much lately   Verse 1 Taylor Swift  
 8     8 When time stood still and I had you          Verse 1 Taylor Swift  
 9     9 Come back, come back, come back to me like   Chorus  Taylor Swift  
10    10 You would, you would if this was a movie     Chorus  Taylor Swift  
# â„ą 41 more rows

[[307]]
# A tibble: 35 Ă— 4
    line lyric                                            element element_artist
   <int> <chr>                                            <chr>   <chr>         
 1     1 We could leave the Christmas lights up 'til Jan… Verse 1 Taylor Swift  
 2     2 And this is our place, we make the rules         Verse 1 Taylor Swift  
 3     3 And there's a dazzling haze, a mysterious way a… Verse 1 Taylor Swift  
 4     4 Have I known you 20 seconds or 20 years?         Verse 1 Taylor Swift  
 5     5 Can I go where you go?                           Chorus  Taylor Swift  
 6     6 Can we always be this close?                     Chorus  Taylor Swift  
 7     7 Forever and ever, ah                             Chorus  Taylor Swift  
 8     8 Take me out, and take me home                    Chorus  Taylor Swift  
 9     9 You're my, my, my, my lover                      Chorus  Taylor Swift  
10    10 We could light a bunch of candles                Verse 2 Taylor Swift  
# â„ą 25 more rows

[[308]]
# A tibble: 48 Ă— 4
    line lyric                                      element element_artist
   <int> <chr>                                      <chr>   <chr>         
 1     1 It keeps me awake, the look on your face   Verse 1 Taylor Swift  
 2     2 The moment you heard the news              Verse 1 Taylor Swift  
 3     3 You're screaming inside and frozen in time Verse 1 Taylor Swift  
 4     4 You did all that you could do              Verse 1 Taylor Swift  
 5     5 The game was rigged, the ref got tricked   Verse 1 Taylor Swift  
 6     6 The wrong ones think they're right         Verse 1 Taylor Swift  
 7     7 You were outnumbered this time             Verse 1 Taylor Swift  
 8     8 But only the young, only the young         Chorus  Taylor Swift  
 9     9 Only the young, only the young             Chorus  Taylor Swift  
10    10 Can run                                    Chorus  Taylor Swift  
# â„ą 38 more rows

[[309]]
# A tibble: 35 Ă— 4
    line lyric                                            element element_artist
   <int> <chr>                                            <chr>   <chr>         
 1     1 I remember your bare feet, down the hallway      Verse 1 Taylor Swift  
 2     2 I remember your little laugh                     Verse 1 Taylor Swift  
 3     3 Race cars on the kitchen floor, plastic dinosau… Verse 1 Taylor Swift  
 4     4 I love you to the moon and back                  Verse 1 Taylor Swift  
 5     5 I remember your blue eyes looking into mine      Verse 1 Taylor Swift  
 6     6 Like we had our own secret club                  Verse 1 Taylor Swift  
 7     7 I remember you dancing before bed time           Verse 1 Taylor Swift  
 8     8 Then jumping on me waking me up                  Verse 1 Taylor Swift  
 9     9 I can still feel you hold my hand, little man    Verse 1 Taylor Swift  
10    10 And even the moment I knew                       Verse 1 Taylor Swift  
# â„ą 25 more rows

[[310]]
# A tibble: 38 Ă— 4
    line lyric                                            element element_artist
   <int> <chr>                                            <chr>   <chr>         
 1     1 "I remember tears streaming down your face when… Verse 1 Taylor Swift  
 2     2 "When all those shadows almost killed your ligh… Verse 1 Taylor Swift  
 3     3 "I remember you said, \"Don't leave me here alo… Verse 1 Taylor Swift  
 4     4 "But all that's dead and gone and passed tonigh… Verse 1 Taylor Swift  
 5     5 "Just close your eyes"                           Chorus  Taylor Swift  
 6     6 "The sun is going down"                          Chorus  Taylor Swift  
 7     7 "You'll be alright"                              Chorus  Taylor Swift  
 8     8 "No one can hurt you now"                        Chorus  Taylor Swift  
 9     9 "Come, morning light"                            Chorus  Taylor Swift  
10    10 "You and I'll be safe and sound"                 Chorus  Taylor Swift  
# â„ą 28 more rows

[[311]]
# A tibble: 29 Ă— 4
    line lyric                                            element element_artist
   <int> <chr>                                            <chr>   <chr>         
 1     1 "I remember tears streaming down your face"      Verse 1 Taylor Swift  
 2     2 "When I said I'll never let you go"              Verse 1 Taylor Swift  
 3     3 "When all those shadows almost killed your ligh… Verse 1 Taylor Swift  
 4     4 "I remember you said, \"Don't leave me here alo… Verse 1 Taylor Swift  
 5     5 "But all that's dead and gone and passed tonigh… Verse 1 Taylor Swift  
 6     6 "Just close your eyes"                           Chorus  Taylor Swift  
 7     7 "The sun is going down"                          Chorus  Taylor Swift  
 8     8 "You'll be alright"                              Chorus  Taylor Swift  
 9     9 "No one can hurt you now"                        Chorus  Taylor Swift  
10    10 "Come morning light"                             Chorus  Taylor Swift  
# â„ą 19 more rows

[[312]]
# A tibble: 39 Ă— 4
    line lyric                                     element element_artist
   <int> <chr>                                     <chr>   <chr>         
 1     1 Do you remember                           Verse 1 Taylor Swift  
 2     2 The 28th night of September?              Verse 1 Taylor Swift  
 3     3 Love was changin' the minds of pretenders Verse 1 Taylor Swift  
 4     4 While chasin' the clouds away             Verse 1 Taylor Swift  
 5     5 Our hearts were ringin'                   Verse 1 Taylor Swift  
 6     6 In the key that our souls were singin'    Verse 1 Taylor Swift  
 7     7 As we danced in the night, remember       Verse 1 Taylor Swift  
 8     8 How the stars stole the night away        Verse 1 Taylor Swift  
 9     9 Ahh-ahh-ahh                               Chorus  Taylor Swift  
10    10 Hey, say that you remember                Chorus  Taylor Swift  
# â„ą 29 more rows

[[313]]
# A tibble: 58 Ă— 4
    line lyric                                            element element_artist
   <int> <chr>                                            <chr>   <chr>         
 1     1 "Hit the ground, hit the ground, hit the ground… Verse 1 Taylor Swift  
 2     2 "Only sound, only sound that you hear is \"no\"" Verse 1 Taylor Swift  
 3     3 "You never saw it coming"                        Verse 1 Taylor Swift  
 4     4 "Slipped when you started running"               Verse 1 Taylor Swift  
 5     5 "And now you've come undone and (I, I, I, I)"    Verse 1 Taylor Swift  
 6     6 "Seen you fall, seen you crawl on your knees (e… Verse 1 Taylor Swift  
 7     7 "Seen you lost in a crowd, seen your colors fad… Verse 1 Taylor Swift  
 8     8 "Wish I could make it better"                    Verse 1 Taylor Swift  
 9     9 "Someday you won't remember"                     Verse 1 Taylor Swift  
10    10 "This pain you thought would last forever and e… Verse 1 Taylor Swift  
# â„ą 48 more rows

[[314]]
# A tibble: 57 Ă— 4
    line lyric                                            element element_artist
   <int> <chr>                                            <chr>   <chr>         
 1     1 Today was a fairytale                            Verse 1 Taylor Swift  
 2     2 You were the prince                              Verse 1 Taylor Swift  
 3     3 I used to be a damsel in distress                Verse 1 Taylor Swift  
 4     4 You took me by the hand and you picked me up at… Verse 1 Taylor Swift  
 5     5 Today was a fairytale                            Verse 1 Taylor Swift  
 6     6 Today was a fairytale                            Verse 1 Taylor Swift  
 7     7 Today was a fairytale                            Verse 1 Taylor Swift  
 8     8 I wore a dress                                   Verse 1 Taylor Swift  
 9     9 You wore a dark grey t-shirt                     Verse 1 Taylor Swift  
10    10 You told me I was pretty when I looked like a m… Verse 1 Taylor Swift  
# â„ą 47 more rows

[[315]]
# A tibble: 42 Ă— 4
    line lyric                                            element element_artist
   <int> <chr>                                            <chr>   <chr>         
 1     1 "What a shame"                                   Verse 1 Taylor Swift  
 2     2 "Didn't wanna be the one that got away, yeah"    Verse 1 Taylor Swift  
 3     3 "Big mistake, broke the sweetest promise"        Verse 1 Taylor Swift  
 4     4 "That you never should have made"                Verse 1 Taylor Swift  
 5     5 "I'm here on the kitchen floor"                  Pre-Ch… Taylor Swift  
 6     6 "You call, but I won't hear it"                  Pre-Ch… Taylor Swift  
 7     7 "You said \"No one else,\" how could you do thi… Pre-Ch… Taylor Swift  
 8     8 "You really blew this, babe"                     Chorus  Taylor Swift  
 9     9 "We ain't gettin' through this one, babe"        Chorus  Taylor Swift  
10    10 "This is the last time I'll ever call you, babe" Chorus  Taylor Swift  
# â„ą 32 more rows

[[316]]
# A tibble: 33 Ă— 4
    line lyric                                            element element_artist
   <int> <chr>                                            <chr>   <chr>         
 1     1 The way I woke up was old                        Verse 1 Taylor Swift  
 2     2 Was all fucking choke                            Verse 1 Taylor Swift  
 3     3 And it ain't easier after a week                 Verse 1 Taylor Swift  
 4     4 Were on a long byway standing still              Verse 1 Taylor Swift  
 5     5 Well, if you cannot tell I'll tell you right aw… Chorus  Taylor Swift  
 6     6 If I'll stay a spell, or if I cannot stay        Chorus  Taylor Swift  
 7     7 I am less at ease, not the best at these         Chorus  Taylor Swift  
 8     8 See the forest trees, call what's these what's … Chorus  Taylor Swift  
 9     9 What's these (What's these)                      Post-C… Taylor Swift  
10    10 Hey Madeline, thanks                             Verse 2 Taylor Swift  
# â„ą 23 more rows

[[317]]
# A tibble: 53 Ă— 4
    line lyric                                            element element_artist
   <int> <chr>                                            <chr>   <chr>         
 1     1 I wish I was strong enough to lift not one but … Chorus  Taylor Swift  
 2     2 Some day I will be strong enough to lift not on… Chorus  Taylor Swift  
 3     3 Uhh                                              Verse 1 Taylor Swift  
 4     4 Ever thought about losing it                     Verse 1 Taylor Swift  
 5     5 When your money's all gone and you lose your wh… Verse 1 Taylor Swift  
 6     6 You might lose your grip when the landlord tell… Verse 1 Taylor Swift  
 7     7 And the grass so green on the other side         Verse 1 Taylor Swift  
 8     8 Make a nigga wanna run straight through the fen… Verse 1 Taylor Swift  
 9     9 Open up the fridge 'bout 20 times                Verse 1 Taylor Swift  
10    10 But you still can't find no food in it           Verse 1 Taylor Swift  
# â„ą 43 more rows

[[318]]
# A tibble: 36 Ă— 4
    line lyric                                element element_artist
   <int> <chr>                                <chr>   <chr>         
 1     1 You took me back                     Verse 1 Taylor Swift  
 2     2 But you shouldn't have               Verse 1 Taylor Swift  
 3     3 Now it's your fault if I mess around Verse 1 Taylor Swift  
 4     4 I took a drag                        Verse 1 Taylor Swift  
 5     5 But I shouldn't have                 Verse 1 Taylor Swift  
 6     6 Now I'm coughing up like I           Verse 1 Taylor Swift  
 7     7 Never smoked a pack                  Verse 1 Taylor Swift  
 8     8 Gasoline, pretty please              Chorus  Taylor Swift  
 9     9 I want to get off                    Chorus  Taylor Swift  
10    10 But you're such a tease              Chorus  Taylor Swift  
# â„ą 26 more rows

[[319]]
# A tibble: 39 Ă— 4
    line lyric                                            element element_artist
   <int> <chr>                                            <chr>   <chr>         
 1     1 I was born in the arms of imaginary friends      Verse 1 Taylor Swift  
 2     2 Free to roam, made a home out of everywhere I'v… Verse 1 Taylor Swift  
 3     3 Then you come crashing in, like the realest thi… Verse 1 Taylor Swift  
 4     4 Trying my best to understand all that your love… Verse 1 Taylor Swift  
 5     5 Oh half of my heart's got a grip on the situati… Chorus… Taylor Swift  
 6     6 Half of my heart takes time                      Chorus… Taylor Swift  
 7     7 Half of my heart's got a right mind to tell you  Chorus… Taylor Swift  
 8     8 That I can't keep loving you (can't keep loving… Chorus… Taylor Swift  
 9     9 Oh, with half of my heart                        Chorus… Taylor Swift  
10    10 I was made to believe I'd never love somebody e… Verse 2 Taylor Swift  
# â„ą 29 more rows

[[320]]
# A tibble: 57 Ă— 4
    line lyric                                            element element_artist
   <int> <chr>                                            <chr>   <chr>         
 1     1 Bet your window's rolled down and your hair's p… Verse 1 Taylor Swift  
 2     2 And I bet you got no idea you're going way too … Verse 1 Taylor Swift  
 3     3 You're trying not to think about what went wrong Verse 1 Taylor Swift  
 4     4 Trying not to stop 'til you get where you goin'  Verse 1 Taylor Swift  
 5     5 You're trying to stay awake so I bet you turn o… Verse 1 Taylor Swift  
 6     6 And the song goes                                Verse 1 Taylor Swift  
 7     7 I can't live without you, I can't live without … Pre-Ch… Taylor Swift  
 8     8 I can't live without you, I can't live without … Pre-Ch… Taylor Swift  
 9     9 The highway won't hold you tonight               Chorus… Taylor Swift  
10    10 The highway don't know you're alive              Chorus… Taylor Swift  
# â„ą 47 more rows

[[321]]
# A tibble: 48 Ă— 4
    line lyric                                            element element_artist
   <int> <chr>                                            <chr>   <chr>         
 1     1 I tapped on your window on your darkest night    Verse 1 Taylor Swift  
 2     2 The shape of you was jagged and weak             Verse 1 Taylor Swift  
 3     3 There was nowhere for me to stay, but I stayed … Verse 1 Taylor Swift  
 4     4 And if I would've known how many pieces you had… Verse 1 Taylor Swift  
 5     5 I might have let them lay                        Verse 1 Taylor Swift  
 6     6 Are you really gonna talk about timing in times… Chorus  Taylor Swift  
 7     7 And let all your damage damage me                Chorus  Taylor Swift  
 8     8 And carry your baggage up my street              Chorus  Taylor Swift  
 9     9 And make me your future history, it's time       Chorus  Taylor Swift  
10    10 You've come a long way; open the blinds, let me… Chorus  Taylor Swift  
# â„ą 38 more rows

[[322]]
# A tibble: 66 Ă— 4
    line lyric                               element element_artist
   <int> <chr>                               <chr>   <chr>         
 1     1 I get myself twisted in threads     Verse 1 Taylor Swift  
 2     2 To meet you at The Alcott           Verse 1 Taylor Swift  
 3     3 I'd go to the corner in the back    Verse 1 Taylor Swift  
 4     4 Where you'd always be               Verse 1 Taylor Swift  
 5     5 And there you are, sittin' as usual Verse 1 Taylor Swift  
 6     6 With your golden notebook           Verse 1 Taylor Swift  
 7     7 Writing something about someone     Verse 1 Taylor Swift  
 8     8 Who used to be me                   Verse 1 Taylor Swift  
 9     9 And the last thing you wanted       Chorus  Taylor Swift  
10    10 Is the first thing I do             Chorus  Taylor Swift  
# â„ą 56 more rows

[[323]]
# A tibble: 23 Ă— 4
    line lyric                                           element element_artist
   <int> <chr>                                           <chr>   <chr>         
 1     1 How was I to know? It's a crazy thing           Verse 1 Taylor Swift  
 2     2 I showed you my hand and you still let me win   Verse 1 Taylor Swift  
 3     3 And who was I to say that this was meant to be? Verse 1 Taylor Swift  
 4     4 The road that was broken brought us together    Verse 1 Taylor Swift  
 5     5 And I know you could fall for a thousand kings  Chorus  Taylor Swift  
 6     6 And hearts that would give you a diamond ring   Chorus  Taylor Swift  
 7     7 When I fold, you see the best in me             Chorus  Taylor Swift  
 8     8 The joker and the queen                         Chorus  Taylor Swift  
 9     9 I've been played before, if you hadn't guessed  Verse 2 Taylor Swift  
10    10 So I kept my cards close to my foolproof vest   Verse 2 Taylor Swift  
# â„ą 13 more rows

[[324]]
# A tibble: 126 Ă— 4
    line lyric                                            element element_artist
   <int> <chr>                                            <chr>   <chr>         
 1     1 Just feels like the whole thing is, we're all d… Spoken… Taylor Swift  
 2     2 Come on in!                                      Spoken  Taylor Swift  
 3     3 Hey, what's up, boys!                            Spoken  Taylor Swift  
 4     4 Pete in the house                                Spoken  Taylor Swift  
 5     5 Pete man!                                        Spoken  Taylor Swift  
 6     6 The king of Staten Island himself!               Spoken  Taylor Swift  
 7     7 What?                                            Spoken  Taylor Swift  
 8     8 Nothing, what's up?                              Spoken  Taylor Swift  
 9     9 Well, I just wanna say you guys have been makin… Spoken  Taylor Swift  
10    10 Dude!                                            Spoken  Taylor Swift  
# â„ą 116 more rows

[[325]]
# A tibble: 35 Ă— 4
    line lyric                                            element element_artist
   <int> <chr>                                            <chr>   <chr>         
 1     1 I remember what you wore on the first day        Verse 1 Taylor Swift  
 2     2 You came into my life and I thought              Verse 1 Taylor Swift  
 3     3 Hey, you know, this could be something           Verse 1 Taylor Swift  
 4     4 'Cause everything you do and words you say       Verse 1 Taylor Swift  
 5     5 You know that it all takes my breath away        Verse 1 Taylor Swift  
 6     6 And now I'm left with nothing                    Verse 1 Taylor Swift  
 7     7 So maybe it's true that I can't live without you Chorus  Taylor Swift  
 8     8 And maybe two is better than one                 Chorus  Taylor Swift  
 9     9 But there's so much time to figure out the rest… Chorus  Taylor Swift  
10    10 And you've already got me coming undone          Chorus  Taylor Swift  
# â„ą 25 more rows