Compare commits

...

13 Commits

Author SHA1 Message Date
Alexey Velikiy 7747015f6c release 7 years ago
Alexey Velikiy a063d1f5c5 release 7 years ago
Alexey Velikiy 5008fae477 release 7 years ago
Alexey Velikiy 41ef4d7e47 release 7 years ago
Alexey Velikiy 12a8dc5b89 release 7 years ago
Alexey Velikiy 0a005e3eb4 release 7 years ago
Alexey Velikiy a6f0a6a97e release 7 years ago
Alexey Velikiy 9bcbff5a13 replace /static 7 years ago
Alexey Velikiy da05a13395 fx index 7 years ago
Alexey Velikiy b9a4077c30 rm more 7 years ago
Alexey Velikiy d0ed47c3d3 i don't know what im doing 7 years ago
Alexey Velikiy 0b2670e9ae release 7 years ago
Alexey Velikiy d5f2de0c9a rm eveything 7 years ago
  1. 13
      .babelrc
  2. 9
      .editorconfig
  3. 2
      .gitignore
  4. 21
      README.md
  5. 40
      build/build.js
  6. 45
      build/check-versions.js
  7. 9
      build/dev-client.js
  8. 81
      build/dev-server.js
  9. 64
      build/utils.js
  10. 17
      build/vue-loader.conf.js
  11. 64
      build/webpack.base.conf.js
  12. 35
      build/webpack.dev.conf.js
  13. 102
      build/webpack.prod.conf.js
  14. 6
      config/dev.env.js
  15. 38
      config/index.js
  16. 3
      config/prod.env.js
  17. 12
      index.html
  18. 51
      package.json
  19. 28
      src/App.vue
  20. BIN
      src/assets/logo.png
  21. 53
      src/components/Hello.vue
  22. 11
      src/main.js
  23. 0
      static/.gitkeep
  24. 278
      static/css/app.ea478ad0f98c40581c472cf6cea74c24.css
  25. 1
      static/css/app.ea478ad0f98c40581c472cf6cea74c24.css.map
  26. 284
      static/data/earthquakes.csv
  27. 51
      static/data/states-data.csv
  28. 1
      static/data/us.json
  29. 2
      static/js/app.bb478689be3640ebf141.js
  30. 1
      static/js/app.bb478689be3640ebf141.js.map
  31. 2
      static/js/manifest.0d9440aa0954c24a67c3.js
  32. 1
      static/js/manifest.0d9440aa0954c24a67c3.js.map
  33. 24
      static/js/vendor.03b56a03b17565331709.js
  34. 1
      static/js/vendor.03b56a03b17565331709.js.map

13
.babelrc

@ -1,13 +0,0 @@
{
"presets": [
["es2015", { "modules": false }],
"stage-2"
],
"plugins": ["transform-runtime"],
"comments": false,
"env": {
"test": {
"plugins": [ "istanbul" ]
}
}
}

9
.editorconfig

@ -1,9 +0,0 @@
root = true
[*]
charset = utf-8
indent_style = space
indent_size = 2
end_of_line = lf
insert_final_newline = true
trim_trailing_whitespace = true

2
.gitignore vendored

@ -1,4 +1,4 @@
.DS_Store
node_modules/
dist/
npm-debug.log
dist

21
README.md

@ -1,21 +0,0 @@
# d3vue
> An example project of how use Vue.js with D3.js
## Build Setup
``` bash
# install dependencies
npm install
# serve with hot reload at localhost:8080
npm run dev
# build for production with minification
npm run build
# build for production and view the bundle analyzer report
npm run build --report
```
For detailed explanation on how things work, checkout the [guide](http://vuejs-templates.github.io/webpack/) and [docs for vue-loader](http://vuejs.github.io/vue-loader).

40
build/build.js

@ -1,40 +0,0 @@
// https://github.com/shelljs/shelljs
require('./check-versions')()
process.env.NODE_ENV = 'production'
var ora = require('ora')
var path = require('path')
var chalk = require('chalk')
var shell = require('shelljs')
var webpack = require('webpack')
var config = require('../config')
var webpackConfig = require('./webpack.prod.conf')
var spinner = ora('building for production...')
spinner.start()
var assetsPath = path.join(config.build.assetsRoot, config.build.assetsSubDirectory)
shell.rm('-rf', assetsPath)
shell.mkdir('-p', assetsPath)
shell.config.silent = true
shell.cp('-R', 'static/*', assetsPath)
shell.config.silent = false
webpack(webpackConfig, function (err, stats) {
spinner.stop()
if (err) throw err
process.stdout.write(stats.toString({
colors: true,
modules: false,
children: false,
chunks: false,
chunkModules: false
}) + '\n\n')
console.log(chalk.cyan(' Build complete.\n'))
console.log(chalk.yellow(
' Tip: built files are meant to be served over an HTTP server.\n' +
' Opening index.html over file:// won\'t work.\n'
))
})

45
build/check-versions.js

@ -1,45 +0,0 @@
var chalk = require('chalk')
var semver = require('semver')
var packageConfig = require('../package.json')
function exec (cmd) {
return require('child_process').execSync(cmd).toString().trim()
}
var versionRequirements = [
{
name: 'node',
currentVersion: semver.clean(process.version),
versionRequirement: packageConfig.engines.node
},
{
name: 'npm',
currentVersion: exec('npm --version'),
versionRequirement: packageConfig.engines.npm
}
]
module.exports = function () {
var warnings = []
for (var i = 0; i < versionRequirements.length; i++) {
var mod = versionRequirements[i]
if (!semver.satisfies(mod.currentVersion, mod.versionRequirement)) {
warnings.push(mod.name + ': ' +
chalk.red(mod.currentVersion) + ' should be ' +
chalk.green(mod.versionRequirement)
)
}
}
if (warnings.length) {
console.log('')
console.log(chalk.yellow('To use this template, you must update following to modules:'))
console.log()
for (var i = 0; i < warnings.length; i++) {
var warning = warnings[i]
console.log(' ' + warning)
}
console.log()
process.exit(1)
}
}

9
build/dev-client.js

@ -1,9 +0,0 @@
/* eslint-disable */
require('eventsource-polyfill')
var hotClient = require('webpack-hot-middleware/client?noInfo=true&reload=true')
hotClient.subscribe(function (event) {
if (event.action === 'reload') {
window.location.reload()
}
})

81
build/dev-server.js

@ -1,81 +0,0 @@
require('./check-versions')()
var config = require('../config')
if (!process.env.NODE_ENV) {
process.env.NODE_ENV = JSON.parse(config.dev.env.NODE_ENV)
}
var opn = require('opn')
var path = require('path')
var express = require('express')
var webpack = require('webpack')
var proxyMiddleware = require('http-proxy-middleware')
var webpackConfig = require('./webpack.dev.conf')
// default port where dev server listens for incoming traffic
var port = process.env.PORT || config.dev.port
// automatically open browser, if not set will be false
var autoOpenBrowser = !!config.dev.autoOpenBrowser
// Define HTTP proxies to your custom API backend
// https://github.com/chimurai/http-proxy-middleware
var proxyTable = config.dev.proxyTable
var app = express()
var compiler = webpack(webpackConfig)
var devMiddleware = require('webpack-dev-middleware')(compiler, {
publicPath: webpackConfig.output.publicPath,
quiet: true
})
var hotMiddleware = require('webpack-hot-middleware')(compiler, {
log: () => {}
})
// force page reload when html-webpack-plugin template changes
compiler.plugin('compilation', function (compilation) {
compilation.plugin('html-webpack-plugin-after-emit', function (data, cb) {
hotMiddleware.publish({ action: 'reload' })
cb()
})
})
// proxy api requests
Object.keys(proxyTable).forEach(function (context) {
var options = proxyTable[context]
if (typeof options === 'string') {
options = { target: options }
}
app.use(proxyMiddleware(options.filter || context, options))
})
// handle fallback for HTML5 history API
app.use(require('connect-history-api-fallback')())
// serve webpack bundle output
app.use(devMiddleware)
// enable hot-reload and state-preserving
// compilation error display
app.use(hotMiddleware)
// serve pure static assets
var staticPath = path.posix.join(config.dev.assetsPublicPath, config.dev.assetsSubDirectory)
app.use(staticPath, express.static('./static'))
var uri = 'http://localhost:' + port
devMiddleware.waitUntilValid(function () {
console.log('> Listening at ' + uri + '\n')
})
module.exports = app.listen(port, function (err) {
if (err) {
console.log(err)
return
}
// when env is testing, don't need open it
if (autoOpenBrowser && process.env.NODE_ENV !== 'testing') {
opn(uri)
}
})

64
build/utils.js

@ -1,64 +0,0 @@
var path = require('path')
var config = require('../config')
var ExtractTextPlugin = require('extract-text-webpack-plugin')
exports.assetsPath = function (_path) {
var assetsSubDirectory = process.env.NODE_ENV === 'production'
? config.build.assetsSubDirectory
: config.dev.assetsSubDirectory
return path.posix.join(assetsSubDirectory, _path)
}
exports.cssLoaders = function (options) {
options = options || {}
// generate loader string to be used with extract text plugin
function generateLoaders (loaders) {
var sourceLoader = loaders.map(function (loader) {
var extraParamChar
if (/\?/.test(loader)) {
loader = loader.replace(/\?/, '-loader?')
extraParamChar = '&'
} else {
loader = loader + '-loader'
extraParamChar = '?'
}
return loader + (options.sourceMap ? extraParamChar + 'sourceMap' : '')
}).join('!')
// Extract CSS when that option is specified
// (which is the case during production build)
if (options.extract) {
return ExtractTextPlugin.extract({
use: sourceLoader,
fallback: 'vue-style-loader'
})
} else {
return ['vue-style-loader', sourceLoader].join('!')
}
}
// http://vuejs.github.io/vue-loader/en/configurations/extract-css.html
return {
css: generateLoaders(['css']),
postcss: generateLoaders(['css']),
less: generateLoaders(['css', 'less']),
sass: generateLoaders(['css', 'sass?indentedSyntax']),
scss: generateLoaders(['css', 'sass']),
stylus: generateLoaders(['css', 'stylus']),
styl: generateLoaders(['css', 'stylus'])
}
}
// Generate loaders for standalone style files (outside of .vue)
exports.styleLoaders = function (options) {
var output = []
var loaders = exports.cssLoaders(options)
for (var extension in loaders) {
var loader = loaders[extension]
output.push({
test: new RegExp('\\.' + extension + '$'),
loader: loader
})
}
return output
}

17
build/vue-loader.conf.js

@ -1,17 +0,0 @@
var utils = require('./utils')
var config = require('../config')
var isProduction = process.env.NODE_ENV === 'production'
module.exports = {
loaders: utils.cssLoaders({
sourceMap: isProduction
? config.build.productionSourceMap
: config.dev.cssSourceMap,
extract: isProduction
}),
postcss: [
require('autoprefixer')({
browsers: ['last 2 versions']
})
]
}

64
build/webpack.base.conf.js

@ -1,64 +0,0 @@
var path = require('path')
var utils = require('./utils')
var config = require('../config')
var vueLoaderConfig = require('./vue-loader.conf')
function resolve (dir) {
return path.join(__dirname, '..', dir)
}
module.exports = {
entry: {
app: './src/main.js'
},
output: {
path: config.build.assetsRoot,
filename: '[name].js',
publicPath: process.env.NODE_ENV === 'production'
? config.build.assetsPublicPath
: config.dev.assetsPublicPath
},
resolve: {
extensions: ['.js', '.vue', '.json'],
modules: [
resolve('src'),
resolve('node_modules')
],
alias: {
'vue$': 'vue/dist/vue.common.js',
'src': resolve('src'),
'assets': resolve('src/assets'),
'components': resolve('src/components')
}
},
module: {
rules: [
{
test: /\.vue$/,
loader: 'vue-loader',
options: vueLoaderConfig
},
{
test: /\.js$/,
loader: 'babel-loader',
include: [resolve('src'), resolve('test')]
},
{
test: /\.(png|jpe?g|gif|svg)(\?.*)?$/,
loader: 'url-loader',
query: {
limit: 10000,
name: utils.assetsPath('img/[name].[hash:7].[ext]')
}
},
{
test: /\.(woff2?|eot|ttf|otf)(\?.*)?$/,
loader: 'url-loader',
query: {
limit: 10000,
name: utils.assetsPath('fonts/[name].[hash:7].[ext]')
}
}
]
}
}

35
build/webpack.dev.conf.js

@ -1,35 +0,0 @@
var utils = require('./utils')
var webpack = require('webpack')
var config = require('../config')
var merge = require('webpack-merge')
var baseWebpackConfig = require('./webpack.base.conf')
var HtmlWebpackPlugin = require('html-webpack-plugin')
var FriendlyErrorsPlugin = require('friendly-errors-webpack-plugin')
// add hot-reload related code to entry chunks
Object.keys(baseWebpackConfig.entry).forEach(function (name) {
baseWebpackConfig.entry[name] = ['./build/dev-client'].concat(baseWebpackConfig.entry[name])
})
module.exports = merge(baseWebpackConfig, {
module: {
rules: utils.styleLoaders({ sourceMap: config.dev.cssSourceMap })
},
// cheap-module-eval-source-map is faster for development
devtool: '#cheap-module-eval-source-map',
plugins: [
new webpack.DefinePlugin({
'process.env': config.dev.env
}),
// https://github.com/glenjamin/webpack-hot-middleware#installation--usage
new webpack.HotModuleReplacementPlugin(),
new webpack.NoEmitOnErrorsPlugin(),
// https://github.com/ampedandwired/html-webpack-plugin
new HtmlWebpackPlugin({
filename: 'index.html',
template: 'index.html',
inject: true
}),
new FriendlyErrorsPlugin()
]
})

102
build/webpack.prod.conf.js

@ -1,102 +0,0 @@
var path = require('path')
var utils = require('./utils')
var webpack = require('webpack')
var config = require('../config')
var merge = require('webpack-merge')
var baseWebpackConfig = require('./webpack.base.conf')
var HtmlWebpackPlugin = require('html-webpack-plugin')
var ExtractTextPlugin = require('extract-text-webpack-plugin')
var env = config.build.env
var webpackConfig = merge(baseWebpackConfig, {
module: {
rules: utils.styleLoaders({
sourceMap: config.build.productionSourceMap,
extract: true
})
},
devtool: config.build.productionSourceMap ? '#source-map' : false,
output: {
path: config.build.assetsRoot,
filename: utils.assetsPath('js/[name].[chunkhash].js'),
chunkFilename: utils.assetsPath('js/[id].[chunkhash].js')
},
plugins: [
// http://vuejs.github.io/vue-loader/en/workflow/production.html
new webpack.DefinePlugin({
'process.env': env
}),
new webpack.optimize.UglifyJsPlugin({
compress: {
warnings: false
},
sourceMap: true
}),
// extract css into its own file
new ExtractTextPlugin({
filename: utils.assetsPath('css/[name].[contenthash].css')
}),
// generate dist index.html with correct asset hash for caching.
// you can customize output by editing /index.html
// see https://github.com/ampedandwired/html-webpack-plugin
new HtmlWebpackPlugin({
filename: config.build.index,
template: 'index.html',
inject: true,
minify: {
removeComments: true,
collapseWhitespace: true,
removeAttributeQuotes: true
// more options:
// https://github.com/kangax/html-minifier#options-quick-reference
},
// necessary to consistently work with multiple chunks via CommonsChunkPlugin
chunksSortMode: 'dependency'
}),
// split vendor js into its own file
new webpack.optimize.CommonsChunkPlugin({
name: 'vendor',
minChunks: function (module, count) {
// any required modules inside node_modules are extracted to vendor
return (
module.resource &&
/\.js$/.test(module.resource) &&
module.resource.indexOf(
path.join(__dirname, '../node_modules')
) === 0
)
}
}),
// extract webpack runtime and module manifest to its own file in order to
// prevent vendor hash from being updated whenever app bundle is updated
new webpack.optimize.CommonsChunkPlugin({
name: 'manifest',
chunks: ['vendor']
})
]
})
if (config.build.productionGzip) {
var CompressionWebpackPlugin = require('compression-webpack-plugin')
webpackConfig.plugins.push(
new CompressionWebpackPlugin({
asset: '[path].gz[query]',
algorithm: 'gzip',
test: new RegExp(
'\\.(' +
config.build.productionGzipExtensions.join('|') +
')$'
),
threshold: 10240,
minRatio: 0.8
})
)
}
if (config.build.bundleAnalyzerReport) {
var BundleAnalyzerPlugin = require('webpack-bundle-analyzer').BundleAnalyzerPlugin
webpackConfig.plugins.push(new BundleAnalyzerPlugin())
}
module.exports = webpackConfig

6
config/dev.env.js

@ -1,6 +0,0 @@
var merge = require('webpack-merge')
var prodEnv = require('./prod.env')
module.exports = merge(prodEnv, {
NODE_ENV: '"development"'
})

38
config/index.js

@ -1,38 +0,0 @@
// see http://vuejs-templates.github.io/webpack for documentation.
var path = require('path')
module.exports = {
build: {
env: require('./prod.env'),
index: path.resolve(__dirname, '../dist/index.html'),
assetsRoot: path.resolve(__dirname, '../dist'),
assetsSubDirectory: 'static',
assetsPublicPath: '/',
productionSourceMap: true,
// Gzip off by default as many popular static hosts such as
// Surge or Netlify already gzip all static assets for you.
// Before setting to `true`, make sure to:
// npm install --save-dev compression-webpack-plugin
productionGzip: false,
productionGzipExtensions: ['js', 'css'],
// Run the build command with an extra argument to
// View the bundle analyzer report after build finishes:
// `npm run build --report`
// Set to `true` or `false` to always turn it on or off
bundleAnalyzerReport: process.env.npm_config_report
},
dev: {
env: require('./dev.env'),
port: 8080,
autoOpenBrowser: true,
assetsSubDirectory: 'static',
assetsPublicPath: '/',
proxyTable: {},
// CSS Sourcemaps off by default because relative paths are "buggy"
// with this option, according to the CSS-Loader README
// (https://github.com/webpack/css-loader#sourcemaps)
// In our experience, they generally work as expected,
// just be aware of this issue when enabling this option.
cssSourceMap: false
}
}

3
config/prod.env.js

@ -1,3 +0,0 @@
module.exports = {
NODE_ENV: '"production"'
}

12
index.html

@ -1,11 +1 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>d3vue</title>
</head>
<body>
<div id="app"></div>
<!-- built files will be auto injected -->
</body>
</html>
<!DOCTYPE html><html><head><meta charset=utf-8><title>d3vue</title><link href=static/css/app.ea478ad0f98c40581c472cf6cea74c24.css rel=stylesheet></head><body><div id=app></div><script type=text/javascript src=static/js/manifest.0d9440aa0954c24a67c3.js></script><script type=text/javascript src=static/js/vendor.03b56a03b17565331709.js></script><script type=text/javascript src=static/js/app.bb478689be3640ebf141.js></script></body></html>

51
package.json

@ -1,51 +0,0 @@
{
"name": "d3vue",
"version": "1.0.0",
"description": "An example project of how use Vue.js with D3.js",
"author": "CorpGlory <twitter.com/corpglory>",
"private": true,
"scripts": {
"dev": "node build/dev-server.js",
"build": "node build/build.js"
},
"dependencies": {
"vue": "^2.1.10"
},
"devDependencies": {
"autoprefixer": "^6.7.2",
"babel-core": "^6.22.1",
"babel-loader": "^6.2.10",
"babel-plugin-transform-runtime": "^6.22.0",
"babel-preset-es2015": "^6.22.0",
"babel-preset-stage-2": "^6.22.0",
"babel-register": "^6.22.0",
"chalk": "^1.1.3",
"connect-history-api-fallback": "^1.3.0",
"css-loader": "^0.26.1",
"eventsource-polyfill": "^0.9.6",
"express": "^4.14.1",
"extract-text-webpack-plugin": "^2.0.0-rc.2",
"file-loader": "^0.10.0",
"friendly-errors-webpack-plugin": "^1.1.3",
"function-bind": "^1.1.0",
"html-webpack-plugin": "^2.28.0",
"http-proxy-middleware": "^0.17.3",
"webpack-bundle-analyzer": "^2.2.1",
"semver": "^5.3.0",
"opn": "^4.0.2",
"ora": "^1.1.0",
"shelljs": "^0.7.6",
"url-loader": "^0.5.7",
"vue-loader": "^10.3.0",
"vue-style-loader": "^2.0.0",
"vue-template-compiler": "^2.1.10",
"webpack": "^2.2.1",
"webpack-dev-middleware": "^1.10.0",
"webpack-hot-middleware": "^2.16.1",
"webpack-merge": "^2.6.1"
},
"engines": {
"node": ">= 4.0.0",
"npm": ">= 3.0.0"
}
}

28
src/App.vue

@ -1,28 +0,0 @@
<template>
<div id="app">
<img src="./assets/logo.png">
<hello></hello>
</div>
</template>
<script>
import Hello from './components/Hello'
export default {
name: 'app',
components: {
Hello
}
}
</script>
<style>
#app {
font-family: 'Avenir', Helvetica, Arial, sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
text-align: center;
color: #2c3e50;
margin-top: 60px;
}
</style>

