From 54940faa0b166316d159c54f9a25a81d4b8c3b69 Mon Sep 17 00:00:00 2001 From: bys24 <bys24@drexel.edu> Date: Thu, 25 Apr 2024 02:41:45 +0000 Subject: [PATCH] Upload New File --- D4-WebScrape_Fixed.ipynb | 7091 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 7091 insertions(+) create mode 100644 D4-WebScrape_Fixed.ipynb diff --git a/D4-WebScrape_Fixed.ipynb b/D4-WebScrape_Fixed.ipynb new file mode 100644 index 0000000..096ffee --- /dev/null +++ b/D4-WebScrape_Fixed.ipynb @@ -0,0 +1,7091 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# INFO 103: Introduction to data science <br> Demo \\#4: Web scraping <br> Author: JRW\n", + "#### Preliminaries\n", + "To get started you will need to make sure you have bs4, i.e., BeautifulSoup. However, this comes with Anaconda, so if you're on a Jupyter notebook it should be no problem.<br>\n", + "## Mission\n", + "What we're trying to do here is: \n", + "1. download all of the text data hiding inside of a website (here, song lyrics) and\n", + "2. parse it into a structured data format convenient for processing (our target is json)." + ] + }, + { + "cell_type": "code", + "execution_count": 1, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Collecting bs4\n", + " Obtaining dependency information for bs4 from https://files.pythonhosted.org/packages/51/bb/bf7aab772a159614954d84aa832c129624ba6c32faa559dfb200a534e50b/bs4-0.0.2-py2.py3-none-any.whl.metadata\n", + " Downloading bs4-0.0.2-py2.py3-none-any.whl.metadata (411 bytes)\n", + "Requirement already satisfied: beautifulsoup4 in ./anaconda3/lib/python3.11/site-packages (from bs4) (4.12.2)\n", + "Requirement already satisfied: soupsieve>1.2 in ./anaconda3/lib/python3.11/site-packages (from beautifulsoup4->bs4) (2.5)\n", + "Downloading bs4-0.0.2-py2.py3-none-any.whl (1.2 kB)\n", + "Installing collected packages: bs4\n", + "Successfully installed bs4-0.0.2\n" + ] + } + ], + "source": [ + "!pip install bs4" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "#### As usual, we'll get going with a few package imports that we'll use along the way\n", + "\"BeautifulSoup\" (from bs4) is the all important python module that can parse html (and xml, in exactly the same way), \"requests\" let's us request page html from the internet, \"re\" is the regular expressions package, \"string\" literally just gets us the 26 letters of the alphabet in order, and \"json\" helps us read and write json protocol data." + ] + }, + { + "cell_type": "code", + "execution_count": 1, + "metadata": {}, + "outputs": [], + "source": [ + "from bs4 import BeautifulSoup\n", + "import requests, re, string, json" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "#### Let's look again at some very simple html\n", + "Notice that there are lots of \"tags.\" These are the keys for our data, and the content between pairs of tags are the values." + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "<!doctype html>\n", + "<html>\n", + "<head>\n", + " <title>Example Domain</title>\n", + "\n", + " <meta charset=\"utf-8\" />\n", + " <meta http-equiv=\"Content-type\" content=\"text/html; charset=utf-8\" />\n", + " <meta name=\"viewport\" content=\"width=device-width, initial-scale=1\" />\n", + " <style type=\"text/css\">\n", + " body {\n", + " background-color: #f0f0f2;\n", + " margin: 0;\n", + " padding: 0;\n", + " font-family: -apple-system, system-ui, BlinkMacSystemFont, \"Segoe UI\", \"Open Sans\", \"Helvetica Neue\", Helvetica, Arial, sans-serif;\n", + " \n", + " }\n", + " div {\n", + " width: 600px;\n", + " margin: 5em auto;\n", + " padding: 2em;\n", + " background-color: #fdfdff;\n", + " border-radius: 0.5em;\n", + " box-shadow: 2px 3px 7px 2px rgba(0,0,0,0.02);\n", + " }\n", + " a:link, a:visited {\n", + " color: #38488f;\n", + " text-decoration: none;\n", + " }\n", + " @media (max-width: 700px) {\n", + " div {\n", + " margin: 0 auto;\n", + " width: auto;\n", + " }\n", + " }\n", + " </style> \n", + "</head>\n", + "\n", + "<body>\n", + "<div>\n", + " <h1>Example Domain</h1>\n", + " <p>This domain is for use in illustrative examples in documents. You may use this\n", + " domain in literature without prior coordination or asking for permission.</p>\n", + " <p><a href=\"https://www.iana.org/domains/example\">More information...</a></p>\n", + "</div>\n", + "</body>\n", + "</html>\n", + "\n" + ] + } + ], + "source": [ + "html = requests.get(\"http://www.example.com\").text\n", + "print(html)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "#### Time to parse the html with BeautifulSoup()\n", + "After parsing, we can use the .find() function see a particular tag-value as html markup. Here's the head." + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "<head>\n", + "<title>Example Domain</title>\n", + "<meta charset=\"utf-8\"/>\n", + "<meta content=\"text/html; charset=utf-8\" http-equiv=\"Content-type\"/>\n", + "<meta content=\"width=device-width, initial-scale=1\" name=\"viewport\"/>\n", + "<style type=\"text/css\">\n", + " body {\n", + " background-color: #f0f0f2;\n", + " margin: 0;\n", + " padding: 0;\n", + " font-family: -apple-system, system-ui, BlinkMacSystemFont, \"Segoe UI\", \"Open Sans\", \"Helvetica Neue\", Helvetica, Arial, sans-serif;\n", + " \n", + " }\n", + " div {\n", + " width: 600px;\n", + " margin: 5em auto;\n", + " padding: 2em;\n", + " background-color: #fdfdff;\n", + " border-radius: 0.5em;\n", + " box-shadow: 2px 3px 7px 2px rgba(0,0,0,0.02);\n", + " }\n", + " a:link, a:visited {\n", + " color: #38488f;\n", + " text-decoration: none;\n", + " }\n", + " @media (max-width: 700px) {\n", + " div {\n", + " margin: 0 auto;\n", + " width: auto;\n", + " }\n", + " }\n", + " </style>\n", + "</head>\n" + ] + } + ], + "source": [ + "soup = BeautifulSoup(html, 'html')\n", + "print(soup.find('head'))" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "#### Tags are nested\n", + "This is just a good old fashioned associative array!" + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "<title>Example Domain</title>\n" + ] + } + ], + "source": [ + "print(soup.find('head').find('title'))" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "#### How to get the \"data\"\n", + "To get what's inside of a particular tag, we use the .text attribute at any particular level" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Example Domain\n" + ] + } + ], + "source": [ + "print(soup.find('head').find('title').text)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### For webpages, the goods are generally inside of the 'body'" + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "<body>\n", + "<div>\n", + "<h1>Example Domain</h1>\n", + "<p>This domain is for use in illustrative examples in documents. You may use this\n", + " domain in literature without prior coordination or asking for permission.</p>\n", + "<p><a href=\"https://www.iana.org/domains/example\">More information...</a></p>\n", + "</div>\n", + "</body>\n" + ] + } + ], + "source": [ + "print(soup.find('body'))" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "#### You don't actually have to follow nesting\n", + "If you want was inside of any 'p' tag, you can leave out nesting specifications. Here, we've left out that we want the 'body' specifically, although that's all there really is." + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "This domain is for use in illustrative examples in documents. You may use this\n", + " domain in literature without prior coordination or asking for permission.\n" + ] + } + ], + "source": [ + "print(soup.find('p').text)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "#### And if there's more than one of the same attribute\n", + "Use the .find_all() function." + ] + }, + { + "cell_type": "code", + "execution_count": 8, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[<p>This domain is for use in illustrative examples in documents. You may use this\n", + " domain in literature without prior coordination or asking for permission.</p>, <p><a href=\"https://www.iana.org/domains/example\">More information...</a></p>]\n" + ] + } + ], + "source": [ + "print(soup.find_all('p'))" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Since the result is a list, you can now iterate to see the individual elements." + ] + }, + { + "cell_type": "code", + "execution_count": 9, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "<p>This domain is for use in illustrative examples in documents. You may use this\n", + " domain in literature without prior coordination or asking for permission.</p>\n", + "<p><a href=\"https://www.iana.org/domains/example\">More information...</a></p>\n" + ] + } + ], + "source": [ + "for p in soup.find_all('p'):\n", + " print(p)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "#### Let's look at some links\n", + "Links are super important, and are generally in the 'a' tags, but as an \"href=...\" attribute. To get attributes, we first have to find tags. With a tag in hand, you can access any attribute using its name like a dictionary key." + ] + }, + { + "cell_type": "code", + "execution_count": 10, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "<a href=\"https://www.iana.org/domains/example\">More information...</a>\n", + "\n", + "More information...\n", + "\n", + "https://www.iana.org/domains/example\n" + ] + } + ], + "source": [ + "print(soup.find('a'))\n", + "print(\"\")\n", + "print(soup.find('a').text)\n", + "print(\"\")\n", + "print(soup.find('a')['href'])" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "#### Spreading out\n", + "This is where things really get interesting. Scraping the web for one page isn't very interesting. Remember, the web is a big network of connected pages. Some are internal to a site, and some are external. This little page has one outlink. Let's follow it and see what's on the next page, by downloading and parsing the html behind the next link. Note: in the list of links we find on the next page, some are external/complete and start with http://..., and some are site internal and start with a slash (\"/\")." + ] + }, + { + "cell_type": "code", + "execution_count": 11, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "/\n", + "/domains\n", + "/protocols\n", + "/numbers\n", + "/about\n", + "/go/rfc2606\n", + "/go/rfc6761\n", + "/domains/reserved\n", + "/domains\n", + "/domains/root\n", + "/domains/int\n", + "/domains/arpa\n", + "/domains/idn-tables\n", + "/numbers\n", + "/abuse\n", + "/protocols\n", + "/protocols\n", + "/time-zones\n", + "/about\n", + "/performance\n", + "/reports\n", + "/reviews\n", + "/about/excellence\n", + "/contact\n", + "http://pti.icann.org\n", + "http://www.icann.org/\n", + "https://www.icann.org/privacy/policy\n", + "https://www.icann.org/privacy/tos\n" + ] + } + ], + "source": [ + "newhtml = requests.get(soup.find('a')['href']).text\n", + "newsoup = BeautifulSoup(newhtml, 'lxml')\n", + "\n", + "for link in newsoup.find_all('a'):\n", + " print(link['href'])" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "#### The world is much more complex\n", + "Our first, example page was VERY simple, and this next one even has multiple 'p' tags. However, as we'll see below things get much more complicated." + ] + }, + { + "cell_type": "code", + "execution_count": 12, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "As described in RFC 2606 and RFC 6761, a\n", + "number of domains such as example.com and example.org are maintained\n", + "for documentation purposes. These domains may be used as illustrative\n", + "examples in documents without prior coordination with us. They are not\n", + "available for registration or transfer.\n", + "\n", + "\n", + "We provide a web service on the example domain hosts to provide basic\n", + "information on the purpose of the domain. These web services are\n", + "provided as best effort, but are not designed to support production\n", + "applications. While incidental traffic for incorrectly configured\n", + "applications is expected, please do not design applications that require\n", + "the example domains to have operating HTTP service.\n", + "\n", + "\n", + "The IANA functions coordinate the Internet’s globally unique identifiers, and\n", + " are provided by Public Technical Identifiers, an affiliate of\n", + " ICANN.\n", + "\n", + "\n" + ] + } + ], + "source": [ + "for par in newsoup.find_all('p'):\n", + " print(par.text)\n", + " print(\"\\n\")" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Downloading a personal copy of the song lyrics\n", + "Here's a fun challenge: can we go to one of those big song lyrics websites and grab everything they've got? Yes, but there are a number of challenges that go beyond control flow and syntax stuff:\n", + "\n", + "* Understanding the terms of use\n", + "* Determining website (page-page) structure\n", + "* Strategizing how to cover the whole site\n", + "* Deciding which data to look for\n", + "* Finding out where that data is stored\n", + "* Determing a good data structure (schema)\n", + "* Determinging a storage structure (files and directories)\n", + "\n", + "We're gonna go for songlyrics.com, but let's start by taking a look at the terms and conditions. For fun, we'll take a look with beautiful soup. What a mess..." + ] + }, + { + "cell_type": "code", + "execution_count": 13, + "metadata": { + "scrolled": true + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"https://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n", + "<html xmlns=\"https://www.w3.org/1999/xhtml\" lang=\"en-US\">\n", + "<head>\n", + "\t<title>Terms and Conditions | Collection of Song Lyrics at SongLyrics.com</title>\n", + "\t<meta http-equiv=\"content-type\" content=\"text/html; charset=utf-8\" />\n", + "\t<meta name=\"description\" content=\"\" />\n", + "\t\n", + "\t<meta name=\"msvalidate.01\" content=\"CF28C9C2E5FDBD5C7CA7F6FE394BD121\" />\n", + "\t\t\t<meta name=\"robots\" content=\"noydir, noodp\" />\n", + "\t\t<meta property=\"fb:admins\" content=\"31113169,100000933112467,1383859676\" />\n", + "\t<meta name=\"fb:app_id\" content=\"1418134321780018\" />\n", + "\t<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"> <!-- viewport -->\n", + "\t\n", + "\t<link rel=\"preconnect\" href=\"https://www.songlyrics.com\" />\n", + "\t<link rel=\"dns-prefetch\" href=\"//static.songlyrics.com />\n", + "\t<link rel=\"dns-prefetch\" href=\"//googleads.g.doubleclick.net\" />\n", + "\n", + "\t<link rel=\"icon\" href=\"favicon.ico\" type=\"image/ico\" />\n", + "\t<link href=\"css/global.min.10.css?v=2\" rel=\"stylesheet\" type=\"text/css\" />\n", + "\t\n", + "\t<script src=\"js/jquery.min.js\" type=\"text/javascript\"></script>\n", + "\n", + "\t\n", + "\n", + "\t\n", + "\t\n", + "\n", + "\t<!-- head info -->\n", + "\t\n", + "\t\t\n", + "\n", + "\n", + "\t\t<script type=\"text/javascript\">\n", + "\t\t\t$(function(){\n", + "\t\t\t\t$.superbox();\n", + "\t\t\t});\n", + "\t\t</script>\n", + "\n", + "\t\t<script type=\"text/javascript\">\n", + "\t\t\t//<![CDATA[\n", + "\t\t\t$(document).ready(function() {\n", + "\t\t\t\tfunction addMega(){\n", + "\t\t\t\t\t$(this).addClass(\"hovering\");\n", + "\t\t\t\t\t$($(this).find(\"h2 a\")).addClass(\"hover\");\n", + "\t\t\t\t}\n", + "\t\t\t\tfunction removeMega(){\n", + "\t\t\t\t\t$(this).removeClass(\"hovering\");\n", + "\t\t\t\t\t$($(this).find(\"h2 a\")).removeClass(\"hover\");\n", + "\t\t\t\t}\n", + "\t\t\t\tvar megaConfig = {\n", + "\t\t\t\t\tinterval: 30,\n", + "\t\t\t\t\tsensitivity: 4,\n", + "\t\t\t\t\tover: addMega,\n", + "\t\t\t\t\ttimeout: 30,\n", + "\t\t\t\t\tout: removeMega\n", + "\t\t\t\t};\n", + "\t\t\t\t$(\"li.mega\").hoverIntent(megaConfig)\n", + "\t\t\t});\n", + "\t\t\t//]]>\n", + "\t\t</script>\n", + "\n", + "\t\t<script type=\"text/javascript\">\n", + "\t\t\tvar _gaq = _gaq || [];\n", + "\t\t\t_gaq.push(['_setAccount', 'UA-235369-1']);\n", + "\t\t\t_gaq.push(['_setDomainName', 'songlyrics.com']);\n", + "\t\t\t_gaq.push(['_trackPageview']);\n", + "\t\t\t_gaq.push(['_trackPageLoadTime']);\n", + "\n", + "\t\t\t(function() {\n", + "\t\t\t\tvar ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;\n", + "\t\t\t\tga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'https://www') + '.google-analytics.com/ga.js';\n", + "\t\t\t\tvar s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);\n", + "\t\t\t})();\n", + "\t\t</script>\n", + "\n", + "\t\t<!-- Quantcast Tag, part 1 -->\n", + "\t\t<script type=\"text/javascript\">\n", + "\t\t\tvar _qevents = _qevents || [];\n", + "\n", + "\t\t\t(function() {\n", + "\t\t\t\tvar elem = document.createElement('script');\n", + "\t\t\t\telem.src = (document.location.protocol == \"https:\" ? \"https://secure\" : \"https://edge\") + \".quantserve.com/quant.js\";\n", + "\t\t\t\telem.async = true;\n", + "\t\t\t\telem.type = \"text/javascript\";\n", + "\t\t\t\tvar scpt = document.getElementsByTagName('script')[0];\n", + "\t\t\t\tscpt.parentNode.insertBefore(elem, scpt);\n", + "\t\t\t})();\n", + "\t\t</script>\n", + "\t\t<!-- End Quantcast tag, part 1 -->\n", + "\n", + "\t\n", + "\n", + "\t\n", + "\t\n", + "\t\n", + "\t\t<script src=\"https://cmp.uniconsent.com/v2/stub.min.js\"></script>\n", + "\t\t<script async src='https://cmp.uniconsent.com/v2/4d73da4430/cmp.js'></script>\n", + "\t\t<script type=\"text/javascript\">\n", + "\t\t\twindow.googletag = window.googletag || {};\n", + "\t\t\twindow.googletag.cmd = window.googletag.cmd || [];\n", + "\t\t\twindow.googletag.cmd.push(function () {\n", + "\t\t\t\twindow.googletag.pubads().enableAsyncRendering();\n", + "\t\t\t\twindow.googletag.pubads().disableInitialLoad();\n", + "\t\t\t});\n", + "\t\t\t(adsbygoogle = window.adsbygoogle || []).pauseAdRequests = 1;\n", + "\t\t</script>\n", + "\t\t<script>\n", + "\t\t\t__tcfapi(\"addEventListener\", 2, function(tcData, success) {\n", + "\t\t\t\tif (success && tcData.unicLoad === true) {\n", + "\t\t\t\t\tif(!window._initAds) {\n", + "\t\t\t\t\t\twindow._initAds = true;\n", + "\t\t\t\t\t\tvar script = document.createElement('script');\n", + "\t\t\t\t\t\tscript.async = true;\n", + "\t\t\t\t\t\tscript.src = 'https://dsh7ky7308k4b.cloudfront.net/publishers/songlyricscom.new.min.js';\n", + "\t\t\t\t\t\tdocument.head.appendChild(script);\n", + "\t\t\t\t\t\tvar script = document.createElement('script');\n", + "\t\t\t\t\t\tscript.async = true;\n", + "\t\t\t\t\t\tscript.src = '//srv.tunefindforfans.com/fruits/apricots.js';\n", + "\t\t\t\t\t\tdocument.head.appendChild(script);\n", + "\t\t\t\t\t\tvar script = document.createElement('script');\n", + "\t\t\t\t\t\tscript.async = true;\n", + "\t\t\t\t\t\tscript.src = '//pagead2.googlesyndication.com/pagead/show_ads.js';\n", + "\t\t\t\t\t\tdocument.head.appendChild(script);\n", + "\t\t\t\t\t\tvar script = document.createElement('script');\n", + "\t\t\t\t\t\tscript.defer = true;\n", + "\t\t\t\t\t\tscript.innerHTML =\n", + "\t\t\t\t\t\t\t\t`/* * * CONFIGURATION VARIABLES: EDIT BEFORE PASTING INTO YOUR WEBPAGE * * */\n", + "\t\t\t\t\t\t\t\t\tvar disqus_shortname = 'song-lyrics'; // required: replace example with your forum shortname\n", + "\t\t\t\t\t\t\t\t\tvar disqus_developer = 1; // developer mode is off\n", + "\t\t\t\t\t\t\t\t\tvar disqus_container_id = 'disqus_thread';\n", + "\n", + "\t\t\t\t\t\t\t\t\tvar disqus_config = function () {\n", + "\t\t\t\t\t\t\t\t\tvar config = this; // Access to the config object\n", + "\t\t\t\t\t\t\t\t\t\tconfig.callbacks.preData.push(function() {\n", + "\t\t\t\t\t\t\t\t\t\t\t// clear out the container (its filled for SEO/legacy purposes)\n", + "\t\t\t\t\t\t\t\t\t\t\tdocument.getElementById(disqus_container_id).innerHTML = '';\n", + "\t\t\t\t\t\t\t\t\t\t});\n", + "\n", + "\t\t\t\t\t\t\t\t\t};\n", + "\t\t\t\t\t\t\t\t\t\t/* * * DON'T EDIT BELOW THIS LINE * * */\n", + "\t\t\t\t\t\t\t\t\t(function() {\n", + "\t\t\t\t\t\t\t\t\t\tvar dsq = document.createElement('script'); dsq.type = 'text/javascript'; dsq.async = true;\n", + "\t\t\t\t\t\t\t\t\t\tdsq.src = 'https://' + disqus_shortname + '.disqus.com/embed.js';\n", + "\t\t\t\t\t\t\t\t\t\t(document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(dsq);\n", + "\t\t\t\t\t\t\t\t\t})();`\n", + "\t\t\t\t\t\tdocument.body.appendChild(script);\n", + "\t\t\t\t\t}\n", + "\t\t\t\t}\n", + "\t\t\t});\n", + "\t\t</script>\n", + "\t\t<script>\n", + "\t\t\t(function waitGEO() {\n", + "\t\t\t\tvar readyGEO;\n", + "\t\t\t\tif (window['UnicI'] && window['UnicI'].geo && window['UnicI'].geo !== '-' ) {\n", + "\t\t\t\t\treadyGEO = true;\n", + "\t\t\t\t\tconsole.log(window['UnicI'].geo);\n", + "\t\t\t\t\tif (window['UnicI'].geo === 'EU') {\n", + "\t\t\t\t\t\tif(document.getElementById(\"unic-gdpr\")) {\n", + "\t\t\t\t\t\t\tdocument.getElementById(\"unic-gdpr\").style.display = 'block';\n", + "\t\t\t\t\t\t}\n", + "\t\t\t\t\t}\n", + "\t\t\t\t\tif (window['UnicI'].geo === 'CA') {\n", + "\t\t\t\t\t\tif(document.getElementById(\"unic-ccpa\")) {\n", + "\t\t\t\t\t\t\tdocument.getElementById(\"unic-ccpa\").style.display = 'block';\n", + "\t\t\t\t\t\t}\n", + "\t\t\t\t\t}\n", + "\t\t\t\t}\n", + "\t\t\t\tif (!readyGEO) {\n", + "\t\t\t\t\tsetTimeout(waitGEO, 200);\n", + "\t\t\t\t}\n", + "\t\t\t})();\n", + "\t\t</script>\n", + "\t\n", + "\n", + "</head>\n", + "<body >\n", + "<script>\n", + "\t/* BIT - 1x1 - Songlyrics.com - Video */\n", + "\tcf_page_artist = \"\";\n", + "\tcf_page_song = \"\";\n", + "\tcf_adunit_id = \"100005353\";\n", + "</script>\n", + "<script src=\"//srv.tunefindforfans.com/fruits/apricots.js\"></script>\n", + "<div id='fb-root'></div>\n", + "\n", + "<div id=\"header\">\n", + "\n", + "\t<div id=\"headernav\">\n", + "\t\t<div class=\"headinner\">\n", + "\n", + "\t\t\t<ul class=\"menu floatleft\">\n", + "\t\t\t\t<li class=\"mega\">\n", + "\t\t\t\t\t<h2><a href=\"/\">Lyrics</a></h2>\n", + "\t\t\t\t\t<div>\n", + "\t\t\t\t\t\t<p><a href=\"/top-songs-lyrics.html\">Popular Song Lyrics</a></p>\n", + "\t\t\t\t\t\t<p><a href=\"/top100.php\">Billboard Hot 100</a></p>\n", + "\t\t\t\t\t\t<p><a href=\"/top-upcoming-songs.html\">Upcoming Lyrics</a></p>\n", + "\t\t\t\t\t\t<p><a href=\"/latestAddedSongs\">Recently Added</a></p>\n", + "\t\t\t\t\t\t<p class=\"menu-hr\"></p>\n", + "\t\t\t\t\t\t<p><a href=\"/news/top-songs/2011/\">Top Lyrics of 2011</a></p>\n", + "\t\t\t\t\t\t<p><a href=\"/news/top-songs/2010/\">Top Lyrics of 2010</a></p>\n", + "\t\t\t\t\t\t<p><a href=\"/news/top-songs/2009/\">Top Lyrics of 2009</a></p>\n", + "\t\t\t\t\t\t<p><a href=\"/news/top-songs/all-time/\">More »</a></p>\n", + "\t\t\t\t\t</div>\n", + "\t\t\t\t</li>\n", + "\t\t\t\t<li class=\"mega\">\n", + "\t\t\t\t\t<h2><a href=\"/top-artists-lyrics.html\">Artists</a></h2>\n", + "\t\t\t\t\t<div>\n", + "\t\t\t\t\t\t<p><a href=\"/top-artists-lyrics.html\">Popular Artists</a></p>\n", + "\t\t\t\t\t\t<p><a href=\"/a/\">Artists A-Z</a></p>\n", + "\t\t\t\t\t\t<p class=\"menu-hr\"></p>\n", + "\t\t\t\t\t\t<p><a href=\"/top-albums-lyrics.html\">Popular Albums</a></p>\n", + "\t\t\t\t\t\t<p><a href=\"/top-upcoming-albums.html\">Upcoming Albums</a></p>\n", + "\t\t\t\t\t\t<p class=\"menu-hr\"></p>\n", + "\t\t\t\t\t\t<p><a href=\"/adele-lyrics/\">Adele</a></p>\n", + "\t\t\t\t\t\t<p><a href=\"/rihanna-lyrics/\">Rihanna</a></p>\n", + "\t\t\t\t\t\t<p><a href=\"/katy-perry-lyrics/\">Katy Perry</a></p>\n", + "\t\t\t\t\t\t<p><a href=\"/lady-gaga-lyrics/\">Lady Gaga</a></p>\n", + "\t\t\t\t\t\t<p><a href=\"/lil-wayne-lyrics/\">Lil Wayne</a></p>\n", + "\n", + "\t\t\t\t\t</div>\n", + "\t\t\t\t</li>\n", + "\t\t\t\t<li class=\"mega\">\n", + "\t\t\t\t\t<h2><a href=\"/musicgenres.php\">Genres</a></h2>\n", + "\t\t\t\t\t<div>\n", + "\t\t\t\t\t\t<p><a href=\"/rock-lyrics.php\" title=\"Rock Lyrics\">Rock</a></p>\n", + "\t\t\t\t\t\t<p><a href=\"/r-and-b-lyrics.php\" title=\"R&B Lyrics\">R&B</a></p>\n", + "\t\t\t\t\t\t<p><a href=\"/country-music-lyrics.php\" title=\"Country Lyrics\">Country</a></p>\n", + "\t\t\t\t\t\t<p><a href=\"/hip-hop-rap-lyrics.php\" title=\"Hip Hop and Rap Lyrics\">Hip Hop/Rap</a></p>\n", + "\t\t\t\t\t\t<p><a href=\"/pop-lyrics.php\" title=\"Pop Lyrics\">Pop</a></p>\n", + "\t\t\t\t\t\t<p><a href=\"/christian-lyrics.php\" title=\"Christian Lyrics\">Christian</a></p>\n", + "\t\t\t\t\t\t<p><a href=\"/dance-lyrics.php\" title=\"Dance Lyrics\">Dance</a></p>\n", + "\t\t\t\t\t\t<p><a href=\"/latin-lyrics.php\" title=\"Latin Lyrics\">Latin</a></p>\n", + "\t\t\t\t\t\t<p class=\"menu-hr\"></p>\n", + "\t\t\t\t\t\t<p><a href=\"/musicgenres.php\" title=\"All Genre Charts\">All Genres »</a></p>\n", + "\t\t\t\t\t</div>\n", + "\t\t\t\t</li>\n", + "\n", + "\t\t\t\t<li class=\"mega\">\n", + "\t\t\t\t\t<h2><a href=\"/news/\">News</a></h2>\n", + "\t\t\t\t\t<div>\n", + "\t\t\t\t\t\t<p><a href=\"/news/\">All News</a></p>\n", + "\t\t\t\t\t\t<p><a href=\"/news/category/news-roundup/\">Daily Roundup</a></p>\n", + "\t\t\t\t\t</div>\n", + "\t\t\t\t</li>\n", + "\n", + "\t\t\t\t<li class=\"mega\">\n", + "\t\t\t\t\t<h2><a href=\"/news/album-reviews/\">Reviews</a></h2>\n", + "\t\t\t\t\t<div>\n", + "\t\t\t\t\t\t<p><a href=\"/news/album-reviews/\">Album Reviews</a></p>\n", + "\t\t\t\t\t\t<p><a href=\"/news/category/song-reviews/\">Song Reviews</a></p>\n", + "\t\t\t\t\t</div>\n", + "\t\t\t\t</li>\n", + "\n", + "\t\t\t\t<li class=\"mega\">\n", + "\t\t\t\t\t<h2><a href=\"/news/category/spotlight/\">Spotlight</a></h2>\n", + "\t\t\t\t</li>\n", + "\n", + "\t\t\t</ul>\n", + "\t\t\t\t\t\t\t<p class=\"login-menu\"><a class=\"btn\" href=\"/member-login.php\" rel=\"nofollow\">Sign In</a><a class=\"btn\" rel=\"nofollow\" href=\"/member-register.php\">Register</a></p>\n", + "\t\t\t\t\t\t<ul class=\"menu floatright clearright\">\n", + "\t\t\t\t<li class=\"mega\">\n", + "\t\t\t\t\t<h2><a href=\"https://www.facebook.com/SongLyrics\">Facebook</a></h2>\n", + "\t\t\t\t</li>\n", + "\t\t\t\t<li>\n", + "\t\t\t\t\t<h2><a href=\"/news/advertise/\">Advertise</a></h2>\n", + "\t\t\t\t</li>\n", + "\t\t\t\t<li class=\"lasttab\">\n", + "\t\t\t\t\t<h2><a href=\"/news/submit-lyrics/\">Submit Lyrics</a></h2>\n", + "\t\t\t\t</li>\n", + "\t\t\t</ul>\n", + "\n", + "\n", + "\t\t</div><!-- end headerinner -->\n", + "\t</div><!-- end headernav -->\n", + "\n", + "\n", + "\t<!-- HEADERNAV MOBILE -->\n", + "\n", + "\t<div id=\"headernav-mobile\">\n", + "\t\t<div class=\"headinner\">\n", + "\n", + "\t\t\t<nav id=\"nav\" role=\"navigation\">\n", + "\t\t\t\t<a href=\"#nav\" title=\"Show navigation\">Show navigation\n", + "\t\t\t\t\t<i class=\"line-1 line\"></i>\n", + "\t\t\t\t\t<i class=\"line-2 line\"></i>\n", + "\t\t\t\t\t<i class=\"line-3 line\"></i>\n", + "\t\t\t\t</a>\n", + "\t\t\t\t<a href=\"#\" class=\"hide\" title=\"Hide navigation\">Hide navigation\n", + "\t\t\t\t\t<i class=\"line-1 line\"></i>\n", + "\t\t\t\t\t<i class=\"line-2 line\"></i>\n", + "\t\t\t\t\t<i class=\"line-3 line\"></i>\n", + "\t\t\t\t</a>\n", + "\t\t\t\t<ul>\n", + "\t\t\t\t\t<li><a href=\"/\" aria-haspopup=\"true\">Lyrics</a>\n", + "\t\t\t\t\t\t<ul>\n", + "\t\t\t\t\t\t\t<li><a href=\"/top-songs-lyrics.html\">Popular Song Lyrics</a></li>\n", + "\t\t\t\t\t\t\t<li><a href=\"/top100.php\">Billboard Hot 100</a></li>\n", + "\t\t\t\t\t\t\t<li><a href=\"/top-upcoming-songs.html\">Upcoming Lyrics</a></li>\n", + "\t\t\t\t\t\t\t<li><a href=\"/latestAddedSongs\">Recently Added</a></li>\n", + "\t\t\t\t\t\t\t<li><a href=\"/news/top-songs/2011/\">Top Lyrics of 2011</a></li>\n", + "\t\t\t\t\t\t\t<li><a href=\"/news/top-songs/2010/\">Top Lyrics of 2010</a></li>\n", + "\t\t\t\t\t\t\t<li><a href=\"/news/top-songs/2009/\">Top Lyrics of 2009</a></li>\n", + "\t\t\t\t\t\t\t<li><a href=\"/news/top-songs/all-time/\">More »</a></li>\n", + "\t\t\t\t\t\t</ul>\n", + "\t\t\t\t\t</li>\n", + "\t\t\t\t\t<li><a href=\"/top-artists-lyrics.html\" aria-haspopup=\"true\">Artists</a>\n", + "\t\t\t\t\t\t<ul>\n", + "\t\t\t\t\t\t\t<li><a href=\"/top-artists-lyrics.html\">Popular Artists</a></li>\n", + "\t\t\t\t\t\t\t<li><a href=\"/a/\">Artists A-Z</a></li>\n", + "\t\t\t\t\t\t\t<li><a href=\"/top-albums-lyrics.html\">Popular Albums</a></li>\n", + "\t\t\t\t\t\t\t<li><a href=\"/top-upcoming-albums.html\">Upcoming Albums</a></li>\n", + "\t\t\t\t\t\t\t<li><a href=\"/adele-lyrics/\">Adele</a></li>\n", + "\t\t\t\t\t\t\t<li><a href=\"/rihanna-lyrics/\">Rihanna</a></li>\n", + "\t\t\t\t\t\t\t<li><a href=\"/katy-perry-lyrics/\">Katy Perry</a></li>\n", + "\t\t\t\t\t\t\t<li><a href=\"/lady-gaga-lyrics/\">Lady Gaga</a></li>\n", + "\t\t\t\t\t\t\t<li><a href=\"/lil-wayne-lyrics/\">Lil Wayne</a></li>\n", + "\t\t\t\t\t\t</ul>\n", + "\t\t\t\t\t</li>\n", + "\t\t\t\t\t<li><a href=\"/musicgenres.php\" aria-haspopup=\"true\">Genres</a>\n", + "\t\t\t\t\t\t<ul>\n", + "\t\t\t\t\t\t\t<li><a href=\"/rock-lyrics.php\" title=\"Rock Lyrics\">Rock</a></li>\n", + "\t\t\t\t\t\t\t<li><a href=\"/r-and-b-lyrics.php\" title=\"R&B Lyrics\">R&B</a></li>\n", + "\t\t\t\t\t\t\t<li><a href=\"/country-music-lyrics.php\" title=\"Country Lyrics\">Country</a></li>\n", + "\t\t\t\t\t\t\t<li><a href=\"/hip-hop-rap-lyrics.php\" title=\"Hip Hop and Rap Lyrics\">Hip Hop/Rap</a></li>\n", + "\t\t\t\t\t\t\t<li><a href=\"/pop-lyrics.php\" title=\"Pop Lyrics\">Pop</a></li>\n", + "\t\t\t\t\t\t\t<li><a href=\"/christian-lyrics.php\" title=\"Christian Lyrics\">Christian</a></li>\n", + "\t\t\t\t\t\t\t<li><a href=\"/dance-lyrics.php\" title=\"Dance Lyrics\">Dance</a></li>\n", + "\t\t\t\t\t\t\t<li><a href=\"/latin-lyrics.php\" title=\"Latin Lyrics\">Latin</a></li>\n", + "\t\t\t\t\t\t\t<li><a href=\"/musicgenres.php\" title=\"All Genre Charts\">All Genres »</a></li>\n", + "\t\t\t\t\t\t</ul>\n", + "\t\t\t\t\t</li>\n", + "\t\t\t\t\t<li><a href=\"/news/\" aria-haspopup=\"true\">News</a>\n", + "\t\t\t\t\t\t<ul>\n", + "\t\t\t\t\t\t\t<li><a href=\"/news/\">All News</a></li>\n", + "\t\t\t\t\t\t\t<li><a href=\"/news/category/news-roundup/\">Daily Roundup</a></li>\n", + "\t\t\t\t\t\t</ul>\n", + "\t\t\t\t\t</li>\n", + "\t\t\t\t\t<li><a href=\"/news/album-reviews/\" aria-haspopup=\"true\">Reviews</a>\n", + "\t\t\t\t\t\t<ul>\n", + "\t\t\t\t\t\t\t<li><a href=\"/news/album-reviews/\">Album Reviews</a></li>\n", + "\t\t\t\t\t\t\t<li><a href=\"/news/category/song-reviews/\">Song Reviews</a></li>\n", + "\t\t\t\t\t\t</ul>\n", + "\t\t\t\t\t</li>\n", + "\t\t\t\t\t<li><a href=\"/news/category/spotlight/\" aria-haspopup=\"true\">Spotlight</a></li>\n", + "\t\t\t\t\t<li><a href=\"https://www.facebook.com/SongLyrics\" aria-haspopup=\"true\">Facebook</a>\n", + "\t\t\t\t\t<li><a href=\"/news/advertise/\" aria-haspopup=\"true\">Advertise</a>\n", + "\t\t\t\t\t<li><a href=\"/news/submit-lyrics/\" aria-haspopup=\"true\">Submit Lyrics</a>\n", + "\t\t\t\t\t</li>\n", + "\t\t\t\t\t<div id=\"header_search-mobile\">\n", + "\t\t\t\t\t\t<form name=\"searchForm\" class=\"searchForm\" method=\"get\" action=\"/index.php\">\n", + "\t\t\t\t\t\t\t<input type=\"hidden\" name=\"section\" value=\"search\" />\n", + "\n", + "\t\t\t\t\t\t\t<fieldset>\n", + "\t\t\t\t\t\t\t\t<input type=\"text\" name=\"searchW\" class=\"searchW input\" value=\"Search artists, albums, and songs\" onfocus=\"if(this.value=='Search artists, albums, and songs')(this.value='');\" onblur=\"if(this.value=='')(this.value='Search artists, albums, and songs');\" />\n", + "\t\t\t\t\t\t\t\t<div class=\"submit-btn\"><input type=\"submit\" name=\"submit\" value=\"Search\" class=\"submit-input-wrapped searchSubmit\" /></div>\n", + "\t\t\t\t\t\t\t</fieldset>\n", + "\t\t\t\t\t\t</form>\n", + "\t\t\t\t\t</div>\n", + "\t\t\t\t</ul>\n", + "\t\t\t</nav>\n", + "\t\t</div><!-- end headerinner -->\n", + "\t</div><!-- end headernav mobile -->\n", + "\n", + "\n", + "\t<div class=\"headinner\">\n", + "\n", + "\n", + "\t\t<a id=\"logo\" href=\"/\" title=\"Lyrics\">Song Lyrics</a>\n", + "\n", + "\t\t<div id=\"header_search\">\n", + "\t\t\t<form name=\"searchForm\" class=\"searchForm\" method=\"get\" action=\"/index.php\">\n", + "\t\t\t\t<input type=\"hidden\" name=\"section\" value=\"search\" />\n", + "\n", + "\t\t\t\t<fieldset>\n", + "\t\t\t\t\t<input type=\"text\" name=\"searchW\" class=\"searchW input\" value=\"Search artists, albums, and songs\" onfocus=\"if(this.value=='Search artists, albums, and songs')(this.value='');\" onblur=\"if(this.value=='')(this.value='Search artists, albums, and songs');\" />\n", + "\t\t\t\t\t<div class=\"submit-btn\"><input type=\"submit\" name=\"submit\" value=\"Search\" class=\"submit-input-wrapped searchSubmit\" /></div>\n", + "\t\t\t\t</fieldset>\n", + "\t\t\t</form>\n", + "\t\t</div>\n", + "\n", + "\t</div><!-- end headerinner -->\n", + "</div><!-- end header -->\n", + "\n", + "<div id=\"wrapper\">\n", + "\n", + "\t<div id=\"fbbox\">\n", + "\t\t<div id=\"fbbox-count\">\n", + "\t\t<span id=\"fbbox-total\">\n", + "\t\t55k\n", + "\t\t</span>\n", + "\t\t</div>\n", + "\t\t<a id=\"fbbox-likebutton\" target=\"_blank\" href=\"https://www.facebook.com/SongLyrics\">Like</a>\n", + "\t</div>\n", + "\n", + "\t\n", + "\n", + "\n", + "<div class=\"masthead\"></div>\n", + "\n", + "<div class=\"wrapper-inner\">\n", + "\t\n", + "\t<div class=\"topnav\">\n", + "\t\t\n", + "\t\t<ul class=\"breadcrumb\">\n", + "\t\t\t<li class=\"home\"><a href=\"/\" title=\"Lyrics\"><span>Lyrics</span></a></li>\n", + "\t\t\t<li class=\"current\">Terms and Conditions</li>\n", + "\t\t</ul>\n", + "\t\t\n", + "\t\t<ul class=\"social-links\">\n", + "\t\t\t<li class=\"fb\">\n", + "\t\t\t\t<div class=\"pw_widget pw_size_24 pw_post_false pw_counter_true\">\n", + "\t <a class=\"pw_facebook\"></a>\n", + "\t <a class=\"pw_twitter\"></a>\n", + "\t <a class=\"pw_email\"></a>\n", + "\t <a class=\"pw_googleplus\"></a>\n", + "\t </div>\n", + "\t\t\t</li>\n", + "\t\t</ul>\n", + "\t\n", + "\t</div><!-- end topnav -->\n", + "\n", + "\t<!-- PRIMIS PLAYER -->\n", + "\t<div id=\"primisPlayer\"></div>\n", + "\n", + "\t<div class=\"colone-wide\">\n", + "\t\t<div class=\"maintext padder\"><h1>Terms and Conditions</h1> <p>This page contains the "Terms and Conditions" under which you may use www.SongLyrics.com. Please read this page carefully. If you do not accept the Terms and Conditions stated here, do not use this web site and service. By using this web site, you are indicating your acceptance to be bound by the terms of these Terms and Conditions. SongLyrics.com, (the "Company") owner of SongLyrics.com.com, may revise these Terms and Conditions at any time by updating this posting. You should visit this page periodically to review the Terms and Conditions, because they are binding on you and may change without notice. The terms "You" and "User" as used herein refer to all individuals and/or entities accessing this web site for any reason.</p> <h3>Use of Material. </h3> <p>The Company authorizes you to view and download a single copy of the material on SongLyrics.com.com (the "Web Site") solely for your personal, noncommercial use. </p> <p>The contents of this Web Site, such as text, graphics, images, logos, button icons, software and other "Material", are protected under United States and foreign copyright, trademark and other laws. All Material is the property of the Company or its content suppliers, vendors and clients. The compilation (meaning the collection, arrangement and assembly) of all content on this Web Site is the exclusive property of the Company and protected by U.S. and international copyright laws. Unauthorized use of the Material may violate copyright, trademark, and other laws. You must retain all copyright, trademark, service mark and other proprietary notices contained in the original Material on any copy you make of the Material. You may not sell or modify the Material or reproduce, display, publicly perform, distribute, or otherwise use the Material in any way for any public or commercial purpose. The use of the Material on any other web site or in a networked computer environment for any purpose is prohibited. Further, the HTML code that is created by the Company while generating its pages is also protected by the Company's copyright.</p> <h3>Fees.</h3> <p>When you join SongLyrics.com.com, you are expected to pay for all products and services, as well as any fees that might be involved, if applicable. The Companys fee policy shall be made available to you on this Web Site and is incorporated by reference. We may change our Fees and Credits Policy and the fees for our services from time to time. Our changes to the policy are effective after we provide you with at least fourteen (14) days' notice of the changes by posting the changes on the Web Site, unless notice is given otherwise. You will have an opportunity to review the fees and accept them before starting using the Companys service. In the event we introduce a new service, the fees for that service are effective at the start of the service. Unless otherwise stated, all fees are quoted in U.S. Dollars. You are responsible for paying all fees associated with using the Companys service and Web Site, as well as all applicable taxes.</p> <h3>Acceptable Site Use. </h3> <p>General Rules: Users may not use the Web Site in order to transmit, distribute, store or destroy material (a) in violation of any applicable law or regulation, (b) in a manner that will infringe the copyright, trademark, trade secret or other intellectual property rights of others or violate the privacy, publicity or other personal rights of others, (c) that is defamatory, obscene, threatening, abusive or hateful, or (d) otherwise prohibited by the Company. </p> <p>Web Site Security Rules. Users are prohibited from violating or attempting to violate the security of the Web Site, including, without limitation, (a) accessing data not intended for such user or logging into a server or account which the user is not authorized to access, (b) attempting to probe, scan or test the vulnerability of a system or network or to breach security or authentication measures without proper authorization, (c) attempting to interfere with service to any user, host or network, including, without limitation, via means of submitting a virus to the Web Site, overloading, "flooding", "spamming", "mailbombing" or "crashing", (d) sending unsolicited e-mail, including promotions and/or advertising of products or services, or (e) forging any TCP/IP packet header or any part of the header information in any e-mail or newsgroup posting. Violations of system or network security may result in civil or criminal liability. The Company will investigate occurrences that may involve such violations and may involve, and cooperate with, law enforcement authorities in prosecuting users who are involved in such violations. </p> <p>This site is designed for parties who can legally make binding contracts under applicable law. Therefore, minors are not allowed to use this site without permission of their parents or guardians. Minors who can not meet these requirements may not use this Web Site.</p> <p>You are also expected to follow all laws and regulations that may be associated with any of the activities involved with the use of the Web Site. You are also expected to pay for any state fees or applicable taxes that may be associated with the activities from this Web Site.</p> <h3>Specific Prohibited Uses. </h3> <p>The Web Site may be used only for lawful purposes by individuals wanting to see lyrics from various artists. The Company specifically prohibits any use of the Web Site, and all users agree not to use the Web Site, for any of the following: </p> <p>Posting any incomplete, false or inaccurate information in the open discussions and chat forum sections (if applicable) or other areas of the Web Site. This includes, but is not limited to, any postings that are sexually implicit, use derogatory statements or offensive language, are implicit or immoral in nature, are harassing or libelous, and any unlawful statement.</p> <p>Posting any false or inaccurate biographical information when setting up an account or requesting other information from this Web Site. This includes, but is not limited to misrepresenting yourself, your company, and company goods and/or services.</p> <p>Posting any incomplete, false or inaccurate information in any other part of this Web Site. This includes, but is not limited to posting misleading or false product, service or service request information.</p> <p>Posting of any corrupted files, viruses and other software damaging activities.</p> <p>Posting any franchise, pyramid scheme, multi-level marketing, "club membership", distributorship or sales representative agency arrangement or other business opportunities which requires an up front or periodic payment, pays commissions only, requires recruitment of other members, sub-distributors or sub-agents, or other commercial venture.</p> <p>Attempting to gather or solicit other users information for any reason not authorized by the Company.</p> <p>Deleting or revising any material posted by any other person or entity. This includes, but is not limited to, the infringement of any third partys content or transmission.</p> <p>Using any device, software or routine to interfere or attempt to interfere with the proper working of this Web Site or any activity being conducted on this site. </p> <p>Taking any action that imposes an unreasonable or disproportionately large load on this Web Sites infrastructure. </p> <p>If you have a password allowing access to a non-public area of this Web Site, disclosing to or sharing your password with any third parties or using your password for any unauthorized purpose. </p> <p>Notwithstanding anything to the contrary contained herein, using or attempting to use any engine, software, tool, agent or other device or mechanism (including without limitation browsers, spiders, robots, avatars or intelligent agents) to navigate or search this Web Site other than the search engine and search agents available from the Company on this Web Site and other than generally available third party web browsers, such as Netscape Navigator and Microsoft Explorer. </p> <p>Attempting to decipher, decompile, disassemble or reverse engineer any of the software comprising or in any way making up a part of the Web Site. </p> <p>Aggregating, copying or duplicating in any manner any of the materials or information available from the Web Site. </p> <p>Framing of or linking to any of the materials or information available from the Web Site. </p> <p>Violate any other posted policy in regards to the use of this Web Site, regardless as to where the policy is located at on the Web Site.</p> <p>The Company has a right to refuse to post any message or other postings if the Company believes it is in violation of these terms and conditions. The Company also reserves the right to terminate your use of this site if you violate any of these prohibited uses. </p> <h3>User Information. </h3> <p>When you register (for an account or other information) regardless of reason for the Web Site, you will be asked to provide the Company with certain information including, without limitation, a valid email address (your "Information"). In addition to the terms and conditions that may be set forth in any privacy policy on this Web Site, you understand and agree that the Company may disclose to third parties, on an anonymous basis, certain aggregate information contained in your registration application. The Company will not disclose to any third party your name, address, e-mail address or telephone number without your prior consent (and you may opt out of this as well), except to the extent necessary or appropriate to comply with applicable laws or in legal proceedings where such information is relevant. The Company reserves the right to offer third party services and products to you based on the preferences that you identify in your registration and at any time thereafter; such offers may be made by the Company or by third parties. Please see the Companys Privacy Policy for further details regarding your Information. </p> <p>The Company does not sell or rent your personal information to third parties for marketing purposes without your consent and we only use your information as described here and in the Privacy Policy. Your personal information and safeguarding it is very important to the Company. Your information is on computers and is protected by physical as well as technological security devices. If you object to your Information being transferred or used in this way please do not use our services.</p> <h3>User Submissions. </h3> <p>As a user, you are responsible for your own communications and are responsible for the consequences of their posting. You must not, and by using this Web Site you agree not to, do the following things (as mentioned above): post material that is copyrighted, unless you are the copyright owner or have the permission of the copyright owner to post it; post material that reveals trade secrets, unless you own them or have the permission of the owner; post material that infringes on any other intellectual property rights of others or on the privacy or publicity rights of others; post material that is obscene, defamatory, threatening, harassing, abusive, hateful, or embarrassing to another user or any other person or entity; post a sexually-explicit image or statement; post advertisements or solicitations of business, post chain letters or pyramid schemes; impersonate another person; or post material that contains viruses, Trojan horses, worms, time bombs, cancelbots or other computer programming routines or engines that are intended to damage, detrimentally interfere with, surreptitiously intercept or expropriate any system, data or information. </p> <p>It is the responsibility of the User to verify the accuracy of all the information (including personal) posted by that party to the Web Site.</p> <p>The Company does not represent or guarantee the truthfulness, accuracy, or reliability of communications posted by users or endorse any opinions expressed by users. As a user, you will be liable for all damages based on your content. You acknowledge that any reliance on material posted by other users will be at your own risk. </p> <p>The Company does not represent or guarantee the truthfulness, accuracy, or reliability of communications posted by the Company, such as articles and interviews, nor does the Company endorse any opinions expressed in these postings. The Company does not endorse any of the products that are sold on this web site. All postings by the Company and products sold are for informational and convenience purposes only.</p> <p>The Company acts as a passive conduit for the online distribution and publication of user-submitted information, such as company (‘Vendor) and product information, as well as lyrics, and has no obligation to screen communications or information in advance and is not responsible for screening or monitoring material posted by users. If notified by a user of communications which allegedly do not conform to these Terms and Conditions, the Company may investigate the allegation and determine in good faith and its sole discretion whether to remove or request the removal of the communication. The Company has no liability or responsibility to users for performance or nonperformance of such activities. The Company reserves the right to expel users and prevent their further access to the Web Site for violating the Terms and Conditions or the law and the right to remove communications which are false, misleading, abusive, illegal, or disruptive. The Company may take any action with respect to user-submitted information that it deems necessary or appropriate in its sole discretion if it believes it may create liability for the Company or may cause the Company to lose (in whole or in part) the services of its ISPs or other suppliers. </p> <p>By submitting content to any public or non-public area of the Web Site, including regular postings, message boards, forums, contests, photographs and chat rooms, you grant the Company and its affiliates the loyalty-free, perpetual, irrevocable, sublicenseable (through multiple tiers), non-exclusive right (including any moral rights) in your copyright, trademark, publicity and database rights, a license to use, reproduce, modify, adapt, publish, translate, create derivative works from, distribute, communicate to the public, perform and display the content (in whole or in part) worldwide and/or to incorporate it in other works in any form, media, or technology now known or later developed, for the full term of any rights that may exist in such content. You also warrant that the holder of any rights, including moral rights in such content, has completely and effectively waived all such rights and validly and irrevocably granted to you the right to grant the license stated above. You also permit any subscriber to access, display, view, store and reproduce such content for personal use. These rights also include your information in any media now known or not currently known. Subject to the foregoing, the owner of such content placed on the Web Site retains any and all rights that may exist in such content. The owner of any lyrics will remain the owner and retain all rights in those lyrics. This information will only be used in accordance with the Companys privacy policy.</p> <p>Any hyperlinks contained in any postings will be, at the discretion of the Company, disabled for use by others.</p> <h3>Registration. </h3> <p>You are responsible for maintaining the confidentiality of your information. You shall be responsible for all uses of your registration, whether or not authorized by you. You agree to immediately notify the Company of any unauthorized use of your registration. </p> <h3>Copyright Notification in the Event of Possible Infringement.</h3> <p>If you believe that your copyrighted work has been uploaded, posted or copied to this Web Site and is accessible on this Web Site in a way that constitutes copyright infringement, please notify us by providing the Company with the following information: </p> <p>1. The physical or electronic signature of either the copyright owner or of a person authorized to act on the owner's behalf;</p> <p>2. A description of the copyrighted work you claim has been infringed, and a description of the activity that you claim to be infringing;</p> <p>3. Identification of the URL or other specific location on this web site where the material or activity you claim to be infringing is located or is occurring; you must include enough information to allow us to locate the material or the activity;</p> <p>4. Your name, address, telephone number and, if you have one, your e-mail address;</p> <p>5. A statement by you that you have a good faith belief that use on the web site of the copyrighted work in the manner you are complaining of is not authorized by the copyright owner, any agent of the copyright owner, or the law; and </p> <p>6. A statement by you, made under penalty of perjury, that the information you have provided in your notice is accurate and that you are either the copyright owner or are authorized to act on behalf of the copyright owner.</p> <p>SongLyrics.com’s Copyright Agent for notice of claims of copyright infringement on its site is Dan O’Brien, who can be reached using <a href=\"http://www.songlyrics.com/email_us.php\">our contact form</a>.</p> <h3>Termination of Users who Violate the Company's policy on infringement of Copyright or other Intellectual Property rights of Others.</h3> <p>The Company, and all of our affiliated companies respect the intellectual property of others, and we ask our users, account holders and content partners to do the same. The companies use of these lyrics are for educational use only and are not intended to be used for any other reason. The unauthorized reproduction, copying, distribution, modification, public display or public performance of copyrighted works constitutes infringement of the copyright owner's rights. As a condition to your use of this Web Site, you agree not to use the Web Site to infringe the intellectual property rights of others in any way. We will terminate the accounts of any account holders, and block access to our Web Site of any users, who are repeat infringers of the copyrights, or other intellectual property rights, of others. We reserve the right to take these actions at any time, in our sole discretion, with or without notice, and without any liability to the account holder who is terminated or to the user whose access is blocked.</p> <h3>The Company's Liability. </h3> <p>SongLyrics.com.com is only a venue. This Web Site acts as a venue for users (such as Vendors, Customers and other parties) to post information about their company, goods and services, as well as other related information, and does not screen or censor the posting made. The web site is also a venue for the different products, articles and interviews. The Company is not involved in the actual communications between users, unless specifically mentioned otherwise. As a result, the Company has no control over the content of the various postings, Vendor information, product information or users work product. In addition, note that there are risks, including but not limited to the risk of physical harm, of dealing with strangers, foreign nationals, underage persons or people acting under false pretenses. You assume all risks associated with dealing with other users with whom you come in contact through the Web Site. There is no agency agreement of any kind made between any Vendor and the Company.</p> <p>Because user authentication on the Internet is difficult, SongLyrics.com.com cannot and does not confirm that each user is who they claim to be. Because we do not and cannot be involved in user-to-user dealings or control the behavior of participants on SongLyrics.com.com, in the event that you have a dispute with one or more users, you release the Company (and our agents and employees) from claims, demands and damages (actual and consequential, direct and indirect) of every kind and nature, known and unknown, suspected and unsuspected, disclosed and undisclosed, arising out of or in any way connected with such disputes. </p> <p>We are under no legal obligation to, and generally do not, control the information provided by other users, vendors and others, which is made available through the Web Site. By its very nature, other peoples information may be offensive, harmful or inaccurate, and in some cases will be mislabeled or deceptively labeled. We expect that you will use caution and common sense when using this Web Site. </p> <p>The Material may contain inaccuracies or typographical errors. The Company makes no representations about the accuracy, reliability, completeness, or timeliness of the Web Site or the Material. The use of the Web Site and the Material is at your own risk. Changes are periodically made to the Web Site and may be made at any time. </p> <p>You acknowledge and agree that you are solely responsible for the form, content and accuracy of any postings placed by you on the Web Site. Users needing services are also solely responsible for their postings on the Web Site.</p> <p>If a user decides to use the services or goods of any Vendor mentioned in this web site, they do so at their own risk. The Company will not be liable for any products or services offered by any Vendor, or if the user follows the advice of any Vendor. AGAIN, THE COMPANY DOES NOT ENDORSE ANY VENDOR OR OTHER PARTY THAT A USER FOUND ON SONGLYRICS.COM.</p> <p>THE COMPANY DOES NOT WARRANT THAT THE WEB SITE WILL OPERATE ERROR-FREE OR THAT THE WEB SITE AND ITS SERVER ARE FREE OF COMPUTER VIRUSES OR OTHER HARMFUL MECHANISMS. IF YOUR USE OF THE WEB SITE OR THE MATERIAL RESULTS IN THE NEED FOR SERVICING OR REPLACING EQUIPMENT OR DATA, THE COMPANY IS NOT RESPONSIBLE FOR THOSE COSTS. </p> <p>THE WEB SITE AND MATERIAL ARE PROVIDED ON AN "AS IS" BASIS WITHOUT ANY WARRANTIES OF ANY KIND. THE COMPANY, TO THE FULLEST EXTENT PERMITTED BY LAW, DISCLAIMS ALL WARRANTIES, WHETHER EXPRESS OR IMPLIED, INCLUDING THE WARRANTY OF MERCHANTABILITY, FITNESS FOR PARTICULAR PURPOSE AND NON-INFRINGEMENT. THE COMPANY MAKES NO WARRANTIES ABOUT THE ACCURACY, RELIABILITY, COMPLETENESS, OR TIMELINESS OF THE MATERIAL, SERVICES, SOFTWARE, TEXT, GRAPHICS, AND LINKS. </p> <h3>Disclaimer of Consequential Damages. </h3> <p>IN NO EVENT SHALL THE COMPANY, ITS SUPPLIERS, OR ANY THIRD PARTIES MENTIONED ON THE WEB SITE BE LIABLE FOR ANY DAMAGES WHATSOEVER (INCLUDING, WITHOUT LIMITATION, INCIDENTAL AND CONSEQUENTIAL DAMAGES, LOST PROFITS, OR DAMAGES RESULTING FROM LOST DATA OR BUSINESS INTERRUPTION) RESULTING FROM THE USE OR INABILITY TO USE THE WEB SITE AND THE MATERIAL, WHETHER BASED ON WARRANTY, CONTRACT, TORT, OR ANY OTHER LEGAL THEORY, AND WHETHER OR NOT THE COMPANY IS ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.</p> <h3>Contacting Company.</h3> <p>Users may contact the Company, for customer support or service using <a href=\"http://www.songlyrics.com/email_us.php\">our contact form</a>.</p> <h3>Links to Other Sites. </h3> <p>The Web Site contains links to third party web sites. The Company does not endorse any of these sites and is provided to you as a convenience only. The Company is not responsible for the content of linked third-party sites and does not make any representations regarding the content or accuracy of materials on such third party web sites. If you decide to access linked third party Web sites, you do so at your own risk. </p> <p>Many of the Vendors will provide links to their web sites. If you access their web sites, you will need to follow their terms and conditions, privacy policies, and any other agreements found on their web site. The Company is not liable for of the Vendors agreements, nor did the Company have any control of its contents.</p> <h3>No Resale or Unauthorized Commercial Use. </h3> <p>You agree not to resell or assign your rights or obligations under these Terms of Use. You also agree not to make any unauthorized commercial use of the Web Site. </p> <h3>Limitation of Liability. </h3> <p>The aggregate liability for the Company, our subsidiaries, employees and suppliers, to you or any third party in any circumstance for all claims arising from the use of the Web Site is limited to $200. Some states may give you more rights, so please refer to your states laws.</p> <h3>Disputes between Customers and Vendors.</h3> <p>The Web Site is just a venue. In the event of any disputes between a Vendor and Vendors customer, the Company will not intervene on either parties behalf. All disputes, refunds or other events arising between the Vendor and its customers shall be resolved between the Vendor and its customers.</p> <p>For any disputes between you and the Company, you may <a href=\"http://www.songlyrics.com/email_us.php\">contact the Company</a>. The Company will make every effort to resolve your dispute.</p> <h3>Termination. </h3> <p>The Company reserves the right, at its sole discretion, to pursue all of its legal remedies, including but not limited to deletion of your postings from this Web Site and immediate termination of your registration with or ability to access the Web Site and/or any other service provided to you by the Company, upon any breach by you of these Terms and Conditions (or other agreements found in this Web Site) or if the Company is unable to verify or authenticate any information you submit to the Web Site registration with or ability to access the Web Site.</p> <h3>Indemnity. </h3> <p>You agree to defend, indemnify, and hold harmless the Company, its officers, directors, employees and agents, from and against any claims, actions or demands, including without limitation reasonable legal and accounting fees, alleging or resulting from your use of the Material or your breach of the terms of these Terms and Conditions. The Company shall provide notice to you promptly of any such claim, suit, or proceeding and shall assist you, at your expense, in defending any such claim, suit or proceeding. </p> <h3>General Terms. </h3> <p>The Company makes no claims that the Materials may be lawfully viewed or downloaded outside of the United States. Access to the Materials may not be legal by certain persons or in certain countries. If you access the Web Site from outside of the United States, you do so at your own risk and are responsible for compliance with the laws of your jurisdiction. These Terms and Conditions are governed by the internal substantive laws of the State of Illinois in the County of Cook without respect to its conflict of laws principles. Jurisdiction for any claims arising under this agreement shall lie exclusively with the state or federal courts within Cook County, Illinois, and all parties submit to the jurisdiction of the venue of these courts. If any provision of these Terms and Conditions are found to be invalid by any court having competent jurisdiction, the invalidity of such provision shall not affect the validity of the remaining provisions of these Terms and Conditions, which shall remain in full force and effect. No waiver of any term of these Terms and Conditions shall be deemed a further or continuing waiver of such term or any other term. Except as expressly provided in additional terms of use for areas of the Web Site, such as a particular "Legal Notice," or Software License or material on particular Web pages, these Terms and Conditions constitute the entire agreement between you and the Company with respect to the use of the web site. No changes to these Terms and Conditions shall be made except by a revised posting on this page. </p> <h3>Additional Terms of Use. </h3> <p>Certain areas of this web site are subject to additional terms of use. By using such areas, or any part thereof, you agree to be bound by the additional terms of use applicable to such areas. </p> </div>\n", + "\t</div>\n", + "\t\n", + "<div class=\"colthree\">\n", + "\n", + "\t<div class=\"adblock\">\n", + "\n", + "\t\t\n", + "\t\t<!-- ToneMedia_GENERIC_300_ATF -->\n", + "\t\t<script type=\"text/javascript\">\n", + "\t\tcf_page_artist = \"\";\n", + "\t\tcf_page_song = \"\";\n", + "\t\tcf_adunit_id = \"39381381\";\n", + "\t\t</script>\n", + "\t\t\n", + " <script type=\"text/javascript\" src=\"https://srv.clickfuse.com/showads/showad.php\"></script>\n", + "\n", + "\t\t\n", + "\n", + "\t</div>\t\n", + "\n", + "\t<div class=\"box\">\n", + "\t\t<div class=\"listbox\">\n", + "\t\t\t<h3 class=\"listbox-title\">Top Songs by Year</h3>\t\t\t \t\n", + "\t\t\t<a href=\"/news/top-songs/all-time/\" title=\"Top Songs\"><img alt=\"Top Songs\" width=\"298\" height=\"74\" src=\"images/all-time.gif\" /></a>\n", + "\t\t\t\t<ul class=\"tracklist listtop\">\t\t\t\t\n", + "\t\t\t\t<li><a href=\"/news/top-songs/all-time/\">All Time</a></li>\n", + "\t\t\t\t<li><a href=\"/news/top-songs/2011/\">2011</a></li>\n", + "\t\t\t\t<li><a href=\"/news/top-songs/2000/\">2000</a></li>\n", + "\t\t\t\t<li><a href=\"/news/top-songs/1990/\">1990</a></li>\n", + "\t\t\t\t<li><a href=\"/news/top-songs/1980/\">1980</a></li>\n", + "\t\t\t\t<li><a href=\"/news/top-songs/1970/\">1970</a></li>\n", + "\t\t\t\t<li><a href=\"/news/top-songs/1960/\">1960</a></li>\n", + "\t\t\t\t<li><a href=\"/news/top-songs/1950/\">1950</a></li>\t\n", + "\t\t\t</ul>\t\t\t\t\t\n", + "\t\t</div>\n", + "\t</div>\n", + "\t\n", + "</div> <!--end colthree-->\n", + "\n", + "\t<div id=\"ad-absolute-728\">\n", + "\n", + "\t\t\t\n", + "\t\t<!-- ToneMedia_GENERIC_728_ATF -->\n", + "\t\t<script type=\"text/javascript\">\n", + "\t\tcf_page_artist = \"\";\n", + "\t\tcf_page_song = \"\";\n", + "\t\tcf_adunit_id = \"39381380\";\n", + "\t\t</script>\n", + "\t\t\n", + "\t\t<script type=\"text/javascript\" src=\"https://srv.clickfuse.com/showads/showad.php\"></script>\n", + "\t\t\n", + "\t\t\n", + "\t</div>\n", + "\n", + "</div> <!--end wrapper-inner-->\n", + "\n", + "\n", + "</div>\n", + "\n", + "<div class=\"footer\">\n", + "\t<table class=\"footer-inner\">\n", + "\t\t<tbody>\n", + "\n", + "\t\t<tr>\n", + "\n", + "\t\t\t<td width=\"145\" class=\"genres\">\n", + "\t\t\t\t<h3>Genres</h3>\n", + "\t\t\t\t<ul>\n", + "\t\t\t\t\t<li><a href=\"/rock-lyrics.php\" title=\"Rock Lyrics\">Rock</a></li>\n", + "\t\t\t\t\t<li><a href=\"/r-and-b-lyrics.php\" title=\"R&B Lyrics\">R&B</a></li>\n", + "\t\t\t\t\t<li><a href=\"/country-music-lyrics.php\" title=\"Country Lyrics\">Country</a></li>\n", + "\t\t\t\t\t<li><a href=\"/hip-hop-rap-lyrics.php\" title=\"Hip Hop and Rap Lyrics\">Hip Hop/Rap</a></li>\n", + "\t\t\t\t\t<li><a href=\"/pop-lyrics.php\" title=\"Pop Lyrics\">Pop</a></li>\n", + "\t\t\t\t\t<li><a href=\"/christian-lyrics.php\" title=\"Christian Lyrics\">Christian</a></li>\n", + "\t\t\t\t</ul>\n", + "\t\t\t</td>\n", + "\n", + "\t\t\t<td width=\"170\" class=\"top-lyrics\">\n", + "\t\t\t\t<h3>Top Lyrics</h3>\n", + "\t\t\t\t<ul>\n", + "\t\t\t\t\t<li><a href=\"/top-songs-lyrics.html\">Top Songs</a></li>\n", + "\t\t\t\t\t<li><a href=\"/top-artists-lyrics.html\">Top Artists</a></li>\n", + "\t\t\t\t\t<li><a href=\"/top-albums-lyrics.html\">Top Albums</a></li>\n", + "\t\t\t\t\t<li><a href=\"/top-upcoming-songs.html\">Upcoming Songs</a></li>\n", + "\t\t\t\t\t<li><a href=\"/top-upcoming-albums.html\">Upcoming Albums</a></li>\n", + "\t\t\t\t\t<li><a href=\"/top100.php\" title=\"Billboard Hot 100 Songs\">Billboard Hot 100</a></li>\n", + "\t\t\t\t</ul>\n", + "\t\t\t</td>\n", + "\n", + "\t\t\t<td width=\"180\" class=\"songlyrics\">\n", + "\t\t\t\t<h3>SongLyrics</h3>\n", + "\t\t\t\t<ul>\n", + "\t\t\t\t\t<li><a href=\"/news/advertise/\" title=\"Advertise on SongLyrics.com\">Advertise on SL</a></li>\n", + "\t\t\t\t\t<li><a href=\"/news/featured-blogs/\" title=\"Featured Blogs\">Featured Blogs</a></li>\n", + "\t\t\t\t\t<li><a href=\"/news/contact-us/\" title=\"Contact Us\">Contact Us</a></li>\n", + "\t\t\t\t\t<li><a href=\"/news\" title=\"Music News\">Music News</a></li>\n", + "\t\t\t\t\t<li><a href=\"/privacy.php\" title=\"Privacy Policy\">Privacy Policy</a></li>\n", + "\t\t\t\t\t<li><a href=\"/termsconditions.php\" title=\"Terms of Use\">Terms of Use</a></li>\n", + "\t\t\t\t</ul>\n", + "\t\t\t</td>\n", + "\n", + "\t\t\t<td width=\"210\" class=\"td-footer-last\">\n", + "\t\t\t\t<h3>Company</h3>\n", + "\t\t\t\t<ul>\n", + "\t\t\t\t\t<li class=\"ftlast-li\">Copyright © 2024 SongLyrics</li>\n", + "\t\t\t\t\t<li class=\"ftlast-li\">\n", + "\t\t\t\t\t\t<ul>\n", + "\t\t\t\t\t\t\t<li class=\"ft-social\">Follow us:</li>\n", + "\t\t\t\t\t\t\t<li class=\"ft-social\"><a class=\"ft-fb\" href=\"https://www.facebook.com/SongLyrics\" target=\"_blank\" title=\"SongLyrics on Facebook\">Facebook</a></li>\n", + "\t\t\t\t\t\t\t<li class=\"ft-social\"><a class=\"ft-tw\" href=\"https://twitter.com/#!/songlyrics\" target=\"_blank\" title=\"Follow SongLyrics on Twitter\">Twitter</a></li>\n", + "\t\t\t\t\t\t</ul>\n", + "\t\t\t\t\t</li>\n", + "\t\t\t\t\t<li class=\"ftlast-li\">\n", + "\t\t\t\t\t\t<a href=\"/about.php\">About</a>\n", + "\t\t\t\t\t</li>\n", + "\t\t\t\t\t<li class=\"ftlast-li\">\n", + "\t\t\t\t\t\t<a id='unic-gdpr' onclick='__tcfapi(\"openunic\");return false;' style='display:none;cursor:pointer;'>Change Ad Consent</a>\n", + "\t\t\t\t\t\t<a id='unic-ccpa' onclick=\"window.__uspapi('openunic')\" style='display:none;cursor:pointer;'>Do not sell my data</a>\n", + "\t\t\t\t\t</li>\n", + "\t\t\t\t\t<!--<li class=\"ftlast-li\">Created in 0.012762 sec</li>-->\n", + "\t\t\t\t\t<li class=\"ftlast-li\">\n", + "\t\t\t\t\t\t<ul>\n", + "\t\t\t\t\t\t\t<li class=\"ft-logo\"><a class=\"ft-sm\" href=\"https://www.soundmedia.com/\" target=\"_blank\" title=\"Advertise on SongLyrics\">SoundMedia</a></li>\n", + "\t\t\t\t\t\t</ul>\n", + "\t\t\t\t\t</li>\n", + "\t\t\t\t</ul>\n", + "\t\t\t</td>\n", + "\n", + "\t\t</tr>\n", + "\n", + "\t\t</tbody>\n", + "\t</table>\n", + "\n", + "\t<div id=\"footer-bottom\">\n", + "\n", + "\t\t<ul id=\"footer-artists\">\n", + "\t\t\t<li class=\"artist\"><h4>Artists:</h4></li>\n", + "\t\t\t<li><a href=\"/a/\" title=\"A\">A</a></li>\n", + "\t\t\t<li><a href=\"/b/\" title=\"B\">B</a></li>\n", + "\t\t\t<li><a href=\"/c/\" title=\"C\">C</a></li>\n", + "\t\t\t<li><a href=\"/d/\" title=\"D\">D</a></li>\n", + "\t\t\t<li><a href=\"/e/\" title=\"E\">E</a></li>\n", + "\t\t\t<li><a href=\"/f/\" title=\"F\">F</a></li>\n", + "\t\t\t<li><a href=\"/g/\" title=\"G\">G</a></li>\n", + "\t\t\t<li><a href=\"/h/\" title=\"H\">H</a></li>\n", + "\t\t\t<li><a href=\"/i/\" title=\"I\">I</a></li>\n", + "\t\t\t<li><a href=\"/j/\" title=\"J\">J</a></li>\n", + "\t\t\t<li><a href=\"/k/\" title=\"K\">K</a></li>\n", + "\t\t\t<li><a href=\"/l/\" title=\"L\">L</a></li>\n", + "\t\t\t<li><a href=\"/m/\" title=\"M\">M</a></li>\n", + "\t\t\t<li><a href=\"/n/\" title=\"N\">N</a></li>\n", + "\t\t\t<li><a href=\"/o/\" title=\"O\">O</a></li>\n", + "\t\t\t<li><a href=\"/p/\" title=\"P\">P</a></li>\n", + "\t\t\t<li><a href=\"/q/\" title=\"Q\">Q</a></li>\n", + "\t\t\t<li><a href=\"/r/\" title=\"R\">R</a></li>\n", + "\t\t\t<li><a href=\"/s/\" title=\"S\">S</a></li>\n", + "\t\t\t<li><a href=\"/t/\" title=\"T\">T</a></li>\n", + "\t\t\t<li><a href=\"/u/\" title=\"U\">U</a></li>\n", + "\t\t\t<li><a href=\"/v/\" title=\"V\">V</a></li>\n", + "\t\t\t<li><a href=\"/w/\" title=\"W\">W</a></li>\n", + "\t\t\t<li><a href=\"/x/\" title=\"X\">X</a></li>\n", + "\t\t\t<li><a href=\"/y/\" title=\"Y\">Y</a></li>\n", + "\t\t\t<li><a href=\"/z/\" title=\"Z\">Z</a></li>\n", + "\t\t\t<li><a href=\"/0/\" title=\"#\">#</a></li>\n", + "\t\t</ul>\n", + "\n", + "\t</div><!-- end footer-bottom -->\n", + "\n", + "</div><!-- end footer -->\n", + "\t\n", + "\t \n", + "\n", + "\n", + "<script src=\"/js/dropdown.js\" type=\"text/javascript\"></script>\n", + "\n", + "<script type=\"text/javascript\">\n", + "\t$( '#nav li:has(ul)' ).doubleTapToGo(); <!-- DROPDOWN MENU -->\n", + "</script>\n", + "\n", + "</body>\n", + "</html>\n" + ] + } + ], + "source": [ + "html = requests.get(\"http://www.songlyrics.com/termsconditions.php\").text\n", + "soup = BeautifulSoup(html, 'html')\n", + "print(html)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "#### Finding the structure\n", + "Let's see if we can get a hint by looking at the div class (css) names. The 'maintext' class might be a good one." + ] + }, + { + "cell_type": "code", + "execution_count": 14, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "None\n", + "None\n", + "None\n", + "['headinner']\n", + "None\n", + "None\n", + "None\n", + "None\n", + "None\n", + "None\n", + "['headinner']\n", + "None\n", + "['submit-btn']\n", + "['headinner']\n", + "None\n", + "['submit-btn']\n", + "None\n", + "None\n", + "None\n", + "['masthead']\n", + "['wrapper-inner']\n", + "['topnav']\n", + "['pw_widget', 'pw_size_24', 'pw_post_false', 'pw_counter_true']\n", + "None\n", + "['colone-wide']\n", + "['maintext', 'padder']\n", + "['colthree']\n", + "['adblock']\n", + "['box']\n", + "['listbox']\n", + "None\n", + "['footer']\n", + "None\n" + ] + } + ], + "source": [ + "for div in soup.body.find_all('div'):\n", + " print(div.get('class'))" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "#### Getting to the point\n", + "In the maintext class, there are headers ('h1', 'h2', etc...) and paragraphs ('p') that contain the content, and to get them both in the right order, we'll need to be flexible. BeautifulSoup can do this with some regular expressions useing re.compile(). Here a simple one that says \"I'll take anything that has an h or p\". Notice in the \"Use of Material\" section that is says I can download a single copy of the material on the website! Yay, this means I can take one copy?" + ] + }, + { + "cell_type": "code", + "execution_count": 20, + "metadata": { + "scrolled": true + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Terms and Conditions\n", + "\n", + "This page contains the \"Terms and Conditions\" under which you may use www.SongLyrics.com. Please read this page carefully. If you do not accept the Terms and Conditions stated here, do not use this web site and service. By using this web site, you are indicating your acceptance to be bound by the terms of these Terms and Conditions. SongLyrics.com, (the \"Company\") owner of SongLyrics.com.com, may revise these Terms and Conditions at any time by updating this posting. You should visit this page periodically to review the Terms and Conditions, because they are binding on you and may change without notice. The terms \"You\" and \"User\" as used herein refer to all individuals and/or entities accessing this web site for any reason.\n", + "\n", + "Use of Material. \n", + "\n", + "The Company authorizes you to view and download a single copy of the material on SongLyrics.com.com (the \"Web Site\") solely for your personal, noncommercial use. \n", + "\n", + "The contents of this Web Site, such as text, graphics, images, logos, button icons, software and other \"Material\", are protected under United States and foreign copyright, trademark and other laws. All Material is the property of the Company or its content suppliers, vendors and clients. The compilation (meaning the collection, arrangement and assembly) of all content on this Web Site is the exclusive property of the Company and protected by U.S. and international copyright laws. Unauthorized use of the Material may violate copyright, trademark, and other laws. You must retain all copyright, trademark, service mark and other proprietary notices contained in the original Material on any copy you make of the Material. You may not sell or modify the Material or reproduce, display, publicly perform, distribute, or otherwise use the Material in any way for any public or commercial purpose. The use of the Material on any other web site or in a networked computer environment for any purpose is prohibited. Further, the HTML code that is created by the Company while generating its pages is also protected by the Company's copyright.\n", + "\n", + "Fees.\n", + "\n", + "When you join SongLyrics.com.com, you are expected to pay for all products and services, as well as any fees that might be involved, if applicable. The Companys fee policy shall be made available to you on this Web Site and is incorporated by reference. We may change our Fees and Credits Policy and the fees for our services from time to time. Our changes to the policy are effective after we provide you with at least fourteen (14) days' notice of the changes by posting the changes on the Web Site, unless notice is given otherwise. You will have an opportunity to review the fees and accept them before starting using the Companys service. In the event we introduce a new service, the fees for that service are effective at the start of the service. Unless otherwise stated, all fees are quoted in U.S. Dollars. You are responsible for paying all fees associated with using the Companys service and Web Site, as well as all applicable taxes.\n", + "\n", + "Acceptable Site Use. \n", + "\n", + "General Rules: Users may not use the Web Site in order to transmit, distribute, store or destroy material (a) in violation of any applicable law or regulation, (b) in a manner that will infringe the copyright, trademark, trade secret or other intellectual property rights of others or violate the privacy, publicity or other personal rights of others, (c) that is defamatory, obscene, threatening, abusive or hateful, or (d) otherwise prohibited by the Company. \n", + "\n", + "Web Site Security Rules. Users are prohibited from violating or attempting to violate the security of the Web Site, including, without limitation, (a) accessing data not intended for such user or logging into a server or account which the user is not authorized to access, (b) attempting to probe, scan or test the vulnerability of a system or network or to breach security or authentication measures without proper authorization, (c) attempting to interfere with service to any user, host or network, including, without limitation, via means of submitting a virus to the Web Site, overloading, \"flooding\", \"spamming\", \"mailbombing\" or \"crashing\", (d) sending unsolicited e-mail, including promotions and/or advertising of products or services, or (e) forging any TCP/IP packet header or any part of the header information in any e-mail or newsgroup posting. Violations of system or network security may result in civil or criminal liability. The Company will investigate occurrences that may involve such violations and may involve, and cooperate with, law enforcement authorities in prosecuting users who are involved in such violations. \n", + "\n", + "This site is designed for parties who can legally make binding contracts under applicable law. Therefore, minors are not allowed to use this site without permission of their parents or guardians. Minors who can not meet these requirements may not use this Web Site.\n", + "\n", + "You are also expected to follow all laws and regulations that may be associated with any of the activities involved with the use of the Web Site. You are also expected to pay for any state fees or applicable taxes that may be associated with the activities from this Web Site.\n", + "\n", + "Specific Prohibited Uses. \n", + "\n", + "The Web Site may be used only for lawful purposes by individuals wanting to see lyrics from various artists. The Company specifically prohibits any use of the Web Site, and all users agree not to use the Web Site, for any of the following: \n", + "\n", + "Posting any incomplete, false or inaccurate information in the open discussions and chat forum sections (if applicable) or other areas of the Web Site. This includes, but is not limited to, any postings that are sexually implicit, use derogatory statements or offensive language, are implicit or immoral in nature, are harassing or libelous, and any unlawful statement.\n", + "\n", + "Posting any false or inaccurate biographical information when setting up an account or requesting other information from this Web Site. This includes, but is not limited to misrepresenting yourself, your company, and company goods and/or services.\n", + "\n", + "Posting any incomplete, false or inaccurate information in any other part of this Web Site. This includes, but is not limited to posting misleading or false product, service or service request information.\n", + "\n", + "Posting of any corrupted files, viruses and other software damaging activities.\n", + "\n", + "Posting any franchise, pyramid scheme, multi-level marketing, \"club membership\", distributorship or sales representative agency arrangement or other business opportunities which requires an up front or periodic payment, pays commissions only, requires recruitment of other members, sub-distributors or sub-agents, or other commercial venture.\n", + "\n", + "Attempting to gather or solicit other users information for any reason not authorized by the Company.\n", + "\n", + "Deleting or revising any material posted by any other person or entity. This includes, but is not limited to, the infringement of any third partys content or transmission.\n", + "\n", + "Using any device, software or routine to interfere or attempt to interfere with the proper working of this Web Site or any activity being conducted on this site. \n", + "\n", + "Taking any action that imposes an unreasonable or disproportionately large load on this Web Sites infrastructure. \n", + "\n", + "If you have a password allowing access to a non-public area of this Web Site, disclosing to or sharing your password with any third parties or using your password for any unauthorized purpose. \n", + "\n", + "Notwithstanding anything to the contrary contained herein, using or attempting to use any engine, software, tool, agent or other device or mechanism (including without limitation browsers, spiders, robots, avatars or intelligent agents) to navigate or search this Web Site other than the search engine and search agents available from the Company on this Web Site and other than generally available third party web browsers, such as Netscape Navigator and Microsoft Explorer. \n", + "\n", + "Attempting to decipher, decompile, disassemble or reverse engineer any of the software comprising or in any way making up a part of the Web Site. \n", + "\n", + "Aggregating, copying or duplicating in any manner any of the materials or information available from the Web Site. \n", + "\n", + "Framing of or linking to any of the materials or information available from the Web Site. \n", + "\n", + "Violate any other posted policy in regards to the use of this Web Site, regardless as to where the policy is located at on the Web Site.\n", + "\n", + "The Company has a right to refuse to post any message or other postings if the Company believes it is in violation of these terms and conditions. The Company also reserves the right to terminate your use of this site if you violate any of these prohibited uses. \n", + "\n", + "User Information. \n", + "\n", + "When you register (for an account or other information) regardless of reason for the Web Site, you will be asked to provide the Company with certain information including, without limitation, a valid email address (your \"Information\"). In addition to the terms and conditions that may be set forth in any privacy policy on this Web Site, you understand and agree that the Company may disclose to third parties, on an anonymous basis, certain aggregate information contained in your registration application. The Company will not disclose to any third party your name, address, e-mail address or telephone number without your prior consent (and you may opt out of this as well), except to the extent necessary or appropriate to comply with applicable laws or in legal proceedings where such information is relevant. The Company reserves the right to offer third party services and products to you based on the preferences that you identify in your registration and at any time thereafter; such offers may be made by the Company or by third parties. Please see the Companys Privacy Policy for further details regarding your Information. \n", + "\n", + "The Company does not sell or rent your personal information to third parties for marketing purposes without your consent and we only use your information as described here and in the Privacy Policy. Your personal information and safeguarding it is very important to the Company. Your information is on computers and is protected by physical as well as technological security devices. If you object to your Information being transferred or used in this way please do not use our services.\n", + "\n", + "User Submissions. \n", + "\n", + "As a user, you are responsible for your own communications and are responsible for the consequences of their posting. You must not, and by using this Web Site you agree not to, do the following things (as mentioned above): post material that is copyrighted, unless you are the copyright owner or have the permission of the copyright owner to post it; post material that reveals trade secrets, unless you own them or have the permission of the owner; post material that infringes on any other intellectual property rights of others or on the privacy or publicity rights of others; post material that is obscene, defamatory, threatening, harassing, abusive, hateful, or embarrassing to another user or any other person or entity; post a sexually-explicit image or statement; post advertisements or solicitations of business, post chain letters or pyramid schemes; impersonate another person; or post material that contains viruses, Trojan horses, worms, time bombs, cancelbots or other computer programming routines or engines that are intended to damage, detrimentally interfere with, surreptitiously intercept or expropriate any system, data or information. \n", + "\n", + "It is the responsibility of the User to verify the accuracy of all the information (including personal) posted by that party to the Web Site.\n", + "\n", + "The Company does not represent or guarantee the truthfulness, accuracy, or reliability of communications posted by users or endorse any opinions expressed by users. As a user, you will be liable for all damages based on your content. You acknowledge that any reliance on material posted by other users will be at your own risk. \n", + "\n", + "The Company does not represent or guarantee the truthfulness, accuracy, or reliability of communications posted by the Company, such as articles and interviews, nor does the Company endorse any opinions expressed in these postings. The Company does not endorse any of the products that are sold on this web site. All postings by the Company and products sold are for informational and convenience purposes only.\n", + "\n", + "The Company acts as a passive conduit for the online distribution and publication of user-submitted information, such as company (‘Vendor) and product information, as well as lyrics, and has no obligation to screen communications or information in advance and is not responsible for screening or monitoring material posted by users. If notified by a user of communications which allegedly do not conform to these Terms and Conditions, the Company may investigate the allegation and determine in good faith and its sole discretion whether to remove or request the removal of the communication. The Company has no liability or responsibility to users for performance or nonperformance of such activities. The Company reserves the right to expel users and prevent their further access to the Web Site for violating the Terms and Conditions or the law and the right to remove communications which are false, misleading, abusive, illegal, or disruptive. The Company may take any action with respect to user-submitted information that it deems necessary or appropriate in its sole discretion if it believes it may create liability for the Company or may cause the Company to lose (in whole or in part) the services of its ISPs or other suppliers. \n", + "\n", + "By submitting content to any public or non-public area of the Web Site, including regular postings, message boards, forums, contests, photographs and chat rooms, you grant the Company and its affiliates the loyalty-free, perpetual, irrevocable, sublicenseable (through multiple tiers), non-exclusive right (including any moral rights) in your copyright, trademark, publicity and database rights, a license to use, reproduce, modify, adapt, publish, translate, create derivative works from, distribute, communicate to the public, perform and display the content (in whole or in part) worldwide and/or to incorporate it in other works in any form, media, or technology now known or later developed, for the full term of any rights that may exist in such content. You also warrant that the holder of any rights, including moral rights in such content, has completely and effectively waived all such rights and validly and irrevocably granted to you the right to grant the license stated above. You also permit any subscriber to access, display, view, store and reproduce such content for personal use. These rights also include your information in any media now known or not currently known. Subject to the foregoing, the owner of such content placed on the Web Site retains any and all rights that may exist in such content. The owner of any lyrics will remain the owner and retain all rights in those lyrics. This information will only be used in accordance with the Companys privacy policy.\n", + "\n", + "Any hyperlinks contained in any postings will be, at the discretion of the Company, disabled for use by others.\n", + "\n", + "Registration. \n", + "\n", + "You are responsible for maintaining the confidentiality of your information. You shall be responsible for all uses of your registration, whether or not authorized by you. You agree to immediately notify the Company of any unauthorized use of your registration. \n", + "\n", + "Copyright Notification in the Event of Possible Infringement.\n", + "\n", + "If you believe that your copyrighted work has been uploaded, posted or copied to this Web Site and is accessible on this Web Site in a way that constitutes copyright infringement, please notify us by providing the Company with the following information: \n", + "\n", + "1. The physical or electronic signature of either the copyright owner or of a person authorized to act on the owner's behalf;\n", + "\n", + "2. A description of the copyrighted work you claim has been infringed, and a description of the activity that you claim to be infringing;\n", + "\n", + "3. Identification of the URL or other specific location on this web site where the material or activity you claim to be infringing is located or is occurring; you must include enough information to allow us to locate the material or the activity;\n", + "\n", + "4. Your name, address, telephone number and, if you have one, your e-mail address;\n", + "\n", + "5. A statement by you that you have a good faith belief that use on the web site of the copyrighted work in the manner you are complaining of is not authorized by the copyright owner, any agent of the copyright owner, or the law; and \n", + "\n", + "6. A statement by you, made under penalty of perjury, that the information you have provided in your notice is accurate and that you are either the copyright owner or are authorized to act on behalf of the copyright owner.\n", + "\n", + "SongLyrics.com’s Copyright Agent for notice of claims of copyright infringement on its site is Dan O’Brien, who can be reached using our contact form.\n", + "\n", + "Termination of Users who Violate the Company's policy on infringement of Copyright or other Intellectual Property rights of Others.\n", + "\n", + "The Company, and all of our affiliated companies respect the intellectual property of others, and we ask our users, account holders and content partners to do the same. The companies use of these lyrics are for educational use only and are not intended to be used for any other reason. The unauthorized reproduction, copying, distribution, modification, public display or public performance of copyrighted works constitutes infringement of the copyright owner's rights. As a condition to your use of this Web Site, you agree not to use the Web Site to infringe the intellectual property rights of others in any way. We will terminate the accounts of any account holders, and block access to our Web Site of any users, who are repeat infringers of the copyrights, or other intellectual property rights, of others. We reserve the right to take these actions at any time, in our sole discretion, with or without notice, and without any liability to the account holder who is terminated or to the user whose access is blocked.\n", + "\n", + "The Company's Liability. \n", + "\n", + "SongLyrics.com.com is only a venue. This Web Site acts as a venue for users (such as Vendors, Customers and other parties) to post information about their company, goods and services, as well as other related information, and does not screen or censor the posting made. The web site is also a venue for the different products, articles and interviews. The Company is not involved in the actual communications between users, unless specifically mentioned otherwise. As a result, the Company has no control over the content of the various postings, Vendor information, product information or users work product. In addition, note that there are risks, including but not limited to the risk of physical harm, of dealing with strangers, foreign nationals, underage persons or people acting under false pretenses. You assume all risks associated with dealing with other users with whom you come in contact through the Web Site. There is no agency agreement of any kind made between any Vendor and the Company.\n", + "\n", + "Because user authentication on the Internet is difficult, SongLyrics.com.com cannot and does not confirm that each user is who they claim to be. Because we do not and cannot be involved in user-to-user dealings or control the behavior of participants on SongLyrics.com.com, in the event that you have a dispute with one or more users, you release the Company (and our agents and employees) from claims, demands and damages (actual and consequential, direct and indirect) of every kind and nature, known and unknown, suspected and unsuspected, disclosed and undisclosed, arising out of or in any way connected with such disputes. \n", + "\n", + "We are under no legal obligation to, and generally do not, control the information provided by other users, vendors and others, which is made available through the Web Site. By its very nature, other peoples information may be offensive, harmful or inaccurate, and in some cases will be mislabeled or deceptively labeled. We expect that you will use caution and common sense when using this Web Site. \n", + "\n", + "The Material may contain inaccuracies or typographical errors. The Company makes no representations about the accuracy, reliability, completeness, or timeliness of the Web Site or the Material. The use of the Web Site and the Material is at your own risk. Changes are periodically made to the Web Site and may be made at any time. \n", + "\n", + "You acknowledge and agree that you are solely responsible for the form, content and accuracy of any postings placed by you on the Web Site. Users needing services are also solely responsible for their postings on the Web Site.\n", + "\n", + "If a user decides to use the services or goods of any Vendor mentioned in this web site, they do so at their own risk. The Company will not be liable for any products or services offered by any Vendor, or if the user follows the advice of any Vendor. AGAIN, THE COMPANY DOES NOT ENDORSE ANY VENDOR OR OTHER PARTY THAT A USER FOUND ON SONGLYRICS.COM.\n", + "\n", + "THE COMPANY DOES NOT WARRANT THAT THE WEB SITE WILL OPERATE ERROR-FREE OR THAT THE WEB SITE AND ITS SERVER ARE FREE OF COMPUTER VIRUSES OR OTHER HARMFUL MECHANISMS. IF YOUR USE OF THE WEB SITE OR THE MATERIAL RESULTS IN THE NEED FOR SERVICING OR REPLACING EQUIPMENT OR DATA, THE COMPANY IS NOT RESPONSIBLE FOR THOSE COSTS. \n", + "\n", + "THE WEB SITE AND MATERIAL ARE PROVIDED ON AN \"AS IS\" BASIS WITHOUT ANY WARRANTIES OF ANY KIND. THE COMPANY, TO THE FULLEST EXTENT PERMITTED BY LAW, DISCLAIMS ALL WARRANTIES, WHETHER EXPRESS OR IMPLIED, INCLUDING THE WARRANTY OF MERCHANTABILITY, FITNESS FOR PARTICULAR PURPOSE AND NON-INFRINGEMENT. THE COMPANY MAKES NO WARRANTIES ABOUT THE ACCURACY, RELIABILITY, COMPLETENESS, OR TIMELINESS OF THE MATERIAL, SERVICES, SOFTWARE, TEXT, GRAPHICS, AND LINKS. \n", + "\n", + "Disclaimer of Consequential Damages. \n", + "\n", + "IN NO EVENT SHALL THE COMPANY, ITS SUPPLIERS, OR ANY THIRD PARTIES MENTIONED ON THE WEB SITE BE LIABLE FOR ANY DAMAGES WHATSOEVER (INCLUDING, WITHOUT LIMITATION, INCIDENTAL AND CONSEQUENTIAL DAMAGES, LOST PROFITS, OR DAMAGES RESULTING FROM LOST DATA OR BUSINESS INTERRUPTION) RESULTING FROM THE USE OR INABILITY TO USE THE WEB SITE AND THE MATERIAL, WHETHER BASED ON WARRANTY, CONTRACT, TORT, OR ANY OTHER LEGAL THEORY, AND WHETHER OR NOT THE COMPANY IS ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.\n", + "\n", + "Contacting Company.\n", + "\n", + "Users may contact the Company, for customer support or service using our contact form.\n", + "\n", + "Links to Other Sites. \n", + "\n", + "The Web Site contains links to third party web sites. The Company does not endorse any of these sites and is provided to you as a convenience only. The Company is not responsible for the content of linked third-party sites and does not make any representations regarding the content or accuracy of materials on such third party web sites. If you decide to access linked third party Web sites, you do so at your own risk. \n", + "\n", + "Many of the Vendors will provide links to their web sites. If you access their web sites, you will need to follow their terms and conditions, privacy policies, and any other agreements found on their web site. The Company is not liable for of the Vendors agreements, nor did the Company have any control of its contents.\n", + "\n", + "No Resale or Unauthorized Commercial Use. \n", + "\n", + "You agree not to resell or assign your rights or obligations under these Terms of Use. You also agree not to make any unauthorized commercial use of the Web Site. \n", + "\n", + "Limitation of Liability. \n", + "\n", + "The aggregate liability for the Company, our subsidiaries, employees and suppliers, to you or any third party in any circumstance for all claims arising from the use of the Web Site is limited to $200. Some states may give you more rights, so please refer to your states laws.\n", + "\n", + "Disputes between Customers and Vendors.\n", + "\n", + "The Web Site is just a venue. In the event of any disputes between a Vendor and Vendors customer, the Company will not intervene on either parties behalf. All disputes, refunds or other events arising between the Vendor and its customers shall be resolved between the Vendor and its customers.\n", + "\n", + "For any disputes between you and the Company, you may contact the Company. The Company will make every effort to resolve your dispute.\n", + "\n", + "Termination. \n", + "\n", + "The Company reserves the right, at its sole discretion, to pursue all of its legal remedies, including but not limited to deletion of your postings from this Web Site and immediate termination of your registration with or ability to access the Web Site and/or any other service provided to you by the Company, upon any breach by you of these Terms and Conditions (or other agreements found in this Web Site) or if the Company is unable to verify or authenticate any information you submit to the Web Site registration with or ability to access the Web Site.\n", + "\n", + "Indemnity. \n", + "\n", + "You agree to defend, indemnify, and hold harmless the Company, its officers, directors, employees and agents, from and against any claims, actions or demands, including without limitation reasonable legal and accounting fees, alleging or resulting from your use of the Material or your breach of the terms of these Terms and Conditions. The Company shall provide notice to you promptly of any such claim, suit, or proceeding and shall assist you, at your expense, in defending any such claim, suit or proceeding. \n", + "\n", + "General Terms. \n", + "\n", + "The Company makes no claims that the Materials may be lawfully viewed or downloaded outside of the United States. Access to the Materials may not be legal by certain persons or in certain countries. If you access the Web Site from outside of the United States, you do so at your own risk and are responsible for compliance with the laws of your jurisdiction. These Terms and Conditions are governed by the internal substantive laws of the State of Illinois in the County of Cook without respect to its conflict of laws principles. Jurisdiction for any claims arising under this agreement shall lie exclusively with the state or federal courts within Cook County, Illinois, and all parties submit to the jurisdiction of the venue of these courts. If any provision of these Terms and Conditions are found to be invalid by any court having competent jurisdiction, the invalidity of such provision shall not affect the validity of the remaining provisions of these Terms and Conditions, which shall remain in full force and effect. No waiver of any term of these Terms and Conditions shall be deemed a further or continuing waiver of such term or any other term. Except as expressly provided in additional terms of use for areas of the Web Site, such as a particular \"Legal Notice,\" or Software License or material on particular Web pages, these Terms and Conditions constitute the entire agreement between you and the Company with respect to the use of the web site. No changes to these Terms and Conditions shall be made except by a revised posting on this page. \n", + "\n", + "Additional Terms of Use. \n", + "\n", + "Certain areas of this web site are subject to additional terms of use. By using such areas, or any part thereof, you agree to be bound by the additional terms of use applicable to such areas. \n", + "\n" + ] + } + ], + "source": [ + "for div in soup.body.find_all('div'):\n", + " if div.get('class') is not None:\n", + " if div['class'][0] == 'maintext':\n", + " for element in div.find_all(re.compile('h|p')):\n", + " print(element.text)\n", + " print(\"\")" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "#### Looking at the letter 'a'\n", + "SongLyrics stores their song lyrics in a very nice a-z artists index. So, we'll play around with the letter 'a'. Let's look at the html for this. Of course, they don't just present ALL artists, the information is paginated! So, we'll have to jump in to each of the subdirectories for this letter, but first we need to gather these links." + ] + }, + { + "cell_type": "code", + "execution_count": 15, + "metadata": { + "scrolled": true + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"https://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n", + "<html xmlns=\"https://www.w3.org/1999/xhtml\" lang=\"en-US\">\n", + "<head>\n", + "\t<title>A Artist Song Lyrics</title>\n", + "\t<meta http-equiv=\"content-type\" content=\"text/html; charset=utf-8\" />\n", + "\t<meta name=\"description\" content=\"Song lyrics for artists that start with the letter A.\" />\n", + "\t\n", + "\t<meta name=\"msvalidate.01\" content=\"CF28C9C2E5FDBD5C7CA7F6FE394BD121\" />\n", + "\t\t\t<meta name=\"robots\" content=\"noydir, noodp\" />\n", + "\t\t<meta property=\"fb:admins\" content=\"31113169,100000933112467,1383859676\" />\n", + "\t<meta name=\"fb:app_id\" content=\"1418134321780018\" />\n", + "\t<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"> <!-- viewport -->\n", + "\t\n", + "\t<link rel=\"preconnect\" href=\"https://www.songlyrics.com\" />\n", + "\t<link rel=\"dns-prefetch\" href=\"//static.songlyrics.com />\n", + "\t<link rel=\"dns-prefetch\" href=\"//googleads.g.doubleclick.net\" />\n", + "\n", + "\t<link rel=\"icon\" href=\"favicon.ico\" type=\"image/ico\" />\n", + "\t<link href=\"css/global.min.10.css?v=2\" rel=\"stylesheet\" type=\"text/css\" />\n", + "\t\n", + "\t<script src=\"js/jquery.min.js\" type=\"text/javascript\"></script>\n", + "\n", + "\t\n", + "\n", + "\t\n", + "\t\n", + "\n", + "\t<!-- head info -->\n", + "\t\n", + "\t\t\n", + "\n", + "\n", + "\t\t<script type=\"text/javascript\">\n", + "\t\t\t$(function(){\n", + "\t\t\t\t$.superbox();\n", + "\t\t\t});\n", + "\t\t</script>\n", + "\n", + "\t\t<script type=\"text/javascript\">\n", + "\t\t\t//<![CDATA[\n", + "\t\t\t$(document).ready(function() {\n", + "\t\t\t\tfunction addMega(){\n", + "\t\t\t\t\t$(this).addClass(\"hovering\");\n", + "\t\t\t\t\t$($(this).find(\"h2 a\")).addClass(\"hover\");\n", + "\t\t\t\t}\n", + "\t\t\t\tfunction removeMega(){\n", + "\t\t\t\t\t$(this).removeClass(\"hovering\");\n", + "\t\t\t\t\t$($(this).find(\"h2 a\")).removeClass(\"hover\");\n", + "\t\t\t\t}\n", + "\t\t\t\tvar megaConfig = {\n", + "\t\t\t\t\tinterval: 30,\n", + "\t\t\t\t\tsensitivity: 4,\n", + "\t\t\t\t\tover: addMega,\n", + "\t\t\t\t\ttimeout: 30,\n", + "\t\t\t\t\tout: removeMega\n", + "\t\t\t\t};\n", + "\t\t\t\t$(\"li.mega\").hoverIntent(megaConfig)\n", + "\t\t\t});\n", + "\t\t\t//]]>\n", + "\t\t</script>\n", + "\n", + "\t\t<script type=\"text/javascript\">\n", + "\t\t\tvar _gaq = _gaq || [];\n", + "\t\t\t_gaq.push(['_setAccount', 'UA-235369-1']);\n", + "\t\t\t_gaq.push(['_setDomainName', 'songlyrics.com']);\n", + "\t\t\t_gaq.push(['_trackPageview']);\n", + "\t\t\t_gaq.push(['_trackPageLoadTime']);\n", + "\n", + "\t\t\t(function() {\n", + "\t\t\t\tvar ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;\n", + "\t\t\t\tga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'https://www') + '.google-analytics.com/ga.js';\n", + "\t\t\t\tvar s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);\n", + "\t\t\t})();\n", + "\t\t</script>\n", + "\n", + "\t\t<!-- Quantcast Tag, part 1 -->\n", + "\t\t<script type=\"text/javascript\">\n", + "\t\t\tvar _qevents = _qevents || [];\n", + "\n", + "\t\t\t(function() {\n", + "\t\t\t\tvar elem = document.createElement('script');\n", + "\t\t\t\telem.src = (document.location.protocol == \"https:\" ? \"https://secure\" : \"https://edge\") + \".quantserve.com/quant.js\";\n", + "\t\t\t\telem.async = true;\n", + "\t\t\t\telem.type = \"text/javascript\";\n", + "\t\t\t\tvar scpt = document.getElementsByTagName('script')[0];\n", + "\t\t\t\tscpt.parentNode.insertBefore(elem, scpt);\n", + "\t\t\t})();\n", + "\t\t</script>\n", + "\t\t<!-- End Quantcast tag, part 1 -->\n", + "\n", + "\t\n", + "\n", + "\t\n", + "\t\n", + "\t\n", + "\t\t<script src=\"https://cmp.uniconsent.com/v2/stub.min.js\"></script>\n", + "\t\t<script async src='https://cmp.uniconsent.com/v2/4d73da4430/cmp.js'></script>\n", + "\t\t<script type=\"text/javascript\">\n", + "\t\t\twindow.googletag = window.googletag || {};\n", + "\t\t\twindow.googletag.cmd = window.googletag.cmd || [];\n", + "\t\t\twindow.googletag.cmd.push(function () {\n", + "\t\t\t\twindow.googletag.pubads().enableAsyncRendering();\n", + "\t\t\t\twindow.googletag.pubads().disableInitialLoad();\n", + "\t\t\t});\n", + "\t\t\t(adsbygoogle = window.adsbygoogle || []).pauseAdRequests = 1;\n", + "\t\t</script>\n", + "\t\t<script>\n", + "\t\t\t__tcfapi(\"addEventListener\", 2, function(tcData, success) {\n", + "\t\t\t\tif (success && tcData.unicLoad === true) {\n", + "\t\t\t\t\tif(!window._initAds) {\n", + "\t\t\t\t\t\twindow._initAds = true;\n", + "\t\t\t\t\t\tvar script = document.createElement('script');\n", + "\t\t\t\t\t\tscript.async = true;\n", + "\t\t\t\t\t\tscript.src = 'https://dsh7ky7308k4b.cloudfront.net/publishers/songlyricscom.new.min.js';\n", + "\t\t\t\t\t\tdocument.head.appendChild(script);\n", + "\t\t\t\t\t\tvar script = document.createElement('script');\n", + "\t\t\t\t\t\tscript.async = true;\n", + "\t\t\t\t\t\tscript.src = '//srv.tunefindforfans.com/fruits/apricots.js';\n", + "\t\t\t\t\t\tdocument.head.appendChild(script);\n", + "\t\t\t\t\t\tvar script = document.createElement('script');\n", + "\t\t\t\t\t\tscript.async = true;\n", + "\t\t\t\t\t\tscript.src = '//pagead2.googlesyndication.com/pagead/show_ads.js';\n", + "\t\t\t\t\t\tdocument.head.appendChild(script);\n", + "\t\t\t\t\t\tvar script = document.createElement('script');\n", + "\t\t\t\t\t\tscript.defer = true;\n", + "\t\t\t\t\t\tscript.innerHTML =\n", + "\t\t\t\t\t\t\t\t`/* * * CONFIGURATION VARIABLES: EDIT BEFORE PASTING INTO YOUR WEBPAGE * * */\n", + "\t\t\t\t\t\t\t\t\tvar disqus_shortname = 'song-lyrics'; // required: replace example with your forum shortname\n", + "\t\t\t\t\t\t\t\t\tvar disqus_developer = 1; // developer mode is off\n", + "\t\t\t\t\t\t\t\t\tvar disqus_container_id = 'disqus_thread';\n", + "\n", + "\t\t\t\t\t\t\t\t\tvar disqus_config = function () {\n", + "\t\t\t\t\t\t\t\t\tvar config = this; // Access to the config object\n", + "\t\t\t\t\t\t\t\t\t\tconfig.callbacks.preData.push(function() {\n", + "\t\t\t\t\t\t\t\t\t\t\t// clear out the container (its filled for SEO/legacy purposes)\n", + "\t\t\t\t\t\t\t\t\t\t\tdocument.getElementById(disqus_container_id).innerHTML = '';\n", + "\t\t\t\t\t\t\t\t\t\t});\n", + "\n", + "\t\t\t\t\t\t\t\t\t};\n", + "\t\t\t\t\t\t\t\t\t\t/* * * DON'T EDIT BELOW THIS LINE * * */\n", + "\t\t\t\t\t\t\t\t\t(function() {\n", + "\t\t\t\t\t\t\t\t\t\tvar dsq = document.createElement('script'); dsq.type = 'text/javascript'; dsq.async = true;\n", + "\t\t\t\t\t\t\t\t\t\tdsq.src = 'https://' + disqus_shortname + '.disqus.com/embed.js';\n", + "\t\t\t\t\t\t\t\t\t\t(document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(dsq);\n", + "\t\t\t\t\t\t\t\t\t})();`\n", + "\t\t\t\t\t\tdocument.body.appendChild(script);\n", + "\t\t\t\t\t}\n", + "\t\t\t\t}\n", + "\t\t\t});\n", + "\t\t</script>\n", + "\t\t<script>\n", + "\t\t\t(function waitGEO() {\n", + "\t\t\t\tvar readyGEO;\n", + "\t\t\t\tif (window['UnicI'] && window['UnicI'].geo && window['UnicI'].geo !== '-' ) {\n", + "\t\t\t\t\treadyGEO = true;\n", + "\t\t\t\t\tconsole.log(window['UnicI'].geo);\n", + "\t\t\t\t\tif (window['UnicI'].geo === 'EU') {\n", + "\t\t\t\t\t\tif(document.getElementById(\"unic-gdpr\")) {\n", + "\t\t\t\t\t\t\tdocument.getElementById(\"unic-gdpr\").style.display = 'block';\n", + "\t\t\t\t\t\t}\n", + "\t\t\t\t\t}\n", + "\t\t\t\t\tif (window['UnicI'].geo === 'CA') {\n", + "\t\t\t\t\t\tif(document.getElementById(\"unic-ccpa\")) {\n", + "\t\t\t\t\t\t\tdocument.getElementById(\"unic-ccpa\").style.display = 'block';\n", + "\t\t\t\t\t\t}\n", + "\t\t\t\t\t}\n", + "\t\t\t\t}\n", + "\t\t\t\tif (!readyGEO) {\n", + "\t\t\t\t\tsetTimeout(waitGEO, 200);\n", + "\t\t\t\t}\n", + "\t\t\t})();\n", + "\t\t</script>\n", + "\t\n", + "\n", + "</head>\n", + "<body >\n", + "<script>\n", + "\t/* BIT - 1x1 - Songlyrics.com - Video */\n", + "\tcf_page_artist = \"\";\n", + "\tcf_page_song = \"\";\n", + "\tcf_adunit_id = \"100005353\";\n", + "</script>\n", + "<script src=\"//srv.tunefindforfans.com/fruits/apricots.js\"></script>\n", + "<div id='fb-root'></div>\n", + "\n", + "<div id=\"header\">\n", + "\n", + "\t<div id=\"headernav\">\n", + "\t\t<div class=\"headinner\">\n", + "\n", + "\t\t\t<ul class=\"menu floatleft\">\n", + "\t\t\t\t<li class=\"mega\">\n", + "\t\t\t\t\t<h2><a href=\"/\">Lyrics</a></h2>\n", + "\t\t\t\t\t<div>\n", + "\t\t\t\t\t\t<p><a href=\"/top-songs-lyrics.html\">Popular Song Lyrics</a></p>\n", + "\t\t\t\t\t\t<p><a href=\"/top100.php\">Billboard Hot 100</a></p>\n", + "\t\t\t\t\t\t<p><a href=\"/top-upcoming-songs.html\">Upcoming Lyrics</a></p>\n", + "\t\t\t\t\t\t<p><a href=\"/latestAddedSongs\">Recently Added</a></p>\n", + "\t\t\t\t\t\t<p class=\"menu-hr\"></p>\n", + "\t\t\t\t\t\t<p><a href=\"/news/top-songs/2011/\">Top Lyrics of 2011</a></p>\n", + "\t\t\t\t\t\t<p><a href=\"/news/top-songs/2010/\">Top Lyrics of 2010</a></p>\n", + "\t\t\t\t\t\t<p><a href=\"/news/top-songs/2009/\">Top Lyrics of 2009</a></p>\n", + "\t\t\t\t\t\t<p><a href=\"/news/top-songs/all-time/\">More »</a></p>\n", + "\t\t\t\t\t</div>\n", + "\t\t\t\t</li>\n", + "\t\t\t\t<li class=\"mega\">\n", + "\t\t\t\t\t<h2><a href=\"/top-artists-lyrics.html\">Artists</a></h2>\n", + "\t\t\t\t\t<div>\n", + "\t\t\t\t\t\t<p><a href=\"/top-artists-lyrics.html\">Popular Artists</a></p>\n", + "\t\t\t\t\t\t<p><a href=\"/a/\">Artists A-Z</a></p>\n", + "\t\t\t\t\t\t<p class=\"menu-hr\"></p>\n", + "\t\t\t\t\t\t<p><a href=\"/top-albums-lyrics.html\">Popular Albums</a></p>\n", + "\t\t\t\t\t\t<p><a href=\"/top-upcoming-albums.html\">Upcoming Albums</a></p>\n", + "\t\t\t\t\t\t<p class=\"menu-hr\"></p>\n", + "\t\t\t\t\t\t<p><a href=\"/adele-lyrics/\">Adele</a></p>\n", + "\t\t\t\t\t\t<p><a href=\"/rihanna-lyrics/\">Rihanna</a></p>\n", + "\t\t\t\t\t\t<p><a href=\"/katy-perry-lyrics/\">Katy Perry</a></p>\n", + "\t\t\t\t\t\t<p><a href=\"/lady-gaga-lyrics/\">Lady Gaga</a></p>\n", + "\t\t\t\t\t\t<p><a href=\"/lil-wayne-lyrics/\">Lil Wayne</a></p>\n", + "\n", + "\t\t\t\t\t</div>\n", + "\t\t\t\t</li>\n", + "\t\t\t\t<li class=\"mega\">\n", + "\t\t\t\t\t<h2><a href=\"/musicgenres.php\">Genres</a></h2>\n", + "\t\t\t\t\t<div>\n", + "\t\t\t\t\t\t<p><a href=\"/rock-lyrics.php\" title=\"Rock Lyrics\">Rock</a></p>\n", + "\t\t\t\t\t\t<p><a href=\"/r-and-b-lyrics.php\" title=\"R&B Lyrics\">R&B</a></p>\n", + "\t\t\t\t\t\t<p><a href=\"/country-music-lyrics.php\" title=\"Country Lyrics\">Country</a></p>\n", + "\t\t\t\t\t\t<p><a href=\"/hip-hop-rap-lyrics.php\" title=\"Hip Hop and Rap Lyrics\">Hip Hop/Rap</a></p>\n", + "\t\t\t\t\t\t<p><a href=\"/pop-lyrics.php\" title=\"Pop Lyrics\">Pop</a></p>\n", + "\t\t\t\t\t\t<p><a href=\"/christian-lyrics.php\" title=\"Christian Lyrics\">Christian</a></p>\n", + "\t\t\t\t\t\t<p><a href=\"/dance-lyrics.php\" title=\"Dance Lyrics\">Dance</a></p>\n", + "\t\t\t\t\t\t<p><a href=\"/latin-lyrics.php\" title=\"Latin Lyrics\">Latin</a></p>\n", + "\t\t\t\t\t\t<p class=\"menu-hr\"></p>\n", + "\t\t\t\t\t\t<p><a href=\"/musicgenres.php\" title=\"All Genre Charts\">All Genres »</a></p>\n", + "\t\t\t\t\t</div>\n", + "\t\t\t\t</li>\n", + "\n", + "\t\t\t\t<li class=\"mega\">\n", + "\t\t\t\t\t<h2><a href=\"/news/\">News</a></h2>\n", + "\t\t\t\t\t<div>\n", + "\t\t\t\t\t\t<p><a href=\"/news/\">All News</a></p>\n", + "\t\t\t\t\t\t<p><a href=\"/news/category/news-roundup/\">Daily Roundup</a></p>\n", + "\t\t\t\t\t</div>\n", + "\t\t\t\t</li>\n", + "\n", + "\t\t\t\t<li class=\"mega\">\n", + "\t\t\t\t\t<h2><a href=\"/news/album-reviews/\">Reviews</a></h2>\n", + "\t\t\t\t\t<div>\n", + "\t\t\t\t\t\t<p><a href=\"/news/album-reviews/\">Album Reviews</a></p>\n", + "\t\t\t\t\t\t<p><a href=\"/news/category/song-reviews/\">Song Reviews</a></p>\n", + "\t\t\t\t\t</div>\n", + "\t\t\t\t</li>\n", + "\n", + "\t\t\t\t<li class=\"mega\">\n", + "\t\t\t\t\t<h2><a href=\"/news/category/spotlight/\">Spotlight</a></h2>\n", + "\t\t\t\t</li>\n", + "\n", + "\t\t\t</ul>\n", + "\t\t\t\t\t\t\t<p class=\"login-menu\"><a class=\"btn\" href=\"/member-login.php\" rel=\"nofollow\">Sign In</a><a class=\"btn\" rel=\"nofollow\" href=\"/member-register.php\">Register</a></p>\n", + "\t\t\t\t\t\t<ul class=\"menu floatright clearright\">\n", + "\t\t\t\t<li class=\"mega\">\n", + "\t\t\t\t\t<h2><a href=\"https://www.facebook.com/SongLyrics\">Facebook</a></h2>\n", + "\t\t\t\t</li>\n", + "\t\t\t\t<li>\n", + "\t\t\t\t\t<h2><a href=\"/news/advertise/\">Advertise</a></h2>\n", + "\t\t\t\t</li>\n", + "\t\t\t\t<li class=\"lasttab\">\n", + "\t\t\t\t\t<h2><a href=\"/news/submit-lyrics/\">Submit Lyrics</a></h2>\n", + "\t\t\t\t</li>\n", + "\t\t\t</ul>\n", + "\n", + "\n", + "\t\t</div><!-- end headerinner -->\n", + "\t</div><!-- end headernav -->\n", + "\n", + "\n", + "\t<!-- HEADERNAV MOBILE -->\n", + "\n", + "\t<div id=\"headernav-mobile\">\n", + "\t\t<div class=\"headinner\">\n", + "\n", + "\t\t\t<nav id=\"nav\" role=\"navigation\">\n", + "\t\t\t\t<a href=\"#nav\" title=\"Show navigation\">Show navigation\n", + "\t\t\t\t\t<i class=\"line-1 line\"></i>\n", + "\t\t\t\t\t<i class=\"line-2 line\"></i>\n", + "\t\t\t\t\t<i class=\"line-3 line\"></i>\n", + "\t\t\t\t</a>\n", + "\t\t\t\t<a href=\"#\" class=\"hide\" title=\"Hide navigation\">Hide navigation\n", + "\t\t\t\t\t<i class=\"line-1 line\"></i>\n", + "\t\t\t\t\t<i class=\"line-2 line\"></i>\n", + "\t\t\t\t\t<i class=\"line-3 line\"></i>\n", + "\t\t\t\t</a>\n", + "\t\t\t\t<ul>\n", + "\t\t\t\t\t<li><a href=\"/\" aria-haspopup=\"true\">Lyrics</a>\n", + "\t\t\t\t\t\t<ul>\n", + "\t\t\t\t\t\t\t<li><a href=\"/top-songs-lyrics.html\">Popular Song Lyrics</a></li>\n", + "\t\t\t\t\t\t\t<li><a href=\"/top100.php\">Billboard Hot 100</a></li>\n", + "\t\t\t\t\t\t\t<li><a href=\"/top-upcoming-songs.html\">Upcoming Lyrics</a></li>\n", + "\t\t\t\t\t\t\t<li><a href=\"/latestAddedSongs\">Recently Added</a></li>\n", + "\t\t\t\t\t\t\t<li><a href=\"/news/top-songs/2011/\">Top Lyrics of 2011</a></li>\n", + "\t\t\t\t\t\t\t<li><a href=\"/news/top-songs/2010/\">Top Lyrics of 2010</a></li>\n", + "\t\t\t\t\t\t\t<li><a href=\"/news/top-songs/2009/\">Top Lyrics of 2009</a></li>\n", + "\t\t\t\t\t\t\t<li><a href=\"/news/top-songs/all-time/\">More »</a></li>\n", + "\t\t\t\t\t\t</ul>\n", + "\t\t\t\t\t</li>\n", + "\t\t\t\t\t<li><a href=\"/top-artists-lyrics.html\" aria-haspopup=\"true\">Artists</a>\n", + "\t\t\t\t\t\t<ul>\n", + "\t\t\t\t\t\t\t<li><a href=\"/top-artists-lyrics.html\">Popular Artists</a></li>\n", + "\t\t\t\t\t\t\t<li><a href=\"/a/\">Artists A-Z</a></li>\n", + "\t\t\t\t\t\t\t<li><a href=\"/top-albums-lyrics.html\">Popular Albums</a></li>\n", + "\t\t\t\t\t\t\t<li><a href=\"/top-upcoming-albums.html\">Upcoming Albums</a></li>\n", + "\t\t\t\t\t\t\t<li><a href=\"/adele-lyrics/\">Adele</a></li>\n", + "\t\t\t\t\t\t\t<li><a href=\"/rihanna-lyrics/\">Rihanna</a></li>\n", + "\t\t\t\t\t\t\t<li><a href=\"/katy-perry-lyrics/\">Katy Perry</a></li>\n", + "\t\t\t\t\t\t\t<li><a href=\"/lady-gaga-lyrics/\">Lady Gaga</a></li>\n", + "\t\t\t\t\t\t\t<li><a href=\"/lil-wayne-lyrics/\">Lil Wayne</a></li>\n", + "\t\t\t\t\t\t</ul>\n", + "\t\t\t\t\t</li>\n", + "\t\t\t\t\t<li><a href=\"/musicgenres.php\" aria-haspopup=\"true\">Genres</a>\n", + "\t\t\t\t\t\t<ul>\n", + "\t\t\t\t\t\t\t<li><a href=\"/rock-lyrics.php\" title=\"Rock Lyrics\">Rock</a></li>\n", + "\t\t\t\t\t\t\t<li><a href=\"/r-and-b-lyrics.php\" title=\"R&B Lyrics\">R&B</a></li>\n", + "\t\t\t\t\t\t\t<li><a href=\"/country-music-lyrics.php\" title=\"Country Lyrics\">Country</a></li>\n", + "\t\t\t\t\t\t\t<li><a href=\"/hip-hop-rap-lyrics.php\" title=\"Hip Hop and Rap Lyrics\">Hip Hop/Rap</a></li>\n", + "\t\t\t\t\t\t\t<li><a href=\"/pop-lyrics.php\" title=\"Pop Lyrics\">Pop</a></li>\n", + "\t\t\t\t\t\t\t<li><a href=\"/christian-lyrics.php\" title=\"Christian Lyrics\">Christian</a></li>\n", + "\t\t\t\t\t\t\t<li><a href=\"/dance-lyrics.php\" title=\"Dance Lyrics\">Dance</a></li>\n", + "\t\t\t\t\t\t\t<li><a href=\"/latin-lyrics.php\" title=\"Latin Lyrics\">Latin</a></li>\n", + "\t\t\t\t\t\t\t<li><a href=\"/musicgenres.php\" title=\"All Genre Charts\">All Genres »</a></li>\n", + "\t\t\t\t\t\t</ul>\n", + "\t\t\t\t\t</li>\n", + "\t\t\t\t\t<li><a href=\"/news/\" aria-haspopup=\"true\">News</a>\n", + "\t\t\t\t\t\t<ul>\n", + "\t\t\t\t\t\t\t<li><a href=\"/news/\">All News</a></li>\n", + "\t\t\t\t\t\t\t<li><a href=\"/news/category/news-roundup/\">Daily Roundup</a></li>\n", + "\t\t\t\t\t\t</ul>\n", + "\t\t\t\t\t</li>\n", + "\t\t\t\t\t<li><a href=\"/news/album-reviews/\" aria-haspopup=\"true\">Reviews</a>\n", + "\t\t\t\t\t\t<ul>\n", + "\t\t\t\t\t\t\t<li><a href=\"/news/album-reviews/\">Album Reviews</a></li>\n", + "\t\t\t\t\t\t\t<li><a href=\"/news/category/song-reviews/\">Song Reviews</a></li>\n", + "\t\t\t\t\t\t</ul>\n", + "\t\t\t\t\t</li>\n", + "\t\t\t\t\t<li><a href=\"/news/category/spotlight/\" aria-haspopup=\"true\">Spotlight</a></li>\n", + "\t\t\t\t\t<li><a href=\"https://www.facebook.com/SongLyrics\" aria-haspopup=\"true\">Facebook</a>\n", + "\t\t\t\t\t<li><a href=\"/news/advertise/\" aria-haspopup=\"true\">Advertise</a>\n", + "\t\t\t\t\t<li><a href=\"/news/submit-lyrics/\" aria-haspopup=\"true\">Submit Lyrics</a>\n", + "\t\t\t\t\t</li>\n", + "\t\t\t\t\t<div id=\"header_search-mobile\">\n", + "\t\t\t\t\t\t<form name=\"searchForm\" class=\"searchForm\" method=\"get\" action=\"/index.php\">\n", + "\t\t\t\t\t\t\t<input type=\"hidden\" name=\"section\" value=\"search\" />\n", + "\n", + "\t\t\t\t\t\t\t<fieldset>\n", + "\t\t\t\t\t\t\t\t<input type=\"text\" name=\"searchW\" class=\"searchW input\" value=\"Search artists, albums, and songs\" onfocus=\"if(this.value=='Search artists, albums, and songs')(this.value='');\" onblur=\"if(this.value=='')(this.value='Search artists, albums, and songs');\" />\n", + "\t\t\t\t\t\t\t\t<div class=\"submit-btn\"><input type=\"submit\" name=\"submit\" value=\"Search\" class=\"submit-input-wrapped searchSubmit\" /></div>\n", + "\t\t\t\t\t\t\t</fieldset>\n", + "\t\t\t\t\t\t</form>\n", + "\t\t\t\t\t</div>\n", + "\t\t\t\t</ul>\n", + "\t\t\t</nav>\n", + "\t\t</div><!-- end headerinner -->\n", + "\t</div><!-- end headernav mobile -->\n", + "\n", + "\n", + "\t<div class=\"headinner\">\n", + "\n", + "\n", + "\t\t<a id=\"logo\" href=\"/\" title=\"Lyrics\">Song Lyrics</a>\n", + "\n", + "\t\t<div id=\"header_search\">\n", + "\t\t\t<form name=\"searchForm\" class=\"searchForm\" method=\"get\" action=\"/index.php\">\n", + "\t\t\t\t<input type=\"hidden\" name=\"section\" value=\"search\" />\n", + "\n", + "\t\t\t\t<fieldset>\n", + "\t\t\t\t\t<input type=\"text\" name=\"searchW\" class=\"searchW input\" value=\"Search artists, albums, and songs\" onfocus=\"if(this.value=='Search artists, albums, and songs')(this.value='');\" onblur=\"if(this.value=='')(this.value='Search artists, albums, and songs');\" />\n", + "\t\t\t\t\t<div class=\"submit-btn\"><input type=\"submit\" name=\"submit\" value=\"Search\" class=\"submit-input-wrapped searchSubmit\" /></div>\n", + "\t\t\t\t</fieldset>\n", + "\t\t\t</form>\n", + "\t\t</div>\n", + "\n", + "\t</div><!-- end headerinner -->\n", + "</div><!-- end header -->\n", + "\n", + "<div id=\"wrapper\">\n", + "\n", + "\t<div id=\"fbbox\">\n", + "\t\t<div id=\"fbbox-count\">\n", + "\t\t<span id=\"fbbox-total\">\n", + "\t\t55k\n", + "\t\t</span>\n", + "\t\t</div>\n", + "\t\t<a id=\"fbbox-likebutton\" target=\"_blank\" href=\"https://www.facebook.com/SongLyrics\">Like</a>\n", + "\t</div>\n", + "\n", + "\t\n", + "\n", + "<div class=\"masthead\"></div>\n", + "\n", + "<div class=\"wrapper-inner\">\n", + "\t<div class=\"topnav nomargin\">\n", + "\n", + "\t\t<ul class=\"breadcrumb\">\n", + "\t\t\t<li class=\"home\"><a href=\"/\" title=\"Lyrics\"><span>Lyrics</span></a></li>\n", + "\t\t\t<li class=\"current\">Artists - A</li>\n", + "\t\t</ul>\n", + "\n", + "\t\t<ul class=\"social-links\">\n", + "\t\t\t<li class=\"fb\">\n", + "\t\t\t\t<div class=\"pw_widget pw_size_24 pw_post_false pw_counter_true\">\n", + "\t\t\t\t\t<a class=\"pw_facebook\"></a>\n", + "\t\t\t\t\t<a class=\"pw_twitter\"></a>\n", + "\t\t\t\t\t<a class=\"pw_email\"></a>\n", + "\t\t\t\t\t<a class=\"pw_googleplus\"></a>\n", + "\t\t\t\t</div>\n", + "\t\t\t</li>\n", + "\t\t</ul>\n", + "\n", + "\t</div><!-- end topnav -->\n", + "\n", + "\t<!-- PRIMIS PLAYER -->\n", + "\t<div id=\"primisPlayer\"></div>\n", + "\n", + "\t<ul class=\"level1\">\n", + "\t\t<li><a href=\"/top-artists-lyrics.html\" title=\"Popular Artists\">Popular Artists</a></li>\n", + "\t\t\t\t\t<li><a class=\"sel\" href=\"/a/\" title=\"A\">A</a></li>\n", + "\t\t\t\t\t\t<li><a href=\"/b/\" title=\"B\">B</a></li>\n", + "\t\t\t\t\t\t<li><a href=\"/c/\" title=\"C\">C</a></li>\n", + "\t\t\t\t\t\t<li><a href=\"/d/\" title=\"D\">D</a></li>\n", + "\t\t\t\t\t\t<li><a href=\"/e/\" title=\"E\">E</a></li>\n", + "\t\t\t\t\t\t<li><a href=\"/f/\" title=\"F\">F</a></li>\n", + "\t\t\t\t\t\t<li><a href=\"/g/\" title=\"G\">G</a></li>\n", + "\t\t\t\t\t\t<li><a href=\"/h/\" title=\"H\">H</a></li>\n", + "\t\t\t\t\t\t<li><a href=\"/i/\" title=\"I\">I</a></li>\n", + "\t\t\t\t\t\t<li><a href=\"/j/\" title=\"J\">J</a></li>\n", + "\t\t\t\t\t\t<li><a href=\"/k/\" title=\"K\">K</a></li>\n", + "\t\t\t\t\t\t<li><a href=\"/l/\" title=\"L\">L</a></li>\n", + "\t\t\t\t\t\t<li><a href=\"/m/\" title=\"M\">M</a></li>\n", + "\t\t\t\t\t\t<li><a href=\"/n/\" title=\"N\">N</a></li>\n", + "\t\t\t\t\t\t<li><a href=\"/o/\" title=\"O\">O</a></li>\n", + "\t\t\t\t\t\t<li><a href=\"/p/\" title=\"P\">P</a></li>\n", + "\t\t\t\t\t\t<li><a href=\"/q/\" title=\"Q\">Q</a></li>\n", + "\t\t\t\t\t\t<li><a href=\"/r/\" title=\"R\">R</a></li>\n", + "\t\t\t\t\t\t<li><a href=\"/s/\" title=\"S\">S</a></li>\n", + "\t\t\t\t\t\t<li><a href=\"/t/\" title=\"T\">T</a></li>\n", + "\t\t\t\t\t\t<li><a href=\"/u/\" title=\"U\">U</a></li>\n", + "\t\t\t\t\t\t<li><a href=\"/v/\" title=\"V\">V</a></li>\n", + "\t\t\t\t\t\t<li><a href=\"/w/\" title=\"W\">W</a></li>\n", + "\t\t\t\t\t\t<li><a href=\"/x/\" title=\"X\">X</a></li>\n", + "\t\t\t\t\t\t<li><a href=\"/y/\" title=\"Y\">Y</a></li>\n", + "\t\t\t\t\t\t<li><a href=\"/z/\" title=\"Z\">Z</a></li>\n", + "\t\t\t\t\t\t<li><a href=\"/0/\" title=\"#\">#</a></li>\n", + "\t\t\t\t</ul>\n", + "\n", + "\t<div class=\"col-one col-one-leftad\">\n", + "\n", + "\t\t<div class=\"pagetitle-2\">\n", + "\t\t\t<h1>Artists beginning with "A"</h1>\n", + "\t\t</div> <!--end pagetitle-2-->\n", + "\n", + "\n", + "\t\t<ul class=\"pagination\">\n", + "\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class=\"li_pagination active\">1</li>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class=\"li_pagination\"><a href=\"/a/1/\" title=\"Page 2\">2</a>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class=\"li_pagination\"><a href=\"/a/2/\" title=\"Page 3\">3</a>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class=\"li_pagination\"><a href=\"/a/3/\" title=\"Page 4\">4</a>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class=\"li_pagination\"><a href=\"/a/4/\" title=\"Page 5\">5</a>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class=\"li_pagination\"><a href=\"/a/5/\" title=\"Page 6\">6</a>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class=\"li_pagination\"><a href=\"/a/6/\" title=\"Page 7\">7</a>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class=\"li_pagination\"><a href=\"/a/7/\" title=\"Page 8\">8</a>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class=\"li_pagination\"><a href=\"/a/8/\" title=\"Page 9\">9</a>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class=\"li_pagination\"><a href=\"/a/9/\" title=\"Page 10\">10</a>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class=\"li_pagination\"><a href=\"/a/10/\" title=\"Page 11\">11</a>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class=\"li_pagination\"><a href=\"/a/11/\" title=\"Page 12\">12</a>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class=\"li_pagination\"><a href=\"/a/12/\" title=\"Page 13\">13</a>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class=\"li_pagination\"><a href=\"/a/13/\" title=\"Page 14\">14</a>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class=\"li_pagination\"><a href=\"/a/14/\" title=\"Page 15\">15</a>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class=\"li_pagination\"><a href=\"/a/15/\" title=\"Page 16\">16</a>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class=\"li_pagination\"><a href=\"/a/16/\" title=\"Page 17\">17</a>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class=\"li_pagination\"><a href=\"/a/17/\" title=\"Page 18\">18</a>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class=\"li_pagination\"><a href=\"/a/18/\" title=\"Page 19\">19</a>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class=\"li_pagination\"><a href=\"/a/19/\" title=\"Page 20\">20</a>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class=\"li_pagination\"><a href=\"/a/20/\" title=\"Page 21\">21</a>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class=\"li_pagination\"><a href=\"/a/21/\" title=\"Page 22\">22</a>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class=\"li_pagination\"><a href=\"/a/22/\" title=\"Page 23\">23</a>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class=\"li_pagination\"><a href=\"/a/23/\" title=\"Page 24\">24</a>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class=\"li_pagination\"><a href=\"/a/24/\" title=\"Page 25\">25</a>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class=\"li_pagination\"><a href=\"/a/25/\" title=\"Page 26\">26</a>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class=\"li_pagination\"><a href=\"/a/26/\" title=\"Page 27\">27</a>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class=\"li_pagination\"><a href=\"/a/27/\" title=\"Page 28\">28</a>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class=\"li_pagination\"><a href=\"/a/28/\" title=\"Page 29\">29</a>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class=\"li_pagination\"><a href=\"/a/29/\" title=\"Page 30\">30</a>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class=\"li_pagination\"><a href=\"/a/30/\" title=\"Page 31\">31</a>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class=\"li_pagination\"><a href=\"/a/31/\" title=\"Page 32\">32</a>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class=\"li_pagination\"><a href=\"/a/32/\" title=\"Page 33\">33</a>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class=\"li_pagination\"><a href=\"/a/33/\" title=\"Page 34\">34</a>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class=\"li_pagination\"><a href=\"/a/34/\" title=\"Page 35\">35</a>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class=\"li_pagination\"><a href=\"/a/35/\" title=\"Page 36\">36</a>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class=\"li_pagination\"><a href=\"/a/36/\" title=\"Page 37\">37</a>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class=\"li_pagination\"><a href=\"/a/37/\" title=\"Page 38\">38</a>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class=\"li_pagination\"><a href=\"/a/38/\" title=\"Page 39\">39</a>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class=\"li_pagination\"><a href=\"/a/39/\" title=\"Page 40\">40</a>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class=\"li_pagination\"><a href=\"/a/40/\" title=\"Page 41\">41</a>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class=\"li_pagination\"><a href=\"/a/41/\" title=\"Page 42\">42</a>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class=\"li_pagination\"><a href=\"/a/42/\" title=\"Page 43\">43</a>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class=\"li_pagination\"><a href=\"/a/43/\" title=\"Page 44\">44</a>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class=\"li_pagination\"><a href=\"/a/44/\" title=\"Page 45\">45</a>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class=\"li_pagination\"><a href=\"/a/45/\" title=\"Page 46\">46</a>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class=\"li_pagination\"><a href=\"/a/46/\" title=\"Page 47\">47</a>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class=\"li_pagination\"><a href=\"/a/47/\" title=\"Page 48\">48</a>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class=\"li_pagination\"><a href=\"/a/48/\" title=\"Page 49\">49</a>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class=\"li_pagination\"><a href=\"/a/49/\" title=\"Page 50\">50</a>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class=\"li_pagination\"><a href=\"/a/50/\" title=\"Page 51\">51</a>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class=\"li_pagination\"><a href=\"/a/51/\" title=\"Page 52\">52</a>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class=\"li_pagination\"><a href=\"/a/52/\" title=\"Page 53\">53</a>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class=\"li_pagination\"><a href=\"/a/53/\" title=\"Page 54\">54</a>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class=\"li_pagination\"><a href=\"/a/54/\" title=\"Page 55\">55</a>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class=\"li_pagination\"><a href=\"/a/55/\" title=\"Page 56\">56</a>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class=\"li_pagination\"><a href=\"/a/56/\" title=\"Page 57\">57</a>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class=\"li_pagination\"><a href=\"/a/57/\" title=\"Page 58\">58</a>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class=\"li_pagination\"><a href=\"/a/58/\" title=\"Page 59\">59</a>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class=\"li_pagination\"><a href=\"/a/59/\" title=\"Page 60\">60</a>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class=\"li_pagination\"><a href=\"/a/60/\" title=\"Page 61\">61</a>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class=\"li_pagination\"><a href=\"/a/61/\" title=\"Page 62\">62</a>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class=\"li_pagination\"><a href=\"/a/62/\" title=\"Page 63\">63</a>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class=\"li_pagination\"><a href=\"/a/63/\" title=\"Page 64\">64</a>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class=\"li_pagination\"><a href=\"/a/64/\" title=\"Page 65\">65</a>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class=\"li_pagination\"><a href=\"/a/65/\" title=\"Page 66\">66</a>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class=\"li_pagination\"><a href=\"/a/66/\" title=\"Page 67\">67</a>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class=\"li_pagination\"><a href=\"/a/67/\" title=\"Page 68\">68</a>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class=\"li_pagination\"><a href=\"/a/68/\" title=\"Page 69\">69</a>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class=\"li_pagination\"><a href=\"/a/69/\" title=\"Page 70\">70</a>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class=\"li_pagination\"><a href=\"/a/70/\" title=\"Page 71\">71</a>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class=\"li_pagination\"><a href=\"/a/71/\" title=\"Page 72\">72</a>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class=\"li_pagination\"><a href=\"/a/72/\" title=\"Page 73\">73</a>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class=\"li_pagination\"><a href=\"/a/73/\" title=\"Page 74\">74</a>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class=\"li_pagination\"><a href=\"/a/74/\" title=\"Page 75\">75</a>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class=\"li_pagination\"><a href=\"/a/75/\" title=\"Page 76\">76</a>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class=\"li_pagination\"><a href=\"/a/76/\" title=\"Page 77\">77</a>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class=\"li_pagination\"><a href=\"/a/77/\" title=\"Page 78\">78</a>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class=\"li_pagination\"><a href=\"/a/78/\" title=\"Page 79\">79</a>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class=\"li_pagination\"><a href=\"/a/79/\" title=\"Page 80\">80</a>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class=\"li_pagination\"><a href=\"/a/80/\" title=\"Page 81\">81</a>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class=\"li_pagination\"><a href=\"/a/81/\" title=\"Page 82\">82</a>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class=\"li_pagination\"><a href=\"/a/82/\" title=\"Page 83\">83</a>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class=\"li_pagination\"><a href=\"/a/83/\" title=\"Page 84\">84</a>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class=\"li_pagination\"><a href=\"/a/84/\" title=\"Page 85\">85</a>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class=\"li_pagination\"><a href=\"/a/85/\" title=\"Page 86\">86</a>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class=\"li_pagination\"><a href=\"/a/86/\" title=\"Page 87\">87</a>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class=\"li_pagination\"><a href=\"/a/87/\" title=\"Page 88\">88</a>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class=\"li_pagination\"><a href=\"/a/88/\" title=\"Page 89\">89</a>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class=\"li_pagination\"><a href=\"/a/89/\" title=\"Page 90\">90</a>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class=\"li_pagination\"><a href=\"/a/90/\" title=\"Page 91\">91</a>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class=\"li_pagination\"><a href=\"/a/91/\" title=\"Page 92\">92</a>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class=\"li_pagination\"><a href=\"/a/92/\" title=\"Page 93\">93</a>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class=\"li_pagination\"><a href=\"/a/93/\" title=\"Page 94\">94</a>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class=\"li_pagination\"><a href=\"/a/94/\" title=\"Page 95\">95</a>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class=\"li_pagination\"><a href=\"/a/95/\" title=\"Page 96\">96</a>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class=\"li_pagination\"><a href=\"/a/96/\" title=\"Page 97\">97</a>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class=\"li_pagination\"><a href=\"/a/97/\" title=\"Page 98\">98</a>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class=\"li_pagination\"><a href=\"/a/98/\" title=\"Page 99\">99</a>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class=\"li_pagination\"><a href=\"/a/99/\" title=\"Page 100\">100</a>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class=\"li_pagination\"><a href=\"/a/100/\" title=\"Page 101\">101</a>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class=\"li_pagination\"><a href=\"/a/101/\" title=\"Page 102\">102</a>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class=\"li_pagination\"><a href=\"/a/102/\" title=\"Page 103\">103</a>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class=\"li_pagination\"><a href=\"/a/103/\" title=\"Page 104\">104</a>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class=\"li_pagination\"><a href=\"/a/104/\" title=\"Page 105\">105</a>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class=\"li_pagination\"><a href=\"/a/105/\" title=\"Page 106\">106</a>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class=\"li_pagination\"><a href=\"/a/106/\" title=\"Page 107\">107</a>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class=\"li_pagination\"><a href=\"/a/107/\" title=\"Page 108\">108</a>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class=\"li_pagination\"><a href=\"/a/108/\" title=\"Page 109\">109</a>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class=\"li_pagination\"><a href=\"/a/109/\" title=\"Page 110\">110</a>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class=\"li_pagination\"><a href=\"/a/110/\" title=\"Page 111\">111</a>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class=\"li_pagination\"><a href=\"/a/111/\" title=\"Page 112\">112</a>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class=\"li_pagination\"><a href=\"/a/112/\" title=\"Page 113\">113</a>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class=\"li_pagination\"><a href=\"/a/113/\" title=\"Page 114\">114</a>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class=\"li_pagination\"><a href=\"/a/114/\" title=\"Page 115\">115</a>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class=\"li_pagination\"><a href=\"/a/115/\" title=\"Page 116\">116</a>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class=\"li_pagination\"><a href=\"/a/116/\" title=\"Page 117\">117</a>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class=\"li_pagination\"><a href=\"/a/117/\" title=\"Page 118\">118</a>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class=\"li_pagination\"><a href=\"/a/118/\" title=\"Page 119\">119</a>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class=\"li_pagination\"><a href=\"/a/119/\" title=\"Page 120\">120</a>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class=\"li_pagination\"><a href=\"/a/120/\" title=\"Page 121\">121</a>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class=\"li_pagination\"><a href=\"/a/121/\" title=\"Page 122\">122</a>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class=\"li_pagination\"><a href=\"/a/122/\" title=\"Page 123\">123</a>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class=\"li_pagination\"><a href=\"/a/123/\" title=\"Page 124\">124</a>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class=\"li_pagination\"><a href=\"/a/124/\" title=\"Page 125\">125</a>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class=\"li_pagination\"><a href=\"/a/125/\" title=\"Page 126\">126</a>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class=\"li_pagination\"><a href=\"/a/126/\" title=\"Page 127\">127</a>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class=\"li_pagination\"><a href=\"/a/127/\" title=\"Page 128\">128</a>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class=\"li_pagination\"><a href=\"/a/128/\" title=\"Page 129\">129</a>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class=\"li_pagination\"><a href=\"/a/129/\" title=\"Page 130\">130</a>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class=\"li_pagination\"><a href=\"/a/130/\" title=\"Page 131\">131</a>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class=\"li_pagination\"><a href=\"/a/131/\" title=\"Page 132\">132</a>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class=\"li_pagination\"><a href=\"/a/132/\" title=\"Page 133\">133</a>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class=\"li_pagination\"><a href=\"/a/133/\" title=\"Page 134\">134</a>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class=\"li_pagination\"><a href=\"/a/134/\" title=\"Page 135\">135</a>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class=\"li_pagination\"><a href=\"/a/135/\" title=\"Page 136\">136</a>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class=\"li_pagination\"><a href=\"/a/136/\" title=\"Page 137\">137</a>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class=\"li_pagination\"><a href=\"/a/137/\" title=\"Page 138\">138</a>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class=\"li_pagination\"><a href=\"/a/138/\" title=\"Page 139\">139</a>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class=\"li_pagination\"><a href=\"/a/139/\" title=\"Page 140\">140</a>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class=\"li_pagination\"><a href=\"/a/140/\" title=\"Page 141\">141</a>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class=\"li_pagination\"><a href=\"/a/141/\" title=\"Page 142\">142</a>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class=\"li_pagination\"><a href=\"/a/142/\" title=\"Page 143\">143</a>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class=\"li_pagination\"><a href=\"/a/143/\" title=\"Page 144\">144</a>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class=\"li_pagination\"><a href=\"/a/144/\" title=\"Page 145\">145</a>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class=\"li_pagination\"><a href=\"/a/145/\" title=\"Page 146\">146</a>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class=\"li_pagination\"><a href=\"/a/146/\" title=\"Page 147\">147</a>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class=\"li_pagination\"><a href=\"/a/147/\" title=\"Page 148\">148</a>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class=\"li_pagination\"><a href=\"/a/148/\" title=\"Page 149\">149</a>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class=\"li_pagination\"><a href=\"/a/149/\" title=\"Page 150\">150</a>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class=\"li_pagination\"><a href=\"/a/150/\" title=\"Page 151\">151</a>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class=\"li_pagination\"><a href=\"/a/151/\" title=\"Page 152\">152</a>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class=\"li_pagination\"><a href=\"/a/152/\" title=\"Page 153\">153</a>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class=\"li_pagination\"><a href=\"/a/153/\" title=\"Page 154\">154</a>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class=\"li_pagination\"><a href=\"/a/154/\" title=\"Page 155\">155</a>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class=\"li_pagination\"><a href=\"/a/155/\" title=\"Page 156\">156</a>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class=\"li_pagination\"><a href=\"/a/156/\" title=\"Page 157\">157</a>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class=\"li_pagination\"><a href=\"/a/157/\" title=\"Page 158\">158</a>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class=\"li_pagination\"><a href=\"/a/158/\" title=\"Page 159\">159</a>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class=\"li_pagination\"><a href=\"/a/159/\" title=\"Page 160\">160</a>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class=\"li_pagination\"><a href=\"/a/160/\" title=\"Page 161\">161</a>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class=\"li_pagination\"><a href=\"/a/161/\" title=\"Page 162\">162</a>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class=\"li_pagination\"><a href=\"/a/162/\" title=\"Page 163\">163</a>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class=\"li_pagination\"><a href=\"/a/163/\" title=\"Page 164\">164</a>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class=\"li_pagination\"><a href=\"/a/164/\" title=\"Page 165\">165</a>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class=\"li_pagination\"><a href=\"/a/165/\" title=\"Page 166\">166</a>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class=\"li_pagination\"><a href=\"/a/166/\" title=\"Page 167\">167</a>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class=\"li_pagination\"><a href=\"/a/167/\" title=\"Page 168\">168</a>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class=\"li_pagination\"><a href=\"/a/168/\" title=\"Page 169\">169</a>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class=\"li_pagination\"><a href=\"/a/169/\" title=\"Page 170\">170</a>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class=\"li_pagination\"><a href=\"/a/170/\" title=\"Page 171\">171</a>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class=\"li_pagination\"><a href=\"/a/171/\" title=\"Page 172\">172</a>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class=\"li_pagination\"><a href=\"/a/172/\" title=\"Page 173\">173</a>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class=\"li_pagination\"><a href=\"/a/173/\" title=\"Page 174\">174</a>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class=\"li_pagination\"><a href=\"/a/174/\" title=\"Page 175\">175</a>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class=\"li_pagination\"><a href=\"/a/175/\" title=\"Page 176\">176</a>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class=\"li_pagination\"><a href=\"/a/176/\" title=\"Page 177\">177</a>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class=\"li_pagination\"><a href=\"/a/177/\" title=\"Page 178\">178</a>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class=\"li_pagination\"><a href=\"/a/178/\" title=\"Page 179\">179</a>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class=\"li_pagination\"><a href=\"/a/179/\" title=\"Page 180\">180</a>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class=\"li_pagination\"><a href=\"/a/180/\" title=\"Page 181\">181</a>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class=\"li_pagination\"><a href=\"/a/181/\" title=\"Page 182\">182</a>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class=\"li_pagination\"><a href=\"/a/182/\" title=\"Page 183\">183</a>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class=\"li_pagination\"><a href=\"/a/183/\" title=\"Page 184\">184</a>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class=\"li_pagination\"><a href=\"/a/184/\" title=\"Page 185\">185</a>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class=\"li_pagination\"><a href=\"/a/185/\" title=\"Page 186\">186</a>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class=\"li_pagination\"><a href=\"/a/186/\" title=\"Page 187\">187</a>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class=\"li_pagination\"><a href=\"/a/187/\" title=\"Page 188\">188</a>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class=\"li_pagination\"><a href=\"/a/188/\" title=\"Page 189\">189</a>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class=\"li_pagination\"><a href=\"/a/189/\" title=\"Page 190\">190</a>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class=\"li_pagination\"><a href=\"/a/190/\" title=\"Page 191\">191</a>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class=\"li_pagination\"><a href=\"/a/191/\" title=\"Page 192\">192</a>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class=\"li_pagination\"><a href=\"/a/192/\" title=\"Page 193\">193</a>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class=\"li_pagination\"><a href=\"/a/193/\" title=\"Page 194\">194</a>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class=\"li_pagination\"><a href=\"/a/194/\" title=\"Page 195\">195</a>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class=\"li_pagination\"><a href=\"/a/195/\" title=\"Page 196\">196</a>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class=\"li_pagination\"><a href=\"/a/196/\" title=\"Page 197\">197</a>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class=\"li_pagination\"><a href=\"/a/197/\" title=\"Page 198\">198</a>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class=\"li_pagination\"><a href=\"/a/198/\" title=\"Page 199\">199</a>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class=\"li_pagination\"><a href=\"/a/199/\" title=\"Page 200\">200</a>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class=\"li_pagination\"><a href=\"/a/200/\" title=\"Page 201\">201</a>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class=\"li_pagination\"><a href=\"/a/201/\" title=\"Page 202\">202</a>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class=\"li_pagination\"><a href=\"/a/202/\" title=\"Page 203\">203</a>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class=\"li_pagination\"><a href=\"/a/203/\" title=\"Page 204\">204</a>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class=\"li_pagination\"><a href=\"/a/204/\" title=\"Page 205\">205</a>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class=\"li_pagination\"><a href=\"/a/205/\" title=\"Page 206\">206</a>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class=\"li_pagination\"><a href=\"/a/206/\" title=\"Page 207\">207</a>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class=\"li_pagination\"><a href=\"/a/207/\" title=\"Page 208\">208</a>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class=\"li_pagination\"><a href=\"/a/208/\" title=\"Page 209\">209</a>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class=\"li_pagination\"><a href=\"/a/209/\" title=\"Page 210\">210</a>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class=\"li_pagination\"><a href=\"/a/210/\" title=\"Page 211\">211</a>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class=\"li_pagination\"><a href=\"/a/211/\" title=\"Page 212\">212</a>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class=\"li_pagination\"><a href=\"/a/212/\" title=\"Page 213\">213</a>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class=\"li_pagination\"><a href=\"/a/213/\" title=\"Page 214\">214</a>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class=\"li_pagination\"><a href=\"/a/214/\" title=\"Page 215\">215</a>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class=\"li_pagination\"><a href=\"/a/215/\" title=\"Page 216\">216</a>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class=\"li_pagination\"><a href=\"/a/216/\" title=\"Page 217\">217</a>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class=\"li_pagination\"><a href=\"/a/217/\" title=\"Page 218\">218</a>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class=\"li_pagination\"><a href=\"/a/218/\" title=\"Page 219\">219</a>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class=\"li_pagination\"><a href=\"/a/219/\" title=\"Page 220\">220</a>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class=\"li_pagination\"><a href=\"/a/220/\" title=\"Page 221\">221</a>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class=\"li_pagination\"><a href=\"/a/221/\" title=\"Page 222\">222</a>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class=\"li_pagination\"><a href=\"/a/222/\" title=\"Page 223\">223</a>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class=\"li_pagination\"><a href=\"/a/223/\" title=\"Page 224\">224</a>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class=\"li_pagination\"><a href=\"/a/224/\" title=\"Page 225\">225</a>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class=\"li_pagination\"><a href=\"/a/225/\" title=\"Page 226\">226</a>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class=\"li_pagination\"><a href=\"/a/226/\" title=\"Page 227\">227</a>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class=\"li_pagination\"><a href=\"/a/227/\" title=\"Page 228\">228</a>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class=\"li_pagination\"><a href=\"/a/228/\" title=\"Page 229\">229</a>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class=\"li_pagination\"><a href=\"/a/229/\" title=\"Page 230\">230</a>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class=\"li_pagination\"><a href=\"/a/230/\" title=\"Page 231\">231</a>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class=\"li_pagination\"><a href=\"/a/231/\" title=\"Page 232\">232</a>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class=\"li_pagination\"><a href=\"/a/232/\" title=\"Page 233\">233</a>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class=\"li_pagination\"><a href=\"/a/233/\" title=\"Page 234\">234</a>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class=\"li_pagination\"><a href=\"/a/234/\" title=\"Page 235\">235</a>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class=\"li_pagination\"><a href=\"/a/235/\" title=\"Page 236\">236</a>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class=\"li_pagination\"><a href=\"/a/236/\" title=\"Page 237\">237</a>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class=\"li_pagination\"><a href=\"/a/237/\" title=\"Page 238\">238</a>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class=\"li_pagination\"><a href=\"/a/238/\" title=\"Page 239\">239</a>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class=\"li_pagination\"><a href=\"/a/239/\" title=\"Page 240\">240</a>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class=\"li_pagination\"><a href=\"/a/240/\" title=\"Page 241\">241</a>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class=\"li_pagination\"><a href=\"/a/241/\" title=\"Page 242\">242</a>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class=\"li_pagination\"><a href=\"/a/242/\" title=\"Page 243\">243</a>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class=\"li_pagination\"><a href=\"/a/243/\" title=\"Page 244\">244</a>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class=\"li_pagination\"><a href=\"/a/244/\" title=\"Page 245\">245</a>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class=\"li_pagination\"><a href=\"/a/245/\" title=\"Page 246\">246</a>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class=\"li_pagination\"><a href=\"/a/246/\" title=\"Page 247\">247</a>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class=\"li_pagination\"><a href=\"/a/247/\" title=\"Page 248\">248</a>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class=\"li_pagination\"><a href=\"/a/248/\" title=\"Page 249\">249</a>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class=\"li_pagination\"><a href=\"/a/249/\" title=\"Page 250\">250</a>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class=\"li_pagination\"><a href=\"/a/250/\" title=\"Page 251\">251</a>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class=\"li_pagination\"><a href=\"/a/251/\" title=\"Page 252\">252</a>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class=\"li_pagination\"><a href=\"/a/252/\" title=\"Page 253\">253</a>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class=\"li_pagination\"><a href=\"/a/253/\" title=\"Page 254\">254</a>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class=\"li_pagination\"><a href=\"/a/254/\" title=\"Page 255\">255</a>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class=\"li_pagination\"><a href=\"/a/255/\" title=\"Page 256\">256</a>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class=\"li_pagination\"><a href=\"/a/256/\" title=\"Page 257\">257</a>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class=\"li_pagination\"><a href=\"/a/257/\" title=\"Page 258\">258</a>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class=\"li_pagination\"><a href=\"/a/258/\" title=\"Page 259\">259</a>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class=\"li_pagination\"><a href=\"/a/259/\" title=\"Page 260\">260</a>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class=\"li_pagination\"><a href=\"/a/260/\" title=\"Page 261\">261</a>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class=\"li_pagination\"><a href=\"/a/261/\" title=\"Page 262\">262</a>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class=\"li_pagination\"><a href=\"/a/262/\" title=\"Page 263\">263</a>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class=\"li_pagination\"><a href=\"/a/263/\" title=\"Page 264\">264</a>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class=\"li_pagination\"><a href=\"/a/264/\" title=\"Page 265\">265</a>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n", + "\t\t\t\t\n", + "\t\t\t\t\t\t\t\t\t<li class=\"li_pagination\"><a href=\"/a/1/\" title=\"Next Page\">Next</a></li>\n", + "\t\t\t\t\t\t\t\n", + "\t\t</ul>\n", + "\n", + "\t\t<div class=\"clear\"></div>\n", + "\n", + "\n", + "\t\t<div class=\"box listbox\">\n", + "\n", + "\t\t\t<h3 class=\"listbox-title\">Artists beginning with "A"</h3>\n", + "\t\t\t<table class=\"tracklist\">\n", + "\t\t\t\t<tbody start=\"1\">\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<tr >\n", + "\t\t\t\t\t\t\t<td width=\"70%\"><a href=\"https://www.songlyrics.com/a--lyrics/\" title=\"A Lyrics\">A</a></td>\n", + "\t\t\t\t\t\t\t<td class=\"td-item td-last td-borderleft\" width=\"30%\">240 Lyrics & 64 Albums</td>\n", + "\t\t\t\t\t\t</tr>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<tr class=\"even\">\n", + "\t\t\t\t\t\t\t<td width=\"70%\"><a href=\"https://www.songlyrics.com/a-z-lyrics/\" title=\"A & Z Lyrics\">A & Z</a></td>\n", + "\t\t\t\t\t\t\t<td class=\"td-item td-last td-borderleft\" width=\"30%\">1 Lyric & 1 Album</td>\n", + "\t\t\t\t\t\t</tr>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<tr >\n", + "\t\t\t\t\t\t\t<td width=\"70%\"><a href=\"https://www.songlyrics.com/a-z-feat-leolani-lyrics/\" title=\"A & Z feat. Leolani Lyrics\">A & Z feat. Leolani</a></td>\n", + "\t\t\t\t\t\t\t<td class=\"td-item td-last td-borderleft\" width=\"30%\">6 Lyrics & 5 Albums</td>\n", + "\t\t\t\t\t\t</tr>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<tr class=\"even\">\n", + "\t\t\t\t\t\t\t<td width=\"70%\"><a href=\"https://www.songlyrics.com/a-1000-years-lyrics/\" title=\"A 1000 Years Lyrics\">A 1000 Years</a></td>\n", + "\t\t\t\t\t\t\t<td class=\"td-item td-last td-borderleft\" width=\"30%\">1 Lyric & 1 Album</td>\n", + "\t\t\t\t\t\t</tr>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<tr >\n", + "\t\t\t\t\t\t\t<td width=\"70%\"><a href=\"https://www.songlyrics.com/a-ap-ferg-lyrics/\" title=\"A AP Ferg Lyrics\">A AP Ferg</a></td>\n", + "\t\t\t\t\t\t\t<td class=\"td-item td-last td-borderleft\" width=\"30%\">1 Lyric & 1 Album</td>\n", + "\t\t\t\t\t\t</tr>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<tr class=\"even\">\n", + "\t\t\t\t\t\t\t<td width=\"70%\"><a href=\"https://www.songlyrics.com/a-ap-rocky-lyrics/\" title=\"a ap rocky Lyrics\">a ap rocky</a></td>\n", + "\t\t\t\t\t\t\t<td class=\"td-item td-last td-borderleft\" width=\"30%\">1 Lyric & 1 Album</td>\n", + "\t\t\t\t\t\t</tr>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<tr >\n", + "\t\t\t\t\t\t\t<td width=\"70%\"><a href=\"https://www.songlyrics.com/a-b-the-sea-lyrics/\" title=\"A B & The Sea Lyrics\">A B & The Sea</a></td>\n", + "\t\t\t\t\t\t\t<td class=\"td-item td-last td-borderleft\" width=\"30%\">10 Lyrics & 1 Album</td>\n", + "\t\t\t\t\t\t</tr>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<tr class=\"even\">\n", + "\t\t\t\t\t\t\t<td width=\"70%\"><a href=\"https://www.songlyrics.com/a-balladeer-lyrics/\" title=\"A Balladeer Lyrics\">A Balladeer</a></td>\n", + "\t\t\t\t\t\t\t<td class=\"td-item td-last td-borderleft\" width=\"30%\">105 Lyrics & 16 Albums</td>\n", + "\t\t\t\t\t\t</tr>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<tr >\n", + "\t\t\t\t\t\t\t<td width=\"70%\"><a href=\"https://www.songlyrics.com/a-band-called-o-lyrics/\" title=\"A Band Called O Lyrics\">A Band Called O</a></td>\n", + "\t\t\t\t\t\t\t<td class=\"td-item td-last td-borderleft\" width=\"30%\">4 Lyrics & 3 Albums</td>\n", + "\t\t\t\t\t\t</tr>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<tr class=\"even\">\n", + "\t\t\t\t\t\t\t<td width=\"70%\"><a href=\"https://www.songlyrics.com/a-band-called-pain-lyrics/\" title=\"A Band Called Pain Lyrics\">A Band Called Pain</a></td>\n", + "\t\t\t\t\t\t\t<td class=\"td-item td-last td-borderleft\" width=\"30%\">3 Lyrics & 2 Albums</td>\n", + "\t\t\t\t\t\t</tr>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<tr >\n", + "\t\t\t\t\t\t\t<td width=\"70%\"><a href=\"https://www.songlyrics.com/a-band-called-quinn-lyrics/\" title=\"A Band Called Quinn Lyrics\">A Band Called Quinn</a></td>\n", + "\t\t\t\t\t\t\t<td class=\"td-item td-last td-borderleft\" width=\"30%\">1 Lyric & 2 Albums</td>\n", + "\t\t\t\t\t\t</tr>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<tr class=\"even\">\n", + "\t\t\t\t\t\t\t<td width=\"70%\"><a href=\"https://www.songlyrics.com/a-band-of-bees-lyrics/\" title=\"A Band Of Bees Lyrics\">A Band Of Bees</a></td>\n", + "\t\t\t\t\t\t\t<td class=\"td-item td-last td-borderleft\" width=\"30%\">36 Lyrics & 4 Albums</td>\n", + "\t\t\t\t\t\t</tr>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<tr >\n", + "\t\t\t\t\t\t\t<td width=\"70%\"><a href=\"https://www.songlyrics.com/a-band-of-bitches-lyrics/\" title=\"A Band of Bitches Lyrics\">A Band of Bitches</a></td>\n", + "\t\t\t\t\t\t\t<td class=\"td-item td-last td-borderleft\" width=\"30%\">3 Lyrics & 2 Albums</td>\n", + "\t\t\t\t\t\t</tr>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<tr class=\"even\">\n", + "\t\t\t\t\t\t\t<td width=\"70%\"><a href=\"https://www.songlyrics.com/a-band-of-bowsies-u2-the-dubliners-kila-lyrics/\" title=\"A Band Of Bowsies, U2, The Dubliners & Kila Lyrics\">A Band Of Bowsies, U2, The Dubliners & Kila</a></td>\n", + "\t\t\t\t\t\t\t<td class=\"td-item td-last td-borderleft\" width=\"30%\">1 Lyric & 1 Album</td>\n", + "\t\t\t\t\t\t</tr>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<tr >\n", + "\t\t\t\t\t\t\t<td width=\"70%\"><a href=\"https://www.songlyrics.com/a-band-of-buriers-lyrics/\" title=\"A Band Of Buriers Lyrics\">A Band Of Buriers</a></td>\n", + "\t\t\t\t\t\t\t<td class=\"td-item td-last td-borderleft\" width=\"30%\">3 Lyrics & 3 Albums</td>\n", + "\t\t\t\t\t\t</tr>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<tr class=\"even\">\n", + "\t\t\t\t\t\t\t<td width=\"70%\"><a href=\"https://www.songlyrics.com/a-band-of-his-friends-lyrics/\" title=\"A Band of His Friends Lyrics\">A Band of His Friends</a></td>\n", + "\t\t\t\t\t\t\t<td class=\"td-item td-last td-borderleft\" width=\"30%\">14 Lyrics & 2 Albums</td>\n", + "\t\t\t\t\t\t</tr>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<tr >\n", + "\t\t\t\t\t\t\t<td width=\"70%\"><a href=\"https://www.songlyrics.com/a-banquet-lyrics/\" title=\"A Banquet Lyrics\">A Banquet</a></td>\n", + "\t\t\t\t\t\t\t<td class=\"td-item td-last td-borderleft\" width=\"30%\">2 Lyrics & 2 Albums</td>\n", + "\t\t\t\t\t\t</tr>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<tr class=\"even\">\n", + "\t\t\t\t\t\t\t<td width=\"70%\"><a href=\"https://www.songlyrics.com/a-bay-bay-feat-kirko-bangz-kevin-gates-ant-bankz-lyrics/\" title=\"A Bay Bay feat. Kirko Bangz, Kevin Gates & Ant Bankz Lyrics\">A Bay Bay feat. Kirko Bangz, Kevin Gates & Ant Bankz</a></td>\n", + "\t\t\t\t\t\t\t<td class=\"td-item td-last td-borderleft\" width=\"30%\">1 Lyric & 1 Album</td>\n", + "\t\t\t\t\t\t</tr>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<tr >\n", + "\t\t\t\t\t\t\t<td width=\"70%\"><a href=\"https://www.songlyrics.com/a-bazz-lyrics/\" title=\"A Bazz Lyrics\">A Bazz</a></td>\n", + "\t\t\t\t\t\t\t<td class=\"td-item td-last td-borderleft\" width=\"30%\">1 Lyric & 1 Album</td>\n", + "\t\t\t\t\t\t</tr>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<tr class=\"even\">\n", + "\t\t\t\t\t\t\t<td width=\"70%\"><a href=\"https://www.songlyrics.com/a-beacon-school-lyrics/\" title=\"A Beacon School Lyrics\">A Beacon School</a></td>\n", + "\t\t\t\t\t\t\t<td class=\"td-item td-last td-borderleft\" width=\"30%\">4 Lyrics & 2 Albums</td>\n", + "\t\t\t\t\t\t</tr>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<tr >\n", + "\t\t\t\t\t\t\t<td width=\"70%\"><a href=\"https://www.songlyrics.com/a-bear-named-moe-lyrics/\" title=\"A Bear Named Moe Lyrics\">A Bear Named Moe</a></td>\n", + "\t\t\t\t\t\t\t<td class=\"td-item td-last td-borderleft\" width=\"30%\">1 Lyric & 1 Album</td>\n", + "\t\t\t\t\t\t</tr>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<tr class=\"even\">\n", + "\t\t\t\t\t\t\t<td width=\"70%\"><a href=\"https://www.songlyrics.com/a-beast-feat-that-s-classic!-lyrics/\" title=\"A Beast feat. That's Classic! Lyrics\">A Beast feat. That's Classic!</a></td>\n", + "\t\t\t\t\t\t\t<td class=\"td-item td-last td-borderleft\" width=\"30%\">1 Lyric & 1 Album</td>\n", + "\t\t\t\t\t\t</tr>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<tr >\n", + "\t\t\t\t\t\t\t<td width=\"70%\"><a href=\"https://www.songlyrics.com/a-beatband-lyrics/\" title=\"A Beatband Lyrics\">A Beatband</a></td>\n", + "\t\t\t\t\t\t\t<td class=\"td-item td-last td-borderleft\" width=\"30%\">5 Lyrics & 3 Albums</td>\n", + "\t\t\t\t\t\t</tr>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<tr class=\"even\">\n", + "\t\t\t\t\t\t\t<td width=\"70%\"><a href=\"https://www.songlyrics.com/a-beautiful-demise-lyrics/\" title=\"A Beautiful Demise Lyrics\">A Beautiful Demise</a></td>\n", + "\t\t\t\t\t\t\t<td class=\"td-item td-last td-borderleft\" width=\"30%\">2 Lyrics & 1 Album</td>\n", + "\t\t\t\t\t\t</tr>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<tr >\n", + "\t\t\t\t\t\t\t<td width=\"70%\"><a href=\"https://www.songlyrics.com/a-beautiful-end-lyrics/\" title=\"A Beautiful End Lyrics\">A Beautiful End</a></td>\n", + "\t\t\t\t\t\t\t<td class=\"td-item td-last td-borderleft\" width=\"30%\">12 Lyrics & 1 Album</td>\n", + "\t\t\t\t\t\t</tr>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<tr class=\"even\">\n", + "\t\t\t\t\t\t\t<td width=\"70%\"><a href=\"https://www.songlyrics.com/a-beautiful-friend-feat-jennie-abrahamson-lyrics/\" title=\"a Beautiful Friend feat. Jennie Abrahamson Lyrics\">a Beautiful Friend feat. Jennie Abrahamson</a></td>\n", + "\t\t\t\t\t\t\t<td class=\"td-item td-last td-borderleft\" width=\"30%\">3 Lyrics & 2 Albums</td>\n", + "\t\t\t\t\t\t</tr>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<tr >\n", + "\t\t\t\t\t\t\t<td width=\"70%\"><a href=\"https://www.songlyrics.com/a-beautiful-silence-lyrics/\" title=\"A Beautiful Silence Lyrics\">A Beautiful Silence</a></td>\n", + "\t\t\t\t\t\t\t<td class=\"td-item td-last td-borderleft\" width=\"30%\">28 Lyrics & 4 Albums</td>\n", + "\t\t\t\t\t\t</tr>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<tr class=\"even\">\n", + "\t\t\t\t\t\t\t<td width=\"70%\"><a href=\"https://www.songlyrics.com/a-beggars-second-lyrics/\" title=\"A Beggars Second Lyrics\">A Beggars Second</a></td>\n", + "\t\t\t\t\t\t\t<td class=\"td-item td-last td-borderleft\" width=\"30%\">1 Lyric & 1 Album</td>\n", + "\t\t\t\t\t\t</tr>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<tr >\n", + "\t\t\t\t\t\t\t<td width=\"70%\"><a href=\"https://www.songlyrics.com/a-better-hand-lyrics/\" title=\"A Better Hand Lyrics\">A Better Hand</a></td>\n", + "\t\t\t\t\t\t\t<td class=\"td-item td-last td-borderleft\" width=\"30%\">1 Lyric & 1 Album</td>\n", + "\t\t\t\t\t\t</tr>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<tr class=\"even\">\n", + "\t\t\t\t\t\t\t<td width=\"70%\"><a href=\"https://www.songlyrics.com/a-bi-lyrics/\" title=\"A Bi Lyrics\">A Bi</a></td>\n", + "\t\t\t\t\t\t\t<td class=\"td-item td-last td-borderleft\" width=\"30%\">1 Lyric & 0 Albums</td>\n", + "\t\t\t\t\t\t</tr>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<tr >\n", + "\t\t\t\t\t\t\t<td width=\"70%\"><a href=\"https://www.songlyrics.com/a-billion-ernies-lyrics/\" title=\"A Billion Ernies Lyrics\">A Billion Ernies</a></td>\n", + "\t\t\t\t\t\t\t<td class=\"td-item td-last td-borderleft\" width=\"30%\">16 Lyrics & 4 Albums</td>\n", + "\t\t\t\t\t\t</tr>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<tr class=\"even\">\n", + "\t\t\t\t\t\t\t<td width=\"70%\"><a href=\"https://www.songlyrics.com/a-billion-robots-lyrics/\" title=\"A Billion Robots Lyrics\">A Billion Robots</a></td>\n", + "\t\t\t\t\t\t\t<td class=\"td-item td-last td-borderleft\" width=\"30%\">2 Lyrics & 2 Albums</td>\n", + "\t\t\t\t\t\t</tr>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<tr >\n", + "\t\t\t\t\t\t\t<td width=\"70%\"><a href=\"https://www.songlyrics.com/a-billion-robots-feat-marvin-divine-lyrics/\" title=\"A Billion Robots feat. Marvin Divine Lyrics\">A Billion Robots feat. Marvin Divine</a></td>\n", + "\t\t\t\t\t\t\t<td class=\"td-item td-last td-borderleft\" width=\"30%\">1 Lyric & 1 Album</td>\n", + "\t\t\t\t\t\t</tr>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<tr class=\"even\">\n", + "\t\t\t\t\t\t\t<td width=\"70%\"><a href=\"https://www.songlyrics.com/a-billion-robots-feat-mike-l-lyrics/\" title=\"A Billion Robots feat. Mike L Lyrics\">A Billion Robots feat. Mike L</a></td>\n", + "\t\t\t\t\t\t\t<td class=\"td-item td-last td-borderleft\" width=\"30%\">1 Lyric & 1 Album</td>\n", + "\t\t\t\t\t\t</tr>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<tr >\n", + "\t\t\t\t\t\t\t<td width=\"70%\"><a href=\"https://www.songlyrics.com/a-billion-robots-feat-seanbobo-lyrics/\" title=\"A Billion Robots feat. Sean&Bobo Lyrics\">A Billion Robots feat. Sean&Bobo</a></td>\n", + "\t\t\t\t\t\t\t<td class=\"td-item td-last td-borderleft\" width=\"30%\">1 Lyric & 1 Album</td>\n", + "\t\t\t\t\t\t</tr>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<tr class=\"even\">\n", + "\t\t\t\t\t\t\t<td width=\"70%\"><a href=\"https://www.songlyrics.com/a-bird-a-sparrow-lyrics/\" title=\"A Bird A Sparrow Lyrics\">A Bird A Sparrow</a></td>\n", + "\t\t\t\t\t\t\t<td class=\"td-item td-last td-borderleft\" width=\"30%\">13 Lyrics & 5 Albums</td>\n", + "\t\t\t\t\t\t</tr>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<tr >\n", + "\t\t\t\t\t\t\t<td width=\"70%\"><a href=\"https://www.songlyrics.com/a-bird-flew-lyrics/\" title=\"A Bird Flew Lyrics\">A Bird Flew</a></td>\n", + "\t\t\t\t\t\t\t<td class=\"td-item td-last td-borderleft\" width=\"30%\">1 Lyric & 1 Album</td>\n", + "\t\t\t\t\t\t</tr>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<tr class=\"even\">\n", + "\t\t\t\t\t\t\t<td width=\"70%\"><a href=\"https://www.songlyrics.com/a-bit-nigel-lyrics/\" title=\"A Bit Nigel Lyrics\">A Bit Nigel</a></td>\n", + "\t\t\t\t\t\t\t<td class=\"td-item td-last td-borderleft\" width=\"30%\">1 Lyric & 1 Album</td>\n", + "\t\t\t\t\t\t</tr>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<tr >\n", + "\t\t\t\t\t\t\t<td width=\"70%\"><a href=\"https://www.songlyrics.com/a-bit-of-what-you-fancy-lyrics/\" title=\"A Bit Of What You Fancy Lyrics\">A Bit Of What You Fancy</a></td>\n", + "\t\t\t\t\t\t\t<td class=\"td-item td-last td-borderleft\" width=\"30%\">1 Lyric & 1 Album</td>\n", + "\t\t\t\t\t\t</tr>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<tr class=\"even\">\n", + "\t\t\t\t\t\t\t<td width=\"70%\"><a href=\"https://www.songlyrics.com/a-bitter-end-lyrics/\" title=\"A Bitter End. Lyrics\">A Bitter End.</a></td>\n", + "\t\t\t\t\t\t\t<td class=\"td-item td-last td-borderleft\" width=\"30%\">1 Lyric & 1 Album</td>\n", + "\t\t\t\t\t\t</tr>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<tr >\n", + "\t\t\t\t\t\t\t<td width=\"70%\"><a href=\"https://www.songlyrics.com/a-bitter-farewell-lyrics/\" title=\"A Bitter Farewell Lyrics\">A Bitter Farewell</a></td>\n", + "\t\t\t\t\t\t\t<td class=\"td-item td-last td-borderleft\" width=\"30%\">3 Lyrics & 3 Albums</td>\n", + "\t\t\t\t\t\t</tr>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<tr class=\"even\">\n", + "\t\t\t\t\t\t\t<td width=\"70%\"><a href=\"https://www.songlyrics.com/a-black-rose-burial-lyrics/\" title=\"A Black Rose Burial Lyrics\">A Black Rose Burial</a></td>\n", + "\t\t\t\t\t\t\t<td class=\"td-item td-last td-borderleft\" width=\"30%\">6 Lyrics & 2 Albums</td>\n", + "\t\t\t\t\t\t</tr>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<tr >\n", + "\t\t\t\t\t\t\t<td width=\"70%\"><a href=\"https://www.songlyrics.com/a-blaze-of-feather-lyrics/\" title=\"A Blaze of Feather Lyrics\">A Blaze of Feather</a></td>\n", + "\t\t\t\t\t\t\t<td class=\"td-item td-last td-borderleft\" width=\"30%\">13 Lyrics & 5 Albums</td>\n", + "\t\t\t\t\t\t</tr>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<tr class=\"even\">\n", + "\t\t\t\t\t\t\t<td width=\"70%\"><a href=\"https://www.songlyrics.com/a-blinding-silence-lyrics/\" title=\"A Blinding Silence Lyrics\">A Blinding Silence</a></td>\n", + "\t\t\t\t\t\t\t<td class=\"td-item td-last td-borderleft\" width=\"30%\">11 Lyrics & 2 Albums</td>\n", + "\t\t\t\t\t\t</tr>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<tr >\n", + "\t\t\t\t\t\t\t<td width=\"70%\"><a href=\"https://www.songlyrics.com/a-bloody-canvas-lyrics/\" title=\"A Bloody Canvas Lyrics\">A Bloody Canvas</a></td>\n", + "\t\t\t\t\t\t\t<td class=\"td-item td-last td-borderleft\" width=\"30%\">11 Lyrics & 1 Album</td>\n", + "\t\t\t\t\t\t</tr>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<tr class=\"even\">\n", + "\t\t\t\t\t\t\t<td width=\"70%\"><a href=\"https://www.songlyrics.com/a-blue-ocean-dream-lyrics/\" title=\"A Blue Ocean Dream Lyrics\">A Blue Ocean Dream</a></td>\n", + "\t\t\t\t\t\t\t<td class=\"td-item td-last td-borderleft\" width=\"30%\">21 Lyrics & 9 Albums</td>\n", + "\t\t\t\t\t\t</tr>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<tr >\n", + "\t\t\t\t\t\t\t<td width=\"70%\"><a href=\"https://www.songlyrics.com/a-boogie-lyrics/\" title=\"A Boogie Lyrics\">A Boogie</a></td>\n", + "\t\t\t\t\t\t\t<td class=\"td-item td-last td-borderleft\" width=\"30%\">10 Lyrics & 2 Albums</td>\n", + "\t\t\t\t\t\t</tr>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<tr class=\"even\">\n", + "\t\t\t\t\t\t\t<td width=\"70%\"><a href=\"https://www.songlyrics.com/a-boogie-feat-tonio-xo-lyrics/\" title=\"A Boogie feat. Tonio Xo Lyrics\">A Boogie feat. Tonio Xo</a></td>\n", + "\t\t\t\t\t\t\t<td class=\"td-item td-last td-borderleft\" width=\"30%\">1 Lyric & 1 Album</td>\n", + "\t\t\t\t\t\t</tr>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<tr >\n", + "\t\t\t\t\t\t\t<td width=\"70%\"><a href=\"https://www.songlyrics.com/a-boogie-wit-da-hoodie-lyrics/\" title=\"A Boogie wit da Hoodie Lyrics\">A Boogie wit da Hoodie</a></td>\n", + "\t\t\t\t\t\t\t<td class=\"td-item td-last td-borderleft\" width=\"30%\">63 Lyrics & 20 Albums</td>\n", + "\t\t\t\t\t\t</tr>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<tr class=\"even\">\n", + "\t\t\t\t\t\t\t<td width=\"70%\"><a href=\"https://www.songlyrics.com/a-boogie-wit-da-hoodie-don-q-lyrics/\" title=\"A Boogie Wit da Hoodie & Don Q Lyrics\">A Boogie Wit da Hoodie & Don Q</a></td>\n", + "\t\t\t\t\t\t\t<td class=\"td-item td-last td-borderleft\" width=\"30%\">1 Lyric & 1 Album</td>\n", + "\t\t\t\t\t\t</tr>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<tr >\n", + "\t\t\t\t\t\t\t<td width=\"70%\"><a href=\"https://www.songlyrics.com/a-boogie-wit-da-hoodie-feat-21-savage-lyrics/\" title=\"A Boogie Wit da Hoodie feat. 21 Savage Lyrics\">A Boogie Wit da Hoodie feat. 21 Savage</a></td>\n", + "\t\t\t\t\t\t\t<td class=\"td-item td-last td-borderleft\" width=\"30%\">1 Lyric & 1 Album</td>\n", + "\t\t\t\t\t\t</tr>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<tr class=\"even\">\n", + "\t\t\t\t\t\t\t<td width=\"70%\"><a href=\"https://www.songlyrics.com/a-boogie-wit-da-hoodie-feat-alkaline-lyrics/\" title=\"A Boogie Wit da Hoodie feat. Alkaline Lyrics\">A Boogie Wit da Hoodie feat. Alkaline</a></td>\n", + "\t\t\t\t\t\t\t<td class=\"td-item td-last td-borderleft\" width=\"30%\">5 Lyrics & 3 Albums</td>\n", + "\t\t\t\t\t\t</tr>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<tr >\n", + "\t\t\t\t\t\t\t<td width=\"70%\"><a href=\"https://www.songlyrics.com/a-boogie-wit-da-hoodie-feat-chris-brown-lyrics/\" title=\"A Boogie Wit da Hoodie feat. Chris Brown Lyrics\">A Boogie Wit da Hoodie feat. Chris Brown</a></td>\n", + "\t\t\t\t\t\t\t<td class=\"td-item td-last td-borderleft\" width=\"30%\">2 Lyrics & 1 Album</td>\n", + "\t\t\t\t\t\t</tr>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<tr class=\"even\">\n", + "\t\t\t\t\t\t\t<td width=\"70%\"><a href=\"https://www.songlyrics.com/a-boogie-wit-da-hoodie-feat-davido-lyrics/\" title=\"A Boogie Wit da Hoodie feat. DaVido Lyrics\">A Boogie Wit da Hoodie feat. DaVido</a></td>\n", + "\t\t\t\t\t\t\t<td class=\"td-item td-last td-borderleft\" width=\"30%\">6 Lyrics & 4 Albums</td>\n", + "\t\t\t\t\t\t</tr>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<tr >\n", + "\t\t\t\t\t\t\t<td width=\"70%\"><a href=\"https://www.songlyrics.com/a-boogie-wit-da-hoodie-feat-dj-spinking-lyrics/\" title=\"A Boogie Wit da Hoodie feat. DJ SPINKING Lyrics\">A Boogie Wit da Hoodie feat. DJ SPINKING</a></td>\n", + "\t\t\t\t\t\t\t<td class=\"td-item td-last td-borderleft\" width=\"30%\">1 Lyric & 1 Album</td>\n", + "\t\t\t\t\t\t</tr>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<tr class=\"even\">\n", + "\t\t\t\t\t\t\t<td width=\"70%\"><a href=\"https://www.songlyrics.com/a-boogie-wit-da-hoodie-feat-don-q-lyrics/\" title=\"A Boogie Wit da Hoodie feat. Don Q Lyrics\">A Boogie Wit da Hoodie feat. Don Q</a></td>\n", + "\t\t\t\t\t\t\t<td class=\"td-item td-last td-borderleft\" width=\"30%\">4 Lyrics & 2 Albums</td>\n", + "\t\t\t\t\t\t</tr>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<tr >\n", + "\t\t\t\t\t\t\t<td width=\"70%\"><a href=\"https://www.songlyrics.com/a-boogie-wit-da-hoodie-feat-j-alvarez-lyrics/\" title=\"A Boogie Wit da Hoodie feat. J Alvarez Lyrics\">A Boogie Wit da Hoodie feat. J Alvarez</a></td>\n", + "\t\t\t\t\t\t\t<td class=\"td-item td-last td-borderleft\" width=\"30%\">2 Lyrics & 1 Album</td>\n", + "\t\t\t\t\t\t</tr>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<tr class=\"even\">\n", + "\t\t\t\t\t\t\t<td width=\"70%\"><a href=\"https://www.songlyrics.com/a-boogie-wit-da-hoodie-feat-jessie-reyez-lyrics/\" title=\"A Boogie Wit da Hoodie feat. Jessie Reyez Lyrics\">A Boogie Wit da Hoodie feat. Jessie Reyez</a></td>\n", + "\t\t\t\t\t\t\t<td class=\"td-item td-last td-borderleft\" width=\"30%\">2 Lyrics & 1 Album</td>\n", + "\t\t\t\t\t\t</tr>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<tr >\n", + "\t\t\t\t\t\t\t<td width=\"70%\"><a href=\"https://www.songlyrics.com/a-boogie-wit-da-hoodie-feat-kap-g-lyrics/\" title=\"A Boogie Wit da Hoodie feat. Kap G Lyrics\">A Boogie Wit da Hoodie feat. Kap G</a></td>\n", + "\t\t\t\t\t\t\t<td class=\"td-item td-last td-borderleft\" width=\"30%\">2 Lyrics & 1 Album</td>\n", + "\t\t\t\t\t\t</tr>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<tr class=\"even\">\n", + "\t\t\t\t\t\t\t<td width=\"70%\"><a href=\"https://www.songlyrics.com/a-boogie-wit-da-hoodie-feat-kodak-black-lyrics/\" title=\"A Boogie Wit da Hoodie feat. Kodak Black Lyrics\">A Boogie Wit da Hoodie feat. Kodak Black</a></td>\n", + "\t\t\t\t\t\t\t<td class=\"td-item td-last td-borderleft\" width=\"30%\">6 Lyrics & 3 Albums</td>\n", + "\t\t\t\t\t\t</tr>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<tr >\n", + "\t\t\t\t\t\t\t<td width=\"70%\"><a href=\"https://www.songlyrics.com/a-boogie-wit-da-hoodie-feat-kojo-funds-raye-lyrics/\" title=\"A Boogie Wit da Hoodie feat. Kojo Funds & RAYE Lyrics\">A Boogie Wit da Hoodie feat. Kojo Funds & RAYE</a></td>\n", + "\t\t\t\t\t\t\t<td class=\"td-item td-last td-borderleft\" width=\"30%\">2 Lyrics & 1 Album</td>\n", + "\t\t\t\t\t\t</tr>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<tr class=\"even\">\n", + "\t\t\t\t\t\t\t<td width=\"70%\"><a href=\"https://www.songlyrics.com/a-boogie-wit-da-hoodie-feat-lil-bibby-lyrics/\" title=\"A Boogie Wit da Hoodie feat. Lil Bibby Lyrics\">A Boogie Wit da Hoodie feat. Lil Bibby</a></td>\n", + "\t\t\t\t\t\t\t<td class=\"td-item td-last td-borderleft\" width=\"30%\">2 Lyrics & 2 Albums</td>\n", + "\t\t\t\t\t\t</tr>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<tr >\n", + "\t\t\t\t\t\t\t<td width=\"70%\"><a href=\"https://www.songlyrics.com/a-boogie-wit-da-hoodie-feat-nav-lyrics/\" title=\"A Boogie Wit da Hoodie feat. NAV Lyrics\">A Boogie Wit da Hoodie feat. NAV</a></td>\n", + "\t\t\t\t\t\t\t<td class=\"td-item td-last td-borderleft\" width=\"30%\">2 Lyrics & 1 Album</td>\n", + "\t\t\t\t\t\t</tr>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<tr class=\"even\">\n", + "\t\t\t\t\t\t\t<td width=\"70%\"><a href=\"https://www.songlyrics.com/a-boogie-wit-da-hoodie-feat-pnb-rock-youngboy-never-broke-again-lyrics/\" title=\"A Boogie Wit da Hoodie feat. PnB Rock & YoungBoy Never Broke Again Lyrics\">A Boogie Wit da Hoodie feat. PnB Rock & YoungBoy Never Broke Again</a></td>\n", + "\t\t\t\t\t\t\t<td class=\"td-item td-last td-borderleft\" width=\"30%\">5 Lyrics & 3 Albums</td>\n", + "\t\t\t\t\t\t</tr>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<tr >\n", + "\t\t\t\t\t\t\t<td width=\"70%\"><a href=\"https://www.songlyrics.com/a-boogie-wit-da-hoodie-feat-tory-lanez-lyrics/\" title=\"A Boogie Wit da Hoodie feat. Tory Lanez Lyrics\">A Boogie Wit da Hoodie feat. Tory Lanez</a></td>\n", + "\t\t\t\t\t\t\t<td class=\"td-item td-last td-borderleft\" width=\"30%\">4 Lyrics & 3 Albums</td>\n", + "\t\t\t\t\t\t</tr>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<tr class=\"even\">\n", + "\t\t\t\t\t\t\t<td width=\"70%\"><a href=\"https://www.songlyrics.com/a-boogie-wit-da-hoodie-feat-trey-songz-lyrics/\" title=\"A Boogie wit da Hoodie feat. Trey Songz Lyrics\">A Boogie wit da Hoodie feat. Trey Songz</a></td>\n", + "\t\t\t\t\t\t\t<td class=\"td-item td-last td-borderleft\" width=\"30%\">1 Lyric & 1 Album</td>\n", + "\t\t\t\t\t\t</tr>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<tr >\n", + "\t\t\t\t\t\t\t<td width=\"70%\"><a href=\"https://www.songlyrics.com/a-boogie-wit-da-hoodie-feat-trey-songz-robin-thicke-lyrics/\" title=\"A Boogie Wit da Hoodie feat. Trey Songz & Robin Thicke Lyrics\">A Boogie Wit da Hoodie feat. Trey Songz & Robin Thicke</a></td>\n", + "\t\t\t\t\t\t\t<td class=\"td-item td-last td-borderleft\" width=\"30%\">1 Lyric & 1 Album</td>\n", + "\t\t\t\t\t\t</tr>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<tr class=\"even\">\n", + "\t\t\t\t\t\t\t<td width=\"70%\"><a href=\"https://www.songlyrics.com/a-boy-and-his-kite-lyrics/\" title=\"A Boy and His Kite Lyrics\">A Boy and His Kite</a></td>\n", + "\t\t\t\t\t\t\t<td class=\"td-item td-last td-borderleft\" width=\"30%\">14 Lyrics & 5 Albums</td>\n", + "\t\t\t\t\t\t</tr>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<tr >\n", + "\t\t\t\t\t\t\t<td width=\"70%\"><a href=\"https://www.songlyrics.com/a-boy-and-his-sid-lyrics/\" title=\"A Boy and His SID Lyrics\">A Boy and His SID</a></td>\n", + "\t\t\t\t\t\t\t<td class=\"td-item td-last td-borderleft\" width=\"30%\">1 Lyric & 1 Album</td>\n", + "\t\t\t\t\t\t</tr>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<tr class=\"even\">\n", + "\t\t\t\t\t\t\t<td width=\"70%\"><a href=\"https://www.songlyrics.com/a-boy-and-the-anything-muppets-lyrics/\" title=\"A Boy and The Anything Muppets Lyrics\">A Boy and The Anything Muppets</a></td>\n", + "\t\t\t\t\t\t\t<td class=\"td-item td-last td-borderleft\" width=\"30%\">1 Lyric & 2 Albums</td>\n", + "\t\t\t\t\t\t</tr>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<tr >\n", + "\t\t\t\t\t\t\t<td width=\"70%\"><a href=\"https://www.songlyrics.com/a-boy-named-john-lyrics/\" title=\"A Boy Named John Lyrics\">A Boy Named John</a></td>\n", + "\t\t\t\t\t\t\t<td class=\"td-item td-last td-borderleft\" width=\"30%\">10 Lyrics & 5 Albums</td>\n", + "\t\t\t\t\t\t</tr>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<tr class=\"even\">\n", + "\t\t\t\t\t\t\t<td width=\"70%\"><a href=\"https://www.songlyrics.com/a-boy-s-song-lyrics/\" title=\"A BOY'S SONG Lyrics\">A BOY'S SONG</a></td>\n", + "\t\t\t\t\t\t\t<td class=\"td-item td-last td-borderleft\" width=\"30%\">1 Lyric & 1 Album</td>\n", + "\t\t\t\t\t\t</tr>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<tr >\n", + "\t\t\t\t\t\t\t<td width=\"70%\"><a href=\"https://www.songlyrics.com/a-brand-lyrics/\" title=\"A Brand Lyrics\">A Brand</a></td>\n", + "\t\t\t\t\t\t\t<td class=\"td-item td-last td-borderleft\" width=\"30%\">28 Lyrics & 27 Albums</td>\n", + "\t\t\t\t\t\t</tr>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<tr class=\"even\">\n", + "\t\t\t\t\t\t\t<td width=\"70%\"><a href=\"https://www.songlyrics.com/a-breach-of-silence-lyrics/\" title=\"A Breach of Silence Lyrics\">A Breach of Silence</a></td>\n", + "\t\t\t\t\t\t\t<td class=\"td-item td-last td-borderleft\" width=\"30%\">29 Lyrics & 6 Albums</td>\n", + "\t\t\t\t\t\t</tr>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<tr >\n", + "\t\t\t\t\t\t\t<td width=\"70%\"><a href=\"https://www.songlyrics.com/a-breakaway-lyrics/\" title=\"A Breakaway Lyrics\">A Breakaway</a></td>\n", + "\t\t\t\t\t\t\t<td class=\"td-item td-last td-borderleft\" width=\"30%\">1 Lyric & 2 Albums</td>\n", + "\t\t\t\t\t\t</tr>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<tr class=\"even\">\n", + "\t\t\t\t\t\t\t<td width=\"70%\"><a href=\"https://www.songlyrics.com/a-bridge-too-far-lyrics/\" title=\"A Bridge Too Far Lyrics\">A Bridge Too Far</a></td>\n", + "\t\t\t\t\t\t\t<td class=\"td-item td-last td-borderleft\" width=\"30%\">1 Lyric & 1 Album</td>\n", + "\t\t\t\t\t\t</tr>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<tr >\n", + "\t\t\t\t\t\t\t<td width=\"70%\"><a href=\"https://www.songlyrics.com/a-brighter-escape-lyrics/\" title=\"A Brighter Escape Lyrics\">A Brighter Escape</a></td>\n", + "\t\t\t\t\t\t\t<td class=\"td-item td-last td-borderleft\" width=\"30%\">10 Lyrics & 2 Albums</td>\n", + "\t\t\t\t\t\t</tr>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<tr class=\"even\">\n", + "\t\t\t\t\t\t\t<td width=\"70%\"><a href=\"https://www.songlyrics.com/a-brighter-escape-feat-peyton-justine-lyrics/\" title=\"A Brighter Escape feat. Peyton Justine Lyrics\">A Brighter Escape feat. Peyton Justine</a></td>\n", + "\t\t\t\t\t\t\t<td class=\"td-item td-last td-borderleft\" width=\"30%\">3 Lyrics & 2 Albums</td>\n", + "\t\t\t\t\t\t</tr>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<tr >\n", + "\t\t\t\t\t\t\t<td width=\"70%\"><a href=\"https://www.songlyrics.com/a-brighter-life-lyrics/\" title=\"A Brighter Life Lyrics\">A Brighter Life</a></td>\n", + "\t\t\t\t\t\t\t<td class=\"td-item td-last td-borderleft\" width=\"30%\">1 Lyric & 1 Album</td>\n", + "\t\t\t\t\t\t</tr>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<tr class=\"even\">\n", + "\t\t\t\t\t\t\t<td width=\"70%\"><a href=\"https://www.songlyrics.com/a-brokeheart-pro-lyrics/\" title=\"A Brokeheart Pro Lyrics\">A Brokeheart Pro</a></td>\n", + "\t\t\t\t\t\t\t<td class=\"td-item td-last td-borderleft\" width=\"30%\">2 Lyrics & 1 Album</td>\n", + "\t\t\t\t\t\t</tr>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<tr >\n", + "\t\t\t\t\t\t\t<td width=\"70%\"><a href=\"https://www.songlyrics.com/a-broken-silence-lyrics/\" title=\"A Broken Silence Lyrics\">A Broken Silence</a></td>\n", + "\t\t\t\t\t\t\t<td class=\"td-item td-last td-borderleft\" width=\"30%\">39 Lyrics & 5 Albums</td>\n", + "\t\t\t\t\t\t</tr>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<tr class=\"even\">\n", + "\t\t\t\t\t\t\t<td width=\"70%\"><a href=\"https://www.songlyrics.com/a-broken-silence-feat-ozi-batla-lyrics/\" title=\"A Broken Silence feat. Ozi Batla Lyrics\">A Broken Silence feat. Ozi Batla</a></td>\n", + "\t\t\t\t\t\t\t<td class=\"td-item td-last td-borderleft\" width=\"30%\">1 Lyric & 1 Album</td>\n", + "\t\t\t\t\t\t</tr>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<tr >\n", + "\t\t\t\t\t\t\t<td width=\"70%\"><a href=\"https://www.songlyrics.com/a-broken-silence-feat-patriarch-lyrics/\" title=\"A Broken Silence feat. Patriarch Lyrics\">A Broken Silence feat. Patriarch</a></td>\n", + "\t\t\t\t\t\t\t<td class=\"td-item td-last td-borderleft\" width=\"30%\">1 Lyric & 2 Albums</td>\n", + "\t\t\t\t\t\t</tr>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<tr class=\"even\">\n", + "\t\t\t\t\t\t\t<td width=\"70%\"><a href=\"https://www.songlyrics.com/a-broken-silence-feat-tim-freedman-lyrics/\" title=\"A Broken Silence feat. Tim Freedman Lyrics\">A Broken Silence feat. Tim Freedman</a></td>\n", + "\t\t\t\t\t\t\t<td class=\"td-item td-last td-borderleft\" width=\"30%\">1 Lyric & 1 Album</td>\n", + "\t\t\t\t\t\t</tr>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<tr >\n", + "\t\t\t\t\t\t\t<td width=\"70%\"><a href=\"https://www.songlyrics.com/a-broken-silence-feat-tyron-woolf-lyrics/\" title=\"A Broken Silence feat. Tyron Woolf Lyrics\">A Broken Silence feat. Tyron Woolf</a></td>\n", + "\t\t\t\t\t\t\t<td class=\"td-item td-last td-borderleft\" width=\"30%\">1 Lyric & 1 Album</td>\n", + "\t\t\t\t\t\t</tr>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<tr class=\"even\">\n", + "\t\t\t\t\t\t\t<td width=\"70%\"><a href=\"https://www.songlyrics.com/a-bronx-tale-lyrics/\" title=\"A Bronx Tale Lyrics\">A Bronx Tale</a></td>\n", + "\t\t\t\t\t\t\t<td class=\"td-item td-last td-borderleft\" width=\"30%\">2 Lyrics & 1 Album</td>\n", + "\t\t\t\t\t\t</tr>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<tr >\n", + "\t\t\t\t\t\t\t<td width=\"70%\"><a href=\"https://www.songlyrics.com/a-bullet-for-pretty-boy-lyrics/\" title=\"A Bullet for Pretty Boy Lyrics\">A Bullet for Pretty Boy</a></td>\n", + "\t\t\t\t\t\t\t<td class=\"td-item td-last td-borderleft\" width=\"30%\">31 Lyrics & 7 Albums</td>\n", + "\t\t\t\t\t\t</tr>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<tr class=\"even\">\n", + "\t\t\t\t\t\t\t<td width=\"70%\"><a href=\"https://www.songlyrics.com/a-burning-water-lyrics/\" title=\"A Burning Water Lyrics\">A Burning Water</a></td>\n", + "\t\t\t\t\t\t\t<td class=\"td-item td-last td-borderleft\" width=\"30%\">9 Lyrics & 4 Albums</td>\n", + "\t\t\t\t\t\t</tr>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<tr >\n", + "\t\t\t\t\t\t\t<td width=\"70%\"><a href=\"https://www.songlyrics.com/a-call-to-sincerity-lyrics/\" title=\"A Call to Sincerity Lyrics\">A Call to Sincerity</a></td>\n", + "\t\t\t\t\t\t\t<td class=\"td-item td-last td-borderleft\" width=\"30%\">10 Lyrics & 1 Album</td>\n", + "\t\t\t\t\t\t</tr>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<tr class=\"even\">\n", + "\t\t\t\t\t\t\t<td width=\"70%\"><a href=\"https://www.songlyrics.com/a-calm-awakening-lyrics/\" title=\"A Calm Awakening Lyrics\">A Calm Awakening</a></td>\n", + "\t\t\t\t\t\t\t<td class=\"td-item td-last td-borderleft\" width=\"30%\">1 Lyric & 1 Album</td>\n", + "\t\t\t\t\t\t</tr>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<tr >\n", + "\t\t\t\t\t\t\t<td width=\"70%\"><a href=\"https://www.songlyrics.com/a-camp-lyrics/\" title=\"A Camp Lyrics\">A Camp</a></td>\n", + "\t\t\t\t\t\t\t<td class=\"td-item td-last td-borderleft\" width=\"30%\">44 Lyrics & 7 Albums</td>\n", + "\t\t\t\t\t\t</tr>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<tr class=\"even\">\n", + "\t\t\t\t\t\t\t<td width=\"70%\"><a href=\"https://www.songlyrics.com/a-canorous-quintet-lyrics/\" title=\"A Canorous Quintet Lyrics\">A Canorous Quintet</a></td>\n", + "\t\t\t\t\t\t\t<td class=\"td-item td-last td-borderleft\" width=\"30%\">36 Lyrics & 10 Albums</td>\n", + "\t\t\t\t\t\t</tr>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<tr >\n", + "\t\t\t\t\t\t\t<td width=\"70%\"><a href=\"https://www.songlyrics.com/a-capella-lyrics/\" title=\"A Capella Lyrics\">A Capella</a></td>\n", + "\t\t\t\t\t\t\t<td class=\"td-item td-last td-borderleft\" width=\"30%\">2 Lyrics & 1 Album</td>\n", + "\t\t\t\t\t\t</tr>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<tr class=\"even\">\n", + "\t\t\t\t\t\t\t<td width=\"70%\"><a href=\"https://www.songlyrics.com/a-capella-boazii-lyrics/\" title=\"A Capella Boğaziçi Lyrics\">A Capella Boğaziçi</a></td>\n", + "\t\t\t\t\t\t\t<td class=\"td-item td-last td-borderleft\" width=\"30%\">2 Lyrics & 1 Album</td>\n", + "\t\t\t\t\t\t</tr>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<tr >\n", + "\t\t\t\t\t\t\t<td width=\"70%\"><a href=\"https://www.songlyrics.com/a-capella-science-lyrics/\" title=\"A Capella Science Lyrics\">A Capella Science</a></td>\n", + "\t\t\t\t\t\t\t<td class=\"td-item td-last td-borderleft\" width=\"30%\">9 Lyrics & 9 Albums</td>\n", + "\t\t\t\t\t\t</tr>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<tr class=\"even\">\n", + "\t\t\t\t\t\t\t<td width=\"70%\"><a href=\"https://www.songlyrics.com/a-cappella-angels-lyrics/\" title=\"A Cappella Angels Lyrics\">A Cappella Angels</a></td>\n", + "\t\t\t\t\t\t\t<td class=\"td-item td-last td-borderleft\" width=\"30%\">4 Lyrics & 1 Album</td>\n", + "\t\t\t\t\t\t</tr>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<tr >\n", + "\t\t\t\t\t\t\t<td width=\"70%\"><a href=\"https://www.songlyrics.com/a-cappella-christmas-carolers-feat-angela-burkart-lyrics/\" title=\"A Cappella Christmas Carolers feat. Angela Burkart Lyrics\">A Cappella Christmas Carolers feat. Angela Burkart</a></td>\n", + "\t\t\t\t\t\t\t<td class=\"td-item td-last td-borderleft\" width=\"30%\">2 Lyrics & 1 Album</td>\n", + "\t\t\t\t\t\t</tr>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<tr class=\"even\">\n", + "\t\t\t\t\t\t\t<td width=\"70%\"><a href=\"https://www.songlyrics.com/a-case-of-grenada-lyrics/\" title=\"A Case Of Grenada Lyrics\">A Case Of Grenada</a></td>\n", + "\t\t\t\t\t\t\t<td class=\"td-item td-last td-borderleft\" width=\"30%\">2 Lyrics & 1 Album</td>\n", + "\t\t\t\t\t\t</tr>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<tr >\n", + "\t\t\t\t\t\t\t<td width=\"70%\"><a href=\"https://www.songlyrics.com/a-celtic-christmas-lyrics/\" title=\"A Celtic Christmas Lyrics\">A Celtic Christmas</a></td>\n", + "\t\t\t\t\t\t\t<td class=\"td-item td-last td-borderleft\" width=\"30%\">2 Lyrics & 2 Albums</td>\n", + "\t\t\t\t\t\t</tr>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<tr class=\"even\">\n", + "\t\t\t\t\t\t\t<td width=\"70%\"><a href=\"https://www.songlyrics.com/a-certain-energy-lyrics/\" title=\"A Certain Energy Lyrics\">A Certain Energy</a></td>\n", + "\t\t\t\t\t\t\t<td class=\"td-item td-last td-borderleft\" width=\"30%\">9 Lyrics & 5 Albums</td>\n", + "\t\t\t\t\t\t</tr>\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t</tbody>\n", + "\t\t\t</table>\n", + "\n", + "\t\t</div>\n", + "\n", + "\t</div> <!--end col-one-->\n", + "\n", + "\t<div class=\"colthree\">\n", + "\n", + "\t\t<div class=\"adblock\">\n", + "\n", + "\t\t\t<script>\n", + "\t\t\t\t/* Songlyrics 300x250 Hybrid */\n", + "\t\t\t\tcf_page_artist = \"\";\n", + "\t\t\t\tcf_page_song = \"\";\n", + "\t\t\t\tcf_adunit_id = \"100000080\";\n", + "\t\t\t</script>\n", + "\t\t\t<script src=\"//srv.tunefindforfans.com/fruits/apricots.js\"></script>\n", + "\n", + "\t\t</div>\n", + "\n", + "\t\t<div class=\"box\">\n", + "\t\t\t<div class=\"listbox\">\n", + "\t\t\t\t<h3 class=\"listbox-title\">Top Songs by Year</h3>\n", + "\t\t\t\t<a href=\"https://www.songlyrics.com/news/top-songs/all-time/\" title=\"Top Songs\"><img alt=\"Top Songs\" width=\"298\" height=\"74\" src=\"images/all-time.gif\" /></a>\n", + "\t\t\t\t<ul class=\"tracklist listtop\">\n", + "\t\t\t\t\t<li><a href=\"https://www.songlyrics.com/news/top-songs/all-time/\">All Time</a></li>\n", + "\t\t\t\t\t<li><a href=\"https://www.songlyrics.com/news/top-songs/2011/\">2011</a></li>\n", + "\t\t\t\t\t<li><a href=\"https://www.songlyrics.com/news/top-songs/2000/\">2000</a></li>\n", + "\t\t\t\t\t<li><a href=\"https://www.songlyrics.com/news/top-songs/1990/\">1990</a></li>\n", + "\t\t\t\t\t<li><a href=\"https://www.songlyrics.com/news/top-songs/1980/\">1980</a></li>\n", + "\t\t\t\t\t<li><a href=\"https://www.songlyrics.com/news/top-songs/1970/\">1970</a></li>\n", + "\t\t\t\t\t<li><a href=\"https://www.songlyrics.com/news/top-songs/1960/\">1960</a></li>\n", + "\t\t\t\t\t<li><a href=\"https://www.songlyrics.com/news/top-songs/1950/\">1950</a></li>\n", + "\t\t\t\t</ul>\n", + "\t\t\t</div>\n", + "\t\t</div>\n", + "\n", + "\t</div> <!--end colthree-->\n", + "\n", + "\t<div id=\"ad-absolute-728\">\n", + "\n", + "\t\t<script>\n", + "\t\t\t/* Songlyrics 728x90 Hybrid */\n", + "\t\t\tcf_page_artist = \"\";\n", + "\t\t\tcf_page_song = \"\";\n", + "\t\t\tcf_adunit_id = \"100000081\";\n", + "\t\t</script>\n", + "\t\t<script src=\"//srv.tunefindforfans.com/fruits/apricots.js\"></script>\n", + "\n", + "\t</div>\n", + "\n", + "\t<div id=\"ad-absolute-160-2\">\n", + "\n", + "\t\t<script>\n", + "\t\t\t/* Songlyrics 160x600 (1) */\n", + "\t\t\tcf_page_artist = \"\";\n", + "\t\t\tcf_page_song = \"\";\n", + "\t\t\tcf_adunit_id = \"100000079\";\n", + "\t\t</script>\n", + "\t\t<script src=\"//srv.tunefindforfans.com/fruits/apricots.js\"></script>\n", + "\n", + "\t</div>\n", + "\n", + "</div> <!--end wrapper-inner-->\n", + "\n", + "\n", + "</div>\n", + "\n", + "<div class=\"footer\">\n", + "\t<table class=\"footer-inner\">\n", + "\t\t<tbody>\n", + "\n", + "\t\t<tr>\n", + "\n", + "\t\t\t<td width=\"145\" class=\"genres\">\n", + "\t\t\t\t<h3>Genres</h3>\n", + "\t\t\t\t<ul>\n", + "\t\t\t\t\t<li><a href=\"/rock-lyrics.php\" title=\"Rock Lyrics\">Rock</a></li>\n", + "\t\t\t\t\t<li><a href=\"/r-and-b-lyrics.php\" title=\"R&B Lyrics\">R&B</a></li>\n", + "\t\t\t\t\t<li><a href=\"/country-music-lyrics.php\" title=\"Country Lyrics\">Country</a></li>\n", + "\t\t\t\t\t<li><a href=\"/hip-hop-rap-lyrics.php\" title=\"Hip Hop and Rap Lyrics\">Hip Hop/Rap</a></li>\n", + "\t\t\t\t\t<li><a href=\"/pop-lyrics.php\" title=\"Pop Lyrics\">Pop</a></li>\n", + "\t\t\t\t\t<li><a href=\"/christian-lyrics.php\" title=\"Christian Lyrics\">Christian</a></li>\n", + "\t\t\t\t</ul>\n", + "\t\t\t</td>\n", + "\n", + "\t\t\t<td width=\"170\" class=\"top-lyrics\">\n", + "\t\t\t\t<h3>Top Lyrics</h3>\n", + "\t\t\t\t<ul>\n", + "\t\t\t\t\t<li><a href=\"/top-songs-lyrics.html\">Top Songs</a></li>\n", + "\t\t\t\t\t<li><a href=\"/top-artists-lyrics.html\">Top Artists</a></li>\n", + "\t\t\t\t\t<li><a href=\"/top-albums-lyrics.html\">Top Albums</a></li>\n", + "\t\t\t\t\t<li><a href=\"/top-upcoming-songs.html\">Upcoming Songs</a></li>\n", + "\t\t\t\t\t<li><a href=\"/top-upcoming-albums.html\">Upcoming Albums</a></li>\n", + "\t\t\t\t\t<li><a href=\"/top100.php\" title=\"Billboard Hot 100 Songs\">Billboard Hot 100</a></li>\n", + "\t\t\t\t</ul>\n", + "\t\t\t</td>\n", + "\n", + "\t\t\t<td width=\"180\" class=\"songlyrics\">\n", + "\t\t\t\t<h3>SongLyrics</h3>\n", + "\t\t\t\t<ul>\n", + "\t\t\t\t\t<li><a href=\"/news/advertise/\" title=\"Advertise on SongLyrics.com\">Advertise on SL</a></li>\n", + "\t\t\t\t\t<li><a href=\"/news/featured-blogs/\" title=\"Featured Blogs\">Featured Blogs</a></li>\n", + "\t\t\t\t\t<li><a href=\"/news/contact-us/\" title=\"Contact Us\">Contact Us</a></li>\n", + "\t\t\t\t\t<li><a href=\"/news\" title=\"Music News\">Music News</a></li>\n", + "\t\t\t\t\t<li><a href=\"/privacy.php\" title=\"Privacy Policy\">Privacy Policy</a></li>\n", + "\t\t\t\t\t<li><a href=\"/termsconditions.php\" title=\"Terms of Use\">Terms of Use</a></li>\n", + "\t\t\t\t</ul>\n", + "\t\t\t</td>\n", + "\n", + "\t\t\t<td width=\"210\" class=\"td-footer-last\">\n", + "\t\t\t\t<h3>Company</h3>\n", + "\t\t\t\t<ul>\n", + "\t\t\t\t\t<li class=\"ftlast-li\">Copyright © 2024 SongLyrics</li>\n", + "\t\t\t\t\t<li class=\"ftlast-li\">\n", + "\t\t\t\t\t\t<ul>\n", + "\t\t\t\t\t\t\t<li class=\"ft-social\">Follow us:</li>\n", + "\t\t\t\t\t\t\t<li class=\"ft-social\"><a class=\"ft-fb\" href=\"https://www.facebook.com/SongLyrics\" target=\"_blank\" title=\"SongLyrics on Facebook\">Facebook</a></li>\n", + "\t\t\t\t\t\t\t<li class=\"ft-social\"><a class=\"ft-tw\" href=\"https://twitter.com/#!/songlyrics\" target=\"_blank\" title=\"Follow SongLyrics on Twitter\">Twitter</a></li>\n", + "\t\t\t\t\t\t</ul>\n", + "\t\t\t\t\t</li>\n", + "\t\t\t\t\t<li class=\"ftlast-li\">\n", + "\t\t\t\t\t\t<a href=\"/about.php\">About</a>\n", + "\t\t\t\t\t</li>\n", + "\t\t\t\t\t<li class=\"ftlast-li\">\n", + "\t\t\t\t\t\t<a id='unic-gdpr' onclick='__tcfapi(\"openunic\");return false;' style='display:none;cursor:pointer;'>Change Ad Consent</a>\n", + "\t\t\t\t\t\t<a id='unic-ccpa' onclick=\"window.__uspapi('openunic')\" style='display:none;cursor:pointer;'>Do not sell my data</a>\n", + "\t\t\t\t\t</li>\n", + "\t\t\t\t\t<!--<li class=\"ftlast-li\">Created in 0.016815 sec</li>-->\n", + "\t\t\t\t\t<li class=\"ftlast-li\">\n", + "\t\t\t\t\t\t<ul>\n", + "\t\t\t\t\t\t\t<li class=\"ft-logo\"><a class=\"ft-sm\" href=\"https://www.soundmedia.com/\" target=\"_blank\" title=\"Advertise on SongLyrics\">SoundMedia</a></li>\n", + "\t\t\t\t\t\t</ul>\n", + "\t\t\t\t\t</li>\n", + "\t\t\t\t</ul>\n", + "\t\t\t</td>\n", + "\n", + "\t\t</tr>\n", + "\n", + "\t\t</tbody>\n", + "\t</table>\n", + "\n", + "\t<div id=\"footer-bottom\">\n", + "\n", + "\t\t<ul id=\"footer-artists\">\n", + "\t\t\t<li class=\"artist\"><h4>Artists:</h4></li>\n", + "\t\t\t<li><a href=\"/a/\" title=\"A\">A</a></li>\n", + "\t\t\t<li><a href=\"/b/\" title=\"B\">B</a></li>\n", + "\t\t\t<li><a href=\"/c/\" title=\"C\">C</a></li>\n", + "\t\t\t<li><a href=\"/d/\" title=\"D\">D</a></li>\n", + "\t\t\t<li><a href=\"/e/\" title=\"E\">E</a></li>\n", + "\t\t\t<li><a href=\"/f/\" title=\"F\">F</a></li>\n", + "\t\t\t<li><a href=\"/g/\" title=\"G\">G</a></li>\n", + "\t\t\t<li><a href=\"/h/\" title=\"H\">H</a></li>\n", + "\t\t\t<li><a href=\"/i/\" title=\"I\">I</a></li>\n", + "\t\t\t<li><a href=\"/j/\" title=\"J\">J</a></li>\n", + "\t\t\t<li><a href=\"/k/\" title=\"K\">K</a></li>\n", + "\t\t\t<li><a href=\"/l/\" title=\"L\">L</a></li>\n", + "\t\t\t<li><a href=\"/m/\" title=\"M\">M</a></li>\n", + "\t\t\t<li><a href=\"/n/\" title=\"N\">N</a></li>\n", + "\t\t\t<li><a href=\"/o/\" title=\"O\">O</a></li>\n", + "\t\t\t<li><a href=\"/p/\" title=\"P\">P</a></li>\n", + "\t\t\t<li><a href=\"/q/\" title=\"Q\">Q</a></li>\n", + "\t\t\t<li><a href=\"/r/\" title=\"R\">R</a></li>\n", + "\t\t\t<li><a href=\"/s/\" title=\"S\">S</a></li>\n", + "\t\t\t<li><a href=\"/t/\" title=\"T\">T</a></li>\n", + "\t\t\t<li><a href=\"/u/\" title=\"U\">U</a></li>\n", + "\t\t\t<li><a href=\"/v/\" title=\"V\">V</a></li>\n", + "\t\t\t<li><a href=\"/w/\" title=\"W\">W</a></li>\n", + "\t\t\t<li><a href=\"/x/\" title=\"X\">X</a></li>\n", + "\t\t\t<li><a href=\"/y/\" title=\"Y\">Y</a></li>\n", + "\t\t\t<li><a href=\"/z/\" title=\"Z\">Z</a></li>\n", + "\t\t\t<li><a href=\"/0/\" title=\"#\">#</a></li>\n", + "\t\t</ul>\n", + "\n", + "\t</div><!-- end footer-bottom -->\n", + "\n", + "</div><!-- end footer -->\n", + "\t\n", + "\t \n", + "\n", + "\n", + "<script src=\"/js/dropdown.js\" type=\"text/javascript\"></script>\n", + "\n", + "<script type=\"text/javascript\">\n", + "\t$( '#nav li:has(ul)' ).doubleTapToGo(); <!-- DROPDOWN MENU -->\n", + "</script>\n", + "\n", + "</body>\n", + "</html>\n" + ] + } + ], + "source": [ + "html = requests.get(\"http://www.songlyrics.com/a/\").text\n", + "soup = BeautifulSoup(html, 'html')\n", + "print(html)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "#### Regular expressions help to filter the individual link objects\n", + "It's easy enough to get links, but we just want the ones with a title of the form \"Page #\". So, using the \"re\" module once again, but now on the page titles of the links gets us what we want. Also, since there are a few artists on the landing page for each letter, we need to include it, too." + ] + }, + { + "cell_type": "code", + "execution_count": 16, + "metadata": { + "scrolled": true + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "/a/1/\n", + "/a/2/\n", + "/a/3/\n", + "/a/4/\n", + "/a/5/\n", + "/a/6/\n", + "/a/7/\n", + "/a/8/\n", + "/a/9/\n", + "/a/10/\n", + "/a/11/\n", + "/a/12/\n", + "/a/13/\n", + "/a/14/\n", + "/a/15/\n", + "/a/16/\n", + "/a/17/\n", + "/a/18/\n", + "/a/19/\n", + "/a/20/\n", + "/a/21/\n", + "/a/22/\n", + "/a/23/\n", + "/a/24/\n", + "/a/25/\n", + "/a/26/\n", + "/a/27/\n", + "/a/28/\n", + "/a/29/\n", + "/a/30/\n", + "/a/31/\n", + "/a/32/\n", + "/a/33/\n", + "/a/34/\n", + "/a/35/\n", + "/a/36/\n", + "/a/37/\n", + "/a/38/\n", + "/a/39/\n", + "/a/40/\n", + "/a/41/\n", + "/a/42/\n", + "/a/43/\n", + "/a/44/\n", + "/a/45/\n", + "/a/46/\n", + "/a/47/\n", + "/a/48/\n", + "/a/49/\n", + "/a/50/\n", + "/a/51/\n", + "/a/52/\n", + "/a/53/\n", + "/a/54/\n", + "/a/55/\n", + "/a/56/\n", + "/a/57/\n", + "/a/58/\n", + "/a/59/\n", + "/a/60/\n", + "/a/61/\n", + "/a/62/\n", + "/a/63/\n", + "/a/64/\n", + "/a/65/\n", + "/a/66/\n", + "/a/67/\n", + "/a/68/\n", + "/a/69/\n", + "/a/70/\n", + "/a/71/\n", + "/a/72/\n", + "/a/73/\n", + "/a/74/\n", + "/a/75/\n", + "/a/76/\n", + "/a/77/\n", + "/a/78/\n", + "/a/79/\n", + "/a/80/\n", + "/a/81/\n", + "/a/82/\n", + "/a/83/\n", + "/a/84/\n", + "/a/85/\n", + "/a/86/\n", + "/a/87/\n", + "/a/88/\n", + "/a/89/\n", + "/a/90/\n", + "/a/91/\n", + "/a/92/\n", + "/a/93/\n", + "/a/94/\n", + "/a/95/\n", + "/a/96/\n", + "/a/97/\n", + "/a/98/\n", + "/a/99/\n", + "/a/100/\n", + "/a/101/\n", + "/a/102/\n", + "/a/103/\n", + "/a/104/\n", + "/a/105/\n", + "/a/106/\n", + "/a/107/\n", + "/a/108/\n", + "/a/109/\n", + "/a/110/\n", + "/a/111/\n", + "/a/112/\n", + "/a/113/\n", + "/a/114/\n", + "/a/115/\n", + "/a/116/\n", + "/a/117/\n", + "/a/118/\n", + "/a/119/\n", + "/a/120/\n", + "/a/121/\n", + "/a/122/\n", + "/a/123/\n", + "/a/124/\n", + "/a/125/\n", + "/a/126/\n", + "/a/127/\n", + "/a/128/\n", + "/a/129/\n", + "/a/130/\n", + "/a/131/\n", + "/a/132/\n", + "/a/133/\n", + "/a/134/\n", + "/a/135/\n", + "/a/136/\n", + "/a/137/\n", + "/a/138/\n", + "/a/139/\n", + "/a/140/\n", + "/a/141/\n", + "/a/142/\n", + "/a/143/\n", + "/a/144/\n", + "/a/145/\n", + "/a/146/\n", + "/a/147/\n", + "/a/148/\n", + "/a/149/\n", + "/a/150/\n", + "/a/151/\n", + "/a/152/\n", + "/a/153/\n", + "/a/154/\n", + "/a/155/\n", + "/a/156/\n", + "/a/157/\n", + "/a/158/\n", + "/a/159/\n", + "/a/160/\n", + "/a/161/\n", + "/a/162/\n", + "/a/163/\n", + "/a/164/\n", + "/a/165/\n", + "/a/166/\n", + "/a/167/\n", + "/a/168/\n", + "/a/169/\n", + "/a/170/\n", + "/a/171/\n", + "/a/172/\n", + "/a/173/\n", + "/a/174/\n", + "/a/175/\n", + "/a/176/\n", + "/a/177/\n", + "/a/178/\n", + "/a/179/\n", + "/a/180/\n", + "/a/181/\n", + "/a/182/\n", + "/a/183/\n", + "/a/184/\n", + "/a/185/\n", + "/a/186/\n", + "/a/187/\n", + "/a/188/\n", + "/a/189/\n", + "/a/190/\n", + "/a/191/\n", + "/a/192/\n", + "/a/193/\n", + "/a/194/\n", + "/a/195/\n", + "/a/196/\n", + "/a/197/\n", + "/a/198/\n", + "/a/199/\n", + "/a/200/\n", + "/a/201/\n", + "/a/202/\n", + "/a/203/\n", + "/a/204/\n", + "/a/205/\n", + "/a/206/\n", + "/a/207/\n", + "/a/208/\n", + "/a/209/\n", + "/a/210/\n", + "/a/211/\n", + "/a/212/\n", + "/a/213/\n", + "/a/214/\n", + "/a/215/\n", + "/a/216/\n", + "/a/217/\n", + "/a/218/\n", + "/a/219/\n", + "/a/220/\n", + "/a/221/\n", + "/a/222/\n", + "/a/223/\n", + "/a/224/\n", + "/a/225/\n", + "/a/226/\n", + "/a/227/\n", + "/a/228/\n", + "/a/229/\n", + "/a/230/\n", + "/a/231/\n", + "/a/232/\n", + "/a/233/\n", + "/a/234/\n", + "/a/235/\n", + "/a/236/\n", + "/a/237/\n", + "/a/238/\n", + "/a/239/\n", + "/a/240/\n", + "/a/241/\n", + "/a/242/\n", + "/a/243/\n", + "/a/244/\n", + "/a/245/\n", + "/a/246/\n", + "/a/247/\n", + "/a/248/\n", + "/a/249/\n", + "/a/250/\n", + "/a/251/\n", + "/a/252/\n", + "/a/253/\n", + "/a/254/\n", + "/a/255/\n", + "/a/256/\n", + "/a/257/\n", + "/a/258/\n", + "/a/259/\n", + "/a/260/\n", + "/a/261/\n", + "/a/262/\n", + "/a/263/\n", + "/a/264/\n" + ] + } + ], + "source": [ + "pages = [\"/a/\"]\n", + "for x in soup.find_all('a'):\n", + " if x.get(\"href\") is not None and re.search(\"^Page \\d+$\", x.get(\"title\", \"NOTITLE\")):\n", + " print(x['href'])\n", + " pages.append(x['href'])" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "#### Follow the directory tree!\n", + "Now that we've got the pages, its' time to put urls together off of the main site. Notice the string \"+\" in the requests.get() command. From there, we can see what links are in the first page! Looks like the listing is there again, but the artist's pages are in the full-url pattern:\n", + "\n", + "* http://www.songlyrics.com/ARTISTNAME-lyrics.html" + ] + }, + { + "cell_type": "code", + "execution_count": 17, + "metadata": { + "scrolled": true + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "/\n", + "/top-songs-lyrics.html\n", + "/top100.php\n", + "/top-upcoming-songs.html\n", + "/latestAddedSongs\n", + "/news/top-songs/2011/\n", + "/news/top-songs/2010/\n", + "/news/top-songs/2009/\n", + "/news/top-songs/all-time/\n", + "/top-artists-lyrics.html\n", + "/top-artists-lyrics.html\n", + "/a/\n", + "/top-albums-lyrics.html\n", + "/top-upcoming-albums.html\n", + "/adele-lyrics/\n", + "/rihanna-lyrics/\n", + "/katy-perry-lyrics/\n", + "/lady-gaga-lyrics/\n", + "/lil-wayne-lyrics/\n", + "/musicgenres.php\n", + "/rock-lyrics.php\n", + "/r-and-b-lyrics.php\n", + "/country-music-lyrics.php\n", + "/hip-hop-rap-lyrics.php\n", + "/pop-lyrics.php\n", + "/christian-lyrics.php\n", + "/dance-lyrics.php\n", + "/latin-lyrics.php\n", + "/musicgenres.php\n", + "/news/\n", + "/news/\n", + "/news/category/news-roundup/\n", + "/news/album-reviews/\n", + "/news/album-reviews/\n", + "/news/category/song-reviews/\n", + "/news/category/spotlight/\n", + "/member-login.php\n", + "/member-register.php\n", + "https://www.facebook.com/SongLyrics\n", + "/news/advertise/\n", + "/news/submit-lyrics/\n", + "#nav\n", + "#\n", + "/\n", + "/top-songs-lyrics.html\n", + "/top100.php\n", + "/top-upcoming-songs.html\n", + "/latestAddedSongs\n", + "/news/top-songs/2011/\n", + "/news/top-songs/2010/\n", + "/news/top-songs/2009/\n", + "/news/top-songs/all-time/\n", + "/top-artists-lyrics.html\n", + "/top-artists-lyrics.html\n", + "/a/\n", + "/top-albums-lyrics.html\n", + "/top-upcoming-albums.html\n", + "/adele-lyrics/\n", + "/rihanna-lyrics/\n", + "/katy-perry-lyrics/\n", + "/lady-gaga-lyrics/\n", + "/lil-wayne-lyrics/\n", + "/musicgenres.php\n", + "/rock-lyrics.php\n", + "/r-and-b-lyrics.php\n", + "/country-music-lyrics.php\n", + "/hip-hop-rap-lyrics.php\n", + "/pop-lyrics.php\n", + "/christian-lyrics.php\n", + "/dance-lyrics.php\n", + "/latin-lyrics.php\n", + "/musicgenres.php\n", + "/news/\n", + "/news/\n", + "/news/category/news-roundup/\n", + "/news/album-reviews/\n", + "/news/album-reviews/\n", + "/news/category/song-reviews/\n", + "/news/category/spotlight/\n", + "https://www.facebook.com/SongLyrics\n", + "/news/advertise/\n", + "/news/submit-lyrics/\n", + "/\n", + "https://www.facebook.com/SongLyrics\n", + "/\n", + "/top-artists-lyrics.html\n", + "/a/\n", + "/b/\n", + "/c/\n", + "/d/\n", + "/e/\n", + "/f/\n", + "/g/\n", + "/h/\n", + "/i/\n", + "/j/\n", + "/k/\n", + "/l/\n", + "/m/\n", + "/n/\n", + "/o/\n", + "/p/\n", + "/q/\n", + "/r/\n", + "/s/\n", + "/t/\n", + "/u/\n", + "/v/\n", + "/w/\n", + "/x/\n", + "/y/\n", + "/z/\n", + "/0/\n", + "/a/1/\n", + "/a/2/\n", + "/a/3/\n", + "/a/4/\n", + "/a/5/\n", + "/a/6/\n", + "/a/7/\n", + "/a/8/\n", + "/a/9/\n", + "/a/10/\n", + "/a/11/\n", + "/a/12/\n", + "/a/13/\n", + "/a/14/\n", + "/a/15/\n", + "/a/16/\n", + "/a/17/\n", + "/a/18/\n", + "/a/19/\n", + "/a/20/\n", + "/a/21/\n", + "/a/22/\n", + "/a/23/\n", + "/a/24/\n", + "/a/25/\n", + "/a/26/\n", + "/a/27/\n", + "/a/28/\n", + "/a/29/\n", + "/a/30/\n", + "/a/31/\n", + "/a/32/\n", + "/a/33/\n", + "/a/34/\n", + "/a/35/\n", + "/a/36/\n", + "/a/37/\n", + "/a/38/\n", + "/a/39/\n", + "/a/40/\n", + "/a/41/\n", + "/a/42/\n", + "/a/43/\n", + "/a/44/\n", + "/a/45/\n", + "/a/46/\n", + "/a/47/\n", + "/a/48/\n", + "/a/49/\n", + "/a/50/\n", + "/a/51/\n", + "/a/52/\n", + "/a/53/\n", + "/a/54/\n", + "/a/55/\n", + "/a/56/\n", + "/a/57/\n", + "/a/58/\n", + "/a/59/\n", + "/a/60/\n", + "/a/61/\n", + "/a/62/\n", + "/a/63/\n", + "/a/64/\n", + "/a/65/\n", + "/a/66/\n", + "/a/67/\n", + "/a/68/\n", + "/a/69/\n", + "/a/70/\n", + "/a/71/\n", + "/a/72/\n", + "/a/73/\n", + "/a/74/\n", + "/a/75/\n", + "/a/76/\n", + "/a/77/\n", + "/a/78/\n", + "/a/79/\n", + "/a/80/\n", + "/a/81/\n", + "/a/82/\n", + "/a/83/\n", + "/a/84/\n", + "/a/85/\n", + "/a/86/\n", + "/a/87/\n", + "/a/88/\n", + "/a/89/\n", + "/a/90/\n", + "/a/91/\n", + "/a/92/\n", + "/a/93/\n", + "/a/94/\n", + "/a/95/\n", + "/a/96/\n", + "/a/97/\n", + "/a/98/\n", + "/a/99/\n", + "/a/100/\n", + "/a/101/\n", + "/a/102/\n", + "/a/103/\n", + "/a/104/\n", + "/a/105/\n", + "/a/106/\n", + "/a/107/\n", + "/a/108/\n", + "/a/109/\n", + "/a/110/\n", + "/a/111/\n", + "/a/112/\n", + "/a/113/\n", + "/a/114/\n", + "/a/115/\n", + "/a/116/\n", + "/a/117/\n", + "/a/118/\n", + "/a/119/\n", + "/a/120/\n", + "/a/121/\n", + "/a/122/\n", + "/a/123/\n", + "/a/124/\n", + "/a/125/\n", + "/a/126/\n", + "/a/127/\n", + "/a/128/\n", + "/a/129/\n", + "/a/130/\n", + "/a/131/\n", + "/a/132/\n", + "/a/133/\n", + "/a/134/\n", + "/a/135/\n", + "/a/136/\n", + "/a/137/\n", + "/a/138/\n", + "/a/139/\n", + "/a/140/\n", + "/a/141/\n", + "/a/142/\n", + "/a/143/\n", + "/a/144/\n", + "/a/145/\n", + "/a/146/\n", + "/a/147/\n", + "/a/148/\n", + "/a/149/\n", + "/a/150/\n", + "/a/151/\n", + "/a/152/\n", + "/a/153/\n", + "/a/154/\n", + "/a/155/\n", + "/a/156/\n", + "/a/157/\n", + "/a/158/\n", + "/a/159/\n", + "/a/160/\n", + "/a/161/\n", + "/a/162/\n", + "/a/163/\n", + "/a/164/\n", + "/a/165/\n", + "/a/166/\n", + "/a/167/\n", + "/a/168/\n", + "/a/169/\n", + "/a/170/\n", + "/a/171/\n", + "/a/172/\n", + "/a/173/\n", + "/a/174/\n", + "/a/175/\n", + "/a/176/\n", + "/a/177/\n", + "/a/178/\n", + "/a/179/\n", + "/a/180/\n", + "/a/181/\n", + "/a/182/\n", + "/a/183/\n", + "/a/184/\n", + "/a/185/\n", + "/a/186/\n", + "/a/187/\n", + "/a/188/\n", + "/a/189/\n", + "/a/190/\n", + "/a/191/\n", + "/a/192/\n", + "/a/193/\n", + "/a/194/\n", + "/a/195/\n", + "/a/196/\n", + "/a/197/\n", + "/a/198/\n", + "/a/199/\n", + "/a/200/\n", + "/a/201/\n", + "/a/202/\n", + "/a/203/\n", + "/a/204/\n", + "/a/205/\n", + "/a/206/\n", + "/a/207/\n", + "/a/208/\n", + "/a/209/\n", + "/a/210/\n", + "/a/211/\n", + "/a/212/\n", + "/a/213/\n", + "/a/214/\n", + "/a/215/\n", + "/a/216/\n", + "/a/217/\n", + "/a/218/\n", + "/a/219/\n", + "/a/220/\n", + "/a/221/\n", + "/a/222/\n", + "/a/223/\n", + "/a/224/\n", + "/a/225/\n", + "/a/226/\n", + "/a/227/\n", + "/a/228/\n", + "/a/229/\n", + "/a/230/\n", + "/a/231/\n", + "/a/232/\n", + "/a/233/\n", + "/a/234/\n", + "/a/235/\n", + "/a/236/\n", + "/a/237/\n", + "/a/238/\n", + "/a/239/\n", + "/a/240/\n", + "/a/241/\n", + "/a/242/\n", + "/a/243/\n", + "/a/244/\n", + "/a/245/\n", + "/a/246/\n", + "/a/247/\n", + "/a/248/\n", + "/a/249/\n", + "/a/250/\n", + "/a/251/\n", + "/a/252/\n", + "/a/253/\n", + "/a/254/\n", + "/a/255/\n", + "/a/256/\n", + "/a/257/\n", + "/a/258/\n", + "/a/259/\n", + "/a/260/\n", + "/a/261/\n", + "/a/262/\n", + "/a/263/\n", + "/a/264/\n", + "/a/1/\n", + "https://www.songlyrics.com/a--lyrics/\n", + "https://www.songlyrics.com/a-z-lyrics/\n", + "https://www.songlyrics.com/a-z-feat-leolani-lyrics/\n", + "https://www.songlyrics.com/a-1000-years-lyrics/\n", + "https://www.songlyrics.com/a-ap-ferg-lyrics/\n", + "https://www.songlyrics.com/a-ap-rocky-lyrics/\n", + "https://www.songlyrics.com/a-b-the-sea-lyrics/\n", + "https://www.songlyrics.com/a-balladeer-lyrics/\n", + "https://www.songlyrics.com/a-band-called-o-lyrics/\n", + "https://www.songlyrics.com/a-band-called-pain-lyrics/\n", + "https://www.songlyrics.com/a-band-called-quinn-lyrics/\n", + "https://www.songlyrics.com/a-band-of-bees-lyrics/\n", + "https://www.songlyrics.com/a-band-of-bitches-lyrics/\n", + "https://www.songlyrics.com/a-band-of-bowsies-u2-the-dubliners-kila-lyrics/\n", + "https://www.songlyrics.com/a-band-of-buriers-lyrics/\n", + "https://www.songlyrics.com/a-band-of-his-friends-lyrics/\n", + "https://www.songlyrics.com/a-banquet-lyrics/\n", + "https://www.songlyrics.com/a-bay-bay-feat-kirko-bangz-kevin-gates-ant-bankz-lyrics/\n", + "https://www.songlyrics.com/a-bazz-lyrics/\n", + "https://www.songlyrics.com/a-beacon-school-lyrics/\n", + "https://www.songlyrics.com/a-bear-named-moe-lyrics/\n", + "https://www.songlyrics.com/a-beast-feat-that-s-classic!-lyrics/\n", + "https://www.songlyrics.com/a-beatband-lyrics/\n", + "https://www.songlyrics.com/a-beautiful-demise-lyrics/\n", + "https://www.songlyrics.com/a-beautiful-end-lyrics/\n", + "https://www.songlyrics.com/a-beautiful-friend-feat-jennie-abrahamson-lyrics/\n", + "https://www.songlyrics.com/a-beautiful-silence-lyrics/\n", + "https://www.songlyrics.com/a-beggars-second-lyrics/\n", + "https://www.songlyrics.com/a-better-hand-lyrics/\n", + "https://www.songlyrics.com/a-bi-lyrics/\n", + "https://www.songlyrics.com/a-billion-ernies-lyrics/\n", + "https://www.songlyrics.com/a-billion-robots-lyrics/\n", + "https://www.songlyrics.com/a-billion-robots-feat-marvin-divine-lyrics/\n", + "https://www.songlyrics.com/a-billion-robots-feat-mike-l-lyrics/\n", + "https://www.songlyrics.com/a-billion-robots-feat-seanbobo-lyrics/\n", + "https://www.songlyrics.com/a-bird-a-sparrow-lyrics/\n", + "https://www.songlyrics.com/a-bird-flew-lyrics/\n", + "https://www.songlyrics.com/a-bit-nigel-lyrics/\n", + "https://www.songlyrics.com/a-bit-of-what-you-fancy-lyrics/\n", + "https://www.songlyrics.com/a-bitter-end-lyrics/\n", + "https://www.songlyrics.com/a-bitter-farewell-lyrics/\n", + "https://www.songlyrics.com/a-black-rose-burial-lyrics/\n", + "https://www.songlyrics.com/a-blaze-of-feather-lyrics/\n", + "https://www.songlyrics.com/a-blinding-silence-lyrics/\n", + "https://www.songlyrics.com/a-bloody-canvas-lyrics/\n", + "https://www.songlyrics.com/a-blue-ocean-dream-lyrics/\n", + "https://www.songlyrics.com/a-boogie-lyrics/\n", + "https://www.songlyrics.com/a-boogie-feat-tonio-xo-lyrics/\n", + "https://www.songlyrics.com/a-boogie-wit-da-hoodie-lyrics/\n", + "https://www.songlyrics.com/a-boogie-wit-da-hoodie-don-q-lyrics/\n", + "https://www.songlyrics.com/a-boogie-wit-da-hoodie-feat-21-savage-lyrics/\n", + "https://www.songlyrics.com/a-boogie-wit-da-hoodie-feat-alkaline-lyrics/\n", + "https://www.songlyrics.com/a-boogie-wit-da-hoodie-feat-chris-brown-lyrics/\n", + "https://www.songlyrics.com/a-boogie-wit-da-hoodie-feat-davido-lyrics/\n", + "https://www.songlyrics.com/a-boogie-wit-da-hoodie-feat-dj-spinking-lyrics/\n", + "https://www.songlyrics.com/a-boogie-wit-da-hoodie-feat-don-q-lyrics/\n", + "https://www.songlyrics.com/a-boogie-wit-da-hoodie-feat-j-alvarez-lyrics/\n", + "https://www.songlyrics.com/a-boogie-wit-da-hoodie-feat-jessie-reyez-lyrics/\n", + "https://www.songlyrics.com/a-boogie-wit-da-hoodie-feat-kap-g-lyrics/\n", + "https://www.songlyrics.com/a-boogie-wit-da-hoodie-feat-kodak-black-lyrics/\n", + "https://www.songlyrics.com/a-boogie-wit-da-hoodie-feat-kojo-funds-raye-lyrics/\n", + "https://www.songlyrics.com/a-boogie-wit-da-hoodie-feat-lil-bibby-lyrics/\n", + "https://www.songlyrics.com/a-boogie-wit-da-hoodie-feat-nav-lyrics/\n", + "https://www.songlyrics.com/a-boogie-wit-da-hoodie-feat-pnb-rock-youngboy-never-broke-again-lyrics/\n", + "https://www.songlyrics.com/a-boogie-wit-da-hoodie-feat-tory-lanez-lyrics/\n", + "https://www.songlyrics.com/a-boogie-wit-da-hoodie-feat-trey-songz-lyrics/\n", + "https://www.songlyrics.com/a-boogie-wit-da-hoodie-feat-trey-songz-robin-thicke-lyrics/\n", + "https://www.songlyrics.com/a-boy-and-his-kite-lyrics/\n", + "https://www.songlyrics.com/a-boy-and-his-sid-lyrics/\n", + "https://www.songlyrics.com/a-boy-and-the-anything-muppets-lyrics/\n", + "https://www.songlyrics.com/a-boy-named-john-lyrics/\n", + "https://www.songlyrics.com/a-boy-s-song-lyrics/\n", + "https://www.songlyrics.com/a-brand-lyrics/\n", + "https://www.songlyrics.com/a-breach-of-silence-lyrics/\n", + "https://www.songlyrics.com/a-breakaway-lyrics/\n", + "https://www.songlyrics.com/a-bridge-too-far-lyrics/\n", + "https://www.songlyrics.com/a-brighter-escape-lyrics/\n", + "https://www.songlyrics.com/a-brighter-escape-feat-peyton-justine-lyrics/\n", + "https://www.songlyrics.com/a-brighter-life-lyrics/\n", + "https://www.songlyrics.com/a-brokeheart-pro-lyrics/\n", + "https://www.songlyrics.com/a-broken-silence-lyrics/\n", + "https://www.songlyrics.com/a-broken-silence-feat-ozi-batla-lyrics/\n", + "https://www.songlyrics.com/a-broken-silence-feat-patriarch-lyrics/\n", + "https://www.songlyrics.com/a-broken-silence-feat-tim-freedman-lyrics/\n", + "https://www.songlyrics.com/a-broken-silence-feat-tyron-woolf-lyrics/\n", + "https://www.songlyrics.com/a-bronx-tale-lyrics/\n", + "https://www.songlyrics.com/a-bullet-for-pretty-boy-lyrics/\n", + "https://www.songlyrics.com/a-burning-water-lyrics/\n", + "https://www.songlyrics.com/a-call-to-sincerity-lyrics/\n", + "https://www.songlyrics.com/a-calm-awakening-lyrics/\n", + "https://www.songlyrics.com/a-camp-lyrics/\n", + "https://www.songlyrics.com/a-canorous-quintet-lyrics/\n", + "https://www.songlyrics.com/a-capella-lyrics/\n", + "https://www.songlyrics.com/a-capella-boazii-lyrics/\n", + "https://www.songlyrics.com/a-capella-science-lyrics/\n", + "https://www.songlyrics.com/a-cappella-angels-lyrics/\n", + "https://www.songlyrics.com/a-cappella-christmas-carolers-feat-angela-burkart-lyrics/\n", + "https://www.songlyrics.com/a-case-of-grenada-lyrics/\n", + "https://www.songlyrics.com/a-celtic-christmas-lyrics/\n", + "https://www.songlyrics.com/a-certain-energy-lyrics/\n", + "https://www.songlyrics.com/news/top-songs/all-time/\n", + "https://www.songlyrics.com/news/top-songs/all-time/\n", + "https://www.songlyrics.com/news/top-songs/2011/\n", + "https://www.songlyrics.com/news/top-songs/2000/\n", + "https://www.songlyrics.com/news/top-songs/1990/\n", + "https://www.songlyrics.com/news/top-songs/1980/\n", + "https://www.songlyrics.com/news/top-songs/1970/\n", + "https://www.songlyrics.com/news/top-songs/1960/\n", + "https://www.songlyrics.com/news/top-songs/1950/\n", + "/rock-lyrics.php\n", + "/r-and-b-lyrics.php\n", + "/country-music-lyrics.php\n", + "/hip-hop-rap-lyrics.php\n", + "/pop-lyrics.php\n", + "/christian-lyrics.php\n", + "/top-songs-lyrics.html\n", + "/top-artists-lyrics.html\n", + "/top-albums-lyrics.html\n", + "/top-upcoming-songs.html\n", + "/top-upcoming-albums.html\n", + "/top100.php\n", + "/news/advertise/\n", + "/news/featured-blogs/\n", + "/news/contact-us/\n", + "/news\n", + "/privacy.php\n", + "/termsconditions.php\n", + "https://www.facebook.com/SongLyrics\n", + "https://twitter.com/#!/songlyrics\n", + "/about.php\n", + "https://www.soundmedia.com/\n", + "/a/\n", + "/b/\n", + "/c/\n", + "/d/\n", + "/e/\n", + "/f/\n", + "/g/\n", + "/h/\n", + "/i/\n", + "/j/\n", + "/k/\n", + "/l/\n", + "/m/\n", + "/n/\n", + "/o/\n", + "/p/\n", + "/q/\n", + "/r/\n", + "/s/\n", + "/t/\n", + "/u/\n", + "/v/\n", + "/w/\n", + "/x/\n", + "/y/\n", + "/z/\n", + "/0/\n" + ] + } + ], + "source": [ + "for page in pages:\n", + " \n", + " html = requests.get(\"http://www.songlyrics.com\"+page).text\n", + " soup = BeautifulSoup(html, 'html')\n", + " for x in soup.find_all('a'):\n", + " if x.get(\"href\") is not None:\n", + " print(x['href'])\n", + " \n", + " break\n", + " " + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "#### Filtering for full urls\n", + "Notice also that artist's urls are terminated by the word 'lyrics'. We'll use this regularity, too. Also, since we are digging into the data for a given artist, it's time to create our data structure. Each artist will be a separate data dictionary, and we'll start by storing their name and the url for their main page. For an individual artist, the data schema will be: \n", + "```\n", + "{\n", + " \"Artist\": name,\n", + " \"url\": artist-url,\n", + " \"Songs\": {\n", + " title1: {\n", + " \"Title\": title1,\n", + " \"url\": title1-url,\n", + " \"Lyrics\": title1-lyrics,\n", + " \"Artist\": title1-artist,\n", + " \"Genre\": title1-genre,\n", + " \"Album\": title1-album,\n", + " ...\n", + " },\n", + " ...\n", + " }\n", + "}\n", + "```\n", + "where as it turns out, we will be able to store all additional meta-data attributes that are present, like \"Genre\", \"Album\", \"Note\", etc." + ] + }, + { + "cell_type": "code", + "execution_count": 18, + "metadata": { + "scrolled": true + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "/adele-lyrics/\n" + ] + } + ], + "source": [ + "for page in pages:\n", + " html = requests.get(\"http://www.songlyrics.com\"+page).text\n", + " soup = BeautifulSoup(html, 'lxml')\n", + " for x in soup.find_all('a'):\n", + " if re.search(\"-lyrics/$\",x.get(\"href\", \"NOLINK\")):\n", + " data = {\n", + " \"Artist\": x.text,\n", + " \"url\": x['href'],\n", + " \"Songs\": {}\n", + " }\n", + " break\n", + " break\n", + "print(data[\"url\"])" + ] + }, + { + "cell_type": "code", + "execution_count": 81, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "'Adele'" + ] + }, + "execution_count": 81, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "data[\"Artist\"]" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "#### Links for an artist\n", + "Now it's time to find the songs for the individual artists. These are once again the links, so let's see. It looks like the song links tend to have the `'itemprop'` attribute, but is this enought to cleanly filter them?" + ] + }, + { + "cell_type": "code", + "execution_count": 82, + "metadata": { + "scrolled": true + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "<a href=\"/\">Lyrics</a>\n", + "<a href=\"/top-songs-lyrics.html\">Popular Song Lyrics</a>\n", + "<a href=\"/top100.php\">Billboard Hot 100</a>\n", + "<a href=\"/top-upcoming-songs.html\">Upcoming Lyrics</a>\n", + "<a href=\"/latestAddedSongs\">Recently Added</a>\n", + "<a href=\"/news/top-songs/2011/\">Top Lyrics of 2011</a>\n", + "<a href=\"/news/top-songs/2010/\">Top Lyrics of 2010</a>\n", + "<a href=\"/news/top-songs/2009/\">Top Lyrics of 2009</a>\n", + "<a href=\"/news/top-songs/all-time/\">More »</a>\n", + "<a href=\"/top-artists-lyrics.html\">Artists</a>\n", + "<a href=\"/top-artists-lyrics.html\">Popular Artists</a>\n", + "<a href=\"/a/\">Artists A-Z</a>\n", + "<a href=\"/top-albums-lyrics.html\">Popular Albums</a>\n", + "<a href=\"/top-upcoming-albums.html\">Upcoming Albums</a>\n", + "<a href=\"/adele-lyrics/\">Adele</a>\n", + "<a href=\"/rihanna-lyrics/\">Rihanna</a>\n", + "<a href=\"/katy-perry-lyrics/\">Katy Perry</a>\n", + "<a href=\"/lady-gaga-lyrics/\">Lady Gaga</a>\n", + "<a href=\"/lil-wayne-lyrics/\">Lil Wayne</a>\n", + "<a href=\"/musicgenres.php\">Genres</a>\n", + "<a href=\"/rock-lyrics.php\" title=\"Rock Lyrics\">Rock</a>\n", + "<a href=\"/r-and-b-lyrics.php\" title=\"R&B Lyrics\">R&B</a>\n", + "<a href=\"/country-music-lyrics.php\" title=\"Country Lyrics\">Country</a>\n", + "<a href=\"/hip-hop-rap-lyrics.php\" title=\"Hip Hop and Rap Lyrics\">Hip Hop/Rap</a>\n", + "<a href=\"/pop-lyrics.php\" title=\"Pop Lyrics\">Pop</a>\n", + "<a href=\"/christian-lyrics.php\" title=\"Christian Lyrics\">Christian</a>\n", + "<a href=\"/dance-lyrics.php\" title=\"Dance Lyrics\">Dance</a>\n", + "<a href=\"/latin-lyrics.php\" title=\"Latin Lyrics\">Latin</a>\n", + "<a href=\"/musicgenres.php\" title=\"All Genre Charts\">All Genres »</a>\n", + "<a href=\"/news/\">News</a>\n", + "<a href=\"/news/\">All News</a>\n", + "<a href=\"/news/category/news-roundup/\">Daily Roundup</a>\n", + "<a href=\"/news/album-reviews/\">Reviews</a>\n", + "<a href=\"/news/album-reviews/\">Album Reviews</a>\n", + "<a href=\"/news/category/song-reviews/\">Song Reviews</a>\n", + "<a href=\"/news/category/spotlight/\">Spotlight</a>\n", + "<a class=\"btn\" href=\"/member-login.php\" rel=\"nofollow\">Sign In</a>\n", + "<a class=\"btn\" href=\"/member-register.php\" rel=\"nofollow\">Register</a>\n", + "<a href=\"https://www.facebook.com/SongLyrics\">Facebook</a>\n", + "<a href=\"/news/advertise/\">Advertise</a>\n", + "<a href=\"/news/submit-lyrics/\">Submit Lyrics</a>\n", + "<a href=\"#nav\" title=\"Show navigation\">Show navigation\n", + "\t\t\t\t\t<i class=\"line-1 line\"></i>\n", + "<i class=\"line-2 line\"></i>\n", + "<i class=\"line-3 line\"></i>\n", + "</a>\n", + "<a class=\"hide\" href=\"#\" title=\"Hide navigation\">Hide navigation\n", + "\t\t\t\t\t<i class=\"line-1 line\"></i>\n", + "<i class=\"line-2 line\"></i>\n", + "<i class=\"line-3 line\"></i>\n", + "</a>\n", + "<a aria-haspopup=\"true\" href=\"/\">Lyrics</a>\n", + "<a href=\"/top-songs-lyrics.html\">Popular Song Lyrics</a>\n", + "<a href=\"/top100.php\">Billboard Hot 100</a>\n", + "<a href=\"/top-upcoming-songs.html\">Upcoming Lyrics</a>\n", + "<a href=\"/latestAddedSongs\">Recently Added</a>\n", + "<a href=\"/news/top-songs/2011/\">Top Lyrics of 2011</a>\n", + "<a href=\"/news/top-songs/2010/\">Top Lyrics of 2010</a>\n", + "<a href=\"/news/top-songs/2009/\">Top Lyrics of 2009</a>\n", + "<a href=\"/news/top-songs/all-time/\">More »</a>\n", + "<a aria-haspopup=\"true\" href=\"/top-artists-lyrics.html\">Artists</a>\n", + "<a href=\"/top-artists-lyrics.html\">Popular Artists</a>\n", + "<a href=\"/a/\">Artists A-Z</a>\n", + "<a href=\"/top-albums-lyrics.html\">Popular Albums</a>\n", + "<a href=\"/top-upcoming-albums.html\">Upcoming Albums</a>\n", + "<a href=\"/adele-lyrics/\">Adele</a>\n", + "<a href=\"/rihanna-lyrics/\">Rihanna</a>\n", + "<a href=\"/katy-perry-lyrics/\">Katy Perry</a>\n", + "<a href=\"/lady-gaga-lyrics/\">Lady Gaga</a>\n", + "<a href=\"/lil-wayne-lyrics/\">Lil Wayne</a>\n", + "<a aria-haspopup=\"true\" href=\"/musicgenres.php\">Genres</a>\n", + "<a href=\"/rock-lyrics.php\" title=\"Rock Lyrics\">Rock</a>\n", + "<a href=\"/r-and-b-lyrics.php\" title=\"R&B Lyrics\">R&B</a>\n", + "<a href=\"/country-music-lyrics.php\" title=\"Country Lyrics\">Country</a>\n", + "<a href=\"/hip-hop-rap-lyrics.php\" title=\"Hip Hop and Rap Lyrics\">Hip Hop/Rap</a>\n", + "<a href=\"/pop-lyrics.php\" title=\"Pop Lyrics\">Pop</a>\n", + "<a href=\"/christian-lyrics.php\" title=\"Christian Lyrics\">Christian</a>\n", + "<a href=\"/dance-lyrics.php\" title=\"Dance Lyrics\">Dance</a>\n", + "<a href=\"/latin-lyrics.php\" title=\"Latin Lyrics\">Latin</a>\n", + "<a href=\"/musicgenres.php\" title=\"All Genre Charts\">All Genres »</a>\n", + "<a aria-haspopup=\"true\" href=\"/news/\">News</a>\n", + "<a href=\"/news/\">All News</a>\n", + "<a href=\"/news/category/news-roundup/\">Daily Roundup</a>\n", + "<a aria-haspopup=\"true\" href=\"/news/album-reviews/\">Reviews</a>\n", + "<a href=\"/news/album-reviews/\">Album Reviews</a>\n", + "<a href=\"/news/category/song-reviews/\">Song Reviews</a>\n", + "<a aria-haspopup=\"true\" href=\"/news/category/spotlight/\">Spotlight</a>\n", + "<a aria-haspopup=\"true\" href=\"https://www.facebook.com/SongLyrics\">Facebook</a>\n", + "<a aria-haspopup=\"true\" href=\"/news/advertise/\">Advertise</a>\n", + "<a aria-haspopup=\"true\" href=\"/news/submit-lyrics/\">Submit Lyrics</a>\n", + "<a href=\"/\" id=\"logo\" title=\"Lyrics\">Song Lyrics</a>\n", + "<a href=\"https://www.facebook.com/SongLyrics\" id=\"fbbox-likebutton\" target=\"_blank\">Like</a>\n", + "<a href=\"https://www.songlyrics.com/\" itemprop=\"item\"><span itemprop=\"name\">Song Lyrics</span></a>\n", + "<a href=\"https://www.songlyrics.com/a/41/\" itemprop=\"item\"><span itemprop=\"name\">Artists - A</span></a>\n", + "<a class=\"pw_facebook\"></a>\n", + "<a class=\"pw_twitter\"></a>\n", + "<a class=\"pw_email\"></a>\n", + "<a class=\"pw_googleplus\"></a>\n", + "<a href=\"https://www.songlyrics.com/rock-lyrics.php\" title=\"Rock Lyrics\">Rock</a>\n", + "<a href=\"https://www.songlyrics.com/adele/one-only-lyrics/\" itemprop=\"url\" title=\"One & Only Lyrics Adele\">One & Only</a>\n", + "<a href=\"https://www.songlyrics.com/adele/i-can-t-make-you-love-me-live-lyrics/\" itemprop=\"url\" title=\"I Can't Make You Love Me [Live] Lyrics Adele\">I Can't Make You Love Me [Live]</a>\n", + "<a href=\"https://www.songlyrics.com/adele/he-won-t-go-lyrics/\" itemprop=\"url\" title=\"He Won't Go Lyrics Adele\">He Won't Go</a>\n", + "<a href=\"https://www.songlyrics.com/adele/hiding-my-heart-lyrics/\" itemprop=\"url\" title=\"Hiding My Heart Lyrics Adele\">Hiding My Heart</a>\n", + "<a href=\"https://www.songlyrics.com/adele/rolling-in-the-deep-single-lyrics/\" itemprop=\"url\" title=\"Rolling In The Deep (Single) Lyrics Adele\">Rolling In The Deep (Single)</a>\n", + "<a href=\"https://www.songlyrics.com/adele/need-you-now-lyrics/\" itemprop=\"url\" title=\"Need You Now Lyrics Adele\">Need You Now</a>\n", + "<a href=\"https://www.songlyrics.com/adele/i-found-a-boy-lyrics/\" itemprop=\"url\" title=\"I Found A Boy Lyrics Adele\">I Found A Boy</a>\n", + "<a href=\"https://www.songlyrics.com/adele/first-love-lyrics/\" itemprop=\"url\" title=\"First Love Lyrics Adele\">First Love</a>\n", + "<a href=\"https://www.songlyrics.com/adele/best-for-last-lyrics/\" itemprop=\"url\" title=\"Best For Last Lyrics Adele\">Best For Last</a>\n", + "<a href=\"https://www.songlyrics.com/adele/daydreamer-lyrics/\" itemprop=\"url\" title=\"Daydreamer Lyrics Adele\">Daydreamer</a>\n", + "<a href=\"https://www.songlyrics.com/adele/right-as-rain-lyrics/\" itemprop=\"url\" title=\"Right As Rain Lyrics Adele\">Right As Rain</a>\n", + "<a href=\"https://www.songlyrics.com/adele/melt-my-heart-to-stone-lyrics/\" itemprop=\"url\" title=\"Melt My Heart To Stone Lyrics Adele\">Melt My Heart To Stone</a>\n", + "<a href=\"https://www.songlyrics.com/adele/tired-lyrics/\" itemprop=\"url\" title=\"Tired Lyrics Adele\">Tired</a>\n", + "<a href=\"https://www.songlyrics.com/adele/cold-shoulder-lyrics/\" itemprop=\"url\" title=\"Cold Shoulder Lyrics Adele\">Cold Shoulder</a>\n", + "<a href=\"https://www.songlyrics.com/adele/melt-my-heart-to-stone-remix-lyrics/\" itemprop=\"url\" title=\"Melt My Heart To Stone (Remix) Lyrics Adele\">Melt My Heart To Stone (Remix)</a>\n", + "<a href=\"https://www.songlyrics.com/adele/set-fire-to-the-rain-moto-blanco-edit-lyrics/\" itemprop=\"url\" title=\"Set Fire to the Rain (Moto Blanco Edit) Lyrics Adele\">Set Fire to the Rain (Moto Blanco Edit)</a>\n", + "<a href=\"https://www.songlyrics.com/adele/that-s-it-i-quit-i-m-movin-on-lyrics/\" itemprop=\"url\" title=\"That's It I Quit I'm Movin' On Lyrics Adele\">That's It I Quit I'm Movin' On</a>\n", + "<a href=\"https://www.songlyrics.com/adele/black-and-gold-lyrics/\" itemprop=\"url\" title=\"Black And Gold Lyrics Adele\">Black And Gold</a>\n", + "<a href=\"https://www.songlyrics.com/adele/set-fire-to-the-rain-remix-lyrics/\" itemprop=\"url\" title=\"Set Fire To The Rain Remix Lyrics Adele\">Set Fire To The Rain Remix</a>\n", + "<a href=\"https://www.songlyrics.com/adele/i-can-t-make-you-love-me-cover-lyrics/\" itemprop=\"url\" title=\"I Can't Make You Love Me (Cover) Lyrics Adele\">I Can't Make You Love Me (Cover)</a>\n", + "<a href=\"https://www.songlyrics.com/adele/many-shades-of-black-lyrics/\" itemprop=\"url\" title=\"Many Shades Of Black Lyrics Adele\">Many Shades Of Black</a>\n", + "<a href=\"https://www.songlyrics.com/adele/set-fire-to-the-rain-thomas-gold-dub-lyrics/\" itemprop=\"url\" title=\"Set Fire to the Rain (Thomas Gold Dub) Lyrics Adele\">Set Fire to the Rain (Thomas Gold Dub)</a>\n", + "<a href=\"https://www.songlyrics.com/adele/now-and-then-lyrics/\" itemprop=\"url\" title=\"Now And Then Lyrics Adele\">Now And Then</a>\n", + "<a href=\"https://www.songlyrics.com/adele/set-fire-to-the-rain-moto-blanco-remix-lyrics/\" itemprop=\"url\" title=\"Set Fire to the Rain (Moto Blanco Remix) Lyrics Adele\">Set Fire to the Rain (Moto Blanco Remix)</a>\n", + "<a href=\"https://www.songlyrics.com/adele/one-and-only-lyrics/\" itemprop=\"url\" title=\"One and Only Lyrics Adele\">One and Only</a>\n", + "<a href=\"https://www.songlyrics.com/adele/love-song-lyrics/\" itemprop=\"url\" title=\"Love Song Lyrics Adele\">Love Song</a>\n", + "<a href=\"https://www.songlyrics.com/adele/lovesong-lyrics/\" itemprop=\"url\" title=\"Lovesong Lyrics Adele\">Lovesong</a>\n", + "<a href=\"https://www.songlyrics.com/adele/someone-like-you-live-acoustic-lyrics/\" itemprop=\"url\" title=\"Someone Like You (live acoustic) Lyrics Adele\">Someone Like You (live acoustic)</a>\n", + "<a href=\"https://www.songlyrics.com/adele/turning-tables-live-acoustic-lyrics/\" itemprop=\"url\" title=\"Turning Tables (live acoustic) Lyrics Adele\">Turning Tables (live acoustic)</a>\n", + "<a href=\"https://www.songlyrics.com/adele/rolling-in-the-deep-the-lost-boys-remix-lyrics/\" itemprop=\"url\" title=\"Rolling in the Deep (The Lost Boys remix) Lyrics Adele\">Rolling in the Deep (The Lost Boys remix)</a>\n", + "<a href=\"https://www.songlyrics.com/adele/hometown-glory-lyrics/\" itemprop=\"url\" title=\"Hometown Glory Lyrics Adele\">Hometown Glory</a>\n", + "<a href=\"https://www.songlyrics.com/adele/rolling-in-the-deep-nutone-remix-lyrics/\" itemprop=\"url\" title=\"Rolling in the Deep (Nu:Tone remix) Lyrics Adele\">Rolling in the Deep (Nu:Tone remix)</a>\n", + "<a href=\"https://www.songlyrics.com/adele/fool-that-i-am-lyrics/\" itemprop=\"url\" title=\"Fool That I Am Lyrics Adele\">Fool That I Am</a>\n", + "<a href=\"https://www.songlyrics.com/adele/rumour-has-it-lyrics/\" itemprop=\"url\" title=\"Rumour Has It Lyrics Adele\">Rumour Has It</a>\n", + "<a href=\"https://www.songlyrics.com/adele/take-it-all-lyrics/\" itemprop=\"url\" title=\"Take It All Lyrics Adele\">Take It All</a>\n", + "<a href=\"https://www.songlyrics.com/adele/melt-my-heart-to-stone-live-at-hotel-cafe-lyrics/\" itemprop=\"url\" title=\"Melt My Heart to Stone (Live At Hotel Cafe) Lyrics Adele\">Melt My Heart to Stone (Live At Hotel Cafe)</a>\n", + "<a href=\"https://www.songlyrics.com/adele/chasing-pavements-live-at-hotel-cafe-lyrics/\" itemprop=\"url\" title=\"Chasing Pavements (Live At Hotel Cafe) Lyrics Adele\">Chasing Pavements (Live At Hotel Cafe)</a>\n", + "<a href=\"https://www.songlyrics.com/adele/cold-shoulder-basement-jaxx-classic-edit-lyrics/\" itemprop=\"url\" title=\"Cold Shoulder (Basement Jaxx Classic Edit) Lyrics Adele\">Cold Shoulder (Basement Jaxx Classic Edit)</a>\n", + "<a href=\"https://www.songlyrics.com/adele/rolling-in-the-deep-downtown-london-remix-extended-lyrics/\" itemprop=\"url\" title=\"Rolling in the Deep (Downtown London remix extended) Lyrics Adele\">Rolling in the Deep (Downtown London remix extended)</a>\n", + "<a href=\"https://www.songlyrics.com/adele/set-fire-to-the-rain-moto-blanco-club-remix-lyrics/\" itemprop=\"url\" title=\"Set Fire to the Rain (Moto Blanco club remix) Lyrics Adele\">Set Fire to the Rain (Moto Blanco club remix)</a>\n", + "<a href=\"https://www.songlyrics.com/adele/someone-like-you-dj-bratkovsky-remix-lyrics/\" itemprop=\"url\" title=\"Someone Like You (DJ Bratkovsky remix) Lyrics Adele\">Someone Like You (DJ Bratkovsky remix)</a>\n", + "<a href=\"https://www.songlyrics.com/adele/set-fire-to-the-rain-thomas-gold-remix-lyrics/\" itemprop=\"url\" title=\"Set Fire to the Rain (Thomas Gold remix) Lyrics Adele\">Set Fire to the Rain (Thomas Gold remix)</a>\n", + "<a href=\"https://www.songlyrics.com/adele/turning-tables-lyrics/\" itemprop=\"url\" title=\"Turning Tables Lyrics Adele\">Turning Tables</a>\n", + "<a href=\"https://www.songlyrics.com/adele/thats-it-i-quit-im-movin-on-live-at-hotel-cafe-lyrics/\" itemprop=\"url\" title=\"That’s It, I Quit, I’m Movin’ On (Live At Hotel Cafe) Lyrics Adele\">That’s It, I Quit, I’m Movin’ On (Live At Hotel Cafe)</a>\n", + "<a href=\"https://www.songlyrics.com/adele/cold-shoulder-basement-jaxx-dub-lyrics/\" itemprop=\"url\" title=\"Cold Shoulder (Basement Jaxx dub) Lyrics Adele\">Cold Shoulder (Basement Jaxx dub)</a>\n", + "<a href=\"https://www.songlyrics.com/adele/set-fire-to-the-rain-thomas-gold-mix-lyrics/\" itemprop=\"url\" title=\"Set Fire to the Rain (Thomas Gold mix) Lyrics Adele\">Set Fire to the Rain (Thomas Gold mix)</a>\n", + "<a href=\"https://www.songlyrics.com/adele/cold-shoulder-basement-jaxx-classic-remix-radio-edit-lyrics/\" itemprop=\"url\" title=\"Cold Shoulder (Basement Jaxx Classic remix) (radio edit) Lyrics Adele\">Cold Shoulder (Basement Jaxx Classic remix) (radio edit)</a>\n", + "<a href=\"https://www.songlyrics.com/adele/cold-shoulder-basement-jaxx-dubb-lyrics/\" itemprop=\"url\" title=\"Cold Shoulder (Basement Jaxx Dubb) Lyrics Adele\">Cold Shoulder (Basement Jaxx Dubb)</a>\n", + "<a href=\"https://www.songlyrics.com/adele/intro-lyrics/\" itemprop=\"url\" title=\"[intro] Lyrics Adele\">[intro]</a>\n", + "<a href=\"https://www.songlyrics.com/adele/rolling-in-the-deep-lyrics/\" itemprop=\"url\" title=\"Rolling in the Deep Lyrics Adele\">Rolling in the Deep</a>\n", + "<a href=\"https://www.songlyrics.com/adele/skyfall-lyrics/\" itemprop=\"url\" title=\"Skyfall Lyrics Adele\">Skyfall</a>\n", + "<a href=\"https://www.songlyrics.com/adele/thats-it-i-quit-im-moving-on-lyrics/\" itemprop=\"url\" title=\"That’s It, I Quit, I’m Moving On Lyrics Adele\">That’s It, I Quit, I’m Moving On</a>\n", + "<a href=\"https://www.songlyrics.com/adele/that-s-it-i-quit-i-m-moving-on-lyrics/\" itemprop=\"url\" title=\"That's It, I Quit, I'm Moving On Lyrics Adele\">That's It, I Quit, I'm Moving On</a>\n", + "<a href=\"https://www.songlyrics.com/adele/rolling-in-the-deep-villa-remix-lyrics/\" itemprop=\"url\" title=\"Rolling in the Deep (Villa remix) Lyrics Adele\">Rolling in the Deep (Villa remix)</a>\n", + "<a href=\"https://www.songlyrics.com/adele/rolling-in-the-deep-a-cappella-lyrics/\" itemprop=\"url\" title=\"Rolling in the Deep (a cappella) Lyrics Adele\">Rolling in the Deep (a cappella)</a>\n", + "<a href=\"https://www.songlyrics.com/adele/set-fire-to-the-rain-moto-blanco-radio-edit-lyrics/\" itemprop=\"url\" title=\"Set Fire to the Rain (Moto Blanco radio edit) Lyrics Adele\">Set Fire to the Rain (Moto Blanco radio edit)</a>\n", + "<a href=\"https://www.songlyrics.com/adele/rolling-in-the-deep-downtown-london-remix-lyrics/\" itemprop=\"url\" title=\"Rolling in the Deep (Downtown London remix) Lyrics Adele\">Rolling in the Deep (Downtown London remix)</a>\n", + "<a href=\"https://www.songlyrics.com/adele/rolling-in-the-deep-zamami-remix-lyrics/\" itemprop=\"url\" title=\"Rolling in the Deep (Zamami remix) Lyrics Adele\">Rolling in the Deep (Zamami remix)</a>\n", + "<a href=\"https://www.songlyrics.com/adele/rolling-in-the-deep-damn-you-mongolians-remix-lyrics/\" itemprop=\"url\" title=\"Rolling in the Deep (Damn You Mongolians remix) Lyrics Adele\">Rolling in the Deep (Damn You Mongolians remix)</a>\n", + "<a href=\"https://www.songlyrics.com/adele/rolling-in-the-deep-keljet-remix-lyrics/\" itemprop=\"url\" title=\"Rolling in the Deep (Keljet remix) Lyrics Adele\">Rolling in the Deep (Keljet remix)</a>\n", + "<a href=\"https://www.songlyrics.com/adele/rolling-in-the-deep-dan-clare-club-remix-lyrics/\" itemprop=\"url\" title=\"Rolling in the Deep (Dan Clare club remix) Lyrics Adele\">Rolling in the Deep (Dan Clare club remix)</a>\n", + "<a href=\"https://www.songlyrics.com/adele/rolling-in-the-deep-spectrasoul-remix-lyrics/\" itemprop=\"url\" title=\"Rolling in the Deep (SpectraSoul remix) Lyrics Adele\">Rolling in the Deep (SpectraSoul remix)</a>\n", + "<a href=\"https://www.songlyrics.com/adele/rolling-in-the-deep-dj-megamix-remix-lyrics/\" itemprop=\"url\" title=\"Rolling in the Deep (DJ megamix remix) Lyrics Adele\">Rolling in the Deep (DJ megamix remix)</a>\n", + "<a href=\"https://www.songlyrics.com/adele/don-t-you-remember-lyrics/\" itemprop=\"url\" title=\"Don't You Remember Lyrics Adele\">Don't You Remember</a>\n", + "<a href=\"https://www.songlyrics.com/adele/crazy-for-you-live-at-hotel-cafe-lyrics/\" itemprop=\"url\" title=\"Crazy for You (Live At Hotel Cafe) Lyrics Adele\">Crazy for You (Live At Hotel Cafe)</a>\n", + "<a href=\"https://www.songlyrics.com/adele/right-as-rain-live-at-hotel-cafe-lyrics/\" itemprop=\"url\" title=\"Right As Rain (Live At Hotel Cafe) Lyrics Adele\">Right As Rain (Live At Hotel Cafe)</a>\n", + "<a href=\"https://www.songlyrics.com/adele/skyfall-full-length-lyrics/\" itemprop=\"url\" title=\"Skyfall - Full Length Lyrics Adele\">Skyfall - Full Length</a>\n", + "<a href=\"https://www.songlyrics.com/adele/make-you-feel-my-love-live-at-wxpn-lyrics/\" itemprop=\"url\" title=\"Make You Feel My Love (Live at WXPN) Lyrics Adele\">Make You Feel My Love (Live at WXPN)</a>\n", + "<a href=\"https://www.songlyrics.com/adele/cold-shoulder-rusko-remix-lyrics/\" itemprop=\"url\" title=\"Cold Shoulder [Rusko Remix] Lyrics Adele\">Cold Shoulder [Rusko Remix]</a>\n", + "<a href=\"https://www.songlyrics.com/adele/cold-shoulder-basement-jaxx-classic-remix-lyrics/\" itemprop=\"url\" title=\"Cold Shoulder [Basement Jaxx Classic Remix] Lyrics Adele\">Cold Shoulder [Basement Jaxx Classic Remix]</a>\n", + "<a href=\"https://www.songlyrics.com/adele/hometown-glory-high-contrast-remix-instrumental-lyrics/\" itemprop=\"url\" title=\"Hometown Glory (High Contrast Remix Instrumental) Lyrics Adele\">Hometown Glory (High Contrast Remix Instrumental)</a>\n", + "<a href=\"https://www.songlyrics.com/adele/hometown-glory-high-contrast-remix-instrumental-lyrics/\" itemprop=\"url\" title=\"Hometown Glory [High Contrast Remix Instrumental] Lyrics Adele\">Hometown Glory [High Contrast Remix Instrumental]</a>\n", + "<a href=\"https://www.songlyrics.com/adele/hometown-glory-high-contrast-remix-instrumental-lyrics/\" itemprop=\"url\" title=\"Hometown Glory (High Contrast Remix) [Instrumental] Lyrics Adele\">Hometown Glory (High Contrast Remix) [Instrumental]</a>\n", + "<a href=\"https://www.songlyrics.com/adele/hometown-glory-high-contrast-mix-lyrics/\" itemprop=\"url\" title=\"Hometown Glory (High Contrast mix) Lyrics Adele\">Hometown Glory (High Contrast mix)</a>\n", + "<a href=\"https://www.songlyrics.com/adele/painting-pictures-lyrics/\" itemprop=\"url\" title=\"Painting Pictures Lyrics Adele\">Painting Pictures</a>\n", + "<a href=\"https://www.songlyrics.com/adele/rolling-in-the-deep-villa-remix-lyrics/\" itemprop=\"url\" title=\"Rolling in the Deep - Villa Remix Lyrics Adele\">Rolling in the Deep - Villa Remix</a>\n", + "<a href=\"https://www.songlyrics.com/adele/rolling-in-the-deep-nutone-remix-lyrics/\" itemprop=\"url\" title=\"Rolling In The Deep - Nu:Tone Remix Lyrics Adele\">Rolling In The Deep - Nu:Tone Remix</a>\n", + "<a href=\"https://www.songlyrics.com/adele/rolling-in-the-deep-jamie-xx-remix-lyrics/\" itemprop=\"url\" title=\"Rolling In The Deep - Jamie XX Remix Lyrics Adele\">Rolling In The Deep - Jamie XX Remix</a>\n", + "<a href=\"https://www.songlyrics.com/adele/pennies-from-heaven-j-burke-a-johnston-lyrics/\" itemprop=\"url\" title=\"Pennies From Heaven (J. Burke & A. Johnston) Lyrics Adele\">Pennies From Heaven (J. Burke & A. Johnston)</a>\n", + "<a href=\"https://www.songlyrics.com/adele/set-fire-to-the-rain-moto-blanco-edit-lyrics/\" itemprop=\"url\" title=\"Set Fire To The Rain - Moto Blanco Edit Lyrics Adele\">Set Fire To The Rain - Moto Blanco Edit</a>\n", + "<a href=\"https://www.songlyrics.com/adele/someone-like-you-live-at-the-brits-2011-lyrics/\" itemprop=\"url\" title=\"Someone Like You (Live at the Brits 2011) Lyrics Adele\">Someone Like You (Live at the Brits 2011)</a>\n", + "<a href=\"https://www.songlyrics.com/adele/rolling-in-the-deep-radio-edit-lyrics/\" itemprop=\"url\" title=\"Rolling In the Deep (Radio Edit) Lyrics Adele\">Rolling In the Deep (Radio Edit)</a>\n", + "<a href=\"https://www.songlyrics.com/adele/if-it-hadnt-been-for-love-lyrics/\" itemprop=\"url\" title=\"If It Hadnt Been For Love Lyrics Adele\">If It Hadnt Been For Love</a>\n", + "<a href=\"https://www.songlyrics.com/adele/fool-that-i-am-live-lyrics/\" itemprop=\"url\" title=\"Fool That I Am (live) Lyrics Adele\">Fool That I Am (live)</a>\n", + "<a href=\"https://www.songlyrics.com/adele/hometown-glory-axwell-mix-lyrics/\" itemprop=\"url\" title=\"Hometown Glory (Axwell mix) Lyrics Adele\">Hometown Glory (Axwell mix)</a>\n", + "<a href=\"https://www.songlyrics.com/adele/cold-shoulder-rusko-remix-lyrics/\" itemprop=\"url\" title=\"Cold Shoulder (Rusko remix) Lyrics Adele\">Cold Shoulder (Rusko remix)</a>\n", + "<a href=\"https://www.songlyrics.com/adele/someone-like-you-live-from-the-brit-awards-2011-lyrics/\" itemprop=\"url\" title=\"Someone Like You - Live From The Brit Awards 2011 Lyrics Adele\">Someone Like You - Live From The Brit Awards 2011</a>\n", + "<a href=\"https://www.songlyrics.com/adele/cold-shoulder-basement-jaxx-dubb-lyrics/\" itemprop=\"url\" title=\"Cold Shoulder [Basement Jaxx DUBB] Lyrics Adele\">Cold Shoulder [Basement Jaxx DUBB]</a>\n", + "<a href=\"https://www.songlyrics.com/adele/dont-you-remember-lyrics/\" itemprop=\"url\" title=\"Dont You Remember Lyrics Adele\">Dont You Remember</a>\n", + "<a href=\"https://www.songlyrics.com/adele/that-s-it-i-quit-i-m-movin-on-live-at-hotel-cafe-lyrics/\" itemprop=\"url\" title=\"That's It, I Quit, I'm Movin' On (Live at Hotel Cafe) Lyrics Adele\">That's It, I Quit, I'm Movin' On (Live at Hotel Cafe)</a>\n", + "<a href=\"https://www.songlyrics.com/adele/hometown-glory-live-at-hotel-cafe-lyrics/\" itemprop=\"url\" title=\"Hometown Glory (Live At Hotel Cafe) Lyrics Adele\">Hometown Glory (Live At Hotel Cafe)</a>\n", + "<a href=\"https://www.songlyrics.com/adele/daydreamer-live-at-hotel-cafe-lyrics/\" itemprop=\"url\" title=\"Daydreamer (Live At Hotel Cafe) Lyrics Adele\">Daydreamer (Live At Hotel Cafe)</a>\n", + "<a href=\"https://www.songlyrics.com/adele/make-you-feel-my-love-live-at-hotel-cafe-lyrics/\" itemprop=\"url\" title=\"Make You Feel My Love (Live At Hotel Cafe) Lyrics Adele\">Make You Feel My Love (Live At Hotel Cafe)</a>\n", + "<a href=\"https://www.songlyrics.com/adele/my-same-live-at-hotel-cafe-lyrics/\" itemprop=\"url\" title=\"My Same (Live At Hotel Cafe) Lyrics Adele\">My Same (Live At Hotel Cafe)</a>\n", + "<a href=\"https://www.songlyrics.com/adele/set-fire-to-the-rain-thomas-gold-remix-lyrics/\" itemprop=\"url\" title=\"Set Fire To The Rain - Thomas Gold Remix Lyrics Adele\">Set Fire To The Rain - Thomas Gold Remix</a>\n", + "<a href=\"https://www.songlyrics.com/adele/hometown-glory-high-contrast-remix-lyrics/\" itemprop=\"url\" title=\"Hometown Glory (High Contrast remix) Lyrics Adele\">Hometown Glory (High Contrast remix)</a>\n", + "<a href=\"https://www.songlyrics.com/adele/cold-shoulder-basement-jaxx-classic-remix-lyrics/\" itemprop=\"url\" title=\"Cold Shoulder (Basement Jaxx Classic remix) Lyrics Adele\">Cold Shoulder (Basement Jaxx Classic remix)</a>\n", + "<a href=\"https://www.songlyrics.com/adele/hometown-glory-axwell-club-mix-lyrics/\" itemprop=\"url\" title=\"Hometown Glory (Axwell club mix) Lyrics Adele\">Hometown Glory (Axwell club mix)</a>\n", + "<a href=\"https://www.songlyrics.com/adele/hometown-glory-axwell-radio-edit-lyrics/\" itemprop=\"url\" title=\"Hometown Glory (Axwell radio edit) Lyrics Adele\">Hometown Glory (Axwell radio edit)</a>\n", + "<a href=\"https://www.songlyrics.com/adele/hometown-glory-high-contrast-remix-instrumental-lyrics/\" itemprop=\"url\" title=\"Hometown Glory (High Contrast remix) (instrumental) Lyrics Adele\">Hometown Glory (High Contrast remix) (instrumental)</a>\n", + "<a href=\"https://www.songlyrics.com/adele/cold-shoulder-out-of-office-remix-lyrics/\" itemprop=\"url\" title=\"Cold Shoulder (Out of Office remix) Lyrics Adele\">Cold Shoulder (Out of Office remix)</a>\n", + "<a href=\"https://www.songlyrics.com/adele/hometown-glory-axwell-remode-lyrics/\" itemprop=\"url\" title=\"Hometown Glory (Axwell remode) Lyrics Adele\">Hometown Glory (Axwell remode)</a>\n", + "<a href=\"https://www.songlyrics.com/adele/cold-shoulder-basement-jaxx-mix-lyrics/\" itemprop=\"url\" title=\"Cold Shoulder (Basement Jaxx Mix) Lyrics Adele\">Cold Shoulder (Basement Jaxx Mix)</a>\n", + "<a href=\"https://www.songlyrics.com/adele/hometown-glory-high-contrast-remix-lyrics/\" itemprop=\"url\" title=\"Hometown Glory [High Contrast Remix] Lyrics Adele\">Hometown Glory [High Contrast Remix]</a>\n", + "<a href=\"https://www.songlyrics.com/adele/make-you-feel-my-love-recorded-live-at-wxpn-lyrics/\" itemprop=\"url\" title=\"Make You Feel My Love - Recorded Live at WXPN Lyrics Adele\">Make You Feel My Love - Recorded Live at WXPN</a>\n", + "<a href=\"https://www.songlyrics.com/adele/dont-you-remember-lyrics/\" itemprop=\"url\" title=\"Don’t You Remember Lyrics Adele\">Don’t You Remember</a>\n", + "<a href=\"https://www.songlyrics.com/adele/now-then-lyrics/\" itemprop=\"url\" title=\"Now & Then Lyrics Adele\">Now & Then</a>\n", + "<a href=\"https://www.songlyrics.com/adele/hello-lyrics/\" itemprop=\"url\" title=\"Hello Lyrics Adele\">Hello</a>\n", + "<a href=\"https://www.songlyrics.com/adele/skyfall-full-length-lyrics/\" itemprop=\"url\" title=\"Skyfall (Full Length) Lyrics Adele\">Skyfall (Full Length)</a>\n", + "<a href=\"https://www.songlyrics.com/adele/rolling-in-the-deep-bounce-mix-lyrics/\" itemprop=\"url\" title=\"Rolling in the Deep (Bounce mix) Lyrics Adele\">Rolling in the Deep (Bounce mix)</a>\n", + "<a href=\"https://www.songlyrics.com/adele/promise-this-radio-1-live-lounge-special-lyrics/\" itemprop=\"url\" title=\"Promise This (Radio 1 Live Lounge Special) Lyrics Adele\">Promise This (Radio 1 Live Lounge Special)</a>\n", + "<a href=\"https://www.songlyrics.com/adele/never-gonna-leave-you-lyrics/\" itemprop=\"url\" title=\"Never Gonna Leave You Lyrics Adele\">Never Gonna Leave You</a>\n", + "<a href=\"https://www.songlyrics.com/adele/keep-burning-lyrics/\" itemprop=\"url\" title=\"Keep Burning Lyrics Adele\">Keep Burning</a>\n", + "<a href=\"https://www.songlyrics.com/adele/rolling-in-the-deep-awooga-mashup-lyrics/\" itemprop=\"url\" title=\"Rolling in the Deep (Awooga mashup) Lyrics Adele\">Rolling in the Deep (Awooga mashup)</a>\n", + "<a href=\"https://www.songlyrics.com/adele/cold-shoulder-album-lyrics/\" itemprop=\"url\" title=\"Cold Shoulder (album) Lyrics Adele\">Cold Shoulder (album)</a>\n", + "<a href=\"https://www.songlyrics.com/adele/when-we-were-young-lyrics/\" itemprop=\"url\" title=\"When We Were Young Lyrics Adele\">When We Were Young</a>\n", + "<a href=\"https://www.songlyrics.com/adele/send-my-love-to-your-new-lover-lyrics/\" itemprop=\"url\" title=\"Send My Love (To Your New Lover) Lyrics Adele\">Send My Love (To Your New Lover)</a>\n", + "<a href=\"https://www.songlyrics.com/adele/i-found-a-boy-bonus-track-lyrics/\" itemprop=\"url\" title=\"I Found a Boy (Bonus Track) Lyrics Adele\">I Found a Boy (Bonus Track)</a>\n", + "<a href=\"https://www.songlyrics.com/adele/crazy-for-you-lyrics/\" itemprop=\"url\" title=\"Crazy for You Lyrics Adele\">Crazy for You</a>\n", + "<a href=\"https://www.songlyrics.com/adele/someone-like-you-humanjive-remix-lyrics/\" itemprop=\"url\" title=\"Someone Like You (HumanJive Remix) Lyrics Adele\">Someone Like You (HumanJive Remix)</a>\n", + "<a href=\"https://www.songlyrics.com/adele/dont-get-me-started-lyrics/\" itemprop=\"url\" title=\"Don´t Get Me Started Lyrics Adele\">Don´t Get Me Started</a>\n", + "<a href=\"https://www.songlyrics.com/adele/set-fire-to-the-rain-live-at-the-royal-albert-hall-lyrics/\" itemprop=\"url\" title=\"Set Fire To the Rain (Live At the Royal Albert Hall) Lyrics Adele\">Set Fire To the Rain (Live At the Royal Albert Hall)</a>\n", + "<a href=\"https://www.songlyrics.com/adele/someone-like-you-live-at-the-brits-2011-lyrics/\" itemprop=\"url\" title=\"Someone Like You - Live at The Brits 2011 Lyrics Adele\">Someone Like You - Live at The Brits 2011</a>\n", + "<a href=\"https://www.songlyrics.com/adele/make-you-feel-my-love-live-at-wxpn-lyrics/\" itemprop=\"url\" title=\"Make You Feel My Love - Live at WXPN Lyrics Adele\">Make You Feel My Love - Live at WXPN</a>\n", + "<a href=\"https://www.songlyrics.com/adele/water-under-the-bridge-lyrics/\" itemprop=\"url\" title=\"Water Under the Bridge Lyrics Adele\">Water Under the Bridge</a>\n", + "<a href=\"https://www.songlyrics.com/adele/chasing-pavements-album-lyrics/\" itemprop=\"url\" title=\"Chasing Pavements (album) Lyrics Adele\">Chasing Pavements (album)</a>\n", + "<a href=\"https://www.songlyrics.com/adele/hometown-glory-single-version-lyrics/\" itemprop=\"url\" title=\"Hometown Glory [Single Version] Lyrics Adele\">Hometown Glory [Single Version]</a>\n", + "<a href=\"https://www.songlyrics.com/adele/sweetest-devotion-lyrics/\" itemprop=\"url\" title=\"Sweetest Devotion Lyrics Adele\">Sweetest Devotion</a>\n", + "<a href=\"https://www.songlyrics.com/adele/all-i-ask-lyrics/\" itemprop=\"url\" title=\"All I Ask Lyrics Adele\">All I Ask</a>\n", + "<a href=\"https://www.songlyrics.com/adele/million-years-ago-lyrics/\" itemprop=\"url\" title=\"Million Years Ago Lyrics Adele\">Million Years Ago</a>\n", + "<a href=\"https://www.songlyrics.com/adele/love-in-the-dark-lyrics/\" itemprop=\"url\" title=\"Love in the Dark Lyrics Adele\">Love in the Dark</a>\n", + "<a href=\"https://www.songlyrics.com/adele/river-lea-lyrics/\" itemprop=\"url\" title=\"River Lea Lyrics Adele\">River Lea</a>\n", + "<a href=\"https://www.songlyrics.com/adele/remedy-lyrics/\" itemprop=\"url\" title=\"Remedy Lyrics Adele\">Remedy</a>\n", + "<a href=\"https://www.songlyrics.com/adele/i-miss-you-lyrics/\" itemprop=\"url\" title=\"I Miss You Lyrics Adele\">I Miss You</a>\n", + "<a href=\"https://www.songlyrics.com/adele/last-nite-lyrics/\" itemprop=\"url\" title=\"Last Nite Lyrics Adele\">Last Nite</a>\n", + "<a href=\"https://www.songlyrics.com/adele/can-t-let-go-lyrics/\" itemprop=\"url\" title=\"Can't Let Go Lyrics Adele\">Can't Let Go</a>\n", + "<a href=\"https://www.songlyrics.com/adele/lay-me-down-lyrics/\" itemprop=\"url\" title=\"Lay Me Down Lyrics Adele\">Lay Me Down</a>\n", + "<a href=\"https://www.songlyrics.com/adele/make-you-feel-my-love-album-lyrics/\" itemprop=\"url\" title=\"Make You Feel My Love (album) Lyrics Adele\">Make You Feel My Love (album)</a>\n", + "<a href=\"https://www.songlyrics.com/adele/chasing-pavements-live-at-the-hotel-cafe-lyrics/\" itemprop=\"url\" title=\"Chasing Pavements - Live At The Hotel Cafe Lyrics Adele\">Chasing Pavements - Live At The Hotel Cafe</a>\n", + "<a href=\"https://www.songlyrics.com/adele/that-s-it-i-quit-i-m-moving-on-live-at-the-hotel-cafe-lyrics/\" itemprop=\"url\" title=\"That's It, I Quit, I'm Moving On - Live At The Hotel Cafe Lyrics Adele\">That's It, I Quit, I'm Moving On - Live At The Hotel Cafe</a>\n", + "<a href=\"https://www.songlyrics.com/adele/my-same-live-at-the-hotel-cafe-lyrics/\" itemprop=\"url\" title=\"My Same - Live At The Hotel Cafe Lyrics Adele\">My Same - Live At The Hotel Cafe</a>\n", + "<a href=\"https://www.songlyrics.com/adele/melt-my-heart-to-stone-live-at-the-hotel-cafe-lyrics/\" itemprop=\"url\" title=\"Melt My Heart to Stone - Live At The Hotel Cafe Lyrics Adele\">Melt My Heart to Stone - Live At The Hotel Cafe</a>\n", + "<a href=\"https://www.songlyrics.com/adele/right-as-rain-live-at-the-hotel-cafe-lyrics/\" itemprop=\"url\" title=\"Right As Rain - Live At The Hotel Cafe Lyrics Adele\">Right As Rain - Live At The Hotel Cafe</a>\n", + "<a href=\"https://www.songlyrics.com/adele/to-make-you-feel-my-love-lyrics/\" itemprop=\"url\" title=\"To Make You Feel My Love Lyrics Adele\">To Make You Feel My Love</a>\n", + "<a href=\"https://www.songlyrics.com/adele/why-do-you-love-me-lyrics/\" itemprop=\"url\" title=\"Why Do You Love Me Lyrics Adele\">Why Do You Love Me</a>\n", + "<a href=\"https://www.songlyrics.com/adele/one-and-only-live-lyrics/\" itemprop=\"url\" title=\"One and Only (Live) Lyrics Adele\">One and Only (Live)</a>\n", + "<a href=\"https://www.songlyrics.com/adele/don-t-you-remember-live-lyrics/\" itemprop=\"url\" title=\"Don't You Remember (Live) Lyrics Adele\">Don't You Remember (Live)</a>\n", + "<a href=\"https://www.songlyrics.com/adele/rumour-has-it-live-lyrics/\" itemprop=\"url\" title=\"Rumour Has It (Live) Lyrics Adele\">Rumour Has It (Live)</a>\n", + "<a href=\"https://www.songlyrics.com/adele/if-it-hadnt-been-for-love-lyrics/\" itemprop=\"url\" title=\"If It Hadn’t Been for Love Lyrics Adele\">If It Hadn’t Been for Love</a>\n", + "<a href=\"https://www.songlyrics.com/adele/i-can-t-make-you-love-me-lyrics/\" itemprop=\"url\" title=\"I Can't Make You Love Me Lyrics Adele\">I Can't Make You Love Me</a>\n", + "<a href=\"https://www.songlyrics.com/adele/if-it-hadn-t-been-for-love-lyrics/\" itemprop=\"url\" title=\"If It Hadn't Been For Love Lyrics Adele\">If It Hadn't Been For Love</a>\n", + "<a href=\"https://www.songlyrics.com/adele/-lyrics/\" itemprop=\"url\" title=\"セット・ファイア・トゥ・ザ・レイン Lyrics Adele\">セット・ファイア・トゥ・ザ・レイン</a>\n", + "<a href=\"https://www.songlyrics.com/adele/my-same-lyrics/\" itemprop=\"url\" title=\"My Same Lyrics Adele\">My Same</a>\n", + "<a href=\"https://www.songlyrics.com/adele/chasing-pavements-lyrics/\" itemprop=\"url\" title=\"Chasing Pavements Lyrics Adele\">Chasing Pavements</a>\n", + "<a href=\"https://www.songlyrics.com/adele/set-fire-to-the-rain-lyrics/\" itemprop=\"url\" title=\"Set Fire to the Rain Lyrics Adele\">Set Fire to the Rain</a>\n", + "<a href=\"https://www.songlyrics.com/adele/someone-like-you-lyrics/\" itemprop=\"url\" title=\"Someone Like You Lyrics Adele\">Someone Like You</a>\n", + "<a href=\"https://www.songlyrics.com/adele/if-it-hadnt-been-for-love-live-at-the-royal-albert-hall-lyrics/\" itemprop=\"url\" title=\"If It Hadn’t Been for Love (live at the Royal Albert Hall) Lyrics Adele\">If It Hadn’t Been for Love (live at the Royal Albert Hall)</a>\n", + "<a href=\"https://www.songlyrics.com/adele/i-cant-make-you-love-me-live-at-the-royal-albert-hall-lyrics/\" itemprop=\"url\" title=\"I Can’t Make You Love Me (live at the Royal Albert Hall) Lyrics Adele\">I Can’t Make You Love Me (live at the Royal Albert Hall)</a>\n", + "<a href=\"https://www.songlyrics.com/adele/i-ll-be-waiting-lyrics/\" itemprop=\"url\" title=\"I'll Be Waiting Lyrics Adele\">I'll Be Waiting</a>\n", + "<a href=\"https://www.songlyrics.com/adele/dont-you-remember-live-acoustic-lyrics/\" itemprop=\"url\" title=\"Don’t You Remember (live acoustic) Lyrics Adele\">Don’t You Remember (live acoustic)</a>\n", + "<a href=\"https://www.songlyrics.com/adele/ill-be-waiting-lyrics/\" itemprop=\"url\" title=\"I’ll Be Waiting Lyrics Adele\">I’ll Be Waiting</a>\n", + "<a href=\"https://www.songlyrics.com/adele/he-wont-go-lyrics/\" itemprop=\"url\" title=\"He Won’t Go Lyrics Adele\">He Won’t Go</a>\n", + "<a href=\"https://www.songlyrics.com/adele/rolling-in-the-deep-jamie-xx-remix-lyrics/\" itemprop=\"url\" title=\"Rolling in the Deep (Jamie XX remix) Lyrics Adele\">Rolling in the Deep (Jamie XX remix)</a>\n", + "<a href=\"https://www.songlyrics.com/adele/turning-tabels-lyrics/\" itemprop=\"url\" title=\"Turning Tabels Lyrics Adele\">Turning Tabels</a>\n", + "<a href=\"https://www.songlyrics.com/adele/skyfall-2012-lyrics/\" itemprop=\"url\" title=\"Skyfall (2012) Lyrics Adele\">Skyfall (2012)</a>\n", + "<a href=\"https://www.songlyrics.com/adele/i-cant-make-you-love-me-lyrics/\" itemprop=\"url\" title=\"I Can’t Make You Love Me Lyrics Adele\">I Can’t Make You Love Me</a>\n", + "<a href=\"https://www.songlyrics.com/adele/someone-like-you-live-from-the-brit-awards-2011-lyrics/\" itemprop=\"url\" title=\"Someone Like You (live From the Brit Awards 2011) Lyrics Adele\">Someone Like You (live From the Brit Awards 2011)</a>\n", + "<a href=\"https://www.songlyrics.com/adele/make-you-feel-my-love-recorded-live-at-wxpn-lyrics/\" itemprop=\"url\" title=\"Make You Feel My Love (recorded live at WXPN) Lyrics Adele\">Make You Feel My Love (recorded live at WXPN)</a>\n", + "<a href=\"https://www.songlyrics.com/adele/melt-my-heart-to-stone-live-lyrics/\" itemprop=\"url\" title=\"Melt My Heart to Stone (Live) Lyrics Adele\">Melt My Heart to Stone (Live)</a>\n", + "<a href=\"https://www.songlyrics.com/adele/make-you-feel-my-love-live-lyrics/\" itemprop=\"url\" title=\"Make You Feel My Love (Live) Lyrics Adele\">Make You Feel My Love (Live)</a>\n", + "<a href=\"https://www.songlyrics.com/adele/right-as-rain-live-lyrics/\" itemprop=\"url\" title=\"Right As Rain (Live) Lyrics Adele\">Right As Rain (Live)</a>\n", + "<a href=\"https://www.songlyrics.com/adele/crazy-for-you-live-lyrics/\" itemprop=\"url\" title=\"Crazy for You (Live) Lyrics Adele\">Crazy for You (Live)</a>\n", + "<a href=\"https://www.songlyrics.com/adele/someone-like-you-live-from-the-brits-lyrics/\" itemprop=\"url\" title=\"Someone Like You (Live from the BRITs) Lyrics Adele\">Someone Like You (Live from the BRITs)</a>\n", + "<a href=\"https://www.songlyrics.com/adele/rolling-in-the-deep-acapella-lyrics/\" itemprop=\"url\" title=\"Rolling In the Deep (Acapella) Lyrics Adele\">Rolling In the Deep (Acapella)</a>\n", + "<a href=\"https://www.songlyrics.com/adele/rolling-in-the-deep-live-lyrics/\" itemprop=\"url\" title=\"Rolling in the Deep (Live) Lyrics Adele\">Rolling in the Deep (Live)</a>\n", + "<a href=\"https://www.songlyrics.com/adele/take-it-all-live-lyrics/\" itemprop=\"url\" title=\"Take It All (Live) Lyrics Adele\">Take It All (Live)</a>\n", + "<a href=\"https://www.songlyrics.com/adele/hometown-glory-live-lyrics/\" itemprop=\"url\" title=\"Hometown Glory (Live) Lyrics Adele\">Hometown Glory (Live)</a>\n", + "<a href=\"https://www.songlyrics.com/adele/chasing-pavements-live-lyrics/\" itemprop=\"url\" title=\"Chasing Pavements (Live) Lyrics Adele\">Chasing Pavements (Live)</a>\n", + "<a href=\"https://www.songlyrics.com/adele/make-you-feel-my-love-lyrics/\" itemprop=\"url\" title=\"Make You Feel My Love Lyrics Adele\">Make You Feel My Love</a>\n", + "<a href=\"https://www.songlyrics.com/adele/hometown-glory-radio-edit-lyrics/\" itemprop=\"url\" title=\"Hometown Glory (Radio Edit) Lyrics Adele\">Hometown Glory (Radio Edit)</a>\n", + "<a href=\"https://www.songlyrics.com/adele/set-fire-to-the-rain-graham-norton-show-lyrics/\" itemprop=\"url\" title=\"Set Fire To The Rain (Graham Norton Show) Lyrics Adele\">Set Fire To The Rain (Graham Norton Show)</a>\n", + "<a href=\"https://www.songlyrics.com/adele/you-ll-never-see-me-again-lyrics/\" itemprop=\"url\" title=\"You'll never see me again Lyrics Adele\">You'll never see me again</a>\n", + "<a href=\"https://www.songlyrics.com/adele/fiasco-lyrics/\" itemprop=\"url\" title=\"Fiasco Lyrics Adele\">Fiasco</a>\n", + "<a href=\"https://www.songlyrics.com/adele/someone-like-you-live-from-the-brits-2011-lyrics/\" itemprop=\"url\" title=\"Someone Like You (Live from the Brits 2011) Lyrics Adele\">Someone Like You (Live from the Brits 2011)</a>\n", + "<a href=\"https://www.songlyrics.com/adele/many-shades-of-black-performed-by-the-raconteurs-and-adele-lyrics/\" itemprop=\"url\" title=\"Many Shades of Black (Performed By the Raconteurs and Adele) Lyrics Adele\">Many Shades of Black (Performed By the Raconteurs and Adele)</a>\n", + "<a href=\"https://www.songlyrics.com/adele/that-s-it-i-quit-i-m-moving-on-live-lyrics/\" itemprop=\"url\" title=\"That's It, I Quit, I'm Moving On (Live) Lyrics Adele\">That's It, I Quit, I'm Moving On (Live)</a>\n", + "<a href=\"https://www.songlyrics.com/adele/don-t-you-remember-live-acoustic-lyrics/\" itemprop=\"url\" title=\"Don't You Remember (Live Acoustic) Lyrics Adele\">Don't You Remember (Live Acoustic)</a>\n", + "<a href=\"https://www.songlyrics.com/adele/25/\" title=\"25 Lyrics Adele\">\n", + "<img alt=\"25 Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/album_covers/166/adele-25/adele-166426-25.jpg\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/25/\" title=\"Adele - 25 Album Lyrics\">25</a>\n", + "<a href=\"https://www.songlyrics.com/adele/skyfall-007-ost/\" title=\"Skyfall 007 OST Lyrics Adele\">\n", + "<img alt=\"Skyfall 007 OST Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/album_covers/84/adele-skyfall-007-ost/adele-117639-skyfall-007-ost.jpg\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/skyfall-007-ost/\" title=\"Adele - Skyfall 007 OST Album Lyrics\">Skyfall 007 OST</a>\n", + "<a href=\"https://www.songlyrics.com/adele/21/\" title=\"21 Lyrics Adele\">\n", + "<img alt=\"21 Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/album_covers/254/adele-21/adele-33404-21.jpg\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/21/\" title=\"Adele - 21 Album Lyrics\">21</a>\n", + "<a href=\"https://www.songlyrics.com/adele/set-fire-to-the-rain-remixes/\" title=\"Set Fire to the Rain (Remixes) Lyrics Adele\">\n", + "<img alt=\"Set Fire to the Rain (Remixes) Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/album_covers/109/adele-set-fire-to-the-rain-remixes/adele-90634-set-fire-to-the-rain-remixes.jpg\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/set-fire-to-the-rain-remixes/\" title=\"Adele - Set Fire to the Rain (Remixes) Album Lyrics\">Set Fire to the Rain (Remixes)</a>\n", + "<a href=\"https://www.songlyrics.com/adele/19/\" title=\"19 Lyrics Adele\">\n", + "<img alt=\"19 Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/album_covers/205/adele-19/adele-33610-19.jpg\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/19/\" title=\"Adele - 19 Album Lyrics\">19</a>\n", + "<a href=\"https://www.songlyrics.com/adele/miscellaneous/\" title=\"Miscellaneous Lyrics Adele\">\n", + "<img alt=\"Miscellaneous Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/album_covers/204/adele/adele-69819.jpg\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/miscellaneous/\" title=\"Adele - Miscellaneous Album Lyrics\">Miscellaneous</a>\n", + "<a href=\"https://www.songlyrics.com/adele/rolling-in-the-deep-single/\" title=\"Rolling In The Deep (Single) Lyrics Adele\">\n", + "<img alt=\"Rolling In The Deep (Single) Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/album_covers/43/adele-rolling-in-the-deep-single/adele-64303-rolling-in-the-deep-single.jpg\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/rolling-in-the-deep-single/\" title=\"Adele - Rolling In The Deep (Single) Album Lyrics\">Rolling In The Deep (Single)</a>\n", + "<a href=\"https://www.songlyrics.com/adele/non-album-releases/\" title=\"Non-Album Releases Lyrics Adele\">\n", + "<img alt=\"Non-Album Releases Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/non-album-releases/\" title=\"Adele - Non-Album Releases Album Lyrics\">Non-Album Releases</a>\n", + "<a href=\"https://www.songlyrics.com/adele/jazz-pop-classics-vol-2/\" title=\"Jazz & Pop Classics Vol. 2 Lyrics Adele\">\n", + "<img alt=\"Jazz & Pop Classics Vol. 2 Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/jazz-pop-classics-vol-2/\" title=\"Adele - Jazz & Pop Classics Vol. 2 Album Lyrics\">Jazz & Pop Classics Vol. 2</a>\n", + "<a href=\"https://www.songlyrics.com/adele/make-you-feel-my-love/\" title=\"Make You Feel My Love Lyrics Adele\">\n", + "<img alt=\"Make You Feel My Love Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/make-you-feel-my-love/\" title=\"Adele - Make You Feel My Love Album Lyrics\">Make You Feel My Love</a>\n", + "<a href=\"https://www.songlyrics.com/adele/hometown-glory/\" title=\"Hometown Glory Lyrics Adele\">\n", + "<img alt=\"Hometown Glory Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/hometown-glory/\" title=\"Adele - Hometown Glory Album Lyrics\">Hometown Glory</a>\n", + "<a href=\"https://www.songlyrics.com/adele/chasing-pavements/\" title=\"Chasing Pavements Lyrics Adele\">\n", + "<img alt=\"Chasing Pavements Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/chasing-pavements/\" title=\"Adele - Chasing Pavements Album Lyrics\">Chasing Pavements</a>\n", + "<a href=\"https://www.songlyrics.com/adele/cold-shoulder/\" title=\"Cold Shoulder Lyrics Adele\">\n", + "<img alt=\"Cold Shoulder Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/cold-shoulder/\" title=\"Adele - Cold Shoulder Album Lyrics\">Cold Shoulder</a>\n", + "<a href=\"https://www.songlyrics.com/adele/2012-new-years-celebrate-party-megamix/\" title=\"2012 New Years Celebrate Party Megamix Lyrics Adele\">\n", + "<img alt=\"2012 New Years Celebrate Party Megamix Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/2012-new-years-celebrate-party-megamix/\" title=\"Adele - 2012 New Years Celebrate Party Megamix Album Lyrics\">2012 New Years Celebrate Party Megamix</a>\n", + "<a href=\"https://www.songlyrics.com/adele/compilation/\" title=\"Compilation Lyrics Adele\">\n", + "<img alt=\"Compilation Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/compilation/\" title=\"Adele - Compilation Album Lyrics\">Compilation</a>\n", + "<a href=\"https://www.songlyrics.com/adele/the-official-beer-bike-2012-mixtape/\" title=\"The Official Beer Bike 2012 Mixtape Lyrics Adele\">\n", + "<img alt=\"The Official Beer Bike 2012 Mixtape Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/the-official-beer-bike-2012-mixtape/\" title=\"Adele - The Official Beer Bike 2012 Mixtape Album Lyrics\">The Official Beer Bike 2012 Mixtape</a>\n", + "<a href=\"https://www.songlyrics.com/adele/mega-hits-internacional-2013/\" title=\"Mega Hits - Internacional 2013 Lyrics Adele\">\n", + "<img alt=\"Mega Hits - Internacional 2013 Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/mega-hits-internacional-2013/\" title=\"Adele - Mega Hits - Internacional 2013 Album Lyrics\">Mega Hits - Internacional 2013</a>\n", + "<a href=\"https://www.songlyrics.com/adele/lo-esencial-de-1-ao-de-xitos-vol-5/\" title=\"Lo Esencial de 1 Año de Éxitos, Vol. 5 Lyrics Adele\">\n", + "<img alt=\"Lo Esencial de 1 Año de Éxitos, Vol. 5 Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/lo-esencial-de-1-ao-de-xitos-vol-5/\" title=\"Adele - Lo Esencial de 1 Año de Éxitos, Vol. 5 Album Lyrics\">Lo Esencial de 1 Año de Éxitos, Vol. 5</a>\n", + "<a href=\"https://www.songlyrics.com/adele/skyfall/\" title=\"Skyfall Lyrics Adele\">\n", + "<img alt=\"Skyfall Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/skyfall/\" title=\"Adele - Skyfall Album Lyrics\">Skyfall</a>\n", + "<a href=\"https://www.songlyrics.com/adele/hello/\" title=\"Hello Lyrics Adele\">\n", + "<img alt=\"Hello Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/hello/\" title=\"Adele - Hello Album Lyrics\">Hello</a>\n", + "<a href=\"https://www.songlyrics.com/adele/when-we-were-young/\" title=\"When We Were Young Lyrics Adele\">\n", + "<img alt=\"When We Were Young Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/when-we-were-young/\" title=\"Adele - When We Were Young Album Lyrics\">When We Were Young</a>\n", + "<a href=\"https://www.songlyrics.com/adele/send-my-love-to-your-new-lover/\" title=\"Send My Love (To Your New Lover) Lyrics Adele\">\n", + "<img alt=\"Send My Love (To Your New Lover) Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/send-my-love-to-your-new-lover/\" title=\"Adele - Send My Love (To Your New Lover) Album Lyrics\">Send My Love (To Your New Lover)</a>\n", + "<a href=\"https://www.songlyrics.com/adele/water-under-the-bridge/\" title=\"Water Under the Bridge Lyrics Adele\">\n", + "<img alt=\"Water Under the Bridge Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/water-under-the-bridge/\" title=\"Adele - Water Under the Bridge Album Lyrics\">Water Under the Bridge</a>\n", + "<a href=\"https://www.songlyrics.com/adele/chimes-of-freedom-the-songs-of-bob-dylan-honoring-50-years-of-amnesty-international/\" title=\"Chimes Of Freedom: The Songs Of Bob Dylan Honoring 50 Years Of Amnesty International Lyrics Adele\">\n", + "<img alt=\"Chimes Of Freedom: The Songs Of Bob Dylan Honoring 50 Years Of Amnesty International Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/chimes-of-freedom-the-songs-of-bob-dylan-honoring-50-years-of-amnesty-international/\" title=\"Adele - Chimes Of Freedom: The Songs Of Bob Dylan Honoring 50 Years Of Amnesty International Album Lyrics\">Chimes Of Freedom: The Songs Of Bob Dylan Honoring 50...</a>\n", + "<a href=\"https://www.songlyrics.com/adele/brit-awards-2016/\" title=\"BRIT Awards 2016 Lyrics Adele\">\n", + "<img alt=\"BRIT Awards 2016 Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/brit-awards-2016/\" title=\"Adele - BRIT Awards 2016 Album Lyrics\">BRIT Awards 2016</a>\n", + "<a href=\"https://www.songlyrics.com/adele/2013-grammy-nominees/\" title=\"2013 Grammy Nominees Lyrics Adele\">\n", + "<img alt=\"2013 Grammy Nominees Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/2013-grammy-nominees/\" title=\"Adele - 2013 Grammy Nominees Album Lyrics\">2013 Grammy Nominees</a>\n", + "<a href=\"https://www.songlyrics.com/adele/pop08-the-sound-of-stavanger/\" title=\"POP08 - the Sound of Stavanger Lyrics Adele\">\n", + "<img alt=\"POP08 - the Sound of Stavanger Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/pop08-the-sound-of-stavanger/\" title=\"Adele - POP08 - the Sound of Stavanger Album Lyrics\">POP08 - the Sound of Stavanger</a>\n", + "<a href=\"https://www.songlyrics.com/adele/top-40-hits-remixed-volume-15/\" title=\"Top 40 Hits Remixed, Volume 15 Lyrics Adele\">\n", + "<img alt=\"Top 40 Hits Remixed, Volume 15 Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/top-40-hits-remixed-volume-15/\" title=\"Adele - Top 40 Hits Remixed, Volume 15 Album Lyrics\">Top 40 Hits Remixed, Volume 15</a>\n", + "<a href=\"https://www.songlyrics.com/adele/itunes-live-from-soho/\" title=\"iTunes Live From SoHo Lyrics Adele\">\n", + "<img alt=\"iTunes Live From SoHo Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/itunes-live-from-soho/\" title=\"Adele - iTunes Live From SoHo Album Lyrics\">iTunes Live From SoHo</a>\n", + "<a href=\"https://www.songlyrics.com/adele/19-deluxe-edition/\" title=\"19 (Deluxe Edition) Lyrics Adele\">\n", + "<img alt=\"19 (Deluxe Edition) Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/19-deluxe-edition/\" title=\"Adele - 19 (Deluxe Edition) Album Lyrics\">19 (Deluxe Edition)</a>\n", + "<a href=\"https://www.songlyrics.com/adele/19-standard-edition/\" title=\"19 (Standard Edition) Lyrics Adele\">\n", + "<img alt=\"19 (Standard Edition) Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/19-standard-edition/\" title=\"Adele - 19 (Standard Edition) Album Lyrics\">19 (Standard Edition)</a>\n", + "<a href=\"https://www.songlyrics.com/adele/itunes-festival-london-2011/\" title=\"iTunes Festival: London 2011 Lyrics Adele\">\n", + "<img alt=\"iTunes Festival: London 2011 Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/itunes-festival-london-2011/\" title=\"Adele - iTunes Festival: London 2011 Album Lyrics\">iTunes Festival: London 2011</a>\n", + "<a href=\"https://www.songlyrics.com/adele/rolling-in-the-deep/\" title=\"Rolling In the Deep Lyrics Adele\">\n", + "<img alt=\"Rolling In the Deep Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/rolling-in-the-deep/\" title=\"Adele - Rolling In the Deep Album Lyrics\">Rolling In the Deep</a>\n", + "<a href=\"https://www.songlyrics.com/adele/someone-like-you-live-from-the-brits/\" title=\"Someone Like You (Live from the BRITs) Lyrics Adele\">\n", + "<img alt=\"Someone Like You (Live from the BRITs) Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/someone-like-you-live-from-the-brits/\" title=\"Adele - Someone Like You (Live from the BRITs) Album Lyrics\">Someone Like You (Live from the BRITs)</a>\n", + "<a href=\"https://www.songlyrics.com/adele/someone-like-you/\" title=\"Someone Like You Lyrics Adele\">\n", + "<img alt=\"Someone Like You Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/someone-like-you/\" title=\"Adele - Someone Like You Album Lyrics\">Someone Like You</a>\n", + "<a href=\"https://www.songlyrics.com/adele/fiasco/\" title=\"Fiasco Lyrics Adele\">\n", + "<img alt=\"Fiasco Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/fiasco/\" title=\"Adele - Fiasco Album Lyrics\">Fiasco</a>\n", + "<a href=\"https://www.songlyrics.com/adele/you-ll-never-see-me-again/\" title=\"You'll never see me again Lyrics Adele\">\n", + "<img alt=\"You'll never see me again Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/you-ll-never-see-me-again/\" title=\"Adele - You'll never see me again Album Lyrics\">You'll never see me again</a>\n", + "<a href=\"https://www.songlyrics.com/adele/musikvideos-jahrescharts-2011-top-100/\" title=\"Musikvideos Jahrescharts 2011 Top 100 Lyrics Adele\">\n", + "<img alt=\"Musikvideos Jahrescharts 2011 Top 100 Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/musikvideos-jahrescharts-2011-top-100/\" title=\"Adele - Musikvideos Jahrescharts 2011 Top 100 Album Lyrics\">Musikvideos Jahrescharts 2011 Top 100</a>\n", + "<a href=\"https://www.songlyrics.com/adele/2010-grammy-nominees/\" title=\"2010 Grammy Nominees Lyrics Adele\">\n", + "<img alt=\"2010 Grammy Nominees Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/2010-grammy-nominees/\" title=\"Adele - 2010 Grammy Nominees Album Lyrics\">2010 Grammy Nominees</a>\n", + "<a href=\"https://www.songlyrics.com/adele/now-that-s-what-i-call-music!-77/\" title=\"Now That's What I Call Music! 77 Lyrics Adele\">\n", + "<img alt=\"Now That's What I Call Music! 77 Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/now-that-s-what-i-call-music!-77/\" title=\"Adele - Now That's What I Call Music! 77 Album Lyrics\">Now That's What I Call Music! 77</a>\n", + "<a href=\"https://www.songlyrics.com/adele/knuffelrock-2011/\" title=\"Knuffelrock 2011 Lyrics Adele\">\n", + "<img alt=\"Knuffelrock 2011 Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/knuffelrock-2011/\" title=\"Adele - Knuffelrock 2011 Album Lyrics\">Knuffelrock 2011</a>\n", + "<a href=\"https://www.songlyrics.com/adele/we-love-winter-2011/\" title=\"We Love Winter - 2011 Lyrics Adele\">\n", + "<img alt=\"We Love Winter - 2011 Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/we-love-winter-2011/\" title=\"Adele - We Love Winter - 2011 Album Lyrics\">We Love Winter - 2011</a>\n", + "<a href=\"https://www.songlyrics.com/adele/your-songs/\" title=\"Your Songs Lyrics Adele\">\n", + "<img alt=\"Your Songs Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/your-songs/\" title=\"Adele - Your Songs Album Lyrics\">Your Songs</a>\n", + "<a href=\"https://www.songlyrics.com/adele/lady-got-soul/\" title=\"Lady Got Soul Lyrics Adele\">\n", + "<img alt=\"Lady Got Soul Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/lady-got-soul/\" title=\"Adele - Lady Got Soul Album Lyrics\">Lady Got Soul</a>\n", + "<a href=\"https://www.songlyrics.com/adele/chimes-of-freedom-the-songs-of-bob-dylan/\" title=\"Chimes of Freedom: The Songs of Bob Dylan Lyrics Adele\">\n", + "<img alt=\"Chimes of Freedom: The Songs of Bob Dylan Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/chimes-of-freedom-the-songs-of-bob-dylan/\" title=\"Adele - Chimes of Freedom: The Songs of Bob Dylan Album Lyrics\">Chimes of Freedom: The Songs of Bob Dylan</a>\n", + "<a href=\"https://www.songlyrics.com/adele/ministry-of-sound-uncovered-3/\" title=\"Ministry of Sound Uncovered 3 Lyrics Adele\">\n", + "<img alt=\"Ministry of Sound Uncovered 3 Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/ministry-of-sound-uncovered-3/\" title=\"Adele - Ministry of Sound Uncovered 3 Album Lyrics\">Ministry of Sound Uncovered 3</a>\n", + "<a href=\"https://www.songlyrics.com/adele/songs-for-the-philippines/\" title=\"Songs for the Philippines Lyrics Adele\">\n", + "<img alt=\"Songs for the Philippines Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/songs-for-the-philippines/\" title=\"Adele - Songs for the Philippines Album Lyrics\">Songs for the Philippines</a>\n", + "<a href=\"https://www.songlyrics.com/adele/the-x-factor-songbook/\" title=\"The X Factor Songbook Lyrics Adele\">\n", + "<img alt=\"The X Factor Songbook Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/the-x-factor-songbook/\" title=\"Adele - The X Factor Songbook Album Lyrics\">The X Factor Songbook</a>\n", + "<a href=\"https://www.songlyrics.com/adele/brit-awards-2012/\" title=\"Brit Awards 2012 Lyrics Adele\">\n", + "<img alt=\"Brit Awards 2012 Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/brit-awards-2012/\" title=\"Adele - Brit Awards 2012 Album Lyrics\">Brit Awards 2012</a>\n", + "<a href=\"https://www.songlyrics.com/adele/the-brit-awards-2012/\" title=\"The BRIT Awards 2012 Lyrics Adele\">\n", + "<img alt=\"The BRIT Awards 2012 Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/the-brit-awards-2012/\" title=\"Adele - The BRIT Awards 2012 Album Lyrics\">The BRIT Awards 2012</a>\n", + "<a href=\"https://www.songlyrics.com/adele/los-n1-de-cadena-100-2012/\" title=\"Los Nº1 de Cadena 100 (2012) Lyrics Adele\">\n", + "<img alt=\"Los Nº1 de Cadena 100 (2012) Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/los-n1-de-cadena-100-2012/\" title=\"Adele - Los Nº1 de Cadena 100 (2012) Album Lyrics\">Los Nº1 de Cadena 100 (2012)</a>\n", + "<a href=\"https://www.songlyrics.com/adele/mega-hits-2012-internacional/\" title=\"Mega Hits 2012 Internacional Lyrics Adele\">\n", + "<img alt=\"Mega Hits 2012 Internacional Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/mega-hits-2012-internacional/\" title=\"Adele - Mega Hits 2012 Internacional Album Lyrics\">Mega Hits 2012 Internacional</a>\n", + "<a href=\"https://www.songlyrics.com/adele/los-nmeros-uno-de-40-principales-el-disco-de-los-xitos/\" title=\"Los Números Uno de 40 Principales - El Disco de los Éxitos Lyrics Adele\">\n", + "<img alt=\"Los Números Uno de 40 Principales - El Disco de los Éxitos Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/los-nmeros-uno-de-40-principales-el-disco-de-los-xitos/\" title=\"Adele - Los Números Uno de 40 Principales - El Disco de los Éxitos Album Lyrics\">Los Números Uno de 40 Principales - El Disco de los Éxitos</a>\n", + "<a href=\"https://www.songlyrics.com/adele/now-that-s-what-i-call-music!-80/\" title=\"Now That's What I Call Music! 80 Lyrics Adele\">\n", + "<img alt=\"Now That's What I Call Music! 80 Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/now-that-s-what-i-call-music!-80/\" title=\"Adele - Now That's What I Call Music! 80 Album Lyrics\">Now That's What I Call Music! 80</a>\n", + "<a href=\"https://www.songlyrics.com/adele/kuschelrock-25/\" title=\"KuschelRock 25 Lyrics Adele\">\n", + "<img alt=\"KuschelRock 25 Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/kuschelrock-25/\" title=\"Adele - KuschelRock 25 Album Lyrics\">KuschelRock 25</a>\n", + "<a href=\"https://www.songlyrics.com/adele/copa-das-confederaes-brasil-internacional/\" title=\"Copa das Confederações Brasil (Internacional) Lyrics Adele\">\n", + "<img alt=\"Copa das Confederações Brasil (Internacional) Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/copa-das-confederaes-brasil-internacional/\" title=\"Adele - Copa das Confederações Brasil (Internacional) Album Lyrics\">Copa das Confederações Brasil (Internacional)</a>\n", + "<a href=\"https://www.songlyrics.com/adele/3-greatest-hits-vol-57/\" title=\"Ö3 Greatest Hits, Vol. 57 Lyrics Adele\">\n", + "<img alt=\"Ö3 Greatest Hits, Vol. 57 Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/3-greatest-hits-vol-57/\" title=\"Adele - Ö3 Greatest Hits, Vol. 57 Album Lyrics\">Ö3 Greatest Hits, Vol. 57</a>\n", + "<a href=\"https://www.songlyrics.com/adele/europa-fm-levntate-y-crdenas-ponte-a-prueba-vol-2/\" title=\"Europa Fm: Levántate Y Cárdenas - Ponte a Prueba, Vol. 2 Lyrics Adele\">\n", + "<img alt=\"Europa Fm: Levántate Y Cárdenas - Ponte a Prueba, Vol. 2 Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/europa-fm-levntate-y-crdenas-ponte-a-prueba-vol-2/\" title=\"Adele - Europa Fm: Levántate Y Cárdenas - Ponte a Prueba, Vol. 2 Album Lyrics\">Europa Fm: Levántate Y Cárdenas - Ponte a Prueba, Vol. 2</a>\n", + "<a href=\"https://www.songlyrics.com/adele/rix-fm-festival-2012/\" title=\"RIX FM Festival 2012 Lyrics Adele\">\n", + "<img alt=\"RIX FM Festival 2012 Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/rix-fm-festival-2012/\" title=\"Adele - RIX FM Festival 2012 Album Lyrics\">RIX FM Festival 2012</a>\n", + "<a href=\"https://www.songlyrics.com/adele/val-202-plus!-vol-1/\" title=\"VAL 202 Plus!, Vol. 1 Lyrics Adele\">\n", + "<img alt=\"VAL 202 Plus!, Vol. 1 Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/val-202-plus!-vol-1/\" title=\"Adele - VAL 202 Plus!, Vol. 1 Album Lyrics\">VAL 202 Plus!, Vol. 1</a>\n", + "<a href=\"https://www.songlyrics.com/adele/now-that-s-what-i-call-music-vol-41/\" title=\"NOW That's What I Call Music Vol. 41 Lyrics Adele\">\n", + "<img alt=\"NOW That's What I Call Music Vol. 41 Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/now-that-s-what-i-call-music-vol-41/\" title=\"Adele - NOW That's What I Call Music Vol. 41 Album Lyrics\">NOW That's What I Call Music Vol. 41</a>\n", + "<a href=\"https://www.songlyrics.com/adele/now-that-s-what-i-call-music-vol-59/\" title=\"Now That's What I Call Music, Vol. 59 Lyrics Adele\">\n", + "<img alt=\"Now That's What I Call Music, Vol. 59 Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/now-that-s-what-i-call-music-vol-59/\" title=\"Adele - Now That's What I Call Music, Vol. 59 Album Lyrics\">Now That's What I Call Music, Vol. 59</a>\n", + "<a href=\"https://www.songlyrics.com/adele/die-ultimative-chartshow-hits-der-welt/\" title=\"Die ultimative Chartshow - Hits der Welt Lyrics Adele\">\n", + "<img alt=\"Die ultimative Chartshow - Hits der Welt Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/die-ultimative-chartshow-hits-der-welt/\" title=\"Adele - Die ultimative Chartshow - Hits der Welt Album Lyrics\">Die ultimative Chartshow - Hits der Welt</a>\n", + "<a href=\"https://www.songlyrics.com/adele/maximum-hit-music-2011-2/\" title=\"Maximum Hit Music 2011-2 Lyrics Adele\">\n", + "<img alt=\"Maximum Hit Music 2011-2 Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/maximum-hit-music-2011-2/\" title=\"Adele - Maximum Hit Music 2011-2 Album Lyrics\">Maximum Hit Music 2011-2</a>\n", + "<a href=\"https://www.songlyrics.com/adele/bravo-hits-76/\" title=\"Bravo Hits 76 Lyrics Adele\">\n", + "<img alt=\"Bravo Hits 76 Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/bravo-hits-76/\" title=\"Adele - Bravo Hits 76 Album Lyrics\">Bravo Hits 76</a>\n", + "<a href=\"https://www.songlyrics.com/adele/now-that-s-what-i-call-music!-vol-79/\" title=\"Now That's What I Call Music!, Vol. 79 Lyrics Adele\">\n", + "<img alt=\"Now That's What I Call Music!, Vol. 79 Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/now-that-s-what-i-call-music!-vol-79/\" title=\"Adele - Now That's What I Call Music!, Vol. 79 Album Lyrics\">Now That's What I Call Music!, Vol. 79</a>\n", + "<a href=\"https://www.songlyrics.com/adele/538-hitzone-58/\" title=\"538 Hitzone 58 Lyrics Adele\">\n", + "<img alt=\"538 Hitzone 58 Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/538-hitzone-58/\" title=\"Adele - 538 Hitzone 58 Album Lyrics\">538 Hitzone 58</a>\n", + "<a href=\"https://www.songlyrics.com/adele/hits-for-kids-vol-27/\" title=\"Hits for Kids, Vol. 27 Lyrics Adele\">\n", + "<img alt=\"Hits for Kids, Vol. 27 Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/hits-for-kids-vol-27/\" title=\"Adele - Hits for Kids, Vol. 27 Album Lyrics\">Hits for Kids, Vol. 27</a>\n", + "<a href=\"https://www.songlyrics.com/adele/538-hitzone-57/\" title=\"538 Hitzone 57 Lyrics Adele\">\n", + "<img alt=\"538 Hitzone 57 Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/538-hitzone-57/\" title=\"Adele - 538 Hitzone 57 Album Lyrics\">538 Hitzone 57</a>\n", + "<a href=\"https://www.songlyrics.com/adele/mnm-big-hits-20112/\" title=\"MNM Big Hits 2011/2 Lyrics Adele\">\n", + "<img alt=\"MNM Big Hits 2011/2 Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/mnm-big-hits-20112/\" title=\"Adele - MNM Big Hits 2011/2 Album Lyrics\">MNM Big Hits 2011/2</a>\n", + "<a href=\"https://www.songlyrics.com/adele/nrj-hits-16/\" title=\"NRJ Hits 16 Lyrics Adele\">\n", + "<img alt=\"NRJ Hits 16 Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/nrj-hits-16/\" title=\"Adele - NRJ Hits 16 Album Lyrics\">NRJ Hits 16</a>\n", + "<a href=\"https://www.songlyrics.com/adele/now-that-s-what-i-call-a-no-1/\" title=\"Now That's What I Call a No. 1 Lyrics Adele\">\n", + "<img alt=\"Now That's What I Call a No. 1 Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/now-that-s-what-i-call-a-no-1/\" title=\"Adele - Now That's What I Call a No. 1 Album Lyrics\">Now That's What I Call a No. 1</a>\n", + "<a href=\"https://www.songlyrics.com/adele/the-dome-vol-58/\" title=\"The Dome, Vol. 58 Lyrics Adele\">\n", + "<img alt=\"The Dome, Vol. 58 Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/the-dome-vol-58/\" title=\"Adele - The Dome, Vol. 58 Album Lyrics\">The Dome, Vol. 58</a>\n", + "<a href=\"https://www.songlyrics.com/adele/hit-connection-2011-2/\" title=\"Hit Connection 2011.2 Lyrics Adele\">\n", + "<img alt=\"Hit Connection 2011.2 Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/hit-connection-2011-2/\" title=\"Adele - Hit Connection 2011.2 Album Lyrics\">Hit Connection 2011.2</a>\n", + "<a href=\"https://www.songlyrics.com/adele/the-brit-awards-with-mastercard-2012/\" title=\"The BRIT Awards With MasterCard 2012 Lyrics Adele\">\n", + "<img alt=\"The BRIT Awards With MasterCard 2012 Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/the-brit-awards-with-mastercard-2012/\" title=\"Adele - The BRIT Awards With MasterCard 2012 Album Lyrics\">The BRIT Awards With MasterCard 2012</a>\n", + "<a href=\"https://www.songlyrics.com/adele/now!-19/\" title=\"Now! 19 Lyrics Adele\">\n", + "<img alt=\"Now! 19 Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/now!-19/\" title=\"Adele - Now! 19 Album Lyrics\">Now! 19</a>\n", + "<a href=\"https://www.songlyrics.com/adele/absolute-hits-2011/\" title=\"Absolute Hits 2011 Lyrics Adele\">\n", + "<img alt=\"Absolute Hits 2011 Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/absolute-hits-2011/\" title=\"Adele - Absolute Hits 2011 Album Lyrics\">Absolute Hits 2011</a>\n", + "<a href=\"https://www.songlyrics.com/adele/more-music-2011/\" title=\"More Music 2011 Lyrics Adele\">\n", + "<img alt=\"More Music 2011 Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/more-music-2011/\" title=\"Adele - More Music 2011 Album Lyrics\">More Music 2011</a>\n", + "<a href=\"https://www.songlyrics.com/adele/life-is-music-2011-vol-2/\" title=\"Life Is Music 2011, Vol. 2 Lyrics Adele\">\n", + "<img alt=\"Life Is Music 2011, Vol. 2 Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/life-is-music-2011-vol-2/\" title=\"Adele - Life Is Music 2011, Vol. 2 Album Lyrics\">Life Is Music 2011, Vol. 2</a>\n", + "<a href=\"https://www.songlyrics.com/adele/los-n1-de-40-principales-2013/\" title=\"Los Nº1 de 40 Principales (2013) Lyrics Adele\">\n", + "<img alt=\"Los Nº1 de 40 Principales (2013) Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/los-n1-de-40-principales-2013/\" title=\"Adele - Los Nº1 de 40 Principales (2013) Album Lyrics\">Los Nº1 de 40 Principales (2013)</a>\n", + "<a href=\"https://www.songlyrics.com/adele/music-is-great-britain/\" title=\"Music Is Great Britain Lyrics Adele\">\n", + "<img alt=\"Music Is Great Britain Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/music-is-great-britain/\" title=\"Adele - Music Is Great Britain Album Lyrics\">Music Is Great Britain</a>\n", + "<a href=\"https://www.songlyrics.com/adele/now-that-s-what-i-call-music!-79/\" title=\"Now That's What I Call Music! 79 Lyrics Adele\">\n", + "<img alt=\"Now That's What I Call Music! 79 Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/now-that-s-what-i-call-music!-79/\" title=\"Adele - Now That's What I Call Music! 79 Album Lyrics\">Now That's What I Call Music! 79</a>\n", + "<a href=\"https://www.songlyrics.com/adele/fantastic-songs/\" title=\"Fantastic Songs Lyrics Adele\">\n", + "<img alt=\"Fantastic Songs Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/fantastic-songs/\" title=\"Adele - Fantastic Songs Album Lyrics\">Fantastic Songs</a>\n", + "<a href=\"https://www.songlyrics.com/adele/ohne-dich-ist-alles-doof/\" title=\"Ohne Dich ist alles doof Lyrics Adele\">\n", + "<img alt=\"Ohne Dich ist alles doof Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/ohne-dich-ist-alles-doof/\" title=\"Adele - Ohne Dich ist alles doof Album Lyrics\">Ohne Dich ist alles doof</a>\n", + "<a href=\"https://www.songlyrics.com/adele/pop-ladies/\" title=\"Pop Ladies Lyrics Adele\">\n", + "<img alt=\"Pop Ladies Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/pop-ladies/\" title=\"Adele - Pop Ladies Album Lyrics\">Pop Ladies</a>\n", + "<a href=\"https://www.songlyrics.com/adele/je-t-aime-2012/\" title=\"Je t'aime 2012 Lyrics Adele\">\n", + "<img alt=\"Je t'aime 2012 Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/je-t-aime-2012/\" title=\"Adele - Je t'aime 2012 Album Lyrics\">Je t'aime 2012</a>\n", + "<a href=\"https://www.songlyrics.com/adele/pacha-chillax/\" title=\"Pacha Chillax Lyrics Adele\">\n", + "<img alt=\"Pacha Chillax Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/pacha-chillax/\" title=\"Adele - Pacha Chillax Album Lyrics\">Pacha Chillax</a>\n", + "<a href=\"https://www.songlyrics.com/adele/brits-hits-2008/\" title=\"Brits Hits 2008 Lyrics Adele\">\n", + "<img alt=\"Brits Hits 2008 Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/brits-hits-2008/\" title=\"Adele - Brits Hits 2008 Album Lyrics\">Brits Hits 2008</a>\n", + "<a href=\"https://www.songlyrics.com/adele/2009-grammy-nominees/\" title=\"2009 Grammy Nominees Lyrics Adele\">\n", + "<img alt=\"2009 Grammy Nominees Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/2009-grammy-nominees/\" title=\"Adele - 2009 Grammy Nominees Album Lyrics\">2009 Grammy Nominees</a>\n", + "<a href=\"https://www.songlyrics.com/adele/women-the-best/\" title=\"Women: The Best Lyrics Adele\">\n", + "<img alt=\"Women: The Best Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/women-the-best/\" title=\"Adele - Women: The Best Album Lyrics\">Women: The Best</a>\n", + "<a href=\"https://www.songlyrics.com/adele/brits-critics-choice/\" title=\"BRITs Critics' Choice Lyrics Adele\">\n", + "<img alt=\"BRITs Critics' Choice Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/brits-critics-choice/\" title=\"Adele - BRITs Critics' Choice Album Lyrics\">BRITs Critics' Choice</a>\n", + "<a href=\"https://www.songlyrics.com/adele/2013-grammy/\" title=\"2013 GRAMMY ノミニーズ Lyrics Adele\">\n", + "<img alt=\"2013 GRAMMY ノミニーズ Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/2013-grammy/\" title=\"Adele - 2013 GRAMMY ノミニーズ Album Lyrics\">2013 GRAMMY ノミニーズ</a>\n", + "<a href=\"https://www.songlyrics.com/adele/adele-live-at-the-royal-albert-hall/\" title=\"Adele Live at the Royal Albert Hall Lyrics Adele\">\n", + "<img alt=\"Adele Live at the Royal Albert Hall Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/adele-live-at-the-royal-albert-hall/\" title=\"Adele - Adele Live at the Royal Albert Hall Album Lyrics\">Adele Live at the Royal Albert Hall</a>\n", + "<a href=\"https://www.songlyrics.com/adele/2011-04-08-paradiso-fm-amsterdam-netherlands/\" title=\"2011-04-08: Paradiso FM, Amsterdam, Netherlands Lyrics Adele\">\n", + "<img alt=\"2011-04-08: Paradiso FM, Amsterdam, Netherlands Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/2011-04-08-paradiso-fm-amsterdam-netherlands/\" title=\"Adele - 2011-04-08: Paradiso FM, Amsterdam, Netherlands Album Lyrics\">2011-04-08: Paradiso FM, Amsterdam, Netherlands</a>\n", + "<a href=\"https://www.songlyrics.com/adele/greatest-hits/\" title=\"Greatest Hits Lyrics Adele\">\n", + "<img alt=\"Greatest Hits Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/greatest-hits/\" title=\"Adele - Greatest Hits Album Lyrics\">Greatest Hits</a>\n", + "<a href=\"https://www.songlyrics.com/adele/live-at-the-royal-albert-hall/\" title=\"Live at the Royal Albert Hall Lyrics Adele\">\n", + "<img alt=\"Live at the Royal Albert Hall Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/live-at-the-royal-albert-hall/\" title=\"Adele - Live at the Royal Albert Hall Album Lyrics\">Live at the Royal Albert Hall</a>\n", + "<a href=\"https://www.songlyrics.com/adele/james-bond-themes-2012/\" title=\"James Bond Themes (2012) Lyrics Adele\">\n", + "<img alt=\"James Bond Themes (2012) Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/james-bond-themes-2012/\" title=\"Adele - James Bond Themes (2012) Album Lyrics\">James Bond Themes (2012)</a>\n", + "<a href=\"https://www.songlyrics.com/adele/annie-mac-presents-2011/\" title=\"Annie Mac Presents 2011 Lyrics Adele\">\n", + "<img alt=\"Annie Mac Presents 2011 Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/annie-mac-presents-2011/\" title=\"Adele - Annie Mac Presents 2011 Album Lyrics\">Annie Mac Presents 2011</a>\n", + "<a href=\"https://www.songlyrics.com/adele/21-sampler/\" title=\"21' Sampler Lyrics Adele\">\n", + "<img alt=\"21' Sampler Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/21-sampler/\" title=\"Adele - 21' Sampler Album Lyrics\">21' Sampler</a>\n", + "<a href=\"https://www.songlyrics.com/adele/2011-02-25-morning-becomes-eclectic-kcrw-fm-santa-monica-ca-usa/\" title=\"2011-02-25: Morning Becomes Eclectic, KCRW-FM, Santa Monica, CA, USA Lyrics Adele\">\n", + "<img alt=\"2011-02-25: Morning Becomes Eclectic, KCRW-FM, Santa Monica, CA, USA Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/2011-02-25-morning-becomes-eclectic-kcrw-fm-santa-monica-ca-usa/\" title=\"Adele - 2011-02-25: Morning Becomes Eclectic, KCRW-FM, Santa Monica, CA, USA Album Lyrics\">2011-02-25: Morning Becomes Eclectic, KCRW-FM, Santa...</a>\n", + "<a href=\"https://www.songlyrics.com/adele/the-video-year-mix-2012/\" title=\"The Video Year Mix 2012 Lyrics Adele\">\n", + "<img alt=\"The Video Year Mix 2012 Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/the-video-year-mix-2012/\" title=\"Adele - The Video Year Mix 2012 Album Lyrics\">The Video Year Mix 2012</a>\n", + "<a href=\"https://www.songlyrics.com/adele/film-music-2012/\" title=\"Film Music 2012 Lyrics Adele\">\n", + "<img alt=\"Film Music 2012 Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/film-music-2012/\" title=\"Adele - Film Music 2012 Album Lyrics\">Film Music 2012</a>\n", + "<a a=\"\" adele=\"\" bosch=\"\" dance=\"\" den=\"\" floor=\"\" href=\"https://www.songlyrics.com/adele/2013-04-06-a-state-of-trance-600-den-bosch-netherlands-turn-the-world-into-a-dance-floor-part-5-tenishia-den-bosch-netherlands/\" into=\"\" lyrics=\"\" netherlands=\"\" part=\"\" tenishia=\"\" the=\"\" title=\"2013-04-06: A State of Trance #600, \" turn=\"\" world=\"\">\n", + "<img a=\"\" adele=\"\" alt=\"2013-04-06: A State of Trance #600, \" bosch=\"\" class=\"album\" dance=\"\" den=\"\" floor=\"\" height=\"128\" into=\"\" lyrics=\"\" netherlands=\"\" part=\"\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" tenishia=\"\" the=\"\" turn=\"\" width=\"128\" world=\"\"/>\n", + "</a>\n", + "<a a=\"\" album=\"\" bosch=\"\" dance=\"\" den=\"\" floor=\"\" href=\"https://www.songlyrics.com/adele/2013-04-06-a-state-of-trance-600-den-bosch-netherlands-turn-the-world-into-a-dance-floor-part-5-tenishia-den-bosch-netherlands/\" into=\"\" lyrics=\"\" netherlands=\"\" part=\"\" tenishia=\"\" the=\"\" title=\"Adele - 2013-04-06: A State of Trance #600, \" turn=\"\" world=\"\">2013-04-06: A State of Trance #600, \"Den Bosch,...</a>\n", + "<a href=\"https://www.songlyrics.com/adele/musikvideos-jahrescharts-2013-top-100/\" title=\"Musikvideos Jahrescharts 2013 Top 100 Lyrics Adele\">\n", + "<img alt=\"Musikvideos Jahrescharts 2013 Top 100 Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/musikvideos-jahrescharts-2013-top-100/\" title=\"Adele - Musikvideos Jahrescharts 2013 Top 100 Album Lyrics\">Musikvideos Jahrescharts 2013 Top 100</a>\n", + "<a href=\"https://www.songlyrics.com/adele/musikvideos-jahrescharts-2012-top-100/\" title=\"Musikvideos Jahrescharts 2012 Top 100 Lyrics Adele\">\n", + "<img alt=\"Musikvideos Jahrescharts 2012 Top 100 Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/musikvideos-jahrescharts-2012-top-100/\" title=\"Adele - Musikvideos Jahrescharts 2012 Top 100 Album Lyrics\">Musikvideos Jahrescharts 2012 Top 100</a>\n", + "<a href=\"https://www.songlyrics.com/adele/the-video-year-mix-2011/\" title=\"The Video Year Mix 2011 Lyrics Adele\">\n", + "<img alt=\"The Video Year Mix 2011 Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/the-video-year-mix-2011/\" title=\"Adele - The Video Year Mix 2011 Album Lyrics\">The Video Year Mix 2011</a>\n", + "<a href=\"https://www.songlyrics.com/adele/the-singer-the-song/\" title=\"The Singer, The Song Lyrics Adele\">\n", + "<img alt=\"The Singer, The Song Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/the-singer-the-song/\" title=\"Adele - The Singer, The Song Album Lyrics\">The Singer, The Song</a>\n", + "<a href=\"https://www.songlyrics.com/adele/lo-esencial-de-1-ao-de-xitos-vol-3/\" title=\"Lo Esencial de 1 Año de Éxitos, Vol. 3 Lyrics Adele\">\n", + "<img alt=\"Lo Esencial de 1 Año de Éxitos, Vol. 3 Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/lo-esencial-de-1-ao-de-xitos-vol-3/\" title=\"Adele - Lo Esencial de 1 Año de Éxitos, Vol. 3 Album Lyrics\">Lo Esencial de 1 Año de Éxitos, Vol. 3</a>\n", + "<a href=\"https://www.songlyrics.com/adele/europa-fm-2012/\" title=\"Europa FM - 2012 Lyrics Adele\">\n", + "<img alt=\"Europa FM - 2012 Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/europa-fm-2012/\" title=\"Adele - Europa FM - 2012 Album Lyrics\">Europa FM - 2012</a>\n", + "<a href=\"https://www.songlyrics.com/adele/2012-grammy-nominees/\" title=\"2012 GRAMMY Nominees Lyrics Adele\">\n", + "<img alt=\"2012 GRAMMY Nominees Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/2012-grammy-nominees/\" title=\"Adele - 2012 GRAMMY Nominees Album Lyrics\">2012 GRAMMY Nominees</a>\n", + "<a href=\"https://www.songlyrics.com/adele/now!-18/\" title=\"Now! 18 Lyrics Adele\">\n", + "<img alt=\"Now! 18 Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/now!-18/\" title=\"Adele - Now! 18 Album Lyrics\">Now! 18</a>\n", + "<a href=\"https://www.songlyrics.com/adele/mnm-big-hits-best-of-2011/\" title=\"MNM Big Hits Best Of 2011 Lyrics Adele\">\n", + "<img alt=\"MNM Big Hits Best Of 2011 Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/mnm-big-hits-best-of-2011/\" title=\"Adele - MNM Big Hits Best Of 2011 Album Lyrics\">MNM Big Hits Best Of 2011</a>\n", + "<a href=\"https://www.songlyrics.com/adele/nrj-music-awards-2012/\" title=\"NRJ Music Awards 2012 Lyrics Adele\">\n", + "<img alt=\"NRJ Music Awards 2012 Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/nrj-music-awards-2012/\" title=\"Adele - NRJ Music Awards 2012 Album Lyrics\">NRJ Music Awards 2012</a>\n", + "<a href=\"https://www.songlyrics.com/adele/die-ultimative-chartshow-hits-2011/\" title=\"Die ultimative Chartshow - Hits 2011 Lyrics Adele\">\n", + "<img alt=\"Die ultimative Chartshow - Hits 2011 Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/die-ultimative-chartshow-hits-2011/\" title=\"Adele - Die ultimative Chartshow - Hits 2011 Album Lyrics\">Die ultimative Chartshow - Hits 2011</a>\n", + "<a href=\"https://www.songlyrics.com/adele/maximum-hit-music-best-of-2011/\" title=\"Maximum Hit Music Best of 2011 Lyrics Adele\">\n", + "<img alt=\"Maximum Hit Music Best of 2011 Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/maximum-hit-music-best-of-2011/\" title=\"Adele - Maximum Hit Music Best of 2011 Album Lyrics\">Maximum Hit Music Best of 2011</a>\n", + "<a href=\"https://www.songlyrics.com/adele/nrj-hits-2012/\" title=\"NRJ Hits 2012 Lyrics Adele\">\n", + "<img alt=\"NRJ Hits 2012 Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/nrj-hits-2012/\" title=\"Adele - NRJ Hits 2012 Album Lyrics\">NRJ Hits 2012</a>\n", + "<a href=\"https://www.songlyrics.com/adele/the-dome-vol-57/\" title=\"The Dome, Vol. 57 Lyrics Adele\">\n", + "<img alt=\"The Dome, Vol. 57 Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/the-dome-vol-57/\" title=\"Adele - The Dome, Vol. 57 Album Lyrics\">The Dome, Vol. 57</a>\n", + "<a href=\"https://www.songlyrics.com/adele/now-that-s-what-i-call-music!-78/\" title=\"Now That's What I Call Music! 78 Lyrics Adele\">\n", + "<img alt=\"Now That's What I Call Music! 78 Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/now-that-s-what-i-call-music!-78/\" title=\"Adele - Now That's What I Call Music! 78 Album Lyrics\">Now That's What I Call Music! 78</a>\n", + "<a href=\"https://www.songlyrics.com/adele/bbc-radio-1-s-live-lounge-vol-6/\" title=\"BBC Radio 1's Live Lounge, Vol. 6 Lyrics Adele\">\n", + "<img alt=\"BBC Radio 1's Live Lounge, Vol. 6 Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/bbc-radio-1-s-live-lounge-vol-6/\" title=\"Adele - BBC Radio 1's Live Lounge, Vol. 6 Album Lyrics\">BBC Radio 1's Live Lounge, Vol. 6</a>\n", + "<a href=\"https://www.songlyrics.com/adele/now-that-s-what-i-call-30-years/\" title=\"Now That's What I Call 30 Years Lyrics Adele\">\n", + "<img alt=\"Now That's What I Call 30 Years Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/now-that-s-what-i-call-30-years/\" title=\"Adele - Now That's What I Call 30 Years Album Lyrics\">Now That's What I Call 30 Years</a>\n", + "<a href=\"https://www.songlyrics.com/adele/now-11/\" title=\"Now 11 Lyrics Adele\">\n", + "<img alt=\"Now 11 Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/now-11/\" title=\"Adele - Now 11 Album Lyrics\">Now 11</a>\n", + "<a href=\"https://www.songlyrics.com/adele/un-maxx-de-tubes-2011/\" title=\"Un maxx de tubes 2011 Lyrics Adele\">\n", + "<img alt=\"Un maxx de tubes 2011 Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/un-maxx-de-tubes-2011/\" title=\"Adele - Un maxx de tubes 2011 Album Lyrics\">Un maxx de tubes 2011</a>\n", + "<a href=\"https://www.songlyrics.com/adele/nrj-summer-hits-only-2011/\" title=\"NRJ Summer Hits Only 2011 Lyrics Adele\">\n", + "<img alt=\"NRJ Summer Hits Only 2011 Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/nrj-summer-hits-only-2011/\" title=\"Adele - NRJ Summer Hits Only 2011 Album Lyrics\">NRJ Summer Hits Only 2011</a>\n", + "<a href=\"https://www.songlyrics.com/adele/tutti-pazzi-per-rds/\" title=\"Tutti pazzi per RDS Lyrics Adele\">\n", + "<img alt=\"Tutti pazzi per RDS Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/tutti-pazzi-per-rds/\" title=\"Adele - Tutti pazzi per RDS Album Lyrics\">Tutti pazzi per RDS</a>\n", + "<a href=\"https://www.songlyrics.com/adele/nrj-hit-list-2011/\" title=\"NRJ Hit List 2011 Lyrics Adele\">\n", + "<img alt=\"NRJ Hit List 2011 Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/nrj-hit-list-2011/\" title=\"Adele - NRJ Hit List 2011 Album Lyrics\">NRJ Hit List 2011</a>\n", + "<a href=\"https://www.songlyrics.com/adele/the-brit-awards-album-2011-plus-bonus-brits-school-tracks/\" title=\"The Brit Awards Album 2011 (Plus Bonus BRITs School Tracks) Lyrics Adele\">\n", + "<img alt=\"The Brit Awards Album 2011 (Plus Bonus BRITs School Tracks) Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/the-brit-awards-album-2011-plus-bonus-brits-school-tracks/\" title=\"Adele - The Brit Awards Album 2011 (Plus Bonus BRITs School Tracks) Album Lyrics\">The Brit Awards Album 2011 (Plus Bonus BRITs School Tracks)</a>\n", + "<a href=\"https://www.songlyrics.com/adele/absolute-summer-hits/\" title=\"Absolute Summer Hits Lyrics Adele\">\n", + "<img alt=\"Absolute Summer Hits Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/absolute-summer-hits/\" title=\"Adele - Absolute Summer Hits Album Lyrics\">Absolute Summer Hits</a>\n", + "<a href=\"https://www.songlyrics.com/adele/100-hits-the-best-of-2011-summer-edition/\" title=\"100% Hits - The Best of 2011 Summer Edition Lyrics Adele\">\n", + "<img alt=\"100% Hits - The Best of 2011 Summer Edition Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/100-hits-the-best-of-2011-summer-edition/\" title=\"Adele - 100% Hits - The Best of 2011 Summer Edition Album Lyrics\">100% Hits - The Best of 2011 Summer Edition</a>\n", + "<a href=\"https://www.songlyrics.com/adele/rtl-hits-2011/\" title=\"RTL Hits 2011 Lyrics Adele\">\n", + "<img alt=\"RTL Hits 2011 Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/rtl-hits-2011/\" title=\"Adele - RTL Hits 2011 Album Lyrics\">RTL Hits 2011</a>\n", + "<a href=\"https://www.songlyrics.com/adele/maximum-hit-music-vol-1-2011/\" title=\"Maximum Hit Music, Vol. 1 - 2011 Lyrics Adele\">\n", + "<img alt=\"Maximum Hit Music, Vol. 1 - 2011 Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/maximum-hit-music-vol-1-2011/\" title=\"Adele - Maximum Hit Music, Vol. 1 - 2011 Album Lyrics\">Maximum Hit Music, Vol. 1 - 2011</a>\n", + "<a href=\"https://www.songlyrics.com/adele/mnm-big-hits-2011-1/\" title=\"MNM Big Hits 2011-1 Lyrics Adele\">\n", + "<img alt=\"MNM Big Hits 2011-1 Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/mnm-big-hits-2011-1/\" title=\"Adele - MNM Big Hits 2011-1 Album Lyrics\">MNM Big Hits 2011-1</a>\n", + "<a href=\"https://www.songlyrics.com/adele/nrj-hit-music-only-2011/\" title=\"NRJ Hit Music Only 2011 Lyrics Adele\">\n", + "<img alt=\"NRJ Hit Music Only 2011 Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/nrj-hit-music-only-2011/\" title=\"Adele - NRJ Hit Music Only 2011 Album Lyrics\">NRJ Hit Music Only 2011</a>\n", + "<a href=\"https://www.songlyrics.com/adele/hit-connection-2011-1/\" title=\"Hit Connection 2011-1 Lyrics Adele\">\n", + "<img alt=\"Hit Connection 2011-1 Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/hit-connection-2011-1/\" title=\"Adele - Hit Connection 2011-1 Album Lyrics\">Hit Connection 2011-1</a>\n", + "<a href=\"https://www.songlyrics.com/adele/now-the-hits-of-autumn-2011/\" title=\"NOW: The Hits of Autumn 2011 Lyrics Adele\">\n", + "<img alt=\"NOW: The Hits of Autumn 2011 Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/now-the-hits-of-autumn-2011/\" title=\"Adele - NOW: The Hits of Autumn 2011 Album Lyrics\">NOW: The Hits of Autumn 2011</a>\n", + "<a href=\"https://www.songlyrics.com/adele/3-greatest-hits-vol-53/\" title=\"Ö3 Greatest Hits, Vol. 53 Lyrics Adele\">\n", + "<img alt=\"Ö3 Greatest Hits, Vol. 53 Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/3-greatest-hits-vol-53/\" title=\"Adele - Ö3 Greatest Hits, Vol. 53 Album Lyrics\">Ö3 Greatest Hits, Vol. 53</a>\n", + "<a href=\"https://www.songlyrics.com/adele/los-nmeros-1-de-cadena-100-2011/\" title=\"Los Números 1 de Cadena 100 (2011) Lyrics Adele\">\n", + "<img alt=\"Los Números 1 de Cadena 100 (2011) Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/los-nmeros-1-de-cadena-100-2011/\" title=\"Adele - Los Números 1 de Cadena 100 (2011) Album Lyrics\">Los Números 1 de Cadena 100 (2011)</a>\n", + "<a href=\"https://www.songlyrics.com/adele/538-hitzone-56/\" title=\"538 Hitzone 56 Lyrics Adele\">\n", + "<img alt=\"538 Hitzone 56 Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/538-hitzone-56/\" title=\"Adele - 538 Hitzone 56 Album Lyrics\">538 Hitzone 56</a>\n", + "<a href=\"https://www.songlyrics.com/adele/life-is-music-20111/\" title=\"Life Is Music 2011/1 Lyrics Adele\">\n", + "<img alt=\"Life Is Music 2011/1 Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/life-is-music-20111/\" title=\"Adele - Life Is Music 2011/1 Album Lyrics\">Life Is Music 2011/1</a>\n", + "<a href=\"https://www.songlyrics.com/adele/humo-2011/\" title=\"Humo 2011 Lyrics Adele\">\n", + "<img alt=\"Humo 2011 Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/humo-2011/\" title=\"Adele - Humo 2011 Album Lyrics\">Humo 2011</a>\n", + "<a href=\"https://www.songlyrics.com/adele/hits-del-ao/\" title=\"Hits del Año Lyrics Adele\">\n", + "<img alt=\"Hits del Año Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/hits-del-ao/\" title=\"Adele - Hits del Año Album Lyrics\">Hits del Año</a>\n", + "<a href=\"https://www.songlyrics.com/adele/rtl-sommer-hits-2011/\" title=\"RTL Sommer Hits 2011 Lyrics Adele\">\n", + "<img alt=\"RTL Sommer Hits 2011 Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/rtl-sommer-hits-2011/\" title=\"Adele - RTL Sommer Hits 2011 Album Lyrics\">RTL Sommer Hits 2011</a>\n", + "<a href=\"https://www.songlyrics.com/adele/now-the-hits-of-spring-2011/\" title=\"Now the Hits of Spring 2011 Lyrics Adele\">\n", + "<img alt=\"Now the Hits of Spring 2011 Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/now-the-hits-of-spring-2011/\" title=\"Adele - Now the Hits of Spring 2011 Album Lyrics\">Now the Hits of Spring 2011</a>\n", + "<a href=\"https://www.songlyrics.com/adele/caf-puls-hits-11/\" title=\"Café Puls Hits '11 Lyrics Adele\">\n", + "<img alt=\"Café Puls Hits '11 Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/caf-puls-hits-11/\" title=\"Adele - Café Puls Hits '11 Album Lyrics\">Café Puls Hits '11</a>\n", + "<a href=\"https://www.songlyrics.com/adele/deejay-story-la-musica-che-ha-fatto-la-storia-di-radio-deejay/\" title=\"Deejay Story (La Musica Che Ha Fatto La Storia Di Radio Deejay) Lyrics Adele\">\n", + "<img alt=\"Deejay Story (La Musica Che Ha Fatto La Storia Di Radio Deejay) Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/deejay-story-la-musica-che-ha-fatto-la-storia-di-radio-deejay/\" title=\"Adele - Deejay Story (La Musica Che Ha Fatto La Storia Di Radio Deejay) Album Lyrics\">Deejay Story (La Musica Che Ha Fatto La Storia Di Radio...</a>\n", + "<a href=\"https://www.songlyrics.com/adele/more-music-4/\" title=\"More Music 4 Lyrics Adele\">\n", + "<img alt=\"More Music 4 Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/more-music-4/\" title=\"Adele - More Music 4 Album Lyrics\">More Music 4</a>\n", + "<a href=\"https://www.songlyrics.com/adele/la-brasil-hits-internacionais/\" title=\"Ôla Brasil - Hits Internacionais Lyrics Adele\">\n", + "<img alt=\"Ôla Brasil - Hits Internacionais Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/la-brasil-hits-internacionais/\" title=\"Adele - Ôla Brasil - Hits Internacionais Album Lyrics\">Ôla Brasil - Hits Internacionais</a>\n", + "<a href=\"https://www.songlyrics.com/adele/pay-close-attention-xl-recordings/\" title=\"Pay Close Attention: XL Recordings Lyrics Adele\">\n", + "<img alt=\"Pay Close Attention: XL Recordings Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/pay-close-attention-xl-recordings/\" title=\"Adele - Pay Close Attention: XL Recordings Album Lyrics\">Pay Close Attention: XL Recordings</a>\n", + "<a href=\"https://www.songlyrics.com/adele/summer-hits/\" title=\"Summer Hits Lyrics Adele\">\n", + "<img alt=\"Summer Hits Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/summer-hits/\" title=\"Adele - Summer Hits Album Lyrics\">Summer Hits</a>\n", + "<a href=\"https://www.songlyrics.com/adele/millennium-vol-11/\" title=\"Millennium Vol.11 Lyrics Adele\">\n", + "<img alt=\"Millennium Vol.11 Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/millennium-vol-11/\" title=\"Adele - Millennium Vol.11 Album Lyrics\">Millennium Vol.11</a>\n", + "<a href=\"https://www.songlyrics.com/adele/ministry-of-sound-the-annual-2012/\" title=\"Ministry of Sound: The Annual 2012 Lyrics Adele\">\n", + "<img alt=\"Ministry of Sound: The Annual 2012 Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/ministry-of-sound-the-annual-2012/\" title=\"Adele - Ministry of Sound: The Annual 2012 Album Lyrics\">Ministry of Sound: The Annual 2012</a>\n", + "<a href=\"https://www.songlyrics.com/adele/ibiza-annual-2011-ministry-of-sound/\" title=\"Ibiza Annual 2011: Ministry of Sound Lyrics Adele\">\n", + "<img alt=\"Ibiza Annual 2011: Ministry of Sound Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/ibiza-annual-2011-ministry-of-sound/\" title=\"Adele - Ibiza Annual 2011: Ministry of Sound Album Lyrics\">Ibiza Annual 2011: Ministry of Sound</a>\n", + "<a href=\"https://www.songlyrics.com/adele/the-annual-2012-ministry-of-sound/\" title=\"The Annual 2012 - Ministry of Sound Lyrics Adele\">\n", + "<img alt=\"The Annual 2012 - Ministry of Sound Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/the-annual-2012-ministry-of-sound/\" title=\"Adele - The Annual 2012 - Ministry of Sound Album Lyrics\">The Annual 2012 - Ministry of Sound</a>\n", + "<a href=\"https://www.songlyrics.com/adele/rolling-in-the-deep-the-remixes/\" title=\"Rolling in the Deep (The Remixes) Lyrics Adele\">\n", + "<img alt=\"Rolling in the Deep (The Remixes) Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/rolling-in-the-deep-the-remixes/\" title=\"Adele - Rolling in the Deep (The Remixes) Album Lyrics\">Rolling in the Deep (The Remixes)</a>\n", + "<a href=\"https://www.songlyrics.com/adele/ministry-of-sound-addicted-to-bass-2011/\" title=\"Ministry of Sound: Addicted to Bass 2011 Lyrics Adele\">\n", + "<img alt=\"Ministry of Sound: Addicted to Bass 2011 Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/ministry-of-sound-addicted-to-bass-2011/\" title=\"Adele - Ministry of Sound: Addicted to Bass 2011 Album Lyrics\">Ministry of Sound: Addicted to Bass 2011</a>\n", + "<a href=\"https://www.songlyrics.com/adele/g-a-y/\" title=\"G-A-Y Lyrics Adele\">\n", + "<img alt=\"G-A-Y Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/g-a-y/\" title=\"Adele - G-A-Y Album Lyrics\">G-A-Y</a>\n", + "<a href=\"https://www.songlyrics.com/adele/ministry-of-sound-running-trax-gold/\" title=\"Ministry of Sound: Running Trax Gold Lyrics Adele\">\n", + "<img alt=\"Ministry of Sound: Running Trax Gold Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/ministry-of-sound-running-trax-gold/\" title=\"Adele - Ministry of Sound: Running Trax Gold Album Lyrics\">Ministry of Sound: Running Trax Gold</a>\n", + "<a href=\"https://www.songlyrics.com/adele/fifteen-years-of-hospital-records/\" title=\"Fifteen Years of Hospital Records Lyrics Adele\">\n", + "<img alt=\"Fifteen Years of Hospital Records Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/fifteen-years-of-hospital-records/\" title=\"Adele - Fifteen Years of Hospital Records Album Lyrics\">Fifteen Years of Hospital Records</a>\n", + "<a href=\"https://www.songlyrics.com/adele/fifteen-years-of-hospital/\" title=\"Fifteen Years Of Hospital Lyrics Adele\">\n", + "<img alt=\"Fifteen Years Of Hospital Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/fifteen-years-of-hospital/\" title=\"Adele - Fifteen Years Of Hospital Album Lyrics\">Fifteen Years Of Hospital</a>\n", + "<a href=\"https://www.songlyrics.com/adele/life-is-music-2008/\" title=\"Life Is Music 2008 Lyrics Adele\">\n", + "<img alt=\"Life Is Music 2008 Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/life-is-music-2008/\" title=\"Adele - Life Is Music 2008 Album Lyrics\">Life Is Music 2008</a>\n", + "<a href=\"https://www.songlyrics.com/adele/chilled-acoustic/\" title=\"Chilled Acoustic Lyrics Adele\">\n", + "<img alt=\"Chilled Acoustic Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/chilled-acoustic/\" title=\"Adele - Chilled Acoustic Album Lyrics\">Chilled Acoustic</a>\n", + "<a href=\"https://www.songlyrics.com/adele/the-burning-ear-digest-roundup-volume-21/\" title=\"The Burning Ear Digest Roundup, Volume 21 Lyrics Adele\">\n", + "<img alt=\"The Burning Ear Digest Roundup, Volume 21 Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/the-burning-ear-digest-roundup-volume-21/\" title=\"Adele - The Burning Ear Digest Roundup, Volume 21 Album Lyrics\">The Burning Ear Digest Roundup, Volume 21</a>\n", + "<a href=\"https://www.songlyrics.com/adele/cd-pool-hits-2011-03/\" title=\"CD Pool - Hits (2011-03) Lyrics Adele\">\n", + "<img alt=\"CD Pool - Hits (2011-03) Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/cd-pool-hits-2011-03/\" title=\"Adele - CD Pool - Hits (2011-03) Album Lyrics\">CD Pool - Hits (2011-03)</a>\n", + "<a href=\"https://www.songlyrics.com/adele/the-dome-volume-58/\" title=\"The Dome, Volume 58 Lyrics Adele\">\n", + "<img alt=\"The Dome, Volume 58 Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/the-dome-volume-58/\" title=\"Adele - The Dome, Volume 58 Album Lyrics\">The Dome, Volume 58</a>\n", + "<a href=\"https://www.songlyrics.com/adele/promo-only-mainstream-radio-august-2011/\" title=\"Promo Only: Mainstream Radio, August 2011 Lyrics Adele\">\n", + "<img alt=\"Promo Only: Mainstream Radio, August 2011 Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/promo-only-mainstream-radio-august-2011/\" title=\"Adele - Promo Only: Mainstream Radio, August 2011 Album Lyrics\">Promo Only: Mainstream Radio, August 2011</a>\n", + "<a href=\"https://www.songlyrics.com/adele/now-thats-what-i-call-music!-79/\" title=\"Now That’s What I Call Music! 79 Lyrics Adele\">\n", + "<img alt=\"Now That’s What I Call Music! 79 Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/now-thats-what-i-call-music!-79/\" title=\"Adele - Now That’s What I Call Music! 79 Album Lyrics\">Now That’s What I Call Music! 79</a>\n", + "<a href=\"https://www.songlyrics.com/adele/radio-538-hitzone-58/\" title=\"Radio 538 Hitzone 58 Lyrics Adele\">\n", + "<img alt=\"Radio 538 Hitzone 58 Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/radio-538-hitzone-58/\" title=\"Adele - Radio 538 Hitzone 58 Album Lyrics\">Radio 538 Hitzone 58</a>\n", + "<a href=\"https://www.songlyrics.com/adele/absolute-music-68/\" title=\"Absolute Music 68 Lyrics Adele\">\n", + "<img alt=\"Absolute Music 68 Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/absolute-music-68/\" title=\"Adele - Absolute Music 68 Album Lyrics\">Absolute Music 68</a>\n", + "<a href=\"https://www.songlyrics.com/adele/radio-538-hitzone-60/\" title=\"Radio 538 Hitzone 60 Lyrics Adele\">\n", + "<img alt=\"Radio 538 Hitzone 60 Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/radio-538-hitzone-60/\" title=\"Adele - Radio 538 Hitzone 60 Album Lyrics\">Radio 538 Hitzone 60</a>\n", + "<a href=\"https://www.songlyrics.com/adele/now-thats-what-i-call-music!-80/\" title=\"Now That’s What I Call Music! 80 Lyrics Adele\">\n", + "<img alt=\"Now That’s What I Call Music! 80 Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/now-thats-what-i-call-music!-80/\" title=\"Adele - Now That’s What I Call Music! 80 Album Lyrics\">Now That’s What I Call Music! 80</a>\n", + "<a href=\"https://www.songlyrics.com/adele/kuschel-rock/\" title=\"Kuschel Rock Lyrics Adele\">\n", + "<img alt=\"Kuschel Rock Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/kuschel-rock/\" title=\"Adele - Kuschel Rock Album Lyrics\">Kuschel Rock</a>\n", + "<a href=\"https://www.songlyrics.com/adele/radio-538-hitzone-57/\" title=\"Radio 538 Hitzone 57 Lyrics Adele\">\n", + "<img alt=\"Radio 538 Hitzone 57 Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/radio-538-hitzone-57/\" title=\"Adele - Radio 538 Hitzone 57 Album Lyrics\">Radio 538 Hitzone 57</a>\n", + "<a href=\"https://www.songlyrics.com/adele/radio-538-hitzone-61/\" title=\"Radio 538 Hitzone 61 Lyrics Adele\">\n", + "<img alt=\"Radio 538 Hitzone 61 Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/radio-538-hitzone-61/\" title=\"Adele - Radio 538 Hitzone 61 Album Lyrics\">Radio 538 Hitzone 61</a>\n", + "<a href=\"https://www.songlyrics.com/adele/cities-97-sampler-volume-23/\" title=\"Cities 97 Sampler, Volume 23 Lyrics Adele\">\n", + "<img alt=\"Cities 97 Sampler, Volume 23 Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/cities-97-sampler-volume-23/\" title=\"Adele - Cities 97 Sampler, Volume 23 Album Lyrics\">Cities 97 Sampler, Volume 23</a>\n", + "<a href=\"https://www.songlyrics.com/adele/radio-538-hit-zone-60/\" title=\"Radio 538 Hit zone 60 Lyrics Adele\">\n", + "<img alt=\"Radio 538 Hit zone 60 Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/radio-538-hit-zone-60/\" title=\"Adele - Radio 538 Hit zone 60 Album Lyrics\">Radio 538 Hit zone 60</a>\n", + "<a href=\"https://www.songlyrics.com/adele/die-ultimative-chart-show-die-erfolgreichsten-hits-der-welt/\" title=\"Die ultimative Chart Show: Die erfolgreichsten Hits der Welt Lyrics Adele\">\n", + "<img alt=\"Die ultimative Chart Show: Die erfolgreichsten Hits der Welt Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/die-ultimative-chart-show-die-erfolgreichsten-hits-der-welt/\" title=\"Adele - Die ultimative Chart Show: Die erfolgreichsten Hits der Welt Album Lyrics\">Die ultimative Chart Show: Die erfolgreichsten Hits der Welt</a>\n", + "<a href=\"https://www.songlyrics.com/adele/bravo-hits-73/\" title=\"Bravo Hits 73 Lyrics Adele\">\n", + "<img alt=\"Bravo Hits 73 Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/bravo-hits-73/\" title=\"Adele - Bravo Hits 73 Album Lyrics\">Bravo Hits 73</a>\n", + "<a href=\"https://www.songlyrics.com/adele/promo-only-mainstream-radio-december-2011/\" title=\"Promo Only: Mainstream Radio, December 2011 Lyrics Adele\">\n", + "<img alt=\"Promo Only: Mainstream Radio, December 2011 Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/promo-only-mainstream-radio-december-2011/\" title=\"Adele - Promo Only: Mainstream Radio, December 2011 Album Lyrics\">Promo Only: Mainstream Radio, December 2011</a>\n", + "<a href=\"https://www.songlyrics.com/adele/so-fresh-the-hits-of-summer-2012-the-best-of-2011/\" title=\"So Fresh: The Hits of Summer 2012 & The Best of 2011 Lyrics Adele\">\n", + "<img alt=\"So Fresh: The Hits of Summer 2012 & The Best of 2011 Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/so-fresh-the-hits-of-summer-2012-the-best-of-2011/\" title=\"Adele - So Fresh: The Hits of Summer 2012 & The Best of 2011 Album Lyrics\">So Fresh: The Hits of Summer 2012 & The Best of 2011</a>\n", + "<a href=\"https://www.songlyrics.com/adele/now-that-s-what-i-call-music!-41/\" title=\"Now That's What I Call Music! 41 Lyrics Adele\">\n", + "<img alt=\"Now That's What I Call Music! 41 Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/now-that-s-what-i-call-music!-41/\" title=\"Adele - Now That's What I Call Music! 41 Album Lyrics\">Now That's What I Call Music! 41</a>\n", + "<a href=\"https://www.songlyrics.com/adele/life-is-music-2011-2/\" title=\"Life Is Music 2011.2 Lyrics Adele\">\n", + "<img alt=\"Life Is Music 2011.2 Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/life-is-music-2011-2/\" title=\"Adele - Life Is Music 2011.2 Album Lyrics\">Life Is Music 2011.2</a>\n", + "<a href=\"https://www.songlyrics.com/adele/los-nmeros-uno-de-los-40-principales-2012/\" title=\"Los números uno de los 40 principales 2012 Lyrics Adele\">\n", + "<img alt=\"Los números uno de los 40 principales 2012 Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/los-nmeros-uno-de-los-40-principales-2012/\" title=\"Adele - Los números uno de los 40 principales 2012 Album Lyrics\">Los números uno de los 40 principales 2012</a>\n", + "<a href=\"https://www.songlyrics.com/adele/mnm-big-hits-2011-2/\" title=\"MNM Big Hits 2011.2 Lyrics Adele\">\n", + "<img alt=\"MNM Big Hits 2011.2 Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/mnm-big-hits-2011-2/\" title=\"Adele - MNM Big Hits 2011.2 Album Lyrics\">MNM Big Hits 2011.2</a>\n", + "<a href=\"https://www.songlyrics.com/adele/the-official-uk-top-150-biggest-selling-singles-of-the-21st-century/\" title=\"The Official UK Top 150 Biggest Selling Singles Of The 21st Century Lyrics Adele\">\n", + "<img alt=\"The Official UK Top 150 Biggest Selling Singles Of The 21st Century Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/the-official-uk-top-150-biggest-selling-singles-of-the-21st-century/\" title=\"Adele - The Official UK Top 150 Biggest Selling Singles Of The 21st Century Album Lyrics\">The Official UK Top 150 Biggest Selling Singles Of The...</a>\n", + "<a href=\"https://www.songlyrics.com/adele/maximum-hit-music-2012-1/\" title=\"Maximum Hit Music 2012-1 Lyrics Adele\">\n", + "<img alt=\"Maximum Hit Music 2012-1 Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/maximum-hit-music-2012-1/\" title=\"Adele - Maximum Hit Music 2012-1 Album Lyrics\">Maximum Hit Music 2012-1</a>\n", + "<a href=\"https://www.songlyrics.com/adele/now-that-s-what-i-call-music-vol-41-42-43-44/\" title=\"NOW That's What I Call Music, Vol. 41, 42, 43 & 44 Lyrics Adele\">\n", + "<img alt=\"NOW That's What I Call Music, Vol. 41, 42, 43 & 44 Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/now-that-s-what-i-call-music-vol-41-42-43-44/\" title=\"Adele - NOW That's What I Call Music, Vol. 41, 42, 43 & 44 Album Lyrics\">NOW That's What I Call Music, Vol. 41, 42, 43 & 44</a>\n", + "<a href=\"https://www.songlyrics.com/adele/538-hitzone-61/\" title=\"538 Hitzone 61 Lyrics Adele\">\n", + "<img alt=\"538 Hitzone 61 Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/538-hitzone-61/\" title=\"Adele - 538 Hitzone 61 Album Lyrics\">538 Hitzone 61</a>\n", + "<a href=\"https://www.songlyrics.com/adele/538-hitzone-60/\" title=\"538 Hitzone 60 Lyrics Adele\">\n", + "<img alt=\"538 Hitzone 60 Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/538-hitzone-60/\" title=\"Adele - 538 Hitzone 60 Album Lyrics\">538 Hitzone 60</a>\n", + "<a href=\"https://www.songlyrics.com/adele/pop-mothers/\" title=\"Pop Mothers Lyrics Adele\">\n", + "<img alt=\"Pop Mothers Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/pop-mothers/\" title=\"Adele - Pop Mothers Album Lyrics\">Pop Mothers</a>\n", + "<a href=\"https://www.songlyrics.com/adele/simply-the-best-ballads/\" title=\"Simply the Best Ballads Lyrics Adele\">\n", + "<img alt=\"Simply the Best Ballads Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/simply-the-best-ballads/\" title=\"Adele - Simply the Best Ballads Album Lyrics\">Simply the Best Ballads</a>\n", + "<a href=\"https://www.songlyrics.com/adele/now-that-s-what-i-call-music-41/\" title=\"Now That's What I Call Music 41 Lyrics Adele\">\n", + "<img alt=\"Now That's What I Call Music 41 Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/now-that-s-what-i-call-music-41/\" title=\"Adele - Now That's What I Call Music 41 Album Lyrics\">Now That's What I Call Music 41</a>\n", + "<a href=\"https://www.songlyrics.com/adele/los-n-1-de-40-principales-el-disco-de-los-xitos-2012/\" title=\"Los nº 1 de 40 Principales. El disco de los éxitos (2012) Lyrics Adele\">\n", + "<img alt=\"Los nº 1 de 40 Principales. El disco de los éxitos (2012) Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/los-n-1-de-40-principales-el-disco-de-los-xitos-2012/\" title=\"Adele - Los nº 1 de 40 Principales. El disco de los éxitos (2012) Album Lyrics\">Los nº 1 de 40 Principales. El disco de los éxitos (2012)</a>\n", + "<a href=\"https://www.songlyrics.com/adele/europa-fm-levntate-y-cardenas-ponte-a-prueba-vol-2/\" title=\"Europa Fm: Levántate Y Cardenas - Ponte A Prueba (Vol. 2) Lyrics Adele\">\n", + "<img alt=\"Europa Fm: Levántate Y Cardenas - Ponte A Prueba (Vol. 2) Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/europa-fm-levntate-y-cardenas-ponte-a-prueba-vol-2/\" title=\"Adele - Europa Fm: Levántate Y Cardenas - Ponte A Prueba (Vol. 2) Album Lyrics\">Europa Fm: Levántate Y Cardenas - Ponte A Prueba (Vol. 2)</a>\n", + "<a href=\"https://www.songlyrics.com/adele/hit-connection-20112/\" title=\"Hit Connection 2011/2 Lyrics Adele\">\n", + "<img alt=\"Hit Connection 2011/2 Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/hit-connection-20112/\" title=\"Adele - Hit Connection 2011/2 Album Lyrics\">Hit Connection 2011/2</a>\n", + "<a href=\"https://www.songlyrics.com/adele/now-that-s-what-i-call-music-!-hits-2011/\" title=\"NOW - That's What I Call Music ! HITS 2011 Lyrics Adele\">\n", + "<img alt=\"NOW - That's What I Call Music ! HITS 2011 Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/now-that-s-what-i-call-music-!-hits-2011/\" title=\"Adele - NOW - That's What I Call Music ! HITS 2011 Album Lyrics\">NOW - That's What I Call Music ! HITS 2011</a>\n", + "<a href=\"https://www.songlyrics.com/adele/ministry-of-sound-clubbers-guide-to-spring-2011/\" title=\"Ministry of Sound: Clubbers Guide to Spring 2011 Lyrics Adele\">\n", + "<img alt=\"Ministry of Sound: Clubbers Guide to Spring 2011 Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/ministry-of-sound-clubbers-guide-to-spring-2011/\" title=\"Adele - Ministry of Sound: Clubbers Guide to Spring 2011 Album Lyrics\">Ministry of Sound: Clubbers Guide to Spring 2011</a>\n", + "<a href=\"https://www.songlyrics.com/adele/more-house-2011-the-hit-mix-pt-2/\" title=\"More House 2011 The Hit-Mix, Pt. 2 Lyrics Adele\">\n", + "<img alt=\"More House 2011 The Hit-Mix, Pt. 2 Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/more-house-2011-the-hit-mix-pt-2/\" title=\"Adele - More House 2011 The Hit-Mix, Pt. 2 Album Lyrics\">More House 2011 The Hit-Mix, Pt. 2</a>\n", + "<a href=\"https://www.songlyrics.com/adele/axtone-presents-thomas-gold/\" title=\"Axtone Presents Thomas Gold Lyrics Adele\">\n", + "<img alt=\"Axtone Presents Thomas Gold Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/axtone-presents-thomas-gold/\" title=\"Adele - Axtone Presents Thomas Gold Album Lyrics\">Axtone Presents Thomas Gold</a>\n", + "<a href=\"https://www.songlyrics.com/adele/ministry-of-sound-the-2012-annual/\" title=\"Ministry Of Sound The 2012 Annual Lyrics Adele\">\n", + "<img alt=\"Ministry Of Sound The 2012 Annual Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/ministry-of-sound-the-2012-annual/\" title=\"Adele - Ministry Of Sound The 2012 Annual Album Lyrics\">Ministry Of Sound The 2012 Annual</a>\n", + "<a href=\"https://www.songlyrics.com/adele/innovation/\" title=\"Innovation Lyrics Adele\">\n", + "<img alt=\"Innovation Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/innovation/\" title=\"Adele - Innovation Album Lyrics\">Innovation</a>\n", + "<a href=\"https://www.songlyrics.com/adele/promo-only-mainstream-club-january-2012/\" title=\"Promo Only: Mainstream Club, January 2012 Lyrics Adele\">\n", + "<img alt=\"Promo Only: Mainstream Club, January 2012 Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/promo-only-mainstream-club-january-2012/\" title=\"Adele - Promo Only: Mainstream Club, January 2012 Album Lyrics\">Promo Only: Mainstream Club, January 2012</a>\n", + "<a href=\"https://www.songlyrics.com/adele/promo-only-mainstream-club-april-2011/\" title=\"Promo Only: Mainstream Club, April 2011 Lyrics Adele\">\n", + "<img alt=\"Promo Only: Mainstream Club, April 2011 Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/promo-only-mainstream-club-april-2011/\" title=\"Adele - Promo Only: Mainstream Club, April 2011 Album Lyrics\">Promo Only: Mainstream Club, April 2011</a>\n", + "<a href=\"https://www.songlyrics.com/adele/fifteen-years-of-hospital-records-us-edition/\" title=\"Fifteen Years of Hospital Records (US Edition) Lyrics Adele\">\n", + "<img alt=\"Fifteen Years of Hospital Records (US Edition) Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/fifteen-years-of-hospital-records-us-edition/\" title=\"Adele - Fifteen Years of Hospital Records (US Edition) Album Lyrics\">Fifteen Years of Hospital Records (US Edition)</a>\n", + "<a href=\"https://www.songlyrics.com/adele/de-afrekening-volume-50/\" title=\"De Afrekening, Volume 50 Lyrics Adele\">\n", + "<img alt=\"De Afrekening, Volume 50 Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/de-afrekening-volume-50/\" title=\"Adele - De Afrekening, Volume 50 Album Lyrics\">De Afrekening, Volume 50</a>\n", + "<a href=\"https://www.songlyrics.com/adele/hits-february-2011/\" title=\"Hits: February 2011 Lyrics Adele\">\n", + "<img alt=\"Hits: February 2011 Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/hits-february-2011/\" title=\"Adele - Hits: February 2011 Album Lyrics\">Hits: February 2011</a>\n", + "<a href=\"https://www.songlyrics.com/adele/now-thats-what-i-call-music!-78/\" title=\"Now That’s What I Call Music! 78 Lyrics Adele\">\n", + "<img alt=\"Now That’s What I Call Music! 78 Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/now-thats-what-i-call-music!-78/\" title=\"Adele - Now That’s What I Call Music! 78 Album Lyrics\">Now That’s What I Call Music! 78</a>\n", + "<a href=\"https://www.songlyrics.com/adele/brit-awards-2011/\" title=\"Brit Awards 2011 Lyrics Adele\">\n", + "<img alt=\"Brit Awards 2011 Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/brit-awards-2011/\" title=\"Adele - Brit Awards 2011 Album Lyrics\">Brit Awards 2011</a>\n", + "<a href=\"https://www.songlyrics.com/adele/matuschkes-lieblinge/\" title=\"Matuschkes Lieblinge Lyrics Adele\">\n", + "<img alt=\"Matuschkes Lieblinge Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/matuschkes-lieblinge/\" title=\"Adele - Matuschkes Lieblinge Album Lyrics\">Matuschkes Lieblinge</a>\n", + "<a href=\"https://www.songlyrics.com/adele/bravo-hits-72/\" title=\"Bravo Hits 72 Lyrics Adele\">\n", + "<img alt=\"Bravo Hits 72 Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/bravo-hits-72/\" title=\"Adele - Bravo Hits 72 Album Lyrics\">Bravo Hits 72</a>\n", + "<a href=\"https://www.songlyrics.com/adele/live-at-the-world-cafe-20th-anniversary-edition/\" title=\"Live at the World Cafe, 20th Anniversary Edition Lyrics Adele\">\n", + "<img alt=\"Live at the World Cafe, 20th Anniversary Edition Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/live-at-the-world-cafe-20th-anniversary-edition/\" title=\"Adele - Live at the World Cafe, 20th Anniversary Edition Album Lyrics\">Live at the World Cafe, 20th Anniversary Edition</a>\n", + "<a href=\"https://www.songlyrics.com/adele/538-hitzone-best-of-2011/\" title=\"538 Hitzone: Best of 2011 Lyrics Adele\">\n", + "<img alt=\"538 Hitzone: Best of 2011 Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/538-hitzone-best-of-2011/\" title=\"Adele - 538 Hitzone: Best of 2011 Album Lyrics\">538 Hitzone: Best of 2011</a>\n", + "<a href=\"https://www.songlyrics.com/adele/dermot-o-leary-presents-the-saturday-sessions-2011/\" title=\"Dermot O'Leary Presents The Saturday Sessions 2011 Lyrics Adele\">\n", + "<img alt=\"Dermot O'Leary Presents The Saturday Sessions 2011 Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/dermot-o-leary-presents-the-saturday-sessions-2011/\" title=\"Adele - Dermot O'Leary Presents The Saturday Sessions 2011 Album Lyrics\">Dermot O'Leary Presents The Saturday Sessions 2011</a>\n", + "<a href=\"https://www.songlyrics.com/adele/the-dome-volume-57/\" title=\"The Dome, Volume 57 Lyrics Adele\">\n", + "<img alt=\"The Dome, Volume 57 Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/the-dome-volume-57/\" title=\"Adele - The Dome, Volume 57 Album Lyrics\">The Dome, Volume 57</a>\n", + "<a href=\"https://www.songlyrics.com/adele/bbc-radio-1-s-live-lounge-volume-6/\" title=\"BBC Radio 1's Live Lounge, Volume 6 Lyrics Adele\">\n", + "<img alt=\"BBC Radio 1's Live Lounge, Volume 6 Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/bbc-radio-1-s-live-lounge-volume-6/\" title=\"Adele - BBC Radio 1's Live Lounge, Volume 6 Album Lyrics\">BBC Radio 1's Live Lounge, Volume 6</a>\n", + "<a href=\"https://www.songlyrics.com/adele/bravo-the-hits-2011/\" title=\"Bravo The Hits 2011 Lyrics Adele\">\n", + "<img alt=\"Bravo The Hits 2011 Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/bravo-the-hits-2011/\" title=\"Adele - Bravo The Hits 2011 Album Lyrics\">Bravo The Hits 2011</a>\n", + "<a href=\"https://www.songlyrics.com/adele/die-ultimative-chart-show-die-erfolgreichsten-hits-2011/\" title=\"Die ultimative Chart Show: Die erfolgreichsten Hits 2011 Lyrics Adele\">\n", + "<img alt=\"Die ultimative Chart Show: Die erfolgreichsten Hits 2011 Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/die-ultimative-chart-show-die-erfolgreichsten-hits-2011/\" title=\"Adele - Die ultimative Chart Show: Die erfolgreichsten Hits 2011 Album Lyrics\">Die ultimative Chart Show: Die erfolgreichsten Hits 2011</a>\n", + "<a href=\"https://www.songlyrics.com/adele/now-that-s-what-i-call-music!-38/\" title=\"Now That's What I Call Music! 38 Lyrics Adele\">\n", + "<img alt=\"Now That's What I Call Music! 38 Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/now-that-s-what-i-call-music!-38/\" title=\"Adele - Now That's What I Call Music! 38 Album Lyrics\">Now That's What I Call Music! 38</a>\n", + "<a href=\"https://www.songlyrics.com/adele/radio-538-hitzone-56/\" title=\"Radio 538 Hitzone 56 Lyrics Adele\">\n", + "<img alt=\"Radio 538 Hitzone 56 Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/radio-538-hitzone-56/\" title=\"Adele - Radio 538 Hitzone 56 Album Lyrics\">Radio 538 Hitzone 56</a>\n", + "<a href=\"https://www.songlyrics.com/adele/promo-only-mainstream-radio-april-2011/\" title=\"Promo Only: Mainstream Radio, April 2011 Lyrics Adele\">\n", + "<img alt=\"Promo Only: Mainstream Radio, April 2011 Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/promo-only-mainstream-radio-april-2011/\" title=\"Adele - Promo Only: Mainstream Radio, April 2011 Album Lyrics\">Promo Only: Mainstream Radio, April 2011</a>\n", + "<a href=\"https://www.songlyrics.com/adele/humo-s-top-2011/\" title=\"Humo's Top 2011 Lyrics Adele\">\n", + "<img alt=\"Humo's Top 2011 Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/humo-s-top-2011/\" title=\"Adele - Humo's Top 2011 Album Lyrics\">Humo's Top 2011</a>\n", + "<a href=\"https://www.songlyrics.com/adele/life-is-music-2011-1/\" title=\"Life Is Music 2011.1 Lyrics Adele\">\n", + "<img alt=\"Life Is Music 2011.1 Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/life-is-music-2011-1/\" title=\"Adele - Life Is Music 2011.1 Album Lyrics\">Life Is Music 2011.1</a>\n", + "<a href=\"https://www.songlyrics.com/adele/un-maxx-de-tubes/\" title=\"Un Maxx de tubes Lyrics Adele\">\n", + "<img alt=\"Un Maxx de tubes Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/un-maxx-de-tubes/\" title=\"Adele - Un Maxx de tubes Album Lyrics\">Un Maxx de tubes</a>\n", + "<a href=\"https://www.songlyrics.com/adele/power-vrouwen-top-101/\" title=\"Power Vrouwen Top 101 Lyrics Adele\">\n", + "<img alt=\"Power Vrouwen Top 101 Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/power-vrouwen-top-101/\" title=\"Adele - Power Vrouwen Top 101 Album Lyrics\">Power Vrouwen Top 101</a>\n", + "<a href=\"https://www.songlyrics.com/adele/promo-only-urban-radio-may-2011/\" title=\"Promo Only: Urban Radio, May 2011 Lyrics Adele\">\n", + "<img alt=\"Promo Only: Urban Radio, May 2011 Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/promo-only-urban-radio-may-2011/\" title=\"Adele - Promo Only: Urban Radio, May 2011 Album Lyrics\">Promo Only: Urban Radio, May 2011</a>\n", + "<a href=\"https://www.songlyrics.com/adele/danni-lowinski-die-hits-zur-serie/\" title=\"Danni Lowinski (Die Hits zur Serie) Lyrics Adele\">\n", + "<img alt=\"Danni Lowinski (Die Hits zur Serie) Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/danni-lowinski-die-hits-zur-serie/\" title=\"Adele - Danni Lowinski (Die Hits zur Serie) Album Lyrics\">Danni Lowinski (Die Hits zur Serie)</a>\n", + "<a href=\"https://www.songlyrics.com/adele/now-that-s-what-i-call-music!-vol-38/\" title=\"NOW That's What I Call Music!, Vol. 38 Lyrics Adele\">\n", + "<img alt=\"NOW That's What I Call Music!, Vol. 38 Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/now-that-s-what-i-call-music!-vol-38/\" title=\"Adele - NOW That's What I Call Music!, Vol. 38 Album Lyrics\">NOW That's What I Call Music!, Vol. 38</a>\n", + "<a href=\"https://www.songlyrics.com/adele/slo-pop/\" title=\"Sólo Pop Lyrics Adele\">\n", + "<img alt=\"Sólo Pop Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/slo-pop/\" title=\"Adele - Sólo Pop Album Lyrics\">Sólo Pop</a>\n", + "<a href=\"https://www.songlyrics.com/adele/now-that-s-what-i-call-music-!-woman/\" title=\"NOW - That's What I Call Music ! Woman Lyrics Adele\">\n", + "<img alt=\"NOW - That's What I Call Music ! Woman Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/now-that-s-what-i-call-music-!-woman/\" title=\"Adele - NOW - That's What I Call Music ! Woman Album Lyrics\">NOW - That's What I Call Music ! Woman</a>\n", + "<a href=\"https://www.songlyrics.com/adele/cafe-puls-hits-11/\" title=\"Cafe Puls Hits 11 Lyrics Adele\">\n", + "<img alt=\"Cafe Puls Hits 11 Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/cafe-puls-hits-11/\" title=\"Adele - Cafe Puls Hits 11 Album Lyrics\">Cafe Puls Hits 11</a>\n", + "<a href=\"https://www.songlyrics.com/adele/absolute-music-67/\" title=\"Absolute Music 67 Lyrics Adele\">\n", + "<img alt=\"Absolute Music 67 Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/absolute-music-67/\" title=\"Adele - Absolute Music 67 Album Lyrics\">Absolute Music 67</a>\n", + "<a href=\"https://www.songlyrics.com/adele/humo-selecteert-meer-dan-het-beste-uit-2011/\" title=\"Humo Selecteert - Meer Dan Het Beste Uit 2011 Lyrics Adele\">\n", + "<img alt=\"Humo Selecteert - Meer Dan Het Beste Uit 2011 Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/humo-selecteert-meer-dan-het-beste-uit-2011/\" title=\"Adele - Humo Selecteert - Meer Dan Het Beste Uit 2011 Album Lyrics\">Humo Selecteert - Meer Dan Het Beste Uit 2011</a>\n", + "<a href=\"https://www.songlyrics.com/adele/50-pop-sensations/\" title=\"50 Pop Sensations Lyrics Adele\">\n", + "<img alt=\"50 Pop Sensations Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/50-pop-sensations/\" title=\"Adele - 50 Pop Sensations Album Lyrics\">50 Pop Sensations</a>\n", + "<a href=\"https://www.songlyrics.com/adele/los-n1-de-cadena-100-2011/\" title=\"Los Nº1 De Cadena 100 (2011) Lyrics Adele\">\n", + "<img alt=\"Los Nº1 De Cadena 100 (2011) Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/los-n1-de-cadena-100-2011/\" title=\"Adele - Los Nº1 De Cadena 100 (2011) Album Lyrics\">Los Nº1 De Cadena 100 (2011)</a>\n", + "<a href=\"https://www.songlyrics.com/adele/maximum-hit-music-20111/\" title=\"Maximum Hit Music 2011/1 Lyrics Adele\">\n", + "<img alt=\"Maximum Hit Music 2011/1 Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/maximum-hit-music-20111/\" title=\"Adele - Maximum Hit Music 2011/1 Album Lyrics\">Maximum Hit Music 2011/1</a>\n", + "<a href=\"https://www.songlyrics.com/adele/danni-lowinski/\" title=\"Danni Lowinski Lyrics Adele\">\n", + "<img alt=\"Danni Lowinski Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/danni-lowinski/\" title=\"Adele - Danni Lowinski Album Lyrics\">Danni Lowinski</a>\n", + "<a href=\"https://www.songlyrics.com/adele/2011-chart-hits-vol-1/\" title=\"2011 Chart Hits Vol. 1 Lyrics Adele\">\n", + "<img alt=\"2011 Chart Hits Vol. 1 Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/2011-chart-hits-vol-1/\" title=\"Adele - 2011 Chart Hits Vol. 1 Album Lyrics\">2011 Chart Hits Vol. 1</a>\n", + "<a href=\"https://www.songlyrics.com/adele/all-woman-3/\" title=\"All Woman 3 Lyrics Adele\">\n", + "<img alt=\"All Woman 3 Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/all-woman-3/\" title=\"Adele - All Woman 3 Album Lyrics\">All Woman 3</a>\n", + "<a href=\"https://www.songlyrics.com/adele/radio-1-s-live-lounge-volume-3/\" title=\"Radio 1's Live Lounge, Volume 3 Lyrics Adele\">\n", + "<img alt=\"Radio 1's Live Lounge, Volume 3 Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/radio-1-s-live-lounge-volume-3/\" title=\"Adele - Radio 1's Live Lounge, Volume 3 Album Lyrics\">Radio 1's Live Lounge, Volume 3</a>\n", + "<a href=\"https://www.songlyrics.com/adele/ladies-jazz-volume-4/\" title=\"Ladies' Jazz, Volume 4 Lyrics Adele\">\n", + "<img alt=\"Ladies' Jazz, Volume 4 Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/ladies-jazz-volume-4/\" title=\"Adele - Ladies' Jazz, Volume 4 Album Lyrics\">Ladies' Jazz, Volume 4</a>\n", + "<a href=\"https://www.songlyrics.com/adele/woman-to-woman/\" title=\"Woman to Woman Lyrics Adele\">\n", + "<img alt=\"Woman to Woman Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/woman-to-woman/\" title=\"Adele - Woman to Woman Album Lyrics\">Woman to Woman</a>\n", + "<a href=\"https://www.songlyrics.com/adele/chilli-zet-nastaw-si-na-chill-out-volume-1/\" title=\"Chilli ZET: Nastaw się na Chill Out, Volume 1 Lyrics Adele\">\n", + "<img alt=\"Chilli ZET: Nastaw się na Chill Out, Volume 1 Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/chilli-zet-nastaw-si-na-chill-out-volume-1/\" title=\"Adele - Chilli ZET: Nastaw się na Chill Out, Volume 1 Album Lyrics\">Chilli ZET: Nastaw się na Chill Out, Volume 1</a>\n", + "<a href=\"https://www.songlyrics.com/adele/live-at-the-world-caf-volume-27/\" title=\"Live at the World Café, Volume 27 Lyrics Adele\">\n", + "<img alt=\"Live at the World Café, Volume 27 Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/live-at-the-world-caf-volume-27/\" title=\"Adele - Live at the World Café, Volume 27 Album Lyrics\">Live at the World Café, Volume 27</a>\n", + "<a href=\"https://www.songlyrics.com/adele/knuffelrock-20/\" title=\"Knuffelrock 20 Lyrics Adele\">\n", + "<img alt=\"Knuffelrock 20 Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/knuffelrock-20/\" title=\"Adele - Knuffelrock 20 Album Lyrics\">Knuffelrock 20</a>\n", + "<a href=\"https://www.songlyrics.com/adele/kink-live-twelve/\" title=\"KINK Live twelve Lyrics Adele\">\n", + "<img alt=\"KINK Live twelve Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/kink-live-twelve/\" title=\"Adele - KINK Live twelve Album Lyrics\">KINK Live twelve</a>\n", + "<a href=\"https://www.songlyrics.com/adele/just-the-best-60/\" title=\"Just the Best 60 Lyrics Adele\">\n", + "<img alt=\"Just the Best 60 Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/just-the-best-60/\" title=\"Adele - Just the Best 60 Album Lyrics\">Just the Best 60</a>\n", + "<a href=\"https://www.songlyrics.com/adele/real-love/\" title=\"Real Love Lyrics Adele\">\n", + "<img alt=\"Real Love Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/real-love/\" title=\"Adele - Real Love Album Lyrics\">Real Love</a>\n", + "<a href=\"https://www.songlyrics.com/adele/grammy-nominees-2009/\" title=\"Grammy Nominees 2009 Lyrics Adele\">\n", + "<img alt=\"Grammy Nominees 2009 Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/grammy-nominees-2009/\" title=\"Adele - Grammy Nominees 2009 Album Lyrics\">Grammy Nominees 2009</a>\n", + "<a href=\"https://www.songlyrics.com/adele/promo-only-mainstream-radio-march-2009/\" title=\"Promo Only: Mainstream Radio, March 2009 Lyrics Adele\">\n", + "<img alt=\"Promo Only: Mainstream Radio, March 2009 Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/promo-only-mainstream-radio-march-2009/\" title=\"Adele - Promo Only: Mainstream Radio, March 2009 Album Lyrics\">Promo Only: Mainstream Radio, March 2009</a>\n", + "<a href=\"https://www.songlyrics.com/adele/brit-awards-2009/\" title=\"Brit Awards 2009 Lyrics Adele\">\n", + "<img alt=\"Brit Awards 2009 Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/brit-awards-2009/\" title=\"Adele - Brit Awards 2009 Album Lyrics\">Brit Awards 2009</a>\n", + "<a href=\"https://www.songlyrics.com/adele/vox/\" title=\"Vox Lyrics Adele\">\n", + "<img alt=\"Vox Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/vox/\" title=\"Adele - Vox Album Lyrics\">Vox</a>\n", + "<a href=\"https://www.songlyrics.com/adele/the-best-of-bbc-radio-1s-live-lounge/\" title=\"The Best of BBC Radio 1ʼs Live Lounge Lyrics Adele\">\n", + "<img alt=\"The Best of BBC Radio 1ʼs Live Lounge Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/the-best-of-bbc-radio-1s-live-lounge/\" title=\"Adele - The Best of BBC Radio 1ʼs Live Lounge Album Lyrics\">The Best of BBC Radio 1ʼs Live Lounge</a>\n", + "<a href=\"https://www.songlyrics.com/adele/ladies-jazz-volume-7/\" title=\"Ladies Jazz, Volume 7 Lyrics Adele\">\n", + "<img alt=\"Ladies Jazz, Volume 7 Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/ladies-jazz-volume-7/\" title=\"Adele - Ladies Jazz, Volume 7 Album Lyrics\">Ladies Jazz, Volume 7</a>\n", + "<a href=\"https://www.songlyrics.com/adele/the-hits-19/\" title=\"The Hits 19 Lyrics Adele\">\n", + "<img alt=\"The Hits 19 Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/the-hits-19/\" title=\"Adele - The Hits 19 Album Lyrics\">The Hits 19</a>\n", + "<a href=\"https://www.songlyrics.com/adele/radio-538-hitzone-45/\" title=\"Radio 538 Hitzone 45 Lyrics Adele\">\n", + "<img alt=\"Radio 538 Hitzone 45 Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/radio-538-hitzone-45/\" title=\"Adele - Radio 538 Hitzone 45 Album Lyrics\">Radio 538 Hitzone 45</a>\n", + "<a href=\"https://www.songlyrics.com/adele/nrj-summer-hits-only-2008/\" title=\"NRJ Summer Hits Only 2008 Lyrics Adele\">\n", + "<img alt=\"NRJ Summer Hits Only 2008 Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/nrj-summer-hits-only-2008/\" title=\"Adele - NRJ Summer Hits Only 2008 Album Lyrics\">NRJ Summer Hits Only 2008</a>\n", + "<a href=\"https://www.songlyrics.com/adele/bravo-hits-61/\" title=\"Bravo Hits 61 Lyrics Adele\">\n", + "<img alt=\"Bravo Hits 61 Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/bravo-hits-61/\" title=\"Adele - Bravo Hits 61 Album Lyrics\">Bravo Hits 61</a>\n", + "<a href=\"https://www.songlyrics.com/adele/kuschelrock-23/\" title=\"Kuschelrock 23 Lyrics Adele\">\n", + "<img alt=\"Kuschelrock 23 Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/kuschelrock-23/\" title=\"Adele - Kuschelrock 23 Album Lyrics\">Kuschelrock 23</a>\n", + "<a href=\"https://www.songlyrics.com/adele/the-lady-loves-soul/\" title=\"The Lady Loves Soul Lyrics Adele\">\n", + "<img alt=\"The Lady Loves Soul Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/the-lady-loves-soul/\" title=\"Adele - The Lady Loves Soul Album Lyrics\">The Lady Loves Soul</a>\n", + "<a href=\"https://www.songlyrics.com/adele/warner-time/\" title=\"Warner Time Lyrics Adele\">\n", + "<img alt=\"Warner Time Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/warner-time/\" title=\"Adele - Warner Time Album Lyrics\">Warner Time</a>\n", + "<a href=\"https://www.songlyrics.com/adele/global-chilling/\" title=\"Global Chilling Lyrics Adele\">\n", + "<img alt=\"Global Chilling Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/global-chilling/\" title=\"Adele - Global Chilling Album Lyrics\">Global Chilling</a>\n", + "<a href=\"https://www.songlyrics.com/adele/brits-hits-the-album-of-the-year-2008/\" title=\"BRITs Hits: The Album of the Year 2008 Lyrics Adele\">\n", + "<img alt=\"BRITs Hits: The Album of the Year 2008 Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/brits-hits-the-album-of-the-year-2008/\" title=\"Adele - BRITs Hits: The Album of the Year 2008 Album Lyrics\">BRITs Hits: The Album of the Year 2008</a>\n", + "<a href=\"https://www.songlyrics.com/adele/absolute-music-57/\" title=\"Absolute Music 57 Lyrics Adele\">\n", + "<img alt=\"Absolute Music 57 Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/absolute-music-57/\" title=\"Adele - Absolute Music 57 Album Lyrics\">Absolute Music 57</a>\n", + "<a href=\"https://www.songlyrics.com/adele/now-thats-what-i-call-music!-69/\" title=\"Now That’s What I Call Music! 69 Lyrics Adele\">\n", + "<img alt=\"Now That’s What I Call Music! 69 Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/now-thats-what-i-call-music!-69/\" title=\"Adele - Now That’s What I Call Music! 69 Album Lyrics\">Now That’s What I Call Music! 69</a>\n", + "<a href=\"https://www.songlyrics.com/adele/kuschelrock-vol-23/\" title=\"Kuschelrock, Vol. 23 Lyrics Adele\">\n", + "<img alt=\"Kuschelrock, Vol. 23 Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/kuschelrock-vol-23/\" title=\"Adele - Kuschelrock, Vol. 23 Album Lyrics\">Kuschelrock, Vol. 23</a>\n", + "<a href=\"https://www.songlyrics.com/adele/q-music-top-500-van-deze-eeuw-2011/\" title=\"Q-Music Top 500 Van Deze Eeuw - 2011 Lyrics Adele\">\n", + "<img alt=\"Q-Music Top 500 Van Deze Eeuw - 2011 Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/q-music-top-500-van-deze-eeuw-2011/\" title=\"Adele - Q-Music Top 500 Van Deze Eeuw - 2011 Album Lyrics\">Q-Music Top 500 Van Deze Eeuw - 2011</a>\n", + "<a href=\"https://www.songlyrics.com/adele/hot-party-summer-2008/\" title=\"Hot Party Summer 2008 Lyrics Adele\">\n", + "<img alt=\"Hot Party Summer 2008 Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/hot-party-summer-2008/\" title=\"Adele - Hot Party Summer 2008 Album Lyrics\">Hot Party Summer 2008</a>\n", + "<a href=\"https://www.songlyrics.com/adele/knuffelrock-17/\" title=\"Knuffelrock 17 Lyrics Adele\">\n", + "<img alt=\"Knuffelrock 17 Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/knuffelrock-17/\" title=\"Adele - Knuffelrock 17 Album Lyrics\">Knuffelrock 17</a>\n", + "<a href=\"https://www.songlyrics.com/adele/3-greatest-hits-volume-41/\" title=\"Ö3 Greatest Hits Volume 41 Lyrics Adele\">\n", + "<img alt=\"Ö3 Greatest Hits Volume 41 Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/3-greatest-hits-volume-41/\" title=\"Adele - Ö3 Greatest Hits Volume 41 Album Lyrics\">Ö3 Greatest Hits Volume 41</a>\n", + "<a href=\"https://www.songlyrics.com/adele/powervrouwen-top-101-2014/\" title=\"POWERVROUWEN Top 101 (2014) Lyrics Adele\">\n", + "<img alt=\"POWERVROUWEN Top 101 (2014) Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/powervrouwen-top-101-2014/\" title=\"Adele - POWERVROUWEN Top 101 (2014) Album Lyrics\">POWERVROUWEN Top 101 (2014)</a>\n", + "<a href=\"https://www.songlyrics.com/adele/women/\" title=\"Women Lyrics Adele\">\n", + "<img alt=\"Women Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/women/\" title=\"Adele - Women Album Lyrics\">Women</a>\n", + "<a href=\"https://www.songlyrics.com/adele/just-the-best-vol-60/\" title=\"Just The Best Vol. 60 Lyrics Adele\">\n", + "<img alt=\"Just The Best Vol. 60 Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/just-the-best-vol-60/\" title=\"Adele - Just The Best Vol. 60 Album Lyrics\">Just The Best Vol. 60</a>\n", + "<a href=\"https://www.songlyrics.com/adele/radio-538-hitzone-48/\" title=\"Radio 538 Hitzone 48 Lyrics Adele\">\n", + "<img alt=\"Radio 538 Hitzone 48 Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/radio-538-hitzone-48/\" title=\"Adele - Radio 538 Hitzone 48 Album Lyrics\">Radio 538 Hitzone 48</a>\n", + "<a href=\"https://www.songlyrics.com/adele/songs-for-japan/\" title=\"Songs for Japan Lyrics Adele\">\n", + "<img alt=\"Songs for Japan Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/songs-for-japan/\" title=\"Adele - Songs for Japan Album Lyrics\">Songs for Japan</a>\n", + "<a href=\"https://www.songlyrics.com/adele/now-thats-what-i-call-music!-77/\" title=\"Now That’s What I Call Music! 77 Lyrics Adele\">\n", + "<img alt=\"Now That’s What I Call Music! 77 Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/now-thats-what-i-call-music!-77/\" title=\"Adele - Now That’s What I Call Music! 77 Album Lyrics\">Now That’s What I Call Music! 77</a>\n", + "<a href=\"https://www.songlyrics.com/adele/hitzone-gold/\" title=\"Hitzone Gold Lyrics Adele\">\n", + "<img alt=\"Hitzone Gold Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/hitzone-gold/\" title=\"Adele - Hitzone Gold Album Lyrics\">Hitzone Gold</a>\n", + "<a href=\"https://www.songlyrics.com/adele/2008-09-22-bbc-radio-1-s-live-lounge-london-uk/\" title=\"2008-09-22: BBC Radio 1's Live Lounge: London, UK Lyrics Adele\">\n", + "<img alt=\"2008-09-22: BBC Radio 1's Live Lounge: London, UK Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/2008-09-22-bbc-radio-1-s-live-lounge-london-uk/\" title=\"Adele - 2008-09-22: BBC Radio 1's Live Lounge: London, UK Album Lyrics\">2008-09-22: BBC Radio 1's Live Lounge: London, UK</a>\n", + "<a href=\"https://www.songlyrics.com/adele/uncovered-volume-3/\" title=\"Uncovered, Volume 3 Lyrics Adele\">\n", + "<img alt=\"Uncovered, Volume 3 Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/uncovered-volume-3/\" title=\"Adele - Uncovered, Volume 3 Album Lyrics\">Uncovered, Volume 3</a>\n", + "<a href=\"https://www.songlyrics.com/adele/the-braun-mtv-eurochart-08-volume-12/\" title=\"The Braun MTV Eurochart '08, Volume 12 Lyrics Adele\">\n", + "<img alt=\"The Braun MTV Eurochart '08, Volume 12 Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/the-braun-mtv-eurochart-08-volume-12/\" title=\"Adele - The Braun MTV Eurochart '08, Volume 12 Album Lyrics\">The Braun MTV Eurochart '08, Volume 12</a>\n", + "<a href=\"https://www.songlyrics.com/adele/hitzone-best-of-2009/\" title=\"Hitzone: Best of 2009 Lyrics Adele\">\n", + "<img alt=\"Hitzone: Best of 2009 Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/hitzone-best-of-2009/\" title=\"Adele - Hitzone: Best of 2009 Album Lyrics\">Hitzone: Best of 2009</a>\n", + "<a href=\"https://www.songlyrics.com/adele/love-the-essential-ballads/\" title=\"Love - The Essential Ballads Lyrics Adele\">\n", + "<img alt=\"Love - The Essential Ballads Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/love-the-essential-ballads/\" title=\"Adele - Love - The Essential Ballads Album Lyrics\">Love - The Essential Ballads</a>\n", + "<a href=\"https://www.songlyrics.com/adele/when-love-takes-over/\" title=\"When Love Takes Over Lyrics Adele\">\n", + "<img alt=\"When Love Takes Over Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/when-love-takes-over/\" title=\"Adele - When Love Takes Over Album Lyrics\">When Love Takes Over</a>\n", + "<a href=\"https://www.songlyrics.com/adele/538-hitzone-gold/\" title=\"538 Hitzone Gold Lyrics Adele\">\n", + "<img alt=\"538 Hitzone Gold Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/538-hitzone-gold/\" title=\"Adele - 538 Hitzone Gold Album Lyrics\">538 Hitzone Gold</a>\n", + "<a href=\"https://www.songlyrics.com/adele/love-songs/\" title=\"Love Songs Lyrics Adele\">\n", + "<img alt=\"Love Songs Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/love-songs/\" title=\"Adele - Love Songs Album Lyrics\">Love Songs</a>\n", + "<a href=\"https://www.songlyrics.com/adele/ladies-choice/\" title=\"Ladies' Choice Lyrics Adele\">\n", + "<img alt=\"Ladies' Choice Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/ladies-choice/\" title=\"Adele - Ladies' Choice Album Lyrics\">Ladies' Choice</a>\n", + "<a href=\"https://www.songlyrics.com/adele/set-fire-to-the-rain/\" title=\"Set Fire to the Rain Lyrics Adele\">\n", + "<img alt=\"Set Fire to the Rain Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/set-fire-to-the-rain/\" title=\"Adele - Set Fire to the Rain Album Lyrics\">Set Fire to the Rain</a>\n", + "<a href=\"https://www.songlyrics.com/adele/ministry-of-sound-dance-nation-the-hits/\" title=\"Ministry of Sound Dance Nation - The Hits Lyrics Adele\">\n", + "<img alt=\"Ministry of Sound Dance Nation - The Hits Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/ministry-of-sound-dance-nation-the-hits/\" title=\"Adele - Ministry of Sound Dance Nation - The Hits Album Lyrics\">Ministry of Sound Dance Nation - The Hits</a>\n", + "<a href=\"https://www.songlyrics.com/adele/later-live-with-jools-holland/\" title=\"Later... Live With Jools Holland Lyrics Adele\">\n", + "<img alt=\"Later... Live With Jools Holland Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/later-live-with-jools-holland/\" title=\"Adele - Later... Live With Jools Holland Album Lyrics\">Later... Live With Jools Holland</a>\n", + "<a href=\"https://www.songlyrics.com/adele/hometown-glory-remixes/\" title=\"Hometown Glory (remixes) Lyrics Adele\">\n", + "<img alt=\"Hometown Glory (remixes) Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/hometown-glory-remixes/\" title=\"Adele - Hometown Glory (remixes) Album Lyrics\">Hometown Glory (remixes)</a>\n", + "<a href=\"https://www.songlyrics.com/adele/confidential/\" title=\"Confidential Lyrics Adele\">\n", + "<img alt=\"Confidential Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/confidential/\" title=\"Adele - Confidential Album Lyrics\">Confidential</a>\n", + "<a href=\"https://www.songlyrics.com/adele/coastal-chill-the-collection/\" title=\"Coastal Chill: The Collection Lyrics Adele\">\n", + "<img alt=\"Coastal Chill: The Collection Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/coastal-chill-the-collection/\" title=\"Adele - Coastal Chill: The Collection Album Lyrics\">Coastal Chill: The Collection</a>\n", + "<a href=\"https://www.songlyrics.com/adele/intercity-woman-volume-2/\" title=\"Intercity Woman, Volume 2 Lyrics Adele\">\n", + "<img alt=\"Intercity Woman, Volume 2 Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/intercity-woman-volume-2/\" title=\"Adele - Intercity Woman, Volume 2 Album Lyrics\">Intercity Woman, Volume 2</a>\n", + "<a href=\"https://www.songlyrics.com/adele/grammy-nominees-2010/\" title=\"Grammy Nominees 2010 Lyrics Adele\">\n", + "<img alt=\"Grammy Nominees 2010 Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/grammy-nominees-2010/\" title=\"Adele - Grammy Nominees 2010 Album Lyrics\">Grammy Nominees 2010</a>\n", + "<a href=\"https://www.songlyrics.com/adele/nationwide-mercury-prize-2008-album-of-the-year/\" title=\"Nationwide Mercury Prize: 2008 Album Of The Year Lyrics Adele\">\n", + "<img alt=\"Nationwide Mercury Prize: 2008 Album Of The Year Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/nationwide-mercury-prize-2008-album-of-the-year/\" title=\"Adele - Nationwide Mercury Prize: 2008 Album Of The Year Album Lyrics\">Nationwide Mercury Prize: 2008 Album Of The Year</a>\n", + "<a href=\"https://www.songlyrics.com/adele/ministry-of-sound-chilled-acoustic/\" title=\"Ministry of Sound: Chilled Acoustic Lyrics Adele\">\n", + "<img alt=\"Ministry of Sound: Chilled Acoustic Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/ministry-of-sound-chilled-acoustic/\" title=\"Adele - Ministry of Sound: Chilled Acoustic Album Lyrics\">Ministry of Sound: Chilled Acoustic</a>\n", + "<a href=\"https://www.songlyrics.com/adele/life-is-music-meer-onsterfelijke-studio-brussel-songs/\" title=\"Life Is Music: Meer Onsterfelijke Studio Brussel Songs Lyrics Adele\">\n", + "<img alt=\"Life Is Music: Meer Onsterfelijke Studio Brussel Songs Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/life-is-music-meer-onsterfelijke-studio-brussel-songs/\" title=\"Adele - Life Is Music: Meer Onsterfelijke Studio Brussel Songs Album Lyrics\">Life Is Music: Meer Onsterfelijke Studio Brussel Songs</a>\n", + "<a href=\"https://www.songlyrics.com/adele/mastermix-pro-disc-94/\" title=\"Mastermix Pro Disc 94 Lyrics Adele\">\n", + "<img alt=\"Mastermix Pro Disc 94 Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/mastermix-pro-disc-94/\" title=\"Adele - Mastermix Pro Disc 94 Album Lyrics\">Mastermix Pro Disc 94</a>\n", + "<a href=\"https://www.songlyrics.com/adele/coastal-chill-09/\" title=\"Coastal Chill 09 Lyrics Adele\">\n", + "<img alt=\"Coastal Chill 09 Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/coastal-chill-09/\" title=\"Adele - Coastal Chill 09 Album Lyrics\">Coastal Chill 09</a>\n", + "<a href=\"https://www.songlyrics.com/adele/hot-party-back2school/\" title=\"Hot Party Back2School Lyrics Adele\">\n", + "<img alt=\"Hot Party Back2School Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/hot-party-back2school/\" title=\"Adele - Hot Party Back2School Album Lyrics\">Hot Party Back2School</a>\n", + "<a href=\"https://www.songlyrics.com/adele/100-woman/\" title=\"100% Woman Lyrics Adele\">\n", + "<img alt=\"100% Woman Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/100-woman/\" title=\"Adele - 100% Woman Album Lyrics\">100% Woman</a>\n", + "<a href=\"https://www.songlyrics.com/adele/powervrouwen-top-101-2015/\" title=\"Powervrouwen Top 101 (2015) Lyrics Adele\">\n", + "<img alt=\"Powervrouwen Top 101 (2015) Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/powervrouwen-top-101-2015/\" title=\"Adele - Powervrouwen Top 101 (2015) Album Lyrics\">Powervrouwen Top 101 (2015)</a>\n", + "<a href=\"https://www.songlyrics.com/adele/hometown-glory-high-contrast-remixes/\" title=\"Hometown Glory (High Contrast Remixes) Lyrics Adele\">\n", + "<img alt=\"Hometown Glory (High Contrast Remixes) Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/hometown-glory-high-contrast-remixes/\" title=\"Adele - Hometown Glory (High Contrast Remixes) Album Lyrics\">Hometown Glory (High Contrast Remixes)</a>\n", + "<a href=\"https://www.songlyrics.com/adele/independent-innovative-creative/\" title=\"Independent Innovative Creative Lyrics Adele\">\n", + "<img alt=\"Independent Innovative Creative Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/independent-innovative-creative/\" title=\"Adele - Independent Innovative Creative Album Lyrics\">Independent Innovative Creative</a>\n", + "<a href=\"https://www.songlyrics.com/adele/powervrouwen-2015/\" title=\"Powervrouwen 2015 Lyrics Adele\">\n", + "<img alt=\"Powervrouwen 2015 Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/powervrouwen-2015/\" title=\"Adele - Powervrouwen 2015 Album Lyrics\">Powervrouwen 2015</a>\n", + "<a href=\"https://www.songlyrics.com/adele/divas-divas-divas-50-songs/\" title=\"Divas, Divas, Divas (50 Songs) Lyrics Adele\">\n", + "<img alt=\"Divas, Divas, Divas (50 Songs) Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/divas-divas-divas-50-songs/\" title=\"Adele - Divas, Divas, Divas (50 Songs) Album Lyrics\">Divas, Divas, Divas (50 Songs)</a>\n", + "<a href=\"https://www.songlyrics.com/adele/wild-weekends-digital-2008/\" title=\"Wild Weekends Digital 2008 Lyrics Adele\">\n", + "<img alt=\"Wild Weekends Digital 2008 Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/wild-weekends-digital-2008/\" title=\"Adele - Wild Weekends Digital 2008 Album Lyrics\">Wild Weekends Digital 2008</a>\n", + "<a href=\"https://www.songlyrics.com/adele/kontor-top-of-the-clubs-volume-40/\" title=\"Kontor: Top of the Clubs, Volume 40 Lyrics Adele\">\n", + "<img alt=\"Kontor: Top of the Clubs, Volume 40 Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/kontor-top-of-the-clubs-volume-40/\" title=\"Adele - Kontor: Top of the Clubs, Volume 40 Album Lyrics\">Kontor: Top of the Clubs, Volume 40</a>\n", + "<a href=\"https://www.songlyrics.com/adele/hed-kandi-the-mix-summer-2008/\" title=\"Hed Kandi: The Mix: Summer 2008 Lyrics Adele\">\n", + "<img alt=\"Hed Kandi: The Mix: Summer 2008 Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/hed-kandi-the-mix-summer-2008/\" title=\"Adele - Hed Kandi: The Mix: Summer 2008 Album Lyrics\">Hed Kandi: The Mix: Summer 2008</a>\n", + "<a href=\"https://www.songlyrics.com/adele/mastermix-pro-dance-04-may-2008/\" title=\"Mastermix Pro Dance 04: May 2008 Lyrics Adele\">\n", + "<img alt=\"Mastermix Pro Dance 04: May 2008 Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/mastermix-pro-dance-04-may-2008/\" title=\"Adele - Mastermix Pro Dance 04: May 2008 Album Lyrics\">Mastermix Pro Dance 04: May 2008</a>\n", + "<a href=\"https://www.songlyrics.com/adele/now-that-s-what-i-call-music!-50/\" title=\"Now That's What I Call Music! 50 Lyrics Adele\">\n", + "<img alt=\"Now That's What I Call Music! 50 Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/now-that-s-what-i-call-music!-50/\" title=\"Adele - Now That's What I Call Music! 50 Album Lyrics\">Now That's What I Call Music! 50</a>\n", + "<a href=\"https://www.songlyrics.com/adele/house-anthems-7-disc-1/\" title=\"House Anthems 7 (disc 1) Lyrics Adele\">\n", + "<img alt=\"House Anthems 7 (disc 1) Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/house-anthems-7-disc-1/\" title=\"Adele - House Anthems 7 (disc 1) Album Lyrics\">House Anthems 7 (disc 1)</a>\n", + "<a href=\"https://www.songlyrics.com/adele/hed-kandi-the-mix-2009/\" title=\"Hed Kandi: The Mix 2009 Lyrics Adele\">\n", + "<img alt=\"Hed Kandi: The Mix 2009 Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/hed-kandi-the-mix-2009/\" title=\"Adele - Hed Kandi: The Mix 2009 Album Lyrics\">Hed Kandi: The Mix 2009</a>\n", + "<a href=\"https://www.songlyrics.com/adele/the-rush-2010/\" title=\"The Rush 2010 Lyrics Adele\">\n", + "<img alt=\"The Rush 2010 Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/the-rush-2010/\" title=\"Adele - The Rush 2010 Album Lyrics\">The Rush 2010</a>\n", + "<a href=\"https://www.songlyrics.com/adele/speakerboxing-2-the-fresh-club-sandwich/\" title=\"Speakerboxing 2: The Fresh Club Sandwich Lyrics Adele\">\n", + "<img alt=\"Speakerboxing 2: The Fresh Club Sandwich Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/speakerboxing-2-the-fresh-club-sandwich/\" title=\"Adele - Speakerboxing 2: The Fresh Club Sandwich Album Lyrics\">Speakerboxing 2: The Fresh Club Sandwich</a>\n", + "<a href=\"https://www.songlyrics.com/adele/ministry-of-sound-presents-addicted-to-bass-2009/\" title=\"Ministry of Sound Presents: Addicted to Bass 2009 Lyrics Adele\">\n", + "<img alt=\"Ministry of Sound Presents: Addicted to Bass 2009 Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/ministry-of-sound-presents-addicted-to-bass-2009/\" title=\"Adele - Ministry of Sound Presents: Addicted to Bass 2009 Album Lyrics\">Ministry of Sound Presents: Addicted to Bass 2009</a>\n", + "<a href=\"https://www.songlyrics.com/adele/kontor-house-of-house-volume-6/\" title=\"Kontor: House of House, Volume 6 Lyrics Adele\">\n", + "<img alt=\"Kontor: House of House, Volume 6 Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/kontor-house-of-house-volume-6/\" title=\"Adele - Kontor: House of House, Volume 6 Album Lyrics\">Kontor: House of House, Volume 6</a>\n", + "<a href=\"https://www.songlyrics.com/adele/ministry-of-sound-ibiza-annual-2008/\" title=\"Ministry of Sound: Ibiza Annual 2008 Lyrics Adele\">\n", + "<img alt=\"Ministry of Sound: Ibiza Annual 2008 Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/ministry-of-sound-ibiza-annual-2008/\" title=\"Adele - Ministry of Sound: Ibiza Annual 2008 Album Lyrics\">Ministry of Sound: Ibiza Annual 2008</a>\n", + "<a href=\"https://www.songlyrics.com/adele/ministry-of-sound-the-chilled-house-session/\" title=\"Ministry of Sound: The Chilled House Session Lyrics Adele\">\n", + "<img alt=\"Ministry of Sound: The Chilled House Session Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/ministry-of-sound-the-chilled-house-session/\" title=\"Adele - Ministry of Sound: The Chilled House Session Album Lyrics\">Ministry of Sound: The Chilled House Session</a>\n", + "<a href=\"https://www.songlyrics.com/adele/ministry-of-sound-clubbers-guide-summer-2008/\" title=\"Ministry of Sound: Clubbers Guide Summer 2008 Lyrics Adele\">\n", + "<img alt=\"Ministry of Sound: Clubbers Guide Summer 2008 Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/ministry-of-sound-clubbers-guide-summer-2008/\" title=\"Adele - Ministry of Sound: Clubbers Guide Summer 2008 Album Lyrics\">Ministry of Sound: Clubbers Guide Summer 2008</a>\n", + "<a href=\"https://www.songlyrics.com/adele/ministry-of-sound-the-rush-2010/\" title=\"Ministry of Sound: The Rush 2010 Lyrics Adele\">\n", + "<img alt=\"Ministry of Sound: The Rush 2010 Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/ministry-of-sound-the-rush-2010/\" title=\"Adele - Ministry of Sound: The Rush 2010 Album Lyrics\">Ministry of Sound: The Rush 2010</a>\n", + "<a href=\"https://www.songlyrics.com/adele/the-chilled-house-session/\" title=\"The Chilled House Session Lyrics Adele\">\n", + "<img alt=\"The Chilled House Session Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/the-chilled-house-session/\" title=\"Adele - The Chilled House Session Album Lyrics\">The Chilled House Session</a>\n", + "<a href=\"https://www.songlyrics.com/adele/ibiza-annual-2008-ministry-of-sound/\" title=\"Ibiza Annual 2008: Ministry of Sound Lyrics Adele\">\n", + "<img alt=\"Ibiza Annual 2008: Ministry of Sound Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/ibiza-annual-2008-ministry-of-sound/\" title=\"Adele - Ibiza Annual 2008: Ministry of Sound Album Lyrics\">Ibiza Annual 2008: Ministry of Sound</a>\n", + "<a href=\"https://www.songlyrics.com/adele/addicted-to-bass-2009/\" title=\"Addicted to Bass 2009 Lyrics Adele\">\n", + "<img alt=\"Addicted to Bass 2009 Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/addicted-to-bass-2009/\" title=\"Adele - Addicted to Bass 2009 Album Lyrics\">Addicted to Bass 2009</a>\n", + "<a href=\"https://www.songlyrics.com/adele/cover-stories-brandi-carlile-celebrates-10-years-of-the-story-an-album-to-benefit-war-child/\" title=\"Cover Stories: Brandi Carlile Celebrates 10 Years of the Story (An Album to Benefit War Child) Lyrics Adele\">\n", + "<img alt=\"Cover Stories: Brandi Carlile Celebrates 10 Years of the Story (An Album to Benefit War Child) Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/cover-stories-brandi-carlile-celebrates-10-years-of-the-story-an-album-to-benefit-war-child/\" title=\"Adele - Cover Stories: Brandi Carlile Celebrates 10 Years of the Story (An Album to Benefit War Child) Album Lyrics\">Cover Stories: Brandi Carlile Celebrates 10 Years of the...</a>\n", + "<a href=\"https://www.songlyrics.com/adele/liebe-ist-best-of-volume-2/\" title=\"Liebe ist... Best of, Volume 2 Lyrics Adele\">\n", + "<img alt=\"Liebe ist... Best of, Volume 2 Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/liebe-ist-best-of-volume-2/\" title=\"Adele - Liebe ist... Best of, Volume 2 Album Lyrics\">Liebe ist... Best of, Volume 2</a>\n", + "<a href=\"https://www.songlyrics.com/adele/music-en-vogue-vol-4/\" title=\"Music En Vogue, Vol. 4 Lyrics Adele\">\n", + "<img alt=\"Music En Vogue, Vol. 4 Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/music-en-vogue-vol-4/\" title=\"Adele - Music En Vogue, Vol. 4 Album Lyrics\">Music En Vogue, Vol. 4</a>\n", + "<a href=\"https://www.songlyrics.com/adele/addicted-to-bass-2011/\" title=\"Addicted to Bass 2011 Lyrics Adele\">\n", + "<img alt=\"Addicted to Bass 2011 Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/addicted-to-bass-2011/\" title=\"Adele - Addicted to Bass 2011 Album Lyrics\">Addicted to Bass 2011</a>\n", + "<a href=\"https://www.songlyrics.com/adele/soundtrack-90210/\" title=\"Soundtrack 90210 Lyrics Adele\">\n", + "<img alt=\"Soundtrack 90210 Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/soundtrack-90210/\" title=\"Adele - Soundtrack 90210 Album Lyrics\">Soundtrack 90210</a>\n", + "<a href=\"https://www.songlyrics.com/adele/live-from-the-mountain-music-lounge-volume-15/\" title=\"Live From the Mountain Music Lounge, Volume 15 Lyrics Adele\">\n", + "<img alt=\"Live From the Mountain Music Lounge, Volume 15 Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/live-from-the-mountain-music-lounge-volume-15/\" title=\"Adele - Live From the Mountain Music Lounge, Volume 15 Album Lyrics\">Live From the Mountain Music Lounge, Volume 15</a>\n", + "<a href=\"https://www.songlyrics.com/adele/cities-97-sampler-volume-21/\" title=\"Cities 97 Sampler, Volume 21 Lyrics Adele\">\n", + "<img alt=\"Cities 97 Sampler, Volume 21 Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/cities-97-sampler-volume-21/\" title=\"Adele - Cities 97 Sampler, Volume 21 Album Lyrics\">Cities 97 Sampler, Volume 21</a>\n", + "<a href=\"https://www.songlyrics.com/adele/93-3-kgsr-broadcasts-volume-17/\" title=\"93.3 KGSR Broadcasts, Volume 17 Lyrics Adele\">\n", + "<img alt=\"93.3 KGSR Broadcasts, Volume 17 Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/93-3-kgsr-broadcasts-volume-17/\" title=\"Adele - 93.3 KGSR Broadcasts, Volume 17 Album Lyrics\">93.3 KGSR Broadcasts, Volume 17</a>\n", + "<a href=\"https://www.songlyrics.com/adele/89-3-the-current-live-current-volume-5/\" title=\"89.3 The Current: Live Current, Volume 5 Lyrics Adele\">\n", + "<img alt=\"89.3 The Current: Live Current, Volume 5 Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/89-3-the-current-live-current-volume-5/\" title=\"Adele - 89.3 The Current: Live Current, Volume 5 Album Lyrics\">89.3 The Current: Live Current, Volume 5</a>\n", + "<a href=\"https://www.songlyrics.com/adele/hitbox-2011-vol-1/\" title=\"Hitbox 2011, Vol. 1 Lyrics Adele\">\n", + "<img alt=\"Hitbox 2011, Vol. 1 Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/hitbox-2011-vol-1/\" title=\"Adele - Hitbox 2011, Vol. 1 Album Lyrics\">Hitbox 2011, Vol. 1</a>\n", + "<a href=\"https://www.songlyrics.com/adele/ministry-of-sound-running-trax-gold-walk/\" title=\"Ministry of Sound Running Trax Gold (Walk) Lyrics Adele\">\n", + "<img alt=\"Ministry of Sound Running Trax Gold (Walk) Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/ministry-of-sound-running-trax-gold-walk/\" title=\"Adele - Ministry of Sound Running Trax Gold (Walk) Album Lyrics\">Ministry of Sound Running Trax Gold (Walk)</a>\n", + "<a href=\"https://www.songlyrics.com/adele/the-story-cover-stories/\" title=\"The Story & Cover Stories Lyrics Adele\">\n", + "<img alt=\"The Story & Cover Stories Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/the-story-cover-stories/\" title=\"Adele - The Story & Cover Stories Album Lyrics\">The Story & Cover Stories</a>\n", + "<a href=\"https://www.songlyrics.com/adele/ministry-of-sound-clubbers-guide-2012-mixed-by-jean-elan/\" title=\"Ministry of Sound - Clubbers Guide 2012 (Mixed By Jean Elan) Lyrics Adele\">\n", + "<img alt=\"Ministry of Sound - Clubbers Guide 2012 (Mixed By Jean Elan) Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/ministry-of-sound-clubbers-guide-2012-mixed-by-jean-elan/\" title=\"Adele - Ministry of Sound - Clubbers Guide 2012 (Mixed By Jean Elan) Album Lyrics\">Ministry of Sound - Clubbers Guide 2012 (Mixed By Jean Elan)</a>\n", + "<a href=\"https://www.songlyrics.com/adele/absolute-dance-spring-2012/\" title=\"Absolute Dance Spring 2012 Lyrics Adele\">\n", + "<img alt=\"Absolute Dance Spring 2012 Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/absolute-dance-spring-2012/\" title=\"Adele - Absolute Dance Spring 2012 Album Lyrics\">Absolute Dance Spring 2012</a>\n", + "<a href=\"https://www.songlyrics.com/adele/running-trax-gold-ministry-of-sound/\" title=\"Running Trax Gold - Ministry of Sound Lyrics Adele\">\n", + "<img alt=\"Running Trax Gold - Ministry of Sound Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/running-trax-gold-ministry-of-sound/\" title=\"Adele - Running Trax Gold - Ministry of Sound Album Lyrics\">Running Trax Gold - Ministry of Sound</a>\n", + "<a href=\"https://www.songlyrics.com/adele/jazz/\" title=\"Jazz Lyrics Adele\">\n", + "<img alt=\"Jazz Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/jazz/\" title=\"Adele - Jazz Album Lyrics\">Jazz</a>\n", + "<a href=\"https://www.songlyrics.com/adele/a-lei-do-amor-vol-2/\" title=\"A Lei do Amor, Vol. 2 Lyrics Adele\">\n", + "<img alt=\"A Lei do Amor, Vol. 2 Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/a-lei-do-amor-vol-2/\" title=\"Adele - A Lei do Amor, Vol. 2 Album Lyrics\">A Lei do Amor, Vol. 2</a>\n", + "<a href=\"https://www.songlyrics.com/adele/season-of-peace-the-love-ballads/\" title=\"Season Of Peace - The Love Ballads Lyrics Adele\">\n", + "<img alt=\"Season Of Peace - The Love Ballads Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/season-of-peace-the-love-ballads/\" title=\"Adele - Season Of Peace - The Love Ballads Album Lyrics\">Season Of Peace - The Love Ballads</a>\n", + "<a href=\"https://www.songlyrics.com/adele/love-actually-the-complete-fantasy-playlist/\" title=\"Love Actually - The Complete Fantasy Playlist Lyrics Adele\">\n", + "<img alt=\"Love Actually - The Complete Fantasy Playlist Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/love-actually-the-complete-fantasy-playlist/\" title=\"Adele - Love Actually - The Complete Fantasy Playlist Album Lyrics\">Love Actually - The Complete Fantasy Playlist</a>\n", + "<a href=\"https://www.songlyrics.com/adele/now-58-digital-bundle/\" title=\"Now 58 - Digital Bundle Lyrics Adele\">\n", + "<img alt=\"Now 58 - Digital Bundle Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/now-58-digital-bundle/\" title=\"Adele - Now 58 - Digital Bundle Album Lyrics\">Now 58 - Digital Bundle</a>\n", + "<a href=\"https://www.songlyrics.com/adele/2017-grammy-nominees/\" title=\"2017 GRAMMY® Nominees Lyrics Adele\">\n", + "<img alt=\"2017 GRAMMY® Nominees Lyrics Adele\" class=\"album\" height=\"128\" src=\"https://www.songlyrics.com/images/album-nophoto.gif\" width=\"128\"/>\n", + "</a>\n", + "<a href=\"https://www.songlyrics.com/adele/2017-grammy-nominees/\" title=\"Adele - 2017 GRAMMY® Nominees Album Lyrics\">2017 GRAMMY® Nominees</a>\n", + "<a href=\"https://en.wikipedia.org/wiki/Adele_(singer)\">http://en.wikipedia.org/wiki/Adele_(singer)</a>\n", + "<a href=\"\" title=\"\"></a>\n", + "<a href=\"https://www.songlyrics.com/news/\" title=\"Music News\">All Music News »</a>\n", + "<a href=\"https://www.songlyrics.com/the-xx-lyrics/\">The xx</a>\n", + "<a href=\"https://www.songlyrics.com/led-zeppelin-lyrics/\">Led Zeppelin</a>\n", + "<a href=\"https://www.songlyrics.com/bob-dylan-lyrics/\">Bob Dylan</a>\n", + "<a href=\"https://www.songlyrics.com/queen-lyrics/\">Queen</a>\n", + "<a href=\"https://www.songlyrics.com/elvis-presley-lyrics/\">Elvis Presley</a>\n", + "<a href=\"https://www.songlyrics.com/pearl-jam-lyrics/\">Pearl Jam</a>\n", + "<a href=\"https://www.songlyrics.com/prince-lyrics/\">Prince</a>\n", + "<a href=\"https://www.songlyrics.com/elton-john-lyrics/\">Elton John</a>\n", + "<a href=\"https://www.songlyrics.com/pink-floyd-lyrics/\">Pink Floyd</a>\n", + "<a href=\"https://www.songlyrics.com/the-rolling-stones-lyrics/\">The Rolling Stones</a>\n", + "<a href=\"https://www.songlyrics.com/metallica-lyrics/\">METALLICA</a>\n", + "<a href=\"/rock-lyrics.php\" title=\"Rock Lyrics\">Rock</a>\n", + "<a href=\"/r-and-b-lyrics.php\" title=\"R&B Lyrics\">R&B</a>\n", + "<a href=\"/country-music-lyrics.php\" title=\"Country Lyrics\">Country</a>\n", + "<a href=\"/hip-hop-rap-lyrics.php\" title=\"Hip Hop and Rap Lyrics\">Hip Hop/Rap</a>\n", + "<a href=\"/pop-lyrics.php\" title=\"Pop Lyrics\">Pop</a>\n", + "<a href=\"/christian-lyrics.php\" title=\"Christian Lyrics\">Christian</a>\n", + "<a href=\"/top-songs-lyrics.html\">Top Songs</a>\n", + "<a href=\"/top-artists-lyrics.html\">Top Artists</a>\n", + "<a href=\"/top-albums-lyrics.html\">Top Albums</a>\n", + "<a href=\"/top-upcoming-songs.html\">Upcoming Songs</a>\n", + "<a href=\"/top-upcoming-albums.html\">Upcoming Albums</a>\n", + "<a href=\"/top100.php\" title=\"Billboard Hot 100 Songs\">Billboard Hot 100</a>\n", + "<a href=\"/news/advertise/\" title=\"Advertise on SongLyrics.com\">Advertise on SL</a>\n", + "<a href=\"/news/featured-blogs/\" title=\"Featured Blogs\">Featured Blogs</a>\n", + "<a href=\"/news/contact-us/\" title=\"Contact Us\">Contact Us</a>\n", + "<a href=\"/news\" title=\"Music News\">Music News</a>\n", + "<a href=\"/privacy.php\" title=\"Privacy Policy\">Privacy Policy</a>\n", + "<a href=\"/termsconditions.php\" title=\"Terms of Use\">Terms of Use</a>\n", + "<a class=\"ft-fb\" href=\"https://www.facebook.com/SongLyrics\" target=\"_blank\" title=\"SongLyrics on Facebook\">Facebook</a>\n", + "<a class=\"ft-tw\" href=\"https://twitter.com/#!/songlyrics\" target=\"_blank\" title=\"Follow SongLyrics on Twitter\">Twitter</a>\n", + "<a href=\"/about.php\">About</a>\n", + "<a id=\"unic-gdpr\" onclick='__tcfapi(\"openunic\");return false;' style=\"display:none;cursor:pointer;\">Change Ad Consent</a>\n", + "<a id=\"unic-ccpa\" onclick=\"window.__uspapi('openunic')\" style=\"display:none;cursor:pointer;\">Do not sell my data</a>\n", + "<a class=\"ft-sm\" href=\"https://www.soundmedia.com/\" target=\"_blank\" title=\"Advertise on SongLyrics\">SoundMedia</a>\n", + "<a href=\"/a/\" title=\"A\">A</a>\n", + "<a href=\"/b/\" title=\"B\">B</a>\n", + "<a href=\"/c/\" title=\"C\">C</a>\n", + "<a href=\"/d/\" title=\"D\">D</a>\n", + "<a href=\"/e/\" title=\"E\">E</a>\n", + "<a href=\"/f/\" title=\"F\">F</a>\n", + "<a href=\"/g/\" title=\"G\">G</a>\n", + "<a href=\"/h/\" title=\"H\">H</a>\n", + "<a href=\"/i/\" title=\"I\">I</a>\n", + "<a href=\"/j/\" title=\"J\">J</a>\n", + "<a href=\"/k/\" title=\"K\">K</a>\n", + "<a href=\"/l/\" title=\"L\">L</a>\n", + "<a href=\"/m/\" title=\"M\">M</a>\n", + "<a href=\"/n/\" title=\"N\">N</a>\n", + "<a href=\"/o/\" title=\"O\">O</a>\n", + "<a href=\"/p/\" title=\"P\">P</a>\n", + "<a href=\"/q/\" title=\"Q\">Q</a>\n", + "<a href=\"/r/\" title=\"R\">R</a>\n", + "<a href=\"/s/\" title=\"S\">S</a>\n", + "<a href=\"/t/\" title=\"T\">T</a>\n", + "<a href=\"/u/\" title=\"U\">U</a>\n", + "<a href=\"/v/\" title=\"V\">V</a>\n", + "<a href=\"/w/\" title=\"W\">W</a>\n", + "<a href=\"/x/\" title=\"X\">X</a>\n", + "<a href=\"/y/\" title=\"Y\">Y</a>\n", + "<a href=\"/z/\" title=\"Z\">Z</a>\n", + "<a href=\"/0/\" title=\"#\">#</a>\n" + ] + } + ], + "source": [ + "html = requests.get(\"http://www.songlyrics.com\"+data[\"url\"]).text\n", + "soup = BeautifulSoup(html, 'html')\n", + "for link in soup.find_all('a'):\n", + " print(link)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "#### Filtering for the songs\n", + "Filtering for songs by the `'itemprop'` attribute turns out now to be good enough. Several other links have this tag, specifically, those for the two steps back in the directory structure. " + ] + }, + { + "cell_type": "code", + "execution_count": 83, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "<a href=\"https://www.songlyrics.com/\" itemprop=\"item\"><span itemprop=\"name\">Song Lyrics</span></a>\n", + "<a href=\"https://www.songlyrics.com/a/41/\" itemprop=\"item\"><span itemprop=\"name\">Artists - A</span></a>\n", + "<a href=\"https://www.songlyrics.com/adele/one-only-lyrics/\" itemprop=\"url\" title=\"One & Only Lyrics Adele\">One & Only</a>\n", + "<a href=\"https://www.songlyrics.com/adele/i-can-t-make-you-love-me-live-lyrics/\" itemprop=\"url\" title=\"I Can't Make You Love Me [Live] Lyrics Adele\">I Can't Make You Love Me [Live]</a>\n", + "<a href=\"https://www.songlyrics.com/adele/he-won-t-go-lyrics/\" itemprop=\"url\" title=\"He Won't Go Lyrics Adele\">He Won't Go</a>\n", + "<a href=\"https://www.songlyrics.com/adele/hiding-my-heart-lyrics/\" itemprop=\"url\" title=\"Hiding My Heart Lyrics Adele\">Hiding My Heart</a>\n", + "<a href=\"https://www.songlyrics.com/adele/rolling-in-the-deep-single-lyrics/\" itemprop=\"url\" title=\"Rolling In The Deep (Single) Lyrics Adele\">Rolling In The Deep (Single)</a>\n", + "<a href=\"https://www.songlyrics.com/adele/need-you-now-lyrics/\" itemprop=\"url\" title=\"Need You Now Lyrics Adele\">Need You Now</a>\n", + "<a href=\"https://www.songlyrics.com/adele/i-found-a-boy-lyrics/\" itemprop=\"url\" title=\"I Found A Boy Lyrics Adele\">I Found A Boy</a>\n", + "<a href=\"https://www.songlyrics.com/adele/first-love-lyrics/\" itemprop=\"url\" title=\"First Love Lyrics Adele\">First Love</a>\n", + "<a href=\"https://www.songlyrics.com/adele/best-for-last-lyrics/\" itemprop=\"url\" title=\"Best For Last Lyrics Adele\">Best For Last</a>\n", + "<a href=\"https://www.songlyrics.com/adele/daydreamer-lyrics/\" itemprop=\"url\" title=\"Daydreamer Lyrics Adele\">Daydreamer</a>\n", + "<a href=\"https://www.songlyrics.com/adele/right-as-rain-lyrics/\" itemprop=\"url\" title=\"Right As Rain Lyrics Adele\">Right As Rain</a>\n", + "<a href=\"https://www.songlyrics.com/adele/melt-my-heart-to-stone-lyrics/\" itemprop=\"url\" title=\"Melt My Heart To Stone Lyrics Adele\">Melt My Heart To Stone</a>\n", + "<a href=\"https://www.songlyrics.com/adele/tired-lyrics/\" itemprop=\"url\" title=\"Tired Lyrics Adele\">Tired</a>\n", + "<a href=\"https://www.songlyrics.com/adele/cold-shoulder-lyrics/\" itemprop=\"url\" title=\"Cold Shoulder Lyrics Adele\">Cold Shoulder</a>\n", + "<a href=\"https://www.songlyrics.com/adele/melt-my-heart-to-stone-remix-lyrics/\" itemprop=\"url\" title=\"Melt My Heart To Stone (Remix) Lyrics Adele\">Melt My Heart To Stone (Remix)</a>\n", + "<a href=\"https://www.songlyrics.com/adele/set-fire-to-the-rain-moto-blanco-edit-lyrics/\" itemprop=\"url\" title=\"Set Fire to the Rain (Moto Blanco Edit) Lyrics Adele\">Set Fire to the Rain (Moto Blanco Edit)</a>\n", + "<a href=\"https://www.songlyrics.com/adele/that-s-it-i-quit-i-m-movin-on-lyrics/\" itemprop=\"url\" title=\"That's It I Quit I'm Movin' On Lyrics Adele\">That's It I Quit I'm Movin' On</a>\n", + "<a href=\"https://www.songlyrics.com/adele/black-and-gold-lyrics/\" itemprop=\"url\" title=\"Black And Gold Lyrics Adele\">Black And Gold</a>\n", + "<a href=\"https://www.songlyrics.com/adele/set-fire-to-the-rain-remix-lyrics/\" itemprop=\"url\" title=\"Set Fire To The Rain Remix Lyrics Adele\">Set Fire To The Rain Remix</a>\n", + "<a href=\"https://www.songlyrics.com/adele/i-can-t-make-you-love-me-cover-lyrics/\" itemprop=\"url\" title=\"I Can't Make You Love Me (Cover) Lyrics Adele\">I Can't Make You Love Me (Cover)</a>\n", + "<a href=\"https://www.songlyrics.com/adele/many-shades-of-black-lyrics/\" itemprop=\"url\" title=\"Many Shades Of Black Lyrics Adele\">Many Shades Of Black</a>\n", + "<a href=\"https://www.songlyrics.com/adele/set-fire-to-the-rain-thomas-gold-dub-lyrics/\" itemprop=\"url\" title=\"Set Fire to the Rain (Thomas Gold Dub) Lyrics Adele\">Set Fire to the Rain (Thomas Gold Dub)</a>\n", + "<a href=\"https://www.songlyrics.com/adele/now-and-then-lyrics/\" itemprop=\"url\" title=\"Now And Then Lyrics Adele\">Now And Then</a>\n", + "<a href=\"https://www.songlyrics.com/adele/set-fire-to-the-rain-moto-blanco-remix-lyrics/\" itemprop=\"url\" title=\"Set Fire to the Rain (Moto Blanco Remix) Lyrics Adele\">Set Fire to the Rain (Moto Blanco Remix)</a>\n", + "<a href=\"https://www.songlyrics.com/adele/one-and-only-lyrics/\" itemprop=\"url\" title=\"One and Only Lyrics Adele\">One and Only</a>\n", + "<a href=\"https://www.songlyrics.com/adele/love-song-lyrics/\" itemprop=\"url\" title=\"Love Song Lyrics Adele\">Love Song</a>\n", + "<a href=\"https://www.songlyrics.com/adele/lovesong-lyrics/\" itemprop=\"url\" title=\"Lovesong Lyrics Adele\">Lovesong</a>\n", + "<a href=\"https://www.songlyrics.com/adele/someone-like-you-live-acoustic-lyrics/\" itemprop=\"url\" title=\"Someone Like You (live acoustic) Lyrics Adele\">Someone Like You (live acoustic)</a>\n", + "<a href=\"https://www.songlyrics.com/adele/turning-tables-live-acoustic-lyrics/\" itemprop=\"url\" title=\"Turning Tables (live acoustic) Lyrics Adele\">Turning Tables (live acoustic)</a>\n", + "<a href=\"https://www.songlyrics.com/adele/rolling-in-the-deep-the-lost-boys-remix-lyrics/\" itemprop=\"url\" title=\"Rolling in the Deep (The Lost Boys remix) Lyrics Adele\">Rolling in the Deep (The Lost Boys remix)</a>\n", + "<a href=\"https://www.songlyrics.com/adele/hometown-glory-lyrics/\" itemprop=\"url\" title=\"Hometown Glory Lyrics Adele\">Hometown Glory</a>\n", + "<a href=\"https://www.songlyrics.com/adele/rolling-in-the-deep-nutone-remix-lyrics/\" itemprop=\"url\" title=\"Rolling in the Deep (Nu:Tone remix) Lyrics Adele\">Rolling in the Deep (Nu:Tone remix)</a>\n", + "<a href=\"https://www.songlyrics.com/adele/fool-that-i-am-lyrics/\" itemprop=\"url\" title=\"Fool That I Am Lyrics Adele\">Fool That I Am</a>\n", + "<a href=\"https://www.songlyrics.com/adele/rumour-has-it-lyrics/\" itemprop=\"url\" title=\"Rumour Has It Lyrics Adele\">Rumour Has It</a>\n", + "<a href=\"https://www.songlyrics.com/adele/take-it-all-lyrics/\" itemprop=\"url\" title=\"Take It All Lyrics Adele\">Take It All</a>\n", + "<a href=\"https://www.songlyrics.com/adele/melt-my-heart-to-stone-live-at-hotel-cafe-lyrics/\" itemprop=\"url\" title=\"Melt My Heart to Stone (Live At Hotel Cafe) Lyrics Adele\">Melt My Heart to Stone (Live At Hotel Cafe)</a>\n", + "<a href=\"https://www.songlyrics.com/adele/chasing-pavements-live-at-hotel-cafe-lyrics/\" itemprop=\"url\" title=\"Chasing Pavements (Live At Hotel Cafe) Lyrics Adele\">Chasing Pavements (Live At Hotel Cafe)</a>\n", + "<a href=\"https://www.songlyrics.com/adele/cold-shoulder-basement-jaxx-classic-edit-lyrics/\" itemprop=\"url\" title=\"Cold Shoulder (Basement Jaxx Classic Edit) Lyrics Adele\">Cold Shoulder (Basement Jaxx Classic Edit)</a>\n", + "<a href=\"https://www.songlyrics.com/adele/rolling-in-the-deep-downtown-london-remix-extended-lyrics/\" itemprop=\"url\" title=\"Rolling in the Deep (Downtown London remix extended) Lyrics Adele\">Rolling in the Deep (Downtown London remix extended)</a>\n", + "<a href=\"https://www.songlyrics.com/adele/set-fire-to-the-rain-moto-blanco-club-remix-lyrics/\" itemprop=\"url\" title=\"Set Fire to the Rain (Moto Blanco club remix) Lyrics Adele\">Set Fire to the Rain (Moto Blanco club remix)</a>\n", + "<a href=\"https://www.songlyrics.com/adele/someone-like-you-dj-bratkovsky-remix-lyrics/\" itemprop=\"url\" title=\"Someone Like You (DJ Bratkovsky remix) Lyrics Adele\">Someone Like You (DJ Bratkovsky remix)</a>\n", + "<a href=\"https://www.songlyrics.com/adele/set-fire-to-the-rain-thomas-gold-remix-lyrics/\" itemprop=\"url\" title=\"Set Fire to the Rain (Thomas Gold remix) Lyrics Adele\">Set Fire to the Rain (Thomas Gold remix)</a>\n", + "<a href=\"https://www.songlyrics.com/adele/turning-tables-lyrics/\" itemprop=\"url\" title=\"Turning Tables Lyrics Adele\">Turning Tables</a>\n", + "<a href=\"https://www.songlyrics.com/adele/thats-it-i-quit-im-movin-on-live-at-hotel-cafe-lyrics/\" itemprop=\"url\" title=\"That’s It, I Quit, I’m Movin’ On (Live At Hotel Cafe) Lyrics Adele\">That’s It, I Quit, I’m Movin’ On (Live At Hotel Cafe)</a>\n", + "<a href=\"https://www.songlyrics.com/adele/cold-shoulder-basement-jaxx-dub-lyrics/\" itemprop=\"url\" title=\"Cold Shoulder (Basement Jaxx dub) Lyrics Adele\">Cold Shoulder (Basement Jaxx dub)</a>\n", + "<a href=\"https://www.songlyrics.com/adele/set-fire-to-the-rain-thomas-gold-mix-lyrics/\" itemprop=\"url\" title=\"Set Fire to the Rain (Thomas Gold mix) Lyrics Adele\">Set Fire to the Rain (Thomas Gold mix)</a>\n", + "<a href=\"https://www.songlyrics.com/adele/cold-shoulder-basement-jaxx-classic-remix-radio-edit-lyrics/\" itemprop=\"url\" title=\"Cold Shoulder (Basement Jaxx Classic remix) (radio edit) Lyrics Adele\">Cold Shoulder (Basement Jaxx Classic remix) (radio edit)</a>\n", + "<a href=\"https://www.songlyrics.com/adele/cold-shoulder-basement-jaxx-dubb-lyrics/\" itemprop=\"url\" title=\"Cold Shoulder (Basement Jaxx Dubb) Lyrics Adele\">Cold Shoulder (Basement Jaxx Dubb)</a>\n", + "<a href=\"https://www.songlyrics.com/adele/intro-lyrics/\" itemprop=\"url\" title=\"[intro] Lyrics Adele\">[intro]</a>\n", + "<a href=\"https://www.songlyrics.com/adele/rolling-in-the-deep-lyrics/\" itemprop=\"url\" title=\"Rolling in the Deep Lyrics Adele\">Rolling in the Deep</a>\n", + "<a href=\"https://www.songlyrics.com/adele/skyfall-lyrics/\" itemprop=\"url\" title=\"Skyfall Lyrics Adele\">Skyfall</a>\n", + "<a href=\"https://www.songlyrics.com/adele/thats-it-i-quit-im-moving-on-lyrics/\" itemprop=\"url\" title=\"That’s It, I Quit, I’m Moving On Lyrics Adele\">That’s It, I Quit, I’m Moving On</a>\n", + "<a href=\"https://www.songlyrics.com/adele/that-s-it-i-quit-i-m-moving-on-lyrics/\" itemprop=\"url\" title=\"That's It, I Quit, I'm Moving On Lyrics Adele\">That's It, I Quit, I'm Moving On</a>\n", + "<a href=\"https://www.songlyrics.com/adele/rolling-in-the-deep-villa-remix-lyrics/\" itemprop=\"url\" title=\"Rolling in the Deep (Villa remix) Lyrics Adele\">Rolling in the Deep (Villa remix)</a>\n", + "<a href=\"https://www.songlyrics.com/adele/rolling-in-the-deep-a-cappella-lyrics/\" itemprop=\"url\" title=\"Rolling in the Deep (a cappella) Lyrics Adele\">Rolling in the Deep (a cappella)</a>\n", + "<a href=\"https://www.songlyrics.com/adele/set-fire-to-the-rain-moto-blanco-radio-edit-lyrics/\" itemprop=\"url\" title=\"Set Fire to the Rain (Moto Blanco radio edit) Lyrics Adele\">Set Fire to the Rain (Moto Blanco radio edit)</a>\n", + "<a href=\"https://www.songlyrics.com/adele/rolling-in-the-deep-downtown-london-remix-lyrics/\" itemprop=\"url\" title=\"Rolling in the Deep (Downtown London remix) Lyrics Adele\">Rolling in the Deep (Downtown London remix)</a>\n", + "<a href=\"https://www.songlyrics.com/adele/rolling-in-the-deep-zamami-remix-lyrics/\" itemprop=\"url\" title=\"Rolling in the Deep (Zamami remix) Lyrics Adele\">Rolling in the Deep (Zamami remix)</a>\n", + "<a href=\"https://www.songlyrics.com/adele/rolling-in-the-deep-damn-you-mongolians-remix-lyrics/\" itemprop=\"url\" title=\"Rolling in the Deep (Damn You Mongolians remix) Lyrics Adele\">Rolling in the Deep (Damn You Mongolians remix)</a>\n", + "<a href=\"https://www.songlyrics.com/adele/rolling-in-the-deep-keljet-remix-lyrics/\" itemprop=\"url\" title=\"Rolling in the Deep (Keljet remix) Lyrics Adele\">Rolling in the Deep (Keljet remix)</a>\n", + "<a href=\"https://www.songlyrics.com/adele/rolling-in-the-deep-dan-clare-club-remix-lyrics/\" itemprop=\"url\" title=\"Rolling in the Deep (Dan Clare club remix) Lyrics Adele\">Rolling in the Deep (Dan Clare club remix)</a>\n", + "<a href=\"https://www.songlyrics.com/adele/rolling-in-the-deep-spectrasoul-remix-lyrics/\" itemprop=\"url\" title=\"Rolling in the Deep (SpectraSoul remix) Lyrics Adele\">Rolling in the Deep (SpectraSoul remix)</a>\n", + "<a href=\"https://www.songlyrics.com/adele/rolling-in-the-deep-dj-megamix-remix-lyrics/\" itemprop=\"url\" title=\"Rolling in the Deep (DJ megamix remix) Lyrics Adele\">Rolling in the Deep (DJ megamix remix)</a>\n", + "<a href=\"https://www.songlyrics.com/adele/don-t-you-remember-lyrics/\" itemprop=\"url\" title=\"Don't You Remember Lyrics Adele\">Don't You Remember</a>\n", + "<a href=\"https://www.songlyrics.com/adele/crazy-for-you-live-at-hotel-cafe-lyrics/\" itemprop=\"url\" title=\"Crazy for You (Live At Hotel Cafe) Lyrics Adele\">Crazy for You (Live At Hotel Cafe)</a>\n", + "<a href=\"https://www.songlyrics.com/adele/right-as-rain-live-at-hotel-cafe-lyrics/\" itemprop=\"url\" title=\"Right As Rain (Live At Hotel Cafe) Lyrics Adele\">Right As Rain (Live At Hotel Cafe)</a>\n", + "<a href=\"https://www.songlyrics.com/adele/skyfall-full-length-lyrics/\" itemprop=\"url\" title=\"Skyfall - Full Length Lyrics Adele\">Skyfall - Full Length</a>\n", + "<a href=\"https://www.songlyrics.com/adele/make-you-feel-my-love-live-at-wxpn-lyrics/\" itemprop=\"url\" title=\"Make You Feel My Love (Live at WXPN) Lyrics Adele\">Make You Feel My Love (Live at WXPN)</a>\n", + "<a href=\"https://www.songlyrics.com/adele/cold-shoulder-rusko-remix-lyrics/\" itemprop=\"url\" title=\"Cold Shoulder [Rusko Remix] Lyrics Adele\">Cold Shoulder [Rusko Remix]</a>\n", + "<a href=\"https://www.songlyrics.com/adele/cold-shoulder-basement-jaxx-classic-remix-lyrics/\" itemprop=\"url\" title=\"Cold Shoulder [Basement Jaxx Classic Remix] Lyrics Adele\">Cold Shoulder [Basement Jaxx Classic Remix]</a>\n", + "<a href=\"https://www.songlyrics.com/adele/hometown-glory-high-contrast-remix-instrumental-lyrics/\" itemprop=\"url\" title=\"Hometown Glory (High Contrast Remix Instrumental) Lyrics Adele\">Hometown Glory (High Contrast Remix Instrumental)</a>\n", + "<a href=\"https://www.songlyrics.com/adele/hometown-glory-high-contrast-remix-instrumental-lyrics/\" itemprop=\"url\" title=\"Hometown Glory [High Contrast Remix Instrumental] Lyrics Adele\">Hometown Glory [High Contrast Remix Instrumental]</a>\n", + "<a href=\"https://www.songlyrics.com/adele/hometown-glory-high-contrast-remix-instrumental-lyrics/\" itemprop=\"url\" title=\"Hometown Glory (High Contrast Remix) [Instrumental] Lyrics Adele\">Hometown Glory (High Contrast Remix) [Instrumental]</a>\n", + "<a href=\"https://www.songlyrics.com/adele/hometown-glory-high-contrast-mix-lyrics/\" itemprop=\"url\" title=\"Hometown Glory (High Contrast mix) Lyrics Adele\">Hometown Glory (High Contrast mix)</a>\n", + "<a href=\"https://www.songlyrics.com/adele/painting-pictures-lyrics/\" itemprop=\"url\" title=\"Painting Pictures Lyrics Adele\">Painting Pictures</a>\n", + "<a href=\"https://www.songlyrics.com/adele/rolling-in-the-deep-villa-remix-lyrics/\" itemprop=\"url\" title=\"Rolling in the Deep - Villa Remix Lyrics Adele\">Rolling in the Deep - Villa Remix</a>\n", + "<a href=\"https://www.songlyrics.com/adele/rolling-in-the-deep-nutone-remix-lyrics/\" itemprop=\"url\" title=\"Rolling In The Deep - Nu:Tone Remix Lyrics Adele\">Rolling In The Deep - Nu:Tone Remix</a>\n", + "<a href=\"https://www.songlyrics.com/adele/rolling-in-the-deep-jamie-xx-remix-lyrics/\" itemprop=\"url\" title=\"Rolling In The Deep - Jamie XX Remix Lyrics Adele\">Rolling In The Deep - Jamie XX Remix</a>\n", + "<a href=\"https://www.songlyrics.com/adele/pennies-from-heaven-j-burke-a-johnston-lyrics/\" itemprop=\"url\" title=\"Pennies From Heaven (J. Burke & A. Johnston) Lyrics Adele\">Pennies From Heaven (J. Burke & A. Johnston)</a>\n", + "<a href=\"https://www.songlyrics.com/adele/set-fire-to-the-rain-moto-blanco-edit-lyrics/\" itemprop=\"url\" title=\"Set Fire To The Rain - Moto Blanco Edit Lyrics Adele\">Set Fire To The Rain - Moto Blanco Edit</a>\n", + "<a href=\"https://www.songlyrics.com/adele/someone-like-you-live-at-the-brits-2011-lyrics/\" itemprop=\"url\" title=\"Someone Like You (Live at the Brits 2011) Lyrics Adele\">Someone Like You (Live at the Brits 2011)</a>\n", + "<a href=\"https://www.songlyrics.com/adele/rolling-in-the-deep-radio-edit-lyrics/\" itemprop=\"url\" title=\"Rolling In the Deep (Radio Edit) Lyrics Adele\">Rolling In the Deep (Radio Edit)</a>\n", + "<a href=\"https://www.songlyrics.com/adele/if-it-hadnt-been-for-love-lyrics/\" itemprop=\"url\" title=\"If It Hadnt Been For Love Lyrics Adele\">If It Hadnt Been For Love</a>\n", + "<a href=\"https://www.songlyrics.com/adele/fool-that-i-am-live-lyrics/\" itemprop=\"url\" title=\"Fool That I Am (live) Lyrics Adele\">Fool That I Am (live)</a>\n", + "<a href=\"https://www.songlyrics.com/adele/hometown-glory-axwell-mix-lyrics/\" itemprop=\"url\" title=\"Hometown Glory (Axwell mix) Lyrics Adele\">Hometown Glory (Axwell mix)</a>\n", + "<a href=\"https://www.songlyrics.com/adele/cold-shoulder-rusko-remix-lyrics/\" itemprop=\"url\" title=\"Cold Shoulder (Rusko remix) Lyrics Adele\">Cold Shoulder (Rusko remix)</a>\n", + "<a href=\"https://www.songlyrics.com/adele/someone-like-you-live-from-the-brit-awards-2011-lyrics/\" itemprop=\"url\" title=\"Someone Like You - Live From The Brit Awards 2011 Lyrics Adele\">Someone Like You - Live From The Brit Awards 2011</a>\n", + "<a href=\"https://www.songlyrics.com/adele/cold-shoulder-basement-jaxx-dubb-lyrics/\" itemprop=\"url\" title=\"Cold Shoulder [Basement Jaxx DUBB] Lyrics Adele\">Cold Shoulder [Basement Jaxx DUBB]</a>\n", + "<a href=\"https://www.songlyrics.com/adele/dont-you-remember-lyrics/\" itemprop=\"url\" title=\"Dont You Remember Lyrics Adele\">Dont You Remember</a>\n", + "<a href=\"https://www.songlyrics.com/adele/that-s-it-i-quit-i-m-movin-on-live-at-hotel-cafe-lyrics/\" itemprop=\"url\" title=\"That's It, I Quit, I'm Movin' On (Live at Hotel Cafe) Lyrics Adele\">That's It, I Quit, I'm Movin' On (Live at Hotel Cafe)</a>\n", + "<a href=\"https://www.songlyrics.com/adele/hometown-glory-live-at-hotel-cafe-lyrics/\" itemprop=\"url\" title=\"Hometown Glory (Live At Hotel Cafe) Lyrics Adele\">Hometown Glory (Live At Hotel Cafe)</a>\n", + "<a href=\"https://www.songlyrics.com/adele/daydreamer-live-at-hotel-cafe-lyrics/\" itemprop=\"url\" title=\"Daydreamer (Live At Hotel Cafe) Lyrics Adele\">Daydreamer (Live At Hotel Cafe)</a>\n", + "<a href=\"https://www.songlyrics.com/adele/make-you-feel-my-love-live-at-hotel-cafe-lyrics/\" itemprop=\"url\" title=\"Make You Feel My Love (Live At Hotel Cafe) Lyrics Adele\">Make You Feel My Love (Live At Hotel Cafe)</a>\n", + "<a href=\"https://www.songlyrics.com/adele/my-same-live-at-hotel-cafe-lyrics/\" itemprop=\"url\" title=\"My Same (Live At Hotel Cafe) Lyrics Adele\">My Same (Live At Hotel Cafe)</a>\n", + "<a href=\"https://www.songlyrics.com/adele/set-fire-to-the-rain-thomas-gold-remix-lyrics/\" itemprop=\"url\" title=\"Set Fire To The Rain - Thomas Gold Remix Lyrics Adele\">Set Fire To The Rain - Thomas Gold Remix</a>\n", + "<a href=\"https://www.songlyrics.com/adele/hometown-glory-high-contrast-remix-lyrics/\" itemprop=\"url\" title=\"Hometown Glory (High Contrast remix) Lyrics Adele\">Hometown Glory (High Contrast remix)</a>\n", + "<a href=\"https://www.songlyrics.com/adele/cold-shoulder-basement-jaxx-classic-remix-lyrics/\" itemprop=\"url\" title=\"Cold Shoulder (Basement Jaxx Classic remix) Lyrics Adele\">Cold Shoulder (Basement Jaxx Classic remix)</a>\n", + "<a href=\"https://www.songlyrics.com/adele/hometown-glory-axwell-club-mix-lyrics/\" itemprop=\"url\" title=\"Hometown Glory (Axwell club mix) Lyrics Adele\">Hometown Glory (Axwell club mix)</a>\n", + "<a href=\"https://www.songlyrics.com/adele/hometown-glory-axwell-radio-edit-lyrics/\" itemprop=\"url\" title=\"Hometown Glory (Axwell radio edit) Lyrics Adele\">Hometown Glory (Axwell radio edit)</a>\n", + "<a href=\"https://www.songlyrics.com/adele/hometown-glory-high-contrast-remix-instrumental-lyrics/\" itemprop=\"url\" title=\"Hometown Glory (High Contrast remix) (instrumental) Lyrics Adele\">Hometown Glory (High Contrast remix) (instrumental)</a>\n", + "<a href=\"https://www.songlyrics.com/adele/cold-shoulder-out-of-office-remix-lyrics/\" itemprop=\"url\" title=\"Cold Shoulder (Out of Office remix) Lyrics Adele\">Cold Shoulder (Out of Office remix)</a>\n", + "<a href=\"https://www.songlyrics.com/adele/hometown-glory-axwell-remode-lyrics/\" itemprop=\"url\" title=\"Hometown Glory (Axwell remode) Lyrics Adele\">Hometown Glory (Axwell remode)</a>\n", + "<a href=\"https://www.songlyrics.com/adele/cold-shoulder-basement-jaxx-mix-lyrics/\" itemprop=\"url\" title=\"Cold Shoulder (Basement Jaxx Mix) Lyrics Adele\">Cold Shoulder (Basement Jaxx Mix)</a>\n", + "<a href=\"https://www.songlyrics.com/adele/hometown-glory-high-contrast-remix-lyrics/\" itemprop=\"url\" title=\"Hometown Glory [High Contrast Remix] Lyrics Adele\">Hometown Glory [High Contrast Remix]</a>\n", + "<a href=\"https://www.songlyrics.com/adele/make-you-feel-my-love-recorded-live-at-wxpn-lyrics/\" itemprop=\"url\" title=\"Make You Feel My Love - Recorded Live at WXPN Lyrics Adele\">Make You Feel My Love - Recorded Live at WXPN</a>\n", + "<a href=\"https://www.songlyrics.com/adele/dont-you-remember-lyrics/\" itemprop=\"url\" title=\"Don’t You Remember Lyrics Adele\">Don’t You Remember</a>\n", + "<a href=\"https://www.songlyrics.com/adele/now-then-lyrics/\" itemprop=\"url\" title=\"Now & Then Lyrics Adele\">Now & Then</a>\n", + "<a href=\"https://www.songlyrics.com/adele/hello-lyrics/\" itemprop=\"url\" title=\"Hello Lyrics Adele\">Hello</a>\n", + "<a href=\"https://www.songlyrics.com/adele/skyfall-full-length-lyrics/\" itemprop=\"url\" title=\"Skyfall (Full Length) Lyrics Adele\">Skyfall (Full Length)</a>\n", + "<a href=\"https://www.songlyrics.com/adele/rolling-in-the-deep-bounce-mix-lyrics/\" itemprop=\"url\" title=\"Rolling in the Deep (Bounce mix) Lyrics Adele\">Rolling in the Deep (Bounce mix)</a>\n", + "<a href=\"https://www.songlyrics.com/adele/promise-this-radio-1-live-lounge-special-lyrics/\" itemprop=\"url\" title=\"Promise This (Radio 1 Live Lounge Special) Lyrics Adele\">Promise This (Radio 1 Live Lounge Special)</a>\n", + "<a href=\"https://www.songlyrics.com/adele/never-gonna-leave-you-lyrics/\" itemprop=\"url\" title=\"Never Gonna Leave You Lyrics Adele\">Never Gonna Leave You</a>\n", + "<a href=\"https://www.songlyrics.com/adele/keep-burning-lyrics/\" itemprop=\"url\" title=\"Keep Burning Lyrics Adele\">Keep Burning</a>\n", + "<a href=\"https://www.songlyrics.com/adele/rolling-in-the-deep-awooga-mashup-lyrics/\" itemprop=\"url\" title=\"Rolling in the Deep (Awooga mashup) Lyrics Adele\">Rolling in the Deep (Awooga mashup)</a>\n", + "<a href=\"https://www.songlyrics.com/adele/cold-shoulder-album-lyrics/\" itemprop=\"url\" title=\"Cold Shoulder (album) Lyrics Adele\">Cold Shoulder (album)</a>\n", + "<a href=\"https://www.songlyrics.com/adele/when-we-were-young-lyrics/\" itemprop=\"url\" title=\"When We Were Young Lyrics Adele\">When We Were Young</a>\n", + "<a href=\"https://www.songlyrics.com/adele/send-my-love-to-your-new-lover-lyrics/\" itemprop=\"url\" title=\"Send My Love (To Your New Lover) Lyrics Adele\">Send My Love (To Your New Lover)</a>\n", + "<a href=\"https://www.songlyrics.com/adele/i-found-a-boy-bonus-track-lyrics/\" itemprop=\"url\" title=\"I Found a Boy (Bonus Track) Lyrics Adele\">I Found a Boy (Bonus Track)</a>\n", + "<a href=\"https://www.songlyrics.com/adele/crazy-for-you-lyrics/\" itemprop=\"url\" title=\"Crazy for You Lyrics Adele\">Crazy for You</a>\n", + "<a href=\"https://www.songlyrics.com/adele/someone-like-you-humanjive-remix-lyrics/\" itemprop=\"url\" title=\"Someone Like You (HumanJive Remix) Lyrics Adele\">Someone Like You (HumanJive Remix)</a>\n", + "<a href=\"https://www.songlyrics.com/adele/dont-get-me-started-lyrics/\" itemprop=\"url\" title=\"Don´t Get Me Started Lyrics Adele\">Don´t Get Me Started</a>\n", + "<a href=\"https://www.songlyrics.com/adele/set-fire-to-the-rain-live-at-the-royal-albert-hall-lyrics/\" itemprop=\"url\" title=\"Set Fire To the Rain (Live At the Royal Albert Hall) Lyrics Adele\">Set Fire To the Rain (Live At the Royal Albert Hall)</a>\n", + "<a href=\"https://www.songlyrics.com/adele/someone-like-you-live-at-the-brits-2011-lyrics/\" itemprop=\"url\" title=\"Someone Like You - Live at The Brits 2011 Lyrics Adele\">Someone Like You - Live at The Brits 2011</a>\n", + "<a href=\"https://www.songlyrics.com/adele/make-you-feel-my-love-live-at-wxpn-lyrics/\" itemprop=\"url\" title=\"Make You Feel My Love - Live at WXPN Lyrics Adele\">Make You Feel My Love - Live at WXPN</a>\n", + "<a href=\"https://www.songlyrics.com/adele/water-under-the-bridge-lyrics/\" itemprop=\"url\" title=\"Water Under the Bridge Lyrics Adele\">Water Under the Bridge</a>\n", + "<a href=\"https://www.songlyrics.com/adele/chasing-pavements-album-lyrics/\" itemprop=\"url\" title=\"Chasing Pavements (album) Lyrics Adele\">Chasing Pavements (album)</a>\n", + "<a href=\"https://www.songlyrics.com/adele/hometown-glory-single-version-lyrics/\" itemprop=\"url\" title=\"Hometown Glory [Single Version] Lyrics Adele\">Hometown Glory [Single Version]</a>\n", + "<a href=\"https://www.songlyrics.com/adele/sweetest-devotion-lyrics/\" itemprop=\"url\" title=\"Sweetest Devotion Lyrics Adele\">Sweetest Devotion</a>\n", + "<a href=\"https://www.songlyrics.com/adele/all-i-ask-lyrics/\" itemprop=\"url\" title=\"All I Ask Lyrics Adele\">All I Ask</a>\n", + "<a href=\"https://www.songlyrics.com/adele/million-years-ago-lyrics/\" itemprop=\"url\" title=\"Million Years Ago Lyrics Adele\">Million Years Ago</a>\n", + "<a href=\"https://www.songlyrics.com/adele/love-in-the-dark-lyrics/\" itemprop=\"url\" title=\"Love in the Dark Lyrics Adele\">Love in the Dark</a>\n", + "<a href=\"https://www.songlyrics.com/adele/river-lea-lyrics/\" itemprop=\"url\" title=\"River Lea Lyrics Adele\">River Lea</a>\n", + "<a href=\"https://www.songlyrics.com/adele/remedy-lyrics/\" itemprop=\"url\" title=\"Remedy Lyrics Adele\">Remedy</a>\n", + "<a href=\"https://www.songlyrics.com/adele/i-miss-you-lyrics/\" itemprop=\"url\" title=\"I Miss You Lyrics Adele\">I Miss You</a>\n", + "<a href=\"https://www.songlyrics.com/adele/last-nite-lyrics/\" itemprop=\"url\" title=\"Last Nite Lyrics Adele\">Last Nite</a>\n", + "<a href=\"https://www.songlyrics.com/adele/can-t-let-go-lyrics/\" itemprop=\"url\" title=\"Can't Let Go Lyrics Adele\">Can't Let Go</a>\n", + "<a href=\"https://www.songlyrics.com/adele/lay-me-down-lyrics/\" itemprop=\"url\" title=\"Lay Me Down Lyrics Adele\">Lay Me Down</a>\n", + "<a href=\"https://www.songlyrics.com/adele/make-you-feel-my-love-album-lyrics/\" itemprop=\"url\" title=\"Make You Feel My Love (album) Lyrics Adele\">Make You Feel My Love (album)</a>\n", + "<a href=\"https://www.songlyrics.com/adele/chasing-pavements-live-at-the-hotel-cafe-lyrics/\" itemprop=\"url\" title=\"Chasing Pavements - Live At The Hotel Cafe Lyrics Adele\">Chasing Pavements - Live At The Hotel Cafe</a>\n", + "<a href=\"https://www.songlyrics.com/adele/that-s-it-i-quit-i-m-moving-on-live-at-the-hotel-cafe-lyrics/\" itemprop=\"url\" title=\"That's It, I Quit, I'm Moving On - Live At The Hotel Cafe Lyrics Adele\">That's It, I Quit, I'm Moving On - Live At The Hotel Cafe</a>\n", + "<a href=\"https://www.songlyrics.com/adele/my-same-live-at-the-hotel-cafe-lyrics/\" itemprop=\"url\" title=\"My Same - Live At The Hotel Cafe Lyrics Adele\">My Same - Live At The Hotel Cafe</a>\n", + "<a href=\"https://www.songlyrics.com/adele/melt-my-heart-to-stone-live-at-the-hotel-cafe-lyrics/\" itemprop=\"url\" title=\"Melt My Heart to Stone - Live At The Hotel Cafe Lyrics Adele\">Melt My Heart to Stone - Live At The Hotel Cafe</a>\n", + "<a href=\"https://www.songlyrics.com/adele/right-as-rain-live-at-the-hotel-cafe-lyrics/\" itemprop=\"url\" title=\"Right As Rain - Live At The Hotel Cafe Lyrics Adele\">Right As Rain - Live At The Hotel Cafe</a>\n", + "<a href=\"https://www.songlyrics.com/adele/to-make-you-feel-my-love-lyrics/\" itemprop=\"url\" title=\"To Make You Feel My Love Lyrics Adele\">To Make You Feel My Love</a>\n", + "<a href=\"https://www.songlyrics.com/adele/why-do-you-love-me-lyrics/\" itemprop=\"url\" title=\"Why Do You Love Me Lyrics Adele\">Why Do You Love Me</a>\n", + "<a href=\"https://www.songlyrics.com/adele/one-and-only-live-lyrics/\" itemprop=\"url\" title=\"One and Only (Live) Lyrics Adele\">One and Only (Live)</a>\n", + "<a href=\"https://www.songlyrics.com/adele/don-t-you-remember-live-lyrics/\" itemprop=\"url\" title=\"Don't You Remember (Live) Lyrics Adele\">Don't You Remember (Live)</a>\n", + "<a href=\"https://www.songlyrics.com/adele/rumour-has-it-live-lyrics/\" itemprop=\"url\" title=\"Rumour Has It (Live) Lyrics Adele\">Rumour Has It (Live)</a>\n", + "<a href=\"https://www.songlyrics.com/adele/if-it-hadnt-been-for-love-lyrics/\" itemprop=\"url\" title=\"If It Hadn’t Been for Love Lyrics Adele\">If It Hadn’t Been for Love</a>\n", + "<a href=\"https://www.songlyrics.com/adele/i-can-t-make-you-love-me-lyrics/\" itemprop=\"url\" title=\"I Can't Make You Love Me Lyrics Adele\">I Can't Make You Love Me</a>\n", + "<a href=\"https://www.songlyrics.com/adele/if-it-hadn-t-been-for-love-lyrics/\" itemprop=\"url\" title=\"If It Hadn't Been For Love Lyrics Adele\">If It Hadn't Been For Love</a>\n", + "<a href=\"https://www.songlyrics.com/adele/-lyrics/\" itemprop=\"url\" title=\"セット・ファイア・トゥ・ザ・レイン Lyrics Adele\">セット・ファイア・トゥ・ザ・レイン</a>\n", + "<a href=\"https://www.songlyrics.com/adele/my-same-lyrics/\" itemprop=\"url\" title=\"My Same Lyrics Adele\">My Same</a>\n", + "<a href=\"https://www.songlyrics.com/adele/chasing-pavements-lyrics/\" itemprop=\"url\" title=\"Chasing Pavements Lyrics Adele\">Chasing Pavements</a>\n", + "<a href=\"https://www.songlyrics.com/adele/set-fire-to-the-rain-lyrics/\" itemprop=\"url\" title=\"Set Fire to the Rain Lyrics Adele\">Set Fire to the Rain</a>\n", + "<a href=\"https://www.songlyrics.com/adele/someone-like-you-lyrics/\" itemprop=\"url\" title=\"Someone Like You Lyrics Adele\">Someone Like You</a>\n", + "<a href=\"https://www.songlyrics.com/adele/if-it-hadnt-been-for-love-live-at-the-royal-albert-hall-lyrics/\" itemprop=\"url\" title=\"If It Hadn’t Been for Love (live at the Royal Albert Hall) Lyrics Adele\">If It Hadn’t Been for Love (live at the Royal Albert Hall)</a>\n", + "<a href=\"https://www.songlyrics.com/adele/i-cant-make-you-love-me-live-at-the-royal-albert-hall-lyrics/\" itemprop=\"url\" title=\"I Can’t Make You Love Me (live at the Royal Albert Hall) Lyrics Adele\">I Can’t Make You Love Me (live at the Royal Albert Hall)</a>\n", + "<a href=\"https://www.songlyrics.com/adele/i-ll-be-waiting-lyrics/\" itemprop=\"url\" title=\"I'll Be Waiting Lyrics Adele\">I'll Be Waiting</a>\n", + "<a href=\"https://www.songlyrics.com/adele/dont-you-remember-live-acoustic-lyrics/\" itemprop=\"url\" title=\"Don’t You Remember (live acoustic) Lyrics Adele\">Don’t You Remember (live acoustic)</a>\n", + "<a href=\"https://www.songlyrics.com/adele/ill-be-waiting-lyrics/\" itemprop=\"url\" title=\"I’ll Be Waiting Lyrics Adele\">I’ll Be Waiting</a>\n", + "<a href=\"https://www.songlyrics.com/adele/he-wont-go-lyrics/\" itemprop=\"url\" title=\"He Won’t Go Lyrics Adele\">He Won’t Go</a>\n", + "<a href=\"https://www.songlyrics.com/adele/rolling-in-the-deep-jamie-xx-remix-lyrics/\" itemprop=\"url\" title=\"Rolling in the Deep (Jamie XX remix) Lyrics Adele\">Rolling in the Deep (Jamie XX remix)</a>\n", + "<a href=\"https://www.songlyrics.com/adele/turning-tabels-lyrics/\" itemprop=\"url\" title=\"Turning Tabels Lyrics Adele\">Turning Tabels</a>\n", + "<a href=\"https://www.songlyrics.com/adele/skyfall-2012-lyrics/\" itemprop=\"url\" title=\"Skyfall (2012) Lyrics Adele\">Skyfall (2012)</a>\n", + "<a href=\"https://www.songlyrics.com/adele/i-cant-make-you-love-me-lyrics/\" itemprop=\"url\" title=\"I Can’t Make You Love Me Lyrics Adele\">I Can’t Make You Love Me</a>\n", + "<a href=\"https://www.songlyrics.com/adele/someone-like-you-live-from-the-brit-awards-2011-lyrics/\" itemprop=\"url\" title=\"Someone Like You (live From the Brit Awards 2011) Lyrics Adele\">Someone Like You (live From the Brit Awards 2011)</a>\n", + "<a href=\"https://www.songlyrics.com/adele/make-you-feel-my-love-recorded-live-at-wxpn-lyrics/\" itemprop=\"url\" title=\"Make You Feel My Love (recorded live at WXPN) Lyrics Adele\">Make You Feel My Love (recorded live at WXPN)</a>\n", + "<a href=\"https://www.songlyrics.com/adele/melt-my-heart-to-stone-live-lyrics/\" itemprop=\"url\" title=\"Melt My Heart to Stone (Live) Lyrics Adele\">Melt My Heart to Stone (Live)</a>\n", + "<a href=\"https://www.songlyrics.com/adele/make-you-feel-my-love-live-lyrics/\" itemprop=\"url\" title=\"Make You Feel My Love (Live) Lyrics Adele\">Make You Feel My Love (Live)</a>\n", + "<a href=\"https://www.songlyrics.com/adele/right-as-rain-live-lyrics/\" itemprop=\"url\" title=\"Right As Rain (Live) Lyrics Adele\">Right As Rain (Live)</a>\n", + "<a href=\"https://www.songlyrics.com/adele/crazy-for-you-live-lyrics/\" itemprop=\"url\" title=\"Crazy for You (Live) Lyrics Adele\">Crazy for You (Live)</a>\n", + "<a href=\"https://www.songlyrics.com/adele/someone-like-you-live-from-the-brits-lyrics/\" itemprop=\"url\" title=\"Someone Like You (Live from the BRITs) Lyrics Adele\">Someone Like You (Live from the BRITs)</a>\n", + "<a href=\"https://www.songlyrics.com/adele/rolling-in-the-deep-acapella-lyrics/\" itemprop=\"url\" title=\"Rolling In the Deep (Acapella) Lyrics Adele\">Rolling In the Deep (Acapella)</a>\n", + "<a href=\"https://www.songlyrics.com/adele/rolling-in-the-deep-live-lyrics/\" itemprop=\"url\" title=\"Rolling in the Deep (Live) Lyrics Adele\">Rolling in the Deep (Live)</a>\n", + "<a href=\"https://www.songlyrics.com/adele/take-it-all-live-lyrics/\" itemprop=\"url\" title=\"Take It All (Live) Lyrics Adele\">Take It All (Live)</a>\n", + "<a href=\"https://www.songlyrics.com/adele/hometown-glory-live-lyrics/\" itemprop=\"url\" title=\"Hometown Glory (Live) Lyrics Adele\">Hometown Glory (Live)</a>\n", + "<a href=\"https://www.songlyrics.com/adele/chasing-pavements-live-lyrics/\" itemprop=\"url\" title=\"Chasing Pavements (Live) Lyrics Adele\">Chasing Pavements (Live)</a>\n", + "<a href=\"https://www.songlyrics.com/adele/make-you-feel-my-love-lyrics/\" itemprop=\"url\" title=\"Make You Feel My Love Lyrics Adele\">Make You Feel My Love</a>\n", + "<a href=\"https://www.songlyrics.com/adele/hometown-glory-radio-edit-lyrics/\" itemprop=\"url\" title=\"Hometown Glory (Radio Edit) Lyrics Adele\">Hometown Glory (Radio Edit)</a>\n", + "<a href=\"https://www.songlyrics.com/adele/set-fire-to-the-rain-graham-norton-show-lyrics/\" itemprop=\"url\" title=\"Set Fire To The Rain (Graham Norton Show) Lyrics Adele\">Set Fire To The Rain (Graham Norton Show)</a>\n", + "<a href=\"https://www.songlyrics.com/adele/you-ll-never-see-me-again-lyrics/\" itemprop=\"url\" title=\"You'll never see me again Lyrics Adele\">You'll never see me again</a>\n", + "<a href=\"https://www.songlyrics.com/adele/fiasco-lyrics/\" itemprop=\"url\" title=\"Fiasco Lyrics Adele\">Fiasco</a>\n", + "<a href=\"https://www.songlyrics.com/adele/someone-like-you-live-from-the-brits-2011-lyrics/\" itemprop=\"url\" title=\"Someone Like You (Live from the Brits 2011) Lyrics Adele\">Someone Like You (Live from the Brits 2011)</a>\n", + "<a href=\"https://www.songlyrics.com/adele/many-shades-of-black-performed-by-the-raconteurs-and-adele-lyrics/\" itemprop=\"url\" title=\"Many Shades of Black (Performed By the Raconteurs and Adele) Lyrics Adele\">Many Shades of Black (Performed By the Raconteurs and Adele)</a>\n", + "<a href=\"https://www.songlyrics.com/adele/that-s-it-i-quit-i-m-moving-on-live-lyrics/\" itemprop=\"url\" title=\"That's It, I Quit, I'm Moving On (Live) Lyrics Adele\">That's It, I Quit, I'm Moving On (Live)</a>\n", + "<a href=\"https://www.songlyrics.com/adele/don-t-you-remember-live-acoustic-lyrics/\" itemprop=\"url\" title=\"Don't You Remember (Live Acoustic) Lyrics Adele\">Don't You Remember (Live Acoustic)</a>\n" + ] + } + ], + "source": [ + "for link in soup.find_all('a'):\n", + " if link.get(\"itemprop\") is not None:\n", + " print(link)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "#### Honing in on the songs\n", + "Since songs also have a title, we can additionally specify for a title to get the relevant links." + ] + }, + { + "cell_type": "code", + "execution_count": 84, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "https://www.songlyrics.com/adele/one-only-lyrics/ One & Only\n", + "https://www.songlyrics.com/adele/i-can-t-make-you-love-me-live-lyrics/ I Can't Make You Love Me [Live]\n", + "https://www.songlyrics.com/adele/he-won-t-go-lyrics/ He Won't Go\n", + "https://www.songlyrics.com/adele/hiding-my-heart-lyrics/ Hiding My Heart\n", + "https://www.songlyrics.com/adele/rolling-in-the-deep-single-lyrics/ Rolling In The Deep (Single)\n", + "https://www.songlyrics.com/adele/need-you-now-lyrics/ Need You Now\n", + "https://www.songlyrics.com/adele/i-found-a-boy-lyrics/ I Found A Boy\n", + "https://www.songlyrics.com/adele/first-love-lyrics/ First Love\n", + "https://www.songlyrics.com/adele/best-for-last-lyrics/ Best For Last\n", + "https://www.songlyrics.com/adele/daydreamer-lyrics/ Daydreamer\n", + "https://www.songlyrics.com/adele/right-as-rain-lyrics/ Right As Rain\n", + "https://www.songlyrics.com/adele/melt-my-heart-to-stone-lyrics/ Melt My Heart To Stone\n", + "https://www.songlyrics.com/adele/tired-lyrics/ Tired\n", + "https://www.songlyrics.com/adele/cold-shoulder-lyrics/ Cold Shoulder\n", + "https://www.songlyrics.com/adele/melt-my-heart-to-stone-remix-lyrics/ Melt My Heart To Stone (Remix)\n", + "https://www.songlyrics.com/adele/set-fire-to-the-rain-moto-blanco-edit-lyrics/ Set Fire to the Rain (Moto Blanco Edit)\n", + "https://www.songlyrics.com/adele/that-s-it-i-quit-i-m-movin-on-lyrics/ That's It I Quit I'm Movin' On\n", + "https://www.songlyrics.com/adele/black-and-gold-lyrics/ Black And Gold\n", + "https://www.songlyrics.com/adele/set-fire-to-the-rain-remix-lyrics/ Set Fire To The Rain Remix\n", + "https://www.songlyrics.com/adele/i-can-t-make-you-love-me-cover-lyrics/ I Can't Make You Love Me (Cover)\n", + "https://www.songlyrics.com/adele/many-shades-of-black-lyrics/ Many Shades Of Black\n", + "https://www.songlyrics.com/adele/set-fire-to-the-rain-thomas-gold-dub-lyrics/ Set Fire to the Rain (Thomas Gold Dub)\n", + "https://www.songlyrics.com/adele/now-and-then-lyrics/ Now And Then\n", + "https://www.songlyrics.com/adele/set-fire-to-the-rain-moto-blanco-remix-lyrics/ Set Fire to the Rain (Moto Blanco Remix)\n", + "https://www.songlyrics.com/adele/one-and-only-lyrics/ One and Only\n", + "https://www.songlyrics.com/adele/love-song-lyrics/ Love Song\n", + "https://www.songlyrics.com/adele/lovesong-lyrics/ Lovesong\n", + "https://www.songlyrics.com/adele/someone-like-you-live-acoustic-lyrics/ Someone Like You (live acoustic)\n", + "https://www.songlyrics.com/adele/turning-tables-live-acoustic-lyrics/ Turning Tables (live acoustic)\n", + "https://www.songlyrics.com/adele/rolling-in-the-deep-the-lost-boys-remix-lyrics/ Rolling in the Deep (The Lost Boys remix)\n", + "https://www.songlyrics.com/adele/hometown-glory-lyrics/ Hometown Glory\n", + "https://www.songlyrics.com/adele/rolling-in-the-deep-nutone-remix-lyrics/ Rolling in the Deep (Nu:Tone remix)\n", + "https://www.songlyrics.com/adele/fool-that-i-am-lyrics/ Fool That I Am\n", + "https://www.songlyrics.com/adele/rumour-has-it-lyrics/ Rumour Has It\n", + "https://www.songlyrics.com/adele/take-it-all-lyrics/ Take It All\n", + "https://www.songlyrics.com/adele/melt-my-heart-to-stone-live-at-hotel-cafe-lyrics/ Melt My Heart to Stone (Live At Hotel Cafe)\n", + "https://www.songlyrics.com/adele/chasing-pavements-live-at-hotel-cafe-lyrics/ Chasing Pavements (Live At Hotel Cafe)\n", + "https://www.songlyrics.com/adele/cold-shoulder-basement-jaxx-classic-edit-lyrics/ Cold Shoulder (Basement Jaxx Classic Edit)\n", + "https://www.songlyrics.com/adele/rolling-in-the-deep-downtown-london-remix-extended-lyrics/ Rolling in the Deep (Downtown London remix extended)\n", + "https://www.songlyrics.com/adele/set-fire-to-the-rain-moto-blanco-club-remix-lyrics/ Set Fire to the Rain (Moto Blanco club remix)\n", + "https://www.songlyrics.com/adele/someone-like-you-dj-bratkovsky-remix-lyrics/ Someone Like You (DJ Bratkovsky remix)\n", + "https://www.songlyrics.com/adele/set-fire-to-the-rain-thomas-gold-remix-lyrics/ Set Fire to the Rain (Thomas Gold remix)\n", + "https://www.songlyrics.com/adele/turning-tables-lyrics/ Turning Tables\n", + "https://www.songlyrics.com/adele/thats-it-i-quit-im-movin-on-live-at-hotel-cafe-lyrics/ That’s It, I Quit, I’m Movin’ On (Live At Hotel Cafe)\n", + "https://www.songlyrics.com/adele/cold-shoulder-basement-jaxx-dub-lyrics/ Cold Shoulder (Basement Jaxx dub)\n", + "https://www.songlyrics.com/adele/set-fire-to-the-rain-thomas-gold-mix-lyrics/ Set Fire to the Rain (Thomas Gold mix)\n", + "https://www.songlyrics.com/adele/cold-shoulder-basement-jaxx-classic-remix-radio-edit-lyrics/ Cold Shoulder (Basement Jaxx Classic remix) (radio edit)\n", + "https://www.songlyrics.com/adele/cold-shoulder-basement-jaxx-dubb-lyrics/ Cold Shoulder (Basement Jaxx Dubb)\n", + "https://www.songlyrics.com/adele/intro-lyrics/ [intro]\n", + "https://www.songlyrics.com/adele/rolling-in-the-deep-lyrics/ Rolling in the Deep\n", + "https://www.songlyrics.com/adele/skyfall-lyrics/ Skyfall\n", + "https://www.songlyrics.com/adele/thats-it-i-quit-im-moving-on-lyrics/ That’s It, I Quit, I’m Moving On\n", + "https://www.songlyrics.com/adele/that-s-it-i-quit-i-m-moving-on-lyrics/ That's It, I Quit, I'm Moving On\n", + "https://www.songlyrics.com/adele/rolling-in-the-deep-villa-remix-lyrics/ Rolling in the Deep (Villa remix)\n", + "https://www.songlyrics.com/adele/rolling-in-the-deep-a-cappella-lyrics/ Rolling in the Deep (a cappella)\n", + "https://www.songlyrics.com/adele/set-fire-to-the-rain-moto-blanco-radio-edit-lyrics/ Set Fire to the Rain (Moto Blanco radio edit)\n", + "https://www.songlyrics.com/adele/rolling-in-the-deep-downtown-london-remix-lyrics/ Rolling in the Deep (Downtown London remix)\n", + "https://www.songlyrics.com/adele/rolling-in-the-deep-zamami-remix-lyrics/ Rolling in the Deep (Zamami remix)\n", + "https://www.songlyrics.com/adele/rolling-in-the-deep-damn-you-mongolians-remix-lyrics/ Rolling in the Deep (Damn You Mongolians remix)\n", + "https://www.songlyrics.com/adele/rolling-in-the-deep-keljet-remix-lyrics/ Rolling in the Deep (Keljet remix)\n", + "https://www.songlyrics.com/adele/rolling-in-the-deep-dan-clare-club-remix-lyrics/ Rolling in the Deep (Dan Clare club remix)\n", + "https://www.songlyrics.com/adele/rolling-in-the-deep-spectrasoul-remix-lyrics/ Rolling in the Deep (SpectraSoul remix)\n", + "https://www.songlyrics.com/adele/rolling-in-the-deep-dj-megamix-remix-lyrics/ Rolling in the Deep (DJ megamix remix)\n", + "https://www.songlyrics.com/adele/don-t-you-remember-lyrics/ Don't You Remember\n", + "https://www.songlyrics.com/adele/crazy-for-you-live-at-hotel-cafe-lyrics/ Crazy for You (Live At Hotel Cafe)\n", + "https://www.songlyrics.com/adele/right-as-rain-live-at-hotel-cafe-lyrics/ Right As Rain (Live At Hotel Cafe)\n", + "https://www.songlyrics.com/adele/skyfall-full-length-lyrics/ Skyfall - Full Length\n", + "https://www.songlyrics.com/adele/make-you-feel-my-love-live-at-wxpn-lyrics/ Make You Feel My Love (Live at WXPN)\n", + "https://www.songlyrics.com/adele/cold-shoulder-rusko-remix-lyrics/ Cold Shoulder [Rusko Remix]\n", + "https://www.songlyrics.com/adele/cold-shoulder-basement-jaxx-classic-remix-lyrics/ Cold Shoulder [Basement Jaxx Classic Remix]\n", + "https://www.songlyrics.com/adele/hometown-glory-high-contrast-remix-instrumental-lyrics/ Hometown Glory (High Contrast Remix Instrumental)\n", + "https://www.songlyrics.com/adele/hometown-glory-high-contrast-remix-instrumental-lyrics/ Hometown Glory [High Contrast Remix Instrumental]\n", + "https://www.songlyrics.com/adele/hometown-glory-high-contrast-remix-instrumental-lyrics/ Hometown Glory (High Contrast Remix) [Instrumental]\n", + "https://www.songlyrics.com/adele/hometown-glory-high-contrast-mix-lyrics/ Hometown Glory (High Contrast mix)\n", + "https://www.songlyrics.com/adele/painting-pictures-lyrics/ Painting Pictures\n", + "https://www.songlyrics.com/adele/rolling-in-the-deep-villa-remix-lyrics/ Rolling in the Deep - Villa Remix\n", + "https://www.songlyrics.com/adele/rolling-in-the-deep-nutone-remix-lyrics/ Rolling In The Deep - Nu:Tone Remix\n", + "https://www.songlyrics.com/adele/rolling-in-the-deep-jamie-xx-remix-lyrics/ Rolling In The Deep - Jamie XX Remix\n", + "https://www.songlyrics.com/adele/pennies-from-heaven-j-burke-a-johnston-lyrics/ Pennies From Heaven (J. Burke & A. Johnston)\n", + "https://www.songlyrics.com/adele/set-fire-to-the-rain-moto-blanco-edit-lyrics/ Set Fire To The Rain - Moto Blanco Edit\n", + "https://www.songlyrics.com/adele/someone-like-you-live-at-the-brits-2011-lyrics/ Someone Like You (Live at the Brits 2011)\n", + "https://www.songlyrics.com/adele/rolling-in-the-deep-radio-edit-lyrics/ Rolling In the Deep (Radio Edit)\n", + "https://www.songlyrics.com/adele/if-it-hadnt-been-for-love-lyrics/ If It Hadnt Been For Love\n", + "https://www.songlyrics.com/adele/fool-that-i-am-live-lyrics/ Fool That I Am (live)\n", + "https://www.songlyrics.com/adele/hometown-glory-axwell-mix-lyrics/ Hometown Glory (Axwell mix)\n", + "https://www.songlyrics.com/adele/cold-shoulder-rusko-remix-lyrics/ Cold Shoulder (Rusko remix)\n", + "https://www.songlyrics.com/adele/someone-like-you-live-from-the-brit-awards-2011-lyrics/ Someone Like You - Live From The Brit Awards 2011\n", + "https://www.songlyrics.com/adele/cold-shoulder-basement-jaxx-dubb-lyrics/ Cold Shoulder [Basement Jaxx DUBB]\n", + "https://www.songlyrics.com/adele/dont-you-remember-lyrics/ Dont You Remember\n", + "https://www.songlyrics.com/adele/that-s-it-i-quit-i-m-movin-on-live-at-hotel-cafe-lyrics/ That's It, I Quit, I'm Movin' On (Live at Hotel Cafe)\n", + "https://www.songlyrics.com/adele/hometown-glory-live-at-hotel-cafe-lyrics/ Hometown Glory (Live At Hotel Cafe)\n", + "https://www.songlyrics.com/adele/daydreamer-live-at-hotel-cafe-lyrics/ Daydreamer (Live At Hotel Cafe)\n", + "https://www.songlyrics.com/adele/make-you-feel-my-love-live-at-hotel-cafe-lyrics/ Make You Feel My Love (Live At Hotel Cafe)\n", + "https://www.songlyrics.com/adele/my-same-live-at-hotel-cafe-lyrics/ My Same (Live At Hotel Cafe)\n", + "https://www.songlyrics.com/adele/set-fire-to-the-rain-thomas-gold-remix-lyrics/ Set Fire To The Rain - Thomas Gold Remix\n", + "https://www.songlyrics.com/adele/hometown-glory-high-contrast-remix-lyrics/ Hometown Glory (High Contrast remix)\n", + "https://www.songlyrics.com/adele/cold-shoulder-basement-jaxx-classic-remix-lyrics/ Cold Shoulder (Basement Jaxx Classic remix)\n", + "https://www.songlyrics.com/adele/hometown-glory-axwell-club-mix-lyrics/ Hometown Glory (Axwell club mix)\n", + "https://www.songlyrics.com/adele/hometown-glory-axwell-radio-edit-lyrics/ Hometown Glory (Axwell radio edit)\n", + "https://www.songlyrics.com/adele/hometown-glory-high-contrast-remix-instrumental-lyrics/ Hometown Glory (High Contrast remix) (instrumental)\n", + "https://www.songlyrics.com/adele/cold-shoulder-out-of-office-remix-lyrics/ Cold Shoulder (Out of Office remix)\n", + "https://www.songlyrics.com/adele/hometown-glory-axwell-remode-lyrics/ Hometown Glory (Axwell remode)\n", + "https://www.songlyrics.com/adele/cold-shoulder-basement-jaxx-mix-lyrics/ Cold Shoulder (Basement Jaxx Mix)\n", + "https://www.songlyrics.com/adele/hometown-glory-high-contrast-remix-lyrics/ Hometown Glory [High Contrast Remix]\n", + "https://www.songlyrics.com/adele/make-you-feel-my-love-recorded-live-at-wxpn-lyrics/ Make You Feel My Love - Recorded Live at WXPN\n", + "https://www.songlyrics.com/adele/dont-you-remember-lyrics/ Don’t You Remember\n", + "https://www.songlyrics.com/adele/now-then-lyrics/ Now & Then\n", + "https://www.songlyrics.com/adele/hello-lyrics/ Hello\n", + "https://www.songlyrics.com/adele/skyfall-full-length-lyrics/ Skyfall (Full Length)\n", + "https://www.songlyrics.com/adele/rolling-in-the-deep-bounce-mix-lyrics/ Rolling in the Deep (Bounce mix)\n", + "https://www.songlyrics.com/adele/promise-this-radio-1-live-lounge-special-lyrics/ Promise This (Radio 1 Live Lounge Special)\n", + "https://www.songlyrics.com/adele/never-gonna-leave-you-lyrics/ Never Gonna Leave You\n", + "https://www.songlyrics.com/adele/keep-burning-lyrics/ Keep Burning\n", + "https://www.songlyrics.com/adele/rolling-in-the-deep-awooga-mashup-lyrics/ Rolling in the Deep (Awooga mashup)\n", + "https://www.songlyrics.com/adele/cold-shoulder-album-lyrics/ Cold Shoulder (album)\n", + "https://www.songlyrics.com/adele/when-we-were-young-lyrics/ When We Were Young\n", + "https://www.songlyrics.com/adele/send-my-love-to-your-new-lover-lyrics/ Send My Love (To Your New Lover)\n", + "https://www.songlyrics.com/adele/i-found-a-boy-bonus-track-lyrics/ I Found a Boy (Bonus Track)\n", + "https://www.songlyrics.com/adele/crazy-for-you-lyrics/ Crazy for You\n", + "https://www.songlyrics.com/adele/someone-like-you-humanjive-remix-lyrics/ Someone Like You (HumanJive Remix)\n", + "https://www.songlyrics.com/adele/dont-get-me-started-lyrics/ Don´t Get Me Started\n", + "https://www.songlyrics.com/adele/set-fire-to-the-rain-live-at-the-royal-albert-hall-lyrics/ Set Fire To the Rain (Live At the Royal Albert Hall)\n", + "https://www.songlyrics.com/adele/someone-like-you-live-at-the-brits-2011-lyrics/ Someone Like You - Live at The Brits 2011\n", + "https://www.songlyrics.com/adele/make-you-feel-my-love-live-at-wxpn-lyrics/ Make You Feel My Love - Live at WXPN\n", + "https://www.songlyrics.com/adele/water-under-the-bridge-lyrics/ Water Under the Bridge\n", + "https://www.songlyrics.com/adele/chasing-pavements-album-lyrics/ Chasing Pavements (album)\n", + "https://www.songlyrics.com/adele/hometown-glory-single-version-lyrics/ Hometown Glory [Single Version]\n", + "https://www.songlyrics.com/adele/sweetest-devotion-lyrics/ Sweetest Devotion\n", + "https://www.songlyrics.com/adele/all-i-ask-lyrics/ All I Ask\n", + "https://www.songlyrics.com/adele/million-years-ago-lyrics/ Million Years Ago\n", + "https://www.songlyrics.com/adele/love-in-the-dark-lyrics/ Love in the Dark\n", + "https://www.songlyrics.com/adele/river-lea-lyrics/ River Lea\n", + "https://www.songlyrics.com/adele/remedy-lyrics/ Remedy\n", + "https://www.songlyrics.com/adele/i-miss-you-lyrics/ I Miss You\n", + "https://www.songlyrics.com/adele/last-nite-lyrics/ Last Nite\n", + "https://www.songlyrics.com/adele/can-t-let-go-lyrics/ Can't Let Go\n", + "https://www.songlyrics.com/adele/lay-me-down-lyrics/ Lay Me Down\n", + "https://www.songlyrics.com/adele/make-you-feel-my-love-album-lyrics/ Make You Feel My Love (album)\n", + "https://www.songlyrics.com/adele/chasing-pavements-live-at-the-hotel-cafe-lyrics/ Chasing Pavements - Live At The Hotel Cafe\n", + "https://www.songlyrics.com/adele/that-s-it-i-quit-i-m-moving-on-live-at-the-hotel-cafe-lyrics/ That's It, I Quit, I'm Moving On - Live At The Hotel Cafe\n", + "https://www.songlyrics.com/adele/my-same-live-at-the-hotel-cafe-lyrics/ My Same - Live At The Hotel Cafe\n", + "https://www.songlyrics.com/adele/melt-my-heart-to-stone-live-at-the-hotel-cafe-lyrics/ Melt My Heart to Stone - Live At The Hotel Cafe\n", + "https://www.songlyrics.com/adele/right-as-rain-live-at-the-hotel-cafe-lyrics/ Right As Rain - Live At The Hotel Cafe\n", + "https://www.songlyrics.com/adele/to-make-you-feel-my-love-lyrics/ To Make You Feel My Love\n", + "https://www.songlyrics.com/adele/why-do-you-love-me-lyrics/ Why Do You Love Me\n", + "https://www.songlyrics.com/adele/one-and-only-live-lyrics/ One and Only (Live)\n", + "https://www.songlyrics.com/adele/don-t-you-remember-live-lyrics/ Don't You Remember (Live)\n", + "https://www.songlyrics.com/adele/rumour-has-it-live-lyrics/ Rumour Has It (Live)\n", + "https://www.songlyrics.com/adele/if-it-hadnt-been-for-love-lyrics/ If It Hadn’t Been for Love\n", + "https://www.songlyrics.com/adele/i-can-t-make-you-love-me-lyrics/ I Can't Make You Love Me\n", + "https://www.songlyrics.com/adele/if-it-hadn-t-been-for-love-lyrics/ If It Hadn't Been For Love\n", + "https://www.songlyrics.com/adele/-lyrics/ セット・ファイア・トゥ・ザ・レイン\n", + "https://www.songlyrics.com/adele/my-same-lyrics/ My Same\n", + "https://www.songlyrics.com/adele/chasing-pavements-lyrics/ Chasing Pavements\n", + "https://www.songlyrics.com/adele/set-fire-to-the-rain-lyrics/ Set Fire to the Rain\n", + "https://www.songlyrics.com/adele/someone-like-you-lyrics/ Someone Like You\n", + "https://www.songlyrics.com/adele/if-it-hadnt-been-for-love-live-at-the-royal-albert-hall-lyrics/ If It Hadn’t Been for Love (live at the Royal Albert Hall)\n", + "https://www.songlyrics.com/adele/i-cant-make-you-love-me-live-at-the-royal-albert-hall-lyrics/ I Can’t Make You Love Me (live at the Royal Albert Hall)\n", + "https://www.songlyrics.com/adele/i-ll-be-waiting-lyrics/ I'll Be Waiting\n", + "https://www.songlyrics.com/adele/dont-you-remember-live-acoustic-lyrics/ Don’t You Remember (live acoustic)\n", + "https://www.songlyrics.com/adele/ill-be-waiting-lyrics/ I’ll Be Waiting\n", + "https://www.songlyrics.com/adele/he-wont-go-lyrics/ He Won’t Go\n", + "https://www.songlyrics.com/adele/rolling-in-the-deep-jamie-xx-remix-lyrics/ Rolling in the Deep (Jamie XX remix)\n", + "https://www.songlyrics.com/adele/turning-tabels-lyrics/ Turning Tabels\n", + "https://www.songlyrics.com/adele/skyfall-2012-lyrics/ Skyfall (2012)\n", + "https://www.songlyrics.com/adele/i-cant-make-you-love-me-lyrics/ I Can’t Make You Love Me\n", + "https://www.songlyrics.com/adele/someone-like-you-live-from-the-brit-awards-2011-lyrics/ Someone Like You (live From the Brit Awards 2011)\n", + "https://www.songlyrics.com/adele/make-you-feel-my-love-recorded-live-at-wxpn-lyrics/ Make You Feel My Love (recorded live at WXPN)\n", + "https://www.songlyrics.com/adele/melt-my-heart-to-stone-live-lyrics/ Melt My Heart to Stone (Live)\n", + "https://www.songlyrics.com/adele/make-you-feel-my-love-live-lyrics/ Make You Feel My Love (Live)\n", + "https://www.songlyrics.com/adele/right-as-rain-live-lyrics/ Right As Rain (Live)\n", + "https://www.songlyrics.com/adele/crazy-for-you-live-lyrics/ Crazy for You (Live)\n", + "https://www.songlyrics.com/adele/someone-like-you-live-from-the-brits-lyrics/ Someone Like You (Live from the BRITs)\n", + "https://www.songlyrics.com/adele/rolling-in-the-deep-acapella-lyrics/ Rolling In the Deep (Acapella)\n", + "https://www.songlyrics.com/adele/rolling-in-the-deep-live-lyrics/ Rolling in the Deep (Live)\n", + "https://www.songlyrics.com/adele/take-it-all-live-lyrics/ Take It All (Live)\n", + "https://www.songlyrics.com/adele/hometown-glory-live-lyrics/ Hometown Glory (Live)\n", + "https://www.songlyrics.com/adele/chasing-pavements-live-lyrics/ Chasing Pavements (Live)\n", + "https://www.songlyrics.com/adele/make-you-feel-my-love-lyrics/ Make You Feel My Love\n", + "https://www.songlyrics.com/adele/hometown-glory-radio-edit-lyrics/ Hometown Glory (Radio Edit)\n", + "https://www.songlyrics.com/adele/set-fire-to-the-rain-graham-norton-show-lyrics/ Set Fire To The Rain (Graham Norton Show)\n", + "https://www.songlyrics.com/adele/you-ll-never-see-me-again-lyrics/ You'll never see me again\n", + "https://www.songlyrics.com/adele/fiasco-lyrics/ Fiasco\n", + "https://www.songlyrics.com/adele/someone-like-you-live-from-the-brits-2011-lyrics/ Someone Like You (Live from the Brits 2011)\n", + "https://www.songlyrics.com/adele/many-shades-of-black-performed-by-the-raconteurs-and-adele-lyrics/ Many Shades of Black (Performed By the Raconteurs and Adele)\n", + "https://www.songlyrics.com/adele/that-s-it-i-quit-i-m-moving-on-live-lyrics/ That's It, I Quit, I'm Moving On (Live)\n", + "https://www.songlyrics.com/adele/don-t-you-remember-live-acoustic-lyrics/ Don't You Remember (Live Acoustic)\n" + ] + } + ], + "source": [ + "for link in soup.find_all('a'):\n", + " if link.get(\"itemprop\", \"NOITEMPROP\") == \"url\" and link.get(\"title\") is not None: \n", + " data[\"Songs\"][link.text] = {\"Title\": link.text}\n", + " data[\"Songs\"][link.text][\"url\"] = link['href']\n", + " print(link['href'], link.text)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "#### Finally, some lyrics\n", + "Now that we have the song links, let's see if we can find our target data, the song lyrics, along with anything else that's good, like the genre and album. Going straight for the body, this is still a mess. " + ] + }, + { + "cell_type": "code", + "execution_count": 85, + "metadata": { + "scrolled": true + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "<body>\n", + "<script>\n", + "\t/* BIT - 1x1 - Songlyrics.com - Video */\n", + "\tcf_page_artist = \"\";\n", + "\tcf_page_song = \"\";\n", + "\tcf_adunit_id = \"100005353\";\n", + "</script>\n", + "<script src=\"//srv.tunefindforfans.com/fruits/apricots.js\"></script>\n", + "<div id=\"fb-root\"></div>\n", + "<div id=\"header\">\n", + "<div id=\"headernav\">\n", + "<div class=\"headinner\">\n", + "<ul class=\"menu floatleft\">\n", + "<li class=\"mega\">\n", + "<h2><a href=\"/\">Lyrics</a></h2>\n", + "<div>\n", + "<p><a href=\"/top-songs-lyrics.html\">Popular Song Lyrics</a></p>\n", + "<p><a href=\"/top100.php\">Billboard Hot 100</a></p>\n", + "<p><a href=\"/top-upcoming-songs.html\">Upcoming Lyrics</a></p>\n", + "<p><a href=\"/latestAddedSongs\">Recently Added</a></p>\n", + "<p class=\"menu-hr\"></p>\n", + "<p><a href=\"/news/top-songs/2011/\">Top Lyrics of 2011</a></p>\n", + "<p><a href=\"/news/top-songs/2010/\">Top Lyrics of 2010</a></p>\n", + "<p><a href=\"/news/top-songs/2009/\">Top Lyrics of 2009</a></p>\n", + "<p><a href=\"/news/top-songs/all-time/\">More »</a></p>\n", + "</div>\n", + "</li>\n", + "<li class=\"mega\">\n", + "<h2><a href=\"/top-artists-lyrics.html\">Artists</a></h2>\n", + "<div>\n", + "<p><a href=\"/top-artists-lyrics.html\">Popular Artists</a></p>\n", + "<p><a href=\"/a/\">Artists A-Z</a></p>\n", + "<p class=\"menu-hr\"></p>\n", + "<p><a href=\"/top-albums-lyrics.html\">Popular Albums</a></p>\n", + "<p><a href=\"/top-upcoming-albums.html\">Upcoming Albums</a></p>\n", + "<p class=\"menu-hr\"></p>\n", + "<p><a href=\"/adele-lyrics/\">Adele</a></p>\n", + "<p><a href=\"/rihanna-lyrics/\">Rihanna</a></p>\n", + "<p><a href=\"/katy-perry-lyrics/\">Katy Perry</a></p>\n", + "<p><a href=\"/lady-gaga-lyrics/\">Lady Gaga</a></p>\n", + "<p><a href=\"/lil-wayne-lyrics/\">Lil Wayne</a></p>\n", + "</div>\n", + "</li>\n", + "<li class=\"mega\">\n", + "<h2><a href=\"/musicgenres.php\">Genres</a></h2>\n", + "<div>\n", + "<p><a href=\"/rock-lyrics.php\" title=\"Rock Lyrics\">Rock</a></p>\n", + "<p><a href=\"/r-and-b-lyrics.php\" title=\"R&B Lyrics\">R&B</a></p>\n", + "<p><a href=\"/country-music-lyrics.php\" title=\"Country Lyrics\">Country</a></p>\n", + "<p><a href=\"/hip-hop-rap-lyrics.php\" title=\"Hip Hop and Rap Lyrics\">Hip Hop/Rap</a></p>\n", + "<p><a href=\"/pop-lyrics.php\" title=\"Pop Lyrics\">Pop</a></p>\n", + "<p><a href=\"/christian-lyrics.php\" title=\"Christian Lyrics\">Christian</a></p>\n", + "<p><a href=\"/dance-lyrics.php\" title=\"Dance Lyrics\">Dance</a></p>\n", + "<p><a href=\"/latin-lyrics.php\" title=\"Latin Lyrics\">Latin</a></p>\n", + "<p class=\"menu-hr\"></p>\n", + "<p><a href=\"/musicgenres.php\" title=\"All Genre Charts\">All Genres »</a></p>\n", + "</div>\n", + "</li>\n", + "<li class=\"mega\">\n", + "<h2><a href=\"/news/\">News</a></h2>\n", + "<div>\n", + "<p><a href=\"/news/\">All News</a></p>\n", + "<p><a href=\"/news/category/news-roundup/\">Daily Roundup</a></p>\n", + "</div>\n", + "</li>\n", + "<li class=\"mega\">\n", + "<h2><a href=\"/news/album-reviews/\">Reviews</a></h2>\n", + "<div>\n", + "<p><a href=\"/news/album-reviews/\">Album Reviews</a></p>\n", + "<p><a href=\"/news/category/song-reviews/\">Song Reviews</a></p>\n", + "</div>\n", + "</li>\n", + "<li class=\"mega\">\n", + "<h2><a href=\"/news/category/spotlight/\">Spotlight</a></h2>\n", + "</li>\n", + "</ul>\n", + "<p class=\"login-menu\"><a class=\"btn\" href=\"/member-login.php\" rel=\"nofollow\">Sign In</a><a class=\"btn\" href=\"/member-register.php\" rel=\"nofollow\">Register</a></p>\n", + "<ul class=\"menu floatright clearright\">\n", + "<li class=\"mega\">\n", + "<h2><a href=\"https://www.facebook.com/SongLyrics\">Facebook</a></h2>\n", + "</li>\n", + "<li>\n", + "<h2><a href=\"/news/advertise/\">Advertise</a></h2>\n", + "</li>\n", + "<li class=\"lasttab\">\n", + "<h2><a href=\"/news/submit-lyrics/\">Submit Lyrics</a></h2>\n", + "</li>\n", + "</ul>\n", + "</div><!-- end headerinner -->\n", + "</div><!-- end headernav -->\n", + "<!-- HEADERNAV MOBILE -->\n", + "<div id=\"headernav-mobile\">\n", + "<div class=\"headinner\">\n", + "<nav id=\"nav\" role=\"navigation\">\n", + "<a href=\"#nav\" title=\"Show navigation\">Show navigation\n", + "\t\t\t\t\t<i class=\"line-1 line\"></i>\n", + "<i class=\"line-2 line\"></i>\n", + "<i class=\"line-3 line\"></i>\n", + "</a>\n", + "<a class=\"hide\" href=\"#\" title=\"Hide navigation\">Hide navigation\n", + "\t\t\t\t\t<i class=\"line-1 line\"></i>\n", + "<i class=\"line-2 line\"></i>\n", + "<i class=\"line-3 line\"></i>\n", + "</a>\n", + "<ul>\n", + "<li><a aria-haspopup=\"true\" href=\"/\">Lyrics</a>\n", + "<ul>\n", + "<li><a href=\"/top-songs-lyrics.html\">Popular Song Lyrics</a></li>\n", + "<li><a href=\"/top100.php\">Billboard Hot 100</a></li>\n", + "<li><a href=\"/top-upcoming-songs.html\">Upcoming Lyrics</a></li>\n", + "<li><a href=\"/latestAddedSongs\">Recently Added</a></li>\n", + "<li><a href=\"/news/top-songs/2011/\">Top Lyrics of 2011</a></li>\n", + "<li><a href=\"/news/top-songs/2010/\">Top Lyrics of 2010</a></li>\n", + "<li><a href=\"/news/top-songs/2009/\">Top Lyrics of 2009</a></li>\n", + "<li><a href=\"/news/top-songs/all-time/\">More »</a></li>\n", + "</ul>\n", + "</li>\n", + "<li><a aria-haspopup=\"true\" href=\"/top-artists-lyrics.html\">Artists</a>\n", + "<ul>\n", + "<li><a href=\"/top-artists-lyrics.html\">Popular Artists</a></li>\n", + "<li><a href=\"/a/\">Artists A-Z</a></li>\n", + "<li><a href=\"/top-albums-lyrics.html\">Popular Albums</a></li>\n", + "<li><a href=\"/top-upcoming-albums.html\">Upcoming Albums</a></li>\n", + "<li><a href=\"/adele-lyrics/\">Adele</a></li>\n", + "<li><a href=\"/rihanna-lyrics/\">Rihanna</a></li>\n", + "<li><a href=\"/katy-perry-lyrics/\">Katy Perry</a></li>\n", + "<li><a href=\"/lady-gaga-lyrics/\">Lady Gaga</a></li>\n", + "<li><a href=\"/lil-wayne-lyrics/\">Lil Wayne</a></li>\n", + "</ul>\n", + "</li>\n", + "<li><a aria-haspopup=\"true\" href=\"/musicgenres.php\">Genres</a>\n", + "<ul>\n", + "<li><a href=\"/rock-lyrics.php\" title=\"Rock Lyrics\">Rock</a></li>\n", + "<li><a href=\"/r-and-b-lyrics.php\" title=\"R&B Lyrics\">R&B</a></li>\n", + "<li><a href=\"/country-music-lyrics.php\" title=\"Country Lyrics\">Country</a></li>\n", + "<li><a href=\"/hip-hop-rap-lyrics.php\" title=\"Hip Hop and Rap Lyrics\">Hip Hop/Rap</a></li>\n", + "<li><a href=\"/pop-lyrics.php\" title=\"Pop Lyrics\">Pop</a></li>\n", + "<li><a href=\"/christian-lyrics.php\" title=\"Christian Lyrics\">Christian</a></li>\n", + "<li><a href=\"/dance-lyrics.php\" title=\"Dance Lyrics\">Dance</a></li>\n", + "<li><a href=\"/latin-lyrics.php\" title=\"Latin Lyrics\">Latin</a></li>\n", + "<li><a href=\"/musicgenres.php\" title=\"All Genre Charts\">All Genres »</a></li>\n", + "</ul>\n", + "</li>\n", + "<li><a aria-haspopup=\"true\" href=\"/news/\">News</a>\n", + "<ul>\n", + "<li><a href=\"/news/\">All News</a></li>\n", + "<li><a href=\"/news/category/news-roundup/\">Daily Roundup</a></li>\n", + "</ul>\n", + "</li>\n", + "<li><a aria-haspopup=\"true\" href=\"/news/album-reviews/\">Reviews</a>\n", + "<ul>\n", + "<li><a href=\"/news/album-reviews/\">Album Reviews</a></li>\n", + "<li><a href=\"/news/category/song-reviews/\">Song Reviews</a></li>\n", + "</ul>\n", + "</li>\n", + "<li><a aria-haspopup=\"true\" href=\"/news/category/spotlight/\">Spotlight</a></li>\n", + "<li><a aria-haspopup=\"true\" href=\"https://www.facebook.com/SongLyrics\">Facebook</a>\n", + "</li><li><a aria-haspopup=\"true\" href=\"/news/advertise/\">Advertise</a>\n", + "</li><li><a aria-haspopup=\"true\" href=\"/news/submit-lyrics/\">Submit Lyrics</a>\n", + "</li>\n", + "<div id=\"header_search-mobile\">\n", + "<form action=\"/index.php\" class=\"searchForm\" method=\"get\" name=\"searchForm\">\n", + "<input name=\"section\" type=\"hidden\" value=\"search\"/>\n", + "<fieldset>\n", + "<input class=\"searchW input\" name=\"searchW\" onblur=\"if(this.value=='')(this.value='Search artists, albums, and songs');\" onfocus=\"if(this.value=='Search artists, albums, and songs')(this.value='');\" type=\"text\" value=\"Search artists, albums, and songs\"/>\n", + "<div class=\"submit-btn\"><input class=\"submit-input-wrapped searchSubmit\" name=\"submit\" type=\"submit\" value=\"Search\"/></div>\n", + "</fieldset>\n", + "</form>\n", + "</div>\n", + "</ul>\n", + "</nav>\n", + "</div><!-- end headerinner -->\n", + "</div><!-- end headernav mobile -->\n", + "<div class=\"headinner\">\n", + "<a href=\"/\" id=\"logo\" title=\"Lyrics\">Song Lyrics</a>\n", + "<div id=\"header_search\">\n", + "<form action=\"/index.php\" class=\"searchForm\" method=\"get\" name=\"searchForm\">\n", + "<input name=\"section\" type=\"hidden\" value=\"search\"/>\n", + "<fieldset>\n", + "<input class=\"searchW input\" name=\"searchW\" onblur=\"if(this.value=='')(this.value='Search artists, albums, and songs');\" onfocus=\"if(this.value=='Search artists, albums, and songs')(this.value='');\" type=\"text\" value=\"Search artists, albums, and songs\"/>\n", + "<div class=\"submit-btn\"><input class=\"submit-input-wrapped searchSubmit\" name=\"submit\" type=\"submit\" value=\"Search\"/></div>\n", + "</fieldset>\n", + "</form>\n", + "</div>\n", + "</div><!-- end headerinner -->\n", + "</div><!-- end header -->\n", + "<div id=\"wrapper\">\n", + "<div id=\"fbbox\">\n", + "<div id=\"fbbox-count\">\n", + "<span id=\"fbbox-total\">\n", + "\t\t55k\n", + "\t\t</span>\n", + "</div>\n", + "<a href=\"https://www.facebook.com/SongLyrics\" id=\"fbbox-likebutton\" target=\"_blank\">Like</a>\n", + "</div>\n", + "<div class=\"masthead\">\n", + "<div id=\"div-gpt-ad-songlyricscom37728\">\n", + "</div>\n", + "</div>\n", + "<div class=\"wrapper-inner footer-ad\">\n", + "<div class=\"topnav\">\n", + "<ul class=\"breadcrumb\" itemscope=\"\" itemtype=\"https://schema.org/BreadcrumbList\"><li class=\"home\" itemprop=\"itemListElement\" itemscope=\"\" itemtype=\"https://schema.org/ListItem\"><a href=\"https://www.songlyrics.com/\" itemprop=\"item\"><span itemprop=\"name\">Song Lyrics</span></a><meta content=\"1\" itemprop=\"position\"/></li><li itemprop=\"itemListElement\" itemscope=\"\" itemtype=\"https://schema.org/ListItem\"><a href=\"https://www.songlyrics.com/a/41/\" itemprop=\"item\"><span itemprop=\"name\">Artists - A</span></a><meta content=\"2\" itemprop=\"position\"/></li><li itemprop=\"itemListElement\" itemscope=\"\" itemtype=\"https://schema.org/ListItem\"><a href=\"https://www.songlyrics.com/adele-lyrics/\" itemprop=\"item\"><span itemprop=\"name\">Adele Lyrics</span></a><meta content=\"3\" itemprop=\"position\"/></li><li itemprop=\"itemListElement\" itemscope=\"\" itemtype=\"https://schema.org/ListItem\"><a href=\"https://www.songlyrics.com/adele/21/\" itemprop=\"item\"><span itemprop=\"name\">21 Album</span></a><meta content=\"4\" itemprop=\"position\"/></li><li class=\"current\" itemprop=\"itemListElement\" itemscope=\"\" itemtype=\"https://schema.org/ListItem\"><span itemprop=\"name\">One & Only Lyrics</span><meta content=\"5\" itemprop=\"position\"/></li></ul>\n", + "<ul class=\"social-links\">\n", + "<li class=\"fb\">\n", + "<div class=\"pw_widget pw_size_24 pw_post_false pw_counter_true\">\n", + "<a class=\"pw_facebook\"></a>\n", + "<a class=\"pw_twitter\"></a>\n", + "<a class=\"pw_email\"></a>\n", + "<a class=\"pw_googleplus\"></a>\n", + "</div>\n", + "</li>\n", + "</ul>\n", + "</div><!-- end topnav -->\n", + "<!-- PRIMIS PLAYER -->\n", + "<div id=\"primisPlayer\"></div>\n", + "<div class=\"lyrics-inner-col-wrap\" id=\"colone-container\">\n", + "<div class=\"col-one col-one-leftad\">\n", + "<div class=\"pagetitle\">\n", + "<h1>Adele - One & Only Lyrics</h1>\n", + "<p>Artist: <a href=\"https://www.songlyrics.com/adele-lyrics/\" title=\"Adele Lyrics\">Adele</a></p>\n", + "<p>Album: <a href=\"https://www.songlyrics.com/adele/21/\" title=\"21 Album Lyrics\">21</a></p>\n", + "<p>Genre: <a href=\"https://www.songlyrics.com/rock-lyrics.php\" title=\"Rock Lyrics\">Rock</a></p>\n", + "<div class=\"riff-title\">\n", + "\t\t\t\t\t\tHeyo! SONGLYRICS just got interactive. <span>Highlight.</span> Review: RIFF-it. <br/> <big><a href=\"https://www.songlyrics.com/about.php\">RIFF-it good.</a></big>\n", + "</div>\n", + "</div> <!--end pagetitle-->\n", + "<!-- Begin comScore Tag -->\n", + "<script>\n", + "\t\t\t\tvar _comscore = _comscore || [];\n", + "\t\t\t\t_comscore.push({ c1: \"2\", c2: \"6772046\" });\n", + "\t\t\t\t(function() {\n", + "\t\t\t\t\tvar s = document.createElement(\"script\"), el = document.getElementsByTagName(\"script\")[0]; s.async = true;\n", + "\t\t\t\t\ts.src = (document.location.protocol == \"https:\" ? \"https://sb\" : \"https://b\") + \".scorecardresearch.com/beacon.js\";\n", + "\t\t\t\t\tel.parentNode.insertBefore(s, el);\n", + "\t\t\t\t})();\n", + "\t\t\t</script>\n", + "<noscript>\n", + "<img src=\"https://b.scorecardresearch.com/p?c1=2&c2=6772046&cv=2.0&cj=1\"/>\n", + "</noscript>\n", + "<!-- End comScore Tag -->\n", + "<script>\n", + "\t\t\t\t/* TFP - Songlyrics.com - Above Lyrics */\n", + "\t\t\t\t(function() {\n", + "\t\t\t\t\tvar opts = {\n", + "\t\t\t\t\t\tartist: \"Adele\",\n", + "\t\t\t\t\t\tsong: \"One & Only\",\n", + "\t\t\t\t\t\tadunit_id: 39382089,\n", + "\t\t\t\t\t\tdiv_id: \"cf_async_\" + Math.floor((Math.random() * 999999999))\n", + "\t\t\t\t\t};\n", + "\t\t\t\t\tdocument.write('<div id=\"'+opts.div_id+'\"></div>');var c=function(){cf.showAsyncAd(opts)};if(typeof window.cf !== 'undefined')c();else{cf_async=!0;var r=document.createElement(\"script\"),s=document.getElementsByTagName(\"script\")[0];r.async=!0;r.src=\"//srv.tunefindforfans.com/fruits/apricots.js\";r.readyState?r.onreadystatechange=function(){if(\"loaded\"==r.readyState||\"complete\"==r.readyState)r.onreadystatechange=null,c()}:r.onload=c;s.parentNode.insertBefore(r,s)};\n", + "\t\t\t\t})();\n", + "\t\t\t</script>\n", + "<div id=\"songLyricsContainer\">\n", + "<div class=\"ringtone-matcher\">\n", + "</div>\n", + "<div class=\"video-link\">\n", + "<a href=\"https://www.youtube.com/watch?v=wA4ppvp2IzY\" tabindex=\"1\" title=\"Adele - One & Only\">Listen while you read!</a>\n", + "</div>\n", + "<div id=\"songLyricsDiv-outer\">\n", + "<p class=\"songLyricsV14 iComment-text\" id=\"songLyricsDiv\">You've been on my mind, I grow fonder every day<br/>\n", + "Lose myself in time just thinking of your face<br/>\n", + "God only knows why it's taken me so long to let my doubts go<br/>\n", + "You're the only one that I want<br/>\n", + "<br/>\n", + "I don't know why I'm scared, I've been here before<br/>\n", + "Every feeling, every word, I've imagined it all<br/>\n", + "You'll never know if you never try<br/>\n", + "To forgive your past and simply be mine<br/>\n", + "<br/>\n", + "I dare you to let me be your, your one and only<br/>\n", + "Promise I'm worthy to hold in your arms<br/>\n", + "So come on and give me the chance<br/>\n", + "To prove I am the one who can walk that mile<br/>\n", + "Until the end starts<br/>\n", + "<br/>\n", + "If I've been on your mind, you hang on every word I say<br/>\n", + "Lose yourself in time at the mention of my name<br/>\n", + "Will I ever know how it feels to hold you close<br/>\n", + "And have you tell me whichever road I choose you'll go<br/>\n", + "<br/>\n", + "I don't know why I'm scared 'cause I've been here before<br/>\n", + "Every feeling, every word, I've imagined it all<br/>\n", + "You'll never know if you never try<br/>\n", + "To forgive your past and simply be mine<br/>\n", + "<br/>\n", + "I dare you to let me be your, your one and only<br/>\n", + "Promise I'm worthy to hold in your arms<br/>\n", + "So come on and give me the chance<br/>\n", + "To prove I am the one who can walk that mile<br/>\n", + "Until the end starts<br/>\n", + "<br/>\n", + "I know it ain't easy giving up your heart<br/>\n", + "I know it ain't easy giving up your heart<br/>\n", + "<br/>\n", + "Nobody's perfect<br/>\n", + " (I know it ain't easy giving up your heart)<br/>\n", + "Trust me, I've learned it<br/>\n", + "Nobody's perfect<br/>\n", + " (I know it ain't easy giving up your heart)<br/>\n", + "Trust me, I've learned it<br/>\n", + "<br/>\n", + "Nobody's perfect<br/>\n", + " (I know it ain't easy giving up your heart)<br/>\n", + "Trust me, I've learned it<br/>\n", + "Nobody's perfect<br/>\n", + " (I know it ain't easy giving up your heart)<br/>\n", + "Trust me I've learned it<br/>\n", + "<br/>\n", + "So I dare you to let me be your, your one and only<br/>\n", + "I promise I'm worthy to hold in your arms<br/>\n", + "So come on and give me the chance<br/>\n", + "To prove I am the one who can walk that mile<br/>\n", + "Until the end starts<br/>\n", + "<br/>\n", + "Come on and give me the chance<br/>\n", + "To prove I am the one who can walk that mile<br/>\n", + "Until the end starts<br/></p>\n", + "</div>\n", + "<div itemscope=\"\" itemtype=\"https://schema.org/MusicRecording\">\n", + "<meta content=\"One & Only\" itemprop=\"name\"/>\n", + "<meta content=\"\" itemprop=\"description\"/>\n", + "<div itemprop=\"byArtist\" itemscope=\"\" itemtype=\"https://schema.org/MusicGroup\"></div>\n", + "<meta content=\"Adele\" itemprop=\"name\"/>\n", + "<meta content=\"https://www.songlyrics.com/adele-lyrics/\" itemprop=\"url\"/>\n", + "</div>\n", + "<div itemprop=\"inAlbum\" itemscope=\"\" itemtype=\"https://schema.org/MusicAlbum\"></div>\n", + "<meta content=\"21\" itemprop=\"name\"/>\n", + "<meta content=\"https://www.songlyrics.com/adele/21/\" itemprop=\"url\"/>\n", + "</div>\n", + "</div>\n", + "<script type=\"text/javascript\">\n", + "\n", + "$(\"#songLyricsDiv\").iComment({\n", + "\tcannot_comment: \"<span><br /><br />You must be <a href='/member-login.php'>logged in</a> to comment<br /></span> \",\n", + " id : \"691905\",\n", + " url : \"https://www.songlyrics.com/ajax-post-icomment.php\",\n", + "\tannot_url : \"https://www.songlyrics.com/annot-$id\",\n", + " min_words : 3,\n", + " min_words_error : \"<br /><br /><p>Min 3 words are required for selection!</p>\",\n", + "\tmax_words : 75,\n", + " max_words_error : \"<br /><br /><p>Max 30 words are allowed for selection!</p>\",\n", + " max_comment_len : 300,\n", + "\tmax_comment_len_label : \"Remaining __REMAX__ | Minimum __MIN__\",\n", + "\tmin_comment_len : 50\n", + " });\n", + "\n", + "\n", + "</script>\n", + "<div class=\"ringtone-matcher\">\n", + "</div>\n", + "<ul class=\"albuminfo\">\n", + "<li>\n", + "</li>\n", + "</ul>\n", + "<script>\n", + "\t\t\t/* TFP - Songlyrics.com - Below Lyrics */\n", + "\t\t\t(function() {\n", + "\t\t\t\tvar opts = {\n", + "\t\t\t\t\tartist: \"Adele\",\n", + "\t\t\t\t\tsong: \"One & Only\",\n", + "\t\t\t\t\tadunit_id: 39382090,\n", + "\t\t\t\t\tdiv_id: \"cf_async_\" + Math.floor((Math.random() * 999999999))\n", + "\t\t\t\t};\n", + "\t\t\t\tdocument.write('<div id=\"'+opts.div_id+'\"></div>');var c=function(){cf.showAsyncAd(opts)};if(typeof window.cf !== 'undefined')c();else{cf_async=!0;var r=document.createElement(\"script\"),s=document.getElementsByTagName(\"script\")[0];r.async=!0;r.src=\"//srv.tunefindforfans.com/fruits/apricots.js\";r.readyState?r.onreadystatechange=function(){if(\"loaded\"==r.readyState||\"complete\"==r.readyState)r.onreadystatechange=null,c()}:r.onload=c;s.parentNode.insertBefore(r,s)};\n", + "\t\t\t})();\n", + "\t\t</script>\n", + "<div class=\"ringtone-matcher\"><strong><a href=\"/news/lyrics-correction/\" target=\"_blank\">Submit lyrics correction →</a></strong></div>\n", + "</div> <!--end songLyricsContainer-->\n", + "</div>\n", + "<div class=\"masthead-content lyrics-inner-ad-wrap\">\n", + "<div id=\"ad-absolute-728-relocated\">\n", + "<!-- /1008608/GENERIC_728_ATF -->\n", + "<!--div id='div-gpt-ad-1494449587349-2' style='height:90px; width:728px;'>\n", + " <script>\n", + " googletag.cmd.push(function() { googletag.display('div-gpt-ad-1494449587349-2'); });\n", + " </script>\n", + " </div-->\n", + "</div>\n", + "<div id=\"fbbox-relocated\">\n", + "<div id=\"fbbox-count\">\n", + "<span id=\"fbbox-total\">\n", + "\t\t55k\n", + "\t\t</span>\n", + "</div>\n", + "<a href=\"https://www.facebook.com/SongLyrics\" id=\"fbbox-likebutton\" target=\"_blank\">Like</a>\n", + "</div>\n", + "</div>\n", + "<div id=\"ad-absolute-160\">\n", + "<div id=\"div-gpt-ad-songlyricscom37729\" style=\"height:600px; width:160px;\">\n", + "</div>\n", + "</div>\n", + "<div class=\"mobile_ad\" id=\"ros_5150\"></div>\n", + "<div class=\"col-one clear\">\n", + "<div id=\"comments\">\n", + "<!-- missing\n", + " /* Songlyrics 300x250 Hybrid */\n", + " -->\n", + "<h3>Add Comment</h3>\n", + "<div id=\"disqus_thread\">\n", + "</div>\n", + "<script defer=\"\" type=\"text/javascript\">\n", + "\t\t\t\n", + "\t\t\t/* * * CONFIGURATION VARIABLES: EDIT BEFORE PASTING INTO YOUR WEBPAGE * * */\n", + "\t\t\tvar disqus_shortname = 'song-lyrics'; // required: replace example with your forum shortname\n", + "\t\t\tvar disqus_developer = 1; // developer mode is off\n", + "\t\t\tvar disqus_container_id = 'disqus_thread';\n", + "\n", + "\t\t\tvar disqus_config = function () {\n", + "\t\t\t\tvar config = this; // Access to the config object\n", + "\t\t\t\tconfig.callbacks.preData.push(function() {\n", + "\t\t\t\t\t// clear out the container (its filled for SEO/legacy purposes)\n", + "\t\t\t\t\tdocument.getElementById(disqus_container_id).innerHTML = '';\n", + "\t\t\t\t});\n", + "\n", + "\t\t\t};\n", + "\n", + "\n", + "\t\t\t/* * * DON'T EDIT BELOW THIS LINE * * */\n", + "\t\t\t(function() {\n", + "\t\t\t\tvar dsq = document.createElement('script'); dsq.type = 'text/javascript'; dsq.async = true;\n", + "\t\t\t\tdsq.src = 'https://' + disqus_shortname + '.disqus.com/embed.js';\n", + "\t\t\t\t(document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(dsq);\n", + "\t\t\t})();\n", + "\n", + "\t\t\t\n", + "\t\t</script>\n", + "</div><!-- end comments -->\n", + "<div class=\"mobile_ad\" id=\"ros_5150\"></div>\n", + "</div> <!--end colone-->\n", + "</div><!-- end colone-container -->\n", + "<div class=\"colthree\">\n", + "<div id=\"gracenote\">\n", + "<div id=\"gracenote-credits\">\n", + "</div>\n", + "</div>\n", + "<div class=\"adblock\">\n", + "<div id=\"div-gpt-ad-songlyricscom37735\">\n", + "</div>\n", + "<div id=\"div-gpt-ad-songlyricscom37730\">\n", + "</div>\n", + "</div>\n", + "<div id=\"adblock-jango\">\n", + "<iframe allowtransparency=\"true\" frameborder=\"0\" height=\"50\" hspace=\"0\" marginheight=\"0\" marginwidth=\"0\" scrolling=\"no\" src=\"https://jangomusicnetwork.cdn107.com/sl?cust_params=j_artist=Adele&j_title=One & Only\" style=\"border: 0px none; padding-left:0px\" vspace=\"0\" width=\"300\"></iframe>\n", + "</div>\n", + "<div class=\"box listbox\">\n", + "<h2>21 Tracklist</h2>\n", + "<table class=\"tracklist\">\n", + "<tbody>\n", + "<tr>\n", + "<td class=\"td-iter\" width=\"21\">1</td>\n", + "<td><a href=\"https://www.songlyrics.com/adele/don-t-you-remember-lyrics/\" title=\"Don't You Remember Lyrics Adele\">Don't You Remember</a></td>\n", + "</tr>\n", + "<tr>\n", + "<td class=\"td-iter\" width=\"21\">2</td>\n", + "<td><a href=\"https://www.songlyrics.com/adele/don-t-you-remember-live-acoustic-lyrics/\" title=\"Don't You Remember (Live Acoustic) Lyrics Adele\">Don't You Remember (Live Acoustic)</a></td>\n", + "</tr>\n", + "<tr>\n", + "<td class=\"td-iter\" width=\"21\">3</td>\n", + "<td><a href=\"https://www.songlyrics.com/adele/dont-you-remember-lyrics/\" title=\"Don’t You Remember Lyrics Adele\">Don’t You Remember</a></td>\n", + "</tr>\n", + "<tr>\n", + "<td class=\"td-iter\" width=\"21\">4</td>\n", + "<td><a href=\"https://www.songlyrics.com/adele/dont-you-remember-live-acoustic-lyrics/\" title=\"Don’t You Remember (live acoustic) Lyrics Adele\">Don’t You Remember (live acoustic)</a></td>\n", + "</tr>\n", + "<tr>\n", + "<td class=\"td-iter\" width=\"21\">5</td>\n", + "<td><a href=\"https://www.songlyrics.com/adele/he-won-t-go-lyrics/\" title=\"He Won't Go Lyrics Adele\">He Won't Go</a></td>\n", + "</tr>\n", + "<tr>\n", + "<td class=\"td-iter\" width=\"21\">6</td>\n", + "<td><a href=\"https://www.songlyrics.com/adele/he-wont-go-lyrics/\" title=\"He Won’t Go Lyrics Adele\">He Won’t Go</a></td>\n", + "</tr>\n", + "<tr>\n", + "<td class=\"td-iter\" width=\"21\">7</td>\n", + "<td><a href=\"https://www.songlyrics.com/adele/hiding-my-heart-lyrics/\" title=\"Hiding My Heart Lyrics Adele\">Hiding My Heart</a></td>\n", + "</tr>\n", + "<tr>\n", + "<td class=\"td-iter\" width=\"21\">8</td>\n", + "<td><a href=\"https://www.songlyrics.com/adele/i-found-a-boy-lyrics/\" title=\"I Found A Boy Lyrics Adele\">I Found A Boy</a></td>\n", + "</tr>\n", + "<tr>\n", + "<td class=\"td-iter\" width=\"21\">9</td>\n", + "<td><a href=\"https://www.songlyrics.com/adele/i-found-a-boy-bonus-track-lyrics/\" title=\"I Found a Boy (Bonus Track) Lyrics Adele\">I Found a Boy (Bonus Track)</a></td>\n", + "</tr>\n", + "<tr>\n", + "<td class=\"td-iter\" width=\"21\">10</td>\n", + "<td><a href=\"https://www.songlyrics.com/adele/i-ll-be-waiting-lyrics/\" title=\"I'll Be Waiting Lyrics Adele\">I'll Be Waiting</a></td>\n", + "</tr>\n", + "<tr>\n", + "<td class=\"td-iter\" width=\"21\">11</td>\n", + "<td><a href=\"https://www.songlyrics.com/adele/if-it-hadn-t-been-for-love-lyrics/\" title=\"If It Hadn't Been for Love Lyrics Adele\">If It Hadn't Been for Love</a></td>\n", + "</tr>\n", + "<tr>\n", + "<td class=\"td-iter\" width=\"21\">12</td>\n", + "<td><a href=\"https://www.songlyrics.com/adele/if-it-hadnt-been-for-love-lyrics/\" title=\"If It Hadn’t Been for Love Lyrics Adele\">If It Hadn’t Been for Love</a></td>\n", + "</tr>\n", + "<tr>\n", + "<td class=\"td-iter\" width=\"21\">13</td>\n", + "<td><a href=\"https://www.songlyrics.com/adele/ill-be-waiting-lyrics/\" title=\"I’ll Be Waiting Lyrics Adele\">I’ll Be Waiting</a></td>\n", + "</tr>\n", + "<tr>\n", + "<td class=\"td-iter\" width=\"21\">14</td>\n", + "<td><a href=\"https://www.songlyrics.com/adele/lovesong-lyrics/\" title=\"Lovesong Lyrics Adele\">Lovesong</a></td>\n", + "</tr>\n", + "<tr>\n", + "<td class=\"td-iter\" width=\"21\">15</td>\n", + "<td><a href=\"https://www.songlyrics.com/adele/need-you-now-lyrics/\" title=\"Need You Now Lyrics Adele\">Need You Now</a></td>\n", + "</tr>\n", + "<tr>\n", + "<td class=\"td-iter\" width=\"21\">16</td>\n", + "<td><a class=\"current\" href=\"#\" title=\"One & Only Lyrics Adele\">One & Only</a></td>\n", + "</tr>\n", + "<tr>\n", + "<td class=\"td-iter\" width=\"21\">17</td>\n", + "<td><a href=\"https://www.songlyrics.com/adele/one-and-only-lyrics/\" title=\"One and Only Lyrics Adele\">One and Only</a></td>\n", + "</tr>\n", + "<tr>\n", + "<td class=\"td-iter\" width=\"21\">18</td>\n", + "<td><a href=\"https://www.songlyrics.com/adele/rolling-in-the-deep-lyrics/\" title=\"Rolling in the Deep Lyrics Adele\">Rolling in the Deep</a></td>\n", + "</tr>\n", + "<tr>\n", + "<td class=\"td-iter\" width=\"21\">19</td>\n", + "<td><a href=\"https://www.songlyrics.com/adele/rumour-has-it-lyrics/\" title=\"Rumour Has It Lyrics Adele\">Rumour Has It</a></td>\n", + "</tr>\n", + "<tr>\n", + "<td class=\"td-iter\" width=\"21\">20</td>\n", + "<td><a href=\"https://www.songlyrics.com/adele/set-fire-to-the-rain-lyrics/\" title=\"Set Fire to the Rain Lyrics Adele\">Set Fire to the Rain</a></td>\n", + "</tr>\n", + "<tr>\n", + "<td class=\"td-iter\" width=\"21\">21</td>\n", + "<td><a href=\"https://www.songlyrics.com/adele/someone-like-you-lyrics/\" title=\"Someone Like You Lyrics Adele\">Someone Like You</a></td>\n", + "</tr>\n", + "<tr>\n", + "<td class=\"td-iter\" width=\"21\">22</td>\n", + "<td><a href=\"https://www.songlyrics.com/adele/someone-like-you-live-acoustic-lyrics/\" title=\"Someone Like You (live acoustic) Lyrics Adele\">Someone Like You (live acoustic)</a></td>\n", + "</tr>\n", + "<tr>\n", + "<td class=\"td-iter\" width=\"21\">23</td>\n", + "<td><a href=\"https://www.songlyrics.com/adele/take-it-all-lyrics/\" title=\"Take It All Lyrics Adele\">Take It All</a></td>\n", + "</tr>\n", + "<tr>\n", + "<td class=\"td-iter\" width=\"21\">24</td>\n", + "<td><a href=\"https://www.songlyrics.com/adele/turning-tables-lyrics/\" title=\"Turning Tables Lyrics Adele\">Turning Tables</a></td>\n", + "</tr>\n", + "<tr>\n", + "<td class=\"td-iter\" width=\"21\">25</td>\n", + "<td><a href=\"https://www.songlyrics.com/adele/turning-tables-live-acoustic-lyrics/\" title=\"Turning Tables (live acoustic) Lyrics Adele\">Turning Tables (live acoustic)</a></td>\n", + "</tr>\n", + "<tr>\n", + "<td class=\"td-item td-header aligncenter\" colspan=\"2\">\n", + "<a href=\"https://www.songlyrics.com/adele-lyrics/\" title=\"Adele Albums\">More Albums</a>\n", + "</td>\n", + "</tr>\n", + "</tbody>\n", + "</table>\n", + "</div><!-- end listbox -->\n", + "<a class=\"embed-button\" href=\"#embed-content-2\" rel=\"superbox[content]\" style=\"display: block; float: none; top: -25px; position: relative;\">embed </></a>\n", + "<div class=\"embed-content\" id=\"embed-content-2\">\n", + "<div class=\"embed-text\">Embed</div>\n", + "<div class=\"embed-get\">\n", + "<p>Get the embed code</p>\n", + "<textarea class=\"widget_embed_box\" cols=\"34\" name=\"widget_embed\" onclick=\"select()\" rows=\"10\"><table class=\"songlyrics\" style=\"width: 100%; table-layout: fixed;\"><col width=\"40\"/><col/><tbody><tr><th colspan=\"2\">Adele - 21 Album Lyrics</th></tr><tr><td class=\"sl-td-left\">1.</td><td class=\"sl-td-right\"><a href=\"https://www.songlyrics.com/adele/don-t-you-remember-lyrics/\" title=\"Don't You Remember Lyrics Adele\">Don't You Remember</a></td></tr><tr><td class=\"sl-td-left\">2.</td><td class=\"sl-td-right\"><a href=\"https://www.songlyrics.com/adele/don-t-you-remember-live-acoustic-lyrics/\" title=\"Don't You Remember (Live Acoustic) Lyrics Adele\">Don't You Remember (Live Acoustic)</a></td></tr><tr><td class=\"sl-td-left\">3.</td><td class=\"sl-td-right\"><a href=\"https://www.songlyrics.com/adele/dont-you-remember-lyrics/\" title=\"Don’t You Remember Lyrics Adele\">Don’t You Remember</a></td></tr><tr><td class=\"sl-td-left\">4.</td><td class=\"sl-td-right\"><a href=\"https://www.songlyrics.com/adele/dont-you-remember-live-acoustic-lyrics/\" title=\"Don’t You Remember (live acoustic) Lyrics Adele\">Don’t You Remember (live acoustic)</a></td></tr><tr><td class=\"sl-td-left\">5.</td><td class=\"sl-td-right\"><a href=\"https://www.songlyrics.com/adele/he-won-t-go-lyrics/\" title=\"He Won't Go Lyrics Adele\">He Won't Go</a></td></tr><tr><td class=\"sl-td-left\">6.</td><td class=\"sl-td-right\"><a href=\"https://www.songlyrics.com/adele/he-wont-go-lyrics/\" title=\"He Won’t Go Lyrics Adele\">He Won’t Go</a></td></tr><tr><td class=\"sl-td-left\">7.</td><td class=\"sl-td-right\"><a href=\"https://www.songlyrics.com/adele/hiding-my-heart-lyrics/\" title=\"Hiding My Heart Lyrics Adele\">Hiding My Heart</a></td></tr><tr><td class=\"sl-td-left\">8.</td><td class=\"sl-td-right\"><a href=\"https://www.songlyrics.com/adele/i-found-a-boy-lyrics/\" title=\"I Found A Boy Lyrics Adele\">I Found A Boy</a></td></tr><tr><td class=\"sl-td-left\">9.</td><td class=\"sl-td-right\"><a href=\"https://www.songlyrics.com/adele/i-found-a-boy-bonus-track-lyrics/\" title=\"I Found a Boy (Bonus Track) Lyrics Adele\">I Found a Boy (Bonus Track)</a></td></tr><tr><td class=\"sl-td-left\">10.</td><td class=\"sl-td-right\"><a href=\"https://www.songlyrics.com/adele/i-ll-be-waiting-lyrics/\" title=\"I'll Be Waiting Lyrics Adele\">I'll Be Waiting</a></td></tr><tr><td class=\"sl-td-left\">11.</td><td class=\"sl-td-right\"><a href=\"https://www.songlyrics.com/adele/if-it-hadn-t-been-for-love-lyrics/\" title=\"If It Hadn't Been for Love Lyrics Adele\">If It Hadn't Been for Love</a></td></tr><tr><td class=\"sl-td-left\">12.</td><td class=\"sl-td-right\"><a href=\"https://www.songlyrics.com/adele/if-it-hadnt-been-for-love-lyrics/\" title=\"If It Hadn’t Been for Love Lyrics Adele\">If It Hadn’t Been for Love</a></td></tr><tr><td class=\"sl-td-left\">13.</td><td class=\"sl-td-right\"><a href=\"https://www.songlyrics.com/adele/ill-be-waiting-lyrics/\" title=\"I’ll Be Waiting Lyrics Adele\">I’ll Be Waiting</a></td></tr><tr><td class=\"sl-td-left\">14.</td><td class=\"sl-td-right\"><a href=\"https://www.songlyrics.com/adele/lovesong-lyrics/\" title=\"Lovesong Lyrics Adele\">Lovesong</a></td></tr><tr><td class=\"sl-td-left\">15.</td><td class=\"sl-td-right\"><a href=\"https://www.songlyrics.com/adele/need-you-now-lyrics/\" title=\"Need You Now Lyrics Adele\">Need You Now</a></td></tr><tr><td class=\"sl-td-left\">16.</td><td class=\"sl-td-right\"><a href=\"https://www.songlyrics.com/adele/one-only-lyrics/\" title=\"One & Only Lyrics Adele\">One & Only</a></td></tr><tr><td class=\"sl-td-left\">17.</td><td class=\"sl-td-right\"><a href=\"https://www.songlyrics.com/adele/one-and-only-lyrics/\" title=\"One and Only Lyrics Adele\">One and Only</a></td></tr><tr><td class=\"sl-td-left\">18.</td><td class=\"sl-td-right\"><a href=\"https://www.songlyrics.com/adele/rolling-in-the-deep-lyrics/\" title=\"Rolling in the Deep Lyrics Adele\">Rolling in the Deep</a></td></tr><tr><td class=\"sl-td-left\">19.</td><td class=\"sl-td-right\"><a href=\"https://www.songlyrics.com/adele/rumour-has-it-lyrics/\" title=\"Rumour Has It Lyrics Adele\">Rumour Has It</a></td></tr><tr><td class=\"sl-td-left\">20.</td><td class=\"sl-td-right\"><a href=\"https://www.songlyrics.com/adele/set-fire-to-the-rain-lyrics/\" title=\"Set Fire to the Rain Lyrics Adele\">Set Fire to the Rain</a></td></tr><tr><td class=\"sl-td-left\">21.</td><td class=\"sl-td-right\"><a href=\"https://www.songlyrics.com/adele/someone-like-you-lyrics/\" title=\"Someone Like You Lyrics Adele\">Someone Like You</a></td></tr><tr><td class=\"sl-td-left\">22.</td><td class=\"sl-td-right\"><a href=\"https://www.songlyrics.com/adele/someone-like-you-live-acoustic-lyrics/\" title=\"Someone Like You (live acoustic) Lyrics Adele\">Someone Like You (live acoustic)</a></td></tr><tr><td class=\"sl-td-left\">23.</td><td class=\"sl-td-right\"><a href=\"https://www.songlyrics.com/adele/take-it-all-lyrics/\" title=\"Take It All Lyrics Adele\">Take It All</a></td></tr><tr><td class=\"sl-td-left\">24.</td><td class=\"sl-td-right\"><a href=\"https://www.songlyrics.com/adele/turning-tables-lyrics/\" title=\"Turning Tables Lyrics Adele\">Turning Tables</a></td></tr><tr><td class=\"sl-td-left\">25.</td><td class=\"sl-td-right\"><a href=\"https://www.songlyrics.com/adele/turning-tables-live-acoustic-lyrics/\" title=\"Turning Tables (live acoustic) Lyrics Adele\">Turning Tables (live acoustic)</a></td></tr></tbody></table><p class=\"sl-credit\"><a href=\"https://www.songlyrics.com/adele-lyrics/\" title=\"Adele Lyrics\">Adele Lyrics</a> provided by <a href=\"/\" title=\"Lyrics\">SongLyrics.com</a></p></textarea>\n", + "<p class=\"desc\"><strong>Note:</strong> When you embed the widget in your site, it will match your site's styles (CSS). This is just a preview!</p>\n", + "</div><!-- end embed-get -->\n", + "<div class=\"embed-preview\">\n", + "<p>Preview the embedded widget</p>\n", + "<table class=\"songlyrics\" style=\"width: 100%; table-layout: fixed;\"><col width=\"40\"/><col/><tbody><tr><th colspan=\"2\">Adele - 21 Album Lyrics</th></tr><tr><td class=\"sl-td-left\">1.</td><td class=\"sl-td-right\"><a href=\"#\" title=\"Don't You Remember Lyrics Adele\">Don't You Remember</a></td></tr><tr><td class=\"sl-td-left\">2.</td><td class=\"sl-td-right\"><a href=\"#\" title=\"Don't You Remember (Live Acoustic) Lyrics Adele\">Don't You Remember (Live Acoustic)</a></td></tr><tr><td class=\"sl-td-left\">3.</td><td class=\"sl-td-right\"><a href=\"#\" title=\"Don’t You Remember Lyrics Adele\">Don’t You Remember</a></td></tr><tr><td class=\"sl-td-left\">4.</td><td class=\"sl-td-right\"><a href=\"#\" title=\"Don’t You Remember (live acoustic) Lyrics Adele\">Don’t You Remember (live acoustic)</a></td></tr><tr><td class=\"sl-td-left\">5.</td><td class=\"sl-td-right\"><a href=\"#\" title=\"He Won't Go Lyrics Adele\">He Won't Go</a></td></tr><tr><td class=\"sl-td-left\">6.</td><td class=\"sl-td-right\"><a href=\"#\" title=\"He Won’t Go Lyrics Adele\">He Won’t Go</a></td></tr><tr><td class=\"sl-td-left\">7.</td><td class=\"sl-td-right\"><a href=\"#\" title=\"Hiding My Heart Lyrics Adele\">Hiding My Heart</a></td></tr><tr><td class=\"sl-td-left\">8.</td><td class=\"sl-td-right\"><a href=\"#\" title=\"I Found A Boy Lyrics Adele\">I Found A Boy</a></td></tr><tr><td class=\"sl-td-left\">9.</td><td class=\"sl-td-right\"><a href=\"#\" title=\"I Found a Boy (Bonus Track) Lyrics Adele\">I Found a Boy (Bonus Track)</a></td></tr><tr><td class=\"sl-td-left\">10.</td><td class=\"sl-td-right\"><a href=\"#\" title=\"I'll Be Waiting Lyrics Adele\">I'll Be Waiting</a></td></tr><tr><td class=\"sl-td-left\">11.</td><td class=\"sl-td-right\"><a href=\"#\" title=\"If It Hadn't Been for Love Lyrics Adele\">If It Hadn't Been for Love</a></td></tr><tr><td class=\"sl-td-left\">12.</td><td class=\"sl-td-right\"><a href=\"#\" title=\"If It Hadn’t Been for Love Lyrics Adele\">If It Hadn’t Been for Love</a></td></tr><tr><td class=\"sl-td-left\">13.</td><td class=\"sl-td-right\"><a href=\"#\" title=\"I’ll Be Waiting Lyrics Adele\">I’ll Be Waiting</a></td></tr><tr><td class=\"sl-td-left\">14.</td><td class=\"sl-td-right\"><a href=\"#\" title=\"Lovesong Lyrics Adele\">Lovesong</a></td></tr><tr><td class=\"sl-td-left\">15.</td><td class=\"sl-td-right\"><a href=\"#\" title=\"Need You Now Lyrics Adele\">Need You Now</a></td></tr><tr><td class=\"sl-td-left\">16.</td><td class=\"sl-td-right\"><a href=\"#\" title=\"One & Only Lyrics Adele\">One & Only</a></td></tr><tr><td class=\"sl-td-left\">17.</td><td class=\"sl-td-right\"><a href=\"#\" title=\"One and Only Lyrics Adele\">One and Only</a></td></tr><tr><td class=\"sl-td-left\">18.</td><td class=\"sl-td-right\"><a href=\"#\" title=\"Rolling in the Deep Lyrics Adele\">Rolling in the Deep</a></td></tr><tr><td class=\"sl-td-left\">19.</td><td class=\"sl-td-right\"><a href=\"#\" title=\"Rumour Has It Lyrics Adele\">Rumour Has It</a></td></tr><tr><td class=\"sl-td-left\">20.</td><td class=\"sl-td-right\"><a href=\"#\" title=\"Set Fire to the Rain Lyrics Adele\">Set Fire to the Rain</a></td></tr><tr><td class=\"sl-td-left\">21.</td><td class=\"sl-td-right\"><a href=\"#\" title=\"Someone Like You Lyrics Adele\">Someone Like You</a></td></tr><tr><td class=\"sl-td-left\">22.</td><td class=\"sl-td-right\"><a href=\"#\" title=\"Someone Like You (live acoustic) Lyrics Adele\">Someone Like You (live acoustic)</a></td></tr><tr><td class=\"sl-td-left\">23.</td><td class=\"sl-td-right\"><a href=\"#\" title=\"Take It All Lyrics Adele\">Take It All</a></td></tr><tr><td class=\"sl-td-left\">24.</td><td class=\"sl-td-right\"><a href=\"#\" title=\"Turning Tables Lyrics Adele\">Turning Tables</a></td></tr><tr><td class=\"sl-td-left\">25.</td><td class=\"sl-td-right\"><a href=\"#\" title=\"Turning Tables (live acoustic) Lyrics Adele\">Turning Tables (live acoustic)</a></td></tr></tbody></table><p class=\"sl-credit\"><a href=\"#\" title=\"Adele Lyrics\">Adele Lyrics</a> provided by <a href=\"#\" title=\"Lyrics\">SongLyrics.com</a></p>\n", + "</div><!-- end embed-preview -->\n", + "</div><!-- end embed-content -->\n", + "<div class=\"box listbox\">\n", + "<h2 class=\"listbox-title\">In the Know</h2>\n", + "<table class=\"tracklist\">\n", + "<tbody>\n", + "<tr>\n", + "<td class=\"td-item td-noborder\" width=\"100\">\n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t \n", + "\t\t\t\t\t\t\t\t\t\t\t\t\t</td>\n", + "<td class=\"td-item td-last\"><h3><a href=\"\" title=\"\"></a></h3></td>\n", + "</tr>\n", + "</tbody>\n", + "</table>\n", + "<span class=\"viewall\"><a href=\"/news/\" title=\"Music News\">All Music News »</a></span>\n", + "</div>\n", + "<div class=\"box listbox\">\n", + "<h3 class=\"listbox-title\">Popular Adele Lyrics</h3>\n", + "<table class=\"tracklist\">\n", + "<tbody>\n", + "<tr>\n", + "<td class=\"td-iter\" width=\"21\">1</td>\n", + "<td><a href=\"https://www.songlyrics.com/adele/make-you-feel-my-love-recorded-live-at-wxpn-lyrics/\">Make You Feel My Love - Recorded Live at WXPN</a></td>\n", + "</tr>\n", + "<tr>\n", + "<td class=\"td-iter\" width=\"21\">2</td>\n", + "<td><a href=\"https://www.songlyrics.com/adele/rolling-in-the-deep-nutone-remix-lyrics/\">Rolling In The Deep - Nu:Tone Remix</a></td>\n", + "</tr>\n", + "<tr>\n", + "<td class=\"td-iter\" width=\"21\">3</td>\n", + "<td><a href=\"https://www.songlyrics.com/adele/rolling-in-the-deep-jamie-xx-remix-lyrics/\">Rolling In The Deep - Jamie XX Remix</a></td>\n", + "</tr>\n", + "<tr>\n", + "<td class=\"td-iter\" width=\"21\">4</td>\n", + "<td><a href=\"https://www.songlyrics.com/adele/pennies-from-heaven-j-burke-a-johnston-lyrics/\">Pennies From Heaven (J. Burke & A. Johnston)</a></td>\n", + "</tr>\n", + "<tr>\n", + "<td class=\"td-iter\" width=\"21\">5</td>\n", + "<td><a href=\"https://www.songlyrics.com/adele/set-fire-to-the-rain-moto-blanco-edit-lyrics/\">Set Fire To The Rain - Moto Blanco Edit</a></td>\n", + "</tr>\n", + "<tr>\n", + "<td class=\"td-iter\" width=\"21\">6</td>\n", + "<td><a href=\"https://www.songlyrics.com/adele/someone-like-you-live-at-the-brits-2011-lyrics/\">Someone Like You (Live at the Brits 2011)</a></td>\n", + "</tr>\n", + "</tbody>\n", + "</table>\n", + "</div>\n", + "<!--\n", + " /* Songlyrics 300x250 Hybrid */\n", + " -->\n", + "<div class=\"adblock\">\n", + "<!-- TAGNAME: 300x250_Bot_RSB -->\n", + "<!-- /8095840/.2_A.37731.4_songlyrics.com_tier1 -->\n", + "<div id=\"div-gpt-ad-songlyricscom37731\">\n", + "</div>\n", + "</div>\n", + "<div class=\"adblock\">\n", + "<!--\n", + " /* Songlyrics 300x250 Hybrid */\n", + " -->\n", + "<!-- TAGNAME: 300x600_RSB -->\n", + "<!-- /8095840/.2_A.37732.7_songlyrics.com_tier1 -->\n", + "<div id=\"div-gpt-ad-songlyricscom37732\">\n", + "</div>\n", + "</div>\n", + "</div> <!--end colthree-->\n", + "<!--end wrapper-inner-->\n", + "<div id=\"ad-728-footer\">\n", + "<!-- missing\n", + " /* Songlyrics 728x90 Hybrid */\n", + " -->\n", + "<!-- Leaderboard: 728x90 -->\n", + "</div>\n", + "<div class=\"footer\">\n", + "<table class=\"footer-inner\">\n", + "<tbody>\n", + "<tr>\n", + "<td class=\"genres\" width=\"145\">\n", + "<h3>Genres</h3>\n", + "<ul>\n", + "<li><a href=\"/rock-lyrics.php\" title=\"Rock Lyrics\">Rock</a></li>\n", + "<li><a href=\"/r-and-b-lyrics.php\" title=\"R&B Lyrics\">R&B</a></li>\n", + "<li><a href=\"/country-music-lyrics.php\" title=\"Country Lyrics\">Country</a></li>\n", + "<li><a href=\"/hip-hop-rap-lyrics.php\" title=\"Hip Hop and Rap Lyrics\">Hip Hop/Rap</a></li>\n", + "<li><a href=\"/pop-lyrics.php\" title=\"Pop Lyrics\">Pop</a></li>\n", + "<li><a href=\"/christian-lyrics.php\" title=\"Christian Lyrics\">Christian</a></li>\n", + "</ul>\n", + "</td>\n", + "<td class=\"top-lyrics\" width=\"170\">\n", + "<h3>Top Lyrics</h3>\n", + "<ul>\n", + "<li><a href=\"/top-songs-lyrics.html\">Top Songs</a></li>\n", + "<li><a href=\"/top-artists-lyrics.html\">Top Artists</a></li>\n", + "<li><a href=\"/top-albums-lyrics.html\">Top Albums</a></li>\n", + "<li><a href=\"/top-upcoming-songs.html\">Upcoming Songs</a></li>\n", + "<li><a href=\"/top-upcoming-albums.html\">Upcoming Albums</a></li>\n", + "<li><a href=\"/top100.php\" title=\"Billboard Hot 100 Songs\">Billboard Hot 100</a></li>\n", + "</ul>\n", + "</td>\n", + "<td class=\"songlyrics\" width=\"180\">\n", + "<h3>SongLyrics</h3>\n", + "<ul>\n", + "<li><a href=\"/news/advertise/\" title=\"Advertise on SongLyrics.com\">Advertise on SL</a></li>\n", + "<li><a href=\"/news/featured-blogs/\" title=\"Featured Blogs\">Featured Blogs</a></li>\n", + "<li><a href=\"/news/contact-us/\" title=\"Contact Us\">Contact Us</a></li>\n", + "<li><a href=\"/news\" title=\"Music News\">Music News</a></li>\n", + "<li><a href=\"/privacy.php\" title=\"Privacy Policy\">Privacy Policy</a></li>\n", + "<li><a href=\"/termsconditions.php\" title=\"Terms of Use\">Terms of Use</a></li>\n", + "</ul>\n", + "</td>\n", + "<td class=\"td-footer-last\" width=\"210\">\n", + "<h3>Company</h3>\n", + "<ul>\n", + "<li class=\"ftlast-li\">Copyright © 2024 SongLyrics</li>\n", + "<li class=\"ftlast-li\">\n", + "<ul>\n", + "<li class=\"ft-social\">Follow us:</li>\n", + "<li class=\"ft-social\"><a class=\"ft-fb\" href=\"https://www.facebook.com/SongLyrics\" target=\"_blank\" title=\"SongLyrics on Facebook\">Facebook</a></li>\n", + "<li class=\"ft-social\"><a class=\"ft-tw\" href=\"https://twitter.com/#!/songlyrics\" target=\"_blank\" title=\"Follow SongLyrics on Twitter\">Twitter</a></li>\n", + "</ul>\n", + "</li>\n", + "<li class=\"ftlast-li\">\n", + "<a href=\"/about.php\">About</a>\n", + "</li>\n", + "<li class=\"ftlast-li\">\n", + "<a id=\"unic-gdpr\" onclick='__tcfapi(\"openunic\");return false;' style=\"display:none;cursor:pointer;\">Change Ad Consent</a>\n", + "<a id=\"unic-ccpa\" onclick=\"window.__uspapi('openunic')\" style=\"display:none;cursor:pointer;\">Do not sell my data</a>\n", + "</li>\n", + "<!--<li class=\"ftlast-li\">Created in 0.277428 sec</li>-->\n", + "<li class=\"ftlast-li\">\n", + "<ul>\n", + "<li class=\"ft-logo\"><a class=\"ft-sm\" href=\"https://www.soundmedia.com/\" target=\"_blank\" title=\"Advertise on SongLyrics\">SoundMedia</a></li>\n", + "</ul>\n", + "</li>\n", + "</ul>\n", + "</td>\n", + "</tr>\n", + "</tbody>\n", + "</table>\n", + "<div id=\"footer-bottom\">\n", + "<ul id=\"footer-artists\">\n", + "<li class=\"artist\"><h4>Artists:</h4></li>\n", + "<li><a href=\"/a/\" title=\"A\">A</a></li>\n", + "<li><a href=\"/b/\" title=\"B\">B</a></li>\n", + "<li><a href=\"/c/\" title=\"C\">C</a></li>\n", + "<li><a href=\"/d/\" title=\"D\">D</a></li>\n", + "<li><a href=\"/e/\" title=\"E\">E</a></li>\n", + "<li><a href=\"/f/\" title=\"F\">F</a></li>\n", + "<li><a href=\"/g/\" title=\"G\">G</a></li>\n", + "<li><a href=\"/h/\" title=\"H\">H</a></li>\n", + "<li><a href=\"/i/\" title=\"I\">I</a></li>\n", + "<li><a href=\"/j/\" title=\"J\">J</a></li>\n", + "<li><a href=\"/k/\" title=\"K\">K</a></li>\n", + "<li><a href=\"/l/\" title=\"L\">L</a></li>\n", + "<li><a href=\"/m/\" title=\"M\">M</a></li>\n", + "<li><a href=\"/n/\" title=\"N\">N</a></li>\n", + "<li><a href=\"/o/\" title=\"O\">O</a></li>\n", + "<li><a href=\"/p/\" title=\"P\">P</a></li>\n", + "<li><a href=\"/q/\" title=\"Q\">Q</a></li>\n", + "<li><a href=\"/r/\" title=\"R\">R</a></li>\n", + "<li><a href=\"/s/\" title=\"S\">S</a></li>\n", + "<li><a href=\"/t/\" title=\"T\">T</a></li>\n", + "<li><a href=\"/u/\" title=\"U\">U</a></li>\n", + "<li><a href=\"/v/\" title=\"V\">V</a></li>\n", + "<li><a href=\"/w/\" title=\"W\">W</a></li>\n", + "<li><a href=\"/x/\" title=\"X\">X</a></li>\n", + "<li><a href=\"/y/\" title=\"Y\">Y</a></li>\n", + "<li><a href=\"/z/\" title=\"Z\">Z</a></li>\n", + "<li><a href=\"/0/\" title=\"#\">#</a></li>\n", + "</ul>\n", + "</div><!-- end footer-bottom -->\n", + "</div><!-- end footer -->\n", + "<script>\n", + "\t\tcf_page_artist = \"Adele\";\n", + "\t\tcf_page_song = \"One & Only\";\n", + "\t\tcf_adunit_id = \"100000077\";\n", + "\t\tcf_flex = true;\n", + "\t</script>\n", + "<script src=\"//srv.tunefindforfans.com/fruits/apricots.js\"></script>\n", + "<script type=\"text/javascript\">\n", + "\tfunction rm_client_callback(flex_type) {\n", + "\t// If not a Flextitial duo, end here\n", + "\tif (flex_type != \"duo\")\n", + "\treturn;\n", + "\n", + "\t// Height and footer settings\n", + "\tvar rm_header_height = 67; // px\n", + "\tvar rm_footer_height = 200; // px\n", + "\n", + "\t// Store so jquery only has to find them once\n", + "\tvar rm_gutters = $(\"#rm_gutter_left, #rm_gutter_right\");\n", + "\n", + "\t// Set initial gutter position\n", + "\trm_gutters.css(\"top\", rm_header_height + \"px\");\n", + "\n", + "\t// Attach to window's scroll event\n", + "\t$(window).scroll(function() {\n", + "\tst = $(this).scrollTop();\n", + "\th = $(document).height() - $(window).height();\n", + "\n", + "\tif (st < rm_header_height) {\n", + "\trm_gutters.css({\"top\": rm_header_height + \"px\", \"bottom\": \"auto\"});\n", + "\t} else if (st < h - rm_footer_height) {\n", + "\trm_gutters.css({\"top\": 0, \"bottom\": \"auto\"});\n", + "\t} else {\n", + "\trm_gutters.css({\"top\": \"auto\", \"bottom\": rm_footer_height + \"px\"});\n", + "\t}\n", + "\t});\n", + "\t}\n", + "\t</script>\n", + "<!-- BEGIN: Templates to be included in the HTML page -->\n", + "<div id=\"iComment-templates\">\n", + "<div class=\"iComment-popup\" style=\"display: none\">\n", + "<div class=\"iComment-popup-content\">\n", + "\t\t\tCheeeek<br/> that<br/> out<br/> dude.\n", + "\t\t</div>\n", + "<div class=\"iComment-close-btn\"></div>\n", + "</div>\n", + "<div class=\"iComment-form-new\">\n", + "<div class=\"iComment-selection-text\"></div>\n", + "<div class=\"iComment-existing-comments-container\">\n", + "<b class=\"iComment-title\">Lead RIFFs:</b>\n", + "<div class=\"iComment-existing-comments\"></div>\n", + "</div>\n", + "<div class=\"iComment-new-comment\" style=\"display:none\">\n", + "<label>\n", + "<b class=\"iComment-title\">RIFF it:</b>\n", + "<textarea class=\"comment-editor\" name=\"comment\"></textarea>\n", + "</label>\n", + "<div class=\"iComment-buttons\">\n", + "<button class=\"iComment-submit-btn\" data-inline=\"true\">Submit</button>\n", + "<button class=\"iComment-cancel-btn secondary\" data-inline=\"true\">Cancel</button>\n", + "</div>\n", + "</div>\n", + "</div>\n", + "<div class=\"iComment-warning iComment-warning-badselection\">\n", + "<div class=\"iComment-title\">Bad selection</div>\n", + "<div class=\"iComment-body\">\n", + "<p>Cannot annotate a non-flat selection. Make sure your selection\n", + "\t\t\t\tstarts and ends within the same node.</p>\n", + "<div class=\"iComment-text iComment-warn\" style=\"text-align: center\">\n", + "\t\t\t\t\t(example of bad selection): <strong>This is <span class=\"iComment\">bold\n", + "\t\t\t\t\ttext</span></strong><span class=\"iComment\"> and this</span> is normal text.\n", + "\t\t\t\t</div>\n", + "<div class=\"iComment-text\" style=\"text-align: center\">\n", + "\t\t\t\t\t(example of good selection): <strong>This is bold\n", + "\t\t\t\t\ttext</strong> <span class=\"iComment\">and this</span> is normal text.\n", + "\t\t\t\t</div>\n", + "</div>\n", + "</div>\n", + "<div class=\"iComment-warning iComment-warning-badselection2\">\n", + "<div class=\"iComment-title\">Bad selection</div>\n", + "<div class=\"iComment-body\">\n", + "<p>An annotation cannot contain another annotation.</p>\n", + "</div>\n", + "</div>\n", + "<!-- first comment\n", + "\t=================================================== -->\n", + "<div class=\"iComment-existing-comment-first iComment-body iComment-main-comment\" data-template-id=\"iComment-existing-comment-first\">\n", + "<div class=\"body\">\n", + "<div class=\"info\">\n", + "<div class=\"author-name\">Anonymous</div>\n", + "<span class=\"date\"></span>\n", + "<span class=\"votes\">\n", + "<span class=\"score\"></span>\n", + "</span>\n", + "</div>\n", + "<div class=\"text\"></div>\n", + "<div class=\"editor\">\n", + "<textarea></textarea>\n", + "<div class=\"buttons\">\n", + "<button class=\"iComment-save-btn\" data-inline=\"true\">Save</button>\n", + "<button class=\"iComment-discard-btn secondary\" data-inline=\"true\">Cancel</button>\n", + "</div>\n", + "</div>\n", + "<div class=\"delete\">\n", + "<div class=\"center\">\n", + "<strong>Really delete this comment?</strong>\n", + "<div class=\"buttons\">\n", + "<button class=\"iComment-yes-btn\" data-inline=\"true\">Yes</button>\n", + "<button class=\"iComment-nope-btn secondary\" data-inline=\"true\">No</button>\n", + "</div>\n", + "</div>\n", + "</div>\n", + "</div>\n", + "<div class=\"author\">\n", + "<a class=\"author-url\" href=\"#\"><img class=\"author-avatar\" src=\"images/avatar-default.png\"/></a>\n", + "</div>\n", + "<div class=\"operations\">\n", + "<span class=\"operation vote icon up-vote\" title=\"Vote\"></span>\n", + "<span class=\"operation icon edit\" title=\"Edit\"></span>\n", + "<span class=\"operation icon delete\" title=\"Delete\"></span>\n", + "</div>\n", + "</div>\n", + "<!-- repetitive comment\n", + "\t=========================================================== -->\n", + "<div class=\"iComment-existing-comment iComment-body\" data-template-id=\"iComment-existing-comment\">\n", + "<div class=\"body\">\n", + "<div class=\"info\">\n", + "<div class=\"author-name\">Anonymous</div>\n", + "<span class=\"date\"></span>\n", + "<span class=\"votes\">\n", + "<span class=\"score\"></span>\n", + "</span>\n", + "</div>\n", + "<div class=\"text\"></div>\n", + "<div class=\"editor\">\n", + "<textarea></textarea>\n", + "<div class=\"buttons\">\n", + "<button class=\"iComment-save-btn\" data-inline=\"true\">Save</button>\n", + "<button class=\"iComment-discard-btn secondary\" data-inline=\"true\">Cancel</button>\n", + "</div>\n", + "</div>\n", + "<div class=\"delete\">\n", + "<div class=\"center\">\n", + "<strong>Really delete this comment?</strong>\n", + "<div class=\"buttons\">\n", + "<button class=\"iComment-yes-btn\" data-inline=\"true\">Yes</button>\n", + "<button class=\"iComment-nope-btn secondary\" data-inline=\"true\">No</button>\n", + "</div>\n", + "</div>\n", + "</div>\n", + "</div>\n", + "<div class=\"author\">\n", + "<a class=\"author-url\" href=\"#\"><img class=\"author-avatar\" src=\"images/avatar-default.png\"/></a>\n", + "</div>\n", + "<div class=\"operations\">\n", + "<span class=\"operation vote icon up-vote\" title=\"Up-vote\"></span>\n", + "<span class=\"operation icon edit\" title=\"Edit\"></span>\n", + "<span class=\"operation icon delete\" title=\"Delete\"></span>\n", + "</div>\n", + "</div>\n", + "</div>\n", + "<!-- END: Templates to be included in the HTML page -->\n", + "<script src=\"/js/dropdown.js\" type=\"text/javascript\"></script>\n", + "<script type=\"text/javascript\">\n", + "\t$( '#nav li:has(ul)' ).doubleTapToGo(); <!-- DROPDOWN MENU -->\n", + "</script>\n", + "</body>\n" + ] + } + ], + "source": [ + "for title in data[\"Songs\"]:\n", + " html = requests.get(data[\"Songs\"][title][\"url\"]).text\n", + " soup = BeautifulSoup(html, 'html')\n", + " print(soup.find('body'))\n", + " break\n", + " " + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "#### Extracting the data\n", + "Scanning closely (or matching the rendered web sites content text), we can see that the actual lyrics are inside of a div with the `'songLyricsDiv-outer'` id. That's easy to collect, since we just want the text from this div (and there's only one). Getting the meta-data, e.g., album, is a bit more complicated. The meta-data comes just under the the `'h1'` title as a link, between `'p'` tags. Notice additionally that meta-data attributes come in the text format `'key: value'`. So, filtering `'p'` tag text for colon-space, \": \", we get what we want. However these entries are much more useful if we actually parse them into keys and values, e.g., transform `\"Genre: Rock\"` into a python dictionary `{\"Genre\": \"Rock\"}`. This is done with the `re.split()` command, delimiting by any first `\": \"`. Any meta-data attributes and the lyrics themselves are then stored in the artists data dictionary, and we're done with the song! Phew!" + ] + }, + { + "cell_type": "code", + "execution_count": 86, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Title: One & Only\n", + "\n", + "url: https://www.songlyrics.com/adele/one-only-lyrics/\n", + "\n", + "Artist: Adele\n", + "\n", + "Album: 21\n", + "\n", + "Genre: Rock\n", + "\n", + "Note: When you embed the widget in your site, it will match your site's styles (CSS). This is just a preview!\n", + "\n", + "Lyrics: \n", + "You've been on my mind, I grow fonder every day\n", + "Lose myself in time just thinking of your face\n", + "God only knows why it's taken me so long to let my doubts go\n", + "You're the only one that I want\n", + "\n", + "I don't know why I'm scared, I've been here before\n", + "Every feeling, every word, I've imagined it all\n", + "You'll never know if you never try\n", + "To forgive your past and simply be mine\n", + "\n", + "I dare you to let me be your, your one and only\n", + "Promise I'm worthy to hold in your arms\n", + "So come on and give me the chance\n", + "To prove I am the one who can walk that mile\n", + "Until the end starts\n", + "\n", + "If I've been on your mind, you hang on every word I say\n", + "Lose yourself in time at the mention of my name\n", + "Will I ever know how it feels to hold you close\n", + "And have you tell me whichever road I choose you'll go\n", + "\n", + "I don't know why I'm scared 'cause I've been here before\n", + "Every feeling, every word, I've imagined it all\n", + "You'll never know if you never try\n", + "To forgive your past and simply be mine\n", + "\n", + "I dare you to let me be your, your one and only\n", + "Promise I'm worthy to hold in your arms\n", + "So come on and give me the chance\n", + "To prove I am the one who can walk that mile\n", + "Until the end starts\n", + "\n", + "I know it ain't easy giving up your heart\n", + "I know it ain't easy giving up your heart\n", + "\n", + "Nobody's perfect\n", + " (I know it ain't easy giving up your heart)\n", + "Trust me, I've learned it\n", + "Nobody's perfect\n", + " (I know it ain't easy giving up your heart)\n", + "Trust me, I've learned it\n", + "\n", + "Nobody's perfect\n", + " (I know it ain't easy giving up your heart)\n", + "Trust me, I've learned it\n", + "Nobody's perfect\n", + " (I know it ain't easy giving up your heart)\n", + "Trust me I've learned it\n", + "\n", + "So I dare you to let me be your, your one and only\n", + "I promise I'm worthy to hold in your arms\n", + "So come on and give me the chance\n", + "To prove I am the one who can walk that mile\n", + "Until the end starts\n", + "\n", + "Come on and give me the chance\n", + "To prove I am the one who can walk that mile\n", + "Until the end starts\n", + "\n", + "\n" + ] + } + ], + "source": [ + "for title in data[\"Songs\"]:\n", + " html = requests.get(data[\"Songs\"][title][\"url\"]).text\n", + " soup = BeautifulSoup(html, 'lxml')\n", + " for par in soup.find_all(\"p\"):\n", + " if re.search(\": \", par.text):\n", + " pieces = re.split(\": \", par.text)\n", + " key = pieces[0]\n", + " value = \": \".join(pieces[1:len(pieces)])\n", + " data[\"Songs\"][title][key] = value \n", + " for div in soup.find('body').find_all('div'):\n", + " if div.get(\"id\",\"NOCLASS\") == \"songLyricsDiv-outer\":\n", + " data[\"Songs\"][title][\"Lyrics\"]=div.text\n", + " for key in data[\"Songs\"][title]:\n", + " print(key+\": \", data[\"Songs\"][title][key])\n", + " print(\"\")\n", + " break" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "#### Putting everything together\n", + "Now that we have all of the essential details for our code, it's time to put them together into a single script. The following does this, but now without changing some of the names to avoid variable collisions. Additionally, since we are trying to download ALL of the data here, we need to store it in a reasonably-convenient file structure. So, creatign separate files for each letter of the alphabet, we'll make each artist a line of json data. Note that for testing, this code still has breaks to finish after the first song." + ] + }, + { + "cell_type": "code", + "execution_count": 101, + "metadata": {}, + "outputs": [], + "source": [ + "## go through all of the letters in the alphabet\n", + "for letter in string.ascii_lowercase:\n", + " \n", + " ## create a data file for the current letter\n", + " filename = \"songlyrics-\"+letter+\".json\"\n", + " fh = open(filename, \"w\")\n", + " fh.close()\n", + " \n", + " ## open and parse the html for the current letter\n", + " letterhtml = requests.get(\"http://www.songlyrics.com/\"+letter+\"/\").text\n", + " lettersoup = BeautifulSoup(letterhtml, 'lxml')\n", + "\n", + " ## collect the pages for this letter\n", + " pages = [\"/\"+letter+\"/\"]\n", + " for letterlink in lettersoup.find_all('a'):\n", + " ## filter links for letter pages\n", + " if letterlink.get(\"href\") is not None and re.search(\"^Page \\d+$\", letterlink.get(\"title\", \"NOTITLE\")): \n", + " pages.append(letterlink['href'])\n", + "\n", + " ## go through the letter pages\n", + " for page in pages: \n", + " ## open and parse the html for the current page of this letter\n", + " pagehtml = requests.get(\"http://www.songlyrics.com\"+page).text\n", + " pagesoup = BeautifulSoup(pagehtml, 'lxml')\n", + "\n", + " ## go through the artists in the page\n", + " for pagelink in pagesoup.find_all('a'):\n", + " ## filter links for artist pages\n", + " if re.search(\"-lyrics/$\",pagelink.get(\"href\", \"NOLINK\")):\n", + " ## set up data and store artist-level information\n", + " data = {\n", + " \"Artist\": pagelink.text,\n", + " \"url\": pagelink['href'],\n", + " \"Songs\": {}\n", + " }\n", + "\n", + " ## open and parse the html for the current artist on this page\n", + " artisthtml = requests.get(\"http://www.songlyrics.com\"+data[\"url\"]).text\n", + " artistsoup = BeautifulSoup(artisthtml, 'lxml') \n", + "\n", + " ## go through the songs of this artist\n", + " for songlink in artistsoup.find_all('a'):\n", + "\n", + " ## filter links for song pages\n", + " if songlink.get(\"itemprop\", \"NOITEMPROP\") == \"url\" and songlink.get(\"title\") is not None:\n", + "\n", + " ## store initial song-level information\n", + " title = songlink.text\n", + " data[\"Songs\"][title] = {\"Title\": title}\n", + " data[\"Songs\"][title][\"url\"] = songlink['href']\n", + "\n", + " ## open and parse the html for the current song by this artist\n", + " songhtml = requests.get(data[\"Songs\"][title][\"url\"]).text\n", + " songsoup = BeautifulSoup(songhtml, 'lxml')\n", + "\n", + " ## go through paragraphs to find song attributes\n", + " for par in songsoup.find_all(\"p\"):\n", + " if re.search(\": \", par.text):\n", + " pieces = re.split(\": \", par.text)\n", + " key = pieces[0]\n", + " value = \": \".join(pieces[1:len(pieces)])\n", + " data[\"Songs\"][title][key] = value \n", + "\n", + " ## go through divs to find the one with the song lyrics\n", + " for div in songsoup.find('body').find_all('div'):\n", + " if div.get(\"id\",\"NOCLASS\") == \"songLyricsDiv-outer\":\n", + " data[\"Songs\"][title][\"Lyrics\"]=div.text\n", + " break\n", + "\n", + " ## write out the data for this artist, appending to the end of this letter's file\n", + " with open(filename, \"a\") as fh:\n", + " fh.writelines(json.dumps(data)+\"\\n\")\n", + " break\n", + " break\n", + " break" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "#### Always double check your output is good before running at scale...\n", + "It's always good to stop and make sure your output data is as you believe it will be. Here, we'll just load in what we've outputted to see if it's actually the data we got from testing." + ] + }, + { + "cell_type": "code", + "execution_count": 102, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Artist Adele\n", + "url /adele-lyrics/\n", + "Songs {'One & Only': {'Title': 'One & Only', 'url': 'https://www.songlyrics.com/adele/one-only-lyrics/', 'Artist': 'Adele', 'Album': '21', 'Genre': 'Rock', 'Note': \"When you embed the widget in your site, it will match your site's styles (CSS). This is just a preview!\", 'Lyrics': \"\\nYou've been on my mind, I grow fonder every day\\r\\nLose myself in time just thinking of your face\\r\\nGod only knows why it's taken me so long to let my doubts go\\r\\nYou're the only one that I want\\n\\r\\nI don't know why I'm scared, I've been here before\\r\\nEvery feeling, every word, I've imagined it all\\r\\nYou'll never know if you never try\\r\\nTo forgive your past and simply be mine\\n\\r\\nI dare you to let me be your, your one and only\\r\\nPromise I'm worthy to hold in your arms\\r\\nSo come on and give me the chance\\r\\nTo prove I am the one who can walk that mile\\r\\nUntil the end starts\\n\\r\\nIf I've been on your mind, you hang on every word I say\\r\\nLose yourself in time at the mention of my name\\r\\nWill I ever know how it feels to hold you close\\r\\nAnd have you tell me whichever road I choose you'll go\\n\\r\\nI don't know why I'm scared 'cause I've been here before\\r\\nEvery feeling, every word, I've imagined it all\\r\\nYou'll never know if you never try\\r\\nTo forgive your past and simply be mine\\n\\r\\nI dare you to let me be your, your one and only\\r\\nPromise I'm worthy to hold in your arms\\r\\nSo come on and give me the chance\\r\\nTo prove I am the one who can walk that mile\\r\\nUntil the end starts\\n\\r\\nI know it ain't easy giving up your heart\\r\\nI know it ain't easy giving up your heart\\n\\r\\nNobody's perfect\\r\\n (I know it ain't easy giving up your heart)\\r\\nTrust me, I've learned it\\r\\nNobody's perfect\\r\\n (I know it ain't easy giving up your heart)\\r\\nTrust me, I've learned it\\n\\r\\nNobody's perfect\\r\\n (I know it ain't easy giving up your heart)\\r\\nTrust me, I've learned it\\r\\nNobody's perfect\\r\\n (I know it ain't easy giving up your heart)\\r\\nTrust me I've learned it\\n\\r\\nSo I dare you to let me be your, your one and only\\r\\nI promise I'm worthy to hold in your arms\\r\\nSo come on and give me the chance\\r\\nTo prove I am the one who can walk that mile\\r\\nUntil the end starts\\n\\r\\nCome on and give me the chance\\r\\nTo prove I am the one who can walk that mile\\r\\nUntil the end starts\\n\"}}\n" + ] + } + ], + "source": [ + "with open(\"songlyrics-a.json\", \"r\") as f:\n", + " data = json.loads(f.read())\n", + "for key in data:\n", + " print(key, data[key])" + ] + }, + { + "cell_type": "code", + "execution_count": 103, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "{'Artist': 'Adele',\n", + " 'url': '/adele-lyrics/',\n", + " 'Songs': {'One & Only': {'Title': 'One & Only',\n", + " 'url': 'https://www.songlyrics.com/adele/one-only-lyrics/',\n", + " 'Artist': 'Adele',\n", + " 'Album': '21',\n", + " 'Genre': 'Rock',\n", + " 'Note': \"When you embed the widget in your site, it will match your site's styles (CSS). This is just a preview!\",\n", + " 'Lyrics': \"\\nYou've been on my mind, I grow fonder every day\\r\\nLose myself in time just thinking of your face\\r\\nGod only knows why it's taken me so long to let my doubts go\\r\\nYou're the only one that I want\\n\\r\\nI don't know why I'm scared, I've been here before\\r\\nEvery feeling, every word, I've imagined it all\\r\\nYou'll never know if you never try\\r\\nTo forgive your past and simply be mine\\n\\r\\nI dare you to let me be your, your one and only\\r\\nPromise I'm worthy to hold in your arms\\r\\nSo come on and give me the chance\\r\\nTo prove I am the one who can walk that mile\\r\\nUntil the end starts\\n\\r\\nIf I've been on your mind, you hang on every word I say\\r\\nLose yourself in time at the mention of my name\\r\\nWill I ever know how it feels to hold you close\\r\\nAnd have you tell me whichever road I choose you'll go\\n\\r\\nI don't know why I'm scared 'cause I've been here before\\r\\nEvery feeling, every word, I've imagined it all\\r\\nYou'll never know if you never try\\r\\nTo forgive your past and simply be mine\\n\\r\\nI dare you to let me be your, your one and only\\r\\nPromise I'm worthy to hold in your arms\\r\\nSo come on and give me the chance\\r\\nTo prove I am the one who can walk that mile\\r\\nUntil the end starts\\n\\r\\nI know it ain't easy giving up your heart\\r\\nI know it ain't easy giving up your heart\\n\\r\\nNobody's perfect\\r\\n (I know it ain't easy giving up your heart)\\r\\nTrust me, I've learned it\\r\\nNobody's perfect\\r\\n (I know it ain't easy giving up your heart)\\r\\nTrust me, I've learned it\\n\\r\\nNobody's perfect\\r\\n (I know it ain't easy giving up your heart)\\r\\nTrust me, I've learned it\\r\\nNobody's perfect\\r\\n (I know it ain't easy giving up your heart)\\r\\nTrust me I've learned it\\n\\r\\nSo I dare you to let me be your, your one and only\\r\\nI promise I'm worthy to hold in your arms\\r\\nSo come on and give me the chance\\r\\nTo prove I am the one who can walk that mile\\r\\nUntil the end starts\\n\\r\\nCome on and give me the chance\\r\\nTo prove I am the one who can walk that mile\\r\\nUntil the end starts\\n\"}}}" + ] + }, + "execution_count": 103, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "data" + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3 (ipykernel)", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.9.13" + } + }, + "nbformat": 4, + "nbformat_minor": 4 +} -- GitLab