Built with blockbuilder.org
forked from anonymous's block: fresh block
license: mit |
Built with blockbuilder.org
forked from anonymous's block: fresh block
<!DOCTYPE html> | |
<head> | |
<meta charset="utf-8"> | |
<script src="https://d3js.org/d3.v4.min.js"></script> | |
<style> | |
body { | |
margin:0;position:fixed;top:0;right:0;bottom:0;left:0; | |
} | |
.axis path { | |
stroke: none; | |
} | |
text { | |
font-family: sans-serif; | |
} | |
.x.grid { | |
pointer-events:none; | |
} | |
.x.grid path, .x.grid .tick text { | |
stroke-width: 0; | |
fill: none; | |
} | |
.x.grid line{ | |
stroke: lightgrey; | |
stroke-opacity: 0.4; | |
shape-rendering: crispEdges; | |
} | |
</style> | |
</head> | |
<body> | |
<script> | |
const margin = {top: 50, right: 30, bottom: 50, left: 30}, | |
width = 960 - margin.left - margin.right, | |
height = 500 - margin.top - margin.bottom; | |
let svg = d3.select('body').append('svg') | |
.attr('width', width + margin.left + margin.right) | |
.attr('height', height + margin.top + margin.bottom) | |
.append('g') | |
.attr('transform', `translate(${margin.left},${margin.top})`); | |
const startYear = 1995, | |
currentYear = 2017; | |
let x = d3.scaleLinear().range([0, width]); | |
let y = d3.scaleLinear().range([height-1,0]); | |
let color = d3.scaleOrdinal(d3.schemeCategory20); | |
let stack = d3.stack(); | |
let xAxis = d3.axisBottom() | |
.scale(x) | |
.tickFormat(d3.format('d')); | |
let yAxis = d3.axisLeft() | |
.scale(y) | |
let area = d3.area() | |
.x(d => x(d.data.year)) | |
.y0(d => y(d[0])) | |
.y1(d => y(d[1])) | |
.curve(d3.curveBasis); | |
d3.json('warped-tour.json', function(error, data) { | |
let maxYearsPerformed = d3.max(data,(d) => { | |
return d.years.length; | |
}); | |
let keys = [], | |
years = [], | |
map = []; | |
for (let i = 1; i <= maxYearsPerformed; i++) { | |
keys.push(i); | |
} | |
for (let year = startYear; year <= currentYear; year++) { | |
let submap = {}; | |
submap.year = year; | |
for (let i = 1; i <= maxYearsPerformed; i++) { | |
submap[i] = 0; | |
} | |
map.push(submap); | |
years.push(year); | |
} | |
data.forEach(function(band) { | |
let yearsPerformed = band.years.length; | |
let years = band.years.forEach(function(year) { | |
map[`${year-1995}`][`${yearsPerformed}`]++; | |
}); | |
}); | |
let maxPerformers = d3.max(map, (d) => { | |
let vals = d3.keys(d).map(key => (key !== 'year' ? d[key] : 0)); | |
return d3.sum(vals); | |
}); | |
x.domain([startYear, currentYear]); | |
xAxis.tickValues(years); | |
y.domain([1,maxPerformers]); | |
color.domain(keys); | |
stack.keys(keys); | |
stack.order(d3.stackOrderNone); | |
stack.offset(d3.stackOffsetNone); | |
let stackedData = stack(map); | |
let bands = svg.selectAll('.browser') | |
.data(stackedData) | |
.enter().append('g') | |
bands.append('path') | |
.attr('class', 'area') | |
.attr('d', area) | |
.style('fill-opacity', 0.5) | |
.style('stroke', (d) => color(d.key)) | |
.style('stroke-width', '0') | |
.style('fill', (d) => color(d.key)) | |
.on('mouseover', function(d) { | |
d3.select(this) | |
.style('fill-opacity', 0.9) | |
.style('stroke-width', 2); | |
}) | |
.on('mouseout', function(d) { | |
d3.select(this) | |
.style('fill-opacity', 0.5) | |
.style('stroke-width', 0); | |
}); | |
svg.append('g') | |
.attr('class', 'x axis') | |
.attr('transform', `translate(0,${height})`) | |
.call(xAxis); | |
svg.append('g') | |
.attr('class', 'y axis') | |
.call(yAxis); | |
svg.append('g') | |
.attr('class', 'x grid') | |
.attr('transform', `translate(0,${height})`) | |
.call(xAxis.tickSize(-height)) | |
let boxWidth = 20; | |
svg.append('text') | |
.attr('x', width/2) | |
.attr('y', -14) | |
.attr('text-anchor', 'middle') | |
.text("Stacked Area Chart of Bands Performing at Vans Warped Tour, Grouped by # of Years Performed") | |
let legendContainer = svg.append('g') | |
.classed('legend', true); | |
let legend = legendContainer | |
.selectAll('g') | |
.data(keys).enter() | |
.append('g') | |
.attr('transform', (d, i) => `translate(25, ${i*(boxWidth+1)})`); | |
legend.append('rect') | |
.attr('width', boxWidth) | |
.attr('height', boxWidth) | |
.style('fill-opacity', 0.5) | |
.attr('x', x(startYear)+18) | |
.attr('y', 0) | |
.attr('fill', (d) => color(d)); | |
legend.append('text') | |
.attr('font-size', 12) | |
.attr('x', x(startYear) + boxWidth + 22) | |
.attr('y', boxWidth/2 + 4) | |
.text(d => d) | |
}); | |
</script> | |
</body> |
[ | |
{ | |
"name": "3OH!3", | |
"years": [ | |
2016 | |
] | |
}, | |
{ | |
"name": "'68", | |
"years": [ | |
2015 | |
] | |
}, | |
{ | |
"name": "5606", | |
"years": [ | |
2010 | |
] | |
}, | |
{ | |
"name": "A+ Dropouts", | |
"years": [ | |
2015 | |
] | |
}, | |
{ | |
"name": "Aaron West and the Roaring Twenties", | |
"years": [ | |
2014, | |
2015 | |
] | |
}, | |
{ | |
"name": "Abriel", | |
"years": [ | |
2009 | |
] | |
}, | |
{ | |
"name": "The Acacia Strain", | |
"years": [ | |
2011, | |
2017 | |
] | |
}, | |
{ | |
"name": "The Academy Is...", | |
"years": [ | |
2006, | |
2008 | |
] | |
}, | |
{ | |
"name": "A Day to Remember", | |
"years": [ | |
2005, | |
2008, | |
2009, | |
2011, | |
2014 | |
] | |
}, | |
{ | |
"name": "Adolescents", | |
"years": [ | |
2007, | |
2010, | |
2017 | |
] | |
}, | |
{ | |
"name": "After the Burial", | |
"years": [ | |
2012, | |
2017 | |
] | |
}, | |
{ | |
"name": "Against the Current", | |
"years": [ | |
2016 | |
] | |
}, | |
{ | |
"name": "Agent Orange", | |
"years": [ | |
2007 | |
] | |
}, | |
{ | |
"name": "Aiden", | |
"years": [ | |
2006, | |
2009 | |
] | |
}, | |
{ | |
"name": "The Alarm", | |
"years": [ | |
2017 | |
] | |
}, | |
{ | |
"name": "Alesana", | |
"years": [ | |
2007 | |
] | |
}, | |
{ | |
"name": "Alestorm", | |
"years": [ | |
2017 | |
] | |
}, | |
{ | |
"name": "Alive Like Me", | |
"years": [ | |
2015 | |
] | |
}, | |
{ | |
"name": "Alkaline Trio", | |
"years": [ | |
2002, | |
2004, | |
2007, | |
2010 | |
] | |
}, | |
{ | |
"name": "The All-American Rejects", | |
"years": [ | |
2003, | |
2005, | |
2010 | |
] | |
}, | |
{ | |
"name": "All That Remains", | |
"years": [ | |
2008 | |
] | |
}, | |
{ | |
"name": "All Time Low", | |
"years": [ | |
2007, | |
2008, | |
2009, | |
2012 | |
] | |
}, | |
{ | |
"name": "Allister", | |
"years": [ | |
2002, | |
2004, | |
2005 | |
] | |
}, | |
{ | |
"name": "Allstar Weekend", | |
"years": [ | |
2013 | |
] | |
}, | |
{ | |
"name": "The Almost", | |
"years": [ | |
2007 | |
] | |
}, | |
{ | |
"name": "Alvarez Kings", | |
"years": [ | |
2013, | |
2015 | |
] | |
}, | |
{ | |
"name": "AM Taxi", | |
"years": [ | |
2011 | |
] | |
}, | |
{ | |
"name": "Amazing Royal Crowns", | |
"years": [ | |
1998 | |
] | |
}, | |
{ | |
"name": "Amber Pacific", | |
"years": [ | |
2004, | |
2005, | |
2006, | |
2007 | |
] | |
}, | |
{ | |
"name": "Amely", | |
"years": [ | |
2009 | |
] | |
}, | |
{ | |
"name": "American Authors", | |
"years": [ | |
2016, | |
2017 | |
] | |
}, | |
{ | |
"name": "American Opera", | |
"years": [ | |
2015 | |
] | |
}, | |
{ | |
"name": "American Pinup", | |
"years": [ | |
2014 | |
] | |
}, | |
{ | |
"name": "American Sixgun", | |
"years": [ | |
2010 | |
] | |
}, | |
{ | |
"name": "The Amity Affliction", | |
"years": [ | |
2013, | |
2015 | |
] | |
}, | |
{ | |
"name": "Amory", | |
"years": [ | |
2006 | |
] | |
}, | |
{ | |
"name": "Amplify This", | |
"years": [ | |
2009 | |
] | |
}, | |
{ | |
"name": "Amyst", | |
"years": [ | |
2012 | |
] | |
}, | |
{ | |
"name": "A.N.I.M.A.L.", | |
"years": [ | |
2000 | |
] | |
}, | |
{ | |
"name": "Anarbor", | |
"years": [ | |
2008, | |
2009, | |
2010, | |
2013 | |
] | |
}, | |
{ | |
"name": "Anberlin", | |
"years": [ | |
2007, | |
2008, | |
2014 | |
] | |
}, | |
{ | |
"name": "And I've Landed", | |
"years": [ | |
2009 | |
] | |
}, | |
{ | |
"name": "Andrew W.K.", | |
"years": [ | |
2002, | |
2003, | |
2010 | |
] | |
}, | |
{ | |
"name": "Andy Black", | |
"years": [ | |
2017 | |
] | |
}, | |
{ | |
"name": "Angels & Airwaves", | |
"years": [ | |
2008 | |
] | |
}, | |
{ | |
"name": "Angry Samoans", | |
"years": [ | |
2010 | |
] | |
}, | |
{ | |
"name": "Animo", | |
"years": [ | |
2008 | |
] | |
}, | |
{ | |
"name": "Anthony Raneri of Bayside", | |
"years": [ | |
2012, | |
2014 | |
] | |
}, | |
{ | |
"name": "Anthrophobia", | |
"years": [ | |
1999 | |
] | |
}, | |
{ | |
"name": "Anti-Flag", | |
"years": [ | |
1999, | |
2000, | |
2002, | |
2004, | |
2006, | |
2009, | |
2010, | |
2011, | |
2012, | |
2017 | |
] | |
}, | |
{ | |
"name": "Antiserum", | |
"years": [ | |
2014 | |
] | |
}, | |
{ | |
"name": "April Chase", | |
"years": [ | |
2010 | |
] | |
}, | |
{ | |
"name": "Assuming We Survive", | |
"years": [ | |
2016 | |
] | |
}, | |
{ | |
"name": "The Aquabats", | |
"years": [ | |
1998, | |
2013 | |
] | |
}, | |
{ | |
"name": "Architects", | |
"years": [ | |
2008, | |
2013 | |
] | |
}, | |
{ | |
"name": "Armor for Sleep", | |
"years": [ | |
2005, | |
2006 | |
] | |
}, | |
{ | |
"name": "The Arrogant Sons of Bitches", | |
"years": [ | |
2003, | |
2004 | |
] | |
}, | |
{ | |
"name": "Artist Vs Poet", | |
"years": [ | |
2010 | |
] | |
}, | |
{ | |
"name": "As Cities Burn", | |
"years": [ | |
2007 | |
] | |
}, | |
{ | |
"name": "Ascot Royals", | |
"years": [ | |
2015 | |
] | |
}, | |
{ | |
"name": "As I Lay Dying", | |
"years": [ | |
2007, | |
2008 | |
] | |
}, | |
{ | |
"name": "As It Is", | |
"years": [ | |
2015 | |
] | |
}, | |
{ | |
"name": "As Tall as Lions", | |
"years": [ | |
2005 | |
] | |
}, | |
{ | |
"name": "Asking Alexandria", | |
"years": [ | |
2011, | |
2015 | |
] | |
}, | |
{ | |
"name": "Assorted Jelly Beans", | |
"years": [ | |
2010 | |
] | |
}, | |
{ | |
"name": "The Ataris", | |
"years": [ | |
2001, | |
2003, | |
2005, | |
2009, | |
2013, | |
2014, | |
2017 | |
] | |
}, | |
{ | |
"name": "A Thorn for Every Heart", | |
"years": [ | |
2005 | |
] | |
}, | |
{ | |
"name": "Atmosphere", | |
"years": [ | |
2004, | |
2005 | |
] | |
}, | |
{ | |
"name": "Atomic Fireballs", | |
"years": [ | |
1998 | |
] | |
}, | |
{ | |
"name": "Atreyu", | |
"years": [ | |
2005, | |
2016 | |
] | |
}, | |
{ | |
"name": "Attack Attack!", | |
"years": [ | |
2009, | |
2010, | |
2011 | |
] | |
}, | |
{ | |
"name": "Attila", | |
"years": [ | |
2013, | |
2014, | |
2015, | |
2017 | |
] | |
}, | |
{ | |
"name": "The Audition", | |
"years": [ | |
2007 | |
] | |
}, | |
{ | |
"name": "August Burns Red", | |
"years": [ | |
2008, | |
2011, | |
2012, | |
2013, | |
2015 | |
] | |
}, | |
{ | |
"name": "Authority Zero", | |
"years": [ | |
2008 | |
] | |
}, | |
{ | |
"name": "The Automatic", | |
"years": [ | |
2007 | |
] | |
}, | |
{ | |
"name": "Automatic Love Letter", | |
"years": [ | |
2008, | |
2010 | |
] | |
}, | |
{ | |
"name": "Avail", | |
"years": [ | |
2000 | |
] | |
}, | |
{ | |
"name": "Avenged Sevenfold", | |
"years": [ | |
2002, | |
2003, | |
2004, | |
2005, | |
2007 | |
] | |
}, | |
{ | |
"name": "Avion Roe", | |
"years": [ | |
2016 | |
] | |
}, | |
{ | |
"name": "A Wilhelm Scream", | |
"years": [ | |
2004, | |
2005 | |
] | |
}, | |
{ | |
"name": "Baby Baby", | |
"years": [ | |
2015 | |
] | |
}, | |
{ | |
"name": "Bad Cop / Bad Cop", | |
"years": [ | |
2015, | |
2017 | |
] | |
}, | |
{ | |
"name": "Bad Rabbits", | |
"years": [ | |
2011, | |
2014 | |
] | |
}, | |
{ | |
"name": "Bad Religion", | |
"years": [ | |
1997, | |
1998, | |
2002, | |
2004, | |
2007, | |
2009 | |
] | |
}, | |
{ | |
"name": "Bad Omens", | |
"years": [ | |
2017 | |
] | |
}, | |
{ | |
"name": "Bad Seed Rising", | |
"years": [ | |
2016, | |
2017 | |
] | |
}, | |
{ | |
"name": "The Ballroom Charades", | |
"years": [ | |
2016 | |
] | |
}, | |
{ | |
"name": "Ballyhoo!", | |
"years": [ | |
2012, | |
2016 | |
] | |
}, | |
{ | |
"name": "Bangups", | |
"years": [ | |
2012, | |
2013 | |
] | |
}, | |
{ | |
"name": "Barb Wire Dolls", | |
"years": [ | |
2017 | |
] | |
}, | |
{ | |
"name": "Bayside", | |
"years": [ | |
2006, | |
2007, | |
2009, | |
2012 | |
] | |
}, | |
{ | |
"name": "Beacher's Madhouse", | |
"years": [ | |
2010 | |
] | |
}, | |
{ | |
"name": "Beartooth", | |
"years": [ | |
2014, | |
2015, | |
2017 | |
] | |
}, | |
{ | |
"name": "Beatsteaks", | |
"years": [ | |
2000 | |
] | |
}, | |
{ | |
"name": "Beat Union", | |
"years": [ | |
2008 | |
] | |
}, | |
{ | |
"name": "Beautiful Bodies", | |
"years": [ | |
2013, | |
2015 | |
] | |
}, | |
{ | |
"name": "Bebe Rexha", | |
"years": [ | |
2015 | |
] | |
}, | |
{ | |
"name": "Beck", | |
"years": [ | |
1996 | |
] | |
}, | |
{ | |
"name": "Bedouin Soundclash", | |
"years": [ | |
2005, | |
2008 | |
] | |
}, | |
{ | |
"name": "Beebs and Her Money Makers", | |
"years": [ | |
2013, | |
2014 | |
] | |
}, | |
{ | |
"name": "Being As An Ocean", | |
"years": [ | |
2015, | |
2017 | |
] | |
}, | |
{ | |
"name": "Between the Trees", | |
"years": [ | |
2008 | |
] | |
}, | |
{ | |
"name": "Beware Of Darkness", | |
"years": [ | |
2013 | |
] | |
}, | |
{ | |
"name": "Be Your Own Pet", | |
"years": [ | |
2008 | |
] | |
}, | |
{ | |
"name": "Bif Naked", | |
"years": [ | |
2000 | |
] | |
}, | |
{ | |
"name": "Biffy Clyro", | |
"years": [ | |
2007 | |
] | |
}, | |
{ | |
"name": "Big B", | |
"years": [ | |
2011 | |
] | |
}, | |
{ | |
"name": "Big Chocolate", | |
"years": [ | |
2011, | |
2013 | |
] | |
}, | |
{ | |
"name": "Big D and the Kids Table", | |
"years": [ | |
2005, | |
2007, | |
2009, | |
2010, | |
2011, | |
2013, | |
2017 | |
] | |
}, | |
{ | |
"name": "Big Drill Car", | |
"years": [ | |
2008, | |
2009 | |
] | |
}, | |
{ | |
"name": "Bi-Level", | |
"years": [ | |
2003 | |
] | |
}, | |
{ | |
"name": "Billy Idol", | |
"years": [ | |
2005 | |
] | |
}, | |
{ | |
"name": "Billy Talent", | |
"years": [ | |
2004, | |
2005, | |
2006, | |
2013 | |
] | |
}, | |
{ | |
"name": "Black Boots", | |
"years": [ | |
2015 | |
] | |
}, | |
{ | |
"name": "Black Box", | |
"years": [ | |
2009 | |
] | |
}, | |
{ | |
"name": "The Black Dahlia Murder", | |
"years": [ | |
2013 | |
] | |
}, | |
{ | |
"name": "The Black Eyed Peas", | |
"years": [ | |
1999 | |
] | |
}, | |
{ | |
"name": "Blackfire", | |
"years": [ | |
2003 | |
] | |
}, | |
{ | |
"name": "The Black Pacific", | |
"years": [ | |
2011 | |
] | |
}, | |
{ | |
"name": "Black Square", | |
"years": [ | |
2011 | |
] | |
}, | |
{ | |
"name": "Black Tide", | |
"years": [ | |
2009 | |
] | |
}, | |
{ | |
"name": "Blacklist Royals", | |
"years": [ | |
2006, | |
2007, | |
2011 | |
] | |
}, | |
{ | |
"name": "Black President", | |
"years": [ | |
2008 | |
] | |
}, | |
{ | |
"name": "Black Veil Brides", | |
"years": [ | |
2011, | |
2013, | |
2015 | |
] | |
}, | |
{ | |
"name": "Blasé Debris", | |
"years": [ | |
2008 | |
] | |
}, | |
{ | |
"name": "The Bled", | |
"years": [ | |
2004, | |
2005, | |
2006 | |
] | |
}, | |
{ | |
"name": "The Bleeding Irish", | |
"years": [ | |
2008 | |
] | |
}, | |
{ | |
"name": "Bleeding Orange", | |
"years": [ | |
2006 | |
] | |
}, | |
{ | |
"name": "Bleeding Through", | |
"years": [ | |
2005 | |
] | |
}, | |
{ | |
"name": "Bleed the Dream", | |
"years": [ | |
2003, | |
2004, | |
2005, | |
2007 | |
] | |
}, | |
{ | |
"name": "Blessthefall", | |
"years": [ | |
2007, | |
2012, | |
2013, | |
2015, | |
2017 | |
] | |
}, | |
{ | |
"name": "Blink-182", | |
"years": [ | |
1996, | |
1997, | |
1999, | |
2001 | |
] | |
}, | |
{ | |
"name": "Blood on the Dance Floor", | |
"years": [ | |
2011, | |
2012 | |
] | |
}, | |
{ | |
"name": "Bombay Cowtippers", | |
"years": [ | |
1999 | |
] | |
}, | |
{ | |
"name": "Born Cages", | |
"years": [ | |
2015 | |
] | |
}, | |
{ | |
"name": "Born of Osiris", | |
"years": [ | |
2012, | |
2014 | |
] | |
}, | |
{ | |
"name": "Boston Manor", | |
"years": [ | |
2017 | |
] | |
}, | |
{ | |
"name": "The BOTS", | |
"years": [ | |
2010, | |
2011 | |
] | |
}, | |
{ | |
"name": "Bouncing Souls", | |
"years": [ | |
1999, | |
2001, | |
2004, | |
2006, | |
2008, | |
2009 | |
] | |
}, | |
{ | |
"name": "Bowling for Soup", | |
"years": [ | |
2003, | |
2004, | |
2005, | |
2011, | |
2013, | |
2014, | |
2017 | |
] | |
}, | |
{ | |
"name": "Box Car Racer", | |
"years": [ | |
2002 | |
] | |
}, | |
{ | |
"name": "BoyMeetsWorld", | |
"years": [ | |
2015 | |
] | |
}, | |
{ | |
"name": "Boysetsfire", | |
"years": [ | |
2002, | |
2006 | |
] | |
}, | |
{ | |
"name": "Boys Like Girls", | |
"years": [ | |
2007 | |
] | |
}, | |
{ | |
"name": "Boys Night Out", | |
"years": [ | |
2005 | |
] | |
}, | |
{ | |
"name": "Brand New", | |
"years": [ | |
2003 | |
] | |
}, | |
{ | |
"name": "Brass Tackz", | |
"years": [ | |
2010 | |
] | |
}, | |
{ | |
"name": "Breathe Carolina", | |
"years": [ | |
2009, | |
2010, | |
2012, | |
2014 | |
] | |
}, | |
{ | |
"name": "Breathe Electric", | |
"years": [ | |
2009, | |
2010 | |
] | |
}, | |
{ | |
"name": "Brian Marquis", | |
"years": [ | |
2012, | |
2013, | |
2015 | |
] | |
}, | |
{ | |
"name": "Britt Black", | |
"years": [ | |
2006 | |
] | |
}, | |
{ | |
"name": "The Briggs", | |
"years": [ | |
2007, | |
2008 | |
] | |
}, | |
{ | |
"name": "Bring Me The Horizon", | |
"years": [ | |
2008, | |
2010, | |
2013 | |
] | |
}, | |
{ | |
"name": "Broadway Calls", | |
"years": [ | |
2008 | |
] | |
}, | |
{ | |
"name": "Broadside", | |
"years": [ | |
2016 | |
] | |
}, | |
{ | |
"name": "BrokeNCYDE", | |
"years": [ | |
2009 | |
] | |
}, | |
{ | |
"name": "The Bronx", | |
"years": [ | |
2008 | |
] | |
}, | |
{ | |
"name": "Brothers Of Brazil", | |
"years": [ | |
2011 | |
] | |
}, | |
{ | |
"name": "Buck-O-Nine", | |
"years": [ | |
1999, | |
2007 | |
] | |
}, | |
{ | |
"name": "Buffalo Casket", | |
"years": [ | |
2008 | |
] | |
}, | |
{ | |
"name": "Bullet For My Valentine", | |
"years": [ | |
2006, | |
2016 | |
] | |
}, | |
{ | |
"name": "The Bunny The Bear", | |
"years": [ | |
2015 | |
] | |
}, | |
{ | |
"name": "Burning Empires", | |
"years": [ | |
2010 | |
] | |
}, | |
{ | |
"name": "Buttons", | |
"years": [ | |
2015 | |
] | |
}, | |
{ | |
"name": "Call the Cops", | |
"years": [ | |
2010 | |
] | |
}, | |
{ | |
"name": "Callback California", | |
"years": [ | |
2010 | |
] | |
}, | |
{ | |
"name": "Campaigning For Zeros", | |
"years": [ | |
2011 | |
] | |
}, | |
{ | |
"name": "Candiria", | |
"years": [ | |
2017 | |
] | |
}, | |
{ | |
"name": "Candy Hearts", | |
"years": [ | |
2015 | |
] | |
}, | |
{ | |
"name": "Cane Hill", | |
"years": [ | |
2016 | |
] | |
}, | |
{ | |
"name": "Capsize", | |
"years": [ | |
2016 | |
] | |
}, | |
{ | |
"name": "Captain Capa", | |
"years": [ | |
2012, | |
2014 | |
] | |
}, | |
{ | |
"name": "Carnifex", | |
"years": [ | |
2017 | |
] | |
}, | |
{ | |
"name": "Carousel Kings", | |
"years": [ | |
2015, | |
2017 | |
] | |
}, | |
{ | |
"name": "Cartel", | |
"years": [ | |
2005, | |
2006 | |
] | |
}, | |
{ | |
"name": "Casket Architects", | |
"years": [ | |
2008 | |
] | |
}, | |
{ | |
"name": "The Casualties", | |
"years": [ | |
2002, | |
2004, | |
2006, | |
2010 | |
] | |
}, | |
{ | |
"name": "CatchingYourClouds", | |
"years": [ | |
2012 | |
] | |
}, | |
{ | |
"name": "Champagne Champagne", | |
"years": [ | |
2012 | |
] | |
}, | |
{ | |
"name": "Charged GBH", | |
"years": [ | |
2008 | |
] | |
}, | |
{ | |
"name": "The Chariot", | |
"years": [ | |
2007, | |
2013 | |
] | |
}, | |
{ | |
"name": "Charlotte Sometimes", | |
"years": [ | |
2008 | |
] | |
}, | |
{ | |
"name": "Chase Long Beach", | |
"years": [ | |
2010 | |
] | |
}, | |
{ | |
"name": "Chase Walker Band", | |
"years": [ | |
2013, | |
2014 | |
] | |
}, | |
{ | |
"name": "Chelsea Grin", | |
"years": [ | |
2012, | |
2014, | |
2016 | |
] | |
}, | |
{ | |
"name": "Cherri Bomb", | |
"years": [ | |
2012 | |
] | |
}, | |
{ | |
"name": "Cherry Poppin' Daddies", | |
"years": [ | |
1998 | |
] | |
}, | |
{ | |
"name": "Chiodos", | |
"years": [ | |
2006, | |
2007, | |
2008, | |
2009, | |
2012, | |
2013 | |
] | |
}, | |
{ | |
"name": "The Chop Tops", | |
"years": [ | |
2005, | |
2006 | |
] | |
}, | |
{ | |
"name": "Chuck Ragan of Hot Water Music", | |
"years": [ | |
2012 | |
] | |
}, | |
{ | |
"name": "Chunk! No, Captain Chunk", | |
"years": [ | |
2012, | |
2014, | |
2016 | |
] | |
}, | |
{ | |
"name": "ChrisB", | |
"years": [ | |
2015 | |
] | |
}, | |
{ | |
"name": "Cinder Road", | |
"years": [ | |
2008 | |
] | |
}, | |
{ | |
"name": "Cinematic Sunrise", | |
"years": [ | |
2007, | |
2008 | |
] | |
}, | |
{ | |
"name": "Circa Survive", | |
"years": [ | |
2005, | |
2007 | |
] | |
}, | |
{ | |
"name": "Circle Jerks", | |
"years": [ | |
2007 | |
] | |
}, | |
{ | |
"name": "Citizen", | |
"years": [ | |
2006, | |
2013, | |
2015 | |
] | |
}, | |
{ | |
"name": "Citizen X", | |
"years": [ | |
2008 | |
] | |
}, | |
{ | |
"name": "CIV", | |
"years": [ | |
1995, | |
1996, | |
1998 | |
] | |
}, | |
{ | |
"name": "TheCityShakeUp", | |
"years": [ | |
2013, | |
2014 | |
] | |
}, | |
{ | |
"name": "CKY", | |
"years": [ | |
1999, | |
2000, | |
2017 | |
] | |
}, | |
{ | |
"name": "The Classic Crime", | |
"years": [ | |
2008 | |
] | |
}, | |
{ | |
"name": "The Cleopatra Complex", | |
"years": [ | |
2013 | |
] | |
}, | |
{ | |
"name": "Close Your Eyes", | |
"years": [ | |
2014 | |
] | |
}, | |
{ | |
"name": "Closure in Moscow", | |
"years": [ | |
2010 | |
] | |
}, | |
{ | |
"name": "Cobra Starship", | |
"years": [ | |
2008 | |
] | |
}, | |
{ | |
"name": "Coheed and Cambria", | |
"years": [ | |
2003, | |
2004, | |
2007 | |
] | |
}, | |
{ | |
"name": "Coldrain", | |
"years": [ | |
2016 | |
] | |
}, | |
{ | |
"name": "Cold Forty Three", | |
"years": [ | |
2011, | |
2012 | |
] | |
}, | |
{ | |
"name": "Cold Fusion", | |
"years": [ | |
2008 | |
] | |
}, | |
{ | |
"name": "The Color Fred", | |
"years": [ | |
2008 | |
] | |
}, | |
{ | |
"name": "The Color Morale", | |
"years": [ | |
2014, | |
2016 | |
] | |
}, | |
{ | |
"name": "Columbyne", | |
"years": [ | |
2010, | |
2011 | |
] | |
}, | |
{ | |
"name": "The Confession", | |
"years": [ | |
2007 | |
] | |
}, | |
{ | |
"name": "Confide", | |
"years": [ | |
2008, | |
2010 | |
] | |
}, | |
{ | |
"name": "Continental", | |
"years": [ | |
2011 | |
] | |
}, | |
{ | |
"name": "The Constellations", | |
"years": [ | |
2012 | |
] | |
}, | |
{ | |
"name": "Counterparts", | |
"years": [ | |
2017 | |
] | |
}, | |
{ | |
"name": "Courage My Love", | |
"years": [ | |
2013, | |
2014, | |
2017 | |
] | |
}, | |
{ | |
"name": "Corrin Campbell", | |
"years": [ | |
2015 | |
] | |
}, | |
{ | |
"name": "Crashcarburn", | |
"years": [ | |
2008 | |
] | |
}, | |
{ | |
"name": "Creeper", | |
"years": [ | |
2017 | |
] | |
}, | |
{ | |
"name": "Crime in Stereo", | |
"years": [ | |
2008 | |
] | |
}, | |
{ | |
"name": "Crizzly", | |
"years": [ | |
2013, | |
2014 | |
] | |
}, | |
{ | |
"name": "Crossfaith", | |
"years": [ | |
2013, | |
2015 | |
] | |
}, | |
{ | |
"name": "Crown the Empire", | |
"years": [ | |
2013, | |
2014, | |
2016 | |
] | |
}, | |
{ | |
"name": "Crowned King", | |
"years": [ | |
2007 | |
] | |
}, | |
{ | |
"name": "Cruel Hand", | |
"years": [ | |
2016 | |
] | |
}, | |
{ | |
"name": "Culture Shock Camp", | |
"years": [ | |
2008 | |
] | |
}, | |
{ | |
"name": "Cursed Sails", | |
"years": [ | |
2014 | |
] | |
}, | |
{ | |
"name": "Cute Is What We Aim For", | |
"years": [ | |
2007, | |
2014 | |
] | |
}, | |
{ | |
"name": "D12", | |
"years": [ | |
2001 | |
] | |
}, | |
{ | |
"name": "The Damned", | |
"years": [ | |
2002 | |
] | |
}, | |
{ | |
"name": "Dance Gavin Dance", | |
"years": [ | |
2009, | |
2011, | |
2017 | |
] | |
}, | |
{ | |
"name": "Dance Hall Crashers", | |
"years": [ | |
1996 | |
] | |
}, | |
{ | |
"name": "The Dance Party", | |
"years": [ | |
2011 | |
] | |
}, | |
{ | |
"name": "Dangerkids", | |
"years": [ | |
2014 | |
] | |
}, | |
{ | |
"name": "Danger Radio", | |
"years": [ | |
2008 | |
] | |
}, | |
{ | |
"name": "The Dangerous Summer", | |
"years": [ | |
2011 | |
] | |
}, | |
{ | |
"name": "Danielle Barbe", | |
"years": [ | |
2012 | |
] | |
}, | |
{ | |
"name": "Dante", | |
"years": [ | |
2008 | |
] | |
}, | |
{ | |
"name": "Darkest Hour", | |
"years": [ | |
2005 | |
] | |
}, | |
{ | |
"name": "The Darlings", | |
"years": [ | |
2012 | |
] | |
}, | |
{ | |
"name": "Dash | Ten", | |
"years": [ | |
2016 | |
] | |
}, | |
{ | |
"name": "DC Fallout", | |
"years": [ | |
2011 | |
] | |
}, | |
{ | |
"name": "Dead Cat Lounge", | |
"years": [ | |
2011 | |
] | |
}, | |
{ | |
"name": "Dead Legend", | |
"years": [ | |
2008 | |
] | |
}, | |
{ | |
"name": "Dead Sara", | |
"years": [ | |
2012 | |
] | |
}, | |
{ | |
"name": "The Dear & Departed", | |
"years": [ | |
2007 | |
] | |
}, | |
{ | |
"name": "Dear and the Headlights", | |
"years": [ | |
2009 | |
] | |
}, | |
{ | |
"name": "Defeater", | |
"years": [ | |
2013 | |
] | |
}, | |
{ | |
"name": "Deftones", | |
"years": [ | |
1995, | |
1996, | |
1998 | |
] | |
}, | |
{ | |
"name": "Demerit", | |
"years": [ | |
2011 | |
] | |
}, | |
{ | |
"name": "Descendents", | |
"years": [ | |
1997 | |
] | |
}, | |
{ | |
"name": "Deviates", | |
"years": [ | |
2000, | |
2001, | |
2002 | |
] | |
}, | |
{ | |
"name": "The Devil Wears Prada", | |
"years": [ | |
2008, | |
2009, | |
2011, | |
2014 | |
] | |
}, | |
{ | |
"name": "Desperation Squad", | |
"years": [ | |
2007 | |
] | |
}, | |
{ | |
"name": "D.I.", | |
"years": [ | |
2008 | |
] | |
}, | |
{ | |
"name": "Dick Dale", | |
"years": [ | |
1996 | |
] | |
}, | |
{ | |
"name": "The Dickies", | |
"years": [ | |
2007, | |
2008, | |
2009, | |
2010, | |
2017 | |
] | |
}, | |
{ | |
"name": "Die' Hunns", | |
"years": [ | |
2006 | |
] | |
}, | |
{ | |
"name": "Die Toten Hosen", | |
"years": [ | |
1998 | |
] | |
}, | |
{ | |
"name": "The Dillinger Escape Plan", | |
"years": [ | |
2005, | |
2008, | |
2010 | |
] | |
}, | |
{ | |
"name": "The Dirty Nil", | |
"years": [ | |
2015 | |
] | |
}, | |
{ | |
"name": "Disco Ensemble", | |
"years": [ | |
2008 | |
] | |
}, | |
{ | |
"name": "District 7", | |
"years": [ | |
2002 | |
] | |
}, | |
{ | |
"name": "Divided By Friday", | |
"years": [ | |
2012 | |
] | |
}, | |
{ | |
"name": "DJ Nicola Bear", | |
"years": [ | |
2014 | |
] | |
}, | |
{ | |
"name": "DJ Scout", | |
"years": [ | |
2014 | |
] | |
}, | |
{ | |
"name": "Dodger", | |
"years": [ | |
2008 | |
] | |
}, | |
{ | |
"name": "Does It Offend You, Yeah?", | |
"years": [ | |
2008 | |
] | |
}, | |
{ | |
"name": "Doll Skin", | |
"years": [ | |
2017 | |
] | |
}, | |
{ | |
"name": "Doozer", | |
"years": [ | |
2003 | |
] | |
}, | |
{ | |
"name": "Double XL", | |
"years": [ | |
2007 | |
] | |
}, | |
{ | |
"name": "Down by Law", | |
"years": [ | |
1996 | |
] | |
}, | |
{ | |
"name": "Drama Club", | |
"years": [ | |
2015 | |
] | |
}, | |
{ | |
"name": "Dr. Madd Vibe", | |
"years": [ | |
2006 | |
] | |
}, | |
{ | |
"name": "Dr. Manhattan", | |
"years": [ | |
2008 | |
] | |
}, | |
{ | |
"name": "Drive A", | |
"years": [ | |
2008 | |
] | |
}, | |
{ | |
"name": "Driver Friendly", | |
"years": [ | |
2013 | |
] | |
}, | |
{ | |
"name": "Drop Dead, Gorgeous", | |
"years": [ | |
2007 | |
] | |
}, | |
{ | |
"name": "Dropkick Murphys", | |
"years": [ | |
1999, | |
2001, | |
2003, | |
2005, | |
2010 | |
] | |
}, | |
{ | |
"name": "D.R.U.G.S.", | |
"years": [ | |
2011 | |
] | |
}, | |
{ | |
"name": "Dose Of Adolescence", | |
"years": [ | |
2013 | |
] | |
}, | |
{ | |
"name": "The Dukes", | |
"years": [ | |
2017 | |
] | |
}, | |
{ | |
"name": "Dustin Jones and the Rising Tide", | |
"years": [ | |
2012 | |
] | |
}, | |
{ | |
"name": "The Early November", | |
"years": [ | |
2002, | |
2003, | |
2004, | |
2006, | |
2013 | |
] | |
}, | |
{ | |
"name": "Echo Movement", | |
"years": [ | |
2012 | |
] | |
}, | |
{ | |
"name": "Echosmith", | |
"years": [ | |
2013, | |
2014 | |
] | |
}, | |
{ | |
"name": "Eden Row", | |
"years": [ | |
2004 | |
] | |
}, | |
{ | |
"name": "Edreys", | |
"years": [ | |
2008 | |
] | |
}, | |
{ | |
"name": "Eighteen Visions", | |
"years": [ | |
2004 | |
] | |
}, | |
{ | |
"name": "Eightyonedays", | |
"years": [ | |
2004 | |
] | |
}, | |
{ | |
"name": "Electric Touch", | |
"years": [ | |
2011 | |
] | |
}, | |
{ | |
"name": "Eli Olsberg", | |
"years": [ | |
2015 | |
] | |
}, | |
{ | |
"name": "Emarosa", | |
"years": [ | |
2010, | |
2015, | |
2016 | |
] | |
}, | |
{ | |
"name": "Emery", | |
"years": [ | |
2005, | |
2006 | |
] | |
}, | |
{ | |
"name": "Emilie Autumn", | |
"years": [ | |
2014 | |
] | |
}, | |
{ | |
"name": "Emily's Army", | |
"years": [ | |
2012, | |
2013 | |
] | |
}, | |
{ | |
"name": "Eminem", | |
"years": [ | |
1999 | |
] | |
}, | |
{ | |
"name": "Emmure", | |
"years": [ | |
2009, | |
2010, | |
2017 | |
] | |
}, | |
{ | |
"name": "Enough Already", | |
"years": [ | |
2016 | |
] | |
}, | |
{ | |
"name": "Enter Shikari", | |
"years": [ | |
2010, | |
2011, | |
2014 | |
] | |
}, | |
{ | |
"name": "Entice", | |
"years": [ | |
2008 | |
] | |
}, | |
{ | |
"name": "Envy On The Coast", | |
"years": [ | |
2007 | |
] | |
}, | |
{ | |
"name": "Escape The Fate", | |
"years": [ | |
2006, | |
2007, | |
2009, | |
2015 | |
] | |
}, | |
{ | |
"name": "Esham", | |
"years": [ | |
2001 | |
] | |
}, | |
{ | |
"name": "Eternal Boy", | |
"years": [ | |
2017 | |
] | |
}, | |
{ | |
"name": "Evaline", | |
"years": [ | |
2007 | |
] | |
}, | |
{ | |
"name": "Evelynn", | |
"years": [ | |
2011 | |
] | |
}, | |
{ | |
"name": "Evergreen Terrace", | |
"years": [ | |
2007 | |
] | |
}, | |
{ | |
"name": "Every Avenue", | |
"years": [ | |
2008, | |
2009, | |
2011 | |
] | |
}, | |
{ | |
"name": "Every Time I Die", | |
"years": [ | |
2002, | |
2006, | |
2008, | |
2010, | |
2012, | |
2014, | |
2016 | |
] | |
}, | |
{ | |
"name": "The Expendables", | |
"years": [ | |
2011 | |
] | |
}, | |
{ | |
"name": "The Exposed", | |
"years": [ | |
2011, | |
2013 | |
] | |
}, | |
{ | |
"name": "Eyes Set To Kill", | |
"years": [ | |
2010, | |
2011 | |
] | |
}, | |
{ | |
"name": "The Fabulous Rudies", | |
"years": [ | |
2005, | |
2006, | |
2007, | |
2010 | |
] | |
}, | |
{ | |
"name": "Face to Face", | |
"years": [ | |
1995, | |
1996, | |
2003, | |
2010 | |
] | |
}, | |
{ | |
"name": "Face The King", | |
"years": [ | |
2014 | |
] | |
}, | |
{ | |
"name": "Fall From Grace", | |
"years": [ | |
2008 | |
] | |
}, | |
{ | |
"name": "The Fall of Troy", | |
"years": [ | |
2005 | |
] | |
}, | |
{ | |
"name": "Fall Out Boy", | |
"years": [ | |
2004, | |
2005 | |
] | |
}, | |
{ | |
"name": "Falling In Reverse", | |
"years": [ | |
2011, | |
2012, | |
2014, | |
2016, | |
2017 | |
] | |
}, | |
{ | |
"name": "Falling Through April", | |
"years": [ | |
2014, | |
2015 | |
] | |
}, | |
{ | |
"name": "False Puppet", | |
"years": [ | |
2015 | |
] | |
}, | |
{ | |
"name": "Family Force 5", | |
"years": [ | |
2007, | |
2008, | |
2011, | |
2015 | |
] | |
}, | |
{ | |
"name": "The Fantastic Plastics", | |
"years": [ | |
2017 | |
] | |
}, | |
{ | |
"name": "Farewell", | |
"years": [ | |
2008 | |
] | |
}, | |
{ | |
"name": "Farewell Winters", | |
"years": [ | |
2017 | |
] | |
}, | |
{ | |
"name": "Fear", | |
"years": [ | |
2001, | |
2007, | |
2008 | |
] | |
}, | |
{ | |
"name": "Fear Before the March of Flames", | |
"years": [ | |
2004 | |
] | |
}, | |
{ | |
"name": "Fear Nuttin' Band", | |
"years": [ | |
2008 | |
] | |
}, | |
{ | |
"name": "Feeki", | |
"years": [ | |
2017 | |
] | |
}, | |
{ | |
"name": "Fenix TX", | |
"years": [ | |
2001 | |
] | |
}, | |
{ | |
"name": "The Figgs", | |
"years": [ | |
1996 | |
] | |
}, | |
{ | |
"name": "The Fight", | |
"years": [ | |
2005 | |
] | |
}, | |
{ | |
"name": "Fight Fair", | |
"years": [ | |
2010 | |
] | |
}, | |
{ | |
"name": "Fight Fight Fight", | |
"years": [ | |
2008 | |
] | |
}, | |
{ | |
"name": "The Fighting Jacks", | |
"years": [ | |
2004 | |
] | |
}, | |
{ | |
"name": "Final Summation", | |
"years": [ | |
2005 | |
] | |
}, | |
{ | |
"name": "Finch", | |
"years": [ | |
2002, | |
2014 | |
] | |
}, | |
{ | |
"name": "Fire From The Gods", | |
"years": [ | |
2017 | |
] | |
}, | |
{ | |
"name": "Fireworks", | |
"years": [ | |
2012 | |
] | |
}, | |
{ | |
"name": "First To Eleven", | |
"years": [ | |
2016 | |
] | |
}, | |
{ | |
"name": "Fishbone", | |
"years": [ | |
1996, | |
2007 | |
] | |
}, | |
{ | |
"name": "Fit For a King", | |
"years": [ | |
2014, | |
2015, | |
2017 | |
] | |
}, | |
{ | |
"name": "Five Iron Frenzy", | |
"years": [ | |
2002 | |
] | |
}, | |
{ | |
"name": "Five Knives", | |
"years": [ | |
2013 | |
] | |
}, | |
{ | |
"name": "The F-Ups", | |
"years": [ | |
2004 | |
] | |
}, | |
{ | |
"name": "The Flatliners", | |
"years": [ | |
2006, | |
2007, | |
2008, | |
2009, | |
2010 | |
] | |
}, | |
{ | |
"name": "Flogging Molly", | |
"years": [ | |
2000, | |
2001, | |
2002, | |
2003, | |
2004, | |
2007, | |
2009 | |
] | |
}, | |
{ | |
"name": "Florence", | |
"years": [ | |
2006 | |
] | |
}, | |
{ | |
"name": "Fluf", | |
"years": [ | |
1995, | |
1996 | |
] | |
}, | |
{ | |
"name": "The Fold", | |
"years": [ | |
2007, | |
2011 | |
] | |
}, | |
{ | |
"name": "For All Those Sleeping", | |
"years": [ | |
2014 | |
] | |
}, | |
{ | |
"name": "For The Foxes", | |
"years": [ | |
2013 | |
] | |
}, | |
{ | |
"name": "Forever Came Calling", | |
"years": [ | |
2010, | |
2013 | |
] | |
}, | |
{ | |
"name": "Forever The Sickest Kids", | |
"years": [ | |
2007, | |
2008, | |
2010, | |
2013 | |
] | |
}, | |
{ | |
"name": "Forget Me In Vegas", | |
"years": [ | |
2011 | |
] | |
}, | |
{ | |
"name": "Four Year Strong", | |
"years": [ | |
2008, | |
2012, | |
2014, | |
2015, | |
2016 | |
] | |
}, | |
{ | |
"name": "Foxy Shazam", | |
"years": [ | |
2011 | |
] | |
}, | |
{ | |
"name": "Freshman 15", | |
"years": [ | |
2011 | |
] | |
}, | |
{ | |
"name": "From Ashes To New", | |
"years": [ | |
2016 | |
] | |
}, | |
{ | |
"name": "From Autumn to Ashes", | |
"years": [ | |
2002, | |
2003, | |
2004, | |
2006 | |
] | |
}, | |
{ | |
"name": "From First to Last", | |
"years": [ | |
2004, | |
2005, | |
2006, | |
2008 | |
] | |
}, | |
{ | |
"name": "Fu Manchu", | |
"years": [ | |
1998 | |
] | |
}, | |
{ | |
"name": "Funeral for a Friend", | |
"years": [ | |
2005, | |
2007 | |
] | |
}, | |
{ | |
"name": "Funeral Party", | |
"years": [ | |
2012 | |
] | |
}, | |
{ | |
"name": "Futuristic", | |
"years": [ | |
2017 | |
] | |
}, | |
{ | |
"name": "G-Eazy", | |
"years": [ | |
2012 | |
] | |
}, | |
{ | |
"name": "Gabe Kubanda", | |
"years": [ | |
2013 | |
] | |
}, | |
{ | |
"name": "Gallows", | |
"years": [ | |
2007, | |
2009 | |
] | |
}, | |
{ | |
"name": "Gaslight Anthem", | |
"years": [ | |
2008 | |
] | |
}, | |
{ | |
"name": "Gatsby's American Dream", | |
"years": [ | |
2005, | |
2006, | |
2011 | |
] | |
}, | |
{ | |
"name": "GBH", | |
"years": [ | |
2008 | |
] | |
}, | |
{ | |
"name": "Germs", | |
"years": [ | |
2006, | |
2008 | |
] | |
}, | |
{ | |
"name": "Get Scared", | |
"years": [ | |
2014 | |
] | |
}, | |
{ | |
"name": "The Get Up Kids", | |
"years": [ | |
1998 | |
] | |
}, | |
{ | |
"name": "The Ghost Inside", | |
"years": [ | |
2012, | |
2014 | |
] | |
}, | |
{ | |
"name": "Ghost Town", | |
"years": [ | |
2014, | |
2016 | |
] | |
}, | |
{ | |
"name": "Gideon", | |
"years": [ | |
2016 | |
] | |
}, | |
{ | |
"name": "Gil Mantera's Party Dream", | |
"years": [ | |
2008 | |
] | |
}, | |
{ | |
"name": "The Gilligans", | |
"years": [ | |
2002 | |
] | |
}, | |
{ | |
"name": "Gin Wigmore", | |
"years": [ | |
2013 | |
] | |
}, | |
{ | |
"name": "Glassjaw", | |
"years": [ | |
2002, | |
2003 | |
] | |
}, | |
{ | |
"name": "Go Crash Audio", | |
"years": [ | |
2007 | |
] | |
}, | |
{ | |
"name": "Go Jimmy Go", | |
"years": [ | |
2004 | |
] | |
}, | |
{ | |
"name": "Go Radio", | |
"years": [ | |
2011, | |
2013 | |
] | |
}, | |
{ | |
"name": "Gob", | |
"years": [ | |
2000, | |
2002 | |
] | |
}, | |
{ | |
"name": "Godsmack", | |
"years": [ | |
1998 | |
] | |
}, | |
{ | |
"name": "Gogol Bordello", | |
"years": [ | |
2004 | |
] | |
}, | |
{ | |
"name": "Going Second", | |
"years": [ | |
2004, | |
2005 | |
] | |
}, | |
{ | |
"name": "Goldfinger", | |
"years": [ | |
2002, | |
2013, | |
2017 | |
] | |
}, | |
{ | |
"name": "Goldhouse", | |
"years": [ | |
2013 | |
] | |
}, | |
{ | |
"name": "Good Charlotte", | |
"years": [ | |
2001, | |
2002, | |
2004, | |
2016 | |
] | |
}, | |
{ | |
"name": "Good Guys In Black", | |
"years": [ | |
2011 | |
] | |
}, | |
{ | |
"name": "Good Riddance", | |
"years": [ | |
2000 | |
] | |
}, | |
{ | |
"name": "The Goodwill", | |
"years": [ | |
2003 | |
] | |
}, | |
{ | |
"name": "The Gospel Youth", | |
"years": [ | |
2017 | |
] | |
}, | |
{ | |
"name": "The Graduate", | |
"years": [ | |
2006 | |
] | |
}, | |
{ | |
"name": "Gratitude", | |
"years": [ | |
2005 | |
] | |
}, | |
{ | |
"name": "Greek Fire", | |
"years": [ | |
2013 | |
] | |
}, | |
{ | |
"name": "Greeley Estates", | |
"years": [ | |
2005, | |
2006, | |
2008 | |
] | |
}, | |
{ | |
"name": "The Green", | |
"years": [ | |
2012 | |
] | |
}, | |
{ | |
"name": "Green Day", | |
"years": [ | |
2000 | |
] | |
}, | |
{ | |
"name": "Greg Wood", | |
"years": [ | |
2003 | |
] | |
}, | |
{ | |
"name": "Grey Gordon", | |
"years": [ | |
2015 | |
] | |
}, | |
{ | |
"name": "Grieves with Budo", | |
"years": [ | |
2011 | |
] | |
}, | |
{ | |
"name": "The Gufs", | |
"years": [ | |
2007 | |
] | |
}, | |
{ | |
"name": "Guttermouth", | |
"years": [ | |
2002, | |
2004, | |
2009 | |
] | |
}, | |
{ | |
"name": "Gwar", | |
"years": [ | |
2017 | |
] | |
}, | |
{ | |
"name": "Gym Class Heroes", | |
"years": [ | |
2005, | |
2006, | |
2008, | |
2011 | |
] | |
}, | |
{ | |
"name": "Hail the Sun", | |
"years": [ | |
2016 | |
] | |
}, | |
{ | |
"name": "Halifax", | |
"years": [ | |
2005 | |
] | |
}, | |
{ | |
"name": "Handguns", | |
"years": [ | |
2013, | |
2015 | |
] | |
}, | |
{ | |
"name": "Hands Like Houses", | |
"years": [ | |
2013, | |
2015, | |
2017 | |
] | |
}, | |
{ | |
"name": "Haste the Day", | |
"years": [ | |
2007 | |
] | |
}, | |
{ | |
"name": "Hatebreed", | |
"years": [ | |
1998, | |
2017 | |
] | |
}, | |
{ | |
"name": "Have Mercy", | |
"years": [ | |
2015 | |
] | |
}, | |
{ | |
"name": "Hawthorne Heights", | |
"years": [ | |
2005, | |
2007, | |
2013, | |
2017 | |
] | |
}, | |
{ | |
"name": "Heart To Heart", | |
"years": [ | |
2014 | |
] | |
}, | |
{ | |
"name": "He Is Legend", | |
"years": [ | |
2006 | |
] | |
}, | |
{ | |
"name": "Hed PE", | |
"years": [ | |
1997 | |
] | |
}, | |
{ | |
"name": "The Heirs", | |
"years": [ | |
2016 | |
] | |
}, | |
{ | |
"name": "Hello Beautiful", | |
"years": [ | |
2009 | |
] | |
}, | |
{ | |
"name": "Hellogoodbye", | |
"years": [ | |
2006, | |
2011 | |
] | |
}, | |
{ | |
"name": "Helmet", | |
"years": [ | |
2006 | |
] | |
}, | |
{ | |
"name": "Hepcat", | |
"years": [ | |
1998, | |
2000 | |
] | |
}, | |
{ | |
"name": "Heritage", | |
"years": [ | |
2013 | |
] | |
}, | |
{ | |
"name": "Hey Monday", | |
"years": [ | |
2010 | |
] | |
}, | |
{ | |
"name": "HiFi Handgrenades", | |
"years": [ | |
2008 | |
] | |
}, | |
{ | |
"name": "The Higher", | |
"years": [ | |
2008 | |
] | |
}, | |
{ | |
"name": "High School Football Heroes", | |
"years": [ | |
2003, | |
2004, | |
2005, | |
2006 | |
] | |
}, | |
{ | |
"name": "Hit the Lights", | |
"years": [ | |
2005, | |
2006, | |
2009 | |
] | |
}, | |
{ | |
"name": "Home Grown", | |
"years": [ | |
1998, | |
2002 | |
] | |
}, | |
{ | |
"name": "Honor Bright", | |
"years": [ | |
2008 | |
] | |
}, | |
{ | |
"name": "Hope", | |
"years": [ | |
2002 | |
] | |
}, | |
{ | |
"name": "Hopesfall", | |
"years": [ | |
2005 | |
] | |
}, | |
{ | |
"name": "Horrorpops", | |
"years": [ | |
2005, | |
2008 | |
] | |
}, | |
{ | |
"name": "Hostage Calm", | |
"years": [ | |
2012 | |
] | |
}, | |
{ | |
"name": "Hot Rod Circuit", | |
"years": [ | |
2007 | |
] | |
}, | |
{ | |
"name": "Hot Water Music", | |
"years": [ | |
2002 | |
] | |
}, | |
{ | |
"name": "H2O", | |
"years": [ | |
1998, | |
1999, | |
2001, | |
2015 | |
] | |
}, | |
{ | |
"name": "The Human Abstract", | |
"years": [ | |
2007, | |
2008 | |
] | |
}, | |
{ | |
"name": "Hundredth", | |
"years": [ | |
2015, | |
2017 | |
] | |
}, | |
{ | |
"name": "Hunter Revenge", | |
"years": [ | |
2008 | |
] | |
}, | |
{ | |
"name": "Hyro Da Hero", | |
"years": [ | |
2012 | |
] | |
}, | |
{ | |
"name": "I Am the Avalanche", | |
"years": [ | |
2006, | |
2012 | |
] | |
}, | |
{ | |
"name": "I Am Ghost", | |
"years": [ | |
2007 | |
] | |
}, | |
{ | |
"name": "I Call Fives", | |
"years": [ | |
2012 | |
] | |
}, | |
{ | |
"name": "I Fight Dragons", | |
"years": [ | |
2012, | |
2014 | |
] | |
}, | |
{ | |
"name": "I Killed The Prom Queen", | |
"years": [ | |
2015 | |
] | |
}, | |
{ | |
"name": "I Prevail", | |
"years": [ | |
2017 | |
] | |
}, | |
{ | |
"name": "I Set My Friends On Fire", | |
"years": [ | |
2009, | |
2011 | |
] | |
}, | |
{ | |
"name": "I See Stars", | |
"years": [ | |
2010, | |
2013, | |
2016 | |
] | |
}, | |
{ | |
"name": "I, the Breather", | |
"years": [ | |
2014 | |
] | |
}, | |
{ | |
"name": "I the Mighty", | |
"years": [ | |
2014 | |
] | |
}, | |
{ | |
"name": "Ice Nine Kills", | |
"years": [ | |
2013, | |
2014, | |
2016 | |
] | |
}, | |
{ | |
"name": "Ice-T", | |
"years": [ | |
1999 | |
] | |
}, | |
{ | |
"name": "Icon For Hire", | |
"years": [ | |
2014, | |
2015 | |
] | |
}, | |
{ | |
"name": "illScarlett", | |
"years": [ | |
2007, | |
2011 | |
] | |
}, | |
{ | |
"name": "Immortal Technique", | |
"years": [ | |
2005 | |
] | |
}, | |
{ | |
"name": "Impending Doom", | |
"years": [ | |
2012 | |
] | |
}, | |
{ | |
"name": "In Hearts Awake", | |
"years": [ | |
2016 | |
] | |
}, | |
{ | |
"name": "In this Moment", | |
"years": [ | |
2009 | |
] | |
}, | |
{ | |
"name": "Incubus", | |
"years": [ | |
1998 | |
] | |
}, | |
{ | |
"name": "The Indecent", | |
"years": [ | |
2013 | |
] | |
}, | |
{ | |
"name": "Indofin", | |
"years": [ | |
1998 | |
] | |
}, | |
{ | |
"name": "InnerPartySystem", | |
"years": [ | |
2009 | |
] | |
}, | |
{ | |
"name": "Insomniac", | |
"years": [ | |
2015 | |
] | |
}, | |
{ | |
"name": "The (International) Noise Conspiracy", | |
"years": [ | |
2004 | |
] | |
}, | |
{ | |
"name": "The Interrupters", | |
"years": [ | |
2016 | |
] | |
}, | |
{ | |
"name": "Into It. Over It.", | |
"years": [ | |
2012 | |
] | |
}, | |
{ | |
"name": "Ionia", | |
"years": [ | |
2012 | |
] | |
}, | |
{ | |
"name": "Isles", | |
"years": [ | |
2015 | |
] | |
}, | |
{ | |
"name": "Issues", | |
"years": [ | |
2013, | |
2014, | |
2016 | |
] | |
}, | |
{ | |
"name": "It Boys!", | |
"years": [ | |
2011, | |
2012 | |
] | |
}, | |
{ | |
"name": "It Dies Today", | |
"years": [ | |
2007 | |
] | |
}, | |
{ | |
"name": "It's Pouring on Our Heads", | |
"years": [ | |
2002, | |
2003, | |
2004, | |
2005, | |
2006 | |
] | |
}, | |
{ | |
"name": "Itch", | |
"years": [ | |
2013 | |
] | |
}, | |
{ | |
"name": "Ivens", | |
"years": [ | |
2008 | |
] | |
}, | |
{ | |
"name": "ivy league", | |
"years": [ | |
2010 | |
] | |
}, | |
{ | |
"name": "Iwrestledabearonce", | |
"years": [ | |
2010, | |
2012 | |
] | |
}, | |
{ | |
"name": "Jacky Jasper", | |
"years": [ | |
1999, | |
2001 | |
] | |
}, | |
{ | |
"name": "Jack's Mannequin", | |
"years": [ | |
2008, | |
2011 | |
] | |
}, | |
{ | |
"name": "James Morris", | |
"years": [ | |
2015 | |
] | |
}, | |
{ | |
"name": "Jay Tea", | |
"years": [ | |
2006 | |
] | |
}, | |
{ | |
"name": "Jeffree Star", | |
"years": [ | |
2008, | |
2009 | |
] | |
}, | |
{ | |
"name": "Jet Lag Gemini", | |
"years": [ | |
2008, | |
2009 | |
] | |
}, | |
{ | |
"name": "Jimmy Eat World", | |
"years": [ | |
2002 | |
] | |
}, | |
{ | |
"name": "Jimmy 2 Times", | |
"years": [ | |
1997 | |
] | |
}, | |
{ | |
"name": "Joan Jett and the Blackhearts", | |
"years": [ | |
2006 | |
] | |
}, | |
{ | |
"name": "The Johnstones", | |
"years": [ | |
2006, | |
2007, | |
2008 | |
] | |
}, | |
{ | |
"name": "The Jukebox Romantics", | |
"years": [ | |
2012 | |
] | |
}, | |
{ | |
"name": "Jule Vera", | |
"years": [ | |
2015, | |
2017 | |
] | |
}, | |
{ | |
"name": "The Juliana Theory", | |
"years": [ | |
2001 | |
] | |
}, | |
{ | |
"name": "Juliet Simms", | |
"years": [ | |
2013, | |
2015 | |
] | |
}, | |
{ | |
"name": "Jumping Monks", | |
"years": [ | |
2003, | |
2004 | |
] | |
}, | |
{ | |
"name": "June", | |
"years": [ | |
2006 | |
] | |
}, | |
{ | |
"name": "June Divided", | |
"years": [ | |
2012 | |
] | |
}, | |
{ | |
"name": "The Junior Varsity", | |
"years": [ | |
2005, | |
2006 | |
] | |
}, | |
{ | |
"name": "Just Surrender", | |
"years": [ | |
2008 | |
] | |
}, | |
{ | |
"name": "Jurassic 5", | |
"years": [ | |
2001 | |
] | |
}, | |
{ | |
"name": "Justina", | |
"years": [ | |
2012 | |
] | |
}, | |
{ | |
"name": "K.Flay", | |
"years": [ | |
2014 | |
] | |
}, | |
{ | |
"name": "K-os", | |
"years": [ | |
2007 | |
] | |
}, | |
{ | |
"name": "Kaddisfly", | |
"years": [ | |
2007 | |
] | |
}, | |
{ | |
"name": "Kairo Kingdom", | |
"years": [ | |
2013 | |
] | |
}, | |
{ | |
"name": "Karate High School", | |
"years": [ | |
2006, | |
2007 | |
] | |
}, | |
{ | |
"name": "The Karma Killers", | |
"years": [ | |
2015 | |
] | |
}, | |
{ | |
"name": "Katy Perry", | |
"years": [ | |
2008 | |
] | |
}, | |
{ | |
"name": "Kaya Stewart", | |
"years": [ | |
2015 | |
] | |
}, | |
{ | |
"name": "The Kenneths", | |
"years": [ | |
2015 | |
] | |
}, | |
{ | |
"name": "Kid Rock", | |
"years": [ | |
1998 | |
] | |
}, | |
{ | |
"name": "Killswitch Engage", | |
"years": [ | |
2007 | |
] | |
}, | |
{ | |
"name": "Kiros", | |
"years": [ | |
2005 | |
] | |
}, | |
{ | |
"name": "Knocked Loose", | |
"years": [ | |
2017 | |
] | |
}, | |
{ | |
"name": "The Know How[29]", | |
"years": [ | |
2000, | |
2001, | |
2002, | |
2003, | |
2005 | |
] | |
}, | |
{ | |
"name": "Knuckle Puck", | |
"years": [ | |
2015, | |
2016 | |
] | |
}, | |
{ | |
"name": "Koji", | |
"years": [ | |
2012, | |
2015 | |
] | |
}, | |
{ | |
"name": "Koo Koo Kanga Roo", | |
"years": [ | |
2015 | |
] | |
}, | |
{ | |
"name": "Kool Keith", | |
"years": [ | |
2001 | |
] | |
}, | |
{ | |
"name": "Kosha Dillz", | |
"years": [ | |
2015 | |
] | |
}, | |
{ | |
"name": "Kottonmouth Kings", | |
"years": [ | |
2000 | |
] | |
}, | |
{ | |
"name": "L7", | |
"years": [ | |
1995 | |
] | |
}, | |
{ | |
"name": "Lagwagon", | |
"years": [ | |
1997, | |
2002 | |
] | |
}, | |
{ | |
"name": "Large Marge", | |
"years": [ | |
2004 | |
] | |
}, | |
{ | |
"name": "Larry And His Flask", | |
"years": [ | |
2011 | |
] | |
}, | |
{ | |
"name": "Lars Frederiksen and the Bastards", | |
"years": [ | |
2004 | |
] | |
}, | |
{ | |
"name": "Last Great Assault", | |
"years": [ | |
2008 | |
] | |
}, | |
{ | |
"name": "Latex Generation", | |
"years": [ | |
1997, | |
1998 | |
] | |
}, | |
{ | |
"name": "L.E.S. Stitches", | |
"years": [ | |
1998 | |
] | |
}, | |
{ | |
"name": "Le Castle Vania", | |
"years": [ | |
2015 | |
] | |
}, | |
{ | |
"name": "Lee Corey Oswald", | |
"years": [ | |
2015 | |
] | |
}, | |
{ | |
"name": "Less Than Jake", | |
"years": [ | |
1997, | |
1999, | |
2001, | |
2003, | |
2006, | |
2009, | |
2011, | |
2014, | |
2016 | |
] | |
}, | |
{ | |
"name": "The Letters Organize", | |
"years": [ | |
2005 | |
] | |
}, | |
{ | |
"name": "Letter Kills", | |
"years": [ | |
2004 | |
] | |
}, | |
{ | |
"name": "Life on the Sideline", | |
"years": [ | |
2014 | |
] | |
}, | |
{ | |
"name": "LIGHTS", | |
"years": [ | |
2010 | |
] | |
}, | |
{ | |
"name": "Like Moths to Flames", | |
"years": [ | |
2013 | |
] | |
}, | |
{ | |
"name": "Like Pacific", | |
"years": [ | |
2016 | |
] | |
}, | |
{ | |
"name": "Lillix", | |
"years": [ | |
2002 | |
] | |
}, | |
{ | |
"name": "Limp Bizkit", | |
"years": [ | |
1997 | |
] | |
}, | |
{ | |
"name": "Linkin Park", | |
"years": [ | |
2014 | |
] | |
}, | |
{ | |
"name": "Lionize", | |
"years": [ | |
2011, | |
2014 | |
] | |
}, | |
{ | |
"name": "Lionz of Zion", | |
"years": [ | |
2013 | |
] | |
}, | |
{ | |
"name": "The Living End", | |
"years": [ | |
1999, | |
2001, | |
2006 | |
] | |
}, | |
{ | |
"name": "Living With Lions", | |
"years": [ | |
2012 | |
] | |
}, | |
{ | |
"name": "Long Beach Dub All-Stars", | |
"years": [ | |
2000, | |
2001 | |
] | |
}, | |
{ | |
"name": "Longway", | |
"years": [ | |
2009 | |
] | |
}, | |
{ | |
"name": "Look What I Did", | |
"years": [ | |
2007 | |
] | |
}, | |
{ | |
"name": "The Lordz", | |
"years": [ | |
2008 | |
] | |
}, | |
{ | |
"name": "Loser's Luck", | |
"years": [ | |
2004, | |
2005 | |
] | |
}, | |
{ | |
"name": "The Lost Boys", | |
"years": [ | |
2014 | |
] | |
}, | |
{ | |
"name": "Lost In Atlantis", | |
"years": [ | |
2013 | |
] | |
}, | |
{ | |
"name": "Lost In Society", | |
"years": [ | |
2012, | |
2014 | |
] | |
}, | |
{ | |
"name": "Lost Point", | |
"years": [ | |
2008 | |
] | |
}, | |
{ | |
"name": "Lostprophets", | |
"years": [ | |
2012 | |
] | |
}, | |
{ | |
"name": "Love Equals Death", | |
"years": [ | |
2005, | |
2006, | |
2008 | |
] | |
}, | |
{ | |
"name": "Lucero", | |
"years": [ | |
2011 | |
] | |
}, | |
{ | |
"name": "Luckie Strike", | |
"years": [ | |
2000, | |
2001, | |
2002 | |
] | |
}, | |
{ | |
"name": "Ludo", | |
"years": [ | |
2006, | |
2007, | |
2008 | |
] | |
}, | |
{ | |
"name": "Lunachicks", | |
"years": [ | |
2000 | |
] | |
}, | |
{ | |
"name": "M4Sonic", | |
"years": [ | |
2015 | |
] | |
}, | |
{ | |
"name": "Mac Lethal", | |
"years": [ | |
2013 | |
] | |
}, | |
{ | |
"name": "Machine Gun Kelly", | |
"years": [ | |
2012 | |
] | |
}, | |
{ | |
"name": "Machree", | |
"years": [ | |
2011 | |
] | |
}, | |
{ | |
"name": "Macy Kate", | |
"years": [ | |
2015 | |
] | |
}, | |
{ | |
"name": "Mad Caddies", | |
"years": [ | |
1998, | |
2003 | |
] | |
}, | |
{ | |
"name": "Madcap", | |
"years": [ | |
2001 | |
] | |
}, | |
{ | |
"name": "Madchild", | |
"years": [ | |
2013 | |
] | |
}, | |
{ | |
"name": "Madina Lake", | |
"years": [ | |
2008, | |
2009, | |
2011 | |
] | |
}, | |
{ | |
"name": "Mae", | |
"years": [ | |
2004, | |
2005 | |
] | |
}, | |
{ | |
"name": "The Maine", | |
"years": [ | |
2007, | |
2008, | |
2009, | |
2014, | |
2016 | |
] | |
}, | |
{ | |
"name": "Major League", | |
"years": [ | |
2015 | |
] | |
}, | |
{ | |
"name": "Make Do and Mend", | |
"years": [ | |
2012 | |
] | |
}, | |
{ | |
"name": "Mallory Knox", | |
"years": [ | |
2015 | |
] | |
}, | |
{ | |
"name": "Man Overboard", | |
"years": [ | |
2012, | |
2013, | |
2015 | |
] | |
}, | |
{ | |
"name": "Manic Hispanic", | |
"years": [ | |
2002, | |
2007 | |
] | |
}, | |
{ | |
"name": "Manic Sewing Circle", | |
"years": [ | |
2006, | |
2007 | |
] | |
}, | |
{ | |
"name": "Marina City", | |
"years": [ | |
2016 | |
] | |
}, | |
{ | |
"name": "Marissa Mishelle", | |
"years": [ | |
2008 | |
] | |
}, | |
{ | |
"name": "Marmozets", | |
"years": [ | |
2014 | |
] | |
}, | |
{ | |
"name": "Masked Intruder", | |
"years": [ | |
2016 | |
] | |
}, | |
{ | |
"name": "Massive Monkees", | |
"years": [ | |
2008 | |
] | |
}, | |
{ | |
"name": "Matchbook Romance", | |
"years": [ | |
2003, | |
2005, | |
2015 | |
] | |
}, | |
{ | |
"name": "The Matches", | |
"years": [ | |
2004, | |
2005, | |
2007 | |
] | |
}, | |
{ | |
"name": "Matisyahu", | |
"years": [ | |
2008 | |
] | |
}, | |
{ | |
"name": "Matt Toka", | |
"years": [ | |
2012 | |
] | |
}, | |
{ | |
"name": "Mayday Parade", | |
"years": [ | |
2007, | |
2008, | |
2010, | |
2012, | |
2014, | |
2016 | |
] | |
}, | |
{ | |
"name": "Maylene & The Sons Of Disaster", | |
"years": [ | |
2007, | |
2008 | |
] | |
}, | |
{ | |
"name": "MC Chris", | |
"years": [ | |
2007, | |
2008, | |
2014 | |
] | |
}, | |
{ | |
"name": "MC Lars", | |
"years": [ | |
2013, | |
2015 | |
] | |
}, | |
{ | |
"name": "MC Lars with Weerd Science", | |
"years": [ | |
2011, | |
2012 | |
] | |
}, | |
{ | |
"name": "Medium Troy", | |
"years": [ | |
2008 | |
] | |
}, | |
{ | |
"name": "Me First and the Gimme Gimmes", | |
"years": [ | |
2001, | |
2003 | |
] | |
}, | |
{ | |
"name": "Me Like Bees", | |
"years": [ | |
2014 | |
] | |
}, | |
{ | |
"name": "Meg & Dia", | |
"years": [ | |
2007, | |
2009 | |
] | |
}, | |
{ | |
"name": "Meghann Wright", | |
"years": [ | |
2015 | |
] | |
}, | |
{ | |
"name": "Memphis May Fire", | |
"years": [ | |
2012, | |
2013, | |
2015, | |
2017 | |
] | |
}, | |
{ | |
"name": "The Menzingers", | |
"years": [ | |
2011 | |
] | |
}, | |
{ | |
"name": "Mestmothe", | |
"years": [ | |
2003, | |
2005, | |
2013 | |
] | |
}, | |
{ | |
"name": "Metro Station", | |
"years": [ | |
2015 | |
] | |
}, | |
{ | |
"name": "MewithoutYou", | |
"years": [ | |
2006 | |
] | |
}, | |
{ | |
"name": "M.I.A.", | |
"years": [ | |
2008 | |
] | |
}, | |
{ | |
"name": "Microwave", | |
"years": [ | |
2017 | |
] | |
}, | |
{ | |
"name": "Middleground", | |
"years": [ | |
2002 | |
] | |
}, | |
{ | |
"name": "Middle Class Rut", | |
"years": [ | |
2011 | |
] | |
}, | |
{ | |
"name": "Middle Finger Salute", | |
"years": [ | |
2008, | |
2009, | |
2013 | |
] | |
}, | |
{ | |
"name": "Midnight To Twelve", | |
"years": [ | |
2008 | |
] | |
}, | |
{ | |
"name": "Midtown", | |
"years": [ | |
2001, | |
2003 | |
] | |
}, | |
{ | |
"name": "MI6", | |
"years": [ | |
2002 | |
] | |
}, | |
{ | |
"name": "The Mighty Mighty Bosstones", | |
"years": [ | |
1996, | |
1997, | |
2000, | |
2002 | |
] | |
}, | |
{ | |
"name": "Mighty Mongo", | |
"years": [ | |
2012, | |
2013 | |
] | |
}, | |
{ | |
"name": "Mike Posner", | |
"years": [ | |
2010 | |
] | |
}, | |
{ | |
"name": "Mike Watt + The Missingmen", | |
"years": [ | |
2008 | |
] | |
}, | |
{ | |
"name": "Millencolin", | |
"years": [ | |
1997, | |
2000, | |
2005 | |
] | |
}, | |
{ | |
"name": "Millionaires", | |
"years": [ | |
2009 | |
] | |
}, | |
{ | |
"name": "Miracle Dolls", | |
"years": [ | |
2008 | |
] | |
}, | |
{ | |
"name": "The Misfits", | |
"years": [ | |
2001 | |
] | |
}, | |
{ | |
"name": "Miss May I", | |
"years": [ | |
2011, | |
2012, | |
2015 | |
] | |
}, | |
{ | |
"name": "Mixtapes", | |
"years": [ | |
2013, | |
2014 | |
] | |
}, | |
{ | |
"name": "Mo Bigsley", | |
"years": [ | |
2008 | |
] | |
}, | |
{ | |
"name": "Mod Sun", | |
"years": [ | |
2012, | |
2014, | |
2015 | |
] | |
}, | |
{ | |
"name": "Moe Pope", | |
"years": [ | |
2008 | |
] | |
}, | |
{ | |
"name": "Mojo Morgan", | |
"years": [ | |
2011 | |
] | |
}, | |
{ | |
"name": "Molotov", | |
"years": [ | |
1999 | |
] | |
}, | |
{ | |
"name": "Moments in Grace", | |
"years": [ | |
2004 | |
] | |
}, | |
{ | |
"name": "Moneen", | |
"years": [ | |
2006 | |
] | |
}, | |
{ | |
"name": "Montage", | |
"years": [ | |
2017 | |
] | |
}, | |
{ | |
"name": "Monty are I", | |
"years": [ | |
2007, | |
2009 | |
] | |
}, | |
{ | |
"name": "Moose Blood", | |
"years": [ | |
2015 | |
] | |
}, | |
{ | |
"name": "More To Monroe", | |
"years": [ | |
2016 | |
] | |
}, | |
{ | |
"name": "Morgan Heritage", | |
"years": [ | |
2000 | |
] | |
}, | |
{ | |
"name": "Mother Feather", | |
"years": [ | |
2016 | |
] | |
}, | |
{ | |
"name": "Motion City Soundtrack", | |
"years": [ | |
2002, | |
2003, | |
2004, | |
2005, | |
2006, | |
2008, | |
2009, | |
2010, | |
2013, | |
2015 | |
] | |
}, | |
{ | |
"name": "Motionless in White", | |
"years": [ | |
2006, | |
2007, | |
2008, | |
2010, | |
2011, | |
2012, | |
2014, | |
2016 | |
] | |
}, | |
{ | |
"name": "Movements", | |
"years": [ | |
2017 | |
] | |
}, | |
{ | |
"name": "The Movielife", | |
"years": [ | |
2002 | |
] | |
}, | |
{ | |
"name": "Moving Mountains", | |
"years": [ | |
2011 | |
] | |
}, | |
{ | |
"name": "The Muffs", | |
"years": [ | |
2000 | |
] | |
}, | |
{ | |
"name": "Municipal Waste", | |
"years": [ | |
2017 | |
] | |
}, | |
{ | |
"name": "Murder City Devils", | |
"years": [ | |
1997 | |
] | |
}, | |
{ | |
"name": "Mushroomhead", | |
"years": [ | |
1996 | |
] | |
}, | |
{ | |
"name": "Mutemath", | |
"years": [ | |
2006 | |
] | |
}, | |
{ | |
"name": "MxPx", | |
"years": [ | |
1998, | |
2000, | |
2002, | |
2005, | |
2007 | |
] | |
}, | |
{ | |
"name": "My American Heart", | |
"years": [ | |
2005, | |
2007 | |
] | |
}, | |
{ | |
"name": "My Arcadia", | |
"years": [ | |
2011 | |
] | |
}, | |
{ | |
"name": "My Chemical Romance", | |
"years": [ | |
2004, | |
2005 | |
] | |
}, | |
{ | |
"name": "Naked Walrus", | |
"years": [ | |
2014, | |
2017 | |
] | |
}, | |
{ | |
"name": "The Narrative", | |
"years": [ | |
2011 | |
] | |
}, | |
{ | |
"name": "Near Miss", | |
"years": [ | |
2005 | |
] | |
}, | |
{ | |
"name": "Neck Deep", | |
"years": [ | |
2014, | |
2015, | |
2016, | |
2017 | |
] | |
}, | |
{ | |
"name": "Neo Geo", | |
"years": [ | |
2011, | |
2012 | |
] | |
}, | |
{ | |
"name": "N.E.R.D", | |
"years": [ | |
2002 | |
] | |
}, | |
{ | |
"name": "Never Shout Never", | |
"years": [ | |
2010, | |
2013, | |
2015, | |
2017 | |
] | |
}, | |
{ | |
"name": "New Beat Fund", | |
"years": [ | |
2013, | |
2015 | |
] | |
}, | |
{ | |
"name": "New Empire", | |
"years": [ | |
2013 | |
] | |
}, | |
{ | |
"name": "New Found Glory", | |
"years": [ | |
2001, | |
2002, | |
2004, | |
2007, | |
2012, | |
2016 | |
] | |
}, | |
{ | |
"name": "The New Low", | |
"years": [ | |
2016 | |
] | |
}, | |
{ | |
"name": "The New Sincerity", | |
"years": [ | |
2006 | |
] | |
}, | |
{ | |
"name": "New Years Day", | |
"years": [ | |
2007, | |
2011, | |
2013, | |
2015, | |
2017 | |
] | |
}, | |
{ | |
"name": "Night Argent", | |
"years": [ | |
2015, | |
2016 | |
] | |
}, | |
{ | |
"name": "Night Riots", | |
"years": [ | |
2015 | |
] | |
}, | |
{ | |
"name": "NiT GriT", | |
"years": [ | |
2014 | |
] | |
}, | |
{ | |
"name": "No Bragging Rights", | |
"years": [ | |
2013 | |
] | |
}, | |
{ | |
"name": "No Doubt", | |
"years": [ | |
1995, | |
2000 | |
] | |
}, | |
{ | |
"name": "NOFX", | |
"years": [ | |
1996, | |
1998, | |
2000, | |
2002, | |
2004, | |
2006, | |
2009 | |
] | |
}, | |
{ | |
"name": "No Man's Land", | |
"years": [ | |
2003, | |
2004 | |
] | |
}, | |
{ | |
"name": "Nonpoint", | |
"years": [ | |
2005 | |
] | |
}, | |
{ | |
"name": "Norma Jean", | |
"years": [ | |
2007, | |
2008 | |
] | |
}, | |
{ | |
"name": "No Use for a Name", | |
"years": [ | |
1995, | |
1998, | |
2002, | |
2005 | |
] | |
}, | |
{ | |
"name": "Nothington", | |
"years": [ | |
2007 | |
] | |
}, | |
{ | |
"name": "Now On", | |
"years": [ | |
2008 | |
] | |
}, | |
{ | |
"name": "Obtik", | |
"years": [ | |
2001 | |
] | |
}, | |
{ | |
"name": "Oceana", | |
"years": [ | |
2008 | |
] | |
}, | |
{ | |
"name": "Oceans Ate Alaska", | |
"years": [ | |
2016 | |
] | |
}, | |
{ | |
"name": "Of Mice & Men", | |
"years": [ | |
2010, | |
2011, | |
2012, | |
2014 | |
] | |
}, | |
{ | |
"name": "The Offspring", | |
"years": [ | |
2005 | |
] | |
}, | |
{ | |
"name": "Oh No Fiasco", | |
"years": [ | |
2012 | |
] | |
}, | |
{ | |
"name": "Oh, Sleeper", | |
"years": [ | |
2013 | |
] | |
}, | |
{ | |
"name": "Old Wounds", | |
"years": [ | |
2016 | |
] | |
}, | |
{ | |
"name": "On The Surface", | |
"years": [ | |
2008 | |
] | |
}, | |
{ | |
"name": "Onward, Etc.", | |
"years": [ | |
2015 | |
] | |
}, | |
{ | |
"name": "Oneyedjacks", | |
"years": [ | |
2005 | |
] | |
}, | |
{ | |
"name": "One Last Shot", | |
"years": [ | |
2017 | |
] | |
}, | |
{ | |
"name": "One Minute Silence", | |
"years": [ | |
2000 | |
] | |
}, | |
{ | |
"name": "One Ok Rock", | |
"years": [ | |
2014 | |
] | |
}, | |
{ | |
"name": "Only Crime", | |
"years": [ | |
2007 | |
] | |
}, | |
{ | |
"name": "Orange 9mm", | |
"years": [ | |
1995, | |
1997 | |
] | |
}, | |
{ | |
"name": "Ore Ska Band", | |
"years": [ | |
2008 | |
] | |
}, | |
{ | |
"name": "Othello", | |
"years": [ | |
2008 | |
] | |
}, | |
{ | |
"name": "Our Last Night", | |
"years": [ | |
2015, | |
2017 | |
] | |
}, | |
{ | |
"name": "Outasight", | |
"years": [ | |
2013 | |
] | |
}, | |
{ | |
"name": "Over It", | |
"years": [ | |
2004, | |
2005, | |
2006 | |
] | |
}, | |
{ | |
"name": "Owen Plant", | |
"years": [ | |
2012 | |
] | |
}, | |
{ | |
"name": "Ozma", | |
"years": [ | |
2002 | |
] | |
}, | |
{ | |
"name": "P.O.S", | |
"years": [ | |
2009 | |
] | |
}, | |
{ | |
"name": "Pacific Dub", | |
"years": [ | |
2013, | |
2014 | |
] | |
}, | |
{ | |
"name": "Paige Wood", | |
"years": [ | |
2008 | |
] | |
}, | |
{ | |
"name": "Palaye Royale", | |
"years": [ | |
2016 | |
] | |
}, | |
{ | |
"name": "Panima", | |
"years": [ | |
2008 | |
] | |
}, | |
{ | |
"name": "Papa Roach", | |
"years": [ | |
2000 | |
] | |
}, | |
{ | |
"name": "Paramore", | |
"years": [ | |
2005, | |
2006, | |
2007, | |
2008, | |
2009, | |
2011 | |
] | |
}, | |
{ | |
"name": "Parkway Drive", | |
"years": [ | |
2007, | |
2010, | |
2014 | |
] | |
}, | |
{ | |
"name": "Passafire", | |
"years": [ | |
2011 | |
] | |
}, | |
{ | |
"name": "Patent Pending", | |
"years": [ | |
2008 | |
] | |
}, | |
{ | |
"name": "Pathway To Providence", | |
"years": [ | |
2006 | |
] | |
}, | |
{ | |
"name": "Pato", | |
"years": [ | |
2008 | |
] | |
}, | |
{ | |
"name": "Peelander-Z", | |
"years": [ | |
2011 | |
] | |
}, | |
{ | |
"name": "Pendleton", | |
"years": [ | |
2007 | |
] | |
}, | |
{ | |
"name": "Pennywise", | |
"years": [ | |
1996, | |
1997, | |
1999, | |
2001, | |
2003, | |
2007, | |
2008, | |
2010 | |
] | |
}, | |
{ | |
"name": "Pepper", | |
"years": [ | |
2004, | |
2007, | |
2011, | |
2016 | |
] | |
}, | |
{ | |
"name": "Permanent Bastards", | |
"years": [ | |
2011 | |
] | |
}, | |
{ | |
"name": "Peter DiStefano", | |
"years": [ | |
2008 | |
] | |
}, | |
{ | |
"name": "Phathom", | |
"years": [ | |
2006, | |
2007, | |
2008, | |
2009 | |
] | |
}, | |
{ | |
"name": "The Photo Atlas", | |
"years": [ | |
2007 | |
] | |
}, | |
{ | |
"name": "Pierce the Veil", | |
"years": [ | |
2008, | |
2010, | |
2012, | |
2015 | |
] | |
}, | |
{ | |
"name": "Pietasters", | |
"years": [ | |
1998 | |
] | |
}, | |
{ | |
"name": "The Pinker Tones", | |
"years": [ | |
2008 | |
] | |
}, | |
{ | |
"name": "The Pink Slips", | |
"years": [ | |
2016 | |
] | |
}, | |
{ | |
"name": "The Pink Spiders", | |
"years": [ | |
2006, | |
2008 | |
] | |
}, | |
{ | |
"name": "Piotta", | |
"years": [ | |
2008 | |
] | |
}, | |
{ | |
"name": "Pistolita", | |
"years": [ | |
2006, | |
2007 | |
] | |
}, | |
{ | |
"name": "Places And Numbers", | |
"years": [ | |
2011 | |
] | |
}, | |
{ | |
"name": "Plague Vendor", | |
"years": [ | |
2014 | |
] | |
}, | |
{ | |
"name": "Plain White T's", | |
"years": [ | |
2005, | |
2006 | |
] | |
}, | |
{ | |
"name": "Planet Smashers", | |
"years": [ | |
2011 | |
] | |
}, | |
{ | |
"name": "Playboy Manbaby", | |
"years": [ | |
2017 | |
] | |
}, | |
{ | |
"name": "PlayRadioPlay", | |
"years": [ | |
2007 | |
] | |
}, | |
{ | |
"name": "Poison the Well", | |
"years": [ | |
2003, | |
2007 | |
] | |
}, | |
{ | |
"name": "Polar Bear Club", | |
"years": [ | |
2012 | |
] | |
}, | |
{ | |
"name": "Pour Habit", | |
"years": [ | |
2011 | |
] | |
}, | |
{ | |
"name": "Preston", | |
"years": [ | |
2005 | |
] | |
}, | |
{ | |
"name": "The Pretty Reckless", | |
"years": [ | |
2010 | |
] | |
}, | |
{ | |
"name": "Prof", | |
"years": [ | |
2016 | |
] | |
}, | |
{ | |
"name": "Protest The Hero", | |
"years": [ | |
2006, | |
2007, | |
2008 | |
] | |
}, | |
{ | |
"name": "The Protomen", | |
"years": [ | |
2014 | |
] | |
}, | |
{ | |
"name": "Psycho White", | |
"years": [ | |
2013 | |
] | |
}, | |
{ | |
"name": "Psychotic 4", | |
"years": [ | |
2006 | |
] | |
}, | |
{ | |
"name": "Pull The Pin", | |
"years": [ | |
2008 | |
] | |
}, | |
{ | |
"name": "PVRIS", | |
"years": [ | |
2013, | |
2014, | |
2015, | |
2016 | |
] | |
}, | |
{ | |
"name": "Quarashi", | |
"years": [ | |
2002 | |
] | |
}, | |
{ | |
"name": "Quicksand", | |
"years": [ | |
1995 | |
] | |
}, | |
{ | |
"name": "Railroad To Alaska", | |
"years": [ | |
2011 | |
] | |
}, | |
{ | |
"name": "Rancid", | |
"years": [ | |
1998, | |
2001, | |
2003 | |
] | |
}, | |
{ | |
"name": "The Randies", | |
"years": [ | |
2008 | |
] | |
}, | |
{ | |
"name": "Rapid Decline", | |
"years": [ | |
2011 | |
] | |
}, | |
{ | |
"name": "RDGLDGRN", | |
"years": [ | |
2013 | |
] | |
}, | |
{ | |
"name": "The Ready Set", | |
"years": [ | |
2011, | |
2014 | |
] | |
}, | |
{ | |
"name": "Real Friends", | |
"years": [ | |
2013, | |
2014, | |
2016 | |
] | |
}, | |
{ | |
"name": "Real McKenzies", | |
"years": [ | |
2007 | |
] | |
}, | |
{ | |
"name": "The Receiving End of Sirens", | |
"years": [ | |
2005 | |
] | |
}, | |
{ | |
"name": "Reckless Serenade", | |
"years": [ | |
2016 | |
] | |
}, | |
{ | |
"name": "The Recovering", | |
"years": [ | |
2008 | |
] | |
}, | |
{ | |
"name": "Red Car Wire", | |
"years": [ | |
2008 | |
] | |
}, | |
{ | |
"name": "Red Five", | |
"years": [ | |
1996 | |
] | |
}, | |
{ | |
"name": "The Red Jumpsuit Apparatus", | |
"years": [ | |
2005, | |
2006, | |
2007 | |
] | |
}, | |
{ | |
"name": "Reel Big Fish", | |
"years": [ | |
1997, | |
2002, | |
2008, | |
2009, | |
2010, | |
2013, | |
2016 | |
] | |
}, | |
{ | |
"name": "Reggie and the Full Effect", | |
"years": [ | |
2005 | |
] | |
}, | |
{ | |
"name": "Relient K", | |
"years": [ | |
2005, | |
2008, | |
2011, | |
2013 | |
] | |
}, | |
{ | |
"name": "Remsa 'n Event", | |
"years": [ | |
2007 | |
] | |
}, | |
{ | |
"name": "Rev 9", | |
"years": [ | |
2003 | |
] | |
}, | |
{ | |
"name": "Reverend Horton Heat", | |
"years": [ | |
1998 | |
] | |
}, | |
{ | |
"name": "Revolution Mother", | |
"years": [ | |
2007, | |
2008 | |
] | |
}, | |
{ | |
"name": "Rise Against", | |
"years": [ | |
2004, | |
2006, | |
2008, | |
2012 | |
] | |
}, | |
{ | |
"name": "Rise To Remain", | |
"years": [ | |
2012 | |
] | |
}, | |
{ | |
"name": "The Riverboat Gamblers", | |
"years": [ | |
2005, | |
2017 | |
] | |
}, | |
{ | |
"name": "River City Extension", | |
"years": [ | |
2011 | |
] | |
}, | |
{ | |
"name": "Roam", | |
"years": [ | |
2016 | |
] | |
}, | |
{ | |
"name": "Rocket from the Crypt", | |
"years": [ | |
1996 | |
] | |
}, | |
{ | |
"name": "The Rocket Summer", | |
"years": [ | |
2007, | |
2010 | |
] | |
}, | |
{ | |
"name": "Roger Miret and the Disasters", | |
"years": [ | |
2005 | |
] | |
}, | |
{ | |
"name": "Rollins Band", | |
"years": [ | |
2001 | |
] | |
}, | |
{ | |
"name": "Roses Are Red", | |
"years": [ | |
2004, | |
2005 | |
] | |
}, | |
{ | |
"name": "Royal Crown Revue", | |
"years": [ | |
1998 | |
] | |
}, | |
{ | |
"name": "Rufio", | |
"years": [ | |
2004, | |
2005 | |
] | |
}, | |
{ | |
"name": "Run DMT", | |
"years": [ | |
2013 | |
] | |
}, | |
{ | |
"name": "Rx Bandits", | |
"years": [ | |
2002 | |
] | |
}, | |
{ | |
"name": "Ryan Cassata", | |
"years": [ | |
2013 | |
] | |
}, | |
{ | |
"name": "Safe To Say", | |
"years": [ | |
2016 | |
] | |
}, | |
{ | |
"name": "Saint Alvia", | |
"years": [ | |
2008 | |
] | |
}, | |
{ | |
"name": "The Salads", | |
"years": [ | |
2004, | |
2005, | |
2006, | |
2007 | |
] | |
}, | |
{ | |
"name": "Sammy Adams", | |
"years": [ | |
2017 | |
] | |
}, | |
{ | |
"name": "Sarah and the Safe Word", | |
"years": [ | |
2017 | |
] | |
}, | |
{ | |
"name": "Save Ferris", | |
"years": [ | |
1998, | |
2000, | |
2017 | |
] | |
}, | |
{ | |
"name": "Saves the Day", | |
"years": [ | |
2000, | |
2006, | |
2014 | |
] | |
}, | |
{ | |
"name": "Saosin", | |
"years": [ | |
2005, | |
2009 | |
] | |
}, | |
{ | |
"name": "Saving Grace", | |
"years": [ | |
2009 | |
] | |
}, | |
{ | |
"name": "Say Anything", | |
"years": [ | |
2008 | |
] | |
}, | |
{ | |
"name": "Say No More", | |
"years": [ | |
2008 | |
] | |
}, | |
{ | |
"name": "SayWeCanFly", | |
"years": [ | |
2015, | |
2016 | |
] | |
}, | |
{ | |
"name": "Say When", | |
"years": [ | |
2009 | |
] | |
}, | |
{ | |
"name": "Scare Don't Fear", | |
"years": [ | |
2014 | |
] | |
}, | |
{ | |
"name": "Scary Kids Scaring Kids", | |
"years": [ | |
2005, | |
2007, | |
2009 | |
] | |
}, | |
{ | |
"name": "The Scissors", | |
"years": [ | |
2012 | |
] | |
}, | |
{ | |
"name": "Seaway", | |
"years": [ | |
2015 | |
] | |
}, | |
{ | |
"name": "Seaweed", | |
"years": [ | |
1995 | |
] | |
}, | |
{ | |
"name": "Secret Broadcast", | |
"years": [ | |
2007 | |
] | |
}, | |
{ | |
"name": "The Secret Handshake", | |
"years": [ | |
2008 | |
] | |
}, | |
{ | |
"name": "SECRETS", | |
"years": [ | |
2013, | |
2014, | |
2016 | |
] | |
}, | |
{ | |
"name": "Senses Fail", | |
"years": [ | |
2002, | |
2004, | |
2005, | |
2008, | |
2012, | |
2015 | |
] | |
}, | |
{ | |
"name": "Separations", | |
"years": [ | |
2017 | |
] | |
}, | |
{ | |
"name": "Set It Off", | |
"years": [ | |
2013, | |
2015, | |
2016 | |
] | |
}, | |
{ | |
"name": "Set Your Goals", | |
"years": [ | |
2007, | |
2008, | |
2010, | |
2011, | |
2015, | |
2016 | |
] | |
}, | |
{ | |
"name": "Settings", | |
"years": [ | |
2008 | |
] | |
}, | |
{ | |
"name": "Sevendust", | |
"years": [ | |
1999 | |
] | |
}, | |
{ | |
"name": "Shad", | |
"years": [ | |
2009 | |
] | |
}, | |
{ | |
"name": "Sharks", | |
"years": [ | |
2011 | |
] | |
}, | |
{ | |
"name": "Shattered Sun", | |
"years": [ | |
2017 | |
] | |
}, | |
{ | |
"name": "The Sheds", | |
"years": [ | |
2011 | |
] | |
}, | |
{ | |
"name": "Shinobi Ninja", | |
"years": [ | |
2011, | |
2014 | |
] | |
}, | |
{ | |
"name": "Shira", | |
"years": [ | |
2011 | |
] | |
}, | |
{ | |
"name": "Shiragirl", | |
"years": [ | |
2004, | |
2005, | |
2006, | |
2015 | |
] | |
}, | |
{ | |
"name": "Shooter Jennings", | |
"years": [ | |
2009 | |
] | |
}, | |
{ | |
"name": "Shot In The Dark", | |
"years": [ | |
2014 | |
] | |
}, | |
{ | |
"name": "Shut Up And Deal", | |
"years": [ | |
2011 | |
] | |
}, | |
{ | |
"name": "Shwayze", | |
"years": [ | |
2008 | |
] | |
}, | |
{ | |
"name": "Shy KidX", | |
"years": [ | |
2013 | |
] | |
}, | |
{ | |
"name": "Sick City", | |
"years": [ | |
2008 | |
] | |
}, | |
{ | |
"name": "Sick of It All", | |
"years": [ | |
1995, | |
1997, | |
2017 | |
] | |
}, | |
{ | |
"name": "Sick of Sarah", | |
"years": [ | |
2011, | |
2012 | |
] | |
}, | |
{ | |
"name": "Silent Planet", | |
"years": [ | |
2016, | |
2017 | |
] | |
}, | |
{ | |
"name": "The Silver Comet", | |
"years": [ | |
2012 | |
] | |
}, | |
{ | |
"name": "Silverstein", | |
"years": [ | |
2004, | |
2005, | |
2006, | |
2009, | |
2012, | |
2013, | |
2015, | |
2017 | |
] | |
}, | |
{ | |
"name": "Simple Plan", | |
"years": [ | |
1999, | |
2000, | |
2001, | |
2002, | |
2003, | |
2004, | |
2005, | |
2010, | |
2011, | |
2012, | |
2015 | |
] | |
}, | |
{ | |
"name": "Sing It Loud", | |
"years": [ | |
2009 | |
] | |
}, | |
{ | |
"name": "Single File", | |
"years": [ | |
2006, | |
2008 | |
] | |
}, | |
{ | |
"name": "Six Feet Under", | |
"years": [ | |
2000 | |
] | |
}, | |
{ | |
"name": "Skarhead", | |
"years": [ | |
2000 | |
] | |
}, | |
{ | |
"name": "Skavoovie and the Epitones", | |
"years": [ | |
1998 | |
] | |
}, | |
{ | |
"name": "Skeet Skeet", | |
"years": [ | |
2008 | |
] | |
}, | |
{ | |
"name": "Skindred", | |
"years": [ | |
2005 | |
] | |
}, | |
{ | |
"name": "Skinny Lister", | |
"years": [ | |
2012 | |
] | |
}, | |
{ | |
"name": "Skip The Foreplay", | |
"years": [ | |
2012 | |
] | |
}, | |
{ | |
"name": "Sky Eats Airplane", | |
"years": [ | |
2008 | |
] | |
}, | |
{ | |
"name": "Sleeper Agent", | |
"years": [ | |
2014 | |
] | |
}, | |
{ | |
"name": "Sleeper Set Sail", | |
"years": [ | |
2005 | |
] | |
}, | |
{ | |
"name": "The Sleeping", | |
"years": [ | |
2006 | |
] | |
}, | |
{ | |
"name": "Sleeping With Sirens", | |
"years": [ | |
2012, | |
2013, | |
2014, | |
2015, | |
2016 | |
] | |
}, | |
{ | |
"name": "Sleepwalker", | |
"years": [ | |
2012 | |
] | |
}, | |
{ | |
"name": "The Smashup", | |
"years": [ | |
2006 | |
] | |
}, | |
{ | |
"name": "The Smooths", | |
"years": [ | |
1998 | |
] | |
}, | |
{ | |
"name": "Snapcase", | |
"years": [ | |
1998, | |
2000 | |
] | |
}, | |
{ | |
"name": "Snot", | |
"years": [ | |
1997 | |
] | |
}, | |
{ | |
"name": "So Long Arletta", | |
"years": [ | |
2011 | |
] | |
}, | |
{ | |
"name": "So They Say", | |
"years": [ | |
2006, | |
2007 | |
] | |
}, | |
{ | |
"name": "Social Distortion", | |
"years": [ | |
1997 | |
] | |
}, | |
{ | |
"name": "Someday Never", | |
"years": [ | |
2005, | |
2006 | |
] | |
}, | |
{ | |
"name": "Something Corporate", | |
"years": [ | |
2002, | |
2003, | |
2005 | |
] | |
}, | |
{ | |
"name": "Somerset", | |
"years": [ | |
2002 | |
] | |
}, | |
{ | |
"name": "Sonic Boom Six", | |
"years": [ | |
2017 | |
] | |
}, | |
{ | |
"name": "The Sounds", | |
"years": [ | |
2004, | |
2006 | |
] | |
}, | |
{ | |
"name": "The Specials", | |
"years": [ | |
1998 | |
] | |
}, | |
{ | |
"name": "The Spill Canvas", | |
"years": [ | |
2007 | |
] | |
}, | |
{ | |
"name": "Spring Heeled Jack", | |
"years": [ | |
1999 | |
] | |
}, | |
{ | |
"name": "Sprout", | |
"years": [ | |
2001 | |
] | |
}, | |
{ | |
"name": "Stacked Like Pancakes", | |
"years": [ | |
2015, | |
2017 | |
] | |
}, | |
{ | |
"name": "Staind", | |
"years": [ | |
1998 | |
] | |
}, | |
{ | |
"name": "The Starting Line", | |
"years": [ | |
2002, | |
2003, | |
2005, | |
2007 | |
] | |
}, | |
{ | |
"name": "State Champs", | |
"years": [ | |
2014, | |
2016 | |
] | |
}, | |
{ | |
"name": "Staylefish", | |
"years": [ | |
2008, | |
2009 | |
] | |
}, | |
{ | |
"name": "Stepdad", | |
"years": [ | |
2012 | |
] | |
}, | |
{ | |
"name": "Stephan Jacobs", | |
"years": [ | |
2013 | |
] | |
}, | |
{ | |
"name": "Stephen Jerzak", | |
"years": [ | |
2011 | |
] | |
}, | |
{ | |
"name": "Stick to Your Guns", | |
"years": [ | |
2008, | |
2013, | |
2017 | |
] | |
}, | |
{ | |
"name": "Still Remains", | |
"years": [ | |
2007 | |
] | |
}, | |
{ | |
"name": "The Stingrays", | |
"years": [ | |
2000 | |
] | |
}, | |
{ | |
"name": "Story of the Year", | |
"years": [ | |
2002, | |
2003, | |
2004, | |
2005, | |
2008, | |
2013 | |
] | |
}, | |
{ | |
"name": "The Story So Far", | |
"years": [ | |
2013, | |
2014, | |
2016 | |
] | |
}, | |
{ | |
"name": "Strangers You Know", | |
"years": [ | |
2014, | |
2015 | |
] | |
}, | |
{ | |
"name": "Strawberry Blondes", | |
"years": [ | |
2013 | |
] | |
}, | |
{ | |
"name": "Stray from the Path", | |
"years": [ | |
2014 | |
] | |
}, | |
{ | |
"name": "Straylight Run", | |
"years": [ | |
2007 | |
] | |
}, | |
{ | |
"name": "Street Dogs", | |
"years": [ | |
2008, | |
2011, | |
2017 | |
] | |
}, | |
{ | |
"name": "Street Drum Corps", | |
"years": [ | |
2007, | |
2008 | |
] | |
}, | |
{ | |
"name": "Streetlight Manifesto", | |
"years": [ | |
2009, | |
2010, | |
2012, | |
2017 | |
] | |
}, | |
{ | |
"name": "Stretch Armstrong", | |
"years": [ | |
2004 | |
] | |
}, | |
{ | |
"name": "Strike Anywhere", | |
"years": [ | |
2005 | |
] | |
}, | |
{ | |
"name": "Strung Out", | |
"years": [ | |
1997, | |
2004, | |
2005, | |
2017 | |
] | |
}, | |
{ | |
"name": "Stutterfly", | |
"years": [ | |
2005 | |
] | |
}, | |
{ | |
"name": "Sublime", | |
"years": [ | |
1995 | |
] | |
}, | |
{ | |
"name": "Suburban Legends", | |
"years": [ | |
2005 | |
] | |
}, | |
{ | |
"name": "Sugarcult", | |
"years": [ | |
2001, | |
2004 | |
] | |
}, | |
{ | |
"name": "Sugar Ray", | |
"years": [ | |
1997 | |
] | |
}, | |
{ | |
"name": "Suicidal Tendencies", | |
"years": [ | |
1999 | |
] | |
}, | |
{ | |
"name": "Suicide Machines", | |
"years": [ | |
1996, | |
2000, | |
2003, | |
2005, | |
2017 | |
] | |
}, | |
{ | |
"name": "Suicide Silence", | |
"years": [ | |
2010 | |
] | |
}, | |
{ | |
"name": "The Suit", | |
"years": [ | |
2011 | |
] | |
}, | |
{ | |
"name": "Sum 41", | |
"years": [ | |
2001, | |
2003, | |
2007, | |
2009, | |
2010, | |
2011, | |
2016 | |
] | |
}, | |
{ | |
"name": "The Summer Set", | |
"years": [ | |
2010, | |
2013, | |
2014, | |
2016 | |
] | |
}, | |
{ | |
"name": "The Sunstreak", | |
"years": [ | |
2006 | |
] | |
}, | |
{ | |
"name": "Supe", | |
"years": [ | |
2008 | |
] | |
}, | |
{ | |
"name": "Super Water Sympathy", | |
"years": [ | |
2012, | |
2013 | |
] | |
}, | |
{ | |
"name": "Supernova", | |
"years": [ | |
1995, | |
2007 | |
] | |
}, | |
{ | |
"name": "Survive This!", | |
"years": [ | |
2014 | |
] | |
}, | |
{ | |
"name": "The Swellers", | |
"years": [ | |
2013 | |
] | |
}, | |
{ | |
"name": "Swingin' Utters", | |
"years": [ | |
1995, | |
1998 | |
] | |
}, | |
{ | |
"name": "Switched", | |
"years": [ | |
2001, | |
2002 | |
] | |
}, | |
{ | |
"name": "Sworn In", | |
"years": [ | |
2017 | |
] | |
}, | |
{ | |
"name": "Sydney", | |
"years": [ | |
2006 | |
] | |
}, | |
{ | |
"name": "Sykes", | |
"years": [ | |
2016 | |
] | |
}, | |
{ | |
"name": "Sylar", | |
"years": [ | |
2017 | |
] | |
}, | |
{ | |
"name": "T. Mills", | |
"years": [ | |
2012 | |
] | |
}, | |
{ | |
"name": "Taking Back Sunday", | |
"years": [ | |
2003, | |
2004, | |
2012 | |
] | |
}, | |
{ | |
"name": "Talib Kweli", | |
"years": [ | |
2006 | |
] | |
}, | |
{ | |
"name": "TAT", | |
"years": [ | |
2006, | |
2008, | |
2009, | |
2015 | |
] | |
}, | |
{ | |
"name": "Taylor Thrash", | |
"years": [ | |
2012 | |
] | |
}, | |
{ | |
"name": "Teenage Bottlerocket", | |
"years": [ | |
2014, | |
2016 | |
] | |
}, | |
{ | |
"name": "Ten Second Epic", | |
"years": [ | |
2012 | |
] | |
}, | |
{ | |
"name": "Terrible Things", | |
"years": [ | |
2011 | |
] | |
}, | |
{ | |
"name": "Terror", | |
"years": [ | |
2014 | |
] | |
}, | |
{ | |
"name": "Tess Dunn", | |
"years": [ | |
2009, | |
2010, | |
2011, | |
2012, | |
2013, | |
2014, | |
2015 | |
] | |
}, | |
{ | |
"name": "Texas in July", | |
"years": [ | |
2013 | |
] | |
}, | |
{ | |
"name": "There For Tomorrow", | |
"years": [ | |
2011 | |
] | |
}, | |
{ | |
"name": "They All Float", | |
"years": [ | |
2012 | |
] | |
}, | |
{ | |
"name": "Thirty Seconds to Mars", | |
"years": [ | |
2007 | |
] | |
}, | |
{ | |
"name": "This Wild Life", | |
"years": [ | |
2014, | |
2015 | |
] | |
}, | |
{ | |
"name": "Thrice", | |
"years": [ | |
2001, | |
2002, | |
2003, | |
2005, | |
2008 | |
] | |
}, | |
{ | |
"name": "Throwdown", | |
"years": [ | |
2007 | |
] | |
}, | |
{ | |
"name": "Throw The Fight", | |
"years": [ | |
2007 | |
] | |
}, | |
{ | |
"name": "Thursday", | |
"years": [ | |
2002, | |
2004, | |
2006 | |
] | |
}, | |
{ | |
"name": "Tiger Army", | |
"years": [ | |
2002, | |
2004, | |
2007 | |
] | |
}, | |
{ | |
"name": "Tillie", | |
"years": [ | |
2017 | |
] | |
}, | |
{ | |
"name": "Tilt", | |
"years": [ | |
1995, | |
1998 | |
] | |
}, | |
{ | |
"name": "Tip the Van", | |
"years": [ | |
2005, | |
2006 | |
] | |
}, | |
{ | |
"name": "Title Fight", | |
"years": [ | |
2007, | |
2012 | |
] | |
}, | |
{ | |
"name": "To The Wind", | |
"years": [ | |
2014 | |
] | |
}, | |
{ | |
"name": "Tomorrow's Bad Seeds", | |
"years": [ | |
2011, | |
2012 | |
] | |
}, | |
{ | |
"name": "Tonight Alive", | |
"years": [ | |
2012, | |
2013, | |
2016 | |
] | |
}, | |
{ | |
"name": "Tony D'Angelo", | |
"years": [ | |
2012 | |
] | |
}, | |
{ | |
"name": "Too Close to Touch", | |
"years": [ | |
2016, | |
2017 | |
] | |
}, | |
{ | |
"name": "Tornado Rider", | |
"years": [ | |
2011 | |
] | |
}, | |
{ | |
"name": "Total Chaos", | |
"years": [ | |
2007 | |
] | |
}, | |
{ | |
"name": "Trading Bryson", | |
"years": [ | |
1997 | |
] | |
}, | |
{ | |
"name": "Transit", | |
"years": [ | |
2012, | |
2015 | |
] | |
}, | |
{ | |
"name": "Transplants", | |
"years": [ | |
2005 | |
] | |
}, | |
{ | |
"name": "Trashing Andi", | |
"years": [ | |
2003 | |
] | |
}, | |
{ | |
"name": "Treaty of Paris", | |
"years": [ | |
2008 | |
] | |
}, | |
{ | |
"name": "Treephort", | |
"years": [ | |
2003 | |
] | |
}, | |
{ | |
"name": "Trophy Eyes", | |
"years": [ | |
2015, | |
2017 | |
] | |
}, | |
{ | |
"name": "Trust Company", | |
"years": [ | |
2002 | |
] | |
}, | |
{ | |
"name": "T.S.O.L.", | |
"years": [ | |
2008, | |
2017 | |
] | |
}, | |
{ | |
"name": "Tsunami Bomb", | |
"years": [ | |
2002, | |
2003, | |
2005, | |
2016 | |
] | |
}, | |
{ | |
"name": "Twilight Creeps", | |
"years": [ | |
2017 | |
] | |
}, | |
{ | |
"name": "Twin Atlantic", | |
"years": [ | |
2012 | |
] | |
}, | |
{ | |
"name": "Twiztid", | |
"years": [ | |
2003 | |
] | |
}, | |
{ | |
"name": "Underoath", | |
"years": [ | |
2003, | |
2004, | |
2005, | |
2006, | |
2008 | |
] | |
}, | |
{ | |
"name": "Unlocking The Truth", | |
"years": [ | |
2014 | |
] | |
}, | |
{ | |
"name": "Unsane", | |
"years": [ | |
1998 | |
] | |
}, | |
{ | |
"name": "The Unseen", | |
"years": [ | |
2003, | |
2005, | |
2007 | |
] | |
}, | |
{ | |
"name": "Unwritten Law", | |
"years": [ | |
1996, | |
1998, | |
1999, | |
2011 | |
] | |
}, | |
{ | |
"name": "Upon a Burning Body", | |
"years": [ | |
2013 | |
] | |
}, | |
{ | |
"name": "The Urge", | |
"years": [ | |
1998 | |
] | |
}, | |
{ | |
"name": "Urinal Mints", | |
"years": [ | |
2005 | |
] | |
}, | |
{ | |
"name": "The Used", | |
"years": [ | |
2002, | |
2003, | |
2004, | |
2007, | |
2012, | |
2013 | |
] | |
}, | |
{ | |
"name": "Valencia", | |
"years": [ | |
2007, | |
2008 | |
] | |
}, | |
{ | |
"name": "Valient Thorr", | |
"years": [ | |
2004, | |
2005, | |
2006, | |
2017 | |
] | |
}, | |
{ | |
"name": "Vampires Everywhere!", | |
"years": [ | |
2012 | |
] | |
}, | |
{ | |
"name": "The Vandals", | |
"years": [ | |
1998, | |
1999, | |
2001, | |
2004, | |
2007, | |
2008 | |
] | |
}, | |
{ | |
"name": "The Vanished", | |
"years": [ | |
2005 | |
] | |
}, | |
{ | |
"name": "Vanna", | |
"years": [ | |
2008, | |
2012, | |
2014, | |
2016 | |
] | |
}, | |
{ | |
"name": "Vaux", | |
"years": [ | |
2003, | |
2004 | |
] | |
}, | |
{ | |
"name": "Veara", | |
"years": [ | |
2011 | |
] | |
}, | |
{ | |
"name": "Veil Of Maya", | |
"years": [ | |
2016 | |
] | |
}, | |
{ | |
"name": "Vendetta Red", | |
"years": [ | |
2003 | |
] | |
}, | |
{ | |
"name": "VersaEmerge", | |
"years": [ | |
2009, | |
2010, | |
2013 | |
] | |
}, | |
{ | |
"name": "The Vincent Black Shadow", | |
"years": [ | |
2006, | |
2007 | |
] | |
}, | |
{ | |
"name": "Vision of Disorder", | |
"years": [ | |
1997, | |
1999 | |
] | |
}, | |
{ | |
"name": "Volumes", | |
"years": [ | |
2013, | |
2014, | |
2016 | |
] | |
}, | |
{ | |
"name": "Vonnegutt", | |
"years": [ | |
2011 | |
] | |
}, | |
{ | |
"name": "Voodoo Blue", | |
"years": [ | |
2005 | |
] | |
}, | |
{ | |
"name": "Wage War", | |
"years": [ | |
2016 | |
] | |
}, | |
{ | |
"name": "Waka Flocka Flame", | |
"years": [ | |
2016 | |
] | |
}, | |
{ | |
"name": "Wallpaper.", | |
"years": [ | |
2013 | |
] | |
}, | |
{ | |
"name": "War on Women", | |
"years": [ | |
2017 | |
] | |
}, | |
{ | |
"name": "Waterparks", | |
"years": [ | |
2013, | |
2015, | |
2016 | |
] | |
}, | |
{ | |
"name": "Watsky", | |
"years": [ | |
2014, | |
2017 | |
] | |
}, | |
{ | |
"name": "The Waves", | |
"years": [ | |
2017 | |
] | |
}, | |
{ | |
"name": "Wax", | |
"years": [ | |
2014 | |
] | |
}, | |
{ | |
"name": "We Are The In Crowd", | |
"years": [ | |
2010, | |
2012, | |
2014 | |
] | |
}, | |
{ | |
"name": "We Are The Ocean", | |
"years": [ | |
2012 | |
] | |
}, | |
{ | |
"name": "We Came As Romans", | |
"years": [ | |
2011, | |
2013, | |
2015 | |
] | |
}, | |
{ | |
"name": "We the Kings", | |
"years": [ | |
2008, | |
2009, | |
2010, | |
2012, | |
2014, | |
2016 | |
] | |
}, | |
{ | |
"name": "weatherPROOF", | |
"years": [ | |
2007 | |
] | |
}, | |
{ | |
"name": "Weerd Science", | |
"years": [ | |
2011 | |
] | |
}, | |
{ | |
"name": "Weezer", | |
"years": [ | |
2000 | |
] | |
}, | |
{ | |
"name": "We're Doomed", | |
"years": [ | |
2011 | |
] | |
}, | |
{ | |
"name": "West Beverly", | |
"years": [ | |
2002 | |
] | |
}, | |
{ | |
"name": "While She Sleeps", | |
"years": [ | |
2013, | |
2015 | |
] | |
}, | |
{ | |
"name": "Whitechapel", | |
"years": [ | |
2010, | |
2016 | |
] | |
}, | |
{ | |
"name": "White Kaps", | |
"years": [ | |
1997 | |
] | |
}, | |
{ | |
"name": "The White Noise", | |
"years": [ | |
2017 | |
] | |
}, | |
{ | |
"name": "Wick-It The Instigator", | |
"years": [ | |
2012 | |
] | |
}, | |
{ | |
"name": "William Control", | |
"years": [ | |
2017 | |
] | |
}, | |
{ | |
"name": "Wind In Sails", | |
"years": [ | |
2014 | |
] | |
}, | |
{ | |
"name": "Winds Of Plague", | |
"years": [ | |
2011 | |
] | |
}, | |
{ | |
"name": "Windsor Drive", | |
"years": [ | |
2011 | |
] | |
}, | |
{ | |
"name": "With Confidence", | |
"years": [ | |
2016 | |
] | |
}, | |
{ | |
"name": "Wizo", | |
"years": [ | |
1995 | |
] | |
}, | |
{ | |
"name": "Woe, Is Me", | |
"years": [ | |
2011, | |
2013 | |
] | |
}, | |
{ | |
"name": "The Wonder Years", | |
"years": [ | |
2011, | |
2013, | |
2015 | |
] | |
}, | |
{ | |
"name": "The Word Alive", | |
"years": [ | |
2010, | |
2011, | |
2014, | |
2016 | |
] | |
}, | |
{ | |
"name": "Yelawolf", | |
"years": [ | |
2011 | |
] | |
}, | |
{ | |
"name": "Yellowcard", | |
"years": [ | |
2002, | |
2003, | |
2004, | |
2007, | |
2012, | |
2014, | |
2016 | |
] | |
}, | |
{ | |
"name": "You Me at Six", | |
"years": [ | |
2009, | |
2010, | |
2012 | |
] | |
}, | |
{ | |
"name": "You Me Everyone We Know", | |
"years": [ | |
2007, | |
2008 | |
] | |
}, | |
{ | |
"name": "Young Guns", | |
"years": [ | |
2016 | |
] | |
}, | |
{ | |
"name": "Young London", | |
"years": [ | |
2012, | |
2013 | |
] | |
}, | |
{ | |
"name": "You Win Anyways", | |
"years": [ | |
2004, | |
2005, | |
2006, | |
2007, | |
2008 | |
] | |
}, | |
{ | |
"name": "Zao", | |
"years": [ | |
2005 | |
] | |
}, | |
{ | |
"name": "Zebrahead", | |
"years": [ | |
1998, | |
2006 | |
] | |
}, | |
{ | |
"name": "For Today", | |
"years": [ | |
2012, | |
2014 | |
] | |
} | |
] |