BIN
src/assets/logo.png

Binary file not shown.

53
src/components/Hello.vue

@ -1,53 +0,0 @@
<template>
<div class="hello">
<h1>{{ msg }}</h1>
<h2>Essential Links</h2>
<ul>
<li><a href="https://vuejs.org" target="_blank">Core Docs</a></li>
<li><a href="https://forum.vuejs.org" target="_blank">Forum</a></li>
<li><a href="https://gitter.im/vuejs/vue" target="_blank">Gitter Chat</a></li>
<li><a href="https://twitter.com/vuejs" target="_blank">Twitter</a></li>
<br>
<li><a href="http://vuejs-templates.github.io/webpack/" target="_blank">Docs for This Template</a></li>
</ul>
<h2>Ecosystem</h2>
<ul>
<li><a href="http://router.vuejs.org/" target="_blank">vue-router</a></li>
<li><a href="http://vuex.vuejs.org/" target="_blank">vuex</a></li>
<li><a href="http://vue-loader.vuejs.org/" target="_blank">vue-loader</a></li>
<li><a href="https://github.com/vuejs/awesome-vue" target="_blank">awesome-vue</a></li>
</ul>
</div>
</template>
<script>
export default {
name: 'hello',
data () {
return {
msg: 'Welcome to Your Vue.js App'
}
}
}
</script>
<!-- Add "scoped" attribute to limit CSS to this component only -->
<style scoped>
h1, h2 {
font-weight: normal;
}
ul {
list-style-type: none;
padding: 0;
}
li {
display: inline-block;
margin: 0 10px;
}
a {
color: #42b983;
}
</style>

11
src/main.js

@ -1,11 +0,0 @@
// The Vue build version to load with the `import` command
// (runtime-only or standalone) has been set in webpack.base.conf with an alias.
import Vue from 'vue'
import App from './App'
/* eslint-disable no-new */
new Vue({
el: '#app',
template: '<App/>',
components: { App }
})

0
static/.gitkeep

278
static/css/app.ea478ad0f98c40581c472cf6cea74c24.css

@ -0,0 +1,278 @@
#app[data-v-41b7bac0] {
font-family: 'Avenir', Helvetica, Arial, sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
text-align: center;
margin-top: 30px;
}
a[data-v-41b7bac0] {
color: black;
text-decoration: none;
}
#links[data-v-098bb42e] {
display: block;
width: 300px;
height: 40px;
position: relative;
}
a[data-v-098bb42e] {
display: block;
position: absolute;
width: 100px;
text-decoration: none;
font-weight: bold;
color: blue;
}
a[data-v-098bb42e]:hover {
text-decoration: underline;
}
.prev[data-v-098bb42e] {
left: 0px;
text-align: left;
}
.source[data-v-098bb42e] {
left:100px;
text-align: center;
}
.next[data-v-098bb42e] {
right: 0px;
text-align: right;
}
#holder[data-v-098bb42e] {
width: 300px;
margin: auto;
position: relative;
height: 30px;
/*border-top: 1px dashed gray;*/
border-bottom: 1px dashed gray;
padding-top: 10px;
margin-top: 10px;
margin-bottom: 10px;
}
#bars-style .one {
fill: #ffc300
}
#bars-style .two {
fill: #c70039
}
#bars-style .three {
fill: #571845
}
.one[data-v-63d4ce13] {
fill: #154890
}
.two[data-v-63d4ce13] {
fill: #e1d4c0
}
.three[data-v-63d4ce13] {
fill: #ff6600
}
#bars-style-sass .one {
fill: #AA5C39;
}
#bars-style-sass .two {
fill: #5B9632;
}
#bars-style-sass .three {
fill: #2A4F6E;
}
#holder[data-v-39fd153a] {
position: relative;
height: 300px;
width: 500px;
margin: auto;
}
.mapHolder[data-v-39fd153a] {
position: absolute;
margin: auto;
}
.state {
fill: #ccc;
stroke: #fff;
}
.state:hover {
fill: steelblue;
}
#tooltipPositioner[data-v-6039702a] {
position: relative;
left: 50%;
top: 350px;
width: 240px;
}
#tooltipContainer[data-v-6039702a] {
position: absolute;
bottom: 0;
width: 230px;
left: -125px;
font-size: 12px;
line-height: 16px;
padding: 10px;
border-radius: 3px;
background: rgba(255,255,255,0.9);
color: #000;
box-shadow: 0 1px 5px rgba(0,0,0,0.4);
-moz-box-shadow: 0 1px 5px rgba(0,0,0,0.4);
border:1px solid rgba(200,200,200,0.85);
text-align:center;
}
#tooltip[data-v-6039702a] {
text-align:center;
z-index: 1000;
position: absolute;
display: block;
}
#tooltip .description[data-v-6039702a] {
color:#666;
font-size: 11px;
text-align:center;
font-style:italic;
}
#tooltip .title[data-v-6039702a] {
text-align: left;
font-size: 13px;
text-align:center;
}
.holder[data-v-28f41ffe] {
width: 500px;
margin: auto;
}
.menu ul[data-v-28f41ffe] {
padding: 0;
margin: 0;
}
.menu li[data-v-28f41ffe] {
text-align: left;
}
.menu[data-v-37ada400] {
padding: 0;
margin: 0;
}
.menu li[data-v-37ada400] {
text-align: left;
display: inline-block;
text-align: left;
margin: 0px;
margin-right: 10px;
}
.menu li a[data-v-37ada400] {
text-decoration: none;
}
.menu li a.active[data-v-37ada400] {
text-decoration: underline;
}
h1[data-v-417810ac], h2[data-v-417810ac] {
font-weight: normal;
}
ul[data-v-417810ac] {
/*list-style-type: none;*/
padding: 0;
margin: auto;
width: 300px;
}
li[data-v-417810ac] {
/*display: inline-block;*/
margin: 0 0px;
list-style: decimal
}
a[data-v-417810ac] {
color: blue;
display: block;
text-decoration: none;
text-align: left;
}
a[data-v-417810ac]:hover {
text-decoration: underline;
}
/*# sourceMappingURL=app.ea478ad0f98c40581c472cf6cea74c24.css.map*/

1
static/css/app.ea478ad0f98c40581c472cf6cea74c24.css.map

File diff suppressed because one or more lines are too long

284
static/data/earthquakes.csv

