Skip to content

Instantly share code, notes, and snippets.

@enjalot
Last active October 12, 2020 13:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save enjalot/0c029c6295d1870050c89c75bed2bb6e to your computer and use it in GitHub Desktop.
Save enjalot/0c029c6295d1870050c89c75bed2bb6e to your computer and use it in GitHub Desktop.
Libraries used in bl.ocks

A dump of 2000+ libraries found in the 14,000+ blocks we have indexed.

I parse the html files of all the blocks with this code.

It would be nice to have a structured way to pull the version out of this variety of URL patterns. Perhaps someone will come up with a crazy regex that does it.

This is likely the first step to indexing the library version for blockbuilder search. We have an issue for this tracked here.

Built with blockbuilder.org

<!DOCTYPE html>
<head>
<meta charset="utf-8">
<script src="https://cdnjs.cloudflare.com/ajax/libs/d3/3.5.5/d3.min.js"></script>
<style>
body {
margin:0;position:fixed;top:0;right:0;bottom:0;left:0;
background-color: #111;
}
#libs {
position: absolute;
width: 100%;
height: 100%;
overflow: scroll;
font-family: Monospace;
}
.lib {
background-color: steelblue;
float: left;
clear: left;
margin: 1px;
white-space: nowrap
}
a {
color: white;
}
</style>
</head>
<body>
<div id="libs"></div>
<script>
var width = 960;
d3.csv("libs.csv", function(err, data) {
var libs = data.map(function(d) {
return {
url: d.url,
count: +d.count
}
}).sort(function(a,b) { return b.count - a.count})
console.log("libs", libs)
var max = d3.max(libs, function(d) { return d.count})
var widthScale = d3.scale.linear()
.domain([0, max])
.range([0, width])
var vis = d3.select("#libs")
var bars = vis.selectAll("div.lib")
.data(libs.filter(function(d){
//return d.url.indexOf('d3.v2') >= 0
//return d.url.indexOf('d3.v3') >= 0
//return d.url.indexOf('d3/3.') >= 0
//return d.url.indexOf('d3.v4') >= 0
//return d.url.match(/d3/)
return true
}))
bars.enter().append("div").classed("lib", true)
.append("a").attr({
href: function(d) { return d.url}
})
.text(function(d) {
return d.count + " " + d.url
})
bars.style({
width: function(d) { return widthScale(d.count) + "px"}
})
})
</script>
</body>
We can make this file beautiful and searchable if this error is corrected: Illegal quoting in line 165.
url,count
http://vis.stanford.edu/protovis/protovis-r3.2.js,1
http://github.com/simplegeo/polymaps/raw/v2.2.0/polymaps.min.js,7
http://github.com/simplegeo/polymaps/raw/v2.2.0/examples/canvas/procedural.js,1
http://github.com/mbostock/polymaps/raw/30a15c8165afc55a43df54779c232f3e5f8ee544/examples/loupe/loupe.js,2
http://github.com/mbostock/polymaps/raw/ce7f4734bf01d535108dc5c5127c55b252c43aaa/examples/loupe/loupe.js,1
http://github.com/simplegeo/polymaps/raw/v2.3.0/polymaps.min.js,8
http://github.com/simplegeo/polymaps/raw/v2.3.0/lib/raphaeljs/icons.js,2
http://github.com/simplegeo/polymaps/raw/v2.3.0/lib/crimespotting/crimespotting.js,6
http://polymaps.org/polymaps.min.js,3
http://github.com/mbostock/polymaps/raw/fcfe7020bf8dfa27c4c7b032d74b6b5e24a18868/polymaps.min.js,1
http://github.com/stamen/modestmaps-js/raw/master/modestmaps.js,1
http://github.com/simplegeo/polymaps/raw/v2.2.0/polymaps.js,1
http://github.com/simplegeo/polymaps/raw/v2.3.0/polymaps.js,1
http://github.com/mbostock/polymaps/raw/2142f192bc527e4cb17a113ef46219bf1999b269/polymaps.min.js,1
http://github.com/mbostock/polymaps/raw/2142f192bc527e4cb17a113ef46219bf1999b269/lib/crimespotting/crimespotting.js,1
http://github.com/mbostock/polymaps/raw/586fbb0346548a5559b6edea8aab76ac51334da5/lib/crimespotting/crimespotting.js,1
http://github.com/mbostock/protovis/raw/v3.3.1/protovis.js,2
http://github.com/protovis/protovis/raw/v3.3.1/protovis.min.js,1
http://github.com/protovis/protovis/raw/v3.3.1/examples/jquery-1.4.2.min.js,2
http://github.com/protovis/protovis/raw/v3.3.1/examples/slider/jquery-ui-1.8rc3.custom.min.js,2
http://github.com/mbostock/d3/raw/841f35456831192fd008222c8ae15b6738acace9/d3.min.js,1
http://github.com/mbostock/d3/raw/841f35456831192fd008222c8ae15b6738acace9/lib/jit/voronoi.min.js,1
//d3js.org/d3.v3.min.js,1312
http://documentcloud.github.com/backbone/test/vendor/jquery-1.4.2.js,1
http://documentcloud.github.com/backbone/test/vendor/underscore-1.1.3.js,1
http://documentcloud.github.com/backbone/backbone.js,2
https://github.com/mbostock/d3/raw/v1.2.1/d3.js,1
https://github.com/mbostock/d3/raw/v1.3.0/d3.js,4
//d3js.org/topojson.v1.min.js,305
https://github.com/mbostock/d3/raw/v1.8.4/d3.js,4
https://github.com/simplegeo/polymaps/raw/v2.4.0/polymaps.js,4
http://mbostock.github.com/d3/d3.js?1.29.5,2
http://polymaps.org/polymaps.min.js?2.5.0,3
http://maps.google.com/maps/api/js?sensor=true,9
http://mbostock.github.com/d3/d3.js?1.29.1,26
https://github.com/mbostock/d3/raw/v1.8.4/d3.geo.js,2
https://github.com/mbostock/d3/raw/master/d3.js,2
http://mbostock.github.com/d3/d3.js,155
http://mbostock.github.com/d3/d3.layout.js,32
https://github.com/mbostock/d3/raw/master/d3.min.js,1
https://github.com/Caged/d3/raw/master/d3.js,2
http://jsbeautifier.org/jquery/jquery.js,1
http://jsbeautifier.org/jquery/jquery.cookie.js,1
http://jsbeautifier.org/beautify.js,1
http://jsbeautifier.org/beautify-html.js,1
http://jsbeautifier.org/tests/sanitytest.js,1
http://jsbeautifier.org/tests/beautify-tests.js,1
http://jsbeautifier.org/unpackers/javascriptobfuscator_unpacker.js,1
http://jsbeautifier.org/unpackers/urlencode_unpacker.js,1
http://jsbeautifier.org/unpackers/p_a_c_k_e_r_unpacker.js,1
http://jsbeautifier.org/unpackers/myobfuscate_unpacker.js,1
http://tiles.mapbox.com/bclc/api/v1/embed.js?api=ol&size%5B%5D=500&size%5B%5D=300&center%5B%5D=140.83078056492&center%5B%5D=37.176345739761&center%5B%5D=7&layers%5B%5D=bclc-japan&options%5B%5D=legend&options%5B%5D=zoompan&options%5B%5D=tooltips&options%5B%5D=zoomwheel&el=ts-embed-1305221934214,1
http://mbostock.github.com/d3/d3.geom.js,13
http://d3js.org/d3.v3.min.js,3718
http://ajax.googleapis.com/ajax/libs/jquery/1.4.4/jquery.min.js,3
http://mbostock.github.com/d3/d3.js?1.24.0,1
http://mbostock.github.com/d3/d3.js?1.25.0,3
http://mbostock.github.com/d3/d3.time.js?1.25.0,1
https://raw.github.com/mbostock/d3/master/d3.js,4
http://mbostock.github.com/d3/d3.layout.js?1.25.0,1
http://mbostock.github.com/d3/d3.min.js,11
http://mbostock.github.com/d3/d3.layout.min.js,2
http://mbostock.github.com/d3/d3.geom.min.js,3
http://mbostock.github.com/d3/d3.js?1.27.1,6
http://mbostock.github.com/d3/d3.geom.js?1.27.1,1
http://mbostock.github.com/d3/d3.layout.js?1.27.1,1
http://mbostock.github.com/d3/d3.js?1.27.2,16
http://mbostock.github.com/d3/d3.behavior.js,1
http://mbostock.github.com/d3/d3.behavior.min.js,1
http://mbostock.github.com/d3/d3.v2.js,115
http://mbostock.github.com/d3/d3.layout.js?1.29.1,6
http://mbostock.github.com/d3/d3.time.js?1.29.1,3
http://mbostock.github.com/d3/d3.csv.js?1.29.1,1
http://mbostock.github.com/d3/d3.geom.js?1.29.1,2
https://raw.github.com/stamen/modestmaps-js/master/modestmaps.min.js,6
http://mapbox.github.com/wax/dist/wax.mm.js,1
http://code.jquery.com/jquery-1.6.2.min.js,4
https://raw.github.com/bewest/d3/bewest/d3.js,3
https://raw.github.com/bewest/d3/bewest/d3.behavior.js,1
https://raw.github.com/bewest/d3/bewest/d3.time.js,2
http://hperantunes01.appspot.com/static/js/d3/d3.min.js,1
http://hperantunes01.appspot.com/static/js/d3/d3.behavior.min.js,1
http://mbostock.github.com/d3/d3.js?1.29.6,2
http://mbostock.github.com/d3/d3.js?2.0.0,7
http://mbostock.github.com/d3/d3.csv.js?2.0.0,2
http://mbostock.github.com/d3/d3.time.js?2.0.0,3
http://mbostock.github.com/d3/d3.geom.js?2.0.0,1
http://mbostock.github.com/d3/d3.layout.js?2.0.0,1
https://raw.github.com/mbostock/pixymaps/master/pixymaps.js,1
http://mbostock.github.com/d3/d3.js?2.0.4,1
http://mbostock.github.com/d3/d3.geo.js?2.0.4,1
http://maps.google.com/maps/api/js?sensor=false,10
http://www.geosprocket.com/mapbox-wax/dist/wax.g.js,4
http://mbostock.github.com/d3/d3.js?2.0.3,6
http://mbostock.github.com/d3/d3.geom.js?2.0.3,2
http://mbostock.github.com/d3/d3.layout.js?2.0.3,2
http://ajax.googleapis.com/ajax/libs/jquery/1.6.2/jquery.min.js,2
https://raw.github.com/mbostock/d3/master/d3.min.js,2
https://raw.github.com/mbostock/d3/master/d3.geo.min.js,1
https://raw.github.com/mbostock/d3/master/d3.layout.min.js,1
http://code.jquery.com/jquery.js,4
http://mbostock.github.com/d3/d3.js?2.1.3,10
http://mbostock.github.com/d3/d3.layout.js?2.1.3,9
http://mbostock.github.com/d3/d3.geom.js?2.1.3,9
http://mbostock.github.com/d3/d3.time.js,7
http://mbostock.github.com/d3/d3.layout.js?1.27.2,13
https://raw.github.com/stamen/modestmaps-js/v0.18.4/modestmaps.min.js,1
http://mbostock.github.com/d3/d3.js?2.3.0,11
http://mbostock.github.com/d3/d3.layout.js?2.3.0,9
https://cdnjs.cloudflare.com/ajax/libs/d3/3.5.5/d3.min.js,1422
http://mbostock.github.com/d3/d3.csv.js,5
http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js,2
http://ajax.googleapis.com/ajax/libs/jqueryui/1.8/jquery-ui.min.js,1
http://x3dom.org/x3dom/example/x3dom.js,7
https://raw.github.com/mbostock/d3/v2.4.3/d3.js,1
http://mbostock.github.com/d3/d3.js?2.4.5,23
http://paulbourke.net/papers/conrec/conrec.js,2
https://raw.github.com/jasondavies/conrec.js/master/conrec.js,1
http://mbostock.github.com/d3/d3.layout.js?2.4.5,8
http://mbostock.github.com/d3/d3.csv.js?2.4.5,5
http://mbostock.github.com/d3/d3.js?2.4.6,5
http://mbostock.github.com/d3/d3.layout.js?2.4.6,1
http://mbostock.github.com/d3/d3.csv.js?2.4.6,1
http://mbostock.github.com/d3/d3.csv.js?2.3.0,1
http://mbostock.github.com/d3/d3.time.js?2.3.0,1
http://mbostock.github.com/d3/d3.js?1.26.0,1
http://mbostock.github.com/d3/d3.geom.js?1.26.0,1
http://mbostock.github.com/d3/d3.layout.js?1.26.0,1
http://code.jquery.com/jquery-1.6.4.min.js,2
http://openlayers.org/api/OpenLayers.js,2
http://mbostock.github.com/d3//d3.geo.js,1
http://mbostock.github.com/d3//d3.geom.js,1
http://mbostock.github.com/d3//d3.layout.js,1
https://github.com/simplegeo/polymaps/raw/master/polymaps.min.js,1
http://code.jquery.com/jquery.min.js,6
http://mbostock.github.com/d3/d3.js?2.5.0,24
http://mbostock.github.com/d3/d3.csv.js?2.5.0,7
http://mbostock.github.com/d3/d3.geo.js,10
http://mbostock.github.com/d3/d3.geo.js?2.5.0,3
http://www.openlayers.org/dev/OpenLayers.js,2
http://mbostock.github.com/d3/d3.layout.js?2.5.0,2
http://mbostock.github.com/d3/d3.time.js?2.5.0,1
http://jashkenas.github.com/coffee-script/extras/coffee-script.js,10
http://mbostock.github.com/d3/d3.js?2.6.0,16
http://mbostock.github.com/d3/d3.layout.js?2.6.0,3
http://mbostock.github.com/d3/d3.geom.js?2.6.0,2
http://svgmap.github.com/lib/jquery.min.js,2
http://svgmap.github.com/lib/raphael-min.js,2
http://svgmap.github.com/svgmap.min.js,1
http://mbostock.github.com/d3/d3.js?2.5.1,1
http://mbostock.github.com/d3/d3.csv.js?2.6.0,3
http://mbostock.github.com/d3/d3.time.js?2.6.0,2
http://maps.googleapis.com/maps/api/js?sensor=false,5
http://www.google.com/jsapi,10
http://mapbox.com/wax/dist/wax.g.min.js,1
http://mbostock.github.com/d3/d3.js?2.7.0,3
https://raw.github.com/mapbox/wax/master/ext/leaflet.js,2
https://raw.github.com/mapbox/wax/master/dist/wax.leaf.js,3
http://code.jquery.com/jquery-1.7.2.min.js,20
https://rawgithub.com/heygrady/transform/master/dist/jquery.transform-0.9.3.min.js,2
https://rawgithub.com/jcoglan/sylvester/master/src/sylvester.js,2
https://rawgithub.com/jcoglan/sylvester/master/src/vector.js,2
https://rawgithub.com/jcoglan/sylvester/master/src/matrix.js,2
/blank.html" onload="google.j.l()" onerror="google.j.e()"></iframe><textarea id=wgjc style=display:none name=wgjc></textarea><textarea id=wwcache style=display:none name=wwcache></textarea><textarea id=csi style=display:none name=csi></textarea><textarea id=hcache style=display:none name=hcache></textarea><div id=gac_scont></div><div id=main><span class=ctr-p id=body><center><div id=lga style="height:242px"><div id="hplogo" style="width:500px;height:270px;position:relative;padding-top:28px;background:url(/images/srpr/logo3w.png) center no-repeat"></div><noscript><style>#hplogo{background:url('/images/srpr/logo3w.png')}</style></noscript><script>(function(){google.doodle=google.doodle||{};google.doodle.url="/search?q=Joyeuses+f%C3%AAtes&ct=holiday11-hp&oi=ddle";var a=document.createElement("script");a.src="/logos/2011/holiday11_init.js";a.async=!0;document.body.appendChild(a);})();</script></div><div style="height:102px"></div><div style="font-size:83%;min-height:3.5em"><br></div><div id=res></div></center></span> <div id=footer style="display:none" class=ctr-p><div> <div id=ftby><div id=fll ><div><a href="/intl/en/ads/">Advertising&nbsp;Programs</a><a href="/services/">Business Solutions</a><a href="/intl/en/privacy.html">Privacy</a></div><div><a href="https://plus.google.com/116899029375914044550,2
https://rawgithub.com/abernier/1515911/raw/index.js,1
http://mbostock.github.com/d3/d3.js?2.7.1,6
http://d3js.org/d3.v2.min.js,116
http://mbostock.github.com/d3/d3.csv.js?2.7.1,2
http://www.modernizr.com/downloads/modernizr-2.0.6.js,1
http://code.jquery.com/jquery-latest.min.js,22
https://raw.github.com/toji/gl-matrix/master/gl-matrix.js,1
https://raw.github.com/dataarts/dat.gui/41c76286f7ba77786301f9120e8dd88af377de37/DAT.GUI.js,1
http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js,15
http://code.jquery.com/jquery-1.5.1.min.js,1
https://raw.github.com/gist/1595803/d3mod.js,1
http://mbostock.github.com/d3/d3.layout.js?2.7.1,2
https://ajax.googleapis.com/ajax/libs/jquery/1.8/jquery.min.js,10
//ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js,4
//ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js,28
https://ajax.googleapis.com/ajax/libs/jqueryui/1.8.16/jquery-ui.js,1
http://flesler-plugins.googlecode.com/files/jquery.scrollTo-1.4.2.js,1
https://raw.github.com/larskotthoff/d3/varline/src/svg/line-variable.js,1
https://raw.github.com/mapbox/wax/master/ext/modestmaps.min.js,2
https://raw.github.com/mapbox/wax/master/dist/wax.mm.min.js,4
http://mbostock.github.com/d3/d3.js?2.7.2,5
http://mbostock.github.com/d3/d3.csv.js?2.7.2,2
http://mbostock.github.com/d3/d3.time.js?2.7.2,2
http://maps.google.com/maps/api/js?v=3.5&amp;sensor=false,1
http://mumbai.geology.wisc.edu/lib/OpenLayers-2.11/OpenLayers.js,1
http://mumbai.geology.wisc.edu/lib/d3/d3.js,1
http://mumbai.geology.wisc.edu/lib/jquery/jquery-1.7.1.min.js,1
http://mapbox.com/wax/dist/modestmaps.js,1
http://mapbox.com/wax/dist/wax.mm.min.js,1
https://raw.github.com/larskotthoff/d3/axisarrange-tmp/d3.js,1
http://ajax.microsoft.com/ajax/jquery.templates/beta1/jquery.tmpl.min.js,1
https://raw.github.com/gist/1664946/jQuery.fn.carouFredSel-5.5.0.js,1
https://raw.github.com/maxatwork/form2js/master/src/form2js.js,1
https://raw.github.com/maxatwork/form2js/master/src/jquery.toObject.js,1
http://d3js.org/d3.v2.js,145
//d3js.org/queue.v1.min.js,28
http://mbostock.github.com/d3/d3.js?2.7.3,1
//ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js,3
//cdnjs.cloudflare.com/ajax/libs/handlebars.js/1.0.rc.1/handlebars.min.js,1
//cdnjs.cloudflare.com/ajax/libs/ember.js/1.0.0-pre.2/ember-1.0.0-pre.2.min.js,1
http://html5shim.googlecode.com/svn/trunk/html5.js,6
http://mbostock.github.com/d3/d3.js?2.7.4,7
https://rawgithub.com/jquery/jquery-ui/1-8-stable/ui/jquery.effects.core.js,1
http://mootools.net/download/get/mootools-core-1.4.4-full-nocompat.js,1
https://raw.github.com/GerHobbelt/d3/master/d3.latest.js?nocache=1,1
http://mbostock.github.com/d3/d3.v2.min.js?2.8.0,1
https://raw.github.com/GerHobbelt/d3/master/d3.latest.js,2
http://gerhobbelt.github.com/bl.ocks.org-hack/fixit.js,21
http://mbostock.github.com/d3/d3.v2.js?2.8.0,7
http://bost.ocks.org/mike/d3.v2.min.js,1
https://raw.github.com/lgrammel/d3/master/d3.v2.js,1
https://raw.github.com/mbostock/d3/master/d3.v2.min.js,3
http://code.jquery.com/jquery-1.7.1.min.js,8
http://www.larsko.org/v/d3.min.js,1
http://www.larsko.org/v/hpi/chernoff.js,1
https://raw.github.com/mapbox/wax/v4/ext/modestmaps.min.js,1
https://raw.github.com/mapbox/wax/v4/dist/wax.mm.min.js,1
https://ajax.googleapis.com/ajax/libs/mootools/1.4.5/mootools.js,1
https://raw.github.com/stamen/modestmaps-js/master/modestmaps.js,3
http://ajax.aspnetcdn.com/ajax/jquery.templates/beta1/jquery.tmpl.min.js,1
https://github.com/maccman/spine/raw/master/lib/spine.js,1
https://github.com/maccman/spine/raw/master/lib/ajax.js,1
https://github.com/maccman/spine/raw/master/lib/relation.js,1
http://mbostock.github.com/d3/d3.js?2.8.0,1
http://mbostock.github.com/d3/d3.v2.js?2.8.1,13
http://code.leafletjs.com/leaflet-0.3.1/leaflet.js,3
https://raw.github.com/simplegeo/polymaps/v2.5.0/polymaps.min.js,2
http://github.com/jashkenas/coffee-script/raw/master/extras/coffee-script.js,2
http://documentcloud.github.com/underscore/underscore-min.js,3
http://canvg.googlecode.com/svn/trunk/rgbcolor.js,1
http://canvg.googlecode.com/svn/trunk/canvg.js,2
http://www.nihilogic.dk/labs/canvas2image/canvas2image.js,1
http://www.nihilogic.dk/labs/canvas2image/base64.js,1
https://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js,1
https://raw.github.com/fryn/html5slider/master/html5slider.js,3
https://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js,1
http://zeptojs.com/zepto.min.js,2
http://keithcirkel.co.uk/jwerty/jwerty.js,2
http://github.com/mbostock/d3/raw/v1.8.2/d3.js,1
http://github.com/GerHobbelt/d3/raw/bleeding-edge/d3.latest.js,1
http://mbostock.github.com/d3/d3.v2.js?2.9.1,5
https://raw.github.com/jcoglan/sylvester/master/src/vector.js,1
http://mbostock.github.com/d3/d3.js?2.7.5,1
http://documentcloud.github.com/underscore/underscore.js,26
http://mbostock.github.com/d3/d3.js?2.9.0,3
http://mbostock.github.com/d3/d3.js?2.9.1,1
http://underscorejs.org/underscore-min.js,25
https://cdnjs.cloudflare.com/ajax/libs/d3/3.5.6/d3.min.js,325
https://ajax.googleapis.com/ajax/libs/mootools/1.3.0/mootools.js,1
http://mbostock.github.com/d3/d3.v2.min.js?2.9.1,2
http://maps.googleapis.com/maps/api/js?key=AIzaSyDRngi4TwTlx3r9zRXxIGzbSAq6OcEpxjA&sensor=false,1
https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js,11
http://underscorejs.org/underscore.js,13
http://d3js.org/d3.v2.js?2.9.1,10
https://www.google.com/jsapi,9
http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js,7
https://raw.github.com/mbostock/d3/8fe5b945ed7f4867b13a257d424dd29b1dd37e13/d3.v2.js,2
https://github.com/benjchristensen/d3/raw/fix-log-ticks/d3.v2.js,1
http://mbostock.github.com/d3/d3.js?2.9.2,5
//ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js,7
http://ajax.cdnjs.com/ajax/libs/json2/20110223/json2.js,1
http://ajax.cdnjs.com/ajax/libs/underscore.js/1.1.6/underscore-min.js,1
http://ajax.cdnjs.com/ajax/libs/backbone.js/0.9.2/backbone-min.js,1
http://d3js.org/d3.v2.min.js?2.9.3,4
https://raw.github.com/DmitryBaranovskiy/raphael/master/raphael-min.js,2
https://raw.github.com/mapbox/wax/master/dist/wax.leaf.min.js,1
http://code.jquery.com/jquery-latest.js,9
http://codepen.io/javascripts/libs/prefixfree.min.js,1
http://codepen.io/javascripts/libs/modernizr.js,1
https://raw.github.com/CloudMade/Leaflet/master/dist/leaflet.js,1
http://api.tiles.mapbox.com/mapbox.js/v0.6.5/mapbox.js,14
https://d3js.org/d3.v3.min.js,20
http://d3js.org/d3.v2.min.js?2.9.5,2
https://raw.github.com/maccman/spine/master/lib/spine.js,1
https://raw.github.com/maccman/spine/master/lib/ajax.js,1
http://mapbox.com/mapbox.js/mapbox.min.js,1
http://d3js.org/d3.v2.min.js?2.8.1,11
https://raw.github.com/d3/d3-plugins/clip/geo/clip/clip.js,3
https://raw.github.com/d3/d3-plugins/master/cie/cie.js,1
http://d3js.org/d3.v2.min.js?2.9.1,47
https://gist.github.com/2973775.js,1
http://cdn.leafletjs.com/leaflet-0.3.1/leaflet.js,3
http://d3js.org/d3.v2.min.js?2.9.6,7
https://maps.googleapis.com/maps/api/js?sensor=true,2
http://code.jquerygeo.com/jquery.geo-1.0a4.min.js,1
https://rawgithub.com/abernier/3156626/raw/jquery.carouFredSel-5.6.4-packed.js,1
https://rawgithub.com/fryn/html5slider/gh-pages/html5slider.js,1
http://mapbox.com/wax/externals/leaflet/leaflet.js,1
https://raw.github.com/mapbox/wax/6bfa87a60a49c6f7197045899a4a0cc59f6de974/dist/wax.leaf.js,1
https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js,4
https://rawgithub.com/jashkenas/backbone/master/backbone.js,2
http://GerHobbelt.github.com/nvd3/nv.d3.js,1
http://GerHobbelt.github.com/nvd3/src/tooltip.js,1
http://GerHobbelt.github.com/nvd3/src/utils.js,1
http://GerHobbelt.github.com/nvd3/src/models/legend.js,1
http://GerHobbelt.github.com/nvd3/src/models/axis.js,1
http://GerHobbelt.github.com/nvd3/src/models/scatter.js,1
http://GerHobbelt.github.com/nvd3/src/models/line.js,1
http://GerHobbelt.github.com/nvd3/src/models/lineWithFocusChart.js,1
http://novus.github.com/nvd3/nv.d3.js,1
https://ajax.googleapis.com/ajax/libs/jqueryui/1.8.21/jquery-ui.min.js,1
http://code.jquery.com/jquery-1.8.1.js,1
http://backbonejs.org/backbone.js,1
http://coffeescript.org/extras/coffee-script.js,21
https://ajax.googleapis.com/ajax/libs/jqueryui/1.8.21/jquery-ui.js,2
https://raw.github.com/gist/1579671/rAF.js,4
https://raw.github.com/gist/3225993/loop.js,4
https://raw.github.com/EightMedia/hammer.js/master/hammer.js,1
https://raw.github.com/EightMedia/hammer.js/master/jquery.hammer.js,1
http://dat-gui.googlecode.com/git/build/dat.gui.js,3
http://d3js.org/d3.v2.js?2.9.5,2
http://d3js.org/d3.v2.js?2.9.6,3
http://api.tiles.mapbox.com/mapbox.js/v0.6.3/mapbox.js,4
https://rawgithub.com/EightMedia/hammer.js/v1.0.5/dist/hammer.js,1
https://rawgithub.com/EightMedia/hammer.js/v1.0.5/dist/jquery.hammer.js,1
https://rawgithub.com/paulirish/1579671/raw/rAF.js,2
https://rawgithub.com/abernier/3225993/raw/loop.js,2
https://rawgithub.com/brandonaaron/jquery-mousewheel/master/jquery.mousewheel.js,1
http://d3js.org/d3.v2.min.js?2.10.0,31
http://api.tiles.mapbox.com/mapbox.js/v0.6.4/mapbox.js,11
http://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_SVG,2
http://box2dweb.googlecode.com/svn/trunk/Box2D.js,4
https://dnv9my2eseobd.cloudfront.net/mapbox.js/v0.6.7/mapbox.js,1
https://dnv9my2eseobd.cloudfront.net/mapbox.js/v0.6.4/mapbox.js,2
https://raw.github.com/novus/nvd3/master/lib/d3.v2.js,1
https://raw.github.com/novus/nvd3/master/nv.d3.js,1
https://raw.github.com/novus/nvd3/master/src/tooltip.js,1
https://raw.github.com/novus/nvd3/master/src/utils.js,1
https://raw.github.com/novus/nvd3/master/src/models/legend.js,1
https://raw.github.com/novus/nvd3/master/src/models/axis.js,1
https://raw.github.com/novus/nvd3/master/src/models/multiBar.js,1
https://raw.github.com/novus/nvd3/master/src/models/multiBarChart.js,1
http://zjonsson.github.com/zQuiz/zQuiz.js,1
https://ajax.googleapis.com/ajax/libs/jquery/1.4.4/jquery.min.js,1
http://jquizme.googlecode.com/hg/releases/pre-release%20of%20jQuizMe%202.2%20fixed/jQuizMe-2.2.js,1
http://code.jquery.com/jquery-1.7.min.js,1
//d3js.org/d3.geo.projection.v0.min.js,112
https://raw.github.com/justinvdm/d3/add-balloon-layout-compile/d3.v2.js,3
http://d3js.org/d3.v2.min.js?2.10.1,16
https://raw.github.com/d3/d3-plugins/master/geo/projection/projection.js,15
//ajax.googleapis.com/ajax/libs/jquery/1.8.0/jquery.min.js,1
//cdnjs.cloudflare.com/ajax/libs/underscore.js/1.3.3/underscore-min.js,1
https://spreadsheets.google.com/feeds/list/0Agxrt1aeoXHOdFlWbl9tQm12cWRlRWdMVFY0bER4c2c/od6/public/values?alt=json-in-script&callback=myCallback,1
http://d3js.org/d3.geo.projection.v0.min.js,165
http://api.tiles.mapbox.com/mapbox.js/v0.6.6/mapbox.js,21
http://cdn.leafletjs.com/leaflet-0.4.4/leaflet.js,1
http://code.jquery.com/jquery-1.8.2.js,5
http://code.jquery.com/ui/1.9.0/jquery-ui.js,4
http://bdon.org/js/d3.v2.js,1
http://bdon.org/js/Three.js,1
http://ajax.googleapis.com/ajax/libs/jquery/1.8.0/jquery.min.js,3
https://raw.github.com/d3/d3-plugins/master/force_labels/force_labels.js,1
https://raw.github.com/mbostock/d3/projection/d3.v2.min.js,1
https://raw.github.com/d3/d3-plugins/projection/geo/projection/projection.js,1
http://d3js.org/d3.v3.js,1472
https://raw.github.com/shawnbot/aight/master/aight.min.js,1
//cdnjs.cloudflare.com/ajax/libs/sizzle/1.4.4/sizzle.min.js,1
//cdnjs.cloudflare.com/ajax/libs/d3/2.10.0/d3.v2.min.js,7
https://maps.googleapis.com/maps/api/js?sensor=false,15
http://maps.googleapis.com/maps/api/js?sensor=false&libraries=places,4
http://maps.googleapis.com/maps/api/js?sensor=false&libraries=places,geometry,1
https://rawgithub.com/tmcw/simple-statistics/master/src/simple_statistics.js,3
http://code.jquery.com/jquery-1.8.2.min.js,63
http://api.tiles.mapbox.com/mapbox.js/v0.6.6/mapbox.uncompressed.js,1
http://www.minnpost.com/sites/default/files/js/js_de97366bf2ae2bb44590e7cf73e2a6d6.js,1
http://www.minnpost.com/sites/all/libraries/tinymce/jscripts/tiny_mce/tiny_mce.js?n,1
https://s3.amazonaws.com/data.minnpost/js/jquery-1.3.2/jquery-1.3.2.min.js,1
https://s3.amazonaws.com/data.minnpost/js/underscore-1.3.3/underscore-min.js,1
https://s3.amazonaws.com/data.minnpost/js/jquery-custom-master-20120606/jquery-1.7.2.custom.min.js,1
https://s3.amazonaws.com/data.minnpost/js/jquery.jsonp-2.4.0/jquerycustom.jsonp-2.4.0.min.js,1
https://s3.amazonaws.com/data.minnpost/js/d3-2.10.3/d3.v2.min.js,1
http://code.jquery.com/mobile/1.2.0/jquery.mobile-1.2.0.min.js,1
http://code.jquery.com/jquery-1.10.2.min.js,26
http://d3js.org/d3.v2.min.js?v2.10.3,1
http://cdn.leafletjs.com/leaflet-0.4.5/leaflet.js,2
https://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js,3
http://d3js.org/d3.v2.js?2.9.3,12
http://api.tiles.mapbox.com/mapbox.js/v0.6.7-dev/mapbox.js,1
http://cdnjs.cloudflare.com/ajax/libs/d3/2.10.0/d3.v2.min.js,1
http://mikeheavers.com/transfers/projects/js/d3.v2.min.js,1
http://mikeheavers.com/transfers/projects/js/packages.js,1
http://mikeheavers.com/transfers/projects/js/dat.gui.min.js,1
https://ajax.googleapis.com/ajax/libs/jquery/1.6.2/jquery.min.js,5
http://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js,60
http://d3js.org/topojson.v0.min.js,112
//cdnjs.cloudflare.com/ajax/libs/dat-gui/0.5/dat.gui.min.js,24
http://d3js.org/topojson.v1.min.js,560
http://d3js.org/queue.v1.min.js,215
http://libs.cartocdn.com/cartodb.js/v2/cartodb.js,52
http://code.jquery.com/jquery-1.8.3.min.js,15
https://ajax.googleapis.com/ajax/libs/jqueryui/1.9.2/jquery-ui.min.js,1
https://maps.googleapis.com/maps/api/js?key=AIzaSyAzwrTYM6uR1shidwSvUkJ6ORjKPzdBWA4&sensor=true&libraries=geometry,1
http://google-maps-utility-library-v3.googlecode.com/svn/trunk/markerclusterer/src/markerclusterer.js,1
http://' + (location.host || ,35
https://raw.github.com/d3/d3-plugins/master/geo/tile/tile.js,2
http://cdn.jsdelivr.net/momentjs/2.6.0/lang-all.min.js,2
http://cdn.jsdelivr.net/momentjs/2.6.0/moment.js,2
http://cdn.jsdelivr.net/momentjs/2.6.0/moment.min.js,2
http://api.tiles.mapbox.com/mapbox.js/v0.6.7/mapbox.js,40
http://bl.ocks.org/d/4289018/simplex-noise.min.js,4
http://geosprocket.com/assets/bootstrap/js/bootstrap.min.js,18
http://cdn.leafletjs.com/leaflet-0.5/leaflet.js,27
http://cdn.leafletjs.com/leaflet-0.5.1/leaflet.js,54
//d3js.org/d3.v3.js,5
http://geosprocket.com/assets/leaflet/dist/leaflet.js,6
https://raw.github.com/square/crossfilter/master/crossfilter.min.js,2
http://bl.ocks.org/d/5020993/polybrush.js,1
http://bl.ocks.org/d/4450188/javascript.util.min.js,1
http://bl.ocks.org/d/4450188/jsts.min.js,1
http://app1.kuhf.org/_plugins/bootstrap/js/bootstrap.min.js,1
https://raw.github.com/filamentgroup/SocialCount/master/dist/socialcount.min.js,1
http://twitter.github.com/bootstrap/assets/js/bootstrap.js,1
//cdnjs.cloudflare.com/ajax/libs/processing.js/1.4.1/processing-api.min.js,1
http://d3js.org/d3.geo.tile.v0.min.js,30
https://ajax.googleapis.com/ajax/libs/jquery/1.9.0/jquery.min.js,4
http://cdnjs.cloudflare.com/ajax/libs/d3/3.0.1/d3.v3.min.js,2
http://cdnjs.cloudflare.com/ajax/libs/jquery/1.8.3/jquery.min.js,1
http://netdna.bootstrapcdn.com/twitter-bootstrap/2.2.2/js/bootstrap.min.js,1
http://ajax.aspnetcdn.com/ajax/jshint/r07/jshint.js,1
http://geosprocket.com/assets/stamen/leaflet-hash.js,3
//ajax.googleapis.com/ajax/static/modules/gviz/1.0/chart.js,9
http://d3js.org/d3.geo.projection.v0.min.js?9823229,1
https://raw.github.com/betamos/Better-Autocomplete/develop/src/jquery.better-autocomplete.js,1
http://d3js.org/d3.geo.polyhedron.v0.min.js,6
http://d3js.org/d3.hexbin.v0.js,5
http://cdn.leafletjs.com/leaflet-0.5/leaflet-src.js,7
http://raw.github.com/affinitybridge/d3-demos-quakes/master/js/colorbrewer.js,1
http://raw.github.com/affinitybridge/d3-demos-quakes/master/js/leaflet.hexbin-layer.js,1
http://d3js.org/queue.v1.js,6
http://d3js.org/topojson.v0.js,2
http://raw.github.com/mbostock/d3/master/lib/colorbrewer/colorbrewer.js,1
https://raw.github.com/backspaces/agentscript/master/lib/agentscript.js,1
https://raw.github.com/jashkenas/coffee-script/master/lib/coffee-script/coffee-script.js,1
http://concord-consortium.github.com/lab/vendor/d3/d3.js,1
http://concord-consortium.github.com/lab/vendor/jquery/jquery.min.js,1
http://concord-consortium.github.com/lab/lab/lab.grapher.js,1
http://cdnjs.cloudflare.com/ajax/libs/lodash.js/1.0.0-rc.3/lodash.underscore.min.js,4
http://geosprocket.com/dev/recline/vendor/jquery/1.7.1/jquery.js,1
http://geosprocket.com/dev/recline/vendor/underscore/1.4.2/underscore.js,1
http://geosprocket.com/dev/recline/vendor/underscore.deferred/0.4.0/underscore.deferred.js,1
http://geosprocket.com/dev/recline/vendor/backbone/0.9.2/backbone.js,1
http://geosprocket.com/dev/recline/vendor/mustache/0.5.0-dev/mustache.js,1
http://geosprocket.com/dev/recline/vendor/bootstrap/2.0.2/bootstrap.js,1
http://geosprocket.com/dev/recline/vendor/flotr2/flotr2.js,1
http://geosprocket.com/dev/recline/vendor/leaflet/0.4.4/leaflet.js,1
http://geosprocket.com/dev/recline/vendor/leaflet.markercluster/leaflet.markercluster.js,1
http://geosprocket.com/dev/recline/vendor/slickgrid/2.0.1/jquery-ui-1.8.16.custom.min.js,1
http://geosprocket.com/dev/recline/vendor/slickgrid/2.0.1/jquery.event.drag-2.0.min.js,1
http://geosprocket.com/dev/recline/vendor/slickgrid/2.0.1/slick.grid.min.js,1
http://geosprocket.com/dev/recline/vendor/moment/1.6.2/moment.js,1
http://geosprocket.com/dev/recline/vendor/timeline/20120520/js/timeline.js,1
http://geosprocket.com/dev/recline/vendor/json/json2.js,1
http://geosprocket.com/dev/recline/dist/recline.js,1
http://geosprocket.com/dev/recline/src/ecma-fixes.js,1
http://geosprocket.com/dev/recline/src/model.js,1
http://geosprocket.com/dev/recline/src/backend.memory.js,1
http://geosprocket.com/dev/recline/src/backend.dataproxy.js,1
http://geosprocket.com/dev/recline/src/backend.gdocs.js,1
http://geosprocket.com/dev/recline/src/backend.elasticsearch.js,1
http://geosprocket.com/dev/recline/src/backend.csv.js,1
http://geosprocket.com/dev/recline/src/backend.ckan.js,1
http://geosprocket.com/dev/recline/src/backend.solr.js,1
http://geosprocket.com/dev/recline/src/view.grid.js,1
http://geosprocket.com/dev/recline/src/view.slickgrid.js,1
http://geosprocket.com/dev/recline/src/view.transform.js,1
http://geosprocket.com/dev/recline/src/data.transform.js,1
http://geosprocket.com/dev/recline/src/view.graph.js,1
http://geosprocket.com/dev/recline/src/view.map.js,1
http://geosprocket.com/dev/recline/src/view.timeline.js,1
http://geosprocket.com/dev/recline/src/widget.pager.js,1
http://geosprocket.com/dev/recline/src/widget.queryeditor.js,1
http://geosprocket.com/dev/recline/src/widget.filtereditor.js,1
http://geosprocket.com/dev/recline/src/widget.facetviewer.js,1
http://geosprocket.com/dev/recline/src/widget.fields.js,1
http://geosprocket.com/dev/recline/src/view.multiview.js,1
https://raw.github.com/metmajer/dataseries.js/master/dataseries.min.js,1
https://raw.github.com/metmajer/dataseries.js/master/examples/lib/charts/line.js,1
http://cmx.io/v/0.1/cmx.js,2
https://raw.github.com/mbostock/d3/master/lib/colorbrewer/colorbrewer.js,8
https://raw.github.com/d3/d3-plugins/master/hexbin/hexbin.js,8
https://raw.github.com/mbostock/d3/5348d911938a0d1fdf43d7c86befbd908e431204/lib/colorbrewer/colorbrewer.js,21
https://raw.github.com/calvinmetcalf/Leaflet.markercluster/master/dist/leaflet.markercluster.js,1
https://raw.github.com/Leaflet/Leaflet.markercluster/master/dist/leaflet.markercluster.js,1
https://rawgithub.com/mbostock/d3/5348d911938a0d1fdf43d7c86befbd908e431204/lib/colorbrewer/colorbrewer.js,1
https://rawgithub.com/Caligatio/jsSHA/release-1.42/src/sha1.js,1
https://raw.github.com/Caligatio/jsSHA/release-1.42/src/sha1.js,17
https://raw.github.com/imbcmdth/RTree/master/src/rtree.js,1
http://cdnjs.cloudflare.com/ajax/libs/moment.js/2.0.0/moment.min.js,1
http://geosprocket.com/assets/leaflet/dist/leaflet.draw.js,1
http://github.com/mbostock/d3/raw/master/d3.min.js,1
http://code.jquery.com/jquery-1.9.1.js,9
http://code.jquery.com/ui/1.10.1/jquery-ui.js,2
https://raw.github.com/modestmaps/modestmaps-js/master/modestmaps.min.js,1
//raw.github.com/tildeio/rsvp.js/master/browser/rsvp.js,2
//raw.github.com/calvinmetcalf/communist/master/communist.js,2
//raw.github.com/leaflet-extras/leaflet-providers/master/leaflet-providers.js,2
//raw.github.com/Leaflet/Leaflet.markercluster/master/dist/leaflet.markercluster.js,2
//apis.google.com/js/client.js?onload=init,1
//apis.google.com/js/api.js,1
https://apis.google.com/js/auth.js?onload=init,1
//ajax.googleapis.com/ajax/libs/jqueryui/1.10.2/jquery-ui.min.js,2
http://maps.stamen.com/js/tile.stamen.js?v1.2.1,1
http://d3js.org//d3.v3.min.js,1
http://twitter.github.com/bootstrap/assets/js/bootstrap-typeahead.js,1
https://github.com/fryn/html5slider/raw/master/html5slider.js,1
http://mbostock.github.com/d3/d3.geom.js?1.27.2,1
http://leaflet-extras.github.com/leaflet.css/dist/leaflet.css.bundle.min.js,4
http://calvinmetcalf.github.com/leaflet-hash/leaflet.hash.js,1
http://leaflet-extras.github.com/leaflet-providers/leaflet-providers.js,4
//ajax.googleapis.com/ajax/libs/chrome-frame/1.0.3/CFInstall.min.js,1
http://twitter.github.com/bootstrap/assets/js/bootstrap-tooltip.js,1
http://twitter.github.com/bootstrap/assets/js/bootstrap-popover.js,1
https://raw.github.com/jgbos/math/master/math.min.js,2
https://raw.github.com/mbostock/d3/v3.0.8/d3.min.js,1
http://geosprocket.com/assets/cartodb/2.0.24/cartodb.js,4
http://geosprocket.com/assets/leaflet/L.GeoSearch-master/src/js/l.control.geosearch.js,1
http://geosprocket.com/assets/leaflet/L.GeoSearch-master/src/js/l.geosearch.provider.google.js,2
http://geosprocket.com/assets/leaflet/grayscale/TileLayer.Grayscale.js,1
http://knockoutjs.com/downloads/knockout-2.2.1.js,1
http://code.jquery.com/jquery-1.9.1.min.js,14
http://nvd3.org/lib/d3.v2.js,2
http://nvd3.org/nv.d3.js,32
http://nvd3.org/lib/fisheye.js,78
http://syntagmatic.github.com/parallel-coordinates/d3.parcoords.js,3
http://trifacta.github.com/vega/vega.js,4
//html5shiv.googlecode.com/svn/trunk/html5.js,15
http://thedod.github.io/cableweaving/bl.ocks.js,15
//cdnjs.cloudflare.com/ajax/libs/three.js/r57/three.min.js,1
https://cdnjs.cloudflare.com/ajax/libs/topojson/1.6.19/topojson.min.js,97
http://trifacta.github.io/vega/vega.js,3
https://raw.github.com/sloisel/numeric/master/src/numeric.js,1
https://ajax.googleapis.com/ajax/libs/angularjs/1.0.6/angular.min.js,6
http://api.tiles.mapbox.com/mapbox.js/v1.0.0beta0.0/mapbox.js,1
http://datamaps.github.com/scripts/datamaps-all.js,1
http://mbostock.github.com/d3/d3.csv.js?1.29.6,1
http://mbostock.github.com/d3/d3.time.js?1.29.6,1
http://geosprocket.com/assets/leaflet/leaflet-hash.js,2
http://geosprocket.com/assets/leaflet/L.GeoSearch-master/src/js/l.control3.geosearch.js,1
http://gist.github.com/johanneswuerbach/2712048/raw/be3b8cff86b4d66d3281d29e234dbaf894a0f604/bootstrap-typeahead-2.0.3.js,1
http://code.highcharts.com/highcharts.js,11
http://code.highcharts.com/highcharts-more.js,8
http://code.jquery.com/jquery-migrate-1.1.1.min.js,1
https://raw.github.com/Polychart/polychart2/develop/polychart2.standalone.js,3
http://cdnjs.cloudflare.com/ajax/libs/prettify/188.0.0/prettify.js,87
https://raw.github.com/jasondavies/newick.js/master/src/newick.js,1
http://syntagmatic.github.io/parallel-coordinates/d3.parcoords.js,3
http://static.mentful.com/gantt-chart-d3v2.js,3
http://cdnjs.cloudflare.com/ajax/libs/nvd3/1.1.14-beta/nv.d3.js,6
http://nvd3.org/assets/js/nv.d3.js,2
http://nvd3.org/assets/lib/fisheye.js,18
http://api.tiles.mapbox.com/mapbox.js/v1.0.1/mapbox.js,1
http://api.tiles.mapbox.com/mapbox.js/v1.0.0/mapbox.js,1
http://bl.ocks.org/rsudekum/raw/5431771/nycneighborhoods.js,1
http://polychart.com/s/third_party/polychart2.standalone.js,12
http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js,22
http://openlayers.org/api/2.12/OpenLayers.js,1
http://code.jquery.com/mobile/1.3.1/jquery.mobile-1.3.1.min.js,6
http://d3js.org/d3.v2.js?2.8.1,6
http://code.jquery.com/jquery-2.0.0.min.js,5
http://backbonejs.org/backbone-min.js,7
https://ajax.googleapis.com/ajax/libs/jquery/1.8.1/jquery.min.js,9
http://static.mentful.com/gantt-chart-d3v21.js,2
http://calvinmetcalf.github.io/bike/js/bootstrap.js,11
http://calvinmetcalf.github.io/bike/js/mustache.js,13
http://calvin.iriscouch.com/markpouch/_design/markpouch/js/less-1.3.3.min.js,1
https://raw.github.com/fryn/html5slider/gh-pages/html5slider.js,2
http://ajax.googleapis.com/ajax/libs/jquery/2.0.3/jquery.min.js,7
http://mbostock.github.com/d3/d3.geom.js?2.7.4,1
http://mbostock.github.com/d3/d3.layout.js?2.7.4,1
http://leafletjs.com/dist/leaflet.js,8
https://rawgithub.com/joker-x/Leaflet.geoCSV/gh-pages/leaflet.geocsv-src.js,1
http://api.tiles.mapbox.com/mapbox.js/v1.0.2/mapbox.js,4
http://libs.cartocdn.com/cartodb.js/v3/cartodb.js,70
http://www.flotcharts.org/flot/jquery.flot.js,1
http://code.jquery.com/ui/1.10.2/jquery-ui.js,1
https://raw.github.com/sveinn-steinarsson/flot-downsample/master/demo_data.js,1
https://raw.github.com/sveinn-steinarsson/flot-downsample/master/example.js,1
https://raw.github.com/NelsonMinar/vector-river-map/master/clients/lib/leaflet-hash.js,1
https://raw.github.com/NelsonMinar/vector-river-map/master/clients/lib/TileLayer.GeoJSON.js,1
http://bl.ocks.org/ZJONSSON/raw/5529395/TileLayer.d3_geoJSON.js,1
https://raw.github.com/NelsonMinar/vector-river-map/master/clients/us-states.js,1
//cdnjs.cloudflare.com/ajax/libs/processing.js/1.4.1/processing.min.js,1
http://ajax.googleapis.com/ajax/libs/jquery/1.7.0/jquery.min.js,2
http://shimz.me/example/d3js/geo_example/geo_template/topojson.v0.min.js,1
http://www.somebits.com/rivers/lib/leaflet-hash.js,3
http://www.jasondavies.com/d3.min.js,10
http://www.jasondavies.com/maps/d3.geo.projection.min.js,8
http://www.jasondavies.com/maps/topojson.min.js,10
http://www.jasondavies.com/maps/d3.quadtiles.js,10
http://d3js.org/d3.geo.polyhedron.v0.js,1
http://www.jasondavies.com/maps/d3.geo.projection.min.js?20130523,2
http://www.jasondavies.com/maps/raster/raster.js,2
//ajax.googleapis.com/ajax/libs/jquery/2.0.0/jquery.min.js,5
http://cdn.strategiqcommerce.com/ajax/libs/rickshaw/1.2.1/rickshaw.min.js,3
https://ajax.googleapis.com/ajax/libs/jqueryui/1.8.15/jquery-ui.min.js,4
https://rawgithub.com/leaflet-extras/leaflet-providers/gh-pages/leaflet-providers.js,8
http://cdnjs.cloudflare.com/ajax/libs/underscore.js/1.4.4/underscore-min.js,2
http://espinielli.github.io/pycalcal/d3.geo.projection.min.js,1
http://espinielli.github.io/pycalcal/d3.geo.polyhedron.js,1
http://ajax.googleapis.com/ajax/libs/jquery/1.8/jquery.min.js,1
http://www.jsphylosvg.com/js/raphael/raphael-min.js,1
http://www.jsphylosvg.com/js/jsphylosvg-min.js,1
http://code.jquery.com/jquery-1.4.3.min.js,2
https://rawgithub.com/yannickulrich/presenter/master/lib/jqMath/jqmath-etc-0.4.0.min.js,1
http://rawgithub.com/jbeuckm/K-Means/master/build/kmeans.min.js,2
http://serverapi.arcgisonline.com/jsapi/arcgis/3.5compact,2
http://api.tiles.mapbox.com/mapbox.js/v1.0.3/mapbox.js,1
http://cdnjs.cloudflare.com/ajax/libs/d3/3.1.6/d3.min.js,6
http://x3dom.org/x3dom/dist/x3dom.js,1
http://code.jquery.com/jquery-2.0.2.js,1
http://code.jquery.com/jquery-2.0.2.min.js,9
http://cdnjs.cloudflare.com/ajax/libs/lodash.js/1.0.1/lodash.min.js,1
https://rawgit.com/bbcrd/waveform-data.js/1.5.1/dist/waveform-data.min.js,1
http://dimplejs.org/dist/dimple.v1.min.js,21
http://code.jquery.com/ui/1.10.3/jquery-ui.js,3
https://raw.github.com/cfergus/d3-plugins/master/sankey/sankey.js,1
http://api.citybik.es/citibikenyc.json?callback=cb,1
http://cdnjs.cloudflare.com/ajax/libs/jquery/1.9.1/jquery.min.js,4
http://api.tiles.mapbox.com/mapbox.js/v1.0.4/mapbox.js,1
http://api.tiles.mapbox.com/mapbox.js/v1.1.0/mapbox.js,1
http://api.tiles.mapbox.com/mapbox.js/v1.1.0/mapbox.uncompressed.js,3
http://marcneuwirth.com/experiments/globe/d3.custom.js,3
http://www.jasondavies.com/wordcloud/d3.layout.cloud.js,1
http://d3js.org/d3.v2.min.js?2.9.7,1
http://ajax.googleapis.com/ajax/libs/jquery/1.10.1/jquery.min.js,8
http://mlevans.github.io/leaflet-hash/javascripts/leaflet-hash.js,1
//api.tiles.mapbox.com/mapbox.js/v1.2.0/mapbox.js,1
http://yui.yahooapis.com/3.6.0/build/yui/yui-min.js,6
http://yandex.st/highlightjs/7.3/highlight.min.js,5
http://code.jquery.com/jquery-1.10.1.min.js,22
https://ajax.googleapis.com/ajax/libs/angularjs/1.0.7/angular.min.js,6
http://timelyportfolio.github.io/rCharts_d3_horizon/libraries/widgets/d3_horizon/js/horizon.js,4
http://x3dom.org/x3dom/dist/x3dom-full.js,1
http://ajax.googleapis.com/ajax/libs/jquery/1.8.1/jquery.min.js,1
http://timelyportfolio.github.io/rCharts_d3_sankey/js/sankey.js,9
https://maps.google.com/maps/api/js?sensor=true,1
http://misoproject.com/js/d3.chart.js,3
http://geosprocket.cartodb.com/viz/e3a95a7e-ee49-11e2-88df-6805ca04cef1/embed_map.js?title=true&amp;description=false&amp;search=false&amp;shareable=true&amp;cartodb_logo=true&amp;layer_selector=true&amp;scrollwheel=true&amp;sublayer_options=1%7C1&amp;sql=&amp;sw_lat=43.75919263886012&amp;sw_lon=-74.0093994140625&amp;ne_lat=44.68427737181225&amp;ne_lon=-71.3726806640625&amp;width=640&amp;height=400&amp;id=cartodb-1374001472631,2
http://netdna.bootstrapcdn.com/twitter-bootstrap/2.3.2/js/bootstrap.min.js,3
http://api.tiles.mapbox.com/mapbox.js/v1.3.1/mapbox.js,12
http://dat-gui.googlecode.com/git/build/dat.gui.min.js,1
http://ajax.aspnetcdn.com/ajax/jquery.dataTables/1.9.4/jquery.dataTables.min.js,6
http://test.distilled.net/staples/smells/js/vendor/modernizr-2.6.2-respond-1.1.0.min.js,1
http://d3js.org/d3.hexbin.v0.min.js,13
https://ajax.googleapis.com/ajax/libs/jquery/1.6.3/jquery.js,6
http://cdn.leafletjs.com/leaflet-0.6.4/leaflet.js,52
http://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js,18
//netdna.bootstrapcdn.com/bootstrap/3.0.0-rc1/js/bootstrap.min.js,1
//api.tiles.mapbox.com/mapbox.js/v1.3.1/mapbox.js,28
http://d3js.org/colorbrewer.v1.min.js,95
//ajax.googleapis.com/ajax/libs/jquery/2.0.3/jquery.min.js,2
http://www.fabioveronesi.net/ShinyApp/Points2.json,1
//ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js,21
http://mbostock.github.io/d3/talk/20111116/d3/d3.js,1
http://mbostock.github.io/d3/talk/20111116/d3/d3.geom.js,1
http://mbostock.github.io/d3/talk/20111116/d3/d3.layout.js,1
http://netdna.bootstrapcdn.com/bootstrap/3.0.0-rc1/js/bootstrap.min.js,1
http://cdnjs.cloudflare.com/ajax/libs/require.js/2.1.8/require.min.js,1
http://lab.interactivethings.com/lib/d3-grid.js,1
http://code.shutterstock.com/rickshaw/rickshaw.min.js,1
//api.tiles.mapbox.com/mapbox.js/v1.6.0/mapbox.js,2
http://asset.geosprocket.com/leaflet/leaflet-hash.js,2
http://code.jquery.com/jquery-2.0.3.min.js,4
http://cdnjs.cloudflare.com/ajax/libs/underscore.js/1.5.1/underscore-min.js,2
http://cdnjs.cloudflare.com/ajax/libs/handlebars.js/1.0.0/handlebars.min.js,7
http://cdnjs.cloudflare.com/ajax/libs/d3/3.2.2/d3.v3.min.js,5
http://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.0.0-rc1/js/bootstrap.min.js,1
http://mbostock.github.com/d3/d3.js?2.9.6,1
http://www.mapbox.com/mapbox.js/assets/leaflet.markercluster.js,1
http://www.mapbox.com/mapbox.js/assets/realworld.388.js,1
http://tenxer.github.io/xcharts/js/xcharts.min.js,1
//cdnjs.cloudflare.com/ajax/libs/nvd3/1.1.14-beta/nv.d3.js,1
http://wafi.iit.cnr.it/webvis/picturecloud/d3.layout.picturecloud.js,1
http://davidbau.com/encode/seedrandom-min.js,16
http://labratrevenge.com/d3-tip/javascripts/d3.tip.v0.6.3.js,58
https://c328740.ssl.cf1.rackcdn.com/mathjax/2.0-latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML,6
http://harrywood.co.uk/maps/examples/leaflet/leaflet-plugins/layer/vector/KML.js,5
http://cdnjs.cloudflare.com/ajax/libs/dat-gui/0.5/dat.gui.min.js,1
//code.jquery.com/jquery-1.6.2.min.js,1
http://codeorigin.jquery.com/jquery-1.10.2.min.js,3
http://codeorigin.jquery.com/ui/1.10.3/jquery-ui.min.js,1
http://nickqizhu.github.io/dc.js/js/d3.js,3
http://nickqizhu.github.io/dc.js/js/crossfilter.js,3
http://nickqizhu.github.io/dc.js/js/dc.js,3
http://html5shiv.googlecode.com/svn/trunk/html5.js,20
http://ajax.googleapis.com/ajax/libs/jquery/1.4.1/jquery.min.js,7
http://jquery-csv.googlecode.com/git/src/jquery.csv.js,1
http://cdnjs.cloudflare.com/ajax/libs/underscore.js/1.5.2/underscore-min.js,6
http://blog.axc.net/viz/js/jquery/jquery-1.10.2.js,1
http://blog.axc.net/viz/js/d3/d3.min.js,1
http://datamaps.github.io/scripts/datamaps.all.min.js,4
http://ajax.googleapis.com/ajax/libs/jqueryui/1.10.3/jquery-ui.min.js,1
http://cdn.leafletjs.com/leaflet-0.6.3/leaflet.js,1
https://cdnjs.cloudflare.com/ajax/libs/lodash.js/2.2.1/lodash.min.js,1
http://d3js.org/topojson.v1.js,23
http://imaginea.github.io/uvCharts/js/uvcharts.js,1
//cdn.jsdelivr.net/filesaver.js/0.1/FileSaver.min.js,2
http://micropolar.org/micropolar.js,4
//ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js,5
http://code.highcharts.com/modules/exporting.js,7
http://github.highcharts.com/rambera/modules/funnel.js,1
//speakerdeck.com/assets/embed.js,1
https://maps.googleapis.com/maps/api/js?sensor=false&v=3.8,8
//code.jquery.com/jquery-1.10.2.min.js,4
http://www.billdwhite.com/wordpress/wp-content/js/browserdetect/browserdetect.js,2
http://www.billdwhite.com/wordpress/wp-content/js/d3/d3.js,3
http://timelyportfolio.github.io/rCharts_d3_sankey/libraries/widgets/d3_sankey/js/d3.v3.js,1
http://timelyportfolio.github.io/rCharts_d3_sankey/libraries/widgets/d3_sankey/js/sankey.js,1
http://cdn.knightlab.com/libs/storymapjs/latest/js/storymap.min.js,1
http://labratrevenge.com/d3-tip/javascripts/d3.tip.min.js,5
http://d3js.org/d3.geom.js,1
http://d3js.org/d3.layout.js,1
http://ajax.aspnetcdn.com/ajax/jQuery/jquery-1.7.min.js,14
http://slidifylibraries2.googlecode.com/git/inst/libraries/widgets/quiz/js/jquery.js,12
http://slidifylibraries2.googlecode.com/git/inst/libraries/highlighters/highlight.js/highlight.pack.js,20
http://slidifylibraries2.googlecode.com/git/inst/libraries/widgets/bootstrap/js/bootstrap.min.js,3
http://slidifylibraries2.googlecode.com/git/inst/libraries/widgets/bootstrap/js/bootbox.min.js,3
http://cdn.mathjax.org/mathjax/2.0-latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML,3
http://slidifylibraries2.googlecode.com/git/inst/libraries/widgets/mathjax/MathJax.js?config=TeX-AMS-MML_HTMLorMML,3
//ajax.googleapis.com/ajax/libs/jquery/1.10.1/jquery.min.js,1
//cdnjs.cloudflare.com/ajax/libs/lodash.js/2.2.1/lodash.min.js,1
http://netdna.bootstrapcdn.com/bootstrap/2.3.2/js/bootstrap.min.js,1
//api.tiles.mapbox.com/mapbox.js/v1.4.0/mapbox.js,8
http://rcharts.github.io/howitworks/echarts/echarts/js/esl.js,2
http://ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.min.js,73
http://timelyportfolio.github.io/rCharts_nvd3_tests/libraries/widgets/nvd3/js/nv.d3.min-new.js,67
http://d3js.org/d3.v3.js?2.9.1,1
http://asset.geosprocket.com/leaflet/cluster/leaflet.markercluster.js,1
http://api.tiles.mapbox.com/mapbox.js/v1.4.0/mapbox.js,6
http://timelyportfolio.github.io/howitworks/catcorrjs/catcorrjs/js/crossfilter.min.js,1
http://timelyportfolio.github.io/howitworks/catcorrjs/catcorrjs/js/catcorr.min.js,1
http://timelyportfolio.github.io/howitworks/catcorrjs/catcorrjs/js/d3.tip.min.js,1
http://netdna.bootstrapcdn.com/bootstrap/3.0.1/js/bootstrap.min.js,1
http://ramnathv.github.io/rCharts/libraries/widgets/polycharts/js/polychart2.standalone.js,11
http://api.tiles.mapbox.com/mapbox.js/v1.4.2/mapbox.js,8
http://leafletjs.com/examples/us-states.js,1
//api.tiles.mapbox.com/mapbox.js/v1.4.2/mapbox.js,1
//cdnjs.cloudflare.com/ajax/libs/underscore.js/1.5.2/underscore-min.js,2
//cdnjs.cloudflare.com/ajax/libs/backbone.js/1.1.0/backbone-min.js,1
//epoxyjs.org/js/backbone.epoxy.min.js,1
http://cdnjs.cloudflare.com/ajax/libs/mustache.js/0.7.2/mustache.min.js,3
http://d3js.org/d3.superformula.v0.min.js,1
http://snapsvg.io/assets/js/snap.svg-min.js,2
https://gist.github.com/wboykinm/a0da78883858be88e81e.js,1
https://www.mapbox.com/mapbox.js/assets/leaflet-pip.js,7
http://cdn.leafletjs.com/leaflet-0.7/leaflet.js,11
http://cdn.leafletjs.com/leaflet-0.6/leaflet.js,1
//api.tiles.mapbox.com/mapbox.js/v1.4.2/mapbox.standalone.js,1
https://rawgithub.com/cfergus/d3-plugins/master/sankey/sankey.js,1
http://cdn.leafletjs.com/leaflet-0.7.3/leaflet.js,92
//ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js,21
//maxcdn.bootstrapcdn.com/bootstrap/3.2.0/js/bootstrap.min.js,22
https://www.google.com/jsapi?callback=displayChartBarChartIDc9477098969d,2
//api.tiles.mapbox.com/mapbox.js/v1.5.0/mapbox.js,1
//cdnjs.cloudflare.com/ajax/libs/less.js/2.5.3/less.min.js,1
http://api.tiles.mapbox.com/mapbox.js/v1.5.0/mapbox.js,2
http://netdna.bootstrapcdn.com/bootstrap/3.0.3/js/bootstrap.min.js,1
http://cdnjs.cloudflare.com/ajax/libs/crossfilter/1.3.1/crossfilter.min.js,3
http://cdn.leafletjs.com/leaflet-0.7.1/leaflet.js,7
https://maps.googleapis.com/maps/api/js?v=3.exp&sensor=false,4
http://slidifylibraries2.googlecode.com/git/inst/libraries/frameworks/revealjs/lib/js/head.min.js,8
http://slidifylibraries2.googlecode.com/git/inst/libraries/frameworks/revealjs/js/reveal.min.js,8
http://cdnjs.cloudflare.com/ajax/libs/fabric.js/1.4.0/fabric.min.js,1
https://rawgithub.com/intermine/CDN/master/js/canvg/latest/canvg.js,1
http://cdn.jsdelivr.net/cal-heatmap/3.3.10/cal-heatmap.min.js,2
//api.tiles.mapbox.com/mapbox.js/v1.5.2/mapbox.js,2
http://mbostock.github.com/d3/d3.js?2.3.2,1
//code.jquery.com/jquery-2.0.3.min.js,3
//cdnjs.cloudflare.com/ajax/libs/handlebars.js/1.1.2/handlebars.min.js,2
//platform.twitter.com/widgets.js,1
http://slidifylibraries2.googlecode.com/git/inst/libraries/frameworks/minimal/javascripts/scale.fix.js,1
http://slidifylibraries2.googlecode.com/git/inst/libraries/highlighters/prettify/js/lang-r.js,2
//ajax.googleapis.com/ajax/libs/angularjs/1.0.1/angular.min.js,1
http://api.tiles.mapbox.com/mapbox.js/v1.5.2/mapbox.js,1
http://slidifylibraries2.googlecode.com/git/inst/libraries/frameworks/bootstrap/js/vendor/modernizr-2.6.1-respond-1.1.0.min.js,1
http://slidifylibraries2.googlecode.com/git/inst/libraries/frameworks/bootstrap/js/vendor/jquery-1.8.2.min.js,1
//s7.addthis.com/js/300/addthis_widget.js#pubid=ra-4fdfcfd4773d48d3,1
http://slidifylibraries2.googlecode.com/git/inst/libraries/frameworks/bootstrap/js/vendor/bootstrap.min.js,1
http://slidifylibraries2.googlecode.com/git/inst/libraries/frameworks/bootstrap/js/plugins.js,1
http://slidifylibraries2.googlecode.com/git/inst/libraries/frameworks/bootstrap/js/main.js,1
http://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML,2
http://query.yahooapis.com/v1/public/yql?callback=main&format=json&q=select%20*%20from%20json%20where%20url=%22http://fx.priceonomics.com/v1/rates/%22,2
http://www.datejs.com/build/date.js,1
//cdnjs.cloudflare.com/ajax/libs/bacon.js/0.6.19/Bacon.js,1
http://rawgithub.com/EightMedia/jquery.hammer.js/master/jquery.hammer.js,1
http://ajax.googleapis.com/ajax/libs/angularjs/1.2.6/angular.min.js,4
http://cdnjs.cloudflare.com/ajax/libs/lodash.js/2.4.1/lodash.min.js,23
http://d3js.org/d3.hexbin.v0.min.js?5c6e4f0,14
http://code.jquery.com/jquery-1.10.2.js,3
https://google-code-prettify.googlecode.com/svn-history/r232/trunk/src/lang-r.js,2
http://libs.cartocdn.com/cartodb.js/v3/cartodb.core.js,2
http://rawgithub.com/VisDockHub/NewVisDock/master/master/visdock.js,35
http://rawgithub.com/VisDockHub/NewVisDock/master/master/2D.js,35
http://rawgithub.com/VisDockHub/NewVisDock/master/master/IntersectionUtilities.js,35
http://rawgithub.com/VisDockHub/NewVisDock/master/master/visdock.utils.js,35
//cdnjs.cloudflare.com/ajax/libs/proj4js/2.2.2/proj4.js,1
http://spatialreference.org/ref/epsg/2154/proj4js/,1
https://rawgithub.com/mrdoob/three.js/master/build/three.js,2
http://dimplejs.org/dist/dimple.v1.1.3.min.js,1
http://modernizr.com/downloads/modernizr-latest.js,1
https://spreadsheets.google.com/feeds/list/0Aty9maMoYSDFdFd6aVpFNFZucDk5R3NkajJ6a3JvOXc/1/public/basic/?alt=json-in-script&callback=cb_nodes,1
https://spreadsheets.google.com/feeds/list/0Aty9maMoYSDFdFd6aVpFNFZucDk5R3NkajJ6a3JvOXc/2/public/basic/?alt=json-in-script&callback=cb_edges,1
http://ajax.googleapis.com/ajax/libs/jquery/1.4/jquery.min.js,1
https://cdnjs.cloudflare.com/ajax/libs/d3/3.0.8/d3.min.js,1
https://rawgithub.com/d3/d3-plugins/master/fisheye/fisheye.js,1
http://d3js.org/colorbrewer.v1.js,5
http://dimplejs.org/dist/dimple.v1.1.1.min.js,1
http://api.tiles.mapbox.com/mapbox.js/v1.6.1/mapbox.js,3
http://netdna.bootstrapcdn.com/bootstrap/3.0.2/js/bootstrap.min.js,1
http://api.tiles.mapbox.com/mapbox.js/plugins/leaflet-markercluster/v0.4.0/leaflet.markercluster.js,1
http://jsclipper.sourceforge.net/6.1.3.1/clipper.js,13
https://api.tiles.mapbox.com/mapbox.js/v1.6.1/mapbox.js,16
http://netdna.bootstrapcdn.com/bootstrap/3.1.0/js/bootstrap.min.js,3
http://rawgithub.com/affinitybridge/d3-demos-quakes/master/js/colorbrewer.js,1
http://rawgithub.com/affinitybridge/d3-demos-quakes/master/js/leaflet.hexbin-layer.js,1
http://cdnjs.cloudflare.com/ajax/libs/d3/3.4.1/d3.min.js,3
http://cdnjs.cloudflare.com/ajax/libs/bootstrap-select/1.3.5/bootstrap-select.min.js,1
http://benjh33.github.io/rchart_plugins/scatter_matrix/js/box.js,1
http://benjh33.github.io/rchart_plugins/scatter_matrix/js/scatter_matrix.js,1
https://rawgithub.com/mbostock/d3/master/d3.min.js,1
http://code.jquery.com/jquery-1.11.0.min.js,9
https://rawgithub.com/lloyd/JSONSelect/master/src/jsonselect.js,1
http://code.jquery.com/jquery-2.1.0.min.js,10
http://dimplejs.org/dist/dimple.v1.1.4.min.js,1
http://datamaps.github.io/scripts/datamaps.usa.js?v=1,1
http://dimplejs.org/dist/dimple.v1.1.4.js,1
//api.tiles.mapbox.com/mapbox.js/plugins/leaflet-omnivore/v0.0.0/leaflet-omnivore.min.js,1
http://d3js.org/d3.v3.min.js?2.9.1,2
http://cdnjs.cloudflare.com/ajax/libs/jquery/2.0.1/jquery.min.js,1
https://cdnjs.cloudflare.com/ajax/libs/mustache.js/0.7.2/mustache.min.js,1
http://cdnjs.cloudflare.com/ajax/libs/angular.js/1.2.1/angular.min.js,4
http://datamaps.github.io/scripts/datamaps.all.min.js?v=1,3
//api.tiles.mapbox.com/mapbox.js/plugins/leaflet-hash/v0.2.1/leaflet-hash.js,3
http://cdn.leafletjs.com/leaflet-0.7.2/leaflet.js,18
http://rawgithub.com/clhenrick/Major-Studio-Two/gh-pages/map-story/html/js/pct-trail-partial.js,1
http://rawgithub.com/openplans/Leaflet.AnimatedMarker/master/src/AnimatedMarker.js,2
http://maps.stamen.com/js/tile.stamen.js?v1.2.4,2
http://leaflet.cloudmade.com/dist/leaflet.js,2
http://maps.stamen.com/js/tile.stamen.js?v1.2.3,7
http://s3.amazonaws.com/codecademy-content/courses/hour-of-code/js/alphabet.js,1
http://s3.amazonaws.com/codecademy-content/courses/hour-of-code/js/bubbles.js,1
http://libs.cartocdn.com/cartodb.js/v2/cartodb.uncompressed.js,1
http://www.brightpointinc.com/interactive/ustrade/scripts/d3/math/trigonometry.js,1
http://www.brightpointinc.com/interactive/ustrade/scripts/d3/svg/arc.js,1
http://www.brightpointinc.com/interactive/ustrade/scripts/d3/core/functor.js,1
http://www.brightpointinc.com/interactive/ustrade/scripts/d3/core/source.js,1
http://www.brightpointinc.com/interactive/ustrade/scripts/d3/core/target.js,1
http://www.brightpointinc.com/interactive/ustrade/scripts/d3/layout/arc-chord.js,1
http://www.brightpointinc.com/interactive/ustrade/scripts/d3/svg/arc-chord.js,1
http://www.brightpointinc.com/interactive/ustrade/scripts/brightpoint/gradients.js,1
http://www.google-analytics.com/urchin.js,1
http://www.brightpointinc.com/interactive/ustrade/scripts/app/initialize.js,1
http://www.brightpointinc.com/interactive/ustrade/scripts/app/events.js,1
http://www.brightpointinc.com/interactive/ustrade/scripts/app/_buildChords.js,1
http://www.chartjs.org/assets/Chart.js,2
http://fb.me/react-0.9.0.min.js,4
http://fb.me/react-with-addons-0.9.0.min.js,2
http://dimplejs.org/dist/dimple.v1.1.5.min.js,11
http://timelyportfolio.github.io/rCharts_dimple/js/d3.tip.v0.6.3.js,2
//api.tiles.mapbox.com/mapbox.js/plugin/leaflet-fullscreen.js,1
https://code.jquery.com/jquery-1.11.0.js,1
http://cdnjs.cloudflare.com/ajax/libs/marked/0.3.1/marked.min.js,1
http://cdnjs.cloudflare.com/ajax/libs/codemirror/3.22.0/codemirror.min.js,1
http://cdnjs.cloudflare.com/ajax/libs/codemirror/3.22.0/addon/edit/continuelist.js,1
http://cdnjs.cloudflare.com/ajax/libs/codemirror/3.22.0/mode/xml/xml.js,1
http://cdnjs.cloudflare.com/ajax/libs/codemirror/3.22.0/mode/markdown/markdown.js,1
//api.tiles.mapbox.com/mapbox.js/plugins/leaflet-omnivore/v0.0.1/leaflet-omnivore.min.js,2
//api.tiles.mapbox.com/mapbox.js/v1.6.1/mapbox.js,2
//api.tiles.mapbox.com/mapbox.js/plugins/leaflet-markercluster/v0.4.0/leaflet.markercluster.js,3
http://code.jquery.com/jquery-git2.js,2
http://ajax.googleapis.com/ajax/libs/jquery/1.9.0/jquery.min.js,2
http://cdnjs.cloudflare.com/ajax/libs/raphael/2.1.0/raphael-min.js,2
http://cdn.oesmith.co.uk/morris-0.4.2.min.js,1
https://ajax.googleapis.com/ajax/libs/angularjs/1.2.10/angular.min.js,19
http://api4.mapy.cz/loader.js,1
https://c328740.ssl.cf1.rackcdn.com/mathjax/latest/MathJax.js?config=TeX-AMS_HTML,2
http://ajax.googleapis.com/ajax/libs/jquery/1.3.1/jquery.min.js,1
https://dc8na2hxrj29i.cloudfront.net/code/keen-2.1.2-min.js,2
http://cloud.github.com/downloads/processing-js/processing-js/processing-1.4.1.min.js,1
//cdnjs.cloudflare.com/ajax/libs/d3/3.4.2/d3.js,11
http://cdnjs.cloudflare.com/ajax/libs/d3/3.4.2/d3.js,1
http://ol3js.org/en/master/build/ol.js,3
https://maps.googleapis.com/maps/api/js?v=3.exp&sensor=true&libraries=visualization,1
//cdnjs.cloudflare.com/ajax/libs/topojson/1.1.0/topojson.min.js,15
//cdnjs.cloudflare.com/ajax/libs/queue-async/1.0.4/queue.min.js,1
//cdnjs.cloudflare.com/ajax/libs/underscore.js/1.6.0/underscore-min.js,3
http://flightjs.github.io/release/latest/flight.js,1
//cdnjs.cloudflare.com/ajax/libs/require.js/2.1.4/require.js,1
http://rawgithub.com/markmarkoh/datamaps/master/dist/datamaps.none.min.js,1
http://datamaps.github.io/scripts/datamaps.none.min.js,2
https://portal.excellentschoolsdetroit.org/api/1.0/views/meap_2009.jsonp?filters[bcode]=554&callback=meap_2009_casstech,1
https://portal.excellentschoolsdetroit.org/api/1.0/views/meap_2009.jsonp?filters[bcode]=6971&callback=meap_2009_renaissance,1
https://portal.excellentschoolsdetroit.org/api/1.0/views/meap_2010.jsonp?filters[bcode]=554&callback=meap_2010_casstech,1
https://portal.excellentschoolsdetroit.org/api/1.0/views/meap_2010.jsonp?filters[bcode]=6971&callback=meap_2010_renaissance,1
http://rawgithub.com/makinacorpus/Leaflet.GeometryUtil/master/dist/leaflet.geometryutil.js,1
http://code.jquery.com/ui/1.9.1/jquery-ui.js,4
http://www.tips-for-excel.com/d3test/Titanic/highlight.min.js,1
http://cdnjs.cloudflare.com/ajax/libs/less.js/1.7.0/less.min.js,2
//cdnjs.cloudflare.com/ajax/libs/d3/3.4.4/d3.min.js,2
//netdna.bootstrapcdn.com/bootstrap/3.1.1/js/bootstrap.min.js,3
http://api.tiles.mapbox.com/mapbox.js/v1.6.2/mapbox.js,2
http://ajax.googleapis.com/ajax/libs/jquery/2.1.0/jquery.min.js,10
https://api.tiles.mapbox.com/mapbox.js/v1.6.2/mapbox.js,13
//api.tiles.mapbox.com/mapbox.js/plugins/leaflet-image/v0.0.3/leaflet-image.js,4
http://www.mapbox.com/mapbox.js/assets/data/us-states.js,1
http://bl.ocks.org/aaizemberg/raw/9982456/rect.js,1
http://bl.ocks.org/mpmckenna8/raw/9959871/sfBOSleaf.geojson,1
http://leaflet.github.io/Leaflet.label/leaflet.label.js,1
http://www.liedman.net/leaflet-routing-machine/dist/leaflet-routing-machine.min.js,1
http://leaflet.github.io/Leaflet.markercluster/dist/leaflet.markercluster.js,1
https://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js,7
https://ajax.googleapis.com/ajax/libs/jqueryui/1.10.3/jquery-ui.min.js,1
http://cdn.leafletjs.com/leaflet-0.7.2/leaflet.js?2,1
https://www.jasondavies.com/maps/rotate/d3.geo.zoom.js,1
http://code.jquery.com/jquery-1.8.3.js,1
http://code.jquery.com/ui/1.9.2/jquery-ui.js,1
http://www.columbia.edu/~sev2119/MapDataChallenge/beforeafter/js/jquery.beforeafter-1.4.js,1
//wafi.iit.cnr.it/webvis/markdownhere/markdownhere.js,1
//cdnjs.cloudflare.com/ajax/libs/d3/3.4.5/d3.min.js,2
//cdnjs.cloudflare.com/ajax/libs/angular.js/1.2.15/angular.min.js,2
http://ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js,9
http://www.sumbera.com/gist/data.js,3
http://cdnjs.cloudflare.com/ajax/libs/nvd3/1.1.15-beta/nv.d3.js,3
//cdnjs.cloudflare.com/ajax/libs/async/0.7.0/async.js,1
//ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js,18
https://rawgithub.com/NickQiZhu/dc.js/master/web/js/crossfilter.js,1
http://www.x3dom.org/download/x3dom.js,2
http://leaflet.github.io/Leaflet.markercluster/dist/leaflet.markercluster-src.js,2
https://cdnjs.cloudflare.com/ajax/libs/queue-async/1.0.7/queue.min.js,32
https://cdnjs.cloudflare.com/ajax/libs/three.js/r71/three.min.js,2
https://api.tiles.mapbox.com/mapbox-gl-js/v0.7.0/mapbox-gl.js,4
https://api.tiles.mapbox.com/mapbox-gl-js/v0.3.1/mapbox-gl.js,3
https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js,27
https://cdnjs.cloudflare.com/ajax/libs/d3/3.5.5/d3.js,4
https://code.jquery.com/jquery-1.7.1.js,1
https://cdnjs.cloudflare.com/ajax/libs/d3/3.5.6/d3.js,24
https://cdnjs.cloudflare.com/ajax/libs/dat-gui/0.5.1/dat.gui.js,1
http://mbostock.github.io/d3/talk/20111018/d3/d3.layout.js,1
https://cdnjs.cloudflare.com/ajax/libs/underscore.js/1.7.0/underscore-min.js,4
https://cdn.rawgit.com/martine/webtreemap/a2fa353833eca1a4821ba4c93fb6a7d546aed02a/webtreemap.js,3
//curran.github.io/model/cdn/model-v0.2.4.js,1
//chiasm-project.github.io/chiasm-component/chiasm-component-v0.2.1.js,1
//cdnjs.cloudflare.com/ajax/libs/lodash.js/3.10.1/lodash.min.js,5
//cdnjs.cloudflare.com/ajax/libs/d3/3.5.6/d3.min.js,18
//chiasm-project.github.io/chiasm/chiasm-v0.2.0.js,1
//chiasm-project.github.io/chiasm-layout/chiasm-layout-v0.2.2.js,1
//rawgit.com/eligrey/FileSaver.js/master/FileSaver.js,1
//rawgit.com/Hypercubed/svgsaver/v0.3.0/browser.min.js,1
https://rawgit.com/eligrey/FileSaver.js/master/FileSaver.js,2
//rawgit.com/blueimp/JavaScript-Canvas-to-Blob/master/js/canvas-to-blob.js,1
https://rawgit.com/Hypercubed/svgsaver/v0.2.1/browser.min.js,2
//cdn.rawgit.com/Hypercubed/_F/master/_F.min.js,1
//cdnjs.cloudflare.com/ajax/libs/d3/3.4.6/d3.min.js,4
https://cdn.polyfill.io/v1/polyfill.min.js,1
https://cdnjs.cloudflare.com/ajax/libs/d3/3.5.3/d3.min.js,4
https://cdnjs.cloudflare.com/ajax/libs/three.js/r70/three.min.js,1
http://fb.me/react-0.10.0.js,1
http://fb.me/JSXTransformer-0.10.0.js,1
https://cdnjs.cloudflare.com/ajax/libs/d3-geo-projection/0.2.9/d3.geo.projection.min.js,37
http://d3-legend.susielu.com/d3-legend.min.js,2
http://bl.ocks.org/syntagmatic/raw/3341641/render-queue.js,3
https://api.tiles.mapbox.com/mapbox-gl-js/v0.9.0/mapbox-gl.js,2
https://developer.mapsense.co/mapsense.js,3
http://bl.ocks.org/emeeks/raw/f3105fda25ff785dc5ed/tile.js,46
http://bl.ocks.org/emeeks/raw/f3105fda25ff785dc5ed/d3.quadtiles.js,42
http://bl.ocks.org/emeeks/raw/f3105fda25ff785dc5ed/d3.geo.raster.js,42
https://rawgit.com/emeeks/d3-carto-map/master/d3.carto.map.js,57
http://bost.ocks.org/mike/sankey/sankey.js,4
//js.arcgis.com/3.12compact/,2
https://ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.min.js,4
https://code.highcharts.com/highcharts.js,1
//coffeescript.org/extras/coffee-script.js,2
//rawgit.com/gka/d3-jetpack/master/d3-jetpack.js,1
//rawgit.com/kristw/75b61f9beeab9b530612/raw/389e984e4041117a9185cf6edad9f6b85a38097a/d3kit.min.js,1
//rawgit.com/ramnathv/a5a3199538f86817ec1b/raw/f6627fc544e65d8e6186ba87556f743caa3f2730/visutils.js,1
//gka.github.io/chroma.js/vendor/chroma-js/chroma.min.js,1
//rawgit.com/Caged/d3-tip/master/index.js,1
http://ramnathv.github.io/rcstatebin/index_files/d3-3.5.5/d3.min.js,1
http://ramnathv.github.io/rcstatebin/index_files/d3-jetpack-0.1/d3-jetpack.js,1
http://ramnathv.github.io/rcstatebin/index_files/d3-svg-legend-0.1/legend.js,1
http://ramnathv.github.io/rcstatebin/index_files/d3-tip-0.6.6/d3tip.js,1
http://ramnathv.github.io/rcstatebin/index_files/colorbrewer-0.1/colorbrewer.js,1
http://ramnathv.github.io/rcstatebin/index_files/d3statebin-0.1/d3statebin.js,1
//code.jquery.com/jquery-1.9.1.min.js,2
//code.highcharts.com/highcharts.js,2
//code.highcharts.com/highcharts-more.js,2
//code.highcharts.com/modules/exporting.js,2
http://code.highcharts.com/modules/funnel.js,1
http://rawgithub.com/highslide-software/highcharts.com/master/js/themes/gray.js,1
http://cdnjs.cloudflare.com/ajax/libs/headjs/1.0.3/head.min.js,1
http://code.jquery.com/jquery-2.1.4.min.js,1
https://cdnjs.cloudflare.com/ajax/libs/ol3/3.7.0/ol.js,2
https://rawgit.com/tmcw/csv2geojson/gh-pages/csv2geojson.js,1
https://code.jquery.com/jquery-1.11.2.min.js,2
https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/js/bootstrap.min.js,3
https://cdnjs.cloudflare.com/ajax/libs/ol3/3.6.0/ol.js,1
//cdnjs.cloudflare.com/ajax/libs/openlayers/2.12/OpenLayers.debug.js,1
//cdnjs.cloudflare.com/ajax/libs/proj4js/1.1.0/proj4js-compressed.js,1
https://rawgit.com/highsource/jsonix/master/dist/Jsonix-min.js,1
https://rawgit.com/highsource/w3c-schemas/master/scripts/lib/XLink_1_0.js,1
https://rawgit.com/highsource/ogc-schemas/master/scripts/lib/WMS_1_1_1.js,1
http://openlayers.org/en/v3.1.1/build/ol.js,1
http://rawgit.com/walkermatt/ol3-layerswitcher/master/src/ol3-layerswitcher.js,1
https://cdnjs.cloudflare.com/ajax/libs/require.js/2.1.10/require.min.js,1
https://cdnjs.cloudflare.com/ajax/libs/jquery/2.0.3/jquery.min.js,1
http://dev.openlayers.org/OpenLayers.js,1
//cdnjs.cloudflare.com/ajax/libs/proj4js/1.1.0/proj4js-compressed.min.js,1
//cdnjs.cloudflare.com/ajax/libs/openlayers/2.13.1/OpenLayers.js,2
//cdnjs.cloudflare.com/ajax/libs/proj4js/2.3.3/proj4.js,1
http://openlayers.org/en/v3.0.0/build/ol.js,1
http://duhoang.com/particles/js/underscore-min.js,1
http://duhoang.com/particles/js/Tween.js,1
http://cdnjs.cloudflare.com/ajax/libs/d3/3.4.11/d3.min.js,4
https://cdnjs.cloudflare.com/ajax/libs/lodash.js/3.10.1/lodash.min.js,55
https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.10.6/moment.min.js,5
http://curran.github.io/model/cdn/model-v0.2.4.js,29
http://chiasm-project.github.io/chiasm/chiasm-v0.2.0.js,20
http://chiasm-project.github.io/chiasm-component/chiasm-component-v0.2.0.js,9
http://chiasm-project.github.io/chiasm-layout/chiasm-layout-v0.2.2.js,16
//cdnjs.cloudflare.com/ajax/libs/d3/3.4.11/d3.min.js,8
https://cdnjs.cloudflare.com/ajax/libs/underscore.js/1.8.3/underscore-min.js,19
https://code.jquery.com/jquery-2.1.4.min.js,24
https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js,4
https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js,4
https://ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js,3
//code.jquery.com/jquery-1.11.0.min.js,6
http://netdna.bootstrapcdn.com/bootstrap/3.1.1/js/bootstrap.min.js,4
http://cdnjs.cloudflare.com/ajax/libs/crossfilter/1.3.7/crossfilter.min.js,2
//cdnjs.cloudflare.com/ajax/libs/d3/3.5.5/d3.min.js,97
//cdn.rawgit.com/shimizu/9873aaff4961cf3f149d/raw/da5939d7096addf2379a3c48c6cae5179c9b1686/encoding.min.js,1
//cdnjs.cloudflare.com/ajax/libs/hammer.js/2.0.4/hammer.js,1
https://cdnjs.cloudflare.com/ajax/libs/topojson/1.6.9/topojson.min.js,1
http://cdn.leafletjs.com/leaflet-0.7.3/leaflet-src.js,2
https://cdnjs.cloudflare.com/ajax/libs/d3/3.5.3/d3.js,4
https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.10.3/moment-with-locales.min.js,1
http://www.jstat.org/jstat-1.0.0.min.js,1
http://cdnjs.cloudflare.com/ajax/libs/jquery/2.0.3/jquery.min.js,1
http://cdnjs.cloudflare.com/ajax/libs/modernizr/2.6.2/modernizr.min.js,1
http://cdnjs.cloudflare.com/ajax/libs/leaflet/0.7.3/leaflet.js,17
http://cdnjs.cloudflare.com/ajax/libs/dc/1.7.0/dc.min.js,2
https://cdn.rawgit.com/teralytics/Leaflet.D3SvgOverlay/master/L.D3SvgOverlay.min.js,1
https://cdnjs.cloudflare.com/ajax/libs/crossfilter/1.3.12/crossfilter.min.js,8
https://maxcdn.bootstrapcdn.com/bootstrap/3.3.2/js/bootstrap.min.js,26
http://cdn.leafletjs.com/leaflet-0.7.5/leaflet.js,10
https://cdn.rawgit.com/calvinmetcalf/leaflet-ajax/gh-pages/dist/leaflet.ajax.min.js,1
https://api.mapbox.com/mapbox.js/v2.2.2/mapbox.js,2
https://rawgit.com/maptimelex/d3-mapping/gh-pages/d3-map01-starter/ky-counties.js,1
//cdn.knightlab.com/libs/juxtapose/latest/js/juxtapose.js,1
https://api.tiles.mapbox.com/mapbox.js/v2.2.1/mapbox.js,4
https://api.tiles.mapbox.com/mapbox.js/plugins/leaflet-omnivore/v0.2.0/leaflet-omnivore.min.js,6
https://ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js,4
//rawgit.com/wenzhixin/bootstrap-table/master/dist/bootstrap-table.min.js,1
//cdn-geoweb.s3.amazonaws.com/esri-leaflet/1.0.0-rc.6/esri-leaflet.js,1
https://cdn.rawgit.com/maptastik/esri-leaflet-related/master/src/EsriLeafletRelated.js,1
//cdn.jsdelivr.net/leaflet/0.7.3/leaflet.js,1
//cdn.jsdelivr.net/leaflet.esri/1.0.0/esri-leaflet.js,1
http://js.arcgis.com/3.13compact/,1
http://libs.cartocdn.com/cartodb.js/v3/3.15/cartodb.js,12
https://api.tiles.mapbox.com/mapbox-gl-js/v0.8.1/mapbox-gl.js,1
https://api.tiles.mapbox.com/mapbox.js/v2.1.9/mapbox.js,4
http://leaflet-extras.github.io/leaflet-providers/leaflet-providers.js,1
https://rawgit.com/aparshin/leaflet-boundary-canvas/master/src/BoundaryCanvas.js,1
http://jsDataV.is/data/barchart.js,1
http://jsDataV.is/data/tornadoes.js,2
http://jsDataV.is/data/us-states.js,1
http://jsDataV.is/data/atlweather.js,1
https://api.tiles.mapbox.com/mapbox.js/v1.6.3/mapbox.js,6
http://cdnjs.cloudflare.com/ajax/libs/moment.js/2.8.4/moment.min.js,9
https://cdnjs.cloudflare.com/ajax/libs/zepto/1.1.6/zepto.min.js,3
https://cdnjs.cloudflare.com/ajax/libs/leaflet/0.7.3/leaflet.js,2
https://cdnjs.cloudflare.com/ajax/libs/leaflet.markercluster/0.4.0/leaflet.markercluster.js,3
//ajax.googleapis.com/ajax/libs/jquery/1.11.2/jquery.min.js,7
//cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.4/js/bootstrap.min.js,6
//cdnjs.cloudflare.com/ajax/libs/bootstrap-switch/3.3.2/js/bootstrap-switch.min.js,6
https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js,12
https://rawgithub.com/lvoogdt/Leaflet.awesome-markers/2.0/develop/dist/leaflet.awesome-markers.js,1
//cdnjs.cloudflare.com/ajax/libs/leaflet.markercluster/0.4.0/leaflet.markercluster-src.js,1
//cdnjs.cloudflare.com/ajax/libs/leaflet.markercluster/0.4.0/leaflet.markercluster.js,2
//cdnjs.cloudflare.com/ajax/libs/c3/0.4.9/c3.min.js,3
//ajax.googleapis.com/ajax/libs/angularjs/1.2.16/angular.js,3
//angular-ui.github.io/bootstrap/ui-bootstrap-tpls-0.11.2.js,3
//cdnjs.cloudflare.com/ajax/libs/Leaflet.awesome-markers/2.0.0/leaflet.awesome-markers.min.js,2
//cdnjs.cloudflare.com/ajax/libs/d3/3.5.0/d3.min.js,1
//cdnjs.cloudflare.com/ajax/libs/c3/0.4.7/c3.min.js,1
//cdnjs.cloudflare.com/ajax/libs/reveal.js/2.6.2/lib/js/head.min.js,1
//cdnjs.cloudflare.com/ajax/libs/reveal.js/2.6.2/js/reveal.min.js,1
//cdnjs.cloudflare.com/ajax/libs/d3/3.4.13/d3.min.js,11
//cdnjs.cloudflare.com/ajax/libs/c3/0.4.4/c3.min.js,3
//cdnjs.cloudflare.com/ajax/libs/nvd3/1.1.15-beta/nv.d3.min.js,1
//cdn.jsdelivr.net/angularjs.nvd3-directives/v0.0.7/angularjs-nvd3-directives.min.js,1
//cdnjs.cloudflare.com/ajax/libs/Leaflet.awesome-markers/2.0.0/leaflet.awesome-markers.js,1
//cdnjs.cloudflare.com/ajax/libs/jquery/2.1.1/jquery.min.js,6
//cdnjs.cloudflare.com/ajax/libs/foundation/5.4.5/js/foundation.min.js,1
//cdnjs.cloudflare.com/ajax/libs/foundation/5.4.5/js/foundation/foundation.slider.min.js,1
https://cdnjs.cloudflare.com/ajax/libs/lodash.js/3.10.1/lodash.js,6
http://vuejs.org/js/vue.js,1
https://cdn.rawgit.com/gka/d3-jetpack/dd27abb646a9aa1e5100d79b336113eb6adb8d6b/d3-jetpack.js,1
//cdnjs.cloudflare.com/ajax/libs/topojson/1.6.19/topojson.min.js,14
//cdnjs.cloudflare.com/ajax/libs/queue-async/1.0.7/queue.min.js,11
http://chiasm-project.github.io/chiasm-component/chiasm-component-v0.2.1.js,13
http://chiasm-project.github.io/chiasm-links/chiasm-links-v0.2.1.js,12
http://chiasm-project.github.io/chiasm-dsv-dataset/chiasm-dsv-dataset-v0.2.0.js,3
http://chiasm-project.github.io/chiasm-layout/chiasm-layout-v0.2.1.js,7
//cdnjs.cloudflare.com/ajax/libs/d3-legend/1.1.0/d3-legend.js,21
//cdnjs.cloudflare.com/ajax/libs/d3-tip/0.6.3/d3-tip.min.js,11
http://chiasm-project.github.io/chiasm-links/chiasm-links-v0.2.0.js,3
//cdnjs.cloudflare.com/ajax/libs/angular.js/1.4.0/angular.min.js,3
http://chiasm-project.github.io/chiasm-data-reduction/chiasm-data-reduction-v0.2.0.js,1
//cdnjs.cloudflare.com/ajax/libs/polymer/0.5.0/polymer.js,1
https://cdnjs.cloudflare.com/ajax/libs/marked/0.3.5/marked.min.js,1
http://cdnjs.cloudflare.com/ajax/libs/require.js/2.1.10/require.min.js,2
https://code.jquery.com/jquery.min.js,3
https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.5/js/bootstrap.js,2
http://riccardoscalco.github.io/textures/textures.min.js,4
//cdnjs.cloudflare.com/ajax/libs/topojson/1.6.19/topojson.js,2
//cdnjs.cloudflare.com/ajax/libs/require.js/2.1.17/require.min.js,1
//cdnjs.cloudflare.com/ajax/libs/lodash.js/3.5.0/lodash.min.js,2
//cdnjs.cloudflare.com/ajax/libs/require.js/2.1.16/require.min.js,3
//curran.github.io/cdn/requirejs-v2.1.16/require.js,2
//cdnjs.cloudflare.com/ajax/libs/require.js/2.1.14/require.js,8
//cdnjs.cloudflare.com/ajax/libs/lodash.js/3.4.0/lodash.min.js,1
//code.jquery.com/jquery-2.1.1.min.js,2
http://fb.me/react-0.12.2.min.js,1
http://fb.me/JSXTransformer-0.12.2.js,1
http://fb.me/react-0.12.0.js,1
http://fb.me/JSXTransformer-0.12.0.js,1
http://mbostock.github.com/d3/d3.v2.min.js?2.8.1,2
http://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js,52
http://code.jquery.com/jquery-2.1.1.min.js,4
https://cdnjs.cloudflare.com/ajax/libs/d3-legend/1.3.0/d3-legend.min.js,9
https://cdnjs.cloudflare.com/ajax/libs/d3-legend/1.3.0/d3-legend.js,2
https://cdnjs.cloudflare.com/ajax/libs/lodash.js/3.9.3/lodash.min.js,3
https://cdnjs.cloudflare.com/ajax/libs/PapaParse/4.1.2/papaparse.min.js,1
https://rawgit.com/larskotthoff/d3/axisarrange-tmp/d3.js,1
https://rawgit.com/biovisualize/b9a321c5038d24206356/raw/d6c542f19772b28d19c5be056f6f084ed6d71974/line-variable.js,1
//cdnjs.cloudflare.com/ajax/libs/backbone.js/1.1.2/backbone-min.js,4
http://dimplejs.org/dist/dimple.v2.0.0.min.js,9
http://benfred.github.io/venn.js/venn.js,1
http://cdnjs.cloudflare.com/ajax/libs/KaTeX/0.1.1/katex.min.js,1
http://maxwellito.github.io/vivus/dist/vivus.min.js,5
http://www.sveido.com/mermaid/dist/mermaid.full.min.js,1
http://timelyportfolio.github.io/rCharts_metrics/js/metrics-graphics.min.js,3
http://timelyportfolio.github.io/rCharts_techan/js/techan.min.js,1
http://timelyportfolio.github.io/walkway/walkway.min.js,1
http://timelyportfolio.github.io/sweetalert/lib/sweet-alert.min.js,1
http://cdnjs.cloudflare.com/ajax/libs/intro.js/0.5.0/intro.min.js,1
http://dimplejs.org/dist/dimple.v2.1.0.min.js,2
http://timelyportfolio.github.io/rCharts_dimple/js/d3-grid.js,1
http://timelyportfolio.github.io/rCharts_d3_sankey//js/d3.v3.js,1
http://timelyportfolio.github.io/rCharts_d3_sankey//js/sankey.js,1
http://timelyportfolio.github.io/rChartsExtra/d3pie/js/d3pie.js,1
http://timelyportfolio.github.io/rCharts_objeq/examples/js/ace.js,1
http://timelyportfolio.github.io/rCharts_objeq/examples/js/util.js,1
http://timelyportfolio.github.io/rCharts_objeq/examples/js/parser.js,1
http://timelyportfolio.github.io/rCharts_objeq/examples/js/objeq-parser-junqi.js,1
http://timelyportfolio.github.io/rCharts_objeq/examples/js/compiler.js,1
http://timelyportfolio.github.io/rCharts_objeq/examples/js/junqi.js,1
http://timelyportfolio.github.io/rCharts_objeq/examples/js/index_junqi_extensions.js,1
http://timelyportfolio.github.io/rCharts_objeq/examples/js/beautify.js,1
http://timelyportfolio.github.io/rCharts_objeq/examples/js/jquery.min.js,1
http://timelyportfolio.github.io/rCharts_objeq/examples/js/bootstrap.js,1
http://timelyportfolio.github.io/rCharts_objeq/examples/js/d3.js,1
http://timelyportfolio.github.io/rCharts_objeq/examples/js/dimple.v1.1.5.js,1
http://timelyportfolio.github.io/rCharts_objeq/examples/js/d3-grid.js,1
http://timelyportfolio.github.io/rCharts_objeq/examples/js/lodash.js,1
http://public.tableausoftware.com/javascripts/api/tableau_v8.js,1
https://api.tiles.mapbox.com/mapbox-gl-js/v0.11.1/mapbox-gl.js,8
https://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.4/jquery.min.js,5
https://cdnjs.cloudflare.com/ajax/libs/jquery/3.0.0-alpha1/jquery.min.js,11
https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/js/bootstrap.min.js,11
https://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/js/bootstrap.min.js,8
https://cdn.datatables.net/1.10.9/js/jquery.dataTables.min.js,3
https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js,6
https://oss.maxcdn.com/respond/1.4.2/respond.min.js,6
https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js,18
https://cdnjs.cloudflare.com/ajax/libs/d3-tip/0.6.7/d3-tip.js,1
https://api.mapbox.com/mapbox.js/plugins/arc.js/v0.1.0/arc.js,1
//code.jquery.com/jquery-1.11.3.min.js,28
http://cdn-geoweb.s3.amazonaws.com/terraformer/1.0.4/terraformer.min.js,4
http://cdn-geoweb.s3.amazonaws.com/terraformer-arcgis-parser/1.0.4/terraformer-arcgis-parser.min.js,4
http://maps.stamen.com/js/tile.stamen.js?v1.3.0,3
https://cdnjs.cloudflare.com/ajax/libs/jquery/1.10.2/jquery.min.js,2
https://darshit-shah.github.io/jquery-1.7.2.min.js,3
https://darshit-shah.github.io/socket.io.min.js,3
https://darshit-shah.github.io/d3.floatingScale.js,2
https://s3-us-west-2.amazonaws.com/s.cdpn.io/237913/jquery-2.1.4.min.js,5
https://cdnjs.cloudflare.com/ajax/libs/d3/3.3.5/d3.js,4
https://s3-us-west-2.amazonaws.com/s.cdpn.io/237913/plotly.min.js,5
http://code.jquery.com/jquery-1.11.3.min.js,2
//code.jquery.com/jquery-git2.js,1
//rawgit.com/mrdoob/stats.js/master/build/stats.min.js,1
https://cdnjs.cloudflare.com/ajax/libs/dat-gui/0.5/dat.gui.js,1
http://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/js/bootstrap.min.js,2
https://cdnjs.cloudflare.com/ajax/libs/c3/0.4.10/c3.min.js,10
https://code.jquery.com/jquery-1.9.1.min.js,3
https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.2/js/bootstrap.min.js,1
http://code.jquery.com/jquery-migrate-1.2.1.min.js,1
https://cdnjs.cloudflare.com/ajax/libs/angular.js/1.3.12/angular.min.js,1
http://marvl.infotech.monash.edu/webcola/cola.v2.min.js,3
https://cdnjs.cloudflare.com/ajax/libs/tabletop.js/1.4.2/tabletop.min.js,3
https://cdnjs.cloudflare.com/ajax/libs/crossfilter/1.3.12/crossfilter.js,11
http://acko.net/files/mathbox2/mathbox-bundle.min.js,1
https://cdnjs.cloudflare.com/ajax/libs/d3-geo-projection/0.2.15/d3.geo.projection.min.js,5
https://cdnjs.cloudflare.com/ajax/libs/marked/0.3.2/marked.js,1
https://derbyjs.github.io/derby-standalone/dist/0.6.0-alpha25/derby-standalone.min.js,1
http://derbyjs.github.io/derby-standalone/dist/0.6.0-alpha25/derby-standalone.min.js,1
//cdn.jsdelivr.net/g/d3js,jquery,1
//cdnjs.cloudflare.com/ajax/libs/codemirror/5.0.0/codemirror.js,1
//cdnjs.cloudflare.com/ajax/libs/codemirror/5.0.0/mode/yaml/yaml.js,1
//cdnjs.cloudflare.com/ajax/libs/codemirror/5.0.0/addon/fold/foldcode.js,1
//cdnjs.cloudflare.com/ajax/libs/codemirror/5.0.0/addon/fold/foldgutter.js,1
//cdnjs.cloudflare.com/ajax/libs/codemirror/5.0.0/addon/fold/indent-fold.js,1
//cdnjs.cloudflare.com/ajax/libs/codemirror/5.0.0/addon/fold/comment-fold.js,1
//cdnjs.cloudflare.com/ajax/libs/materialize/0.95.3/js/materialize.min.js,1
//cdnjs.cloudflare.com/ajax/libs/js-yaml/3.2.7/js-yaml.min.js,1
http://cdn.rawgit.com/newsdev/archieml-js/v0.1.1/archieml.js,1
//cdnjs.cloudflare.com/ajax/libs/codemirror/4.13.0/codemirror.min.js,1
//cdnjs.cloudflare.com/ajax/libs/codemirror/4.13.0/addon/mode/simple.js,1
//cdnjs.cloudflare.com/ajax/libs/codemirror/4.13.0/mode/javascript/javascript.js,1
http://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/js/bootstrap.min.js,2
http://cdnjs.cloudflare.com/ajax/libs/masonry/3.1.5/masonry.pkgd.min.js,1
//cdn.jsdelivr.net/g/d3js,lodash,momentjs,handlebarsjs(handlebars.min.js),1
https://rawgit.com/emeeks/d3-carto-map/master/resources/d3.v3.min.js,1
https://rawgit.com/emeeks/d3-carto-map/master/resources/topojson.js,1
https://rawgit.com/emeeks/d3-carto-map/master/resources/d3.geo.projection.min.js,1
https://rawgit.com/emeeks/d3-carto-map/master/resources/tile.js,1
https://rawgit.com/emeeks/d3-carto-map/master/resources/d3.quadtiles.js,1
https://rawgit.com/emeeks/d3-carto-map/master/resources/d3.geo.raster.js,1
//cdn.jsdelivr.net/reveal.js/latest/lib/js/head.min.js,2
//cdn.jsdelivr.net/reveal.js/latest/js/reveal.min.js,2
https://cdnjs.cloudflare.com/ajax/libs/async/1.4.2/async.js,1
https://cdnjs.cloudflare.com/ajax/libs/mousetrap/1.4.6/mousetrap.js,2
https://cdnjs.cloudflare.com/ajax/libs/p5.js/0.4.7/p5.min.js,1
https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.10.3/moment.min.js,2
//cdnjs.cloudflare.com/ajax/libs/lodash.js/3.9.3/lodash.min.js,3
https://rawgit.com/turban/d3.slider/master/d3.slider.js,2
//cdnjs.cloudflare.com/ajax/libs/moment.js/2.10.3/moment.min.js,2
http://eesur.com/dev/d3fc/Layout.js,1
http://eesur.com/dev/d3fc/d3-financial-components.min.js,1
//cdnjs.cloudflare.com/ajax/libs/lodash.js/3.9.0/lodash.min.js,1
//cdnjs.cloudflare.com/ajax/libs/underscore.js/1.8.3/underscore-min.js,4
//cdnjs.cloudflare.com/ajax/libs/moment.js/2.10.2/moment.min.js,1
//cdnjs.cloudflare.com/ajax/libs/spin.js/2.0.1/spin.min.js,1
https://cdnjs.cloudflare.com/ajax/libs/spin.js/2.0.1/spin.min.js,1
//cdnjs.cloudflare.com/ajax/libs/underscore.js/1.7.0/underscore-min.js,1
https://cdnjs.cloudflare.com/ajax/libs/chroma-js/1.1.1/chroma.min.js,2
https://cdnjs.cloudflare.com/ajax/libs/topojson/1.6.19/topojson.js,10
http://bl.ocks.org/mpmckenna8/raw/5991cabbde44869c41aa/b8552346660d39acbddee5e29591dc4d77c9abe6/glMatrix-0.9.5.min.js,1
http://bl.ocks.org/mpmckenna8/raw/f43a842a8953e87f5b3c/63d5445b60d94813c85acd7fa02227d2f253f41e/d3.geo.zoom.js,2
http://bl.ocks.org/mpmckenna8/raw/fbbd31c7da81af4c4176/makech.js,1
//cdnjs.cloudflare.com/ajax/libs/lodash.js/2.4.1/lodash.js,6
https://api.tiles.mapbox.com/mapbox-gl-js/v0.2.2/mapbox-gl.js,3
//cdnjs.cloudflare.com/ajax/libs/three.js/r68/three.js,4
https://api.tiles.mapbox.com/mapbox-gl-js/v0.2.0/mapbox-gl.js,5
https://api.tiles.mapbox.com/mapbox.js/plugins/leaflet-omnivore/v0.1.2/leaflet-omnivore.min.js,3
https://rawgit.com/larskotthoff/d3/varline/src/svg/line-variable.js,1
https://surfcity.googlecode.com/svn-history/r21/trunk/kevlindev/concats/2D.js,2
//cdnjs.cloudflare.com/ajax/libs/jquery-csv/0.71/jquery.csv-0.71.min.js,1
//cdnjs.cloudflare.com/ajax/libs/angular.js/1.0.4/angular.js,1
//cdnjs.cloudflare.com/ajax/libs/jqueryui/1.10.4/jquery-ui.min.js,1
http://nickqizhu.github.io/d3-cookbook/lib/d3.js,1
http://nickqizhu.github.io/d3-cookbook/lib/crossfilter.js,1
http://cdnjs.cloudflare.com/ajax/libs/dc/1.6.0/dc.min.js,1
http://cdnjs.cloudflare.com/ajax/libs/d3/3.5.5/d3.min.js,10
http://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.4/jquery.min.js,2
http://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.4/js/bootstrap.min.js,2
http://cdnjs.cloudflare.com/ajax/libs/crossfilter/1.3.11/crossfilter.min.js,3
http://cdnjs.cloudflare.com/ajax/libs/dc/1.7.3/dc.min.js,1
https://dc-js.github.io/dc.js/js/d3.js,1
https://dc-js.github.io/dc.js/js/crossfilter.js,1
https://dc-js.github.io/dc.js/js/dc.js,1
//fb.me/react-with-addons-0.10.0.js,1
//fb.me/JSXTransformer-0.10.0.js,1
http://bl.ocks.org/emeeks/raw/531f107a0ff6eff5d543/d3.layout.orbit.js,2
https://cdnjs.cloudflare.com/ajax/libs/p5.js/0.4.13/p5.min.js,1
https://cdnjs.cloudflare.com/ajax/libs/p5.js/0.4.13/addons/p5.dom.min.js,1
https://cdnjs.cloudflare.com/ajax/libs/p5.js/0.4.13/addons/p5.sound.min.js,1
https://cdnjs.cloudflare.com/ajax/libs/leaflet/0.7.7/leaflet.js,3
http://leaflet.github.io/Leaflet.heat/dist/leaflet-heat.js,2
http://bl.ocks.org/aaizemberg/raw/45e23c1b8741bcf7b34f/bahra_05.js,1
https://cdnjs.cloudflare.com/ajax/libs/metrics-graphics/2.6.0/metricsgraphics.min.js,1
http://code.shutterstock.com/rickshaw/rickshaw.js,1
//code.jquery.com/jquery.min.js,3
//maxcdn.bootstrapcdn.com/bootstrap/3.3.2/js/bootstrap.min.js,3
//netdna.bootstrapcdn.com/twitter-bootstrap/2.3.2/js/bootstrap.min.js,2
https://rawgit.com/masayuki0812/c3/master/c3.js,1
//www.google.com/trends/embed.js?hl=en-US&q=data+mining,+big+data&cmpt=q&tz&tz&content=1&cid=TIMESERIES_GRAPH_AVERAGES_CHART&export=5&w=960&h=500,1
//www.google.com/trends/embed.js?hl=en-US&q=data+visualization,+information+visualization&cmpt=q&tz&tz&content=1&cid=TIMESERIES_GRAPH_AVERAGES_CHART&export=5&w=960&h=500,1
//cdnjs.cloudflare.com/ajax/libs/raphael/2.1.0/raphael-min.js,1
//maxcdn.bootstrapcdn.com/bootstrap/3.3.0/js/bootstrap.min.js,1
http://cdnjs.cloudflare.com/ajax/libs/p5.js/0.2.8/p5.min.js,1
http://cdnjs.cloudflare.com/ajax/libs/p5.js/0.2.2/p5.min.js,1
//ajax.googleapis.com/ajax/libs/angularjs/1.2.15/angular.min.js,1
http://www.d3plus.org/js/d3.js,1
http://www.d3plus.org/js/d3plus.js,1
https://public.tableausoftware.com/javascripts/api/viz_v1.js,1
http://public.tableausoftware.com/javascripts/api/viz_v1.js,1
http://omnipotent.net/jquery.sparkline/contrib/jquery/jquery-1.7.2.min.js,1
http://omnipotent.net/jquery.sparkline/2.1.2/jquery.sparkline.min.js,1
http://cdnjs.cloudflare.com/ajax/libs/underscore.js/1.6.0/underscore-min.js,2
http://www.sumbera.com/gist/js/leaflet/canvas/L.CanvasOverlay.js,6
http://www.sumbera.com/gist/js/tesspathy/tesspathy.min.js,1
http://www.sumbera.com/gist/data/route.js,3
http://www.sumbera.com/gist/js/leaflet/svg/scaled/leaflet.js,2
http://www.sumbera.com/gist/js/leaflet/svg/scaled/d3-3.5.5.min.js,1
http://www.sumbera.com/gist/js/vt/geojson-vt-dev.js,1
http://www.sumbera.com/gist/js/leaflet/canvas/L.CanvasTiles.js,1
http://www.sumbera.com/gist/data/CZDistricts.js,3
http://www.sumbera.com/gist/js/earcut/earcut-1.4.2.js,1
http://www.sumbera.com/gist/js/mapbox/dist/mapbox-gl.js,1
http://www.sumbera.com/gist/js/mapbox/mbstyles/hybrid.js,1
http://www.sumbera.com/gist/js/mapbox/pointGeometry.js,1
http://www.sumbera.com/gist/js/mapbox/buffer.js,1
http://www.sumbera.com/gist/js/mapbox/linevertexbuffer.js,1
http://www.sumbera.com/gist/js/mapbox/lineelementbuffer.js,1
http://www.sumbera.com/gist/js/mapbox/elementgroups.js,1
http://www.sumbera.com/gist/js/mapbox/linebucket.js,1
http://www.sumbera.com/gist/js/pixi/Pixi.js,1
http://www.sumbera.com/gist/js/pixi/Point.js,1
http://www.sumbera.com/gist/js/pixi/WebGLGraphics.js,1
http://www.sumbera.com/gist/js/libtess/libtess.cat.js,1
http://js.arcgis.com/3.9/,1
http://www.sumbera.com/gist/86T.json,1
https://cdnjs.cloudflare.com/ajax/libs/dat-gui/0.5/dat.gui.min.js,1
http://libs.cartocdn.com/cartodb.js/v3/3.12/cartodb.js,1
http://code.jquery.com/jquery-1.11.2.min.js,1
http://code.jquery.com/ui/1.11.2/jquery-ui.min.js,1
https://cartodb-libs.global.ssl.fastly.net/cartodb.js/v3/3.12/cartodb.js,4
https://cdn.datatables.net/1.10.5/js/jquery.dataTables.min.js,2
http://cartodb.github.io/odyssey.js/vendor/modernizr-2.6.2.min.js,13
http://cartodb-libs.global.ssl.fastly.net/cartodb.js/v3/cartodb.js,14
http://cartodb.github.io/odyssey.js/dist/odyssey.js,15
http://fast.fonts.net/jsapi/3af16084-ba56-49ca-b37d-0b49b59e1927.js,6
https://cartodb-libs.global.ssl.fastly.net/cartodb.js/v3/3.11/cartodb.js,1
http://rawgithub.com/joergdietrich/Leaflet.Terminator/master/L.Terminator.js,1
http://cartodb.github.io/showcase-maps/nightofmuseums/OSMBuildings-Leaflet.js,1
http://libs.cartocdn.com/cartodb.js/v3/cartodb.uncompressed.js,1
http://libs.cartocdn.com/cartodb.js/v3/3.0.05-dev/cartodb.uncompressed.js,1
http://platform.twitter.com/widgets.js,1
http://rawgit.com/monfera/sf-student-dashboard/master/d3.js,4
http://rawgit.com/monfera/sf-student-dashboard/master/du.js,4
http://rawgit.com/monfera/sf-student-dashboard/master/data.js,4
http://rawgit.com/monfera/sf-student-dashboard/master/model.js,4
http://rawgit.com/monfera/sf-student-dashboard/master/bandline.js,4
http://rawgit.com/monfera/sf-student-dashboard/master/interactions.js,4
http://rawgit.com/monfera/sf-student-dashboard/master/render.js,4
http://rawgit.com/monfera/sf-student-dashboard/master/dashboard.js,4
http://cdn.cognitect.com/transducers/transducers-0.4.158-min.js,2
https://pozadi.github.io/kefir/dist/kefir.min.js,2
https://raw.github.com/searls/jasmine-all/master/jasmine-all-min.js,1
https://raw.github.com/mennovanslooten/Observable-Arrays/master/js/underscore.observable.js,1
https://raw.github.com/airportyh/testem/master/public/testem/jasmine_adapter.js,1
https://raw.github.com/raimohanska/bacon.js/master/dist/Bacon.min.js,1
https://syntagmatic.github.io/parallel-coordinates/d3.parcoords.js,2
https://api.tiles.mapbox.com/mapbox.js/v1.6.4/mapbox.js,19
https://code.jquery.com/jquery-1.11.1.js,7
http://momentjs.com/downloads/moment.min.js,4
http://jsbin.com/xiyehe/1.js,1
http://js.arcgis.com/3.14/,2
https://api.tiles.mapbox.com/mapbox-gl-js/v0.11.0/mapbox-gl.js,1
https://api.mapbox.com/mapbox.js/v2.2.1/mapbox.js,1
https://api.tiles.mapbox.com/mapbox.js/plugins/turf/v2.0.2/turf.min.js,2
https://api.tiles.mapbox.com/mapbox-gl-js/v0.8.0/mapbox-gl.js,1
https://api.tiles.mapbox.com/mapbox.js/v2.2.0/mapbox.js,1
https://api.tiles.mapbox.com/mapbox.js/v2.1.8/mapbox.js,3
https://api.tiles.mapbox.com/mapbox.js/plugins/leaflet-hash/v0.2.1/leaflet-hash.js,2
https://api.tiles.mapbox.com/mapbox.js/v2.1.6/mapbox.js,1
//cdn.jsdelivr.net/g/jquery@1.11.1,underscorejs,1
https://api.tiles.mapbox.com/mapbox-gl-js/v0.5.2/mapbox-gl.js,1
https://ajax.googleapis.com/ajax/libs/jquery/1.11.2/jquery.min.js,1
https://api.tiles.mapbox.com/mapbox.js/v2.1.4/mapbox.js,4
https://api.tiles.mapbox.com/mapbox.js/plugins/turf/v1.3.0/turf.min.js,3
http://cdnjs.cloudflare.com/ajax/libs/leaflet/0.7.2/leaflet.js,2
https://rawgit.com/Turfjs/turf/master/turf.min.js,1
https://api.tiles.mapbox.com/mapbox.js/v2.0.1/mapbox.js,12
http://libs.cartodb.com/cartodb.js/v3/3.11/cartodb.js,1
https://cdn.rawgit.com/jondavidjohn/hidpi-canvas-polyfill/master/dist/hidpi-canvas.js,2
http://wzrd.in/standalone/pbf@latest,1
//ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js,3
//maxcdn.bootstrapcdn.com/bootstrap/3.3.1/js/bootstrap.min.js,1
https://api.tiles.mapbox.com/mapbox-gl-js/v0.2.1/mapbox-gl.js,2
https://maps.googleapis.com/maps/api/js?v=3.exp,3
//api.tiles.mapbox.com/mapbox.js/plugins/leaflet-draw/v0.2.2/leaflet.draw.js,1
https://cdnjs.cloudflare.com/ajax/libs/d3-legend/1.5.0/d3-legend.js,5
http://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js,4
https://cdnjs.cloudflare.com/ajax/libs/jade/1.11.0/jade.min.js,1
https://code.jquery.com/jquery-1.11.3.min.js,7
https://rawgit.com/twitter/d3kit/v0.1.0/dist/d3kit.min.js,6
https://cdnjs.cloudflare.com/ajax/libs/underscore.js/1.8.2/underscore-min.js,1
http://code.jquery.com/jquery-2.0.3.js,1
//cdn.bootcss.com/d3/3.5.6/d3.min.js,4
//cdn.bootcss.com/jquery/1.11.3/jquery.min.js,2
//netdna.bootstrapcdn.com/bootstrap/3.3.5/js/bootstrap.min.js,1
//cdn.bootcss.com/chroma-js/1.1.1/chroma.min.js,1
//cdn.bootcss.com/topojson/1.6.19/topojson.min.js,1
https://cdnjs.cloudflare.com/ajax/libs/jquery/1.11.2/jquery.min.js,2
https://code.jquery.com/jquery-1.11.1.min.js,4
http://dutovis.com/forceInABox/forceInABox.js,1
http://dutovis.com/netAnalysisJs/netClustering.js,1
https://cdnjs.cloudflare.com/ajax/libs/ramda/0.18.0/ramda.min.js,3
https://maps.googleapis.com/maps/api/js?v=3.exp&signed_in=true,2
//code.jquery.com/jquery-2.1.0.min.js,6
//cdnjs.cloudflare.com/ajax/libs/d3-geo-projection/0.2.9/d3.geo.projection.min.js,5
https://maxcdn.bootstrapcdn.com/bootstrap/3.3.1/js/bootstrap.min.js,5
https://fb.me/react-0.14.0.js,1
https://fb.me/react-dom-0.14.0.js,1
https://cdnjs.cloudflare.com/ajax/libs/babel-core/5.8.23/browser.min.js,7
http://ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js,7
https://biglakedata.com/files/reunion/d3/queue.v1.min.js,1
http://cdnjs.cloudflare.com/ajax/libs/jasmine/2.2.0/jasmine.js,3
http://cdnjs.cloudflare.com/ajax/libs/jasmine/2.2.0/jasmine-html.js,3
http://cdnjs.cloudflare.com/ajax/libs/jasmine/2.2.0/boot.js,3
http://threejs.org/build/three.min.js,1
http://threejs.org/examples/js/controls/OrbitControls.js,1
http://threejs.org/examples/js/libs/stats.min.js,1
http://maxcdn.bootstrapcdn.com/bootstrap/latest/js/bootstrap.js,1
https://gist.github.com/roachhd/490c1d3b8955f8681f24.js,1
https://gist.github.com/roachhd/a46aebf14e52db311eb9.js,1
https://gist.github.com/jnrbsn/578379.js,2
//use.edgefonts.net/source-sans-pro:n2,i2,n3,i3,n4,i4,n6,i6,n7,i7,n9,i9:all.js,1
http://roachhd.github.io/webdesignerschecklist/scripts/vendor/807c6308.modernizr.js,1
http://roachhd.github.io/webdesignerschecklist/scripts/4776dee8.vendor.js,1
//cdnjs.cloudflare.com/ajax/libs/garlic.js/1.2.2/garlic.min.js,1
http://roachhd.github.io/webdesignerschecklist/scripts/0b813030.main.js,1
http://geeksjargon.com/content/main/themes/geektalk/assets/bower_components/jquery/dist/jquery.min.js,1
http://geeksjargon.com/assets/scripts/script.js,1
http://geeksjargon.com/content/main/themes/geektalk/assets/bower_components/nprogress/nprogress.js,1
http://chimpchomp.us/theme/chimpchomp/javascripts/modernizr.foundation.js,2
http://chimpchomp.us/theme/chimpchomp/javascripts/jquery.foundation.topbar.js,2
http://chimpchomp.us/theme/chimpchomp/javascripts/jquery.flexslider-min.js,2
http://chimpchomp.us/theme/chimpchomp/javascripts/modernizr.custom.js,2
http://chimpchomp.us/theme/chimpchomp/javascripts/app.js,2
http://chimpchomp.us/theme/chimpchomp/javascripts/swipe.js,2
http://chimpchomp.us/theme/chimpchomp/javascripts/jquery.isotope.min.js,2
http://chimpchomp.us/theme/chimpchomp/javascripts/jquery.isotope.perfectmasonry.js,2
//gnab.github.io/remark/downloads/remark-0.5.9.min.js,1
http://gnab.github.io/remark/downloads/remark-latest.min.js,1
http://use.typekit.net/vzq4ipz.js,1
http://konamicodesites.s3.amazonaws.com/javascripts/all.js,1
"+document.location.protocol+"//s3.buysellads.com/1239090/1239090.js?v=,1
https://gist.github.com/roachhd/f3233638b9b18d699ada.js,1
http://codepen.io/assets/libs/fullpage/jquery.js,1
//assets.tumblr.com/languages/errors.js?6,1
//assets.tumblr.com/assets/scripts/_t.js?_v=c9ada556546f6ad6acc4285b785fd8ab,1
//assets.tumblr.com/assets/scripts/tumblr/error_page.js?_v=56321544e058338fc26e26e1784267ea,1
http://pagead2.googlesyndication.com/pagead/show_ads.js,3
http://ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js,1
//use.edgefonts.net/lato:n1,i1,n3,i3,n4,i4,n7,i7,n9,i9:all.js,1
//use.typekit.net/dkj5obg.js,1
http://strapdownjs.com/v/0.2/strapdown.js,3
./images/twitter-bird-light-bgs.png"> </a> <h2>If you found this project useful, spread the word on Twitter!</h2> <p class="contact">Direct your questions, comments, concerns, love letters, and cat videos to <a href="http://www.twitter.com/jxtn,1
//use.typekit.net/vge6uut.js,1
http://rstacruz.github.io/flatdoc/support/vendor/jquery.js,1
http://rstacruz.github.io/flatdoc/legacy.js,1
http://rstacruz.github.io/flatdoc/flatdoc.js?94850,1
http://rstacruz.github.io/flatdoc/theme-white/script.js?94850,1
http://rstacruz.github.io/flatdoc/support/theme.js?94850,1
http://rstacruz.github.io/flatdoc/v/0.8.6/legacy.js,1
http://rstacruz.github.io/flatdoc/v/0.8.6/flatdoc.js,1
http://rstacruz.github.io/flatdoc/v/0.8.6/theme-white/script.js,1
http://d3lp1msu2r81bx.cloudfront.net/kjs/js/lib/kinetic-v5.0.1.min.js,1
http://www.quasimondo.com/StackBlurForCanvas/StackBlur.js,1
https://cdnjs.cloudflare.com/ajax/libs/three.js/r73/three.min.js,3
http://bl.ocks.org/1wheel/raw/1b6758978dc2d52d3a37/d3-jetpack.js,3
http://bl.ocks.org/1wheel/raw/1b6758978dc2d52d3a37/d3-starterkit.js,3
https://cdnjs.cloudflare.com/ajax/libs/lodash.js/2.4.1/lodash.js,4
https://cdnjs.cloudflare.com/ajax/libs/lodash.js/2.4.1/lodash.compat.min.js,2
http://cdnjs.cloudflare.com/ajax/libs/lodash.js/2.4.1/lodash.compat.min.js,1
https://storage.googleapis.com/code.getmdl.io/1.0.0/material.min.js,4
https://cdn.rawgit.com/bmershon/d3-chart-atlas/v1.0/d3.chart.js,1
http://code.jquery.com/ui/1.10.4/jquery-ui.js,1
http://marvl.infotech.monash.edu/webcola/cola.v3.min.js,10
http://cdnjs.cloudflare.com/ajax/libs/lodash.js/3.10.0/lodash.min.js,3
http://cdnjs.cloudflare.com/ajax/libs/three.js/r69/three.min.js,3
https://cdn.rawgit.com/mrdoob/three.js/r69/examples/js/loaders/ColladaLoader.js,3
http://cdnjs.cloudflare.com/ajax/libs/three.js/r68/three.min.js,1
https://cdn.rawgit.com/mrdoob/three.js/r68/examples/js/renderers/SVGRenderer.js,1
http://cdnjs.cloudflare.com/ajax/libs/three.js/r71/three.min.js,1
//wafi.iit.cnr.it/webvis/tmp/clusterfck.js,7
//wafi.iit.cnr.it/webvis/libs/jigmaps/zip.js,9
//wafi.iit.cnr.it/webvis/libs/jigmaps/tree_utils.js,8
https://raw.githubusercontent.com/husl-colors/husl/master/husl.js,1
//wafi.iit.cnr.it/webvis/libs/jigmaps/sfc_layout.js,3
//wafi.iit.cnr.it/webvis/libs/jigmaps/jigsaw.js,3
//cdnjs.cloudflare.com/ajax/libs/codemirror/4.6.0/codemirror.min.js,2
//wafi.iit.cnr.it/webvis/tmp/codemirror_mode_simple.js,2
//cdnjs.cloudflare.com/ajax/libs/codemirror/4.6.0/addon/search/searchcursor.min.js,2
//cdnjs.cloudflare.com/ajax/libs/highlight.js/8.3/highlight.min.js,2
http://cdnjs.cloudflare.com/ajax/libs/three.js/r67/three.min.js,1
//cdnjs.cloudflare.com/ajax/libs/pixi.js/3.0.8/pixi.min.js,1
//cdnjs.cloudflare.com/ajax/libs/three.js/r73/three.min.js,1
//cdnjs.cloudflare.com/ajax/libs/two.js/0.5.0/two.min.js,2
//mapbox.github.io/togeojson/togeojson.js,1
//cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js,4
https://cdnjs.cloudflare.com/ajax/libs/react/0.14.0/react.js,4
https://cdnjs.cloudflare.com/ajax/libs/react/0.14.0/react-dom.js,4
https://cdn.rawgit.com/Neilos/bihisankey/master/bihisankey.js,1
https://code.jquery.com/jquery-2.1.1.min.js,8
http://polyshrink.s3.amazonaws.com/polymorph.js,1
http://polyshrink.s3.amazonaws.com/countries.js,1
https://cdnjs.cloudflare.com/ajax/libs/p5.js/0.4.18/p5.js,1
//cdnjs.cloudflare.com/ajax/libs/lodash.js/3.10.1/lodash.js,4
https://npmcdn.com/koto@0.1.6/dist/koto.js,2
//dimplejs.org/dist/dimple.v2.1.0.min.js,1
https://cdnjs.cloudflare.com/ajax/libs/stats.js/r14/Stats.js,1
http://www.cc.puv.fi/~e1301183/circularHeatChart.js,1
http://rawgit.com/jamesleesaunders/d3.ez/master/d3.ez.js,1
https://cdnjs.cloudflare.com/ajax/libs/list.js/1.1.1/list.min.js,1
http://jay-oh-en-libs.surge.sh/Qgis2threejs.js,1
http://jay-oh-en-libs.surge.sh/threejs/OrbitControls.js,1
https://cdnjs.cloudflare.com/ajax/libs/dat-gui/0.5.1/dat.gui.min.js,4
http://jay-oh-en-libs.surge.sh/dat-gui_panel.js,1
https://cdnjs.cloudflare.com/ajax/libs/d3/3.5.8/d3.min.js,28
https://ajax.googleapis.com/ajax/libs/jqueryui/1.11.4/jquery-ui.min.js,5
https://cdnjs.cloudflare.com/ajax/libs/d3/3.5.9/d3.min.js,6
//cdnjs.cloudflare.com/ajax/libs/d3-legend/1.5.0/d3-legend.js,1
https://cdnjs.cloudflare.com/ajax/libs/topojson/1.1.0/topojson.min.js,1
https://maps.googleapis.com/maps/api/js?key=AIzaSyDwlBHEIw2KsaYlvkpUyLFzDUP-dixEra0,4
http://dev.openlayers.org/releases/OpenLayers-2.13.1/lib/OpenLayers.js,4
http://cdnjs.cloudflare.com/ajax/libs/p5.js/0.4.17/p5.js,1
http://cdn.jsdelivr.net/mojs/latest/mo.min.js,2
//www.google.com/trends/embed.js?hl=en-US&q=data+visualization,+information+visualization&cmpt=q&tz=Etc/GMT%2B3&tz=Etc/GMT%2B3&content=1&cid=TIMESERIES_GRAPH_0&export=5&w=500&h=330,1
https://public.tableau.com/javascripts/api/viz_v1.js,2
https://cdnjs.cloudflare.com/ajax/libs/crossfilter/1.3.11/crossfilter.js,3
https://cdnjs.cloudflare.com/ajax/libs/dc/1.7.0/dc.min.js,3
https://cdnjs.cloudflare.com/ajax/libs/jquery/1.11.0/jquery.min.js,3
https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.0.2/js/bootstrap.min.js,3
https://cdnjs.cloudflare.com/ajax/libs/d3-legend/1.4.0/d3-legend.min.js,1
http://cdnjs.cloudflare.com/ajax/libs/d3/3.5.6/d3.min.js,1
https://cdnjs.cloudflare.com/ajax/libs/d3-legend/1.5.0/d3-legend.min.js,3
https://cdnjs.cloudflare.com/ajax/libs/jquery-csv/0.71/jquery.csv-0.71.min.js,2
https://cdnjs.cloudflare.com/ajax/libs/jqPlot/1.0.8/jquery.jqplot.min.js,1
https://cdnjs.cloudflare.com/ajax/libs/jqPlot/1.0.8/plugins/jqplot.barRenderer.min.js,1
https://cdnjs.cloudflare.com/ajax/libs/jqPlot/1.0.8/plugins/jqplot.categoryAxisRenderer.min.js,1
https://cdnjs.cloudflare.com/ajax/libs/canvasjs/1.7.0/canvasjs.js,2
http://cdn.leafletjs.com/leaflet/v0.7.7/leaflet.js,6
https://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.4/jquery.js,1
https://cdnjs.cloudflare.com/ajax/libs/handlebars.js/4.0.3/handlebars.js,1
https://cdnjs.cloudflare.com/ajax/libs/nvd3/1.7.0/nv.d3.min.js,1
https://code.jquery.com/jquery-2.1.3.min.js,3
https://d3js.org/topojson.v1.min.js,7
http://cdnjs.cloudflare.com/ajax/libs/crossfilter/1.3.7/crossfilter.js,1
https://cdn.rawgit.com/maptimelex/spreadsheet-sorcery/gh-pages/beer-map/js/tabletop1.3.4.js,1
https://cdn.rawgit.com/maptimelex/spreadsheet-sorcery/gh-pages/beer-map/js/sheetsee.js,1
https://code.jquery.com/jquery-2.1.4.js,2
https://cdnjs.cloudflare.com/ajax/libs/d3/3.5.14/d3.min.js,11
https://cdnjs.cloudflare.com/ajax/libs/topojson/1.6.20/topojson.min.js,7
https://cdnjs.cloudflare.com/ajax/libs/lodash.js/4.1.0/lodash.js,3
http://datamaps.github.io/scripts/datamaps.world.min.js?v=1,1
https://api.tiles.mapbox.com/mapbox-gl-js/v0.12.2/mapbox-gl.js,4
https://cdnjs.cloudflare.com/ajax/libs/d3-legend/1.7.0/d3-legend.min.js,2
https://aframe.io/releases/latest/aframe.min.js,16
http://www.ankerst.de/lib/itemExplorer_10.min.js,12
https://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js,3
https://fb.me/react-0.14.3.js,3
https://fb.me/react-dom-0.14.3.js,3
https://cdnjs.cloudflare.com/ajax/libs/babel-core/5.8.23/browser.js,1
http://dc-js.github.io/dc.js/js/d3.js,2
http://dc-js.github.io/dc.js/js/crossfilter.js,2
http://dc-js.github.io/dc.js/js/dc.js,2
https://rawgit.com/kristw/75b61f9beeab9b530612/raw/389e984e4041117a9185cf6edad9f6b85a38097a/d3kit.min.js,1
//d3js.org/d3.v4.0.0-alpha.4.min.js,24
https://api.mapbox.com/mapbox.js/v2.2.4/mapbox.js,3
http://square.github.io/crossfilter/crossfilter.v1.min.js,2
https://api.mapbox.com/mapbox.js/v2.2.3/mapbox.js,11
//cdnjs.cloudflare.com/ajax/libs/ramda/0.18.0/ramda.min.js,3
https://cdnjs.cloudflare.com/ajax/libs/require.js/2.1.22/require.min.js,3
//cdnjs.cloudflare.com/ajax/libs/moment.js/2.10.6/moment.min.js,2
//cdnjs.cloudflare.com/ajax/libs/d3/3.5.10/d3.min.js,12
https://cdnjs.cloudflare.com/ajax/libs/d3-tip/0.6.7/d3-tip.min.js,3
https://cdnjs.cloudflare.com/ajax/libs/d3-legend/1.6.0/d3-legend.min.js,1
https://code.jquery.com/jquery-1.9.1.js,1
https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js,2
https://cdnjs.cloudflare.com/ajax/libs/metrics-graphics/2.7.0/metricsgraphics.min.js,1
http://www.myersdaily.org/joseph/javascript/md5.js,1
https://cdnjs.cloudflare.com/ajax/libs/p5.js/0.4.19/p5.min.js,1
https://cdnjs.cloudflare.com/ajax/libs/lodash.js/3.10.0/lodash.min.js,2
https://cdnjs.cloudflare.com/ajax/libs/react/0.13.3/react.min.js,2
https://cdnjs.cloudflare.com/ajax/libs/react/0.13.3/JSXTransformer.js,2
http://www.bloomberg.com/graphics/assets/js/vendor/lodash.underscore.min.js?,1
https://cdn.rawgit.com/sebastian-meier/d3.sketchy/1.0/d3.sketchy.js,1
https://cdnjs.cloudflare.com/ajax/libs/d3/3.5.13/d3.min.js,4
//code.jquery.com/jquery-1.11.1.js,2
//cdnjs.cloudflare.com/ajax/libs/systemjs/0.18.4/system.js,1
https://cdn.rawgit.com/martine/webtreemap/a5c3115092f3ce97c6544aff4af465a88010f01d/webtreemap.js,1
https://cdnjs.com/libraries/d3-tip,1
https://raw.githubusercontent.com/Caged/d3-tip/master/index.js,1
//api.tiles.mapbox.com/mapbox.js/plugins/leaflet-omnivore/v0.2.0/leaflet-omnivore.min.js,1
https://cdnjs.cloudflare.com/ajax/libs/simple-statistics/1.0.0/simple_statistics.min.js,1
https://npmcdn.com/orama/dist/orama.min.js,1
https://npmcdn.com/babel-core@5.8.34/browser.min.js,1
http://code.jquery.com/ui/1.11.3/jquery-ui.min.js,1
http://code.jquery.com/ui/1.11.3/themes/smoothness/jquery-ui.css,1
//rawgithub.com/madams1/calendar_heatmap/master/calendar_heatmap.bundle.js,1
//rawgithub.com/madams1/calendar_heatmap/dev/calendar_heatmap.bundle.js,1
//rawgithub.com/madams1/density.js/master/assets/scripts/science.v1.min.js,1
//rawgithub.com/madams1/density.js/master/density.min.js,1
//d3js.org/d3.v4.0.0-alpha.9.min.js,5
https://cdn.rawgit.com/Zverik/leaflet-grayscale/master/TileLayer.Grayscale.js,1
https://ajax.googleapis.com/ajax/libs/angularjs/1.4.7/angular.min.js,1
https://ajax.googleapis.com/ajax/libs/angularjs/1.4.7/angular-animate.min.js,1
https://ajax.googleapis.com/ajax/libs/angularjs/1.4.7/angular-aria.min.js,1
https://ajax.googleapis.com/ajax/libs/angular_material/1.0.0-rc5/angular-material.min.js,1
https://cdnjs.cloudflare.com/ajax/libs/bluebird/3.0.6/bluebird.js,1
https://cdn.jsdelivr.net/jstat/1.5.0/jstat.min.js,4
https://cdnjs.cloudflare.com/ajax/libs/d3-legend/1.6.0/d3-legend.js,4
https://api.tiles.mapbox.com/mapbox-gl-js/v0.11.4/mapbox-gl.js,8
https://cdnjs.cloudflare.com/ajax/libs/d3/3.5.12/d3.min.js,7
https://cdn.plot.ly/plotly-latest.min.js,1
https://cdnjs.cloudflare.com/ajax/libs/d3/3.5.10/d3.min.js,2
http://maps.google.com/maps/api/js,1
https://cdnjs.cloudflare.com/ajax/libs/d3/3.5.14/d3.js,1
https://cdnjs.cloudflare.com/ajax/libs/jquery/2.2.0/jquery.min.js,1
https://rawgit.com/gka/d3-jetpack/master/d3-jetpack.js,3
https://cdnjs.cloudflare.com/ajax/libs/rxjs/4.0.6/rx.all.min.js,1
https://cdnjs.cloudflare.com/ajax/libs/three.js/r72/three.min.js,1
https://cdnjs.cloudflare.com/ajax/libs/react/0.14.6/react.js,2
https://cdnjs.cloudflare.com/ajax/libs/react/0.14.6/react-dom.js,2
//cdnjs.cloudflare.com/ajax/libs/d3-legend/1.6.0/d3-legend.js,2
https://cdnjs.cloudflare.com/ajax/libs/react/0.14.6/react.min.js,1
https://cdnjs.cloudflare.com/ajax/libs/react/0.14.6/react-dom.min.js,1
//cdnjs.cloudflare.com/ajax/libs/d3/3.5.9/d3.min.js,5
//curran.github.io/dsv-dataset/dsv-dataset-v0.2.1.js,5
http://d3-geomap.github.io/d3-geomap/vendor/d3.geomap.dependencies.min.js,1
http://d3-geomap.github.io/d3-geomap/js/d3.geomap.min.js,1
http://chiasm-project.github.io/chiasm-component/chiasm-component-v0.2.3.js,3
http://chiasm-project.github.io/chiasm/chiasm-v0.3.0.js,3
http://chiasm-project.github.io/chiasm-dataset-loader/chiasm-dataset-loader-v0.3.1.js,3
http://chiasm-project.github.io/chiasm-data-reduction/chiasm-data-reduction-v0.3.0.js,1
http://chiasm-project.github.io/chiasm-charts/chiasm-charts-v0.1.3.js,1
http://chiasm-project.github.io/chiasm-charts/chiasm-charts-v0.1.0.js,2
https://cdnjs.cloudflare.com/ajax/libs/webcomponentsjs/0.7.18/webcomponents.min.js,1
http://x-tag.github.io/js/x-tag-components.js,1
https://ajax.googleapis.com/ajax/libs/jquery/2.2.0/jquery.min.js,1
http://maptimeboston.github.io/d3-maptime/example3/neighborhoods.js,1
http://wsj.github.io/squaire/dist/squaire.js,1
https://api.tiles.mapbox.com/mapbox-gl-js/v0.12.0/mapbox-gl.js,13
http://x3dom.org/release/x3dom-full.js,2
https://code.jquery.com/jquery-git2.min.js,1
https://api.tiles.mapbox.com/mapbox.js/plugins/leaflet-draw/v0.2.2/leaflet.draw.js,4
http://box.anchorfree.net/insert/par.js?v=,1
http://box.anchorfree.net/insert/41.js?v=,1
//datawrapper.dwcdn.net/assets/vendor/raphael-js/2.1.2/raphael-min.js,1
//datawrapper.dwcdn.net/assets/vendor/chroma-js/0.5.4/chroma.min.js,1
//datawrapper.dwcdn.net/assets/vendor/d3-light/3.1.8/d3-light.min.js,1
https://cdnjs.cloudflare.com/ajax/libs/d3/3.5.13/d3.js,5
https://t.d3fc.io/base.js,1
https://d3js.org/d3-array.v0.7.min.js,2
https://d3js.org/d3-collection.v0.1.min.js,1
https://d3js.org/d3-color.v0.4.min.js,1
https://d3js.org/d3-format.v0.5.min.js,2
https://d3js.org/d3-interpolate.v0.5.min.js,1
https://d3js.org/d3-scale.v0.6.min.js,1
https://d3js.org/d3-selection.v0.6.min.js,2
https://d3js.org/d3-axis.v0.2.min.js,2
https://d3js.org/d3-array.v0.6.min.js,2
https://rawgit.com/cbcrc/moby/master/moby-0.1.0.js,1
http://micropolar.org/micropolar-v0.2.2.js,1
https://api.tiles.mapbox.com/mapbox-gl-js/v0.12.1/mapbox-gl.js,2
http://api.tiles.mapbox.com/mapbox.js/plugins/turf/v2.0.2/turf.min.js,6
https://api.mapbox.com/mapbox.js/plugins/leaflet-omnivore/v0.2.0/leaflet-omnivore.min.js,2
https://api.mapbox.com/mapbox.js/plugins/leaflet-zoomslider/v0.7.0/L.Control.Zoomslider.js,2
https://api.mapbox.com/mapbox.js/plugins/leaflet-fullscreen/v0.0.4/Leaflet.fullscreen.min.js,2
https://cdn.pubnub.com/pubnub-dev.js,1
https://cdnjs.cloudflare.com/ajax/libs/ol3/3.11.2/ol.min.js,1
https://cdn.rawgit.com/rveciana/d3-composite-projections/master/src/conicConformalEurope-proj.js,2
http://polymaps.org/polymaps.min.js?2.5.1,1
http://polymaps.org/ex/procedural.js?2.0.2,1
http://vega.github.io/vega-editor/vendor/d3.min.js,9
http://vega.github.io/vega/vega.min.js,5
https://cdnjs.cloudflare.com/ajax/libs/jwerty/0.3.2/jwerty.min.js,1
https://cdnjs.cloudflare.com/ajax/libs/jquery/1.11.3/jquery.min.js,2
http://viz.hpccsystems.com/v1.8.4/dist-amd-src/hpcc-viz.js,1
http://viz.hpccsystems.com/v1.8.4/dist-amd-src/hpcc-bundles.js,1
http://viz.hpccsystems.com/v1.10.0-rc6/dist-amd/hpcc-viz.js,1
http://viz.hpccsystems.com/v1.10.0-rc6/dist-amd/hpcc-bundles.js,1
http://viz.hpccsystems.com/v1.8.2/dist-amd/hpcc-viz.js,4
http://viz.hpccsystems.com/v1.8.2/dist-amd/hpcc-bundles.js,4
http://viz.hpccsystems.com/v1.10.0-rc2/dist-amd/hpcc-viz.js,2
http://viz.hpccsystems.com/v1.10.0-rc2/dist-amd/hpcc-bundles.js,2
https://gist.github.com/emeeks/3361332/raw/61cf57523fe8cf314333e5f60cc266351fec2017/d3.layout.cloud.js,1
//cdn.rawgit.com/gka/d3-jetpack/master/d3-jetpack.js,2
https://raw.github.com/sole/tween.js/master/build/tween.min.js,1
https://d3js.org/d3-random.v0.2.min.js,1
https://maps.googleapis.com/maps/api/js?key=AIzaSyBLnJhjUETjEUnu3aPbVd_-QUpERzhUvms,1
http://cdnjs.cloudflare.com/ajax/libs/xregexp/2.0.0/xregexp-min.js,1
https://rawgithub.com/tmcw/simple-statistics/master/src/simple_statistics.js?v=0.8.0,1
//code.jquery.com/jquery-latest.min.js,1
https://code.jquery.com/jquery-1.10.2.min.js,1
//code.jquery.com/jquery-migrate-1.2.1.min.js,2
http://colineberhardt.github.io/d3fc/Layout.js,15
https://github.com/ScottLogic/d3fc/releases/download/v0.4.0/d3fc.min.js,5
http://code.jquery.com/jquery-1.7.1.js,7
http://vega.github.io/vega-editor/vendor/vega.min.js,4
https://cdnjs.cloudflare.com/ajax/libs/gmaps.js/0.4.12/gmaps.min.js,1
https://cdnjs.cloudflare.com/ajax/libs/queue-async/1.0.7/queue.js,1
//cdnjs.cloudflare.com/ajax/libs/p5.js/0.3.13/p5.min.js,1
http://builds.emberjs.com/tags/v1.13.5/ember-template-compiler.js,10
http://builds.emberjs.com/tags/v1.13.5/ember.debug.js,10
https://api.tiles.mapbox.com/mapbox-gl-js/v0.13.1/mapbox-gl.js,1
https://cdnjs.cloudflare.com/ajax/libs/fetch/0.10.1/fetch.min.js,1
//api.tiles.mapbox.com/mapbox.js/plugins/turf/v2.0.0/turf.min.js,2
//d3js.org/d3.v4.0.0-alpha.16.min.js,1
http://maps.google.com/maps/api/js?v=3&amp;sensor=false,1
http://openlayers.org/en/master/build/ol.js,1
https://d3js.org/d3-time.v0.2.min.js,1
http://maps.metastudio.org/lib/leaflet/Leaflet-1.0.0-b2/leaflet.js,1
https://cdnjs.cloudflare.com/ajax/libs/d3-legend/1.8.0/d3-legend.js,1
https://raw.githubusercontent.com/jiahuang/d3-timeline/master/src/d3-timeline.js,1
https://api.tiles.mapbox.com/mapbox-gl-js/v0.12.3/mapbox-gl.js,1
https://spreadsheets.google.com/feeds/cells/1Mu_vculJGX5vLBRL69PhRRYsdxwgccZf6vHtDNYqRWk/od6/public/values?alt=json-in-script&callback=render,1
//d3js.org/topojson.v0.min.js,1
https://api.mapbox.com/mapbox.js/v2.3.0/mapbox.js,1
https://api.mapbox.com/mapbox.js/plugins/leaflet-markercluster/v0.4.0/leaflet.markercluster.js,1
https://cdnjs.cloudflare.com/ajax/libs/underscore.js/1.6.0/underscore.js,4
https://cdnjs.cloudflare.com/ajax/libs/d3/3.5.5/d3.min.js,1
http://colorbrewer2.org/export/colorbrewer.js,1
//d3js.org/d3.v4.0.0-alpha.18.min.js,14
//d3js.org/d3-timer.v0.3.min.js,2
//d3js.org/d3-ease.v0.7.min.js,2
//d3js.org/d3-timer.v0.2.min.js,1
//d3js.org/d3.v4.0.0-alpha.15.min.js,2
//d3js.org/d3-random.v0.1.min.js,1
//d3js.org/d3-polygon.v0.1.min.js,1
//d3js.org/d3-voronoi.v0.3.min.js,1
//d3js.org/d3-timer.v0.1.min.js,1
http://d3js.org/d3.v4.0.0-alpha.4.min.js,1
https://cdnjs.cloudflare.com/ajax/libs/underscore.js/1.8.3/underscore.js,1
https://rawgithub.com/tweenjs/tween.js/master/build/tween.min.js,1
https://rawgithub.com/caolan/async/master/lib/async.js,1
https://cdnjs.cloudflare.com/ajax/libs/underscore.js/1.7.0/underscore.js,3
https://cdnjs.cloudflare.com/ajax/libs/backbone.js/1.1.2/backbone.js,1
https://code.jquery.com/jquery-2.1.3.js,6
https://cdnjs.cloudflare.com/ajax/libs/three.js/r70/three.js,2
//cdnjs.cloudflare.com/ajax/libs/jquery/2.1.1/jquery.js,10
//cdnjs.cloudflare.com/ajax/libs/three.js/r69/three.js,1
http://code.jquery.com/jquery-1.11.1.js,1
https://rawgit.com/abernier/3225993/raw/7f928620dbe65570950ab551ee06b82e480507bb/loop.js,1
https://code.jquery.com/ui/1.10.4/jquery-ui.min.js,1
https://code.jquery.com/jquery-2.1.1.js,1
http://www.webdetails.pt/ctools/charts/lib/jquery.tipsy.js,1
http://www.webdetails.pt/ctools/charts/lib/protovis.js,1
http://www.webdetails.pt/ctools/charts/lib/protovis-msie.js,1
http://www.webdetails.pt/ctools/charts/lib/tipsy.js,1
http://www.webdetails.pt/ctools/charts/lib/def.js,1
http://www.webdetails.pt/ctools/charts/lib/pvc-r2.0.js,1
https://github.com/alexei/sprintf.js/raw/master/dist/sprintf.min.js,1
http://www.webdetails.pt/ctools/charts/lib/q01-01.js,1
http://www.webdetails.pt/ctools/charts/lib/bp.js,1
//cdnjs.cloudflare.com/ajax/libs/oboe.js/2.1.2/oboe-browser.min.js,1
http://pubnub.github.io/eon/v/eon/0.0.9/eon.js,1
https://rawgit.com/cool-Blue/d3-lib/master/transitions/end-all/1.0.0/endAll.js,1
https://rawgit.com/cool-Blue/d3-lib/master/inputs/select/select.js,1
https://rawgit.com/cool-Blue/d3-lib/master/tool-tip/0.0.0/tool-tip.js,1
https://rawgit.com/cool-Blue/d3-lib/master/inputs/number/input-number.js,1
https://gitcdn.xyz/repo/cool-Blue/d3-lib/master/elapsedTime/elapsed-time-2.0.js,6
https://gitcdn.xyz/repo/cool-Blue/d3-lib/master/inputs/button/2.0.0/button.js,3
https://gitcdn.xyz/repo/cool-Blue/d3-lib/master/plot/plot-transform.js,5
https://gitcdn.xyz/repo/cool-Blue/d3-lib/master/plot/fps-histogram.js,5
https://gitcdn.xyz/repo/cool-Blue/d3-lib/master/inputs/select/select.js,2
https://gitcdn.xyz/repo/cool-Blue/d3-lib/master/transitions/end-all/endAll.js,2
https://cdnjs.cloudflare.com/ajax/libs/velocity/1.2.2/velocity.min.js,1
https://cdnjs.cloudflare.com/ajax/libs/velocity/1.2.2/velocity.ui.min.js,1
https://cdnjs.cloudflare.com/ajax/libs/pixi.js/3.0.7/pixi.js,11
https://cdnjs.cloudflare.com/ajax/libs/tinycolor/1.1.2/tinycolor.min.js,14
https://gitcdn.xyz/repo/cool-Blue/d3-lib/master/filters/shadow.js,17
https://gitcdn.xyz/repo/cool-Blue/d3-lib/master/elapsedTime/elapsed-time-1.0.js,1
http://www.goodboydigital.com/pixijs/bunnymark/js/pixi.js,1
https://rawgit.com/cool-Blue/d3-lib/516508b6aa8d9ae724ceb194257226aa29d48fb7/inputs/select/select.js,1
https://gitcdn.xyz/repo/cool-Blue/d3-lib/master/plot/plot-transform-2.0.0/plot-transform.js,1
https://gitcdn.xyz/repo/cool-Blue/40e550b1507cca31b0bb/raw/b83ceb0f8b4a2b6256f079f5887fc5243baedd4f/elapsed%2520time%25201.0.js,2
https://cdnjs.cloudflare.com/ajax/libs/d3/3.4.11/d3.min.js,4
https://gitcdn.xyz/repo/cool-Blue/d3-lib/master/inputs/button/button.js,1
http://graphics8.nytimes.com/newsgraphics/2012/11/05/election-county-shift/1269d0aadb7a9c5e3e694033d24af804d28235aa/d3.js,1
http://graphics8.nytimes.com/newsgraphics/2012/11/05/election-county-shift/1269d0aadb7a9c5e3e694033d24af804d28235aa/data.js,1
https://gitcdn.xyz/repo/cool-Blue/d3/master/d3%20CB.js,1
//cdnjs.cloudflare.com/ajax/libs/queue-async/1.0.7/queue.js,1
https://cdnjs.cloudflare.com/ajax/libs/d3fc/4.3.1/d3fc.bundle.min.js,1
http://colineberhardt.github.io/d3fc/d3fc.js,10
https://cdnjs.cloudflare.com/ajax/libs/d3-legend/1.8.0/d3-legend.min.js,2
//cdn.bootcss.com/modernizr/2.8.3/modernizr.min.js,1
https://d3js.org/d3-color.v0.3.min.js,1
https://d3js.org/d3-interpolate.v0.4.min.js,1
https://d3js.org/d3-scale.v0.5.min.js,1
//cdnjs.cloudflare.com/ajax/libs/d3/3.5.14/d3.min.js,3
//gabelerner.github.io/canvg/canvg.js,1
//rawgit.com/d3/d3-plugins/master/hexbin/hexbin.js,1
//rawgit.com/mbostock/d3/master/lib/colorbrewer/colorbrewer.js,1
http://veltman.github.io/wherewolf/wherewolf.js,3
//maps.googleapis.com/maps/api/js?v=3.exp&sensor=false,2
http:d//3js.org/d3.v3.js,2
http://d3js.org//d3.v3.js,2
http://libs.cartocdn.com/cartodb.js/v3/3.11/cartodb.js,2
//cdnjs.cloudflare.com/ajax/libs/jquery.tipsy/1.0.2/jquery.tipsy.min.js,1
https://rawgit.com/Qinita/examples2/master/airports/queue.js,1
http://cdnjs.cloudflare.com/ajax/libs/handlebars.js/2.0.0-alpha.1/handlebars.min.js,1
http://code.jquery.com/ui/1.11.4/jquery-ui.js,1
http://livejs.com/live.js,2
http://d3js.org./d3.v3.js,7
https://rawgit.com/ahmohamed/specdraw.js/master/specdraw.js,4
http://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js,1
https://cdnjs.cloudflare.com/ajax/libs/pym/0.4.1/pym.min.js,2
//ajax.googleapis.com/ajax/libs/jqueryui/1.11.1/jquery-ui.min.js,1
//cdn.jsdelivr.net/jquery.ui.touch-punch/0.2.3/jquery.ui.touch-punch.min.js,1
https://maps.googleapis.com/maps/api/js,2
http://maps.googleapis.com/maps/api/js?v=3.exp&sensor=false&libraries=visualization,drawing,places,weather,geometry,4
https://maps.googleapis.com/maps/api/js?v=3.exp&libraries=places,3
http://maps.googleapis.com/maps/api/js?v=3.exp&sensor=false,3
//cdnjs.cloudflare.com/ajax/libs/d3/3.5.2/d3.js,1
//cdnjs.cloudflare.com/ajax/libs/d3/3.5.2/d3.min.js,1
https://cdn.rawgit.com/mbostock/d3/master/d3.js,1
//cdn.optimizely.com/js/339458361.js,1
http://www.bigbluetest.org/bbt_scripts/bbtform.js,1
//cdn.jsdelivr.net/pouchdb/2.2.3/pouchdb.min.js,1
//cdn.jsdelivr.net/jquery/2.1.1/jquery.js,3
//cdnjs.cloudflare.com/ajax/libs/handlebars.js/1.3.0/handlebars.js,1
//cdn.jsdelivr.net/emberjs/1.5.1/ember.js,3
//cdn.jsdelivr.net/pouchdb/2.2.0/pouchdb.js,3
//cdn.jsdelivr.net/handlebarsjs/1.3.0/handlebars.amd.js,2
//cdn.jsdelivr.net/jstat/1.5.2/jstat.min.js,4
//cdn.rawgit.com/novus/nvd3/v1.8.1/build/nv.d3.min.js,1
//cdnjs.cloudflare.com/ajax/libs/leaflet/0.7.3/leaflet.js,1
//cdnjs.cloudflare.com/ajax/libs/d3/3.4.12/d3.min.js,1
//static.addtoany.com/menu/page.js,1
//cdnjs.cloudflare.com/ajax/libs/coffee-script/1.7.1/coffee-script.min.js,1
http://cytoscape.github.io/cytoscape.js/api/cytoscape.js-latest/cytoscape.min.js,1
https://cdnjs.cloudflare.com/ajax/libs/d3/3.5.2/d3.min.js,3
http://d26b395fwzu5fz.cloudfront.net/3.0.0/keen.min.js,1
http://www.cctv-america.com/d3/d3.min.js,1
http://www.cctv-america.com/d3/d3.tip.v0.6.3.js,1
//use.typekit.net/xws1szy.js,2
HTTP://d3js.org/d3.v3.min.js,1
HTTP://d3js.org/d3.v3.js,5
//cdn.jsdelivr.net/lodash/2.4.1/lodash.min.js,3
http://davidstutz.github.io/bootstrap-multiselect/dist/js/bootstrap-multiselect.js,2
http://cdn.jsdelivr.net/jquery/1/jquery.min.js,3
http://cdn.jsdelivr.net/momentjs/latest/moment.min.js,3
http://cdn.jsdelivr.net/bootstrap.daterangepicker/2/daterangepicker.js,3
//cdn.jsdelivr.net/jquery/1/jquery.min.js,2
//cdn.jsdelivr.net/momentjs/latest/moment.min.js,2
//cdn.jsdelivr.net/bootstrap.daterangepicker/2/daterangepicker.js,2
http://code.jquery.com/ui/1.11.4/jquery-ui.min.js,1
https://cdnjs.cloudflare.com/ajax/libs/jqueryui-touch-punch/0.2.3/jquery.ui.touch-punch.min.js,1
//use.edgefonts.net/cabin.js,6
https://api.tiles.mapbox.com/mapbox.js/plugins/leaflet-label/v0.2.1/leaflet.label.js,2
http://greencracker.net/wp-content/uploads/2015/06/d3.v2.min_.js,1
http://greencracker.net/wp-content/uploads/2015/06/topojson.js,1
http://greencracker.net/wp-content/uploads/2015/06/cartogram.js,1
http://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/js/bootstrap.min.js,1
http://res.dallasnews.com/interactives/template/common/js/responsive-styles.js,1
http://ajax.googleapis.com/ajax/libs/webfont/1/webfont.js,1
http://launch.newsinc.com/js/embed.js,1
http://www.googletagservices.com/tag/js/gpt.js,1
http://res.dallasnews.com/resources/cobrand/js/blogs/parselyDynamicTracking.js,1
http://res.dallasnews.com/interactives/template/common/js/responsive-header.js,1
http://res.dallasnews.com/interactives/template/common/js/responsive-footer.js,1
http://cdn.gigya.com/js/socialize.js?apiKey=3_9lzrxJh-GQofXtoOq-ADFDpwOla0DXKJOvVl_KnlZPjeuRyBKYHjyaA2UYgGvXGv&amp;ver=3.0.4,1
//cdnjs.cloudflare.com/ajax/libs/jquery/1.11.1-rc2/jquery.min.js,1
//code.jquery.com/jquery-1.10.2.js,4
//cdnjs.cloudflare.com/ajax/libs/select2/3.5.0/select2.min.js,1
https://cdnjs.cloudflare.com/ajax/libs/d3/3.5.10/d3.js,1
https://cdnjs.cloudflare.com/ajax/libs/jquery/3.0.0-alpha1/jquery.js,1
http://stats.wp.com/e-201515.js,3
https://rawgit.com/justinvdm/strain/master/strain.js,9
https://rawgit.com/praekelt/sapphire/develop/build/sapphire.js,7
https://rawgit.com/visionmedia/superagent/master/superagent.js,3
http://d3js/d3.v3.js,1
https://cdnjs.cloudflare.com/ajax/libs/jquery/3.0.0-beta1/jquery.min.js,1
https://cdnjs.cloudflare.com/ajax/libs/trix/0.9.5/trix.js,1
https://jspm.io/system@0.19.js,1
https://cdn.jsdelivr.net/riot/2.3/riot+compiler.min.js,1
https://use.typekit.net/exf4iwe.js,1
https://rawgit.com/mattborn/52b728565b9c1260e0b4/raw/typekit-brandon.js,1
https://rawgithub.com/mattborn/2d4e3b07ff79a73e878a/raw/typekit.js,2
https://jspm.io/system@0.16.js,4
https://cdnjs.cloudflare.com/ajax/libs/immutable/3.7.2/immutable.min.js,1
https://cdnjs.cloudflare.com/ajax/libs/lodash.js/3.7.0/lodash.min.js,1
https://cdnjs.cloudflare.com/ajax/libs/react/0.13.1/react-with-addons.js,2
https://cdn.firebase.com/js/client/2.0.1/firebase.js,1
https://cdn.firebase.com/libs/reactfire/0.4.0/reactfire.min.js,1
https://cdnjs.cloudflare.com/ajax/libs/lodash.js/3.6.0/lodash.js,1
https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.10.2/moment.js,1
https://cdnjs.cloudflare.com/ajax/libs/react-router/0.13.2/ReactRouter.js,1
https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.9.0/moment.min.js,1
https://cdnjs.cloudflare.com/ajax/libs/velocity/1.2.2/velocity.js,1
//use.typekit.net/exf4iwe.js,4
//cdnjs.cloudflare.com/ajax/libs/react/0.12.2/react-with-addons.js,2
//cdnjs.cloudflare.com/ajax/libs/react/0.12.2/JSXTransformer.js,2
//cdnjs.cloudflare.com/ajax/libs/malihu-custom-scrollbar-plugin/3.0.6/jquery.mCustomScrollbar.concat.min.js,1
//cdnjs.cloudflare.com/ajax/libs/sass.js/0.4.0/sass.js,5
//cdnjs.cloudflare.com/ajax/libs/backbone.js/1.1.2/backbone.js,4
//cdnjs.cloudflare.com/ajax/libs/moment.js/2.8.4/moment.js,1
//cdnjs.cloudflare.com/ajax/libs/react/0.12.1/react-with-addons.js,2
//cdnjs.cloudflare.com/ajax/libs/react/0.12.1/JSXTransformer.js,2
//cdnjs.cloudflare.com/ajax/libs/moment.js/2.8.3/moment.js,3
//cdnjs.cloudflare.com/ajax/libs/react/0.11.2/react-with-addons.js,2
//cdnjs.cloudflare.com/ajax/libs/react/0.11.2/JSXTransformer.js,2
//cdnjs.cloudflare.com/ajax/libs/jquery.touchswipe/1.6.4/jquery.touchSwipe.min.js,1
//cdnjs.cloudflare.com/ajax/libs/sass.js/0.4.0/sass.min.js,4
//cdnjs.cloudflare.com/ajax/libs/lodash.js/2.4.1/lodash.min.js,3
//cdnjs.cloudflare.com/ajax/libs/moment.js/2.7.0/moment.min.js,2
//cdnjs.cloudflare.com/ajax/libs/react/0.11.0/react-with-addons.min.js,3
//cdnjs.cloudflare.com/ajax/libs/react/0.11.0/JSXTransformer.js,3
http://d3js.org/d3.hive.v0.min.js,1
http://phuonghuynh.github.io/js/bower_components/jquery/dist/jquery.min.js,1
http://phuonghuynh.github.io/js/bower_components/d3/d3.min.js,1
http://phuonghuynh.github.io/js/bower_components/d3-transform/src/d3-transform.js,1
http://phuonghuynh.github.io/js/bower_components/cafej/src/extarray.js,1
http://phuonghuynh.github.io/js/bower_components/cafej/src/misc.js,1
http://phuonghuynh.github.io/js/bower_components/cafej/src/micro-observer.js,1
http://phuonghuynh.github.io/js/bower_components/microplugin/src/microplugin.js,1
http://phuonghuynh.github.io/js/bower_components/bubble-chart/src/bubble-chart.js,1
http://phuonghuynh.github.io/js/bower_components/bubble-chart/src/plugins/central-click/central-click.js,1
http://phuonghuynh.github.io/js/bower_components/bubble-chart/src/plugins/lines/lines.js,1
https://cdn.rawgit.com/rveciana/d3-composite-projections/v0.3.0/composite-projections.min.js,2
https://cdn.rawgit.com/rveciana/d3-composite-projections/v0.2.0/composite-projections.min.js,1
https://cdn.rawgit.com/rveciana/d3-composite-projections/0.0.3/composite-projections.min.js,4
http://eligrey.com/demos/FileSaver.js/Blob.js,1
http://eligrey.com/demos/FileSaver.js/FileSaver.js,1
http://vega.github.io/vega-editor/vendor/d3.geo.projection.min.js,2
http://vega.github.io/vega-editor/vendor/topojson.js,2
https://apis.google.com/js/platform.js,2
http://use.typekit.com/brf5jpj.js,8
//use.typekit.net/drk2sev.js,6
http://d3.js.org/d3.v3.js,1
https://rawgit.com/tpreusse/radar-chart-d3/master/src/radar-chart.js,1
//use.typekit.net/jet8jnr.js,2
https://api.mapbox.com/mapbox.js/v2.1.9/mapbox.js,1
https://api.tiles.mapbox.com/mapbox.js/plugins/turf/v2.0.0/turf.min.js,3
https://code.jquery.com/jquery-1.11.0.min.js,1
https://api.tiles.mapbox.com/mapbox.js/plugins/leaflet-heat/v0.1.0/leaflet-heat.js,1
https://api.tiles.mapbox.com/mapbox.js/v2.0.0/mapbox.js,1
https://api.tiles.mapbox.com/mapbox.js/plugins/leaflet-pip/v0.0.2/leaflet-pip.js,1
https://d3js.org/d3.v3.js,2
https://d3js.org/topojson.v1.js,2
https://rawgithub.com/markmarkoh/datamaps/master/dist/datamaps.none.min.js,2
https://rawgithub.com/markmarkoh/datamaps/master/dist/datamaps.prt.js,2
https://rawgithub.com/markmarkoh/datamaps/master/dist/datamaps.all.min.js,2
//d3js.org/d3.v4.0.0-alpha.21.min.js,2
//libs.cartocdn.com/cartodb.js/v3/3.15/cartodb.js,2
//api.tiles.mapbox.com/mapbox.js/v2.2.1/mapbox.standalone.js,2
//code.jquery.com/ui/1.11.4/jquery-ui.js,2
http://use.typekit.net/emf7xrp.js,1
//s7.addthis.com/js/300/addthis_widget.js#pubid=ra-551311020cabbff0,1
http://cdnjs.cloudflare.com/ajax/libs/gsap/1.11.6/TweenLite.min.js,1
http://cdnjs.cloudflare.com/ajax/libs/gsap/1.11.6/plugins/CSSPlugin.min.js,1
http://cdnjs.cloudflare.com/ajax/libs/gsap/1.11.6/plugins/ScrollToPlugin.min.js,1
https://rawgit.com/krampstudio/aja.js/1ef8622dc808188944a5d47eeda64a00cbd88164/aja.min.js,1
https://cdnjs.cloudflare.com/ajax/libs/handlebars.js/3.0.2/handlebars.js,1
http://libs.cartocdn.com/cartodb.js/v3/3.14/cartodb.js,1
https://api.tiles.mapbox.com/mapbox.js/v2.1.4/mapbox.standalone.js,1
http://ajax.googleapis.com/ajax/libs/jqueryui/1.11.0/jquery-ui.min.js,1
http://maps.google.com/maps/api/js?v=3&sensor=false,1
//cdn.rawgit.com/uscensusbureau/citysdk/Release1.1/js/citysdk.js,1
//cdn.rawgit.com/uscensusbureau/citysdk/Release1.1/js/citysdk.census.js,1
https://cdnjs.cloudflare.com/ajax/libs/polymaps/2.5.1/polymaps.min.js,1
https://rawgit.com/Asymmetrik/leaflet-d3/master/dist/leaflet-d3.js,1
https://rawgit.com/d3/d3-plugins/master/hexbin/hexbin.js,1
http://bl.ocks.org/mbostock/raw/4248145/d3.hexbin.min.js,1
https://ajax.googleapis.com/ajax/libs/angularjs/1.3.14/angular.min.js,2
https://cdnjs.cloudflare.com/ajax/libs/angular-local-storage/0.1.5/angular-local-storage.min.js,1
//maps.google.com/maps/api/js?sensor=true,6
//d3js.org/d3.v4.0.0-alpha.28.min.js,6
//d3js.org/d3.v4.0.0-alpha.33.min.js,1
https://cdnjs.cloudflare.com/ajax/libs/d3/3.5.16/d3.min.js,2
https://npmcdn.com/topojson@1.6.24/build/topojson.min.js,1
https://npmcdn.com/d3@3.5.12/d3.js,1
https://npmcdn.com/d3fc-rebind@3.0.0/build/d3fc-rebind.js,1
https://npmcdn.com/d3fc-label-layout@1.0.0/build/d3fc-label-layout.js,1
http://viz.hpccsystems.com/v1.10.0/dist-amd/hpcc-viz.js,2
http://viz.hpccsystems.com/v1.10.0/dist-amd/hpcc-bundles.js,2
//cdnjs.cloudflare.com/ajax/libs/dat-gui/0.5.1/dat.gui.min.js,4
//www.google-analytics.com/analytics.js,1
http://neuralengr.com/asifr/journals//jquery.min.js,1
http://neuralengr.com/asifr/journals//scripts.js,1
//d3js.org/d3.v2.min.js,7
https://gist.github.com/N0taN3rd/f1ba6bef2fc906b87dbf#file-d3tip-js,1
https://www.gstatic.com/charts/loader.js,1
//cdnjs.cloudflare.com/ajax/libs/lodash.js/4.6.1/lodash.min.js,1
https://cdn.rawgit.com/fabid/d3-heatmap/master/heatmap.js,2
https://cdn.rawgit.com/fabid/d3-returntimemap/master/returntimemap.js,1
https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.11.2/moment.min.js,1
https://cdn.rawgit.com/fabid/d3-rectbin/master/rectbin.js,1
https://rawgit.com/Delapouite/JsClipper/master/clipper.js,1
https://www.dropbox.com/home/CreativeCode?preview=reviews+2.csv,1
https://ajax.googleapis.com/ajax/libs/jquery/1.12.0/jquery.min.js,4
https://fbcdn-dragon-a.akamaihd.net/hphotos-ak-xpa1/t39.3284-6/12512178_218562685145124_130271029_n.js,1
https://fbcdn-dragon-a.akamaihd.net/hphotos-ak-xfa1/t39.3284-6/12512184_1664789273772979_614489084_n.js,1
https://cdnjs.cloudflare.com/ajax/libs/babel-core/5.8.24/browser.js,1
//d3js.org/d3.v4.0.0-alpha.35.min.js,3
//d3js.org/d3.v4.0.0-alpha.23.min.js,2
//d3js.org/d3.v4.0.0-alpha.22.min.js,1
https://cdnjs.cloudflare.com/ajax/libs/jquery/2.2.1/jquery.js,1
https://api.tiles.mapbox.com/mapbox-gl-js/v0.15.0/mapbox-gl.js,2
https://api.mapbox.com/mapbox.js/plugins/turf/v2.0.2/turf.min.js,1
https://api.tiles.mapbox.com/mapbox-gl-js/v0.14.2/mapbox-gl.js,2
https://fb.me/react-with-addons-0.14.7.min.js,2
https://fb.me/react-dom-0.14.7.min.js,2
//cdnjs.cloudflare.com/ajax/libs/d3/3.5.3/d3.min.js,1
https://cdnjs.cloudflare.com/ajax/libs/lodash.js/4.6.1/lodash.js,1
https://d3js.org/queue.v1.min.js,3
https://cdnjs.cloudflare.com/ajax/libs/materialize/0.97.0/js/materialize.min.js,4
https://cdnjs.cloudflare.com/ajax/libs/materialize/0.97.6/js/materialize.min.js,1
https://cdnjs.cloudflare.com/ajax/libs/materialize/0.97.3/js/materialize.min.js,3
//cdnjs.cloudflare.com/ajax/libs/d3/3.5.3/d3.js,1
https://cdnjs.cloudflare.com/ajax/libs/sylvester/0.1.3/sylvester.min.js,1
http://viz.hpccsystems.com/v1.14.0-rc4/dist-amd/hpcc-viz.js,1
http://viz.hpccsystems.com/v1.14.0-rc4/dist-amd/hpcc-viz-common.js,1
http://viz.hpccsystems.com/v1.12.2/dist-amd/hpcc-viz.js,2
http://cdn.rawgit.com/hpcc-systems/Visualization/v1.14.0-rc2/dist-amd/hpcc-viz.js,1
https://d3js.org/d3.v4.0.0-alpha.35.min.js,1
https://d3js.org/d3-dsv.v0.3.min.js,1
https://api.mapbox.com/mapbox-gl-js/v0.20.1/mapbox-gl.js,2
https://api.tiles.mapbox.com/mapbox-gl-js/v0.20.0/mapbox-gl.js,2
https://code.jquery.com/jquery-1.10.2.js,1
https://square.github.io/cubism/cubism.v1.min.js,3
https://d3js.org/d3.v4.0.0-alpha.45.js,1
https://d3js.org/d3-hsv.v0.0.js,1
https://d3js.org/d3-scale-chromatic.v0.3.js,1
http://echarts.baidu.com/doc/example/www/js/esl.js,1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment