top_fraggers = {
let svg = d3.create('svg').style("background-color", '#101010').attr("preserveAspectRatio", "none") .attr("viewBox", "-2 -2 880 880")
let phantom_color = "#609faa"
let vandal_color = "#e83a49"
let x_fkp_scale = d3.scaleLinear()
.domain([0, .4])
.range([270, 625])
svg.append("image")
.attr("xlink:href", "")
.attr("id", "logoImage")
.attr("x", 200)
.attr("y", 10)
.attr("width", 500)
.attr("height", 110);
svg.append("text")
.attr("class", "signature")
.attr("text-anchor", "left")
.attr("y", 2)
.attr("x", 0)
.attr("dy", ".75em")
.attr('style', "font-size: 20px; font-family: 'Bebas Neue';")
.text("Author: Sam Rosenberg").call(addWebFont, 'Bebas Neue', 'https://fonts.gstatic.com/s/bebasneue/v2/JTUSjIg69CK48gW7PXoo9WlhyyTh89Y.woff2').attr('style', d => "font-size: 20px; font-family: 'Bebas Neue';").attr("fill", "white");
svg.append("text")
.attr("class", "signature")
.attr("text-anchor", "left")
.attr("y", 38)
.attr("x", 0)
.attr("dy", ".75em")
.attr('style', "font-size: 20px; font-family: 'Bebas Neue';")
.text("Data from rib.gg").call(addWebFont, 'Bebas Neue', 'https://fonts.gstatic.com/s/bebasneue/v2/JTUSjIg69CK48gW7PXoo9WlhyyTh89Y.woff2').attr('style', d => "font-size: 20px; font-family: 'Bebas Neue';").attr("fill", "white");
svg.append("text")
.attr("class", "twitter")
.attr("text-anchor", "left")
.attr("y", 20)
.attr("x", 16)
.attr("dy", ".75em")
.attr('style', "font-size: 20px; font-family: 'Bebas Neue';")
.text("@MasGrebnesor").call(addWebFont, 'Bebas Neue', 'https://fonts.gstatic.com/s/bebasneue/v2/JTUSjIg69CK48gW7PXoo9WlhyyTh89Y.woff2').attr('style', d => "font-size: 20px; font-family: 'Bebas Neue';").attr("fill", "white");
svg.append("image")
.attr("xlink:href", "https://cdn4.iconfinder.com/data/icons/social-media-icons-the-circle-set/48/twitter_circle-512.png")
.attr("id", "logoImage")
.attr("x", 0)
.attr("y", 22)
.attr("width", 14)
.attr("height", 14);
let left_offset = 110
let top_offset = 200
var text2 = svg.append("svg:text").attr("class", "title")
.attr("text-anchor", "middle")
.attr("y", top_offset-20)
.attr("x", 900/2)
.attr('style', "font-size: 57px; font-family: 'Bebas Neue';").attr("fill", "black");
;
text2.append("svg:tspan").style("fill", "#c6b275").text("Enter the ");
text2.append("svg:tspan").style("fill", "white").text("Visual Title");
return svg.node();
}