@ -0,0 +1,284 @@
Magnitude,Location,Latitude,Longitude,Depth (km),Date,EventId,Event URL
2.9,"6km S of Houston, Alaska",61.5739,-149.8181,43,22-09-2012 07:14,ak10563595,http://earthquake.usgs.gov/earthquakes/eventpage/ak10563595
3.3,"135km NNE of Road Town, British Virgin Islands",19.6135,-64.3517,69,22-09-2012 07:03,pr12266005,http://earthquake.usgs.gov/earthquakes/eventpage/pr12266005
5.6,"101km NE of `Ohonua, Tonga",-20.8103,-174.1487,10.51,22-09-2012 06:58,usc000ctx8,http://earthquake.usgs.gov/earthquakes/eventpage/usc000ctx8
3.2,"140km NNE of Road Town, British Virgin Islands",19.6347,-64.255,69,22-09-2012 06:44,pr12266003,http://earthquake.usgs.gov/earthquakes/eventpage/pr12266003
4.9,"16km NE of Exochi, Greece",40.1993,20.8889,9.75,22-09-2012 06:15,usc000ctwx,http://earthquake.usgs.gov/earthquakes/eventpage/usc000ctwx
3.4,"111km NNE of Road Town, British Virgin Islands",19.3442,-64.211,87,22-09-2012 06:09,pr12266004,http://earthquake.usgs.gov/earthquakes/eventpage/pr12266004
2.8,"31km N of Larsen Bay, Alaska",57.8248,-153.9892,41.5,22-09-2012 06:01,ak10563570,http://earthquake.usgs.gov/earthquakes/eventpage/ak10563570
3.9,"130km N of Road Town, British Virgin Islands",19.5533,-64.4636,5.8,22-09-2012 05:31,pr12266002,http://earthquake.usgs.gov/earthquakes/eventpage/pr12266002
4.5,"63km NE of Calama, Chile",-22.0222,-68.5497,113.84,22-09-2012 04:18,usc000ctvi,http://earthquake.usgs.gov/earthquakes/eventpage/usc000ctvi
5.1,"6km SSE of Kiriakion, Greece",38.3002,22.8118,10.02,22-09-2012 03:52,usc000ctvc,http://earthquake.usgs.gov/earthquakes/eventpage/usc000ctvc
4.3,"38km SW of Karpathos, Greece",35.2251,26.9721,10.08,22-09-2012 03:51,usc000ctve,http://earthquake.usgs.gov/earthquakes/eventpage/usc000ctve
2.5,"19km SW of Ferndale, California",40.4688,-124.4462,24.5,22-09-2012 03:13,nc71845805,http://earthquake.usgs.gov/earthquakes/eventpage/nc71845805
3.5,"18km SW of Ferndale, California",40.4655,-124.4313,23.7,22-09-2012 02:55,nc71845790,http://earthquake.usgs.gov/earthquakes/eventpage/nc71845790
2.8,"61km S of Deltana, Alaska",63.3274,-145.3493,0.1,22-09-2012 02:48,ak10563523,http://earthquake.usgs.gov/earthquakes/eventpage/ak10563523
2.6,"11km WSW of Progreso, Mexico",32.5327,-115.6977,8.2,22-09-2012 02:31,ci15219297,http://earthquake.usgs.gov/earthquakes/eventpage/ci15219297
3.1,"75km NNE of Road Town, British Virgin Islands",19.0235,-64.288,58,22-09-2012 02:18,pr12266001,http://earthquake.usgs.gov/earthquakes/eventpage/pr12266001
4.6,Central East Pacific Rise,-9.5408,-108.6643,9.99,22-09-2012 01:39,usc000ctu3,http://earthquake.usgs.gov/earthquakes/eventpage/usc000ctu3
2.8,"69km NNE of Road Town, British Virgin Islands",18.9559,-64.2815,61,22-09-2012 01:21,pr12266000,http://earthquake.usgs.gov/earthquakes/eventpage/pr12266000
3.1,"76km NNE of Road Town, British Virgin Islands",19.0365,-64.2882,42,21-09-2012 23:07,pr12265011,http://earthquake.usgs.gov/earthquakes/eventpage/pr12265011
4.2,"50km WNW of `Alaqahdari-ye Kiran wa Munjan, Afghanistan",36.2616,70.2867,113.07,21-09-2012 22:59,usc000ctta,http://earthquake.usgs.gov/earthquakes/eventpage/usc000ctta
3.2,"23km NE of Punta Cana, Dominican Republic",18.7056,-68.2242,27,21-09-2012 20:44,pr12265010,http://earthquake.usgs.gov/earthquakes/eventpage/pr12265010
4.6,"132km ESE of Iwaki, Japan",36.7845,142.3329,24.72,21-09-2012 19:36,usc000ctk4,http://earthquake.usgs.gov/earthquakes/eventpage/usc000ctk4
3.1,"124km NNE of Road Town, British Virgin Islands",19.4575,-64.1651,72,21-09-2012 17:24,pr12265009,http://earthquake.usgs.gov/earthquakes/eventpage/pr12265009
4.6,"29km SW of Ashkasham, Afghanistan",36.526,71.2734,90.23,21-09-2012 17:19,usc000ctez,http://earthquake.usgs.gov/earthquakes/eventpage/usc000ctez
2.6,"62km S of Larsen Bay, Alaska",56.9835,-154.1211,19.3,21-09-2012 15:56,ak10563303,http://earthquake.usgs.gov/earthquakes/eventpage/ak10563303
4.6,"78km W of Platanos, Greece",35.5199,22.7343,46.13,21-09-2012 15:39,usc000ctbb,http://earthquake.usgs.gov/earthquakes/eventpage/usc000ctbb
3.2,"155km NNE of Road Town, British Virgin Islands",19.739,-64.1214,30,21-09-2012 12:22,pr12265007,http://earthquake.usgs.gov/earthquakes/eventpage/pr12265007
5.4,"121km ENE of Iquique, Chile",-19.6536,-69.1492,98.78,21-09-2012 12:17,usc000ct7f,http://earthquake.usgs.gov/earthquakes/eventpage/usc000ct7f
4.9,"155km SW of Dadali, Solomon Islands",-8.9788,157.9785,35.06,21-09-2012 11:59,usc000ct73,http://earthquake.usgs.gov/earthquakes/eventpage/usc000ct73
4.3,"125km S of Puerto El Triunfo, El Salvador",12.1667,-88.7426,35.18,21-09-2012 11:12,usc000ct6d,http://earthquake.usgs.gov/earthquakes/eventpage/usc000ct6d
2.8,"4km W of La Parguera, Puerto Rico",17.974,-67.0856,6,21-09-2012 10:39,pr12265004,http://earthquake.usgs.gov/earthquakes/eventpage/pr12265004
4.5,"140km NE of Arzak, China",40.4586,77.4213,29.57,21-09-2012 10:09,usc000ct5p,http://earthquake.usgs.gov/earthquakes/eventpage/usc000ct5p
4.4,"79km W of Mendoza, Argentina",-32.9653,-69.6777,100.91,21-09-2012 09:22,usc000ct54,http://earthquake.usgs.gov/earthquakes/eventpage/usc000ct54
5,"85km WSW of Platanos, Greece",35.3003,22.6787,15.09,21-09-2012 08:47,usa000f694,http://earthquake.usgs.gov/earthquakes/eventpage/usa000f694
3.3,"143km NNE of Road Town, British Virgin Islands",19.648,-64.2025,60,21-09-2012 08:28,pr12265002,http://earthquake.usgs.gov/earthquakes/eventpage/pr12265002
3.4,"131km NNE of Road Town, British Virgin Islands",19.4988,-64.1091,75,21-09-2012 08:11,pr12265001,http://earthquake.usgs.gov/earthquakes/eventpage/pr12265001
4.1,"4km SSW of Santa Cruz, Costa Rica",10.2252,-85.5939,25.7,21-09-2012 06:37,usa000f68h,http://earthquake.usgs.gov/earthquakes/eventpage/usa000f68h
3,"118km NNE of Chignik Lake, Alaska",57.1966,-157.8482,2.7,21-09-2012 05:08,ak10563148,http://earthquake.usgs.gov/earthquakes/eventpage/ak10563148
4.8,"1km E of San Isidro, Philippines",9.9388,126.0986,35.33,21-09-2012 05:01,usc000ct3g,http://earthquake.usgs.gov/earthquakes/eventpage/usc000ct3g
3.1,"148km SE of Chirikof Island, Alaska",54.7159,-154.3148,12.4,21-09-2012 04:53,ak10563146,http://earthquake.usgs.gov/earthquakes/eventpage/ak10563146
2.7,"46km SSE of Cantwell, Alaska",63.0366,-148.4692,76.5,21-09-2012 04:36,ak10563136,http://earthquake.usgs.gov/earthquakes/eventpage/ak10563136
4.6,"108km SW of Birjand, Iran",32.0995,58.4993,25.9,21-09-2012 03:28,usc000ct2t,http://earthquake.usgs.gov/earthquakes/eventpage/usc000ct2t
4.7,South of the Fiji Islands,-25.6459,178.4681,572.03,21-09-2012 03:25,usc000ct2v,http://earthquake.usgs.gov/earthquakes/eventpage/usc000ct2v
2.8,"12km NNE of Houston, Alaska",61.7354,-149.7176,37,21-09-2012 03:16,ak10563117,http://earthquake.usgs.gov/earthquakes/eventpage/ak10563117
3.2,"91km N of San Juan, Puerto Rico",19.2919,-66.1593,73,21-09-2012 02:18,pr12265000,http://earthquake.usgs.gov/earthquakes/eventpage/pr12265000
4.5,"248km S of Sidorukun, Indonesia",-10.8365,113.9847,8.78,21-09-2012 02:14,usc000ct1x,http://earthquake.usgs.gov/earthquakes/eventpage/usc000ct1x
4.3,"11km N of Nanganumba, Indonesia",-8.3641,121.2274,31.53,21-09-2012 00:30,usc000ct0z,http://earthquake.usgs.gov/earthquakes/eventpage/usc000ct0z
4.3,"13km ESE of Ayabe, Japan",35.2485,135.3884,370.42,21-09-2012 00:03,usc000ct0n,http://earthquake.usgs.gov/earthquakes/eventpage/usc000ct0n
2.6,"35km ENE of Tanaga Volcano, Alaska",51.9491,-177.6313,9.8,20-09-2012 22:42,ak10562910,http://earthquake.usgs.gov/earthquakes/eventpage/ak10562910
2.8,"95km SSW of Semisopochnoi Island, Alaska",51.1215,179.2446,23.6,20-09-2012 22:17,ak10562901,http://earthquake.usgs.gov/earthquakes/eventpage/ak10562901
5.4,"48km SSE of Pondaguitan, Philippines",5.9775,126.3832,111.16,20-09-2012 21:21,usc000csx3,http://earthquake.usgs.gov/earthquakes/eventpage/usc000csx3
5.7,"35km ESE of Ndoi Island, Fiji",-20.753,-178.3725,544.19,20-09-2012 21:03,usc000csw5,http://earthquake.usgs.gov/earthquakes/eventpage/usc000csw5
3.8,"43km NNE of Talkeetna, Alaska",62.6916,-149.8072,10.1,20-09-2012 20:47,ak10562838,http://earthquake.usgs.gov/earthquakes/eventpage/ak10562838
3.4,"46km ESE of Yunaska Island, Alaska",52.4716,-170.0567,127.2,20-09-2012 20:01,ak10562822,http://earthquake.usgs.gov/earthquakes/eventpage/ak10562822
4.9,"41km WSW of Kimbe, Papua New Guinea",-5.7346,149.8211,120.46,20-09-2012 17:44,usc000csng,http://earthquake.usgs.gov/earthquakes/eventpage/usc000csng
2.9,"65km N of Road Town, British Virgin Islands",19.0055,-64.5569,65,20-09-2012 17:21,pr12264008,http://earthquake.usgs.gov/earthquakes/eventpage/pr12264008
3.4,"136km N of Road Town, British Virgin Islands",19.6334,-64.4336,17,20-09-2012 17:15,pr12264007,http://earthquake.usgs.gov/earthquakes/eventpage/pr12264007
4.3,"24km NE of Jesus Carranza, Mexico",17.5693,-94.854,114.12,20-09-2012 16:58,usc000csm3,http://earthquake.usgs.gov/earthquakes/eventpage/usc000csm3
4.9,"121km NE of San Isidro, Philippines",10.6573,126.9779,35.04,20-09-2012 16:32,usc000cslr,http://earthquake.usgs.gov/earthquakes/eventpage/usc000cslr
5,"140km WNW of Tobelo, Indonesia",2.178,126.8298,83.33,20-09-2012 15:52,usc000csku,http://earthquake.usgs.gov/earthquakes/eventpage/usc000csku
4.7,"37km NNE of San Isidro, Philippines",10.3317,126.2051,46.55,20-09-2012 12:42,usc000csim,http://earthquake.usgs.gov/earthquakes/eventpage/usc000csim
2.5,"22km NNW of Borrego Springs, California",33.4523,-116.4413,2.3,20-09-2012 12:13,ci15218617,http://earthquake.usgs.gov/earthquakes/eventpage/ci15218617
2.5,"17km NNE of Road Town, British Virgin Islands",18.5573,-64.5353,1,20-09-2012 11:42,pr12264005,http://earthquake.usgs.gov/earthquakes/eventpage/pr12264005
4.7,"88km WNW of Santa Cruz, Chile",-34.2707,-72.2261,17.48,20-09-2012 10:07,usc000csgn,http://earthquake.usgs.gov/earthquakes/eventpage/usc000csgn
4.1,"11km SSE of La Gomera, Guatemala",13.9813,-91.0174,71.28,20-09-2012 09:29,usc000csg1,http://earthquake.usgs.gov/earthquakes/eventpage/usc000csg1
3.3,"111km NNE of Road Town, British Virgin Islands",19.271,-64.0475,94,20-09-2012 08:44,pr12264004,http://earthquake.usgs.gov/earthquakes/eventpage/pr12264004
2.6,"77km WSW of Ferndale, California",40.3782,-125.1463,0,20-09-2012 08:40,nc71844990,http://earthquake.usgs.gov/earthquakes/eventpage/nc71844990
2.5,"69km S of Larsen Bay, Alaska",56.9121,-154.0037,46.1,20-09-2012 07:57,ak10562573,http://earthquake.usgs.gov/earthquakes/eventpage/ak10562573
3.4,"70km S of Larsen Bay, Alaska",56.9089,-154.0954,43.4,20-09-2012 07:31,ak10562557,http://earthquake.usgs.gov/earthquakes/eventpage/ak10562557
3.4,"120km NNE of Road Town, British Virgin Islands",19.4274,-64.198,87,20-09-2012 07:15,pr12264003,http://earthquake.usgs.gov/earthquakes/eventpage/pr12264003
4.8,Reykjanes Ridge,52.5855,-32.0426,9.84,20-09-2012 06:23,usc000cse9,http://earthquake.usgs.gov/earthquakes/eventpage/usc000cse9
4.9,"37km SSE of Abancay, Peru",-13.9269,-72.6994,66.47,20-09-2012 06:08,usc000cse5,http://earthquake.usgs.gov/earthquakes/eventpage/usc000cse5
5.2,"118km NW of Havelu, Tonga",-20.537,-176.1546,209.59,20-09-2012 05:40,usc000csdu,http://earthquake.usgs.gov/earthquakes/eventpage/usc000csdu
3,"148km NNE of Road Town, British Virgin Islands",19.7005,-64.2034,25,20-09-2012 05:39,pr12264001,http://earthquake.usgs.gov/earthquakes/eventpage/pr12264001
2.7,"27km SSW of Esperanza, Puerto Rico",17.854,-65.536,16,20-09-2012 05:37,pr12264000,http://earthquake.usgs.gov/earthquakes/eventpage/pr12264000
4.7,"73km N of We, New Caledonia",-20.2594,167.1901,31.87,20-09-2012 03:32,usc000csd3,http://earthquake.usgs.gov/earthquakes/eventpage/usc000csd3
2.5,"37km W of Fort Irwin, California",35.301,-117.0937,20.1,20-09-2012 01:52,ci15218505,http://earthquake.usgs.gov/earthquakes/eventpage/ci15218505
4.3,"32km S of Acajutla, El Salvador",13.2962,-89.8068,77.39,20-09-2012 01:51,usc000cscx,http://earthquake.usgs.gov/earthquakes/eventpage/usc000cscx
4.5,Off the west coast of northern Sumatra,0.0689,92.07,10.21,20-09-2012 00:20,usa000f5rb,http://earthquake.usgs.gov/earthquakes/eventpage/usa000f5rb
2.7,"40km NW of San Antonio, Puerto Rico",18.7399,-67.3862,12,19-09-2012 23:51,pr12263005,http://earthquake.usgs.gov/earthquakes/eventpage/pr12263005
4.5,"181km N of Tobelo, Indonesia",3.3453,128.3019,121.32,19-09-2012 21:30,usa000f5pb,http://earthquake.usgs.gov/earthquakes/eventpage/usa000f5pb
4.7,"155km SE of Sarangani, Philippines",4.6207,126.6319,97.91,19-09-2012 21:18,usc000cs8s,http://earthquake.usgs.gov/earthquakes/eventpage/usc000cs8s
2.7,"75km SE of Nikolski, Alaska",52.4841,-168.0392,25.4,19-09-2012 20:16,ak10562275,http://earthquake.usgs.gov/earthquakes/eventpage/ak10562275
2.6,"62km WSW of Talkeetna, Alaska",62.0237,-151.1335,83.1,19-09-2012 18:34,ak10562172,http://earthquake.usgs.gov/earthquakes/eventpage/ak10562172
2.8,"61km W of Anchor Point, Alaska",59.6741,-152.9131,96.5,19-09-2012 17:07,ak10562116,http://earthquake.usgs.gov/earthquakes/eventpage/ak10562116
3.2,"24km NW of Circle Hot Springs Station, Alaska",65.6433,-145.0007,9.1,19-09-2012 15:02,ak10562077,http://earthquake.usgs.gov/earthquakes/eventpage/ak10562077
4.4,"20km SSE of Popnam, Indonesia",-9.81,124.5695,35.29,19-09-2012 10:45,usc000cruv,http://earthquake.usgs.gov/earthquakes/eventpage/usc000cruv
2.6,"23km WNW of Redoubt Volcano, Alaska",60.5527,-153.139,139.2,19-09-2012 10:00,ak10562046,http://earthquake.usgs.gov/earthquakes/eventpage/ak10562046
4.9,"27km SE of Turkoglu, Turkey",37.2352,37.0982,10.02,19-09-2012 09:17,usc000crtt,http://earthquake.usgs.gov/earthquakes/eventpage/usc000crtt
2.6,"45km NW of Cape Yakataga, Alaska",60.3022,-143.0997,3.3,19-09-2012 08:33,ak10562025,http://earthquake.usgs.gov/earthquakes/eventpage/ak10562025
2.5,"68km S of Larsen Bay, Alaska",56.9311,-154.0841,41.1,19-09-2012 08:23,ak10562953,http://earthquake.usgs.gov/earthquakes/eventpage/ak10562953
4.5,"11km NNE of Siglufjordur, Iceland",66.2473,-18.7853,10.3,19-09-2012 07:57,usc000crt2,http://earthquake.usgs.gov/earthquakes/eventpage/usc000crt2
3.3,"58km NE of Road Town, British Virgin Islands",18.7924,-64.222,41,19-09-2012 07:39,pr12263003,http://earthquake.usgs.gov/earthquakes/eventpage/pr12263003
4.5,"252km S of Sidorukun, Indonesia",-10.8636,113.8905,37.82,19-09-2012 07:31,usc000crsk,http://earthquake.usgs.gov/earthquakes/eventpage/usc000crsk
4.6,"86km E of Raoul Island, New Zealand",-29.381,-177.0169,59.45,19-09-2012 06:44,usc000crry,http://earthquake.usgs.gov/earthquakes/eventpage/usc000crry
2.8,"63km NNW of San Antonio, Puerto Rico",19.0294,-67.2987,9,19-09-2012 06:26,pr12263002,http://earthquake.usgs.gov/earthquakes/eventpage/pr12263002
3.6,"156km NNW of The Valley, Anguilla",19.5606,-63.5117,37,19-09-2012 05:44,pr12263001,http://earthquake.usgs.gov/earthquakes/eventpage/pr12263001
2.5,"27km SSW of China Lake Acres, California",35.3975,-117.8235,7.3,19-09-2012 04:57,ci15218041,http://earthquake.usgs.gov/earthquakes/eventpage/ci15218041
2.9,"12km SSE of Volcano, Hawaii",19.319,-155.2127,8.8,19-09-2012 04:35,hv60401421,http://earthquake.usgs.gov/earthquakes/eventpage/hv60401421
3.2,"132km N of Road Town, British Virgin Islands",19.5988,-64.4186,43,19-09-2012 04:34,pr12263000,http://earthquake.usgs.gov/earthquakes/eventpage/pr12263000
4.1,"32km SSW of Puerto El Triunfo, El Salvador",13.0084,-88.6603,70.73,19-09-2012 04:27,usc000crqx,http://earthquake.usgs.gov/earthquakes/eventpage/usc000crqx
3.5,"29km SW of Homer, Alaska",59.4491,-151.912,63.9,19-09-2012 02:07,ak10561932,http://earthquake.usgs.gov/earthquakes/eventpage/ak10561932
4.7,"111km ESE of Madang, Papua New Guinea",-5.6575,146.707,36.12,19-09-2012 01:57,usc000crqf,http://earthquake.usgs.gov/earthquakes/eventpage/usc000crqf
2.5,"194km SW of Amatignak Island, Alaska",50.1707,178.7345,26.3,19-09-2012 00:39,ak10562941,http://earthquake.usgs.gov/earthquakes/eventpage/ak10562941
4.7,"77km N of Ternate, Indonesia",1.5011,127.3285,116.48,19-09-2012 00:32,usc000crqb,http://earthquake.usgs.gov/earthquakes/eventpage/usc000crqb
4.5,"79km SSW of Isangel, Vanuatu",-20.1802,168.9119,48.47,19-09-2012 00:15,usc000crq7,http://earthquake.usgs.gov/earthquakes/eventpage/usc000crq7
2.8,"54km N of Hatillo, Puerto Rico",18.9748,-66.8369,11,18-09-2012 21:15,pr12262014,http://earthquake.usgs.gov/earthquakes/eventpage/pr12262014
3,"5km S of Idyllwild-Pine Cove, California",33.6938,-116.7375,20.3,18-09-2012 21:09,ci15217865,http://earthquake.usgs.gov/earthquakes/eventpage/ci15217865
3,"170km WNW of Port Orford, Oregon",43.0846,-126.5326,10.45,18-09-2012 19:57,usc000crda,http://earthquake.usgs.gov/earthquakes/eventpage/usc000crda
2.5,"13km WNW of Progreso, Mexico",32.6415,-115.7028,8.4,18-09-2012 19:34,ci15217817,http://earthquake.usgs.gov/earthquakes/eventpage/ci15217817
3,"61km WSW of Anchor Point, Alaska",59.2709,-153.3279,93.1,18-09-2012 19:22,ak10561662,http://earthquake.usgs.gov/earthquakes/eventpage/ak10561662
4.5,"10km SSW of Samara, Costa Rica",9.792,-85.561,44.16,18-09-2012 19:10,usc000crbn,http://earthquake.usgs.gov/earthquakes/eventpage/usc000crbn
2.9,"60km SW of Larsen Bay, Alaska",57.2005,-154.8056,40.6,18-09-2012 18:54,ak10561644,http://earthquake.usgs.gov/earthquakes/eventpage/ak10561644
2.8,"64km N of Road Town, British Virgin Islands",18.9899,-64.5162,8,18-09-2012 17:52,pr12262013,http://earthquake.usgs.gov/earthquakes/eventpage/pr12262013
2.8,"143km NNE of Road Town, British Virgin Islands",19.659,-64.236,7,18-09-2012 17:40,pr12262012,http://earthquake.usgs.gov/earthquakes/eventpage/pr12262012
4.7,"49km S of Binuangeun, Indonesia",-7.28,105.8857,44.6,18-09-2012 16:35,us2012fras,http://earthquake.usgs.gov/earthquakes/eventpage/us2012fras
2.6,"85km S of False Pass, Alaska",54.0936,-163.611,147,18-09-2012 16:06,ak10562402,http://earthquake.usgs.gov/earthquakes/eventpage/ak10562402
4.7,Off the west coast of northern Sumatra,3.7756,92.6495,10.4,18-09-2012 15:59,us2012frar,http://earthquake.usgs.gov/earthquakes/eventpage/us2012frar
3.1,"114km S of Point Hope, Alaska",67.3255,-166.8751,23.6,18-09-2012 15:31,ak10562401,http://earthquake.usgs.gov/earthquakes/eventpage/ak10562401
2.9,"69km NNE of Arecibo, Puerto Rico",19.0909,-66.5822,54,18-09-2012 14:59,pr12262009,http://earthquake.usgs.gov/earthquakes/eventpage/pr12262009
2.7,"28km ESE of Semisopochnoi Island, Alaska",51.898,-179.9874,159.1,18-09-2012 14:46,ak10562399,http://earthquake.usgs.gov/earthquakes/eventpage/ak10562399
2.8,"73km NNW of Charlotte Amalie, U.S. Virgin Islands",18.9755,-65.1491,42,18-09-2012 14:34,pr12262010,http://earthquake.usgs.gov/earthquakes/eventpage/pr12262010
3,"76km N of Culebra, Puerto Rico",18.993,-65.2205,17,18-09-2012 14:32,pr12262011,http://earthquake.usgs.gov/earthquakes/eventpage/pr12262011
2.6,"61km S of Larsen Bay, Alaska",56.9924,-154.1272,9.1,18-09-2012 12:32,ak10561372,http://earthquake.usgs.gov/earthquakes/eventpage/ak10561372
3.3,"117km NNW of Shishmaref, Alaska",67.2678,-166.8237,24.4,18-09-2012 11:51,ak10562394,http://earthquake.usgs.gov/earthquakes/eventpage/ak10562394
2.9,"22km SSE of Pahala, Hawaii",19.0077,-155.421,44.4,18-09-2012 10:48,hv60400351,http://earthquake.usgs.gov/earthquakes/eventpage/hv60400351
3.2,"67km N of Isabela, Puerto Rico",19.0948,-66.9,55,18-09-2012 10:25,pr12262007,http://earthquake.usgs.gov/earthquakes/eventpage/pr12262007
4.9,"24km NE of We, New Caledonia",-20.7399,167.4055,34.99,18-09-2012 10:15,usc000cr2p,http://earthquake.usgs.gov/earthquakes/eventpage/usc000cr2p
2.7,"18km SE of Emajagua, Puerto Rico",17.899,-65.74,13,18-09-2012 09:42,pr12262006,http://earthquake.usgs.gov/earthquakes/eventpage/pr12262006
4.3,"14km SW of Samara, Costa Rica",9.8014,-85.6349,17.24,18-09-2012 09:10,usc000cr1d,http://earthquake.usgs.gov/earthquakes/eventpage/usc000cr1d
4.2,"20km SSW of Samara, Costa Rica",9.7264,-85.6216,14.44,18-09-2012 09:03,usc000cr1a,http://earthquake.usgs.gov/earthquakes/eventpage/usc000cr1a
4.5,"135km SW of Puerto El Triunfo, El Salvador",12.2677,-89.2503,35.42,18-09-2012 08:20,usc000cr0z,http://earthquake.usgs.gov/earthquakes/eventpage/usc000cr0z
5.1,"143km SE of Sarangani, Philippines",4.4809,126.38,28.08,18-09-2012 08:05,usc000cr0u,http://earthquake.usgs.gov/earthquakes/eventpage/usc000cr0u
2.5,"31km SW of Gold Beach, Oregon",42.2338,-124.7195,35.9,18-09-2012 07:08,uw60453102,http://earthquake.usgs.gov/earthquakes/eventpage/uw60453102
4.8,"241km S of Sidorukun, Indonesia",-10.7708,114.0331,39.33,18-09-2012 06:42,usc000cr0h,http://earthquake.usgs.gov/earthquakes/eventpage/usc000cr0h
3,"67km N of San Juan, Puerto Rico",19.076,-66.146,50,18-09-2012 06:33,pr12262005,http://earthquake.usgs.gov/earthquakes/eventpage/pr12262005
3.4,"41km SE of Punta Cana, Dominican Republic",18.3581,-68.0887,109,18-09-2012 05:20,pr12262004,http://earthquake.usgs.gov/earthquakes/eventpage/pr12262004
3,"156km NNE of Road Town, British Virgin Islands",19.7826,-64.2344,38,18-09-2012 04:30,pr12262001,http://earthquake.usgs.gov/earthquakes/eventpage/pr12262001
2.6,"65km S of Larsen Bay, Alaska",56.9548,-154.1349,30.1,18-09-2012 04:14,ak10561291,http://earthquake.usgs.gov/earthquakes/eventpage/ak10561291
4.7,"58km SW of Zonda, Argentina",-31.8963,-69.2027,64.59,18-09-2012 03:53,usc000cqzs,http://earthquake.usgs.gov/earthquakes/eventpage/usc000cqzs
4.8,"105km E of Raoul Island, New Zealand",-29.2155,-176.8201,58.12,18-09-2012 03:51,usc000cqzz,http://earthquake.usgs.gov/earthquakes/eventpage/usc000cqzz
2.6,"64km S of Larsen Bay, Alaska",56.9664,-154.1183,27.4,18-09-2012 03:26,ak10561285,http://earthquake.usgs.gov/earthquakes/eventpage/ak10561285
5.2,"97km SSW of Biha, Indonesia",-6.1732,103.7882,10.01,18-09-2012 03:23,usc000cqzk,http://earthquake.usgs.gov/earthquakes/eventpage/usc000cqzk
3.4,"65km S of Larsen Bay, Alaska",56.9529,-154.1015,38.5,18-09-2012 01:52,ak10561263,http://earthquake.usgs.gov/earthquakes/eventpage/ak10561263
5.1,"91km E of Bitung, Indonesia",1.4052,126.0026,22.25,18-09-2012 01:46,usc000cqz5,http://earthquake.usgs.gov/earthquakes/eventpage/usc000cqz5
5.1,"55km SSW of Larsen Bay, Alaska",56.9366,-154.142,38.6,18-09-2012 01:44,ak10561248,http://earthquake.usgs.gov/earthquakes/eventpage/ak10561248
4.4,"204km SSW of Severo-Kuril'sk, Russia",49.0617,154.7698,80.12,18-09-2012 00:52,usc000cqyd,http://earthquake.usgs.gov/earthquakes/eventpage/usc000cqyd
2.5,"3km W of Puerto Real, Puerto Rico",18.0785,-67.2226,33,18-09-2012 00:20,pr12262000,http://earthquake.usgs.gov/earthquakes/eventpage/pr12262000
4.3,"28km ESE of Mengmeng, China",23.3343,100.0449,15.01,17-09-2012 23:28,usc000cqxm,http://earthquake.usgs.gov/earthquakes/eventpage/usc000cqxm
2.5,"28km N of Kernville, California",36.007,-118.4032,5.2,17-09-2012 23:20,ci15217225,http://earthquake.usgs.gov/earthquakes/eventpage/ci15217225
2.6,"52km ESE of Semisopochnoi Island, Alaska",51.7845,-179.6812,16.6,17-09-2012 21:21,ak10561000,http://earthquake.usgs.gov/earthquakes/eventpage/ak10561000
2.5,"7km NW of El Sauzal, Mexico",31.9375,-116.7435,10,17-09-2012 21:18,ci15217201,http://earthquake.usgs.gov/earthquakes/eventpage/ci15217201
5,"41km ENE of Port-Olry, Vanuatu",-14.9021,167.409,146.89,17-09-2012 21:15,usa000f46i,http://earthquake.usgs.gov/earthquakes/eventpage/usa000f46i
2.8,"41km NE of Soledad, California",36.6437,-120.9488,9.6,17-09-2012 21:12,nc71843815,http://earthquake.usgs.gov/earthquakes/eventpage/nc71843815
2.6,"116km NW of Talkeetna, Alaska",63.0336,-151.7684,8.1,17-09-2012 20:26,ak10560971,http://earthquake.usgs.gov/earthquakes/eventpage/ak10560971
5.4,"18km S of Kimbe, Papua New Guinea",-5.7173,150.1193,92.68,17-09-2012 20:07,usc000cqr6,http://earthquake.usgs.gov/earthquakes/eventpage/usc000cqr6
3.1,"108km NNE of Atka, Alaska",53.0351,-173.3885,206.5,17-09-2012 19:29,ak10560943,http://earthquake.usgs.gov/earthquakes/eventpage/ak10560943
5,"22km NNE of Miyako, Japan",39.8082,142.0836,36.71,17-09-2012 19:09,usc000cqmw,http://earthquake.usgs.gov/earthquakes/eventpage/usc000cqmw
3.1,"76km NNW of San Antonio, Puerto Rico",19.0765,-67.4925,25,17-09-2012 16:18,pr12261005,http://earthquake.usgs.gov/earthquakes/eventpage/pr12261005
4.6,Norwegian Sea,72.4718,2.7458,10,17-09-2012 16:08,us2012fqam,http://earthquake.usgs.gov/earthquakes/eventpage/us2012fqam
2.5,"100km N of Road Town, British Virgin Islands",19.3192,-64.7106,7,17-09-2012 15:44,pr12261006,http://earthquake.usgs.gov/earthquakes/eventpage/pr12261006
4.8,"245km S of Sidorukun, Indonesia",-10.7855,113.8118,12.2,17-09-2012 14:19,us2012fqak,http://earthquake.usgs.gov/earthquakes/eventpage/us2012fqak
2.5,"10km NNE of Road Town, British Virgin Islands",18.5048,-64.5743,49,17-09-2012 14:02,pr12261007,http://earthquake.usgs.gov/earthquakes/eventpage/pr12261007
4.7,"266km S of Sidorukun, Indonesia",-10.9675,113.7358,10,17-09-2012 13:27,us2012fqaj,http://earthquake.usgs.gov/earthquakes/eventpage/us2012fqaj
2.9,"38km NNW of Anchor Point, Alaska",60.0949,-152.1217,66.1,17-09-2012 12:55,ak10560844,http://earthquake.usgs.gov/earthquakes/eventpage/ak10560844
2.8,"17km SW of Leilani Estates, Hawaii",19.3498,-155.0272,8.4,17-09-2012 12:10,hv60399721,http://earthquake.usgs.gov/earthquakes/eventpage/hv60399721
3.2,"142km NNE of Road Town, British Virgin Islands",19.6595,-64.2488,12,17-09-2012 09:51,pr12261004,http://earthquake.usgs.gov/earthquakes/eventpage/pr12261004
3.4,"245km SSE of Amukta Island, Alaska",50.3763,-170.2196,26.1,17-09-2012 09:31,ak10560832,http://earthquake.usgs.gov/earthquakes/eventpage/ak10560832
3.1,"98km N of Road Town, British Virgin Islands",19.3038,-64.5166,15,17-09-2012 09:25,pr12261003,http://earthquake.usgs.gov/earthquakes/eventpage/pr12261003
3.1,"85km NNW of Road Town, British Virgin Islands",19.1364,-64.9172,50,17-09-2012 09:20,pr12261002,http://earthquake.usgs.gov/earthquakes/eventpage/pr12261002
4.3,"33km S of Mincivan, Azerbaijan",38.7265,46.7174,9.99,17-09-2012 07:05,usc000cq9h,http://earthquake.usgs.gov/earthquakes/eventpage/usc000cq9h
3.4,"102km S of Point Hope, Alaska",67.443,-167.1008,20,17-09-2012 07:04,ak10562206,http://earthquake.usgs.gov/earthquakes/eventpage/ak10562206
3.1,"111km N of Shishmaref, Alaska",67.2397,-166.5242,20,17-09-2012 05:51,ak10562205,http://earthquake.usgs.gov/earthquakes/eventpage/ak10562205
2.8,"42km WSW of Trinidad, Colorado",37.0004,-104.9291,4.93,17-09-2012 05:30,usc000cq8s,http://earthquake.usgs.gov/earthquakes/eventpage/usc000cq8s
3.1,"135km N of Road Town, British Virgin Islands",19.6329,-64.4487,13,17-09-2012 04:19,pr12261001,http://earthquake.usgs.gov/earthquakes/eventpage/pr12261001
4.6,"82km SSE of Kushiro, Japan",42.3376,144.8821,45.74,17-09-2012 03:08,usc000cq7t,http://earthquake.usgs.gov/earthquakes/eventpage/usc000cq7t
3.3,"114km WSW of Port Orford, Oregon",42.4642,-125.8368,9.98,17-09-2012 02:50,usc000cq7j,http://earthquake.usgs.gov/earthquakes/eventpage/usc000cq7j
2.6,"1km NW of Coto Norte, Puerto Rico",18.4386,-66.4469,81,17-09-2012 02:28,pr12261000,http://earthquake.usgs.gov/earthquakes/eventpage/pr12261000
4.4,"135km SSW of Firuzabad, Iran",27.69,52.1,46,17-09-2012 02:13,us2012fqad,http://earthquake.usgs.gov/earthquakes/eventpage/us2012fqad
2.9,"119km WSW of Port Orford, Oregon",42.4211,-125.8804,10.02,17-09-2012 01:59,usc000cq72,http://earthquake.usgs.gov/earthquakes/eventpage/usc000cq72
4.4,"178km SSW of Severo-Kuril'sk, Russia",49.3119,154.8311,85.48,17-09-2012 01:29,usc000cq6x,http://earthquake.usgs.gov/earthquakes/eventpage/usc000cq6x
3.1,"146km WNW of Haines Junction, Canada",61.0544,-140.1429,0.2,17-09-2012 00:51,ak10560746,http://earthquake.usgs.gov/earthquakes/eventpage/ak10560746
4.4,"95km S of La Libertad, El Salvador",12.643,-89.1507,35.26,16-09-2012 23:22,usc000cq62,http://earthquake.usgs.gov/earthquakes/eventpage/usc000cq62
2.8,"31km WSW of Trinidad, Colorado",37.0625,-104.8335,4.98,16-09-2012 23:15,usc000cq5u,http://earthquake.usgs.gov/earthquakes/eventpage/usc000cq5u
4.8,"90km NE of San Isidro, Philippines",10.5094,126.7389,73,16-09-2012 22:09,usc000cq5b,http://earthquake.usgs.gov/earthquakes/eventpage/usc000cq5b
4.5,"208km WNW of Saumlaki, Indonesia",-7.0192,129.6728,134.61,16-09-2012 21:46,usc000cq4r,http://earthquake.usgs.gov/earthquakes/eventpage/usc000cq4r
5.3,"91km NE of San Isidro, Philippines",10.5908,126.676,49.52,16-09-2012 21:46,usc000cq5d,http://earthquake.usgs.gov/earthquakes/eventpage/usc000cq5d
2.8,"73km N of Loiza, Puerto Rico",19.0897,-65.7799,12,16-09-2012 21:04,pr12260054,http://earthquake.usgs.gov/earthquakes/eventpage/pr12260054
3.3,"153km NNE of Road Town, British Virgin Islands",19.746,-64.1887,18,16-09-2012 20:54,pr12260034,http://earthquake.usgs.gov/earthquakes/eventpage/pr12260034
4,"47km S of Adak, Alaska",51.4555,-176.5483,37.6,16-09-2012 20:49,ak10560714,http://earthquake.usgs.gov/earthquakes/eventpage/ak10560714
3.2,"149km NNE of Road Town, British Virgin Islands",19.721,-64.259,17,16-09-2012 20:43,pr12260053,http://earthquake.usgs.gov/earthquakes/eventpage/pr12260053
3.5,"36km NW of Atka, Alaska",52.4383,-174.557,224.2,16-09-2012 19:13,ak10560711,http://earthquake.usgs.gov/earthquakes/eventpage/ak10560711
3.2,"151km NNE of Road Town, British Virgin Islands",19.7248,-64.1901,19,16-09-2012 19:12,pr12260031,http://earthquake.usgs.gov/earthquakes/eventpage/pr12260031
2.5,"3km ENE of Las Marias, Puerto Rico",18.3078,-67.1153,15,16-09-2012 19:10,pr12260036,http://earthquake.usgs.gov/earthquakes/eventpage/pr12260036
2.9,"7km WSW of Cobb, California",38.8077,-122.8103,0.7,16-09-2012 18:54,nc71843220,http://earthquake.usgs.gov/earthquakes/eventpage/nc71843220
3.4,"4km SW of Cobb, California",38.7927,-122.7665,3.3,16-09-2012 18:53,nc71843215,http://earthquake.usgs.gov/earthquakes/eventpage/nc71843215
4.5,"90km S of La Libertad, El Salvador",12.6743,-89.2029,51.06,16-09-2012 18:33,usc000cq35,http://earthquake.usgs.gov/earthquakes/eventpage/usc000cq35
3.6,"136km NNE of Road Town, British Virgin Islands",19.6215,-64.3298,48,16-09-2012 17:58,pr12260027,http://earthquake.usgs.gov/earthquakes/eventpage/pr12260027
3,"143km NNE of Road Town, British Virgin Islands",19.6793,-64.3031,25,16-09-2012 16:46,pr12260052,http://earthquake.usgs.gov/earthquakes/eventpage/pr12260052
4.8,"227km SSE of Sinabang, Indonesia",0.4962,96.9279,25.4,16-09-2012 16:17,us2012fpau,http://earthquake.usgs.gov/earthquakes/eventpage/us2012fpau
2.6,"137km NNE of Road Town, British Virgin Islands",19.6326,-64.3563,25,16-09-2012 16:07,pr12260051,http://earthquake.usgs.gov/earthquakes/eventpage/pr12260051
3,"141km NNE of Road Town, British Virgin Islands",19.663,-64.3229,24,16-09-2012 15:42,pr12260050,http://earthquake.usgs.gov/earthquakes/eventpage/pr12260050
4.9,"238km S of Sidorukun, Indonesia",-10.7344,113.8599,15.2,16-09-2012 15:32,us2012fpat,http://earthquake.usgs.gov/earthquakes/eventpage/us2012fpat
2.9,"35km SSE of Boca de Yuma, Dominican Republic",18.0715,-68.5215,112,16-09-2012 15:15,pr12260026,http://earthquake.usgs.gov/earthquakes/eventpage/pr12260026
4.3,"137km NNE of Road Town, British Virgin Islands",19.596,-64.2007,70,16-09-2012 14:52,pr12260024,http://earthquake.usgs.gov/earthquakes/eventpage/pr12260024
4.7,Reykjanes Ridge,58.0682,-32.1794,10,16-09-2012 14:30,us2012fpb7,http://earthquake.usgs.gov/earthquakes/eventpage/us2012fpb7
3,"147km NNE of Road Town, British Virgin Islands",19.718,-64.2993,18,16-09-2012 14:09,pr12260025,http://earthquake.usgs.gov/earthquakes/eventpage/pr12260025
3.2,"136km NNE of Road Town, British Virgin Islands",19.6138,-64.2985,58,16-09-2012 14:06,pr12260023,http://earthquake.usgs.gov/earthquakes/eventpage/pr12260023
4.3,"265km S of Sidorukun, Indonesia",-10.9454,113.6688,10,16-09-2012 13:13,us2012fpaq,http://earthquake.usgs.gov/earthquakes/eventpage/us2012fpaq
5,"78km WNW of Neiafu, Tonga",-18.4246,-174.6928,124.7,16-09-2012 13:02,usc000cpz6,http://earthquake.usgs.gov/earthquakes/eventpage/usc000cpz6
5,"209km W of Abepura, Indonesia",-2.7112,138.6992,52.86,16-09-2012 12:50,usc000cpyw,http://earthquake.usgs.gov/earthquakes/eventpage/usc000cpyw
2.9,"149km NNE of Road Town, British Virgin Islands",19.7198,-64.2465,39,16-09-2012 12:13,pr12260049,http://earthquake.usgs.gov/earthquakes/eventpage/pr12260049
4,"129km NNE of Road Town, British Virgin Islands",19.5151,-64.1938,81,16-09-2012 12:04,pr12260017,http://earthquake.usgs.gov/earthquakes/eventpage/pr12260017
2.8,"56km N of Loiza, Puerto Rico",18.9333,-65.7839,5,16-09-2012 11:49,pr12260022,http://earthquake.usgs.gov/earthquakes/eventpage/pr12260022
2.6,"68km NNW of Charlotte Amalie, U.S. Virgin Islands",18.9153,-65.1638,63,16-09-2012 11:35,pr12260048,http://earthquake.usgs.gov/earthquakes/eventpage/pr12260048
2.8,"2km NE of Little Sitkin Island, Alaska",51.9611,178.5272,2.9,16-09-2012 11:25,ak10560582,http://earthquake.usgs.gov/earthquakes/eventpage/ak10560582
2.8,"101km WSW of Fort Yukon, Alaska",66.3634,-147.4853,20.1,16-09-2012 10:52,ak10560577,http://earthquake.usgs.gov/earthquakes/eventpage/ak10560577
2.8,"75km N of Loiza, Puerto Rico",19.1131,-65.8134,38,16-09-2012 10:32,pr12260047,http://earthquake.usgs.gov/earthquakes/eventpage/pr12260047
3,"65km N of Suarez, Puerto Rico",19.0217,-65.7882,8,16-09-2012 10:28,pr12260021,http://earthquake.usgs.gov/earthquakes/eventpage/pr12260021
2.5,"27km N of Road Town, British Virgin Islands",18.669,-64.6289,10,16-09-2012 10:27,pr12260020,http://earthquake.usgs.gov/earthquakes/eventpage/pr12260020
2.6,"72km NNW of Road Town, British Virgin Islands",19.0445,-64.817,52,16-09-2012 10:24,pr12260046,http://earthquake.usgs.gov/earthquakes/eventpage/pr12260046
2.9,"156km N of Road Town, British Virgin Islands",19.8129,-64.374,34,16-09-2012 10:22,pr12260045,http://earthquake.usgs.gov/earthquakes/eventpage/pr12260045
2.7,"65km N of Loiza, Puerto Rico",19.0186,-65.8421,45,16-09-2012 10:17,pr12260044,http://earthquake.usgs.gov/earthquakes/eventpage/pr12260044
3.1,"136km N of Road Town, British Virgin Islands",19.6285,-64.3703,15,16-09-2012 10:13,pr12260019,http://earthquake.usgs.gov/earthquakes/eventpage/pr12260019
2.8,"63km N of Loiza, Puerto Rico",19.0051,-65.8315,19,16-09-2012 10:12,pr12260018,http://earthquake.usgs.gov/earthquakes/eventpage/pr12260018
3.2,"59km N of Loiza, Puerto Rico",18.9668,-65.8315,10,16-09-2012 10:09,pr12260016,http://earthquake.usgs.gov/earthquakes/eventpage/pr12260016
2.7,"64km N of Loiza, Puerto Rico",19.0074,-65.8135,5,16-09-2012 10:08,pr12260013,http://earthquake.usgs.gov/earthquakes/eventpage/pr12260013
3,"72km N of Loiza, Puerto Rico",19.0825,-65.8097,17,16-09-2012 10:06,pr12260011,http://earthquake.usgs.gov/earthquakes/eventpage/pr12260011
2.8,"64km N of Vieques, Puerto Rico",19.0069,-65.7624,8,16-09-2012 10:05,pr12260010,http://earthquake.usgs.gov/earthquakes/eventpage/pr12260010
2.6,"73km N of Loiza, Puerto Rico",19.0921,-65.8359,18,16-09-2012 10:04,pr12260008,http://earthquake.usgs.gov/earthquakes/eventpage/pr12260008
3.3,"63km N of Suarez, Puerto Rico",19.0002,-65.7705,65,16-09-2012 10:00,pr12260014,http://earthquake.usgs.gov/earthquakes/eventpage/pr12260014
2.9,"72km N of Suarez, Puerto Rico",19.0865,-65.7891,44,16-09-2012 09:59,pr12260012,http://earthquake.usgs.gov/earthquakes/eventpage/pr12260012
2.7,"75km N of Loiza, Puerto Rico",19.1075,-65.7778,35,16-09-2012 09:55,pr12260042,http://earthquake.usgs.gov/earthquakes/eventpage/pr12260042
3,"69km N of Loiza, Puerto Rico",19.0611,-65.865,25,16-09-2012 09:54,pr12260043,http://earthquake.usgs.gov/earthquakes/eventpage/pr12260043
3.1,"70km N of Loiza, Puerto Rico",19.0708,-65.8326,13,16-09-2012 09:47,pr12260009,http://earthquake.usgs.gov/earthquakes/eventpage/pr12260009
2.9,"67km N of Suarez, Puerto Rico",19.0436,-65.8261,13,16-09-2012 09:47,pr12260007,http://earthquake.usgs.gov/earthquakes/eventpage/pr12260007
2.9,"142km NNE of Road Town, British Virgin Islands",19.6672,-64.2985,24,16-09-2012 09:34,pr12260041,http://earthquake.usgs.gov/earthquakes/eventpage/pr12260041
3.3,"115km NNE of Road Town, British Virgin Islands",19.326,-64.0876,93,16-09-2012 09:06,pr12260039,http://earthquake.usgs.gov/earthquakes/eventpage/pr12260039
3,"228km W of Ferndale, California",40.2717,-126.9297,10,16-09-2012 08:26,nc71843000,http://earthquake.usgs.gov/earthquakes/eventpage/nc71843000
4.5,"53km SW of Puerto Madero, Mexico",14.3372,-92.7307,35,16-09-2012 08:25,usc000cpxf,http://earthquake.usgs.gov/earthquakes/eventpage/usc000cpxf
2.9,"18km SE of Adak, Alaska",51.754,-176.4941,70.3,16-09-2012 08:05,ak10560556,http://earthquake.usgs.gov/earthquakes/eventpage/ak10560556
4.4,"10km NNW of Imamoglu, Turkey",37.3512,35.6095,16.97,16-09-2012 07:54,usc000cpx1,http://earthquake.usgs.gov/earthquakes/eventpage/usc000cpx1
3.1,"124km N of Brenas, Puerto Rico",19.5916,-66.248,16,16-09-2012 07:41,pr12260040,http://earthquake.usgs.gov/earthquakes/eventpage/pr12260040
2.6,"80km NNE of Luquillo, Puerto Rico",19.0345,-65.4012,14,16-09-2012 07:28,pr12260038,http://earthquake.usgs.gov/earthquakes/eventpage/pr12260038
3,"141km NNE of Road Town, British Virgin Islands",19.6231,-64.1785,69,16-09-2012 07:13,pr12260037,http://earthquake.usgs.gov/earthquakes/eventpage/pr12260037
3.3,"47km NE of Road Town, British Virgin Islands",18.7171,-64.2922,44,16-09-2012 06:57,pr12260006,http://earthquake.usgs.gov/earthquakes/eventpage/pr12260006
2.8,"138km NNE of Road Town, British Virgin Islands",19.5559,-64.0798,63,16-09-2012 06:54,pr12260035,http://earthquake.usgs.gov/earthquakes/eventpage/pr12260035
2.7,"74km N of Charlotte Amalie, U.S. Virgin Islands",19.0055,-65.0213,31,16-09-2012 06:28,pr12260004,http://earthquake.usgs.gov/earthquakes/eventpage/pr12260004
4.9,Off the west coast of northern Sumatra,3.6188,90.166,9.99,16-09-2012 06:07,usc000cpwc,http://earthquake.usgs.gov/earthquakes/eventpage/usc000cpwc
5.2,"8km W of Nicoya, Costa Rica",10.1417,-85.5263,24.26,16-09-2012 05:51,usc000cpw2,http://earthquake.usgs.gov/earthquakes/eventpage/usc000cpw2
3.4,"131km NNE of Road Town, British Virgin Islands",19.5575,-64.2605,70,16-09-2012 05:40,pr12260002,http://earthquake.usgs.gov/earthquakes/eventpage/pr12260002
2.8,"133km NNE of Road Town, British Virgin Islands",19.5513,-64.1989,68,16-09-2012 05:07,pr12260032,http://earthquake.usgs.gov/earthquakes/eventpage/pr12260032
2.6,"133km NNE of Road Town, British Virgin Islands",19.568,-64.254,68,16-09-2012 04:56,pr12260030,http://earthquake.usgs.gov/earthquakes/eventpage/pr12260030
3,"130km NNE of Road Town, British Virgin Islands",19.5275,-64.1905,72,16-09-2012 04:46,pr12260003,http://earthquake.usgs.gov/earthquakes/eventpage/pr12260003
3.7,"138km N of Road Town, British Virgin Islands",19.6487,-64.3693,19,16-09-2012 04:14,pr12260001,http://earthquake.usgs.gov/earthquakes/eventpage/pr12260001
2.6,"4km S of Pajaros, Puerto Rico",18.3306,-66.2143,57,16-09-2012 04:12,pr12260000,http://earthquake.usgs.gov/earthquakes/eventpage/pr12260000
2.6,"8km WSW of Avenal, California",35.9783,-120.2173,20,16-09-2012 04:04,nc71842925,http://earthquake.usgs.gov/earthquakes/eventpage/nc71842925
3,"73km NW of Valdez, Alaska",61.542,-147.424,20.1,16-09-2012 03:38,ak10560496,http://earthquake.usgs.gov/earthquakes/eventpage/ak10560496
2.7,"61km E of Maneadero, Mexico",31.7012,-115.9135,10,16-09-2012 02:38,ci15216297,http://earthquake.usgs.gov/earthquakes/eventpage/ci15216297
3,"143km N of Road Town, British Virgin Islands",19.6907,-64.375,23,16-09-2012 02:33,pr12260029,http://earthquake.usgs.gov/earthquakes/eventpage/pr12260029
4.6,"12km SW of Lata, Solomon Islands",-10.8031,165.758,102.72,16-09-2012 01:38,usc000cpur,http://earthquake.usgs.gov/earthquakes/eventpage/usc000cpur
4.2,"76km SSE of San Mateo del Mar, Mexico",15.542,-94.7799,34.98,16-09-2012 00:39,usc000cpub,http://earthquake.usgs.gov/earthquakes/eventpage/usc000cpub
3.2,"137km SW of Chirikof Island, Alaska",54.9264,-157.1045,34.7,16-09-2012 00:13,ak10560471,http://earthquake.usgs.gov/earthquakes/eventpage/ak10560471
2.6,"63km N of Joshua Tree, California",34.7098,-116.2855,1.9,16-09-2012 00:09,ci15216225,http://earthquake.usgs.gov/earthquakes/eventpage/ci15216225
4.3,"22km SW of Desaguadero, Peru",-16.6904,-69.21,197.36,15-09-2012 23:41,usc000cpt6,http://earthquake.usgs.gov/earthquakes/eventpage/usc000cpt6
3,"4km WSW of Kalaoa, Hawaii",19.7032,-156.0157,34.8,15-09-2012 19:52,hv60398376,http://earthquake.usgs.gov/earthquakes/eventpage/hv60398376
2.7,"131km NNE of Road Town, British Virgin Islands",19.5692,-64.3011,57,15-09-2012 18:31,pr12259011,http://earthquake.usgs.gov/earthquakes/eventpage/pr12259011
2.9,"134km NNE of Road Town, British Virgin Islands",19.576,-64.2378,61,15-09-2012 18:27,pr12259012,http://earthquake.usgs.gov/earthquakes/eventpage/pr12259012
5.3,"242km S of Sidorukun, Indonesia",-10.7681,113.8744,30.6,15-09-2012 17:35,usc000cpmz,http://earthquake.usgs.gov/earthquakes/eventpage/usc000cpmz
5.6,"242km S of Sidorukun, Indonesia",-10.7709,113.8555,9.94,15-09-2012 16:32,usc000cplq,http://earthquake.usgs.gov/earthquakes/eventpage/usc000cplq
4.7,"13km ESE of Hasaki, Japan",35.6878,140.9693,12.6,15-09-2012 16:09,usc000cpli,http://earthquake.usgs.gov/earthquakes/eventpage/usc000cpli
2.8,"40km E of Lima, Montana",44.6075,-112.0778,12,15-09-2012 15:43,mb12872093,http://earthquake.usgs.gov/earthquakes/eventpage/mb12872093
2.6,"63km NNW of Talkeetna, Alaska",62.8706,-150.4478,104.8,15-09-2012 15:30,ak10560328,http://earthquake.usgs.gov/earthquakes/eventpage/ak10560328
3.2,"67km NNW of Charlotte Amalie, U.S. Virgin Islands",18.9302,-65.0866,48,15-09-2012 14:51,pr12259010,http://earthquake.usgs.gov/earthquakes/eventpage/pr12259010
2.9,"59km SSE of Little Sitkin Island, Alaska",51.4466,178.8066,33.4,15-09-2012 13:28,ak10560307,http://earthquake.usgs.gov/earthquakes/eventpage/ak10560307
2.6,"11km SE of Covelo, California",39.7087,-123.1653,5,15-09-2012 12:37,nc71842645,http://earthquake.usgs.gov/earthquakes/eventpage/nc71842645
2.9,"23km SSW of White Sulphur Springs, Montana",46.366,-111.0488,8,15-09-2012 12:21,mb12097289,http://earthquake.usgs.gov/earthquakes/eventpage/mb12097289
2.7,"20km S of Esperanza, Puerto Rico",17.9158,-65.4598,35,15-09-2012 10:54,pr12259009,http://earthquake.usgs.gov/earthquakes/eventpage/pr12259009
4.3,"30km SW of Arica, Chile",-18.647,-70.524,39.9,15-09-2012 10:39,usc000cpw3,http://earthquake.usgs.gov/earthquakes/eventpage/usc000cpw3
5.3,"22km ENE of Anito, Philippines",12.558,125.466,35,15-09-2012 10:26,usc000cpjt,http://earthquake.usgs.gov/earthquakes/eventpage/usc000cpjt
3.1,"62km E of Punta Cana, Dominican Republic",18.586,-67.8096,80,15-09-2012 09:52,pr12259008,http://earthquake.usgs.gov/earthquakes/eventpage/pr12259008
4.6,"51km NW of La Punta, Argentina",-32.8324,-66.6668,41.55,15-09-2012 09:37,usc000cpj4,http://earthquake.usgs.gov/earthquakes/eventpage/usc000cpj4
4.7,Kuril Islands,46.1639,152.9487,42.76,15-09-2012 08:43,usa000f3en,http://earthquake.usgs.gov/earthquakes/eventpage/usa000f3en
1 Magnitude Location Latitude Longitude Depth (km) Date EventId Event URL
1 Magnitude Location Latitude Longitude Depth (km) Date EventId Event URL
2 2.9 6km S of Houston, Alaska 61.5739 -149.8181 43 22-09-2012 07:14 ak10563595 http://earthquake.usgs.gov/earthquakes/eventpage/ak10563595
3 3.3 135km NNE of Road Town, British Virgin Islands 19.6135 -64.3517 69 22-09-2012 07:03 pr12266005 http://earthquake.usgs.gov/earthquakes/eventpage/pr12266005
4 5.6 101km NE of `Ohonua, Tonga -20.8103 -174.1487 10.51 22-09-2012 06:58 usc000ctx8 http://earthquake.usgs.gov/earthquakes/eventpage/usc000ctx8
5 3.2 140km NNE of Road Town, British Virgin Islands 19.6347 -64.255 69 22-09-2012 06:44 pr12266003 http://earthquake.usgs.gov/earthquakes/eventpage/pr12266003
6 4.9 16km NE of Exochi, Greece 40.1993 20.8889 9.75 22-09-2012 06:15 usc000ctwx http://earthquake.usgs.gov/earthquakes/eventpage/usc000ctwx
7 3.4 111km NNE of Road Town, British Virgin Islands 19.3442 -64.211 87 22-09-2012 06:09 pr12266004 http://earthquake.usgs.gov/earthquakes/eventpage/pr12266004
8 2.8 31km N of Larsen Bay, Alaska 57.8248 -153.9892 41.5 22-09-2012 06:01 ak10563570 http://earthquake.usgs.gov/earthquakes/eventpage/ak10563570
9 3.9 130km N of Road Town, British Virgin Islands 19.5533 -64.4636 5.8 22-09-2012 05:31 pr12266002 http://earthquake.usgs.gov/earthquakes/eventpage/pr12266002
10 4.5 63km NE of Calama, Chile -22.0222 -68.5497 113.84 22-09-2012 04:18 usc000ctvi http://earthquake.usgs.gov/earthquakes/eventpage/usc000ctvi
11 5.1 6km SSE of Kiriakion, Greece 38.3002 22.8118 10.02 22-09-2012 03:52 usc000ctvc http://earthquake.usgs.gov/earthquakes/eventpage/usc000ctvc
12 4.3 38km SW of Karpathos, Greece 35.2251 26.9721 10.08 22-09-2012 03:51 usc000ctve http://earthquake.usgs.gov/earthquakes/eventpage/usc000ctve
13 2.5 19km SW of Ferndale, California 40.4688 -124.4462 24.5 22-09-2012 03:13 nc71845805 http://earthquake.usgs.gov/earthquakes/eventpage/nc71845805
14 3.5 18km SW of Ferndale, California 40.4655 -124.4313 23.7 22-09-2012 02:55 nc71845790 http://earthquake.usgs.gov/earthquakes/eventpage/nc71845790
15 2.8 61km S of Deltana, Alaska 63.3274 -145.3493 0.1 22-09-2012 02:48 ak10563523 http://earthquake.usgs.gov/earthquakes/eventpage/ak10563523
16 2.6 11km WSW of Progreso, Mexico 32.5327 -115.6977 8.2 22-09-2012 02:31 ci15219297 http://earthquake.usgs.gov/earthquakes/eventpage/ci15219297
17 3.1 75km NNE of Road Town, British Virgin Islands 19.0235 -64.288 58 22-09-2012 02:18 pr12266001 http://earthquake.usgs.gov/earthquakes/eventpage/pr12266001
18 4.6 Central East Pacific Rise -9.5408 -108.6643 9.99 22-09-2012 01:39 usc000ctu3 http://earthquake.usgs.gov/earthquakes/eventpage/usc000ctu3
19 2.8 69km NNE of Road Town, British Virgin Islands 18.9559 -64.2815 61 22-09-2012 01:21 pr12266000 http://earthquake.usgs.gov/earthquakes/eventpage/pr12266000
20 3.1 76km NNE of Road Town, British Virgin Islands 19.0365 -64.2882 42 21-09-2012 23:07 pr12265011 http://earthquake.usgs.gov/earthquakes/eventpage/pr12265011
21 4.2 50km WNW of `Alaqahdari-ye Kiran wa Munjan, Afghanistan 36.2616 70.2867 113.07 21-09-2012 22:59 usc000ctta http://earthquake.usgs.gov/earthquakes/eventpage/usc000ctta
22 3.2 23km NE of Punta Cana, Dominican Republic 18.7056 -68.2242 27 21-09-2012 20:44 pr12265010 http://earthquake.usgs.gov/earthquakes/eventpage/pr12265010
23 4.6 132km ESE of Iwaki, Japan 36.7845 142.3329 24.72 21-09-2012 19:36 usc000ctk4 http://earthquake.usgs.gov/earthquakes/eventpage/usc000ctk4
24 3.1 124km NNE of Road Town, British Virgin Islands 19.4575 -64.1651 72 21-09-2012 17:24 pr12265009 http://earthquake.usgs.gov/earthquakes/eventpage/pr12265009
25 4.6 29km SW of Ashkasham, Afghanistan 36.526 71.2734 90.23 21-09-2012 17:19 usc000ctez http://earthquake.usgs.gov/earthquakes/eventpage/usc000ctez
26 2.6 62km S of Larsen Bay, Alaska 56.9835 -154.1211 19.3 21-09-2012 15:56 ak10563303 http://earthquake.usgs.gov/earthquakes/eventpage/ak10563303
27 4.6 78km W of Platanos, Greece 35.5199 22.7343 46.13 21-09-2012 15:39 usc000ctbb http://earthquake.usgs.gov/earthquakes/eventpage/usc000ctbb
28 3.2 155km NNE of Road Town, British Virgin Islands 19.739 -64.1214 30 21-09-2012 12:22 pr12265007 http://earthquake.usgs.gov/earthquakes/eventpage/pr12265007
29 5.4 121km ENE of Iquique, Chile -19.6536 -69.1492 98.78 21-09-2012 12:17 usc000ct7f http://earthquake.usgs.gov/earthquakes/eventpage/usc000ct7f
30 4.9 155km SW of Dadali, Solomon Islands -8.9788 157.9785 35.06 21-09-2012 11:59 usc000ct73 http://earthquake.usgs.gov/earthquakes/eventpage/usc000ct73
31 4.3 125km S of Puerto El Triunfo, El Salvador 12.1667 -88.7426 35.18 21-09-2012 11:12 usc000ct6d http://earthquake.usgs.gov/earthquakes/eventpage/usc000ct6d
32 2.8 4km W of La Parguera, Puerto Rico 17.974 -67.0856 6 21-09-2012 10:39 pr12265004 http://earthquake.usgs.gov/earthquakes/eventpage/pr12265004
33 4.5 140km NE of Arzak, China 40.4586 77.4213 29.57 21-09-2012 10:09 usc000ct5p http://earthquake.usgs.gov/earthquakes/eventpage/usc000ct5p
34 4.4 79km W of Mendoza, Argentina -32.9653 -69.6777 100.91 21-09-2012 09:22 usc000ct54 http://earthquake.usgs.gov/earthquakes/eventpage/usc000ct54
35 5 85km WSW of Platanos, Greece 35.3003 22.6787 15.09 21-09-2012 08:47 usa000f694 http://earthquake.usgs.gov/earthquakes/eventpage/usa000f694
36 3.3 143km NNE of Road Town, British Virgin Islands 19.648 -64.2025 60 21-09-2012 08:28 pr12265002 http://earthquake.usgs.gov/earthquakes/eventpage/pr12265002
37 3.4 131km NNE of Road Town, British Virgin Islands 19.4988 -64.1091 75 21-09-2012 08:11 pr12265001 http://earthquake.usgs.gov/earthquakes/eventpage/pr12265001
38 4.1 4km SSW of Santa Cruz, Costa Rica 10.2252 -85.5939 25.7 21-09-2012 06:37 usa000f68h http://earthquake.usgs.gov/earthquakes/eventpage/usa000f68h
39 3 118km NNE of Chignik Lake, Alaska 57.1966 -157.8482 2.7 21-09-2012 05:08 ak10563148 http://earthquake.usgs.gov/earthquakes/eventpage/ak10563148
40 4.8 1km E of San Isidro, Philippines 9.9388 126.0986 35.33 21-09-2012 05:01 usc000ct3g http://earthquake.usgs.gov/earthquakes/eventpage/usc000ct3g
41 3.1 148km SE of Chirikof Island, Alaska 54.7159 -154.3148 12.4 21-09-2012 04:53 ak10563146 http://earthquake.usgs.gov/earthquakes/eventpage/ak10563146
42 2.7 46km SSE of Cantwell, Alaska 63.0366 -148.4692 76.5 21-09-2012 04:36 ak10563136 http://earthquake.usgs.gov/earthquakes/eventpage/ak10563136
43 4.6 108km SW of Birjand, Iran 32.0995 58.4993 25.9 21-09-2012 03:28 usc000ct2t http://earthquake.usgs.gov/earthquakes/eventpage/usc000ct2t
44 4.7 South of the Fiji Islands -25.6459 178.4681 572.03 21-09-2012 03:25 usc000ct2v http://earthquake.usgs.gov/earthquakes/eventpage/usc000ct2v
45 2.8 12km NNE of Houston, Alaska 61.7354 -149.7176 37 21-09-2012 03:16 ak10563117 http://earthquake.usgs.gov/earthquakes/eventpage/ak10563117
46 3.2 91km N of San Juan, Puerto Rico 19.2919 -66.1593 73 21-09-2012 02:18 pr12265000 http://earthquake.usgs.gov/earthquakes/eventpage/pr12265000
47 4.5 248km S of Sidorukun, Indonesia -10.8365 113.9847 8.78 21-09-2012 02:14 usc000ct1x http://earthquake.usgs.gov/earthquakes/eventpage/usc000ct1x
48 4.3 11km N of Nanganumba, Indonesia -8.3641 121.2274 31.53 21-09-2012 00:30 usc000ct0z http://earthquake.usgs.gov/earthquakes/eventpage/usc000ct0z
49 4.3 13km ESE of Ayabe, Japan 35.2485 135.3884 370.42 21-09-2012 00:03 usc000ct0n http://earthquake.usgs.gov/earthquakes/eventpage/usc000ct0n
50 2.6 35km ENE of Tanaga Volcano, Alaska 51.9491 -177.6313 9.8 20-09-2012 22:42 ak10562910 http://earthquake.usgs.gov/earthquakes/eventpage/ak10562910
51 2.8 95km SSW of Semisopochnoi Island, Alaska 51.1215 179.2446 23.6 20-09-2012 22:17 ak10562901 http://earthquake.usgs.gov/earthquakes/eventpage/ak10562901
52 5.4 48km SSE of Pondaguitan, Philippines 5.9775 126.3832 111.16 20-09-2012 21:21 usc000csx3 http://earthquake.usgs.gov/earthquakes/eventpage/usc000csx3
53 5.7 35km ESE of Ndoi Island, Fiji -20.753 -178.3725 544.19 20-09-2012 21:03 usc000csw5 http://earthquake.usgs.gov/earthquakes/eventpage/usc000csw5
54 3.8 43km NNE of Talkeetna, Alaska 62.6916 -149.8072 10.1 20-09-2012 20:47 ak10562838 http://earthquake.usgs.gov/earthquakes/eventpage/ak10562838
55 3.4 46km ESE of Yunaska Island, Alaska 52.4716 -170.0567 127.2 20-09-2012 20:01 ak10562822 http://earthquake.usgs.gov/earthquakes/eventpage/ak10562822
56 4.9 41km WSW of Kimbe, Papua New Guinea -5.7346 149.8211 120.46 20-09-2012 17:44 usc000csng http://earthquake.usgs.gov/earthquakes/eventpage/usc000csng
57 2.9 65km N of Road Town, British Virgin Islands 19.0055 -64.5569 65 20-09-2012 17:21 pr12264008 http://earthquake.usgs.gov/earthquakes/eventpage/pr12264008
58 3.4 136km N of Road Town, British Virgin Islands 19.6334 -64.4336 17 20-09-2012 17:15 pr12264007 http://earthquake.usgs.gov/earthquakes/eventpage/pr12264007
59 4.3 24km NE of Jesus Carranza, Mexico 17.5693 -94.854 114.12 20-09-2012 16:58 usc000csm3 http://earthquake.usgs.gov/earthquakes/eventpage/usc000csm3
60 4.9 121km NE of San Isidro, Philippines 10.6573 126.9779 35.04 20-09-2012 16:32 usc000cslr http://earthquake.usgs.gov/earthquakes/eventpage/usc000cslr
61 5 140km WNW of Tobelo, Indonesia 2.178 126.8298 83.33 20-09-2012 15:52 usc000csku http://earthquake.usgs.gov/earthquakes/eventpage/usc000csku
62 4.7 37km NNE of San Isidro, Philippines 10.3317 126.2051 46.55 20-09-2012 12:42 usc000csim http://earthquake.usgs.gov/earthquakes/eventpage/usc000csim
63 2.5 22km NNW of Borrego Springs, California 33.4523 -116.4413 2.3 20-09-2012 12:13 ci15218617 http://earthquake.usgs.gov/earthquakes/eventpage/ci15218617
64 2.5 17km NNE of Road Town, British Virgin Islands 18.5573 -64.5353 1 20-09-2012 11:42 pr12264005 http://earthquake.usgs.gov/earthquakes/eventpage/pr12264005
65 4.7 88km WNW of Santa Cruz, Chile -34.2707 -72.2261 17.48 20-09-2012 10:07 usc000csgn http://earthquake.usgs.gov/earthquakes/eventpage/usc000csgn
66 4.1 11km SSE of La Gomera, Guatemala 13.9813 -91.0174 71.28 20-09-2012 09:29 usc000csg1 http://earthquake.usgs.gov/earthquakes/eventpage/usc000csg1
67 3.3 111km NNE of Road Town, British Virgin Islands 19.271 -64.0475 94 20-09-2012 08:44 pr12264004 http://earthquake.usgs.gov/earthquakes/eventpage/pr12264004
68 2.6 77km WSW of Ferndale, California 40.3782 -125.1463 0 20-09-2012 08:40 nc71844990 http://earthquake.usgs.gov/earthquakes/eventpage/nc71844990
69 2.5 69km S of Larsen Bay, Alaska 56.9121 -154.0037 46.1 20-09-2012 07:57 ak10562573 http://earthquake.usgs.gov/earthquakes/eventpage/ak10562573
70 3.4 70km S of Larsen Bay, Alaska 56.9089 -154.0954 43.4 20-09-2012 07:31 ak10562557 http://earthquake.usgs.gov/earthquakes/eventpage/ak10562557
71 3.4 120km NNE of Road Town, British Virgin Islands 19.4274 -64.198 87 20-09-2012 07:15 pr12264003 http://earthquake.usgs.gov/earthquakes/eventpage/pr12264003
72 4.8 Reykjanes Ridge 52.5855 -32.0426 9.84 20-09-2012 06:23 usc000cse9 http://earthquake.usgs.gov/earthquakes/eventpage/usc000cse9
73 4.9 37km SSE of Abancay, Peru -13.9269 -72.6994 66.47 20-09-2012 06:08 usc000cse5 http://earthquake.usgs.gov/earthquakes/eventpage/usc000cse5
74 5.2 118km NW of Havelu, Tonga -20.537 -176.1546 209.59 20-09-2012 05:40 usc000csdu http://earthquake.usgs.gov/earthquakes/eventpage/usc000csdu
75 3 148km NNE of Road Town, British Virgin Islands 19.7005 -64.2034 25 20-09-2012 05:39 pr12264001 http://earthquake.usgs.gov/earthquakes/eventpage/pr12264001
76 2.7 27km SSW of Esperanza, Puerto Rico 17.854 -65.536 16 20-09-2012 05:37 pr12264000 http://earthquake.usgs.gov/earthquakes/eventpage/pr12264000
77 4.7 73km N of We, New Caledonia -20.2594 167.1901 31.87 20-09-2012 03:32 usc000csd3 http://earthquake.usgs.gov/earthquakes/eventpage/usc000csd3
78 2.5 37km W of Fort Irwin, California 35.301 -117.0937 20.1 20-09-2012 01:52 ci15218505 http://earthquake.usgs.gov/earthquakes/eventpage/ci15218505
79 4.3 32km S of Acajutla, El Salvador 13.2962 -89.8068 77.39 20-09-2012 01:51 usc000cscx http://earthquake.usgs.gov/earthquakes/eventpage/usc000cscx
80 4.5 Off the west coast of northern Sumatra 0.0689 92.07 10.21 20-09-2012 00:20 usa000f5rb http://earthquake.usgs.gov/earthquakes/eventpage/usa000f5rb
81 2.7 40km NW of San Antonio, Puerto Rico 18.7399 -67.3862 12 19-09-2012 23:51 pr12263005 http://earthquake.usgs.gov/earthquakes/eventpage/pr12263005
82 4.5 181km N of Tobelo, Indonesia 3.3453 128.3019 121.32 19-09-2012 21:30 usa000f5pb http://earthquake.usgs.gov/earthquakes/eventpage/usa000f5pb
83 4.7 155km SE of Sarangani, Philippines 4.6207 126.6319 97.91 19-09-2012 21:18 usc000cs8s http://earthquake.usgs.gov/earthquakes/eventpage/usc000cs8s
84 2.7 75km SE of Nikolski, Alaska 52.4841 -168.0392 25.4 19-09-2012 20:16 ak10562275 http://earthquake.usgs.gov/earthquakes/eventpage/ak10562275
85 2.6 62km WSW of Talkeetna, Alaska 62.0237 -151.1335 83.1 19-09-2012 18:34 ak10562172 http://earthquake.usgs.gov/earthquakes/eventpage/ak10562172
86 2.8 61km W of Anchor Point, Alaska 59.6741 -152.9131 96.5 19-09-2012 17:07 ak10562116 http://earthquake.usgs.gov/earthquakes/eventpage/ak10562116
87 3.2 24km NW of Circle Hot Springs Station, Alaska 65.6433 -145.0007 9.1 19-09-2012 15:02 ak10562077 http://earthquake.usgs.gov/earthquakes/eventpage/ak10562077
88 4.4 20km SSE of Popnam, Indonesia -9.81 124.5695 35.29 19-09-2012 10:45 usc000cruv http://earthquake.usgs.gov/earthquakes/eventpage/usc000cruv
89 2.6 23km WNW of Redoubt Volcano, Alaska 60.5527 -153.139 139.2 19-09-2012 10:00 ak10562046 http://earthquake.usgs.gov/earthquakes/eventpage/ak10562046
90 4.9 27km SE of Turkoglu, Turkey 37.2352 37.0982 10.02 19-09-2012 09:17 usc000crtt http://earthquake.usgs.gov/earthquakes/eventpage/usc000crtt
91 2.6 45km NW of Cape Yakataga, Alaska 60.3022 -143.0997 3.3 19-09-2012 08:33 ak10562025 http://earthquake.usgs.gov/earthquakes/eventpage/ak10562025
92 2.5 68km S of Larsen Bay, Alaska 56.9311 -154.0841 41.1 19-09-2012 08:23 ak10562953 http://earthquake.usgs.gov/earthquakes/eventpage/ak10562953
93 4.5 11km NNE of Siglufjordur, Iceland 66.2473 -18.7853 10.3 19-09-2012 07:57 usc000crt2 http://earthquake.usgs.gov/earthquakes/eventpage/usc000crt2
94 3.3 58km NE of Road Town, British Virgin Islands 18.7924 -64.222 41 19-09-2012 07:39 pr12263003 http://earthquake.usgs.gov/earthquakes/eventpage/pr12263003
95 4.5 252km S of Sidorukun, Indonesia -10.8636 113.8905 37.82 19-09-2012 07:31 usc000crsk http://earthquake.usgs.gov/earthquakes/eventpage/usc000crsk
96 4.6 86km E of Raoul Island, New Zealand -29.381 -177.0169 59.45 19-09-2012 06:44 usc000crry http://earthquake.usgs.gov/earthquakes/eventpage/usc000crry
97 2.8 63km NNW of San Antonio, Puerto Rico 19.0294 -67.2987 9 19-09-2012 06:26 pr12263002 http://earthquake.usgs.gov/earthquakes/eventpage/pr12263002
98 3.6 156km NNW of The Valley, Anguilla 19.5606 -63.5117 37 19-09-2012 05:44 pr12263001 http://earthquake.usgs.gov/earthquakes/eventpage/pr12263001
99 2.5 27km SSW of China Lake Acres, California 35.3975 -117.8235 7.3 19-09-2012 04:57 ci15218041 http://earthquake.usgs.gov/earthquakes/eventpage/ci15218041
100 2.9 12km SSE of Volcano, Hawaii 19.319 -155.2127 8.8 19-09-2012 04:35 hv60401421 http://earthquake.usgs.gov/earthquakes/eventpage/hv60401421
101 3.2 132km N of Road Town, British Virgin Islands 19.5988 -64.4186 43 19-09-2012 04:34 pr12263000 http://earthquake.usgs.gov/earthquakes/eventpage/pr12263000
102 4.1 32km SSW of Puerto El Triunfo, El Salvador 13.0084 -88.6603 70.73 19-09-2012 04:27 usc000crqx http://earthquake.usgs.gov/earthquakes/eventpage/usc000crqx
103 3.5 29km SW of Homer, Alaska 59.4491 -151.912 63.9 19-09-2012 02:07 ak10561932 http://earthquake.usgs.gov/earthquakes/eventpage/ak10561932
104 4.7 111km ESE of Madang, Papua New Guinea -5.6575 146.707 36.12 19-09-2012 01:57 usc000crqf http://earthquake.usgs.gov/earthquakes/eventpage/usc000crqf
105 2.5 194km SW of Amatignak Island, Alaska 50.1707 178.7345 26.3 19-09-2012 00:39 ak10562941 http://earthquake.usgs.gov/earthquakes/eventpage/ak10562941
106 4.7 77km N of Ternate, Indonesia 1.5011 127.3285 116.48 19-09-2012 00:32 usc000crqb http://earthquake.usgs.gov/earthquakes/eventpage/usc000crqb
107 4.5 79km SSW of Isangel, Vanuatu -20.1802 168.9119 48.47 19-09-2012 00:15 usc000crq7 http://earthquake.usgs.gov/earthquakes/eventpage/usc000crq7
108 2.8 54km N of Hatillo, Puerto Rico 18.9748 -66.8369 11 18-09-2012 21:15 pr12262014 http://earthquake.usgs.gov/earthquakes/eventpage/pr12262014
109 3 5km S of Idyllwild-Pine Cove, California 33.6938 -116.7375 20.3 18-09-2012 21:09 ci15217865 http://earthquake.usgs.gov/earthquakes/eventpage/ci15217865
110 3 170km WNW of Port Orford, Oregon 43.0846 -126.5326 10.45 18-09-2012 19:57 usc000crda http://earthquake.usgs.gov/earthquakes/eventpage/usc000crda
111 2.5 13km WNW of Progreso, Mexico 32.6415 -115.7028 8.4 18-09-2012 19:34 ci15217817 http://earthquake.usgs.gov/earthquakes/eventpage/ci15217817
112 3 61km WSW of Anchor Point, Alaska 59.2709 -153.3279 93.1 18-09-2012 19:22 ak10561662 http://earthquake.usgs.gov/earthquakes/eventpage/ak10561662
113 4.5 10km SSW of Samara, Costa Rica 9.792 -85.561 44.16 18-09-2012 19:10 usc000crbn http://earthquake.usgs.gov/earthquakes/eventpage/usc000crbn
114 2.9 60km SW of Larsen Bay, Alaska 57.2005 -154.8056 40.6 18-09-2012 18:54 ak10561644 http://earthquake.usgs.gov/earthquakes/eventpage/ak10561644
115 2.8 64km N of Road Town, British Virgin Islands 18.9899 -64.5162 8 18-09-2012 17:52 pr12262013 http://earthquake.usgs.gov/earthquakes/eventpage/pr12262013
116 2.8 143km NNE of Road Town, British Virgin Islands 19.659 -64.236 7 18-09-2012 17:40 pr12262012 http://earthquake.usgs.gov/earthquakes/eventpage/pr12262012
117 4.7 49km S of Binuangeun, Indonesia -7.28 105.8857 44.6 18-09-2012 16:35 us2012fras http://earthquake.usgs.gov/earthquakes/eventpage/us2012fras
118 2.6 85km S of False Pass, Alaska 54.0936 -163.611 147 18-09-2012 16:06 ak10562402 http://earthquake.usgs.gov/earthquakes/eventpage/ak10562402
119 4.7 Off the west coast of northern Sumatra 3.7756 92.6495 10.4 18-09-2012 15:59 us2012frar http://earthquake.usgs.gov/earthquakes/eventpage/us2012frar
120 3.1 114km S of Point Hope, Alaska 67.3255 -166.8751 23.6 18-09-2012 15:31 ak10562401 http://earthquake.usgs.gov/earthquakes/eventpage/ak10562401
121 2.9 69km NNE of Arecibo, Puerto Rico 19.0909 -66.5822 54 18-09-2012 14:59 pr12262009 http://earthquake.usgs.gov/earthquakes/eventpage/pr12262009
122 2.7 28km ESE of Semisopochnoi Island, Alaska 51.898 -179.9874 159.1 18-09-2012 14:46 ak10562399 http://earthquake.usgs.gov/earthquakes/eventpage/ak10562399
123 2.8 73km NNW of Charlotte Amalie, U.S. Virgin Islands 18.9755 -65.1491 42 18-09-2012 14:34 pr12262010 http://earthquake.usgs.gov/earthquakes/eventpage/pr12262010
124 3 76km N of Culebra, Puerto Rico 18.993 -65.2205 17 18-09-2012 14:32 pr12262011 http://earthquake.usgs.gov/earthquakes/eventpage/pr12262011
125 2.6 61km S of Larsen Bay, Alaska 56.9924 -154.1272 9.1 18-09-2012 12:32 ak10561372 http://earthquake.usgs.gov/earthquakes/eventpage/ak10561372
126 3.3 117km NNW of Shishmaref, Alaska 67.2678 -166.8237 24.4 18-09-2012 11:51 ak10562394 http://earthquake.usgs.gov/earthquakes/eventpage/ak10562394
127 2.9 22km SSE of Pahala, Hawaii 19.0077 -155.421 44.4 18-09-2012 10:48 hv60400351 http://earthquake.usgs.gov/earthquakes/eventpage/hv60400351
128 3.2 67km N of Isabela, Puerto Rico 19.0948 -66.9 55 18-09-2012 10:25 pr12262007 http://earthquake.usgs.gov/earthquakes/eventpage/pr12262007
129 4.9 24km NE of We, New Caledonia -20.7399 167.4055 34.99 18-09-2012 10:15 usc000cr2p http://earthquake.usgs.gov/earthquakes/eventpage/usc000cr2p
130 2.7 18km SE of Emajagua, Puerto Rico 17.899 -65.74 13 18-09-2012 09:42 pr12262006 http://earthquake.usgs.gov/earthquakes/eventpage/pr12262006
131 4.3 14km SW of Samara, Costa Rica 9.8014 -85.6349 17.24 18-09-2012 09:10 usc000cr1d http://earthquake.usgs.gov/earthquakes/eventpage/usc000cr1d
132 4.2 20km SSW of Samara, Costa Rica 9.7264 -85.6216 14.44 18-09-2012 09:03 usc000cr1a http://earthquake.usgs.gov/earthquakes/eventpage/usc000cr1a
133 4.5 135km SW of Puerto El Triunfo, El Salvador 12.2677 -89.2503 35.42 18-09-2012 08:20 usc000cr0z http://earthquake.usgs.gov/earthquakes/eventpage/usc000cr0z
134 5.1 143km SE of Sarangani, Philippines 4.4809 126.38 28.08 18-09-2012 08:05 usc000cr0u http://earthquake.usgs.gov/earthquakes/eventpage/usc000cr0u
135 2.5 31km SW of Gold Beach, Oregon 42.2338 -124.7195 35.9 18-09-2012 07:08 uw60453102 http://earthquake.usgs.gov/earthquakes/eventpage/uw60453102
136 4.8 241km S of Sidorukun, Indonesia -10.7708 114.0331 39.33 18-09-2012 06:42 usc000cr0h http://earthquake.usgs.gov/earthquakes/eventpage/usc000cr0h
137 3 67km N of San Juan, Puerto Rico 19.076 -66.146 50 18-09-2012 06:33 pr12262005 http://earthquake.usgs.gov/earthquakes/eventpage/pr12262005
138 3.4 41km SE of Punta Cana, Dominican Republic 18.3581 -68.0887 109 18-09-2012 05:20 pr12262004 http://earthquake.usgs.gov/earthquakes/eventpage/pr12262004
139 3 156km NNE of Road Town, British Virgin Islands 19.7826 -64.2344 38 18-09-2012 04:30 pr12262001 http://earthquake.usgs.gov/earthquakes/eventpage/pr12262001
140 2.6 65km S of Larsen Bay, Alaska 56.9548 -154.1349 30.1 18-09-2012 04:14 ak10561291 http://earthquake.usgs.gov/earthquakes/eventpage/ak10561291
141 4.7 58km SW of Zonda, Argentina -31.8963 -69.2027 64.59 18-09-2012 03:53 usc000cqzs http://earthquake.usgs.gov/earthquakes/eventpage/usc000cqzs
142 4.8 105km E of Raoul Island, New Zealand -29.2155 -176.8201 58.12 18-09-2012 03:51 usc000cqzz http://earthquake.usgs.gov/earthquakes/eventpage/usc000cqzz
143 2.6 64km S of Larsen Bay, Alaska 56.9664 -154.1183 27.4 18-09-2012 03:26 ak10561285 http://earthquake.usgs.gov/earthquakes/eventpage/ak10561285
144 5.2 97km SSW of Biha, Indonesia -6.1732 103.7882 10.01 18-09-2012 03:23 usc000cqzk http://earthquake.usgs.gov/earthquakes/eventpage/usc000cqzk
145 3.4 65km S of Larsen Bay, Alaska 56.9529 -154.1015 38.5 18-09-2012 01:52 ak10561263 http://earthquake.usgs.gov/earthquakes/eventpage/ak10561263
146 5.1 91km E of Bitung, Indonesia 1.4052 126.0026 22.25 18-09-2012 01:46 usc000cqz5 http://earthquake.usgs.gov/earthquakes/eventpage/usc000cqz5
147 5.1 55km SSW of Larsen Bay, Alaska 56.9366 -154.142 38.6 18-09-2012 01:44 ak10561248 http://earthquake.usgs.gov/earthquakes/eventpage/ak10561248
148 4.4 204km SSW of Severo-Kuril'sk, Russia 49.0617 154.7698 80.12 18-09-2012 00:52 usc000cqyd http://earthquake.usgs.gov/earthquakes/eventpage/usc000cqyd
149 2.5 3km W of Puerto Real, Puerto Rico 18.0785 -67.2226 33 18-09-2012 00:20 pr12262000 http://earthquake.usgs.gov/earthquakes/eventpage/pr12262000
150 4.3 28km ESE of Mengmeng, China 23.3343 100.0449 15.01 17-09-2012 23:28 usc000cqxm http://earthquake.usgs.gov/earthquakes/eventpage/usc000cqxm
151 2.5 28km N of Kernville, California 36.007 -118.4032 5.2 17-09-2012 23:20 ci15217225 http://earthquake.usgs.gov/earthquakes/eventpage/ci15217225
152 2.6 52km ESE of Semisopochnoi Island, Alaska 51.7845 -179.6812 16.6 17-09-2012 21:21 ak10561000 http://earthquake.usgs.gov/earthquakes/eventpage/ak10561000
153 2.5 7km NW of El Sauzal, Mexico 31.9375 -116.7435 10 17-09-2012 21:18 ci15217201 http://earthquake.usgs.gov/earthquakes/eventpage/ci15217201
154 5 41km ENE of Port-Olry, Vanuatu -14.9021 167.409 146.89 17-09-2012 21:15 usa000f46i http://earthquake.usgs.gov/earthquakes/eventpage/usa000f46i
155 2.8 41km NE of Soledad, California 36.6437 -120.9488 9.6 17-09-2012 21:12 nc71843815 http://earthquake.usgs.gov/earthquakes/eventpage/nc71843815
156 2.6 116km NW of Talkeetna, Alaska 63.0336 -151.7684 8.1 17-09-2012 20:26 ak10560971 http://earthquake.usgs.gov/earthquakes/eventpage/ak10560971
157 5.4 18km S of Kimbe, Papua New Guinea -5.7173 150.1193 92.68 17-09-2012 20:07 usc000cqr6 http://earthquake.usgs.gov/earthquakes/eventpage/usc000cqr6
158 3.1 108km NNE of Atka, Alaska 53.0351 -173.3885 206.5 17-09-2012 19:29 ak10560943 http://earthquake.usgs.gov/earthquakes/eventpage/ak10560943
159 5 22km NNE of Miyako, Japan 39.8082 142.0836 36.71 17-09-2012 19:09 usc000cqmw http://earthquake.usgs.gov/earthquakes/eventpage/usc000cqmw
160 3.1 76km NNW of San Antonio, Puerto Rico 19.0765 -67.4925 25 17-09-2012 16:18 pr12261005 http://earthquake.usgs.gov/earthquakes/eventpage/pr12261005
161 4.6 Norwegian Sea 72.4718 2.7458 10 17-09-2012 16:08 us2012fqam http://earthquake.usgs.gov/earthquakes/eventpage/us2012fqam
162 2.5 100km N of Road Town, British Virgin Islands 19.3192 -64.7106 7 17-09-2012 15:44 pr12261006 http://earthquake.usgs.gov/earthquakes/eventpage/pr12261006
163 4.8 245km S of Sidorukun, Indonesia -10.7855 113.8118 12.2 17-09-2012 14:19 us2012fqak http://earthquake.usgs.gov/earthquakes/eventpage/us2012fqak
164 2.5 10km NNE of Road Town, British Virgin Islands 18.5048 -64.5743 49 17-09-2012 14:02 pr12261007 http://earthquake.usgs.gov/earthquakes/eventpage/pr12261007
165 4.7 266km S of Sidorukun, Indonesia -10.9675 113.7358 10 17-09-2012 13:27 us2012fqaj http://earthquake.usgs.gov/earthquakes/eventpage/us2012fqaj
166 2.9 38km NNW of Anchor Point, Alaska 60.0949 -152.1217 66.1 17-09-2012 12:55 ak10560844 http://earthquake.usgs.gov/earthquakes/eventpage/ak10560844
167 2.8 17km SW of Leilani Estates, Hawaii 19.3498 -155.0272 8.4 17-09-2012 12:10 hv60399721 http://earthquake.usgs.gov/earthquakes/eventpage/hv60399721
168 3.2 142km NNE of Road Town, British Virgin Islands 19.6595 -64.2488 12 17-09-2012 09:51 pr12261004 http://earthquake.usgs.gov/earthquakes/eventpage/pr12261004
169 3.4 245km SSE of Amukta Island, Alaska 50.3763 -170.2196 26.1 17-09-2012 09:31 ak10560832 http://earthquake.usgs.gov/earthquakes/eventpage/ak10560832
170 3.1 98km N of Road Town, British Virgin Islands 19.3038 -64.5166 15 17-09-2012 09:25 pr12261003 http://earthquake.usgs.gov/earthquakes/eventpage/pr12261003
171 3.1 85km NNW of Road Town, British Virgin Islands 19.1364 -64.9172 50 17-09-2012 09:20 pr12261002 http://earthquake.usgs.gov/earthquakes/eventpage/pr12261002
172 4.3 33km S of Mincivan, Azerbaijan 38.7265 46.7174 9.99 17-09-2012 07:05 usc000cq9h http://earthquake.usgs.gov/earthquakes/eventpage/usc000cq9h
173 3.4 102km S of Point Hope, Alaska 67.443 -167.1008 20 17-09-2012 07:04 ak10562206 http://earthquake.usgs.gov/earthquakes/eventpage/ak10562206
174 3.1 111km N of Shishmaref, Alaska 67.2397 -166.5242 20 17-09-2012 05:51 ak10562205 http://earthquake.usgs.gov/earthquakes/eventpage/ak10562205
175 2.8 42km WSW of Trinidad, Colorado 37.0004 -104.9291 4.93 17-09-2012 05:30 usc000cq8s http://earthquake.usgs.gov/earthquakes/eventpage/usc000cq8s
176 3.1 135km N of Road Town, British Virgin Islands 19.6329 -64.4487 13 17-09-2012 04:19 pr12261001 http://earthquake.usgs.gov/earthquakes/eventpage/pr12261001
177 4.6 82km SSE of Kushiro, Japan 42.3376 144.8821 45.74 17-09-2012 03:08 usc000cq7t http://earthquake.usgs.gov/earthquakes/eventpage/usc000cq7t
178 3.3 114km WSW of Port Orford, Oregon 42.4642 -125.8368 9.98 17-09-2012 02:50 usc000cq7j http://earthquake.usgs.gov/earthquakes/eventpage/usc000cq7j
179 2.6 1km NW of Coto Norte, Puerto Rico 18.4386 -66.4469 81 17-09-2012 02:28 pr12261000 http://earthquake.usgs.gov/earthquakes/eventpage/pr12261000
180 4.4 135km SSW of Firuzabad, Iran 27.69 52.1 46 17-09-2012 02:13 us2012fqad http://earthquake.usgs.gov/earthquakes/eventpage/us2012fqad
181 2.9 119km WSW of Port Orford, Oregon 42.4211 -125.8804 10.02 17-09-2012 01:59 usc000cq72 http://earthquake.usgs.gov/earthquakes/eventpage/usc000cq72
182 4.4 178km SSW of Severo-Kuril'sk, Russia 49.3119 154.8311 85.48 17-09-2012 01:29 usc000cq6x http://earthquake.usgs.gov/earthquakes/eventpage/usc000cq6x
183 3.1 146km WNW of Haines Junction, Canada 61.0544 -140.1429 0.2 17-09-2012 00:51 ak10560746 http://earthquake.usgs.gov/earthquakes/eventpage/ak10560746
184 4.4 95km S of La Libertad, El Salvador 12.643 -89.1507 35.26 16-09-2012 23:22 usc000cq62 http://earthquake.usgs.gov/earthquakes/eventpage/usc000cq62
185 2.8 31km WSW of Trinidad, Colorado 37.0625 -104.8335 4.98 16-09-2012 23:15 usc000cq5u http://earthquake.usgs.gov/earthquakes/eventpage/usc000cq5u
186 4.8 90km NE of San Isidro, Philippines 10.5094 126.7389 73 16-09-2012 22:09 usc000cq5b http://earthquake.usgs.gov/earthquakes/eventpage/usc000cq5b
187 4.5 208km WNW of Saumlaki, Indonesia -7.0192 129.6728 134.61 16-09-2012 21:46 usc000cq4r http://earthquake.usgs.gov/earthquakes/eventpage/usc000cq4r
188 5.3 91km NE of San Isidro, Philippines 10.5908 126.676 49.52 16-09-2012 21:46 usc000cq5d http://earthquake.usgs.gov/earthquakes/eventpage/usc000cq5d
189 2.8 73km N of Loiza, Puerto Rico 19.0897 -65.7799 12 16-09-2012 21:04 pr12260054 http://earthquake.usgs.gov/earthquakes/eventpage/pr12260054
190 3.3 153km NNE of Road Town, British Virgin Islands 19.746 -64.1887 18 16-09-2012 20:54 pr12260034 http://earthquake.usgs.gov/earthquakes/eventpage/pr12260034
191 4 47km S of Adak, Alaska 51.4555 -176.5483 37.6 16-09-2012 20:49 ak10560714 http://earthquake.usgs.gov/earthquakes/eventpage/ak10560714
192 3.2 149km NNE of Road Town, British Virgin Islands 19.721 -64.259 17 16-09-2012 20:43 pr12260053 http://earthquake.usgs.gov/earthquakes/eventpage/pr12260053
193 3.5 36km NW of Atka, Alaska 52.4383 -174.557 224.2 16-09-2012 19:13 ak10560711 http://earthquake.usgs.gov/earthquakes/eventpage/ak10560711
194 3.2 151km NNE of Road Town, British Virgin Islands 19.7248 -64.1901 19 16-09-2012 19:12 pr12260031 http://earthquake.usgs.gov/earthquakes/eventpage/pr12260031
195 2.5 3km ENE of Las Marias, Puerto Rico 18.3078 -67.1153 15 16-09-2012 19:10 pr12260036 http://earthquake.usgs.gov/earthquakes/eventpage/pr12260036
196 2.9 7km WSW of Cobb, California 38.8077 -122.8103 0.7 16-09-2012 18:54 nc71843220 http://earthquake.usgs.gov/earthquakes/eventpage/nc71843220
197 3.4 4km SW of Cobb, California 38.7927 -122.7665 3.3 16-09-2012 18:53 nc71843215 http://earthquake.usgs.gov/earthquakes/eventpage/nc71843215
198 4.5 90km S of La Libertad, El Salvador 12.6743 -89.2029 51.06 16-09-2012 18:33 usc000cq35 http://earthquake.usgs.gov/earthquakes/eventpage/usc000cq35
199 3.6 136km NNE of Road Town, British Virgin Islands 19.6215 -64.3298 48 16-09-2012 17:58 pr12260027 http://earthquake.usgs.gov/earthquakes/eventpage/pr12260027
200 3 143km NNE of Road Town, British Virgin Islands 19.6793 -64.3031 25 16-09-2012 16:46 pr12260052 http://earthquake.usgs.gov/earthquakes/eventpage/pr12260052
201 4.8 227km SSE of Sinabang, Indonesia 0.4962 96.9279 25.4 16-09-2012 16:17 us2012fpau http://earthquake.usgs.gov/earthquakes/eventpage/us2012fpau
202 2.6 137km NNE of Road Town, British Virgin Islands 19.6326 -64.3563 25 16-09-2012 16:07 pr12260051 http://earthquake.usgs.gov/earthquakes/eventpage/pr12260051
203 3 141km NNE of Road Town, British Virgin Islands 19.663 -64.3229 24 16-09-2012 15:42 pr12260050 http://earthquake.usgs.gov/earthquakes/eventpage/pr12260050
204 4.9 238km S of Sidorukun, Indonesia -10.7344 113.8599 15.2 16-09-2012 15:32 us2012fpat http://earthquake.usgs.gov/earthquakes/eventpage/us2012fpat
205 2.9 35km SSE of Boca de Yuma, Dominican Republic 18.0715 -68.5215 112 16-09-2012 15:15 pr12260026 http://earthquake.usgs.gov/earthquakes/eventpage/pr12260026
206 4.3 137km NNE of Road Town, British Virgin Islands 19.596 -64.2007 70 16-09-2012 14:52 pr12260024 http://earthquake.usgs.gov/earthquakes/eventpage/pr12260024
207 4.7 Reykjanes Ridge 58.0682 -32.1794 10 16-09-2012 14:30 us2012fpb7 http://earthquake.usgs.gov/earthquakes/eventpage/us2012fpb7
208 3 147km NNE of Road Town, British Virgin Islands 19.718 -64.2993 18 16-09-2012 14:09 pr12260025 http://earthquake.usgs.gov/earthquakes/eventpage/pr12260025
209 3.2 136km NNE of Road Town, British Virgin Islands 19.6138 -64.2985 58 16-09-2012 14:06 pr12260023 http://earthquake.usgs.gov/earthquakes/eventpage/pr12260023
210 4.3 265km S of Sidorukun, Indonesia -10.9454 113.6688 10 16-09-2012 13:13 us2012fpaq http://earthquake.usgs.gov/earthquakes/eventpage/us2012fpaq
211 5 78km WNW of Neiafu, Tonga -18.4246 -174.6928 124.7 16-09-2012 13:02 usc000cpz6 http://earthquake.usgs.gov/earthquakes/eventpage/usc000cpz6
212 5 209km W of Abepura, Indonesia -2.7112 138.6992 52.86 16-09-2012 12:50 usc000cpyw http://earthquake.usgs.gov/earthquakes/eventpage/usc000cpyw
213 2.9 149km NNE of Road Town, British Virgin Islands 19.7198 -64.2465 39 16-09-2012 12:13 pr12260049 http://earthquake.usgs.gov/earthquakes/eventpage/pr12260049
214 4 129km NNE of Road Town, British Virgin Islands 19.5151 -64.1938 81 16-09-2012 12:04 pr12260017 http://earthquake.usgs.gov/earthquakes/eventpage/pr12260017
215 2.8 56km N of Loiza, Puerto Rico 18.9333 -65.7839 5 16-09-2012 11:49 pr12260022 http://earthquake.usgs.gov/earthquakes/eventpage/pr12260022
216 2.6 68km NNW of Charlotte Amalie, U.S. Virgin Islands 18.9153 -65.1638 63 16-09-2012 11:35 pr12260048 http://earthquake.usgs.gov/earthquakes/eventpage/pr12260048
217 2.8 2km NE of Little Sitkin Island, Alaska 51.9611 178.5272 2.9 16-09-2012 11:25 ak10560582 http://earthquake.usgs.gov/earthquakes/eventpage/ak10560582
218 2.8 101km WSW of Fort Yukon, Alaska 66.3634 -147.4853 20.1 16-09-2012 10:52 ak10560577 http://earthquake.usgs.gov/earthquakes/eventpage/ak10560577
219 2.8 75km N of Loiza, Puerto Rico 19.1131 -65.8134 38 16-09-2012 10:32 pr12260047 http://earthquake.usgs.gov/earthquakes/eventpage/pr12260047
220 3 65km N of Suarez, Puerto Rico 19.0217 -65.7882 8 16-09-2012 10:28 pr12260021 http://earthquake.usgs.gov/earthquakes/eventpage/pr12260021
221 2.5 27km N of Road Town, British Virgin Islands 18.669 -64.6289 10 16-09-2012 10:27 pr12260020 http://earthquake.usgs.gov/earthquakes/eventpage/pr12260020
222 2.6 72km NNW of Road Town, British Virgin Islands 19.0445 -64.817 52 16-09-2012 10:24 pr12260046 http://earthquake.usgs.gov/earthquakes/eventpage/pr12260046
223 2.9 156km N of Road Town, British Virgin Islands 19.8129 -64.374 34 16-09-2012 10:22 pr12260045 http://earthquake.usgs.gov/earthquakes/eventpage/pr12260045
224 2.7 65km N of Loiza, Puerto Rico 19.0186 -65.8421 45 16-09-2012 10:17 pr12260044 http://earthquake.usgs.gov/earthquakes/eventpage/pr12260044
225 3.1 136km N of Road Town, British Virgin Islands 19.6285 -64.3703 15 16-09-2012 10:13 pr12260019 http://earthquake.usgs.gov/earthquakes/eventpage/pr12260019
226 2.8 63km N of Loiza, Puerto Rico 19.0051 -65.8315 19 16-09-2012 10:12 pr12260018 http://earthquake.usgs.gov/earthquakes/eventpage/pr12260018
227 3.2 59km N of Loiza, Puerto Rico 18.9668 -65.8315 10 16-09-2012 10:09 pr12260016 http://earthquake.usgs.gov/earthquakes/eventpage/pr12260016
228 2.7 64km N of Loiza, Puerto Rico 19.0074 -65.8135 5 16-09-2012 10:08 pr12260013 http://earthquake.usgs.gov/earthquakes/eventpage/pr12260013
229 3 72km N of Loiza, Puerto Rico 19.0825 -65.8097 17 16-09-2012 10:06 pr12260011 http://earthquake.usgs.gov/earthquakes/eventpage/pr12260011
230 2.8 64km N of Vieques, Puerto Rico 19.0069 -65.7624 8 16-09-2012 10:05 pr12260010 http://earthquake.usgs.gov/earthquakes/eventpage/pr12260010
231 2.6 73km N of Loiza, Puerto Rico 19.0921 -65.8359 18 16-09-2012 10:04 pr12260008 http://earthquake.usgs.gov/earthquakes/eventpage/pr12260008
232 3.3 63km N of Suarez, Puerto Rico 19.0002 -65.7705 65 16-09-2012 10:00 pr12260014 http://earthquake.usgs.gov/earthquakes/eventpage/pr12260014
233 2.9 72km N of Suarez, Puerto Rico 19.0865 -65.7891 44 16-09-2012 09:59 pr12260012 http://earthquake.usgs.gov/earthquakes/eventpage/pr12260012
234 2.7 75km N of Loiza, Puerto Rico 19.1075 -65.7778 35 16-09-2012 09:55 pr12260042 http://earthquake.usgs.gov/earthquakes/eventpage/pr12260042
235 3 69km N of Loiza, Puerto Rico 19.0611 -65.865 25 16-09-2012 09:54 pr12260043 http://earthquake.usgs.gov/earthquakes/eventpage/pr12260043
236 3.1 70km N of Loiza, Puerto Rico 19.0708 -65.8326 13 16-09-2012 09:47 pr12260009 http://earthquake.usgs.gov/earthquakes/eventpage/pr12260009
237 2.9 67km N of Suarez, Puerto Rico 19.0436 -65.8261 13 16-09-2012 09:47 pr12260007 http://earthquake.usgs.gov/earthquakes/eventpage/pr12260007
238 2.9 142km NNE of Road Town, British Virgin Islands 19.6672 -64.2985 24 16-09-2012 09:34 pr12260041 http://earthquake.usgs.gov/earthquakes/eventpage/pr12260041
239 3.3 115km NNE of Road Town, British Virgin Islands 19.326 -64.0876 93 16-09-2012 09:06 pr12260039 http://earthquake.usgs.gov/earthquakes/eventpage/pr12260039
240 3 228km W of Ferndale, California 40.2717 -126.9297 10 16-09-2012 08:26 nc71843000 http://earthquake.usgs.gov/earthquakes/eventpage/nc71843000
241 4.5 53km SW of Puerto Madero, Mexico 14.3372 -92.7307 35 16-09-2012 08:25 usc000cpxf http://earthquake.usgs.gov/earthquakes/eventpage/usc000cpxf
242 2.9 18km SE of Adak, Alaska 51.754 -176.4941 70.3 16-09-2012 08:05 ak10560556 http://earthquake.usgs.gov/earthquakes/eventpage/ak10560556
243 4.4 10km NNW of Imamoglu, Turkey 37.3512 35.6095 16.97 16-09-2012 07:54 usc000cpx1 http://earthquake.usgs.gov/earthquakes/eventpage/usc000cpx1
244 3.1 124km N of Brenas, Puerto Rico 19.5916 -66.248 16 16-09-2012 07:41 pr12260040 http://earthquake.usgs.gov/earthquakes/eventpage/pr12260040
245 2.6 80km NNE of Luquillo, Puerto Rico 19.0345 -65.4012 14 16-09-2012 07:28 pr12260038 http://earthquake.usgs.gov/earthquakes/eventpage/pr12260038
246 3 141km NNE of Road Town, British Virgin Islands 19.6231 -64.1785 69 16-09-2012 07:13 pr12260037 http://earthquake.usgs.gov/earthquakes/eventpage/pr12260037
247 3.3 47km NE of Road Town, British Virgin Islands 18.7171 -64.2922 44 16-09-2012 06:57 pr12260006 http://earthquake.usgs.gov/earthquakes/eventpage/pr12260006
248 2.8 138km NNE of Road Town, British Virgin Islands 19.5559 -64.0798 63 16-09-2012 06:54 pr12260035 http://earthquake.usgs.gov/earthquakes/eventpage/pr12260035
249 2.7 74km N of Charlotte Amalie, U.S. Virgin Islands 19.0055 -65.0213 31 16-09-2012 06:28 pr12260004 http://earthquake.usgs.gov/earthquakes/eventpage/pr12260004
250 4.9 Off the west coast of northern Sumatra 3.6188 90.166 9.99 16-09-2012 06:07 usc000cpwc http://earthquake.usgs.gov/earthquakes/eventpage/usc000cpwc
251 5.2 8km W of Nicoya, Costa Rica 10.1417 -85.5263 24.26 16-09-2012 05:51 usc000cpw2 http://earthquake.usgs.gov/earthquakes/eventpage/usc000cpw2
252 3.4 131km NNE of Road Town, British Virgin Islands 19.5575 -64.2605 70 16-09-2012 05:40 pr12260002 http://earthquake.usgs.gov/earthquakes/eventpage/pr12260002
253 2.8 133km NNE of Road Town, British Virgin Islands 19.5513 -64.1989 68 16-09-2012 05:07 pr12260032 http://earthquake.usgs.gov/earthquakes/eventpage/pr12260032
254 2.6 133km NNE of Road Town, British Virgin Islands 19.568 -64.254 68 16-09-2012 04:56 pr12260030 http://earthquake.usgs.gov/earthquakes/eventpage/pr12260030
255 3 130km NNE of Road Town, British Virgin Islands 19.5275 -64.1905 72 16-09-2012 04:46 pr12260003 http://earthquake.usgs.gov/earthquakes/eventpage/pr12260003
256 3.7 138km N of Road Town, British Virgin Islands 19.6487 -64.3693 19 16-09-2012 04:14 pr12260001 http://earthquake.usgs.gov/earthquakes/eventpage/pr12260001
257 2.6 4km S of Pajaros, Puerto Rico 18.3306 -66.2143 57 16-09-2012 04:12 pr12260000 http://earthquake.usgs.gov/earthquakes/eventpage/pr12260000
258 2.6 8km WSW of Avenal, California 35.9783 -120.2173 20 16-09-2012 04:04 nc71842925 http://earthquake.usgs.gov/earthquakes/eventpage/nc71842925
259 3 73km NW of Valdez, Alaska 61.542 -147.424 20.1 16-09-2012 03:38 ak10560496 http://earthquake.usgs.gov/earthquakes/eventpage/ak10560496
260 2.7 61km E of Maneadero, Mexico 31.7012 -115.9135 10 16-09-2012 02:38 ci15216297 http://earthquake.usgs.gov/earthquakes/eventpage/ci15216297
261 3 143km N of Road Town, British Virgin Islands 19.6907 -64.375 23 16-09-2012 02:33 pr12260029 http://earthquake.usgs.gov/earthquakes/eventpage/pr12260029
262 4.6 12km SW of Lata, Solomon Islands -10.8031 165.758 102.72 16-09-2012 01:38 usc000cpur http://earthquake.usgs.gov/earthquakes/eventpage/usc000cpur
263 4.2 76km SSE of San Mateo del Mar, Mexico 15.542 -94.7799 34.98 16-09-2012 00:39 usc000cpub http://earthquake.usgs.gov/earthquakes/eventpage/usc000cpub
264 3.2 137km SW of Chirikof Island, Alaska 54.9264 -157.1045 34.7 16-09-2012 00:13 ak10560471 http://earthquake.usgs.gov/earthquakes/eventpage/ak10560471
265 2.6 63km N of Joshua Tree, California 34.7098 -116.2855 1.9 16-09-2012 00:09 ci15216225 http://earthquake.usgs.gov/earthquakes/eventpage/ci15216225
266 4.3 22km SW of Desaguadero, Peru -16.6904 -69.21 197.36 15-09-2012 23:41 usc000cpt6 http://earthquake.usgs.gov/earthquakes/eventpage/usc000cpt6
267 3 4km WSW of Kalaoa, Hawaii 19.7032 -156.0157 34.8 15-09-2012 19:52 hv60398376 http://earthquake.usgs.gov/earthquakes/eventpage/hv60398376
268 2.7 131km NNE of Road Town, British Virgin Islands 19.5692 -64.3011 57 15-09-2012 18:31 pr12259011 http://earthquake.usgs.gov/earthquakes/eventpage/pr12259011
269 2.9 134km NNE of Road Town, British Virgin Islands 19.576 -64.2378 61 15-09-2012 18:27 pr12259012 http://earthquake.usgs.gov/earthquakes/eventpage/pr12259012
270 5.3 242km S of Sidorukun, Indonesia -10.7681 113.8744 30.6 15-09-2012 17:35 usc000cpmz http://earthquake.usgs.gov/earthquakes/eventpage/usc000cpmz
271 5.6 242km S of Sidorukun, Indonesia -10.7709 113.8555 9.94 15-09-2012 16:32 usc000cplq http://earthquake.usgs.gov/earthquakes/eventpage/usc000cplq
272 4.7 13km ESE of Hasaki, Japan 35.6878 140.9693 12.6 15-09-2012 16:09 usc000cpli http://earthquake.usgs.gov/earthquakes/eventpage/usc000cpli
273 2.8 40km E of Lima, Montana 44.6075 -112.0778 12 15-09-2012 15:43 mb12872093 http://earthquake.usgs.gov/earthquakes/eventpage/mb12872093
274 2.6 63km NNW of Talkeetna, Alaska 62.8706 -150.4478 104.8 15-09-2012 15:30 ak10560328 http://earthquake.usgs.gov/earthquakes/eventpage/ak10560328
275 3.2 67km NNW of Charlotte Amalie, U.S. Virgin Islands 18.9302 -65.0866 48 15-09-2012 14:51 pr12259010 http://earthquake.usgs.gov/earthquakes/eventpage/pr12259010
276 2.9 59km SSE of Little Sitkin Island, Alaska 51.4466 178.8066 33.4 15-09-2012 13:28 ak10560307 http://earthquake.usgs.gov/earthquakes/eventpage/ak10560307
277 2.6 11km SE of Covelo, California 39.7087 -123.1653 5 15-09-2012 12:37 nc71842645 http://earthquake.usgs.gov/earthquakes/eventpage/nc71842645
278 2.9 23km SSW of White Sulphur Springs, Montana 46.366 -111.0488 8 15-09-2012 12:21 mb12097289 http://earthquake.usgs.gov/earthquakes/eventpage/mb12097289
279 2.7 20km S of Esperanza, Puerto Rico 17.9158 -65.4598 35 15-09-2012 10:54 pr12259009 http://earthquake.usgs.gov/earthquakes/eventpage/pr12259009
280 4.3 30km SW of Arica, Chile -18.647 -70.524 39.9 15-09-2012 10:39 usc000cpw3 http://earthquake.usgs.gov/earthquakes/eventpage/usc000cpw3
281 5.3 22km ENE of Anito, Philippines 12.558 125.466 35 15-09-2012 10:26 usc000cpjt http://earthquake.usgs.gov/earthquakes/eventpage/usc000cpjt
282 3.1 62km E of Punta Cana, Dominican Republic 18.586 -67.8096 80 15-09-2012 09:52 pr12259008 http://earthquake.usgs.gov/earthquakes/eventpage/pr12259008
283 4.6 51km NW of La Punta, Argentina -32.8324 -66.6668 41.55 15-09-2012 09:37 usc000cpj4 http://earthquake.usgs.gov/earthquakes/eventpage/usc000cpj4
284 4.7 Kuril Islands 46.1639 152.9487 42.76 15-09-2012 08:43 usa000f3en http://earthquake.usgs.gov/earthquakes/eventpage/usa000f3en

51
static/data/states-data.csv

@ -0,0 +1,51 @@
STATE_ABBR;Name;2017 Population
CA;California;39,849,872
TX;Texas;28,449,186
FL;Florida;21,002,678
NY;New York;19,889,657
PA;Pennsylvania;12,819,975
IL;Illinois;12,815,607
OH;Ohio;11,646,273
GA;Georgia;10,450,316
NC;North Carolina;10,247,632
MI;Michigan;9,935,116
NJ;New Jersey;8,996,351
VA;Virginia;8,492,783
WA;Washington;7,384,721
AZ;Arizona;7,026,629
MA;Massachusetts;6,873,018
TN;Tennessee;6,705,339
IN;Indiana;6,663,280
MO;Missouri;6,123,362
MD;Maryland;6,068,511
WI;Wisconsin;5,795,147
CO;Colorado;5,658,546
MN;Minnesota;5,554,532
SC;South Carolina;5,030,118
AL;Alabama;4,884,115
LA;Louisiana;4,714,192
KY;Kentucky;4,450,042
OR;Oregon;4,144,527
OK;Oklahoma;3,974,794
CT;Connecticut;3,583,134
IA;Iowa;3,152,735
UT;Utah;3,098,761
AR;Arkansas;3,000,942
NV;Nevada;2,995,973
MS;Mississippi;2,990,113
KS;Kansas;2,929,909
NM;New Mexico;2,084,193
NE;Nebraska;1,922,610
WV;West Virginia;1,834,882
ID;Idaho;1,695,178
HI;Hawaii;1,454,295
NH;New Hampshire;1,335,832
ME;Maine;1,327,472
RI;Rhode Island;1,059,080
MT;Montana;1,052,343
DE;Delaware;965,866
SD;South Dakota;868,799
ND;North Dakota;790,701
AK;Alaska;741,204
VT;Vermont;624,592
WY;Wyoming;589,713
1 STATE_ABBR Name 2017 Population
1 STATE_ABBR Name 2017 Population
2 CA California 39,849,872
3 TX Texas 28,449,186
4 FL Florida 21,002,678
5 NY New York 19,889,657
6 PA Pennsylvania 12,819,975
7 IL Illinois 12,815,607
8 OH Ohio 11,646,273
9 GA Georgia 10,450,316
10 NC North Carolina 10,247,632
11 MI Michigan 9,935,116
12 NJ New Jersey 8,996,351
13 VA Virginia 8,492,783
14 WA Washington 7,384,721
15 AZ Arizona 7,026,629
16 MA Massachusetts 6,873,018
17 TN Tennessee 6,705,339
18 IN Indiana 6,663,280
19 MO Missouri 6,123,362
20 MD Maryland 6,068,511
21 WI Wisconsin 5,795,147
22 CO Colorado 5,658,546
23 MN Minnesota 5,554,532
24 SC South Carolina 5,030,118
25 AL Alabama 4,884,115
26 LA Louisiana 4,714,192
27 KY Kentucky 4,450,042
28 OR Oregon 4,144,527
29 OK Oklahoma 3,974,794
30 CT Connecticut 3,583,134
31 IA Iowa 3,152,735
32 UT Utah 3,098,761
33 AR Arkansas 3,000,942
34 NV Nevada 2,995,973
35 MS Mississippi 2,990,113
36 KS Kansas 2,929,909
37 NM New Mexico 2,084,193
38 NE Nebraska 1,922,610
39 WV West Virginia 1,834,882
40 ID Idaho 1,695,178
41 HI Hawaii 1,454,295
42 NH New Hampshire 1,335,832
43 ME Maine 1,327,472
44 RI Rhode Island 1,059,080
45 MT Montana 1,052,343
46 DE Delaware 965,866
47 SD South Dakota 868,799
48 ND North Dakota 790,701
49 AK Alaska 741,204
50 VT Vermont 624,592
51 WY Wyoming 589,713

1
static/data/us.json

File diff suppressed because one or more lines are too long

2
static/js/app.bb478689be3640ebf141.js

File diff suppressed because one or more lines are too long

1
static/js/app.bb478689be3640ebf141.js.map

File diff suppressed because one or more lines are too long

2
static/js/manifest.0d9440aa0954c24a67c3.js

@ -0,0 +1,2 @@
!function(e){function r(n){if(t[n])return t[n].exports;var o=t[n]={i:n,l:!1,exports:{}};return e[n].call(o.exports,o,o.exports,r),o.l=!0,o.exports}var n=window.webpackJsonp;window.webpackJsonp=function(t,c,i){for(var u,a,f,s=0,l=[];s<t.length;s++)a=t[s],o[a]&&l.push(o[a][0]),o[a]=0;for(u in c)Object.prototype.hasOwnProperty.call(c,u)&&(e[u]=c[u]);for(n&&n(t,c,i);l.length;)l.shift()();if(i)for(s=0;s<i.length;s++)f=r(r.s=i[s]);return f};var t={},o={2:0};r.e=function(e){function n(){c.onerror=c.onload=null,clearTimeout(i);var r=o[e];0!==r&&(r&&r[1](new Error("Loading chunk "+e+" failed.")),o[e]=void 0)}if(0===o[e])return Promise.resolve();if(o[e])return o[e][2];var t=document.getElementsByTagName("head")[0],c=document.createElement("script");c.type="text/javascript",c.charset="utf-8",c.async=!0,c.timeout=12e4,r.nc&&c.setAttribute("nonce",r.nc),c.src=r.p+"static/js/"+e+"."+{0:"03b56a03b17565331709",1:"bb478689be3640ebf141"}[e]+".js";var i=setTimeout(n,12e4);c.onerror=c.onload=n;var u=new Promise(function(r,n){o[e]=[r,n]});return o[e][2]=u,t.appendChild(c),u},r.m=e,r.c=t,r.i=function(e){return e},r.d=function(e,n,t){r.o(e,n)||Object.defineProperty(e,n,{configurable:!1,enumerable:!0,get:t})},r.n=function(e){var n=e&&e.__esModule?function(){return e.default}:function(){return e};return r.d(n,"a",n),n},r.o=function(e,r){return Object.prototype.hasOwnProperty.call(e,r)},r.p="/",r.oe=function(e){throw console.error(e),e}}([]);
//# sourceMappingURL=manifest.0d9440aa0954c24a67c3.js.map

1
static/js/manifest.0d9440aa0954c24a67c3.js.map

File diff suppressed because one or more lines are too long

24
static/js/vendor.03b56a03b17565331709.js

File diff suppressed because one or more lines are too long

1
static/js/vendor.03b56a03b17565331709.js.map

File diff suppressed because one or more lines are too long
Loading…
Cancel
Save